diff --git a/build_cache_from_raw.py b/build_cache_from_raw.py new file mode 100644 index 0000000..85fb60c --- /dev/null +++ b/build_cache_from_raw.py @@ -0,0 +1,122 @@ +#!/usr/bin/env python3 +""" +Script to build channel cache from raw yt-dlp output file. +This uses the fixed parsing logic to handle titles with | characters. +""" + +import json +import re +from datetime import datetime +from pathlib import Path + +def parse_raw_output_file(raw_file_path): + """Parse the raw output file and extract valid videos.""" + videos = [] + invalid_count = 0 + + print(f"๐Ÿ” Parsing raw output file: {raw_file_path}") + + with open(raw_file_path, 'r', encoding='utf-8') as f: + lines = f.readlines() + + # Skip header lines (lines starting with #) + data_lines = [line for line in lines if not line.strip().startswith('#') and line.strip()] + + print(f"๐Ÿ“„ Found {len(data_lines)} data lines to process") + + for i, line in enumerate(data_lines): + if i % 1000 == 0 and i > 0: # Progress indicator every 1000 lines + print(f"๐Ÿ“Š Processing line {i}/{len(data_lines)}... ({i/len(data_lines)*100:.1f}%)") + + # Remove line number prefix (e.g., " 1234: ") + line = re.sub(r'^\s*\d+:\s*', '', line.strip()) + + # More robust parsing that handles titles with | characters + # Extract video ID directly from the URL that yt-dlp provides + + # Find the URL and extract video ID from it + url_match = re.search(r'https://www\.youtube\.com/watch\?v=([a-zA-Z0-9_-]{11})', line) + if not url_match: + invalid_count += 1 + if invalid_count <= 5: + print(f"โš ๏ธ Skipping line with no URL: '{line[:100]}...'") + elif invalid_count == 6: + print(f"โš ๏ธ ... and {len(data_lines) - i - 1} more invalid lines") + continue + + # Extract video ID directly from the URL + video_id = url_match.group(1) + + # Extract title (everything before the video ID in the line) + title = line[:line.find(video_id)].rstrip('|').strip() + + # Validate video ID + if video_id and ( + len(video_id) == 11 and + video_id.replace('-', '').replace('_', '').isalnum() and + " " not in video_id and + "Lyrics" not in video_id and + "KARAOKE" not in video_id.upper() and + "Vocal" not in video_id and + "Guide" not in video_id + ): + videos.append({"title": title, "id": video_id}) + else: + invalid_count += 1 + if invalid_count <= 5: # Only show first 5 invalid IDs + print(f"โš ๏ธ Skipping invalid video ID: '{video_id}' for title: '{title[:50]}...'") + elif invalid_count == 6: + print(f"โš ๏ธ ... and {len(data_lines) - i - 1} more invalid IDs") + + print(f"โœ… Parsed {len(videos)} valid videos from raw output") + print(f"โš ๏ธ Skipped {invalid_count} invalid video IDs") + + return videos + +def save_cache_file(channel_id, videos, cache_dir="data/channel_cache"): + """Save the parsed videos to a cache file.""" + cache_dir = Path(cache_dir) + cache_dir.mkdir(parents=True, exist_ok=True) + + # Sanitize channel ID for filename + safe_channel_id = re.sub(r'[<>:"/\\|?*]', '_', channel_id) + cache_file = cache_dir / f"{safe_channel_id}.json" + + data = { + 'channel_id': channel_id, + 'videos': videos, + 'last_updated': datetime.now().isoformat(), + 'video_count': len(videos) + } + + with open(cache_file, 'w', encoding='utf-8') as f: + json.dump(data, f, indent=2, ensure_ascii=False) + + print(f"๐Ÿ’พ Saved cache to: {cache_file.name}") + return cache_file + +def main(): + """Main function to build cache from raw output.""" + raw_file_path = Path("data/channel_cache/@VocalStarKaraoke_raw_output.txt") + + if not raw_file_path.exists(): + print(f"โŒ Raw output file not found: {raw_file_path}") + return + + # Parse the raw output file + videos = parse_raw_output_file(raw_file_path) + + if not videos: + print("โŒ No valid videos found") + return + + # Save to cache file + channel_id = "@VocalStarKaraoke" + cache_file = save_cache_file(channel_id, videos) + + print(f"๐ŸŽ‰ Cache build complete!") + print(f"๐Ÿ“Š Total videos in cache: {len(videos)}") + print(f"๐Ÿ“ Cache file: {cache_file}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/data/channel_cache.json b/data/channel_cache.json deleted file mode 100644 index fb95b66..0000000 --- a/data/channel_cache.json +++ /dev/null @@ -1,236590 +0,0 @@ -{ - "channels": { - "@SingKingKaraoke": { - "videos": [ - { - "video_id": "HCbVcvt1TY4", - "title": "Spin The Wheel - Your Song Requests Week 8", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hVSwG_dZtBA", - "title": "Traveling Wilburys - End Of The Line (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a-MJCn8EFhQ", - "title": "d4vd, Hyunjin - Always Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Duy2bsfNvCg", - "title": "Adrianne Lenker - forwards beckon rebound (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VJOoefAZkto", - "title": "Nothing Beats A Jet2 Holiday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b-AZzJ7eYwM", - "title": "Bailey Zimmerman, Luke Combs - Backup Plan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7gVGgUNZlPw", - "title": "Bryson Tiller - Let Em' Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ndEtts7dZNw", - "title": "Benson Boone - Mr Electric Blue (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Dgog3Vfj2zE", - "title": "GloRilla - Typa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-fJbQzU2UO8", - "title": "Cardi B - Outside (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RLzf9_Krvbg", - "title": "Morgan Wallen - Skoal, Chevy, and Browning (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WzpvknAn8gs", - "title": "Morgan Wallen - I Ain't Comin' Back (feat. Post Malone) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B__zBVrWP_w", - "title": "JADE - Angel Of My Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zApwtjDZLyU", - "title": "KAROL G - LATINA FOREVA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_FCmhcZvkOM", - "title": "Morgan Wallen - I Got Better (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q7qkKPe4uoM", - "title": "Ella Langley - weren't for the wind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vb5VDf7-Ios", - "title": "Shabrina Leanor - Pendampingmu #TahtaHatiku (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fX7DBWyvAYA", - "title": "Elle King - Before You Met Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hSsGFyFa_Fk", - "title": "Lorde - Hammer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yHbkL50m6Io", - "title": "Sean Paul - Temperature (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9dJCf8WkohE", - "title": "Bell Biv Devoe - Poison (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CglP2MTxxFs", - "title": "KAROL G - Papasito (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DUig07b0_P4", - "title": "Benson Boone - Before You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PQ5vyiXgkvg", - "title": "Forrest Frank - YOUR WAY'S BETTER (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q850gFIULUU", - "title": "Morgan Wallen - Superman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Bu1itd5ddJE", - "title": "Earl Agustin - Tibok (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pjm6AS20IHs", - "title": "PRETTYMUCH - Eyes Off You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ElWexx6YqrE", - "title": "Lorde - Shapeshifter (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IpFFfb97lzY", - "title": "Keith Sweat, Athena Cage - Nobody (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yNipRwTEQ10", - "title": "The Fray - Look After You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nfz3jImy8Ws", - "title": "MAX, HUH YUNJIN - STUPID IN LOVE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-O2gI9Qubc8", - "title": "Justin Bieber - One Less Lonely Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B2KXWCklZtQ", - "title": "Edward Sharpe & The Magnetic Zeros - Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6NCGZgFtja0", - "title": "Penelope Scott - Lotta True Crime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CB-AsNusMGI", - "title": "Alex G, Emily Yacina - Treehouse (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N--gM6Bi250", - "title": "Kimya Dawson - You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lrmT0BtMUkE", - "title": "Pat Benatar - Love Is A Battlefield (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OniExPZHjwE", - "title": "Towa Bird - Boomerang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Jz7YSEVj4is", - "title": "j-hope, GloRilla - Killin' It Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t86fWXcvSJ0", - "title": "Tate McRae - Miss possessive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FCTGfH-fY4s", - "title": "KATSEYE - Gabriela (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-BJOtgLROv4", - "title": "Justyna Steczkowska - GAJA - Eurovision Edit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ScEVJCzhynw", - "title": "JoJo Siwa - Bulletproof (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wiY-HZKJDlw", - "title": "Ed Sheeran - Drive (From F1ยฎ The Movie) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gMgpXfnbSmg", - "title": "CMAT - Take A Sexy Picture Of Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sdu54UU8d28", - "title": "Hozier - De Selby (Part 1) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Djq_XVCs8Ng", - "title": "Gracie Abrams - Blowing Smoke (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qHqG7UA9LYU", - "title": "Kesha - Your Love Is My Drug (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Etw_x760wiI", - "title": "Tom Grennan - This is the Place (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "esPsQKFewfM", - "title": "Adrianne Lenker - not a lot, just forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FctRIWObELM", - "title": "Linkin Park - Numb (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9OhpF17GLEY", - "title": "Morgan Wallen - Just In Case (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U6sDIv61v3I", - "title": "Djo - Basic Being Basic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m2_dakJKePo", - "title": "SZA - Normal Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z6NbsBxfHJM", - "title": "Milky Chance - Stolen Dance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nzAo20TSGUY", - "title": "Jim Brickman, Billy Porter, Jordan Hill - Destiny (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E07j_cbWfkI", - "title": "Tate McRae - Just Keep Watching (From F1ยฎ The Movie) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4S2Az8NXEY0", - "title": "BIGBANG - Fantastic Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ehx5A03da8w", - "title": "Bailey Zimmerman, BigXthaPlug - All The Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UzWKxDAtg_w", - "title": "Don Toliver - No Pole (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OCJ3Nau8Z1U", - "title": "Coldplay - Sparks (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kp4Zoh5AnME", - "title": "Morgan Wallen, Tate McRae - What I Want (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3LJTrBP-fbk", - "title": "Gigi Perez - Fable (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SFyCnhoatjQ", - "title": "Ed Sheeran - Dive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0u_Lmje3_AI", - "title": "Mariah the Scientist - Spread Thin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tBBRn2jswm0", - "title": "Radiohead - Fake Plastic Trees (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hoe2oo4FI4I", - "title": "YKNIECE, PLUTO - WHIM WHAMIEE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OTztbrXvdvw", - "title": "Jeezy, Akon - Soul Survivor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "epD1O3L3JJk", - "title": "Amerie - 1 Thing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EOAILMpVCxk", - "title": "Sabrina Carpenter - Manchild (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fxaVMaY2-UY", - "title": "Lola Young - One Thing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GBSvbXkXxc8", - "title": "CeCe Winans - Holy Forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P-8I8LqEb_0", - "title": "Benson Boone - Sorry I'm Here For Someone Else (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iFthuxIaIS0", - "title": "Lauv - Paris in the Rain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "269YF1oOssY", - "title": "Lana Del Rey - Bluebird (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-fjEeuaXRUw", - "title": "The Red Clay Strays - Wondering Why (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NRsHd27r_jA", - "title": "BIGBANG - IF YOU (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kGqBAMzZkPU", - "title": "Elliot James Reay - Who Knew Dancing Was A Sin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dYEC_x4pTEQ", - "title": "Jamiroquai - Virtual Insanity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7XGAnveI8Oc", - "title": "Cody Johnson, Carrie Underwood - I'm Gonna Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kSpJDKh0jCY", - "title": "Mila J, Ty Dolla $ign - My Main (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bBg58zRfGpA", - "title": "Akon - Akon's Beautiful Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YEvdnVLRJrE", - "title": "Sleep Token - Caramel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V-yzRDOJTRU", - "title": "Gorillaz, Del the Funky Homosapien - Clint Eastwood (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P-2MWGQO88I", - "title": "PinkPantheress - Illegal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4-9pU9QFZLs", - "title": "Usher, Young Jeezy - Love in This Club (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZveLAvHwevs", - "title": "Cup of Joe - Multo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "99n84BrbZD4", - "title": "The Corrs - Runaway (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UWbi6wpNJjg", - "title": "JENNIE - Seoul City (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eig3fibYn_g", - "title": "Lil Tecca - Dark Thoughts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bup5xcZmrtg", - "title": "Mariah the Scientist - Burning Blue (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TdoSSXQxpT8", - "title": "Benson Boone - Mystical Magical (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u59biCTaClA", - "title": "Mรฅns Zelmerlรถw - Heroes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WGdJg3HuCdw", - "title": "Jessie Murph - Blue Strips (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VxTMkOPnSrw", - "title": "Maroon 5 - Won't Go Home Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bpPDFqU3TIQ", - "title": "A$AP Rocky - Sundress (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nUnYsEGCGRk", - "title": "WizTheMc - Show Me Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XkUDVU49EtI", - "title": "Radiohead - Let Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8KEtGhVAkVU", - "title": "Chanel - SloMo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dWV0C-1_gwA", - "title": "Mahmood - Soldi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M4pMqDtuILc", - "title": "ROSร‰ - Messy (From F1ยฎ The Movie) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "W2Yw9qYOpzE", - "title": "Will Smith - Gettin' Jiggy Wit It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lH9vWbRKMOM", - "title": "Lorde - What Was That (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BAnUj3dDg64", - "title": "Drake, Yebba, PARTYNEXTDOOR - DIE TRYING (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "US_MJeYea4o", - "title": "B-Legit, E-40, Suga T, The Click, D-Shott - Captain Save A Hoe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZyUsYrFqLJk", - "title": "Rod Wave - Sinners (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qmyB4dvwv3Q", - "title": "ADONXS - Kiss Kiss Goodbye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "owgUu6irRSw", - "title": "KATSEYE - Gnarly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jrvihPThsp4", - "title": "Laufey - Tough Luck (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hFu8kCb4AYQ", - "title": "Selena Gomez, The Marรญas, benny blanco - Ojos Tristes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YxBJT2npkFM", - "title": "Janet Jackson - Someone To Call My Lover (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VCvC3cNvTHk", - "title": "sombr - undressed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TLwn41hYLVM", - "title": "Lana Del Rey - Henry, come on (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S5xeIJbANug", - "title": "Fleetwood Mac - Say You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lvCsLQ8pAYM", - "title": "Sergio Dalma - Bailar Pegados (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CGA3p6HbHZ8", - "title": "Morgan Wallen - I'm The Problem (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DMTwDJM_J44", - "title": "Connie Francis - Pretty Little Baby - Stereo Mix (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ub8saZM1I_k", - "title": "Ed Sheeran - Azizam (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gzUQ46R5pMM", - "title": "Selena Gomez, benny blanco - How Does It Feel To Be Forgotten (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Yaw_dEVHZWw", - "title": "Chic - Le Freak (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t3t3hq0Z9XA", - "title": "Laufey - Silver Lining (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dB4IHKiz_QY", - "title": "Ariana Grande - past life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qd7E87OnizY", - "title": "MOLIY, Silent Addy, Skillibeng, Shenseea - Shake It To The Max (FLY) - Remix (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HPnr2kcS9HY", - "title": "Maroon 5, LISA - Priceless (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KbPeFaGASTE", - "title": "Ariana Grande - intro (end of the world) - extended (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pF5iNEsG79w", - "title": "Rasheeda - My Bubble Gum (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BcnWxhYurds", - "title": "Marco Mengoni - Due Vite (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vjucg6FfpFs", - "title": "Lily Allen - LDN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fr69UOYU0DY", - "title": "Rob49 - WTHELLY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SfTXncyYn4o", - "title": "Sam Ryder - SPACE MAN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L8zY5Icfi6U", - "title": "Ariana Grande - warm (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IB2iAQ1BB8U", - "title": "Alexander Rybak - Fairytale (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n8KWDKciR10", - "title": "Ariana Grande - dandelion (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JYF_9KGY3FU", - "title": "Mocedades - Eres Tรบ (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ytHuAifhwzI", - "title": "Chris Stapleton - Think I'm In Love With You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I49_4kilIHw", - "title": "Tyler, The Creator , GloRilla, Sexyy Red, Lil Wayne - Sticky (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RmV1YFAH_bU", - "title": "Louane - maman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zz8WqCFWvXU", - "title": "Abor & Tynna - Baller (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ytvtCBX0biY", - "title": "Noah Kahan - Northern Attitude (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pSyILdf2GeM", - "title": "Erika Vikman - ICH KOMME (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KAi1_fBE6JI", - "title": "Megan Woods - The Truth (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i0bcK7S5z_U", - "title": "Lucio Corsi - Volevo essere un duro (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zJMSdpz1aHk", - "title": "NIKI - Autumn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i84Js7EGRIM", - "title": "Melody - Esa Diva (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i_apAljBFlk", - "title": "Three Days Grace - I Hate Everything About You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E4GLs-dFKKc", - "title": "Alex Warren - Burning Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xICe13Qc-pw", - "title": "Damiano David - Next Summer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_4oYe1UGG_g", - "title": "Claude - C'est La Vie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p4zZarTDKQ0", - "title": "SYML - Where's My Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K4xyQb2UlYM", - "title": "JJ - Wasted Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZuFuZ0AkemM", - "title": "Tommy Cash - Espresso Macchiato (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QBirk0XPUpc", - "title": "Lizzy McAlpine - Spring Into Summer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zcrL7culk4k", - "title": "KAJ - Bara Bada Bastu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aNhTzKM6v-0", - "title": "Big Thief - Velvet Ring (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BAcbWIZxOAg", - "title": "GELO - Tweaker (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GzJLjps85UI", - "title": "GloRilla - Bad Bih 4 Ya (feat. Boston Richey) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RQPXeqlTpxA", - "title": "Chappell Roan - The Giver (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fw9-zpPzSfo", - "title": "Adele - To Be Loved (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FOtf5AmvrTc", - "title": "Adele - I Drink Wine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CVqTspFyg38", - "title": "Adele - Water Under the Bridge (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h0m2SHvEHGw", - "title": "Adele - Turning Tables (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GqapSIu4KEE", - "title": "Remember Monday - What The Hell Just Happened? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8nsX2lBHKzc", - "title": "Adele - When We Were Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z9iZW1vIgu0", - "title": "Adele - Don't You Remember (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9pN_cDcDrcA", - "title": "Jack Black - Steve's Lava Chicken (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fuhFVkpVZ3g", - "title": "Adele - One And Only (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iurUdBaOCPM", - "title": "Miriana Conte - SERVING - Eurovision Official Version (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T0AZymFbD3A", - "title": "Adele - Love In The Dark (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tDbU_GwwIMc", - "title": "Adele - Remedy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w5Zb_46odaI", - "title": "Noah Kahan, Hozier - Northern Attitude (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nd-ZkNQNkds", - "title": "Adele - Million Years Ago (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tkzU_UQtaFM", - "title": "Declan McKenna - Brazil (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zhhu5Sn8o5c", - "title": "sombr - back to friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6PK0zhi1NyQ", - "title": "Jeff Buckley - Lover, You Should've Come Over (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "61O0GvBMAqk", - "title": "Calum Scott - Biblical (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QcLYN-Hbyvk", - "title": "Zach Top - I Never Lie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K4KRfxk7U5g", - "title": "Empire Of The Sun - We Are The People (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ROywgQB2Mns", - "title": "Miley Cyrus - Something Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "riQfYacxt8M", - "title": "Ella Mai - Little Things (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4G2rdVvVG9E", - "title": "George Michael - Father Figure (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "znE56k4vf_w", - "title": "Adele - Rumour Has It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JmZkLQaWddk", - "title": "Carpenters - There's A Kind Of Hush (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KO4aHmpEM2o", - "title": "JENNIE, Dua Lipa - Handlebars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SzI_er_oxVk", - "title": "Wicked - What Is This Feeling? - Original Broadway Cast (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_TlVs0GJ2rM", - "title": "Adele - Hometown Glory (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aGGN8Re59B8", - "title": "Bob Dylan - Like a Rolling Stone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_uORhCSX2f8", - "title": "Adele - Someone Like You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Bz8GBSKwDQI", - "title": "Miley Cyrus - End of the World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7Fv2Sdlpk-M", - "title": "Tomo - le poisson steve (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tKjCAV6-8lo", - "title": "Daniel Caesar, Rex Orange County - Rearrange My World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Bd_QGX0fB34", - "title": "JENNIE - twin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DocjNb_mg-o", - "title": "Pitbull - Hotel Room Service (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sdHKOgllcDw", - "title": "Ravyn Lenae - Love Me Not (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_K23OQqPWK8", - "title": "Sydney Rose - We Hug Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K1t0Ml-Acbk", - "title": "Lady Gaga - How Bad Do U Want Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d_-jC3519xI", - "title": "JENNIE - like JENNIE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0FAENp7SyaU", - "title": "Tate McRae - Revolving door (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wzf0Nmz4hjs", - "title": "Ariana Grande - twilight zone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "imwNEeqNNWE", - "title": "Ariana Grande - Hampstead (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-LsqjSJMyEI", - "title": "Malcolm Todd - Chest Pain (I Love) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bFvZbgCghj8", - "title": "Alex Warren - Ordinary (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PNkeCxYQWoM", - "title": "PARTYNEXTDOOR, Drake - NOKIA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KzvMzlelhaI", - "title": "Tamar Braxton, Future - Let Me Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9EJSbdeNw-g", - "title": "Angie Stone - Wish I Didn't Miss You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5lGFzX7iyrY", - "title": "Pitbull, T-Pain - Hey Baby (Drop It to the Floor) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yd2vcIyquIs", - "title": "Myles Smith - Nice To Meet You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R1ub6OBLtOE", - "title": "Summer Walker - Heart Of A Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HfGnW9jWJmg", - "title": "benny blanco, Selena Gomez - Scared Of Loving You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kmbyk-7v6jg", - "title": "Adele - Chasing Pavements (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m3wVeAJNFzA", - "title": "Sabrina Carpenter - Busy Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4VBfjChuVm8", - "title": "Fleetwood Mac - Silver Springs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FTVvjIExtAU", - "title": "Adele - Hello (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XajTX-fG7W0", - "title": "Stereophonics - Dakota (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zgusMLkk40I", - "title": "Alexandra Stan - Mr. Saxobeat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z0klfsQ-7R8", - "title": "Adele - Set Fire To The Rain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MKfs3OF2jB4", - "title": "Chris Brown - Residuals (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Fj1KclOp-Ik", - "title": "Lady Gaga - Garden Of Eden (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pC_Q7vXRaCs", - "title": "Givon - TWENTIES (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UadrtR56n6s", - "title": "Adele - Skyfall (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RvQ0lIwi0zo", - "title": "Lil Wayne, Drake - She Will (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4OvOvwHOMjg", - "title": "JENNIE, Doechii - ExtraL (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DscB8zA7Bug", - "title": "Charli xcx - party 4 u (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "44mqPOJOgU8", - "title": "Chrystal - The Days - NOTION Remix (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RZmva8uquiQ", - "title": "Adele - Easy On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jKdsBBr-7SY", - "title": "Chrystal - The Days (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5REo18GfifQ", - "title": "Leon Thomas - MUTT (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ml_a7pVg9mU", - "title": "JENNIE, Dominic Fike - Love Hangover (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dPV5xt_BL9I", - "title": "Earth, Wind & Fire - Let's Groove (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Axj2CbCGp5w", - "title": "Riley Green - Worst Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iIIOeDKfwJw", - "title": "Doechii - Anxiety (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1sBdCvrmepI", - "title": "Megan Moroney - Tennessee Orange (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n-aHkg4JTHw", - "title": "JISOO - earthquake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JtEO8Rz_9qI", - "title": "Monica - Angel of Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C2UQh0jbtO4", - "title": "Koe Wetzel, Jessie Murph - High Road (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ao03VOzKeIE", - "title": "Cage The Elephant - Cigarette Daydreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nH1Jaccl-ok", - "title": "ZICO, JENNIE - SPOT! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kVIpQpSiknE", - "title": "Tate McRae - Sports car (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7pwn5fgU1kA", - "title": "Kendrick Lamar - LOVE. FEAT. ZACARI. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AoJVBtAY3fg", - "title": "Lloyd, Lil Wayne - You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lZMv6VCsKlg", - "title": "Kendrick Lamar - tv off (feat. lefty gunplay) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n1Mm8huiZWQ", - "title": "Cigarettes After Sex - K. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mB3hDzmQRmM", - "title": "keshi - Soft Spot (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sPCvX34eQAc", - "title": "Kendrick Lamar - DNA. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-77D4vVeniE", - "title": "Shakira - Soltera (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xuLlncltyqE", - "title": "SZA - Crybaby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Lgt_z4rm25I", - "title": "Kendrick Lamar - Money Trees (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UnjqelSG5V0", - "title": "Juice WRLD - Empty Out Your Pockets (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZgaiWFFql38", - "title": "Roberta Flack - The First Time Ever I Saw Your Face (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4ll9sZl68NQ", - "title": "Dionela - Marilag (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n3HDjAAvhQY", - "title": "Paramore - Decode - Twilight Soundtrack Version (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8-XsZ78KvoI", - "title": "M.I.A. - Paper Planes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AtVi5Y5mB7k", - "title": "Daniel Caesar - Hold Me Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xt1-4bM0KjI", - "title": "Ariana Grande, Cynthia Erivo - What Is This Feeling? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KZU0ASSaZnY", - "title": "Noah Kahan - Youโ€™re Gonna Go Far (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WHWbez_c2nI", - "title": "NIKI - The Apartment We Won't Share (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-tTLDTjiNjw", - "title": "Green Day - Last Night on Earth (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WwlFX8BsZZo", - "title": "PARTYNEXTDOOR - M a k e I t T o T h e M o r n i n g (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XfxN3twMD2s", - "title": "Chappell Roan - Picture You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FXmf7OTljg0", - "title": "Sam Barber, Avery Anna - Indigo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4oaNe2qVG-I", - "title": "LISA, Doja Cat, RAYE - Born Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Jm74pFy9Wtg", - "title": "The Weeknd, Playboy Carti - Timeless (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "stCswZp2BTI", - "title": "Heidi Montag, Pitbull - I'll Do It (feat. Pitbull) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q69n-X6-wz0", - "title": "Lana Del Rey - Diet Mountain Dew (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ANXnoJStI-g", - "title": "Lady Gaga - Abracadabra (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XwO7abK_4AY", - "title": "Tenxi, Jemsii, Naykilla - Garam & Madu (Sakit Dadaku) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oueiBPYcNYo", - "title": "The Emotions, Earth, Wind & Fire - Boogie Wonderland (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xrBJKiYEkhE", - "title": "Ethel Cain - Strangers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I--9z5AGImA", - "title": "Lana Del Rey - Cinnamon Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gIMVZ9-TIqE", - "title": "Julie Doiron - August 10 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-tZqXuvQyZc", - "title": "Teddy Swims - Bad Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vdQdTyw4O38", - "title": "JENNIE - ZEN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Eq-ceacRCw8", - "title": "Morgan Wallen - Smile (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lehqQDrWMgk", - "title": "Jade LeMac - Constellations (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "chgJRSs_WwI", - "title": "Bad Bunny - DtMF (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lfVfcwVPlDw", - "title": "Bad Bunny - BAILE INoLVIDABLE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OI8rY3hiGXs", - "title": "Laufey - I Wish You Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DlkvunK-DZM", - "title": "Minnie Riperton - Lovin' You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q5T9QB4Dp-A", - "title": "Lauryn Hill - Can't Take My Eyes Off of You - (I Love You Baby) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3qD4cjYjrSY", - "title": "Modern Talking - Cheri Cheri Lady (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UFyJGsDqHps", - "title": "Megan Moroney - Am I Okay? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RbZF0jbA6_g", - "title": "beabadoobee - the way things go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3WUGkKJuylA", - "title": "Heidi Montag - I'll Do It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ywXl49tfjg0", - "title": "Modern Talking - You're My Heart, You're My Soul (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jM92ACYKkog", - "title": "BIGBANG - BANG BANG BANG (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jWsRwPAGy0A", - "title": "Yeng Constantino - Ikaw (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f_HVnKb9i1M", - "title": "Nickelback - Far Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xtqwAl7cavQ", - "title": "Lorde - Ribs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S02E9JJtvak", - "title": "Ella Fitzgerald - Misty (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YuRbsKhX1uw", - "title": "Tyla - PUSH 2 START (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KRCQKhbsGjA", - "title": "System Of A Down - Aerials (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tvrp4BynsTE", - "title": "Doechii - DENIAL IS A RIVER (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8AVQsH3M7rU", - "title": "Damiano David - Born With a Broken Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2bTVI7R9scs", - "title": "Ed Sheeran - I See Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZJAy_jhgfaQ", - "title": "Rihanna - Breakin' Dishes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pVpLD2ME6z8", - "title": "Hozier - Do I Wanna Know? - Live At the BBC (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "usi447S2zPw", - "title": "Sleepy Hallow - 2055 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sgByahWVAGw", - "title": "Andmesh - Anugerah Terindah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r5nMSK8FHTc", - "title": "SZA, Kendrick Lamar - 30 For 30 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HsFyMIHqc1k", - "title": "beabadoobee - Real Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "duaDNulZ4j8", - "title": "Tyler, The Creator, Lola Young - Like Him (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UWn-PVFLCPk", - "title": "Flo Rida, Wynter Gordon - Sugar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X9Rq0nnSnM8", - "title": "Ashanti - Only U - No Intro (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dP2f6-wSQiQ", - "title": "Billy Ocean - Love Really Hurts Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LUIL3MN97MA", - "title": "SZA - BMF (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nfx-9IA6Ot8", - "title": "Nelly Furtado - I'm Like A Bird (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9GmqFsWW1ko", - "title": "Sting - Fields Of Gold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0AmKR5Dcmuk", - "title": "SZA - Drive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aUnAmrAGU10", - "title": "Akon, Eminem - Smack That (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z_twGrqu7ng", - "title": "The Pointer Sisters - I'm So Excited (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MGDsNLZtFCA", - "title": "IV OF SPADES - Come Inside Of My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5xgjPdCE6vI", - "title": "Coldplay - ALL MY LOVE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XfuwWadB08M", - "title": "Selena - Amor Prohibido (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZTs8WB0XOj4", - "title": "Naughty Boy, Sam Smith - La La La (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8waL4HAxF2s", - "title": "Engelbert Humperdinck - The Last Waltz (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xxJiZadoTk4", - "title": "Whitney Houston - You're Still My Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dDczjnWoWuY", - "title": "Carpenters - Love Me For What I Am (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P-_dAS-BeWc", - "title": "Sam Smith - Money On My Mind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WKe8pNUviDE", - "title": "The Beatles - The Long And Winding Road (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AS_oUqHN0QU", - "title": "ROSร‰ - toxic till the end (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DJgCjTeU4-E", - "title": "Chase Atlantic - Swim (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XutUJ5Vxric", - "title": "Matchbox Twenty - Push (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-irI9uaHeIk", - "title": "Morgan Wallen - Love Somebody (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YzuYNcCkLD0", - "title": "Cรฉline Dion - I Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VzJvV_22lHA", - "title": "Lola Amour - Fallen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eRN43wlBV6o", - "title": "Arctic Monkeys - No. 1 Party Anthem (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Jr1HWoQpA0g", - "title": "Carpenters - Superstar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uSMZOFNCUSY", - "title": "David Bowie - Space Oddity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4Sdc27sG17k", - "title": "Gracie Abrams - Mess It Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MEiZQJFM6UM", - "title": "Linda Ronstadt, Aaron Neville - Don't Know Much (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fwOEziXz8UQ", - "title": "Christina Aguilera - What a Girl Wants (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lOOnU_L0fLY", - "title": "ROSร‰ - Until I Found You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yqLm5nc3M9U", - "title": "Wicked - The Wizard And I (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ocXHWlnYNxA", - "title": "Queen Naija - Medicine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MCOg17y-VA0", - "title": "TV Girl - Lovers Rock (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pU-UmhUQMYw", - "title": "Kenny Rogers, Anne Murray - If I Ever Fall in Love Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GZ_uka-1hzE", - "title": "Clean Bandit, Demi Lovato - Solo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BrSIGgBuF1w", - "title": "EYE - Satu Nama Tetap Di Hati (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1dxQrzuwPNk", - "title": "Sheryfa Luna - Il avait les mots (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oofmut5Rqv8", - "title": "Christina Perri - you are my sunshine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2qyvu8m3h40", - "title": "Cรฉline Dion - Pour que tu m'aimes encore (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NjDwK70MEBM", - "title": "Restless Heart - When She Cries (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5Vuezq_C0ts", - "title": "BTS, Steve Aoki - The Truth Untold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HWoj8tb9YLU", - "title": "White Lion - When the Children Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1HcmsGCA-2Y", - "title": "Train - Marry Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ofCff4jBsug", - "title": "Mentissa - Et Bam (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AL8DYrpvalI", - "title": "Lauryn Hill - Ex-Factor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "--x5_XZspCE", - "title": "TINI - Te Olvidarรฉ (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cK2kVb8BMGU", - "title": "Philharmonia Orchestra, Laufey - Let You Break My Heart Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T9hKNO2hJE8", - "title": "LE SSERAFIM - CRAZY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "skIuixj9wEM", - "title": "Roy Orbison - Oh, Pretty Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Av2Fg5g9EYI", - "title": "Don Toliver - NEW DROP (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S_lcgS5s2K0", - "title": "ROSร‰ - stay a little longer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gJ1_ND2PUyA", - "title": "Yami Safdie, Lasso - En Otra Vida (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SxSKNdpDTro", - "title": "Oscar Maydon, Fuerza Regida - Tu Boda (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KsYPqZZWF7o", - "title": "Mon Laferte - Tu Falta De Querer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bhaOsOCveRY", - "title": "yung kai - blue (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ueobDwUa_aE", - "title": "Tate McRae - 2 hands (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kKXJfyCiZfE", - "title": "Michael Bublรฉ - Save the Last Dance for Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nQMaYJ2epbQ", - "title": "Imogen Heap - Headlock (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AC518ctCXUA", - "title": "One Direction - More Than This (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K2R7gqE0sYA", - "title": "Marvin Gaye - I Heard It Through The Grapevine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3gO5laSon44", - "title": "BABYMONSTER - DRIP (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ypZTfLupGqE", - "title": "Kendrick Lamar - luther (with sza) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5E3lkGFIfC4", - "title": "Stevie Wonder - Signed, Sealed, Delivered (I'm Yours) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xLz84zV22hA", - "title": "Twenty One Pilots - The Line (Arcane League of Legends) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ljzj6s98cKU", - "title": "Chris Brown - This Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8J-qIt7Q5uI", - "title": "Luther Vandross - Never Too Much (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4P3f9_uHxeI", - "title": "Lady Gaga - Disease (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DuJUyXlRzlY", - "title": "Ariel Rivera - Sana Ngayong Pasko (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pbwfieS_zEs", - "title": "Donny Hathaway - This Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q4RMFx7fSnU", - "title": "GloRilla, Sexyy Red - WHATCHU KNO ABOUT ME (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fY60n84nRsk", - "title": "Pentatonix - Little Drummer Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "irwAhrRNpe4", - "title": "Pentatonix - Carol of the Bells (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_YcwV2y5GeU", - "title": "Karaoke App - New Design overhaul!", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xYhOCYA-1qA", - "title": "Pentatonix - God Rest Ye Merry Gentlemen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eYLZfSy0f90", - "title": "Sabrina Carpenter - is it new years yet? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q9OkV-SQPn0", - "title": "Vince Guaraldi Trio - Christmas Time Is Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7j4pZ_fgQIk", - "title": "Kelly Clarkson - White Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LXvuKQjod-0", - "title": "Pentatonix - That's Christmas to Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KmmRZucz1bM", - "title": "Laufey - Santa Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PdHLdXwHHHo", - "title": "Bad Boys Blue - You're a Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t12WMWJ-eT0", - "title": "Sabrina Carpenter - white xmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "chmCcY52KwI", - "title": "Eurythmics - Sweet Dreams (Are Made of This) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Er_z666JLyY", - "title": "Sabrina Carpenter - A Nonsense Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MgGAZ-LVZSc", - "title": "Natalie Cole - Someone That I Used To Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UPgV8xd_ymY", - "title": "Sabrina Carpenter - cindy lou who (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6sLDljyd6l4", - "title": "Willie Nelson - Always On My Mind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6x6CsQMmwFE", - "title": "Cรฉline Dion, Jean-Jacques Goldman - J'irai oรน tu iras (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3ShC4tNVriI", - "title": "Calum Scott - Flaws (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0NpPmuaBXZg", - "title": "Cynthia Erivo, Ariana Grande - Defying Gravity (From Wicked The Soundtrack) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2b_SEqL48ds", - "title": "Laura Story - Blessings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wLSnTe__V8Q", - "title": "Otis Redding - (Sittin' On) the Dock of the Bay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MWRI_4LDPsc", - "title": "Nat King Cole - L-O-V-E (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hVZK8ZZsVO8", - "title": "Laufey - Winter Wonderland (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Y_Uuqgdn26k", - "title": "Green Day - When I Come Around (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t8s_Y7VU39I", - "title": "Sabrina Carpenter - santa doesnโ€™t know you like i do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QSWmgNMK-VM", - "title": "Don Omar, Lucenzo - Danza Kuduro (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FPpjSn28xyM", - "title": "Sabrina Carpenter - buy me presents (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2PCzqxl9Y6Y", - "title": "Chappell Roan - Kaleidoscope (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o7A5BhnZ6H4", - "title": "Elliot James Reay - I Think They Call This Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CV6ireKZQwU", - "title": "Cory Asbury - Reckless Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nwt0AbwxuMo", - "title": "Lizzy McAlpine - doomsday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XRFR3sAQUjg", - "title": "Frank Sinatra - Jingle Bells (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2VO1KZSr6XM", - "title": "Edward Sharpe & The Magnetic Zeros - Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z_UR8wJNJGI", - "title": "Coldplay - feelslikeimfallinginlove (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4i5rzirTzNs", - "title": "Chaka Khan - Ain't Nobody (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I7X850zgW0o", - "title": "John Newton - Amazing Grace (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2c7y3oZ5aRU", - "title": "Shirin David - Bauch Beine Po (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ylgusZ0K_YA", - "title": "System Of A Down - Toxicity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rwsNb2uotb4", - "title": "Years & Years - Breathe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hx3GTIny7iM", - "title": "Gracie Abrams - Thatโ€™s So True (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kVsKULlOQ_4", - "title": "Jim Reeves - He'll Have to Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lbQoAxwgdOQ", - "title": "Doja Cat - Paint The Town Red (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6S96FV0PLY8", - "title": "Wicked - No Good Deed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BBEkmzEfYZc", - "title": "RAYE - Oscar Winning Tears. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N9WjP1sEJ34", - "title": "PARTYNEXTDOOR - N o C h i l l (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u1DgYoUNo_0", - "title": "Luke Combs - Ain't No Love In Oklahoma (From Twisters: The Album) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XtmJTgtCoP8", - "title": "Eminem - Houdini (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y0tbpX8Jf9U", - "title": "Liam Payne - Teardrops (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qDncl914eG8", - "title": "Sister Sledge - Thinking of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gs1YdqH7vQ0", - "title": "wave to earth - annie. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tKE_DRVIsJw", - "title": "Wicked - I'm Not That Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hRJ7GaQrVyc", - "title": "Mazzy Star - Fade Into You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mb_hyuoXwb8", - "title": "TJ Monterde - Palagi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FyIi1vK03wM", - "title": "Paramore - Ain't It Fun (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tzBJcY-__-4", - "title": "Arthur Nery - TAKE ALL THE LOVE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eElQhOM9aGQ", - "title": "Rod Wave - 25 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X04WLsUHRSY", - "title": "The Marรญas - No One Noticed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cVn_1bQxVSg", - "title": "Toto - Hold the Line (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zk0zgspJjX0", - "title": "LISA - Moonlit Floor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ww4uWGMEydg", - "title": "Ariana Grande - Somewhere Over The Rainbow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RdJSszreF3k", - "title": "JENNIE - Mantra (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xCfkF9NcTYI", - "title": "Akon, Kardinal Offishall, Colby O'Donis - Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X_ny0h8mHsg", - "title": "Wicked - For Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Dq20VE5-q1s", - "title": "Charli xcx, Billie Eilish - Guess (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bs-k8HidZZ4", - "title": "Cigarettes After Sex - Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bCN8PhfN8hc", - "title": "Yeah Yeah Yeahs - Maps (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-cEN7t9bHNg", - "title": "Clairo - Bags (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mG-occ2cGvI", - "title": "Lola Young - Messy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uJqJr13Wb70", - "title": "Mitski - I Bet on Losing Dogs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YgI6OHCFd1U", - "title": "David Guetta, Kid Cudi - Memories (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rY2D7S1TZRM", - "title": "V - Love Me Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ONeM_06BHkw", - "title": "Steve Lacy - Infrunami (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qA1I4NijAwc", - "title": "bรดa - Duvet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gFhXlUvm7R0", - "title": "Cigarettes After Sex - Apocalypse (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XTjM6lx9KPw", - "title": "KSI, Trippie Redd - Thick Of It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7lYwoFB-kME", - "title": "One Direction - Half a Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bpM3judUwDI", - "title": "Johnny Cash - Folsom Prison Blues (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "okYNA7TZwwg", - "title": "GloRilla, Cardi B - Tomorrow 2 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LHDOYGz_iGs", - "title": "Wicked - Popular (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fsfTDDxCSgE", - "title": "PARTYNEXTDOOR - Break from Toronto (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ypXmNE56_z4", - "title": "Samantha Ebert - Flowers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TXH2WQntoUw", - "title": "Regina Song - the cutest pair (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jSL-dCwzd98", - "title": "NIKI - Did You Like Her In The Morning? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S7Kuvi7YQ1Y", - "title": "Alex Warren - Carry You Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GGvtD9_bnuQ", - "title": "Olivia Dean - Dive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hvLPdaijvaI", - "title": "Michael Marcagi - Scared To Start (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7FXr-lBn8cE", - "title": "Travis Scott, Playboy Carti - FE!N (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S8eMeGCSIqg", - "title": "Sabrina Carpenter - Sharpest Tool (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yBi3Vh87Ujc", - "title": "Sabrina Carpenter - Coincidence (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9G-ppzI-36w", - "title": "Milli Vanilli - Blame It on the Rain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kk_D62AONl4", - "title": "Tory Lanez - The Color Violet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JvP836fdzWk", - "title": "Sabrina Carpenter - Good Graces (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U9AV8FR4Ogk", - "title": "Teddy Swims - The Door (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ONhtxkQgJ_I", - "title": "Latto - Brokey (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "URhnha026OA", - "title": "Tyler, The Creator, ft. Kali Uchis - See You Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j_JKfLGNW1U", - "title": "J Cole, Amber Coffman, Cults - She Knows (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aVq-F01aqC0", - "title": "Sabrina Carpenter - Juno (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "crLFRvgs57k", - "title": "KAROL G - Si Antes Te Hubiera Conocido (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2e-DgEqQqiQ", - "title": "LISA, ROSALรA - New Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b8GtV0_g1nc", - "title": "Tate McRae - It's ok I'm ok (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Lak0DKR1Fc4", - "title": "Surf Curse - Disco (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F_6-FWr9EIY", - "title": "Shakira - She Wolf (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x63IDcwS4p0", - "title": "Sabrina Carpenter - Bed Chem (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X7e6Np2m9pQ", - "title": "Baby Meow - What Was I Made For? - Meow Cover (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_cMuM1U1dPc", - "title": "Lady Gaga - Happy Mistake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_8jOmMtISsw", - "title": "Bernadya - Lama Lama (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O3-8SeZT04Y", - "title": "Annie Lennox - I Put A Spell On You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WS2NuUe1lMQ", - "title": "Joe Dassin - Et si tu n'existais pas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_tBXtngZqEA", - "title": "Lainey Wilson - Watermelon Moonshine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7gnnTNOBQ8s", - "title": "beabadoobee - the perfect pair (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PNqrc89yF0s", - "title": "keshi - UNDERSTAND (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RY4t98ImksM", - "title": "FloyyMenor, Chris Mj - Gata Only (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VtYzLfTGnWk", - "title": "Milli Vanilli - I'm Gonna Miss You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YB-NHIVKZk0", - "title": "Mahalini - Sampai Menutup Mata (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DDKaMCucnec", - "title": "The Weeknd, JENNIE, Lily Rose Depp - One Of The Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "urjBqiBAoJ8", - "title": "Ariana Grande - we can't be friends (wait for your love) - acoustic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gxOlpSFRoHo", - "title": "Aaron Smith - Dancin (feat. Luvli) - Krono Remix (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZAixh4mEbuo", - "title": "Megan Thee Stallion - Mamushi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KUvM6qhV-lI", - "title": "Jelly Roll - I Am Not Okay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EfLBGtBF4GU", - "title": "Sabrina Carpenter - Dumb & Poetic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EE_o5Sjq7qg", - "title": "Zach Bryan - Pink Skies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ipC-dZnC4PI", - "title": "Blood Orange - Champagne Coast (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ubHHiTYbPwk", - "title": "Alicia Keys - Un thinkable (I'm Ready) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J8agM8sOuBE", - "title": "GloRilla - TGIF (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jeD2dheUgzs", - "title": "The Weeknd - Dancing In The Flames (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qU0PhzKxGUY", - "title": "Addison Rae - Diet Pepsi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qSKW7JYM46w", - "title": "Sabrina Carpenter - Slim Pickins (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pxpZ201x2ho", - "title": "Oasis - Stand By Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nabAtSD13Nk", - "title": "Central Cee, Lil Baby - BAND4BAND (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "74q2QJ5bfow", - "title": "beabadoobee - Ever Seen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zPWvR4F3MvU", - "title": "Lee Young Ji , D.O. - Small girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qDNWCHJQS-M", - "title": "Bernadya - Satu Bulan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SsSss2ypZ3g", - "title": "aespa - Supernova (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uN0LmVJg1-I", - "title": "Ella Langley, Riley Green - you look like you love me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dN5hRys-t9U", - "title": "Chappell Roan - Femininomenon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-NLEipVDDO8", - "title": "Oasis - Live Forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e0JPjMotxyw", - "title": "Shawn Mendes - Why Why Why (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6Kmjr2dNSsc", - "title": "KATSEYE - Touch (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-4NP3tDpIlk", - "title": "Gracie Abrams - I Love You, I'm Sorry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8zaVLrwA400", - "title": "Bryant Barnes - I'd Rather Pretend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jijWjlS_Iu0", - "title": "Gigi Perez - Sailor Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nMiDT5vBQxQ", - "title": "Lewis Capaldi - Love The Hell Out Of You | From 'It Ends With Us' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MwuAqhTgKvA", - "title": "Jordan Adetunji - KEHLANI (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5NZsB1RTjpU", - "title": "Clairo - Juna (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OZ8BEucczaQ", - "title": "BABYMONSTER - FOREVER (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DijWZw-WdFI", - "title": "Dionela ft. Jay R - sining (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9K7rZv5WT9Y", - "title": "Chitรฃozinho & Xororรณ - Evidรชncias (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5ePpO-aRmHg", - "title": "Barry Manilow - Can't Smile Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AoXEB7VZkiU", - "title": "Jimin - Who (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "adF36uNTSSM", - "title": "Chappell Roan - My Kink Is Karma (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A2gM82qieRE", - "title": "Clairo - Sexy to Someone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "INgrgvaLTbw", - "title": "Charli xcx - Apple (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5IIwlxdURqE", - "title": "Sevdaliza ft. Yseult & Pabllo Vittar - Alibi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gRs06F494Ao", - "title": "Alphaville - Forever Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JO9dHGu-ayA", - "title": "Sabrina Carpenter - Taste (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7K4aj_zPqjo", - "title": "Jeremy Passion - Lemonade - Ukulele Version (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r93hkKtDl_M", - "title": "Yebba - My Mind Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JtlfCaujYiA", - "title": "Young Thug & Rich Homie Quan & Rich Gang - Lifestyle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6Jg4nbZtJpU", - "title": "James Ingram - I Don't Have the Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c0BC27DVTqI", - "title": "SB19 - MAPA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pbO7vo-sMQ0", - "title": "Ricchi E Poveri - Sarร  perchรฉ ti amo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XkZz2WSrT6M", - "title": "ECLIPSE - Sudden Shower (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kbOa2rF3bPY", - "title": "Steve Lacy - Static (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aMfs3AvYIps", - "title": "Royel Otis - Linger SiriusXM Session (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5NXo5-KJyBI", - "title": "Chris Grey - LET THE WORLD BURN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IMq1g14rBYk", - "title": "Yaelokre - Harpy Hare (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KMaCPHbvODs", - "title": "BLACKPINK - Tally (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pHpyWWAFHME", - "title": "Roberto Carlos - Cama e Mesa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A51QLzjBaLI", - "title": "Antรดnio Carlos Jobim - Garota de Ipanema (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AHQ8hukOWGs", - "title": "Dua Lipa - These Walls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dsCk4VHSdMg", - "title": "BINI - Salamin, Salamin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v22Srmh3_bc", - "title": "Brandy, Monica - The Boy Is Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Hdpt73sBfCQ", - "title": "Jeremy Passion, Tori Kelly - Brokenhearted (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KrgLgo8Qn6E", - "title": "Al Bano And Romina Power - Felicitร  (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OuS7EWWrD-M", - "title": "Ella Mai - Naked (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tf1OrQSH3U8", - "title": "adrianne lenker - anything (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1sntrHM1Oak", - "title": "CeCe Winans - Goodness of God (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FuUsQ_zmMbA", - "title": "Roger Hodgson - Lovers In The Wind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E4NCbgtzJU0", - "title": "Screen - Bila Cinta Di Dusta (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h9iOmGY0zRM", - "title": "Chappell Roan - Red Wine Supernova (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3e4i_062zYA", - "title": "Coldplay - Paradise (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yI2T7_wvOJs", - "title": "Coldplay - Fix You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ngpcKo2AJz0", - "title": "Coldplay - In My Place (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XZN3DaxqFuQ", - "title": "Coldplay - Yellow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N_-cG54wBNY", - "title": "Trinidad Cardona - Jennifer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z1716Bkpzmw", - "title": "Calvin Harris - Feel So Close - Radio Edit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cltIrW3fG8A", - "title": "Coldplay - Clocks (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "91OF2UkJHAQ", - "title": "Kendrick Lamar - Not Like Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VQxLvR_P75o", - "title": "Coldplay - Viva La Vida (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Eou63RRvXjM", - "title": "Quavo, Lana Del Rey - Tough (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A_XGZWXF2po", - "title": "Lana Del Rey - Mariners Apartment Complex (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T-y1ln71HNs", - "title": "Toto Cutugno - Lโ€™italiano (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M6cNs1b4uzQ", - "title": "Joe Dassin - Les Champs-Elysรฉes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d4L7iymCVHk", - "title": "Chappell Roan - Pink Pony Club (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "szf5A5jrS6I", - "title": "Billie Eilish - L'AMOUR DE MA VIE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4c4myH5kbo0", - "title": "ร‰dith Piaf - La Vie En Rose (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bUsVwe7zNdo", - "title": "SZA - Blind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HeKrd_yCiWA", - "title": "Lauren Daigle - Thank God I Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nypFcAYr2w0", - "title": "Justin Bieber, Jaden - Never Say Never (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uSSLf0o3i1U", - "title": "Exists - Mencari Alasan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KCoeyqqJpSA", - "title": "Nicki Minaj - Pink Friday Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YIgGSHTUX8M", - "title": "Laufey - Bored (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Rg_K0cOdqT0", - "title": "Jung Kook - Too Sad to Dance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fubhLZJWwjk", - "title": "Lauryn Hill - Doo Wop (That Thing) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DYvfWmZJzDU", - "title": "DJ ร–tzi, Nik P. - Ein Stern (der deinen Namen trรคgt) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Y4XGRs_IbHM", - "title": "d4vd - Feel It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RzSKK7-UkJU", - "title": "Livingston - Last Man Standing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tRAVVvXUKDA", - "title": "Chappell Roan - HOT TO GO! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9MYqJdwMSfo", - "title": "Gracie Abrams - Close To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7zaY30rVLOM", - "title": "Billie Eilish - BITTERSUITE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XYbUEWkaJug", - "title": "Sexyy Redd - Get It Sexyy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-itB1uWxxCg", - "title": "Post Malone, Morgan Wallen - I Had Some Help (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rVsIJzmDCzI", - "title": "Lenka - Trouble Is A Friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VRTiVt5Oz5o", - "title": "Kehlani - Honey (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SfIj1GMU45Q", - "title": "Billy Joel - Vienna (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "skMekv3Glt0", - "title": "J-Cole - No Role Modelz (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VDjE_YPi2nk", - "title": "Helene Fischer - Atemlos durch die Nacht (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qbGzcedmuPI", - "title": "Billie Eilish - THE GREATEST (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9XGJC80ol7Q", - "title": "Bausa - Was du Liebe nennst (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HSVhvYOYKzI", - "title": "Crush - Love You with All My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DZJwCm_8fK0", - "title": "LISA - Rockstar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vYWegByrl1g", - "title": "Lithe - Fall Back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZfCFfw4v_z4", - "title": "CG5, Chi Chi, Kathy Chan & Cami Cat - Sleep Well (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oywVOcD-bo0", - "title": "BABYMONSTER - SHEESH (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7CQYBbPug18", - "title": "Laila! - Like That (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RqZI1KBrcKQ", - "title": "David Guetta, Zara Larsson - This One's for You [Official Song UEFA EURO 2016] (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M0cwPe95fsQ", - "title": "JT - OKAY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DNRCGU2IRxI", - "title": "Sarah Geronimo - Maybe This Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-A58t72ENz4", - "title": "Chappell Roan - Casual (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HGgPSIudsX4", - "title": "Billie Eilish - THE DINER (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F6CntbLcPJg", - "title": "Carole King - You've Got a Friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NrTVaaoFOWk", - "title": "Mariah Carey - I Want To Know What Love Is (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KrjkhyJwVmE", - "title": "Billie Eilish - WILDFLOWER (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "koHyNlSt8YM", - "title": "Coldplay - Christmas Lights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rIA_K-6BdS4", - "title": "Coldplay - The Scientist (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "855NPDQpLA0", - "title": "Coldplay - A Sky Full Of Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zCY-6jxMB4A", - "title": "Coldplay - Adventure Of A Lifetime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tqNJpJcV6oU", - "title": "The Chainsmokers and Coldplay - Something Just Like This (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3Yd7oK6BzT4", - "title": "Coldplay - Hypnotised (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vgTHtQBwolE", - "title": "Billie Eilish - BLUE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mNPj074qsoA", - "title": "Olivia Rodrigo - pretty isn't pretty (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R7hRQUYStJM", - "title": "Billie Eilish - CHIHIRO (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Kpf8O-m812Q", - "title": "Chromatics - Girls Just Wanna Have Some (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7f9gR-iSVP0", - "title": "Charli xcx - 360 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WvwLg_yHwao", - "title": "Billie Eilish - LUNCH (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hjoTkd5XaUQ", - "title": "G Eazy, Christoph Andersson - Tumblr Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M-cBwD2qT1Y", - "title": "Billie Eilish - SKINNY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "38zZ6gX1zsA", - "title": "Livingston - Shadow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5N_-r_5-H6I", - "title": "April Boys - Honey My Love So Sweet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tYglJFtvhR4", - "title": "ILLIT - Magnetic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j25UD-GLGMc", - "title": "John Farnham - Please Don't Ask Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X8o4_K77VsM", - "title": "Myles Smith - Stargazing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9rmosBMpnLg", - "title": "Barry Manilow - Even Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J_yZFlbnHxU", - "title": "Billie Eilish - BIRDS OF A FEATHER (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Oob8OwGwd50", - "title": "Shaggy, RikRok - It Wasn't Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3hc24MkUdhM", - "title": "Sabrina Carpenter - Please Please Please (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8yKMWsdCERs", - "title": "Mario - How Do I Breathe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YzRel12IFg0", - "title": "Tommy Richman - MILLION DOLLAR BABY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jrDNjoVp03s", - "title": "Jorja Smith - Teenage Fantasy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mE52-eNy6Jc", - "title": "James Bay - Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V_FWhuSmgdk", - "title": "Sam Smith - Latch - Acoustic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZUg1x45Yk58", - "title": "Hozier - Cherry Wine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cnTQFPdPQLM", - "title": "The Cranberries - Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hMKyMiVqfnw", - "title": "Bakar, Summer Walker - Hell N Back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sOtdXKWtHyo", - "title": "Paramore - All I Wanted (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DCVscJtCTRg", - "title": "Justin Bieber - One Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "77SPfnP9S_w", - "title": "Edward Maya and Vika Jigulina - Stereo Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hlIjp67CcFM", - "title": "Ne Yo - Closer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ArSqi30fczA", - "title": "Timbaland, Justin Timberlake, Nelly Furtado - Give It To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "haNGTmGCrzk", - "title": "Laufey - Dreamer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4DFTeDjCe4U", - "title": "Elvis Presley - Jailhouse Rock (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0Z8cKdieBOY", - "title": "Tinashe - Nasty (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kwsYkT0hwh8", - "title": "Jung Kook - Yes or No (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pSIaoe87YLI", - "title": "Gracie Abrams - Risk (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bGEA2zZbGzM", - "title": "Laufey - Bewitched (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vshRNPadeFI", - "title": "Joost - Europapa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Jw6qaz_52-4", - "title": "Olivia Rodrigo - ballad of a homeschooled girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CENNzOYiQ3E", - "title": "Alec Benjamin - If We Have Each Other (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a3ohzsRWWIQ", - "title": "Chaka Khan - Through The Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ScvA8G-Kf6o", - "title": "Olivia Rodrigo - love is embarassing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rAoWIf4AgF8", - "title": "Bryson Tiller - Whatever She Wants (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ajg8S1CZoog", - "title": "Lay Bankz - Tell Ur Girlfriend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4xI5Qb4_Q9c", - "title": "Benson Boone - Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q76GQNpvgfo", - "title": "The Script - For The First Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bwdouC2Gpns", - "title": "Isabel LaRos - favorite (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AoIosL3ND_0", - "title": "The Ink Spots - I Don't Want to Set the World on Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DjkCfplHxww", - "title": "Chappell Roan - Good Luck, Babe! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V3AYU6TiUJo", - "title": "James Brown - I Got You (I Feel Good) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tdQ6bTdoBLQ", - "title": "Alek Olsen - someday i'll get it (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w6BkedvErpI", - "title": "Xavi - La Vรญctima (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I367RwBJWyg", - "title": "Mahalini - Mati-Matian (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BpUE4H6ui-A", - "title": "TINI - pa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kUCf24IKB-Q", - "title": "Angelina Mango - La noia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Rnda6Ixm_3s", - "title": "Sam Smith - Fire On Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aRvHChqgRJw", - "title": "Laufey - Goddess (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_BL462UlwEQ", - "title": "Shaboozey - A Bar Song Tipsy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wMvlHhi7poE", - "title": "Tate McRae - dear ex best friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9trBKChZ1tQ", - "title": "No Doubt - Just A Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GwBkAipkRUY", - "title": "Nemo - The Code (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lBP_SWYLkGs", - "title": "Lana Del Rey - hope is a dangerous thing for a woman like me to have (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wq4QKics5A8", - "title": "SZA, Travis Scott - Open Arms (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TMvn3S6WTKI", - "title": "Olivia Rodrigo - girl i've always been (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wMfvk395HD4", - "title": "Ariana Grande - intro (end of the world) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CLkRrDolEDM", - "title": "Mark Ambor - Belong Together (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QeltDFxMRtk", - "title": "Olivia Rodrigo - so american (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "quodFWz0l8s", - "title": "Natasha Bedingfield - These Words (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nB5ufpWrcYk", - "title": "Slimane - Mon amour (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YY3jdu7ur2Y", - "title": "LMFAO, Lauren Bennett, GoonRock - Party Rock Anthem (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cz99kGNLTYg", - "title": "Aimee Carty - 2 days into college (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zqWAdqEjl5M", - "title": "T Pain, Akon - Bartender (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WPQ-wl8EL8I", - "title": "Cรฉline Dion - To Love You More (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3fh4lLaOCtc", - "title": "Sublime - Santeria (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X1CaeQkyWIY", - "title": "Destiny's Child - Stand Up For Love (2005 World Childrenโ€™s Day Anthem) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f8tIaiHlF20", - "title": "Daniel Caesar - Superpowers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R-hngJ7_wfc", - "title": "Carpenters - You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tRyLUBgux04", - "title": "Myke Towers - LALA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gHs3L-PUQfA", - "title": "NIKI - Take A Chance With Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "530_7COF0-Y", - "title": "Jason Dhakal - Para Sa Akin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dJa-R_Pdyo0", - "title": "Sabrina Carpenter - Espresso (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nVD8ISqWrQE", - "title": "Paris Paloma - labour (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f_GQZaW4NqQ", - "title": "Lana Del Rey, Father John Misty - Let The Light In (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-8Iu0sfx_ss", - "title": "Dua Lipa - Illusion (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xP3avKS6eBw", - "title": "Tiรซsto, Tate McRae - 10:35 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EHGCyupKdK0", - "title": "Renรฉe Rapp - Snow Angel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9Q-p8nmTUmE", - "title": "V - FRI(END)S (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8oOveStlomg", - "title": "Laufey - Lovesick (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IURgDagPrcA", - "title": "Beyoncรฉ - I Was Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2vbYwofoAHE", - "title": "Natalie Jane - Intrusive Thoughts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vAZ-90stF8k", - "title": "Tom Odell - Black Friday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kKNxnigwWHY", - "title": "Shy Smith - Soaked (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KVqmQEYsT8c", - "title": "50 Cent, Ne-Yo - Baby By Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7KDGolMBTQk", - "title": "The Outfield - Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WGO17yg3PGw", - "title": "Renรฉe Rapp - Tummy Hurts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fDYyy3yXK7o", - "title": "Olivia Rodrigo - scared of my guitar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SXX8VgA-XVw", - "title": "Panic! At The Disco - New Perspective (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UEkEZNHYgqk", - "title": "Agnes - Release Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j5j_3bWnAJ0", - "title": "Olivia Rodrigo - stranger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "03kU7gBkBcU", - "title": "Ariana Grande - supernatural (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ySnpJvRWNnI", - "title": "Hazbin Hotel - Poison (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lwwV3EtCWGI", - "title": "Ariana Grande - bye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZF8yWXIJXJc", - "title": "Doja Cat - Agora Hills (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PnvixEPm-Jk", - "title": "Yamรช - Bรฉcane A COLORS SHOW (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lBKotQRWWJM", - "title": "Artemas - i like the way you kiss me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ovxl4EEhsNI", - "title": "Ariana Grande - don't wanna break up again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dbBe4FbuBd4", - "title": "Jessie Murph, Jelly Roll - Wild Ones (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8Uqd4PIZMLY", - "title": "Barbara Pravi - Voilร  (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hTMjospTBDE", - "title": "Faouzia - Fur Elise (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YOJ0ZLAHWRY", - "title": "Jason Derulo - Marry Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TzmDQgFymLs", - "title": "Justin Bieber - That Should Be Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y0iRJTt7Fao", - "title": "Hale - Kung Wala Ka (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-rFH0pbcn2A", - "title": "Olivia Rodrigo - obsessed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hikzbv4pKp8", - "title": "Hozier - Too Sweet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BK4kBZHuuf8", - "title": "Lorde - Tennis Court (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BbdyUBX0hlI", - "title": "IU - Love wins all (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R5Dr0cWjQ3U", - "title": "The Cranberries - Ode To My Family (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ilEej6aKkV4", - "title": "Ariana Grande - true story (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SA_9U46KCcU", - "title": "Madison Beer - Make You Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J3hHDOMt2xM", - "title": "Benson Boone - Slow It Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "znDYCTl2m-c", - "title": "Ariana Grande - i wish i hated you (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "scv-qWCsqdM", - "title": "Ariana Grande - eternal sunshine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O7YtJ3oG8C4", - "title": "Brit Smith - Karma's A B (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9e3Ta3R5Z4o", - "title": "Usher - U Remind Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a63mJJ1bi3I", - "title": "Usher - U Got It Bad (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DnE36lFhvoM", - "title": "Beyoncรฉ - JOLENE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dpgcu_NRRG4", - "title": "James Arthur - Naked (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zhN-NAArEH0", - "title": "Usher, Alicia Keys - My Boo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hk2Cv5vqLfI", - "title": "Join The Club - Nobela (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VK-z9PobXyw", - "title": "Ariana Grande - imperfect for you (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OCWmZYXvm9E", - "title": "Ariana Grande - the boy is mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "neaeFc3hjjA", - "title": "Journey - Open Arms (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vWZ3MVAeYcs", - "title": "Rossa - Lupakan Cinta (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "23CmzyEwZOE", - "title": "Dasha - Austin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kitNvfkdVkg", - "title": "Dean Lewis - Waves (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SNZjMi-eD1Q", - "title": "Djo - End of Beginning (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9LQ6AFrc4KM", - "title": "JoJo Siwa - Karma (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cBtfrk3qFpE", - "title": "Yseult - Corps (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X1E2kQF9cLk", - "title": "YG Marley - Praise Jah In The Moonlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qAi2XyMS3dU", - "title": "Daughtry - Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w7f8cSERApM", - "title": "Melissa Manchester - Through the Eyes of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yf50uDl8n1I", - "title": "Jordin Sparks - This Is My Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MMAi2Zy0C6I", - "title": "Bethel Music, Jenn Johnson - Goodness of God (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eNwKETbyNOw", - "title": "Roberta Flack - Killing Me Softly With His Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xms6DIzJwEI", - "title": "Brett Young - In Case You Didn't Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nWaYld5kGC0", - "title": "Summer Walker - Riot (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EkwcFOLrlkE", - "title": "SZA - Saturn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5gQvfXCPzKg", - "title": "4Batz - act ii: date @ 8 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dzeSQENlw1Y", - "title": "LE SSERAFIM - EASY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "32Qajs7sCAI", - "title": "Ariana Grande - we can't be friends wait for your love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oh8O_KuCkHc", - "title": "Nick Carter - Do I Have To Cry For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g83DvrPBFP8", - "title": "Indila - Derniรจre danse (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QLvobWQG2W0", - "title": "Lenka - The Show (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Y20dk5HO-0A", - "title": "Ben&Ben - Kathang Isip (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p-QStG_S-GI", - "title": "Ariana Grande - goodnight n go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5-XKX3tXwIM", - "title": "Roxette - Listen To Your Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s--DFGbkz1c", - "title": "Dylan Gossett - Coal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4g1XWSTATno", - "title": "BABYMONSTER - BATTER UP (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IbcKfbv7mfQ", - "title": "Tate McRae - exes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lFVbDj_qlUU", - "title": "Dua Lipa - Training Season (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gA0YhENzgds", - "title": "Justin Timberlake - Selfish (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NM4hXiCbwK4", - "title": "He Is We - I Wouldn't Mind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g10PJaelvHc", - "title": "SZA - Broken Clocks (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uRcEEBsbfDg", - "title": "Hozier - Work Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1h9hhsVTz6A", - "title": "Natasha Bedingfield - Pocketful of Sunshine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-2X84JQuJJs", - "title": "Frank Sinatra, Nancy Sinatra - Somethin' Stupid (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "367rwhsofqs", - "title": "Usher - Caught Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xiNb1d6F9Zo", - "title": "David Kushner - Skin and Bones (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_zIVNdUGOXc", - "title": "Muni Long - Made For Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xea0kXBAI38", - "title": "BABYMONSTER - Stuck In The Middle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yPaHm9w-EEw", - "title": "Benson Boone - Beautiful Things (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8rP5KeR3tzc", - "title": "Bob Marley - No Woman No Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mXfgsiAPCXc", - "title": "Bob Marley - Redemption Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FucSWsj1cgU", - "title": "Bob Marley - Buffalo Soldier (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KpZhbzLvWms", - "title": "Bob Marley - One Love / People Get Ready (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WTdkf40IgQE", - "title": "Bob Marley - Waiting In Vain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y-3ttXaXRyY", - "title": "Ripley Alexander - Mamma Mia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yarCkISGzsI", - "title": "Nina - Love Moves in Mysterious Ways - Live (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rnFgMSQY-FM", - "title": "Gwen Stefani, Akon - The Sweet Escape (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3mdO0FRrLuY", - "title": "MIIA - Dynasty (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5ipMO0magsU", - "title": "The Jets - You Got It All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K2pXbssq7IA", - "title": "Mahalini - Melawan Restu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yLT_eaEy1lA", - "title": "Fujii Kaze - Shinunoga E Wa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sgj0neU9Leg", - "title": "Yura Yunita - Dunia Tipu Tipu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bs-t-sm6sc4", - "title": "Bing Rodrigo - May Pag-ibig Pa Ba (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zmj7tGv4ECI", - "title": "Bob Marley - Three Little Birds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uaMuEMV_jag", - "title": "Yura Yunita, Glenn Fredly - Cinta Dan Rahasia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ESubt5DIepY", - "title": "April Boy Regino - Umiiyak Ang Puso (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gkVHOC-hjhc", - "title": "Oranges & Lemons - Heaven Knows - This Angel Has Flown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "10Bq4b3BC0s", - "title": "Alan Walker, Putri Ariani, Peder Elias - Who I Am (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IQxtHtt-1YE", - "title": "Randy Santiago - Hindi Magbabago (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ENox0-dvveg", - "title": "Regine Velasquez - Pangarap ko Ang Ibigin Ka (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s5L7sol3TcM", - "title": "Anisa Rahman - Muhasabah Cinta (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rFTb7_9WyOc", - "title": "Yura Yunita - Tutur Batin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bzT5PCRHhvU", - "title": "Daryl Ong - Ikaw Na Nga (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SEtCdqD6NY0", - "title": "Bobby Goldsboro - Honey Karaoke (Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oCZzWLFzzzA", - "title": "Afgan - Bawalah Cintaku (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cARhNBPMn8A", - "title": "Isyana Sarasvati - Tetap Dalam Jiwa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0W_2xEuySoA", - "title": "Mahalini, Nuca - Aku Yang Salah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rjqoWOZRbT0", - "title": "Jack Harlow - Lovin On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6fDo1xec1f8", - "title": "Keisya Levronka - Tak Pantas Terluka (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AHxttSwL_Ws", - "title": "Lara Fabian - Broken Vow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qqI2aY6quLE", - "title": "Donna Cruz - Only Me and You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D5cwJW650eU", - "title": "Brandon Lake - Gratitude (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J9D2SkpDJzo", - "title": "Virgoun - Saat Kau Telah Mengerti (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h7BlkA7OAOc", - "title": "Jim Brickman, Martina McBride - Valentine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FRpndW3zzUE", - "title": "Katrina Velarde - Lason Mong Halik (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GwR1OjrzBCM", - "title": "Men Oppose - Sabihin Mong Lagi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dU-fhUgn9XA", - "title": "Jade LeMac - Constellations (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GZbktkbRpek", - "title": "Drake - Practice (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "giE8oV3AI44", - "title": "Usher - Burn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OgX8UJSeCjQ", - "title": "Flo Milli - Never Lose Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IO73YjbwoVo", - "title": "Xavi - La Diabla (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dFFPTnDtN3M", - "title": "UMI, V - wherever u r (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6TB0GQxu60I", - "title": "Usher - Hey Daddy (Daddy's Home) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lV1dvFobXI4", - "title": "Adie - Paraluman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cro88cWAcqk", - "title": "Element - Rahasia Hati (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "90Wbsm9zBYc", - "title": "Air Supply - Making Love Out of Nothing at All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RcXWiCGluTk", - "title": "Lani Misalucha - Tunay Na Mahal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LtDIMy9Z0aQ", - "title": "Karnamereka - Aya Ibu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LJkzis5a_9U", - "title": "Suara Kayu, Feby Putri - Kembali Pulang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aR-pGCbmlfM", - "title": "Judika - Aku Yang Tersakiti (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nQiLL0mspHs", - "title": "Mason, Princess Superstar - Perfect (Exceeder) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UfsWnmTb7rU", - "title": "Batas Senja - Nanti Kita Seperti Ini (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jHCNqXX55pI", - "title": "Bob Marley - Is This Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Br_JahjWe_k", - "title": "Idgitaf - Takut (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oxfwvWgvs6Q", - "title": "Moira Dela Torre - Dito Ka Lang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lhr_pPAJ0C4", - "title": "Sophie Ellis-Bextor - Murder On The Dancefloor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ITbj0_ca4cc", - "title": "Dewa - Separuh Nafas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mM9I6cjtwRk", - "title": "Bandang Lapis - Nang Dumating Ka (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LO8-PqiXdMA", - "title": "Noel Cabangon - Kanlungan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kS7lSiBJ_0s", - "title": "Ariana Grande - yes, and? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dexBY9pLSTw", - "title": "BLACKPINK - Typa Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tCKhPhgmuTA", - "title": "Parokya Ni Edgar - Halaga (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eDV5k8E1lNI", - "title": "Nadin Amizah - Rayuan Perempuan Gila (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AZzYnakiLCQ", - "title": "TONEEJAY - 711 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9Q3Ii2a7Q3M", - "title": "Renรฉe Rapp - In The Kitchen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n4m4v6N379k", - "title": "Blackstreet, Dr Dre, Queen Pen - No Diggity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1J69S52pJzE", - "title": "Lola Amour - Raining in Manila (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KlyhFjuKW40", - "title": "Mahalini - Ini Laguku (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bfltF1vZSAE", - "title": "Daryl Hall & John Oates - You Make My Dreams (Come True) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "isMRkX3Nu6A", - "title": "Jericho Rosales - Pusong Ligaw (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bLcE-4xnK74", - "title": "Michael Pangilinan - Kung Sakali (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nhhoau4criM", - "title": "South Border - Love Of My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "plzYWhLlbGg", - "title": "Tate McRae - grave (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d6mToWZXZKA", - "title": "Selena - Como La Flor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2SwA1UDvYGE", - "title": "Nelly Furtado - Maneater (Radio Edit) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pv73nSUPkNo", - "title": "Howie Day - Collide (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S7vcCf_DZ7A", - "title": "The Platters - The Great Pretender (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WolY12ByOoo", - "title": "Cakra Khan - Kepada Hati (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QQPUNZ_qrXA", - "title": "Gino Padella - Closer You And I (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1__M7aASjjA", - "title": "Mahalini - Bohongi Hati (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p7jpzkQdBP4", - "title": "Regine Velasquez - On the Wings of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n3yjproe5gA", - "title": "Tiara Andini - Menjadi Dia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HXZ6we0_roc", - "title": "Raissa Anggiani - Kau Rumahku (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ti8KstMvOtQ", - "title": "Gabriella - Natatawa Ako (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XlHzpIvS62g", - "title": "Meiska - Hilang Tanpa Bilang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sV7PWVTJLFo", - "title": "Aruma - Muak (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IN-tb8M97ss", - "title": "Barbra Streisand, Cรฉline Dion - Tell Him (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dqCGNAIkj0A", - "title": "Luis Fonsi - Sola (English Version) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FJOxPKfBmJA", - "title": "Siouxxie - masquerade (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zGEUoy-PXjI", - "title": "Guys Next Door - I've Been Waiting For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8dPoap31yh4", - "title": "Chris De Burgh - The Lady In Red (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9CkVu_RS3H0", - "title": "Ghea Indrawari - Jiwa Yang Bersedih (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ig8K_GsWnYg", - "title": "Everly Brothers - All I Have to Do Is Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tSYoCdVIXic", - "title": "Andmesh - Andaikan Kau Datang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GvBqkVrURA8", - "title": "Ganny Brown - Lowbat Na Ba? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dEH8g2x0a1Y", - "title": "Dan Seals - One Friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SXdzPT0lOP8", - "title": "John Denver - Leaving On A Jet Plane (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SJfIEyvh_9M", - "title": "Stephen Bishop - It Might Be You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ukn0xjnsLko", - "title": "Radiohead - No Surprises (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DwschyLzBa0", - "title": "Jim Photoglo - Will of the Wind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4oU7-kmfnJw", - "title": "Avenged Sevenfold - So Far Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NQKrqJw3UlA", - "title": "Pentatonix - Hallelujah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NH7pnWJn3hM", - "title": "Michael Bublรฉ - Sway (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JPn-mF8JTuQ", - "title": "Tom Petty - Love Is A Long Road (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l6a9Gd0EIW4", - "title": "Sabrina Carpenter - Feather (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PiHSh1N1ZS0", - "title": "Freddie Aguilar - Minamahal Kita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zLBovSsfS5o", - "title": "Rey Valera - Walang Kapalit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z7br8eHWtvc", - "title": "NIKI - Backburner (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-h6zdzLK-hE", - "title": "Teddy Swims - Lose Control (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A3XQnWgXtQw", - "title": "Lana Del Rey - Take Me Home, Country Roads (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9jRievxFFyY", - "title": "Arthur Nery - Isa lang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PgsO3CaUfzg", - "title": "NIKI - Oceans & Engines (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "taxtGcOC_3E", - "title": "Imagine Dragons - Bones (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6sXZOByuzts", - "title": "Rivermaya - If (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PUAqBG9U_zA", - "title": "Tom Petty - I Won't Back Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tYPM_z90ahc", - "title": "Tom Petty - Free Fallin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qRI1YXonIXY", - "title": "Gilbert O'Sullivan - Alone Again (Naturally) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tDxteaAtDT4", - "title": "Jessie Murph - How Could You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UccmluKtZ6I", - "title": "Jelly Roll - Save Me (Karaoke Versions)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VFtJEe_VX5M", - "title": "Air Supply - Come What May (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hGV5YDR2JFg", - "title": "Jerron - Come What May (Tagalog Version) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R_sVqEj1pJM", - "title": "Arthur Miguel - Lihim (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Hf-deLjTerA", - "title": "Raden Rakha, Basmalah - Aku Jatu Cinta (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NYxKm7klmpE", - "title": "Devano - Surat Hati (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3FL2Fqfp0G4", - "title": "Shoti - LDR (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hCMfa74ldPc", - "title": "NewJeans - ETA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zY-sAeqqx2o", - "title": "Donne Maula - Bercinta Lewat Kata (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4gDdRpqMqYw", - "title": "Rachel Zegler - The Hanging Tree (The Hunger Games) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U_4Mk42QSlU", - "title": "Rachel Zegler - The Ballad of Lucy Gray Baird (The Hunger Games) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TNbgXx1B18Q", - "title": "Traditional - Auld Lang Syne (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RFp3dfVwL6w", - "title": "Fadhilah Intan - Dawai (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KH1BrR14CeI", - "title": "Dygta, Kamsaean - Tapi Tahukah Kamu? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e5i0YTU7K4g", - "title": "George Benson - Nothing's Gonna Change My Love For You (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xW8viTSEM0M", - "title": "Rod Stewart - Have I Told You Lately (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "k7XvAWjhK04", - "title": "Cรฉline Dion - That's The Way It Is (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mSSzYD60s-0", - "title": "Jung Kook - Shot Glass of Tears (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IcS1tLmpR5o", - "title": "Noah Kahan - Stick Season (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YRSqpPtdlFs", - "title": "Christmas Carols - Once in Royal David's City (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ugu-vYRax2M", - "title": "Christmas Carols - We Three Kings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5ZR8u7FixqA", - "title": "Christmas Carols - O Little Town of Bethlehem (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x-p6dTA7JpU", - "title": "Mariah Carey - O Holy Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aF8voKa_3Us", - "title": "Traditional - Happy Birthday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sA9Nz5bXI5E", - "title": "Christmas Carols - O Christmas Tree (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "czhfO1vAPg0", - "title": "Michael Bublรฉ - Winter Wonderland (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "otB8Ha8ZzMM", - "title": "Pentatonix - Mary Did You Know? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tKkoy19cKl4", - "title": "Jung Kook - Standing Next to You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RxjmbgrgPGI", - "title": "Christmas Carols - Go Tell It on the Mountain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Yo_AF8kx4GU", - "title": "Christmas Carols - Up on the Housetop (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e1jj5livjZQ", - "title": "Christmas Classics | Karaoke Songs With Lyrics Medley", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TQY2TVn1azM", - "title": "Luke Combs - Fast Car (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lieAdqPDHi8", - "title": "NIKI - High School in Jakarta (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DUd4RcCL49Q", - "title": "Wham! - Last Christmas (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AbH0lf1ayu0", - "title": "Christmas Carols - Ding Dong Merrily on High (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EQJzDPAFVqU", - "title": "juan karlos - ERE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wKrHlCSebyY", - "title": "Britney Spears - Circus (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LDLX90nARKo", - "title": "Jung Kook - Hate You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6e4mLaYzsvQ", - "title": "Olivia Rodrigo - Canโ€™t Catch Me Now (from The Hunger Games) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Lc6yWmGZcqg", - "title": "Troye Sivan - One Of Your Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "efJhuhGNw4I", - "title": "Britney Spears - Womanizer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5BCMm-uxU1Q", - "title": "Britney Spears - Gimme More (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a4gytOFeGg4", - "title": "Christmas Carols - While Shepherds Watched Their Flocks (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7IziBfOUdGk", - "title": "Juris - Di Lang Ikaw (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "thbEKCf-Ddw", - "title": "Orange & Lemons - Hanggang Kailan, Umuwi Ka Na Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-1dhNytIrss", - "title": "Billie Eilish - Bellyache (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PSk-oEwzg1Y", - "title": "SZA, Justin Bieber - Snooze (Acoustic) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IVsF-yfh3LI", - "title": "Laufey - Valentine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G146k8TV4N4", - "title": "Laufey - Promise (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bFl2V_wNooo", - "title": "Alan Walker - The Spectre (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Yx3yUs-zW4U", - "title": "Laufey - Falling Behind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vx1OQtHFWEs", - "title": "Dua Lipa - Houdini (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Up_vxZjp1HM", - "title": "Sing King Karaoke New Game", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iEZmB9bDPDE", - "title": "iรฑigo quintero - Si No Estรกs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XjPHz2T7DNA", - "title": "Kenya Grace - Strangers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bnbGIqpsoQY", - "title": "Nadhif Basalamah - penjaga hati (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kj3vazAG2sY", - "title": "Offset, Metro Boomin - Ric Flair Drip (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hzR9lRaiJMI", - "title": "Britney Spears - Lucky (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WeL44qPLmR8", - "title": "Zach Bryan, Kacey Musgraves - I Remember Everything (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6OvAKHU1Ctc", - "title": "Rihanna - If It's Lovin' That You Want (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_KZCVehzPK4", - "title": "Tyla - Water (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_1w-PRXVTFg", - "title": "Arthur Miguel - Walang Kapalit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ASHtmCXlHUM", - "title": "KALEO - Way Down We Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WtOVV4Wk74E", - "title": "Nena - 99 Luftballons (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xXBdKXvi6n4", - "title": "Tiara Andini - Janji Setia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m1CXT1Z4tQE", - "title": "The Beatles - Now And Then (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DSf72Cz_CYw", - "title": "Cliff Richard - Ocean Deep (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uehwruC1aF8", - "title": "My Chemical Romance - Disenchanted (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hlIzAt06Fuw", - "title": "rhodessa - Kisame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IznUdRQGUEM", - "title": "Salbakuta - Stupid Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qMZ3Rhdalo0", - "title": "Jung Kook, Jack Harlow - 3D (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u5F88j0eRZI", - "title": "James Arthur, Anne Marie - Rewrite the Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-z3JLpc4TCg", - "title": "Anne Murray - Broken Hearted Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I_CQsnFNeMA", - "title": "Seafret - Atlantis (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N9cBqMyxo9Y", - "title": "David Slater - Exchange of Hearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oHwRsI2aSDg", - "title": "System Of A Down - Chop Suey! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ALQADb5CRW4", - "title": "JENNIE - You & Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aoZrqJcXfK8", - "title": "YOASOBI - (Idol) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SIRHqDNpLMo", - "title": "sapientdream - Past Lives (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jJyXx9Re6TU", - "title": "Drake, Yebba - Yebba's Heartbreak (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WOrmzW8w29A", - "title": "IVE - Either Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GNvoF7v4Ipg", - "title": "Moonstar88 - Torete (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Tl6lNyaao5Q", - "title": "Mitski - My Love Mine All Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HPyiPgWSls8", - "title": "Fabio Asher - Rumah Singgah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XIrWf0eHAww", - "title": "Dan Byrd - Boulevard (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h_1qP5CcYfc", - "title": "Sammi Smith - Help Me Make It Through The Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h4N1Uedlgac", - "title": "Josh Turner - Your Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zUWpSsiwLts", - "title": "M2M - Pretty Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0rjWJWGRmco", - "title": "Olivia Rodrigo - the grudge (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4-1hHXOCKvY", - "title": "Ketama - You Are The Reason (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0FbelJQWDMc", - "title": "Mario G Klau - Semata Karenamu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A2VaX62mkUw", - "title": "Sanshai - HABANG AKO'Y NABUBUHAY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jYC52LQxs3c", - "title": "Tate McRae - greedy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7tkqwlV8UCA", - "title": "Kelly Clarkson - Because of You (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SCuzW6LJy2s", - "title": "Olivia Rodrigo - get him back! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fVjmSd_qSbI", - "title": "Lyodra - Tak Dianggap (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GGtJYPBXFCk", - "title": "Bandang Lapis - Kung Alam Mo Lang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "trIzdC4dqfQ", - "title": "ABBA - Honey Honey (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pffG11viB2A", - "title": "Halle - Angel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KiM_sBjG2M8", - "title": "Alan Walker, Ava Max - Alone, Pt II (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rCZHQH4kx28", - "title": "Brad Paisley, Alison Krauss - Whiskey Lullaby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "soEjNVen5SQ", - "title": "Olivia Rodrigo - teenage dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JpI2jorWxVQ", - "title": "Olivia Rodrigo - making the bed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vVtZ4XA_VHM", - "title": "Olivia Rodrigo - lacy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7plqe0keQgU", - "title": "Olivia Rodrigo - logical (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G-ItNK8bvdo", - "title": "Nicki Minaj - Last Time I Saw You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Mre_8H8Inf4", - "title": "December Avenue - Huling Sandali (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g0QTe8ajayk", - "title": "Edwin McCain - I'll Be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gDGPChDrFQc", - "title": "Ella Eyre - We Don't Have To Take Our Clothes Off (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DvDcbqyBlEM", - "title": "wave to earth - seasons (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kLHjY32FhLs", - "title": "Billie Eilish - everything i wanted (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8sF9f1bMNo8", - "title": "Moonstar88 - Migraine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r7rtegChEQA", - "title": "Chris Norman - Some Hearts Are Diamonds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "obXXv9riK8o", - "title": "Whitney Houston - I Will Always Love You (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J9ouUOckADw", - "title": "Olivia Rodrigo - all-american b*tch (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3Zy_v3zearY", - "title": "Ariana Grande - Honeymoon Avenue (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nJyz179rbfU", - "title": "Ne-Yo - Because Of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "03p_baVTcLQ", - "title": "Neocolours - Maybe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "af7J3eM1ofc", - "title": "Roel Cortez - Sa Mata Makikita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PRJhhwR64Dg", - "title": "A1 - Like A Rose (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oqf2vXw5cD4", - "title": "Mahalini - Kisah Sempurna (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JGk6h7Qt_jo", - "title": "Fra Lippo Lippi - Later (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0bk2T1COcyE", - "title": "James Ingram - There's No Easy Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q1kEDNphw1w", - "title": "Jaya - Wala Na Bang Pag Ibig (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3AyECvv0b40", - "title": "Ciamara Morales - Muling Binuhay Mo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7gtwoq4LnUw", - "title": "Akon - Lonely (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sGYVAQGPh7Q", - "title": "Everybody Loves An Outlaw - I See Red (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xE6L_6cH5i8", - "title": "Whitney Houston - One Moment In Time (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L8WtyxYN99o", - "title": "I Belong to the Zoo - Sana (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "blR4XEGPE_o", - "title": "Dolly Parton - Jolene (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RW4x19-NUDg", - "title": "Imago - Sundo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BO4eeJWGkHY", - "title": "Tiara Andini, Arsy Widianto - Cintanya Aku (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L2BlaTnT3QY", - "title": "Cheap Trick - The Flame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RyZ_Km2mbQI", - "title": "Tulus - Langit Abu-Abu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ChCJUgjPDcg", - "title": "Miley Cyrus - Used To Be Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-bWHFidPF4M", - "title": "Angela Bofill - Break It To Me Gently (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BUKlbNHtQz0", - "title": "Whigfield - Close To You - Radio Edit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uXibWWP9hH0", - "title": "Ziva Magnolya - Pilihan Yang Terbaik (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "roZczwRn8Y8", - "title": "Olivia Rodrigo - jealousy, jealousy (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7RALFxl9k88", - "title": "Selena Gomez - Single Soon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4pngCxH8wq0", - "title": "Crystal Gayle - A Long and Lasting Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-vy6Mwige1A", - "title": "ABBA - Dancing Queen (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nrXMyIBm9Ls", - "title": "The Beatles - Let It Be (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6bYMHkKGR5Y", - "title": "Angeline Quinto - Till I Met You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KZ7nyHjuu5o", - "title": "Queen - Bohemian Rhapsody (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1m-lEU9OFQo", - "title": "Yovie Widianto, Lyodra, Tiara Andini, Ziva Magnolya - Menyesal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3pNWAKNBfHE", - "title": "Toto - I'll Be Over You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SjdtX8G1GaY", - "title": "Jennifer Hudson - Spotlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iTQb_x6neqg", - "title": "Passenger - Let Her Go (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kRciKrkyzSk", - "title": "Ariana Grande - Tattooed Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vdIGT7fEKA0", - "title": "James Arthur - A Year Ago (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mSqJTWupltU", - "title": "Akon - Right Now (Na Na Na) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ju0aen5p8Jk", - "title": "Olivia Rodrigo - bad idea right? (clean) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j8KWYIw3HJ4", - "title": "Olivia Rodrigo - bad idea right? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x9qdzwyHq5M", - "title": "Billie Eilish - The 30th (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TKqhYZ_MRsU", - "title": "BTS - Blue & Grey (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PfzS6xh8Okg", - "title": "Marco Sison - Always (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bxkorVDJITo", - "title": "Morisette - Gusto Ko Nang Bumitaw (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mdlwzeZTRKo", - "title": "James Arthur - A Thousand Years (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sj2YubYA_QM", - "title": "Karyn White - Superwoman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KT_XEwRJ7Js", - "title": "Menudo - If You're Not Here (By My Side) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AW4R6zRrVyY", - "title": "Janet Basco - You Made Me Live Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GjvVL5fShZg", - "title": "Boyz II Men - I'll Make Love To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IMQICvUacBM", - "title": "Justin Bieber - Baby (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O6V5tL4dyIQ", - "title": "NOBITA - Ikaw Lang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9lw6kJeBzMU", - "title": "Gigi de Lana - Bakit Nga Ba Mahal Kita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h-UVCwvhzUg", - "title": "The Notorious B I G , Diddy, Mase - Mo Money Mo Problems (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dQ5RJDK838w", - "title": "The Righteous Brothers - Unchained Melody (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uLzPttz1V8g", - "title": "Nazareth - Dream On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G10cm8yNLx0", - "title": "Roel Cortez - Iniibig Kita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1O1SG71rfoI", - "title": "NewJeans - Super Shy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "12ZDvzIViTw", - "title": "Pitbull, Ne Yo, Afrojack, Nayer - Give Me Everything (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CPO-Y0nvkYI", - "title": "Kid Rock, Sheryl Crow - Picture (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4JWM7QW0NIM", - "title": "Callalily - Magbalik (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J9_F0ayNKOw", - "title": "BTS - Yet To Come (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vFHi5FSWg-c", - "title": "Last Child - Duka (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FmE26Xpylg8", - "title": "ZAYN - Love Like This (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nYNaNY6CFHU", - "title": "Ava Max - Choose Your Fighter (Karaoke Version) (From Barbie The Album)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B7OpLSunE_w", - "title": "Ryan Gosling - I'm Just Ken (Karaoke Version) (From Barbie The Album)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3OLbw2BIrvc", - "title": "Lizzo - Pink (Karaoke Version) (From Barbie The Album)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nCxk5SdNKcg", - "title": "Sam Smith - Man I Am (Karaoke Version) (From Barbie The Album)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3W02Lpom65c", - "title": "Alan Walker - Faded (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FNIhj6DQtgk", - "title": "Eiffel 65 - Blue Da Ba Dee (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mx7oveUJUTs", - "title": "Bette Midler - From A Distance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CmER6_swceY", - "title": "Vanilla Ice - Ice Ice Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KtLFoHwxECw", - "title": "Lyodra - Ego (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f1cCpqOnc8c", - "title": "Juan Karlos - Buwan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S_xUZHo-Nnc", - "title": "Luther Vandross - Dance With My Father (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0xnC8C2DL2M", - "title": "Jung Kook, Latto - Seven (Karaoke Version) (Clean Ver.)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g00vtIN_XUw", - "title": "Olivia Rodrigo - good 4 u (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QA42l6E91co", - "title": "Moira Dela Torre - Dito Ka Lang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bNB_toiJ9js", - "title": "Lana Del Rey - Radio (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OcZmincsx8A", - "title": "Gloria Gaynor - I Will Survive (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-iQDbgTX2z4", - "title": "Yng Lvcas, Peso Pluma - La Bebe - Remix (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wnRDx2g04r0", - "title": "Lily Rose Depp - World Class Sinner/I'm A Freak (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9lCnW_UsjZk", - "title": "Backstreet Boys - I Want It That Way (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "olzREp08QNQ", - "title": "FIFTY FIFTY, Kaliii - Barbie Dreams (From Barbie The Album) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f5dVe2PNXBw", - "title": "Billie Eilish - What Was I Made For? (Karaoke Version [From The Barbie Soundtrack]", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jh-BHj-YGxw", - "title": "PinkPantheress - Angel (Karaoke From Barbie The Album)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dwnV1pQeW-E", - "title": "Brian McKnight - 6, 8, 12 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zNHE859q-gQ", - "title": "Mandy Moore - Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LbQ5I1QPSsk", - "title": "Rivermaya - 214 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nRSvkKymHOA", - "title": "Michelle Branch - Everywhere (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yAfhOnKM5iw", - "title": "Louane - Secret (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EVNFbhrJC-o", - "title": "Grease - Summer Nights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GOxIxJw9wAA", - "title": "Elsya, Aan Story - Trauma (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ud_ZJ6ggRhs", - "title": "Tiara Andini - Tega (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7hnYsMIy6kc", - "title": "Air Supply Karaoke songs | Sing King Karaoke Medley", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XFnXLPH4iCk", - "title": "Nicki Minaj, Ice Spice - Barbie World (with Aqua) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fZLhpn1K9eE", - "title": "Darius Rucker - Wagon Wheel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qY_odIHCCC0", - "title": "Deep Purple - Soldier of Fortune (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MdIZG8iu6j4", - "title": "Alan Walker, Sasha Alex Sloan - Hero (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1MrjIaMfVzY", - "title": "Ric Segreto - Don't Know What to Say - Don't Know What to Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hanrdeLWt-E", - "title": "Olivia Rodrigo - vampire (clean) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jTJcTdK6xbc", - "title": "George Baker Selection - I've Been Away Too Long (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Mnpunk2tiho", - "title": "Coco Jones - ICU (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2C94UwCoeQU", - "title": "Olivia Rodrigo - vampire (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dspKbUK2_Pw", - "title": "Harmonica Band ft Justine Calucin - Mahal Pa Rin Kita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JgmORN_h9Vs", - "title": "Olivia Rodrigo - deja vu (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xpha1FmOjLA", - "title": "Olivia Rodrigo - vampire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3vCD1mQlDlg", - "title": "Laufey - From The Start (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e7rCqFiehKk", - "title": "Why Don't We - Just Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QwUGRlLAsZM", - "title": "S Club 7 - Never Had A Dream Come True (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3EMu-wZg6ow", - "title": "Kane Brown, Katelyn Brown - Thank God (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qzNxP1CVJsg", - "title": "Marvin Gaye, Tammi Terrell - Ain't No Mountain High Enough (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7IivchtEv7s", - "title": "Bailey Zimmerman - Rock and A Hard Place (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3I5HhPbUDtI", - "title": "Lainey Wilson - Heart Like A Truck (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U-YJZxe_NdU", - "title": "Khloe Rose - Fictional (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YSpnQ0R-9Hw", - "title": "BABYMONSTER - DREAM (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7VQ1OvPopXo", - "title": "Iniko - Jericho (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D8-X9T_U-R8", - "title": "Putri Ariani - Loneliness (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EK709vKTyqM", - "title": "Niall Horan - The Show (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_iZNCYAfSPo", - "title": "Florence + The Machine - Dog Days Are Over (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eyyLY4oNrXM", - "title": "Lauren Spencer Smith - That Part (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iPkQdrMS0a8", - "title": "Future ft. The Weeknd - Low Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-EDBn1RQhzE", - "title": "(G)I-DLE - Queencard (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1xKiUQSBWgo", - "title": "The Weather Girls - It's Raining Men (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MGblJggENS4", - "title": "Nicki Minaj - Starships (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R-G6ew8NuA0", - "title": "Angeline Quinto - At Ang Hirap (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fIJQWkgMQ98", - "title": "Elvis Presley - Can't Help Falling In Love (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KpEVuaNw9V0", - "title": "Yuji, Putri Dahlia - Old Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7dDlCAKBebI", - "title": "Kylie Minogue - Padam Padam (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5PA6VEDIicM", - "title": "Haddaway - What Is Love (7\" Mix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nwXLKbY2OvA", - "title": "Justine Calucin - Mahal Pa Rin Kita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TN1pMItJ3xA", - "title": "Olivia Newton-John - Hopelessly Devoted To You (Karaoke with Guide Vocal)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QRo_bA0UZqs", - "title": "Tina Turner - Proud Mary (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Runsc90Jtw8", - "title": "Cรฉline Dion - It's All Coming Back To Me Now (Karaoke with Guide Vocal)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2KsPGJP7-io", - "title": "NLE Choppa, Kodak Black, Jimin of BTS, JVKE, & Muni Long - Angel Pt. 1 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0Nt_bsyzaWs", - "title": "Karaoke Songs with lyrics | Love Song Medley", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "99zqSU1llbE", - "title": "Doechii - What It Is (Solo Version) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5aFf8n_Vhso", - "title": "Awdella - Tertawan Hati (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QSOJrRZQXQ4", - "title": "Lyodra - Pesan Terakhir (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ryw3sTbV9jc", - "title": "Krissy & Ericka - 12:51 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mZ8FWOETu8g", - "title": "Rockstar - Mahal Pa Rin Kita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7Aydn2Wkkps", - "title": "Anggi Marito - Tak Segampang Itu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dqlf45uFd8Y", - "title": "Daniel Caeser - Always (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RNxwd8utNBI", - "title": "Ed Sheeran - Photograph (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6NxO-jvNdD8", - "title": "Lewis Capaldi - The Pretender (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JqmYhOF_FwY", - "title": "Dua Lipa - Dance The Night (From The Barbie Album) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tgZ60HUZ9hg", - "title": "Loreen - Tattoo (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5LAAjawwjRE", - "title": "Grupo Frontera, Bad Bunny - un x100to (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9eFKTDA-pk8", - "title": "Up Dharma Down - Tadhana (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hvMw15GwRK8", - "title": "Alicia Keys - Girl on Fire (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pgrNaBHpOK4", - "title": "keshi - LIMBO (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-MpLG3PQs70", - "title": "TVORCHI - Heart Of Steel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u1HPIeivnmo", - "title": "Lewis Capaldi - Haven't You Ever Been In Love Before? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Rf374Hiw7jA", - "title": "Carrie Underwood - Before He Cheats (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XvanaWBWdHg", - "title": "Kali - Area Codes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qHpumOcF_7w", - "title": "Lana Del Rey - Say Yes To Heaven (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3qWgz-N7lAc", - "title": "Kodaline - Moving On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qr7bmNeIr_8", - "title": "Frank Sinatra - My Way (Karaoke With Vocal Guide)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IvIvCzMlB8Y", - "title": "The Itchyworms - Beer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P2zvgp0DLcs", - "title": "IVE - Kitsch (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "21UJnJkNQXc", - "title": "Neil Diamond - Sweet Caroline (Karaoke with Guide Vocal)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pzmF0Z0fTrE", - "title": "The Best Karaoke with lyrics | Piano Karaoke", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0yYbzWRroKo", - "title": "Henry Moodie - drunk text (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pRlM4b8YrV0", - "title": "TVORCHI - Heart Of Steel (Eurovision Version) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7r6R8KLCTG0", - "title": "Raim Loade - Komang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g5UqComgW60", - "title": "Dilaw - Uhaw (Tayong Lahat) (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xhJZSwQ_NoY", - "title": "Kรครคrijรค - Cha Cha Cha (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "05e33y630oo", - "title": "O-Town - All or Nothing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gk0OC3Zw4pg", - "title": "Eslabon Armado, Peso Pluma - Ella Baila Sola (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZMSa-QnnRws", - "title": "d4vd - Here With Me (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4rbcZR-WvCk", - "title": "Alan Walker, Emma Steinbakken - Not You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n95ANSJY8bY", - "title": "LE SSERAFIM, Nile Rodgers - UNFORGIVEN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SVicB-bFaxw", - "title": "Eric Clapton - Wonderful Tonight (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ysRoXpBRNbo", - "title": "Gloria Gaynor - I Will Survive (Karaoke with Guide Vocal)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sWw5xVdb3F8", - "title": "Alexandra Burke - Hallelujah (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dMSC3lKFQCw", - "title": "NF - HAPPY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E_bVDXdmE1w", - "title": "FUN. ft. Janelle Monรกe - We Are Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MM2EQbLou30", - "title": "SZA - Snooze (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8k2yq4UHS2E", - "title": "Ed Sheeran - Boat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "od6aENgF07k", - "title": "Sabrina Carpenter - emails i can't send (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6eysaF9iZi8", - "title": "IVE - I AM (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ao1zmQPd-kI", - "title": "Aziz Hedra - Somebody's Pleasure (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1Gv5AFz8HE0", - "title": "Lorde - Royals (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "684wyeA41-c", - "title": "One Direction - Night Changes (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FnvpCmCIa90", - "title": "The Weeknd ft. Future - Double Fantasy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IHCjoOC1qIc", - "title": "Luke Combs - The Kind of Love We Make (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FmXJYnLVrJA", - "title": "Labrinth - Never Felt So Alone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b4r10ZDkoRc", - "title": "Jack Black - Peaches (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nb4MZAuWr9g", - "title": "NewJeans - OMG (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F4ZLwK_tZM0", - "title": "Lady Gaga - Always Remember Us This Way (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OgpA8sMKZMk", - "title": "Dilaw - Uhaw (Karaoke Songs)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qj1ExxR7Mbs", - "title": "Vance Joy - Riptide (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NMrnX4ivbRk", - "title": "Lana Del Rey, SYML - Paris, Texas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ma6K99zE8Sw", - "title": "Michael Pangilinan - Bakit Ba Ikaw (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RQC7JL4a6fc", - "title": "Best Karaoke songs with lyrics from 90s, 00s, 10s and 20s", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b9skN7auv4c", - "title": "Loreen - Tattoo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v5keWE6yB6k", - "title": "Rihanna - SOS (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yJl30_RIQyg", - "title": "Melanie Martinez - DEATH (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0XM1xdHwsJg", - "title": "Rod Wave - Fight The Feeling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4xKXKVKg6d0", - "title": "Jimin - Like Crazy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IQR4ejQlNeA", - "title": "Jimin - Like Crazy (English Version) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6On6QGIaRww", - "title": "David Kushner - Daylight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RDkIcMvkpkE", - "title": "Miley Cyrus - Angels Like You (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fAHs9mfj2Uw", - "title": "Shawn Mendes - Stitches (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bbHPT8aEYhM", - "title": "NF - HOPE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P05u6WS8uEk", - "title": "Melanie Martinez - VOID (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BzJsUqvKrRY", - "title": "Mahalini - Sial (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Bn5n8R5MY1k", - "title": "JISOO - FLOWER (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0IsoAYygKAM", - "title": "ABBA - The Winner Takes It All (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KN5XuOYXadA", - "title": "Charlie Puth, Dan + Shay - That's Not How This Works (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6ZI0fNdkAWI", - "title": "Best Karaoke songs with lyrics from 50s, 60s, 70s and 80s", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c8_EGyV0Op8", - "title": "Jimin - Promise (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mDDF5ZDH14U", - "title": "Lana Del Rey, Jon Batiste - Candy Necklace (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u0XVZwf1l9Q", - "title": "BLACKPINK - Shut Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q7xdulZjasw", - "title": "FIFTY FIFTY - Cupid (Twin Ver.) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WtJ3I4Qt4Fg", - "title": "Lewis Capaldi - Wish You The Best (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-YsPk7ALYfc", - "title": "Keenan Te - Scars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wwm-hU_PSPk", - "title": "Jeff Grecia - Elevate (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "66cx3A9l3L8", - "title": "Ed Sheeran - Eyes Closed (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cu6_d4p-Ewo", - "title": "Ed Sheeran - Eyes Closed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2DXxv09R5dE", - "title": "Lovejoy - Call Me What You Like (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-63_3ZnjInE", - "title": "FIFTY FIFTY - Cupid (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x3u02M1XKcE", - "title": "Lizzy McAlpine - ceilings (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_FMFY1JLIME", - "title": "New West - Those Eyes (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JRx_iLdF4JE", - "title": "Taylor Swift - All Of The Girls You Loved Before (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LedF8wCozsI", - "title": "Meghan Trainor - Mother (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2NVB-fm4FmA", - "title": "Demi Lovato - Heart Attack (Rock Version) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xL-R3K_CSlY", - "title": "Toosii - Favorite Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wEbABJYI_yk", - "title": "TINI - Cupido (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ka0JPMwJI4M", - "title": "Rihanna, Calvin Harris - We Found Love (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u-AR6JBjj3M", - "title": "Morgan Wallen - Last Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v_x8AqRGHtU", - "title": "James Blunt - Monsters (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "22iOZ9WysFg", - "title": "Hozier - Eat Your Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "joaDUTMQUEc", - "title": "Miley Cyrus ft Brandi Carlile - Thousand Miles (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qEV-njk4sIc", - "title": "Halsey - Die 4 Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r2Eia2HDqIA", - "title": "David Guetta, Bebe Rexha - I'm Good (Blue) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6KECCNE22d0", - "title": "Rihanna - Only Girl (In the World) (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NYa7EWsAdIE", - "title": "MC Niack - Oh Juliana (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3GHPjm_rJOc", - "title": "Rihanna - Where Have You Been (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hZ1gsYckDGk", - "title": "The Killers - Mr Brightside (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h3rFlQsob9g", - "title": "JVKE - this is what losing someone feels like (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Rv40J-KVqlk", - "title": "Miley Cyrus - You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_zBLHtVg0eI", - "title": "The Weeknd, Ariana Grande - Die For You (Remix) (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ff3-e7tq_LE", - "title": "Miley Cyrus - River (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pEYKvfyEXik", - "title": "Miley Cyrus Ft. Sia - Muddy Feet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1XvcftQeLSM", - "title": "Taylor Dayne - Love Will Lead You Back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EXfULdbfL7U", - "title": "New Jeans - Ditto (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rwV_IoxJW0Q", - "title": "Kris Yute - I Did It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OLXPKj1FAnU", - "title": "Firehouse - Love of a Lifetime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8uHee-A4amk", - "title": "j-hope, J. Cole - on the street (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0LIZP4TdBmQ", - "title": "Miley Cyrus - Jaded (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cnCqNp1aaSE", - "title": "Phil Collins - Another Day in Paradise (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oS5uiRwQL64", - "title": "KAROL G, Shakira - TQG (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dLuuoykVw54", - "title": "Mike Posner, Gigamesh - Cooler Than Me - Single Mix (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aGkFoXPJsY8", - "title": "Matchbox Twenty - Unwell (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RFx0hP1SpGU", - "title": "Ne-Yo - Mad (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RCto1V1gfBk", - "title": "Rihanna - Take A Bow (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tbuirN6Ubes", - "title": "Baby Tate - Hey Mickey! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NkAOEMx6bss", - "title": "Miley Cyrus - Wonder Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FrRLQ1cCFnA", - "title": "Zelle - Sabihin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vcn4tU8rq-c", - "title": "beabadoobee - Glue Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "blvn4w3Mnn0", - "title": "ROSALรA - Aute Cuture (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aLlns5GW97Y", - "title": "Dua Lipa - Don't Start Now (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K1n5_8d0MsU", - "title": "The Mamas & The Papas - California Dreamin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qUP5mDujZrE", - "title": "Sia - Chandelier (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2zdRAvMoPRE", - "title": "Denise Julia - NVMD (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZMh-A3nCRzc", - "title": "Halsey - Without Me (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jZO2gNgmvUM", - "title": "Diana Ross - Theme From Mahogany (Do You Know Where You're Going To) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PsS9qN3LrII", - "title": "Frank Sinatra - My Way (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gKYJ7EQavhE", - "title": "Miley Cyrus - Flowers (Demo) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZGUtHVzi1qI", - "title": "SunKissed Lola - PASILYO (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "W7583jsL-lA", - "title": "Pink Pantheress, Ice Spice - Boy's a liar Pt. 2 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R23iFLtZzmY", - "title": "Tina Turner - What's Love Got to Do with It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2d4D-0Vsyiw", - "title": "Kenny Rogers - Through The Years (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1duiZbF_Tx4", - "title": "Mรฅneskin - MAMMAMIA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LYqRbwHavCI", - "title": "Ed Sheeran - Lego House (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wvv43gyB6no", - "title": "Luther Vandross - I'd Rather (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nwYRNqf_F1E", - "title": "Pink Pantheress - Boy's a liar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lTMHgTdKang", - "title": "Mahalini - Sisa Rasa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K-Sw29N29oc", - "title": "Lauren Daigle - Hold On To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vJilneCLSbU", - "title": "The Kid LAROI - Kids Are Growing Up (Part 1) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-dlXnvxWe-s", - "title": "Gina T - Sail Over Seven Seas (Karaoke Songs)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jqpVztRB7RA", - "title": "Kelly Clarkson - Stronger (What Doesn't Kill You) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_yEjGGeNU5c", - "title": "Allona - Someone's Always Saying Goodbye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8thgXdLa4lM", - "title": "Stephen Sanchez, Em Beihold - Until I Found You - Duet (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nxeDoH4VqQA", - "title": "The Weeknd, Ariana Grande - Die For You Remix (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TBYscv4mGes", - "title": "The Script - Breakeven (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wm668alY3Yc", - "title": "Stephen Sanchez, Em Beihold - Until I Found You - Duet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ErVCFQxiL64", - "title": "Meghan Trainor - NO (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yCKLqLvii8w", - "title": "Rihanna - Pon De Replay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r341EL7PXZg", - "title": "Miley Cyrus - The Climb (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tyewo2nMMj4", - "title": "Raisa, Andi Rianto - Bahasa Kalbu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vUWsC88Copw", - "title": "Lizzy McAlpine - ceilings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "px0ZmISy-EE", - "title": "Kali Uchis - I Wish you Roses (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZFlYXKnGH3Y", - "title": "Libianca - People (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Te_4SM_LCC4", - "title": "Niall Horan - Heaven (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "To1kB_DFggQ", - "title": "Rema, Selena Gomez - Calm Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3hQtdpZjuwE", - "title": "Coi Leray - Players (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r-w__4au_Tc", - "title": "Nine Days - Absolutely (Story of a Girl) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ATV62AoZG_E", - "title": "Billie Eilish - TV (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uqRSWhytzAY", - "title": "Lobo - How Can I Tell Her (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DML7SdkO5ZQ", - "title": "The Everly Brothers - Let It Be Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x-2ogfKAZbY", - "title": "The Kid LAROI - I Canโ€™t Go Back To The Way It Was (Intro) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "in6H8oj6_Jc", - "title": "Paramore - This Is Why (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h_hEMHfqr2Q", - "title": "Martin Nievera - Be My Lady (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eBlwDo8QaIw", - "title": "Mรฅneskin - Baby Said (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1-WcnWe4-Ig", - "title": "Louyah - I Used To Care (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_0ctZUD65Xc", - "title": "boygenius - Emily I'm Sorry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gimpuish6DU", - "title": "Rockstar - Parting Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yJcY-KdXT54", - "title": "JVKE - this is what heartbreak feels like (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jGIC4ske6_s", - "title": "Ice Spice, Lil Tjay - Gangsta Boo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5Ed0GIyStVQ", - "title": "Mary J. Blige - Family Affair (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e1E2eo1n2Pk", - "title": "Lil Nas X - STAR WALKIN' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xrYUNv_qRVg", - "title": "Billy Joel - Uptown Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5_e015_ayUE", - "title": "Eraserheads - With A Smile (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aK7c-9sYAdc", - "title": "Olivia Rodrigo - favorite crime (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t6Ydvm0g_4w", - "title": "Cรฉline Dion - The Power of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0y0zKN06RNg", - "title": "Jordin Sparks ft Chris Brown - No Air (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o-OqytXZ4rY", - "title": "Seventeen - Kemarin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5WMsf0nAlFI", - "title": "Sam Smith - I'm Not Here to Make Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EpxuxJcSrwQ", - "title": "TWICE - MOONLIGHT SUNRISE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jjoGOYjvfE0", - "title": "REYNE - At My Worst (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ehMN7CQ1vDg", - "title": "SZA - Nobody Gets Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_jq-e2QtSV4", - "title": "Sam Smith, Koffee, Jessie Reyez - Gimme (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LeRcAzEwI7E", - "title": "The Jets - Make It Real (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VeYc6_E_2OM", - "title": "Betharia Sonatha - Hati Yang Luka (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qZaS1OT9xQI", - "title": "Sabrina Carpenter - Nonsense (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "k6gcSuNufhA", - "title": "Bonnie Tyler - If I Sing You a Love Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XpsYVpXhEOw", - "title": "Sam Smith, Ed Sheeran - Who We Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zu10xadVaWM", - "title": "Maroon 5 - She Will Be Loved (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sUD_pgXU0e0", - "title": "David Pomeranz - On This Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gCrqBZlxSyA", - "title": "R.E.M - Losing My Religion (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1_f2enUKeSU", - "title": "Ava Max - One Of Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sGrHqxca4Ig", - "title": "Sam Smith, Ed Sheeran - Who We Love (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1vBcxWpOi6w", - "title": "Mayonnaise - Jopay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I96r37piNG4", - "title": "Rema - Calm Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DgmcO5TSRdI", - "title": "Budi Doremi - Melukis Senja (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3xPjXbD1TBg", - "title": "Lauren Christy - Steep (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rW2541x8VzY", - "title": "Billy Joel - Piano Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6gJOFTj-z_I", - "title": "d4vd - Romantic Homicide (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rYvkGO98iaI", - "title": "Lana Del Rey - Summertime Sadness (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GUvK2YLh98o", - "title": "Keane - Somewhere Only We Know (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SMBliIvBigU", - "title": "Westlife - My Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SRtd8zs1geU", - "title": "Jennelyn Yabu - Labis na Nasaktan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hEZHzkuXL_U", - "title": "Bizarrap, Shakira - Bzrp Music Sessions, #53 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3hRpzd9_8BM", - "title": "Mac Demarco - Heart To Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fO4wsNsXtDg", - "title": "Miley Cyrus - Flowers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ez9gHxgJAY8", - "title": "Olivia Newton-John - Hopelessly Devoted To You (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FN9QZmfvIHQ", - "title": "Billy Joel - She's Always a Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qEH9w7TFInw", - "title": "Boyzone - Baby Can I Hold You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bYwkHbnycJ0", - "title": "Sheila On 7 - Sephia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WfImwSpERvg", - "title": "Miguel - Sure Thing (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RWhJBqt87Ak", - "title": "Kahitna - Cantik (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PVXB7sXhOaI", - "title": "Taylor Swift - Anti-Hero (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_jRP_Ss0Uog", - "title": "Dean Lewis - How Do I Say Goodbye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kMvBDTPgAdc", - "title": "Dewa - Risalah Hati (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zSnv3nZBcoc", - "title": "Zach Bryan - Something in the Orange (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qvYMJol__LA", - "title": "Cian Ducrot - All For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mBTg_mSuFSE", - "title": "Miley Cyrus - Flowers (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h6HX9kqEj2k", - "title": "Oliver Tree, Robin Schulz - Miss You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Lqfn-J82-O8", - "title": "Dan Hill - Never Thought That I Could Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sg_9m6flh78", - "title": "Katharine McPhee, Jason Reeves - Terrified (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4giwDeT59AA", - "title": "Frank Sinatra - Theme from New York, New York (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tW2cvXq4siI", - "title": "ABBA - Lay All Your Love On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ltriLBa-NkU", - "title": "Selena Gomez - Vulnerable (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fmKKyjuOkVI", - "title": "Son Lux, Mitski, David Byrne - This Is A Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uNTCFLsiSsg", - "title": "Lobo - I'd Love You To Want Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t6iroPCHKnA", - "title": "Dian Piesesha - Tak Ingin Sendiri (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8vgohTaYLfw", - "title": "Cian Ducrot - I'll Be Waiting (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S5s8SONdmf8", - "title": "South Border - Rainbow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tcpBGRhCAOs", - "title": "SZA - Kill Bill (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tzzF4vALNhE", - "title": "Lana Del Rey - Video Games (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WCWHVRaBtLg", - "title": "blink-182 - All the Small Things (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o9CFPLGI588", - "title": "Ariana Grande - Daydreamin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0Sp1FNLtODA", - "title": "The Pussycat Dolls - Hush Hush; Hush Hush (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hCV1Th0KSJQ", - "title": "RAYE, 070 Shake - Escapism. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8pWww4QgM8Q", - "title": "Haley Reinhart - Can't Help Falling In Love (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JOI1FEhsMq8", - "title": "Mary MacGregor - Torn Between Two Lovers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eCZtmGSVKnc", - "title": "The Neighbourhood - Sweater Weather (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MguYlusfy4M", - "title": "Mรฅneskin - THE LONELIEST (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OEc9U6Prxos", - "title": "SZA - Kill Bill (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "07NJs_FTXo0", - "title": "Amy Winehouse - Back To Black (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ISn1-RwoNN0", - "title": "The Pussycat Dolls - Don't Cha (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f0WGcng_NQI", - "title": "Olivia Rodrigo - happier (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wd8hFdbEEqA", - "title": "The Weeknd - Save Your Tears (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rW3Xt1ZZduA", - "title": "Sam Smith - Lay Me Down (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "grWgLhlSUog", - "title": "NOAH - Mungkin Nanti (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bSy0RaSPjw4", - "title": "Rossa - Hati Yang Kau Sakiti (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d4E9wOh-3ME", - "title": "Jordin Sparks - Tattoo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bQL9SvYb4rc", - "title": "Indila - Tourner Dans Le Vide (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2uF-ZTcSR9Q", - "title": "LeAnn Rimes - I Need You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n8jOCfDx0PM", - "title": "The Carpenters - I Won't Last A Day Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AiICGcP5SzM", - "title": "Tom Jones - Delilah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3rB5iQmVGmg", - "title": "Stacey Ryan - Fall In Love Alone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "No3Q3_Jdzt0", - "title": "Joni Mitchell - River (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H0JJoxdfnBY", - "title": "Michael Learns To Rock - That's Why You Go Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sTOr0JemZyM", - "title": "d4vd - Here With Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8ieR8QZLGEw", - "title": "Akon - Be With You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MBIHLqvrUHI", - "title": "Whitney Houston - Try It On My Own (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DTYk16yMls0", - "title": "Mario Winans ft. Enya, Diddy - I Don't Wanna Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nKbiJPLExBE", - "title": "Kitchie Nadal - Same Ground (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uzpXgWvbs_c", - "title": "John Lennon - Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B5ENLD3kVmY", - "title": "Rod Stewart - Sailing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SvUY7Rfh7Hw", - "title": "10cc - I'm Not In Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xscaqUk7Eck", - "title": "Leonard Cohen - Hallelujah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kSRGor18SyQ", - "title": "Metro Boomin, The Weeknd, 21 Savage - Creepin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2IV8BrHO1GA", - "title": "Kali Uchis - Melting (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lHoGLAd79Wo", - "title": "One Direction - Right Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CxXU47MCsL8", - "title": "Air Supply - Having You Near Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MVD6cO1yDzM", - "title": "Justine Skye ft. Tyga - Collide (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tGU01G3OVaw", - "title": "Lana Del Rey - Did you know that there's a tunnel under Ocean Blvd (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "W-ZpjZRa0sw", - "title": "SZA - Shirt (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "esNwgzCKEiE", - "title": "Selena Gomez - My Mind & Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9S_HaJudD2U", - "title": "One Direction - Strong (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NQbUlFKyroc", - "title": "Christmas Carols - Little Drummer Boy (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MRagA5nB8-I", - "title": "Jose Mari Chan - A Perfect Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Xr4bbASQs4I", - "title": "Nicky Youre, dazy - Sunroof (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6v1GN3xidlk", - "title": "Christmas Carols - Hark! The Herald Angels Sing (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hZkElF2crMg", - "title": "Christmas Carols - O Come All Ye Faithful (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P90YMd7y32o", - "title": "Christmas Carols - Angels We Have Heard on High (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eyUf9BTR1b4", - "title": "Christmas Carols - Joy To The World (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2LE0hcAIatA", - "title": "Steve Lacy - Bad Habit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DEB23TuWIPs", - "title": "Jim Brickman, Collin Raye, Susan Ashton - The Gift (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R-PRCBZZGh0", - "title": "Goo Goo Dolls - Iris (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nkcvrr_1aP8", - "title": "Joji - Die For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ECpCDK-2rkg", - "title": "Lady Gaga - Bloody Mary (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V32VnVymJVA", - "title": "Christmas Karaoke Carols! (Christmas Medley)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vXjspvSS3R4", - "title": "Gabrielle - Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LRmeaaefL2Q", - "title": "Christmas Carols - Frosty The Snowman (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2M71HHvEia8", - "title": "Christmas Carols - Frosty The Snowman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mOxpXSge7vs", - "title": "ABBA - Slipping Through My Fingers (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KxlV-2KP-BY", - "title": "Katie Gregson-MacLeod - complex (demo) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ErOJmixf1L0", - "title": "Pongki Barata - Aku Milikmu Malam Ini (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KUbBLUwfz4U", - "title": "Tate McRae - uh oh (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mr1aLAWZgUI", - "title": "Christmas Carols - Hark! The Herald Angels Sing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XWIrcAESaQU", - "title": "James Arthur - Car's Outside (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S4IVRsebTcc", - "title": "Boney M. - Feliz Navidad (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xR0KZKsbSck", - "title": "Taylor Swift - Lavender Haze (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5iyR4x84n1M", - "title": "Andmesh - Hanya Rindu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lZ_gv_AWhRc", - "title": "Christmas Carols - Little Drummer Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yVzJxEk39Ck", - "title": "Chris Norman - No Arms Can Ever Hold You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XwYW2K1vN_A", - "title": "Christmas Carols - Joy to the World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1VRycH5ZoVs", - "title": "Camila Cabello - I'll Be Home For Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8qNUANocvQY", - "title": "Steelheart - She's Gone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ev5IpTlOC0g", - "title": "Taylor Swift - You're On Your Own Kid (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z9cv6yaL1E8", - "title": "Jung Kook - 'Dreamers' FIFA World Cup 2022 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ApGDINM-oKQ", - "title": "Arctic Monkeys - I Wanna Be Yours (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MLE-FL-M27M", - "title": "Elha Nympha, Martin Nievera - Wonderful Tonight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4cWhYRTCs70", - "title": "Christmas Carols - O Come All Ye Faithful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V7i-Zw_IZyY", - "title": "Baddiel, Skinner & The Lightening Seeds - Three Lions (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "W812a1FEO4k", - "title": "Lana Del Rey - Summertime Sadness (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T_Fd7Qxjz9k", - "title": "Frank Sinatra - Fly Me To The Moon (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ClNkwd1u2eQ", - "title": "AJR - World's Smallest Violin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zaWRg0fSkwI", - "title": "Elha Nympha - Wonderful Tonight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5PXAWruecVI", - "title": "Ariana Grande - pov (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oxJzliJdyDE", - "title": "Giveon - Heartbreak Anniversary (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MHs4LxbjvYg", - "title": "Katy Perry - The One That Got Away (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dr2oCTw5a28", - "title": "Rosa Walton, Hallie Coggins - I Really Want to Stay at Your House (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x5tRozfF_b8", - "title": "Meghan Trainor - Made You Look (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s3hxbn1bt-Y", - "title": "NOAH - Yang Terdalam (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QrK2y_P3yuA", - "title": "Tulus - Hati Hati di Jalan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qH7p6cJEXO4", - "title": "Air Supply - Here I Am (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EDAREI4lz4s", - "title": "Ben&Ben - The Ones We Once Loved (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wNbNAT0T31Y", - "title": "Emeli Sandรฉ - Clown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MBfYXMw-NvI", - "title": "TLC - Waterfalls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CxF9yi4FFyg", - "title": "Demi Lovato - Heart Attack (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_RD5Yf3Vu6Q", - "title": "Jax - Victoria's Secret (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uL1iJAgsxUY", - "title": "George Michael - Careless Whisper (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GbC140tbTf8", - "title": "Ghost - Mary On A Cross (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6BPSquDTD5Q", - "title": "Lewis Capaldi - Forget Me (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cmaQOEb4dQ0", - "title": "Cassandra - Cinta Terbaik (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ocWI7EgwUFs", - "title": "Justin Timberlake - Mirrors (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PbKcCfLF3y8", - "title": "Lord Huron - The Night We Met (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DSNK351fGAM", - "title": "Ben E King - Stand By Me (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FkTT-NllZg0", - "title": "Keisya Levronka - Tak Ingin Usai (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TdPPo-hs5kA", - "title": "Taylor Swift - Anti-Hero (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0dl79YW-vz0", - "title": "Indonesian Voices - Rumah Kita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "60QVBCd7JNw", - "title": "Sam Smith, Kim Petras - Unholy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Gs84QK6C75g", - "title": "Nicki Minaj - Super Freaky Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "trIRQLseyF4", - "title": "Britney Spears - Criminal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2L8xc87QMvs", - "title": "Firman - Kehilangan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BB820gr0JJE", - "title": "Tri Suaka - Aku Bukan Jodohnya (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mcFKcYUMq6g", - "title": "Rinto Harahap - Mama (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RoQTjX-MeaI", - "title": "Sofia Carson - Come Back Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a-6TcHb2x1A", - "title": "Billie Eilish - idontwannabeyouanymore (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "28tUgf7ZTic", - "title": "Mรฅneskin - Beggin' (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LuBiUJjZMaQ", - "title": "Solomon Burke - Cry To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3xIm0Gcy_64", - "title": "AURORA - Runaway (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ju03AIeny2Q", - "title": "JVKE - golden hour (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-pz3aaLuuTs", - "title": "BLACKPINK - The Happiest Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BffvNQDAlIA", - "title": "Maroon 5 - Memories (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ivnGkcgRwOI", - "title": "Dua Lipa - Levitating (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "npggOlVAGog", - "title": "James Arthur - Impossible (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VJvzYBo0QDk", - "title": "John Denver - Annie's Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZyqXQawtw4w", - "title": "Lewis Capaldi - Before You Go (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P3XgPgTrVGk", - "title": "Skeeter Davis - The End of the World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WFxNC48iS2o", - "title": "Ne-Yo - So Sick (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_UWR2GB2kis", - "title": "Joey Albert - I Remember The Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zg4VisWwstw", - "title": "Sia - Unstoppable (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DtCrQA6Br5M", - "title": "Ruth B - If By Chance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E0WFQt0Ef-8", - "title": "Sisqรณ - Incomplete (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AMpiv3yNA4Q", - "title": "Lewis Capaldi - Forget Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-EVM538kELk", - "title": "Warren G, Nate Dogg - Regulate (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "seGYMjQsblo", - "title": "Harry Styles - As It Was (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IH-dkzl9by4", - "title": "Madison Beer - Selfish (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MmkJtZ83yl4", - "title": "BLACKPINK - Pink Venom (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9q7d6OaG0M4", - "title": "Seafret - Atlantis (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mXhzpwwIVRk", - "title": "The Cranberries - Zombie (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2heAh-Kj2hg", - "title": "Meghan Trainor, John Legend - Like I'm Gonna Lose You (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BXyLrKoaCGQ", - "title": "Michael Ruff - More Than You'll Ever Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O4PQ7AhAGUA", - "title": "Ella Mae Saison - Till My Heartaches End (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "046zCU6C5qY", - "title": "Sam Smith - Like I Can (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6Nl2dSl4zms", - "title": "Stevie B - Waiting For Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LJRNmdCSc3Q", - "title": "P!nk - Try (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v1aS9pzKgBg", - "title": "James Arthur - Say You Won't Let Go (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jXpoXuuuwuA", - "title": "Sam Cooke - A Change Is Gonna Come (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "76-3jepBZnY", - "title": "Calum Scott, Leona Lewis - You Are The Reason - Duet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gLIaz2b4vmc", - "title": "Drake - Hotline Bling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ha5jKryASz8", - "title": "Patty Smyth, Don Henley - Sometimes Love Just Ain't Enough (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TfvtO_AINlE", - "title": "Chris Brown - Under The Influence (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EKG1iDJJuok", - "title": "Tate McRae - you broke me first (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GjivXHAoLS4", - "title": "Shaggy Ft. Rayvon - Angel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vGCmAYof0vk", - "title": "Olivia Rodrigo - drivers license (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kJl98QLXjxs", - "title": "Anne Marie - 2002 (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ydco4uHmanM", - "title": "Lauren Spencer Smith - Fingers Crossed (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oo0WMbA7v8c", - "title": "Ariana Grande - Dangerous Woman (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T4KyhB9l-L4", - "title": "Troye Sivan - Angel Baby (Karaoke Piano)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M-i3C_6Nkyk", - "title": "Olivia Rodrigo - traitor (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9OX0x9uTfqA", - "title": "Fools Garden - Lemon Tree (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QO0ucFnssKI", - "title": "Conan Gray - Heather (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6Z9rce3zCPQ", - "title": "David Gates - Take Me Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6RdZmSag8Hs", - "title": "Rihanna - Diamonds (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "njuHyVZ2hFs", - "title": "George Benson - In Your Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OgtYP649W_Y", - "title": "Beverley Craven - Promise Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3Y52_YwE7Oo", - "title": "The Ronettes - Be My Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xJKKopkyuDw", - "title": "Billie Eilish - Ocean Eyes (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_y9lTYkcHlM", - "title": "Justin Bieber - Ghost (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SFSPlENtqPA", - "title": "Dove Cameron - Boyfriend (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qSnNWkvocN4", - "title": "Stephen Sanchez - Until I Found You (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Im2A5pbWis8", - "title": "The Script - The Man Who Can't Be Moved (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XNE2n-dNiyQ", - "title": "Elvis Presley - Trouble (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3ZdQXhlXGAw", - "title": "Kodaline - All I Want (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZQGU6_ZjWwg", - "title": "Alex & Sierra - Little Do You Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "255bFXQUqhk", - "title": "Fifth Harmony Feat. Ty Dolla $ign - Work From Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TvVxh2NQZI8", - "title": "Lea Salonga - The Journey (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r7T4zNZ3cTs", - "title": "Whitney Houston - I Have Nothing (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ft3srWYmldc", - "title": "Bonnie Raitt - I Can't Make You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d5x3vS__7ZU", - "title": "Sabrina Carpenter - because i liked a boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RwvpGhUffKU", - "title": "Lauren Spencer-Smith - Narcissist (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yQcTzxmG1ro", - "title": "Alicia Keys - Fallin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1JCVr44e5xs", - "title": "Christina Perri - Jar Of Hearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gwbRCdhwFs8", - "title": "Deborah Cox - Nobody's Supposed to Be Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jLfO9_Xa4bk", - "title": "Nina - Somewhere Down the Road (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G0JiiGgbi_k", - "title": "Rachel Platten - Fight Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BpeuvMD66vg", - "title": "Wiz Khalifa, Charlie Puth - See You Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2Si9GK36rVw", - "title": "Lady Gaga - Million Reasons (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6VoT-KrseHA", - "title": "John Legend - All Of Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u2K-525UPUA", - "title": "Vanessa Carlton - A Thousand Miles (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7LOW-zFO380", - "title": "Sam Smith - I'm Not The Only One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "85zr83teaug", - "title": "Christina Perri - A Thousand Years (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0lFbFPq8ajo", - "title": "Alicia Keys - No One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JVN9XsGSQw0", - "title": "Michael Bolton - How Am I Supposed To Live Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cidANUBQ2jw", - "title": "Rosa Linn - SNAP (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YBATVZ5wVQM", - "title": "Timbaland, Keri Hilson, D.O.E, Sebastian - The Way I Are (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xROW0bLB7eQ", - "title": "Pamungkus - One Only (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QOAPoyNp8HA", - "title": "Sheena Easton - Almost Over You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XhBa1opnVrQ", - "title": "Billie Eilish - TV (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B6WfTi8PU1Y", - "title": "Stephen Speaks - Passenger Seat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XAeoj4diXxM", - "title": "Fugees - Killing Me Softly With His Song (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mfivXPztcKU", - "title": "Counting Crows - Mr Jones (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mY10QWZ37CM", - "title": "Alannah Myles - Black Velvet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "txJxn6Tbm6Y", - "title": "Boz Scaggs - We're All Alone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o_J61xGmiqM", - "title": "LUM!X, MOLOW - Trick Or Treat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aSLJnZ5WOgQ", - "title": "Nessa Barrett - die first (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dXoUB99KO20", - "title": "Sia - Elastic Heart (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PhHQGG2HNx0", - "title": "Billie EIlish - Happier Than Ever (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2Ne-dNU8iEc", - "title": "NF - Paralyzed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gtt8hGIVrhs", - "title": "ABBA - Angeleyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mgt9QudIVrY", - "title": "K-Ci & Jojo - All My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vg79oI8qrmg", - "title": "Dido - Thank You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4XWNLZgCNKU", - "title": "Radiohead - Creep (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ldbNVRCLUYk", - "title": "Harry Styles - Matilda (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QVwLVXX7CHY", - "title": "Charlie Puth - Some Type Of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jmDGhHRE6jY", - "title": "Joji - Like You Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ap17JEXdDzE", - "title": "Ray Parker Jr - The Past (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FP6LIQgdIcI", - "title": "The Weeknd - Call Out My Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "osaAtdKMHz8", - "title": "Britney Spears - Showdown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hq8nGEgAx04", - "title": "Lana Del Rey - Norman f*cking Rockwell (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cuIUns_KHjE", - "title": "Don McLean - Vincent (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sAmuevpBwH8", - "title": "Arctic Monkeys - I Wanna Be Yours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-HgYAkSRt6c", - "title": "*NSYNC - It's Gonna Be Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FrSjfQWDffI", - "title": "Etta James - I'd Rather Go Blind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HAYuls3af5s", - "title": "Eminem - Mockingbird (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yGpqpMvMJKM", - "title": "Tiffany - All This Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mcEivPqruow", - "title": "Journey - Faithfully (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iOVTbiLABMY", - "title": "Sean Paul, Dua Lipa - No Lie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4WAtVrUUPbY", - "title": "A Boogie Wit Da Hoodie, Kodak Black - Drowning (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_NBuSTWhIDc", - "title": "New Order - World In Motion (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QR832n5jeFg", - "title": "Charlie Puth, Jung Kook - Left and Right (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C59DpP2dW3o", - "title": "Whitney Houston - All At Once (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-YOh8FOUkhQ", - "title": "Anne Murray - Just Another Woman In Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MFPj_LzV66g", - "title": "Odette Quesada - Friend of Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eZCHYEH5cV0", - "title": "Justin Bieber - Off My Face (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l4ZsRuVFkVE", - "title": "Harry Styles - Matilda (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sJZOoWKaM84", - "title": "Boney M. - Rasputin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5BQ12VHhkVs", - "title": "Faith Hill - There You'll Be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "thLuW_0snZ0", - "title": "Ronan Keating - If Tomorrow Never Comes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "adB2--dOKLo", - "title": "Hale - The Day You Said Goodnight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "deLQPVcQi2U", - "title": "Chris Walker - How Do You Heal A Broken Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oygfegm6Pjk", - "title": "Debby Boone - You Light Up My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fM8BLWGwyIw", - "title": "Calum Scott, Lyodra - Heaven (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SEGaufBGkUs", - "title": "Debbie Gibson - Lost In Your Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xHqxRGuwzno", - "title": "Peabo Bryson - If Ever You're in My Arms Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BuFgpOAQpvo", - "title": "Becky G, KAROL G - MAMIII (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "26ZFpiYfGJU", - "title": "Brooks & Dunn - Neon Moon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mngzaa-UB20", - "title": "Elvis Presley - If I Can Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NJ--Olbtbls", - "title": "Melissa Manchester - Don't Cry Out Loud (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oRFJx6BsyBg", - "title": "James Ingram - Just Once (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L5t-8YP4U0A", - "title": "Keyshia Cole - Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "idRREHyhyso", - "title": "Bonnie Tyler - It's a Heartache (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MQUCdqpZbCo", - "title": "Post Malone, Roddy Ricch - Cooped Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CUFIRtDz-Oo", - "title": "TLC - No Scrubs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lecqaehgAF0", - "title": "Indila - Love Story (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HlOr9UWZK1s", - "title": "Daniel Boone - Beautiful Sunday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HPJMUvjoOa0", - "title": "John Lennon - Jealous Guy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6wSvak7mM4w", - "title": "Simple Plan - Untitled (How Could This Happen to Me?) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fOV2D5ZQOkA", - "title": "Natalie Cole - Starting Over Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f7SyBXYWL90", - "title": "Phil Collins - Against All Odds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eiTOcxAmyLA", - "title": "Cรฉline Dion - All By Myself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YyzruIR8nqc", - "title": "Brian McKnight - Back At One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KosDA_A_jpE", - "title": "Sean Kingston, Justin Bieber - Eenie Meenie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jCZ8PC2XlAg", - "title": "The Weeknd - Die For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "91ktJCiGSic", - "title": "Jay Sean, Lil Wayne - Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cf06sXPkNA0", - "title": "Bad Bunny - Moscow Mule (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mM3GJXktVVw", - "title": "Mr Big - To Be With You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_nKUmLesoLk", - "title": "Conan Gray - Yours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S-yL4X_lZ5M", - "title": "ABBA - Slipping Through My Fingers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bwiYjnW23Os", - "title": "Sixpence None The Richer - Kiss Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FcClAz9eT0s", - "title": "Lizzo - About Damn Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7lgbF0kf1cE", - "title": "Lady Gaga - Hold My Hand (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LGRAqPaGlT4", - "title": "Kaleb J - Now I Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mAU03y_qqkk", - "title": "Stephen Sanchez - Until I Found You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D6tZBIVor2s", - "title": "Joji - Glimpse Of Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K_pDsSP2mIc", - "title": "Regine Velasquez - You Are My Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZwYr8VLtSQQ", - "title": "Bic Runga - Sway (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1hz78abNR7A", - "title": "Alanis Morisette - Hand In My Pocket (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EZh4UiPsJ1A", - "title": "Toni Gonzaga - Catch Me I'm Falling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CuE_SEJpRNg", - "title": "anees - sun and moon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TFHh1rK6sTk", - "title": "Elvis Presley - Return To Sender (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C-tbyJLrTPc", - "title": "The Animals - House of the Rising Sun (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p6LfFyVK5xA", - "title": "Jimin, HA SUNG WOON - With You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GSrpCBK07MA", - "title": "EMELINE - cinderella's dead (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2ctitUsccu0", - "title": "Camila Cabello, Ed Sheeran - Bam Bam (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "el6CciFwgwk", - "title": "Shayne Ward - No Promises (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dKsi5GPbRbs", - "title": "Judy Boucher - Can't Be With You Tonight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rc1QFDlK_Kc", - "title": "Selena - Dreaming of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RDSruwjK6GM", - "title": "Charlie Puth -That's Hilarious (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YG2ByQge56E", - "title": "Elvis Presley - In The Ghetto (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VbkUuIXXyb4", - "title": "Gorillaz - Feel Good Inc. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uYrsKYqAPiU", - "title": "Anitta - Envolver (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1QTiGL_dr9c", - "title": "50 Cent - In Da Club (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UPd80vvFNtY", - "title": "Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F8HxxaDEBeE", - "title": "Panic! At The Disco - House Of Memories (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UYrREAAiH7A", - "title": "Dionne Warwick - I'll Never Love This Way Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l4lHAiYGzdE", - "title": "Tom Jones - I Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h9JMc9WLF5g", - "title": "Elvis Presley - I Just Can't Help Believing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WJ7PwmiRd5c", - "title": "Vicente Fernรกndez - Mujeres Divinas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dPcGDZjYzb0", - "title": "Jimmy Bondoc - Let Me Be The One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ilxtgesTkUY", - "title": "Helen Reddy - I Can't Say Goodbye To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4Zto899x7x4", - "title": "Dan Hill - Sometimes When We Touch (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QnitepvT9zQ", - "title": "Benson Boone - In The Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FTlUW-dhv48", - "title": "LeAnn Rimes - Can't Fight The Moonlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j-HWqIw0B_Q", - "title": "MYMP - Only Reminds Me Of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LjHyzwa2Kf8", - "title": "Katy Nichole - In Jesus Name God Of Possible (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K1jSgY_QSiQ", - "title": "George Harrison - My Sweet Lord (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GiWIpQHnMcw", - "title": "Vicente Fernรกndez - Acรก Entre Nos (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "slUDJ4AV9Rg", - "title": "Joshua Kadison - Beautiful In My Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wjOkhfxwEVU", - "title": "Dave - Starlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DaJ8IOg8yPM", - "title": "Tom Odell - Heal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T-H27Zii-tY", - "title": "David Pomeranz - Born For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TamNL-1_Lwg", - "title": "Leo Sayer - When I Need You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7XzJ9vg47qw", - "title": "Eminem - Without Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ulv5MEF85D0", - "title": "Elvis Presley - Are You Lonesome Tonight? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3yztOz6QUtQ", - "title": "The Script - Breakeven (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eP3ZhCyKP_k", - "title": "TWICE - The Feels (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pHZJDruEBj0", - "title": "Backstreet Boys - All I Have To Give (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JvlEC54_3VM", - "title": "Elvis Presley - Always on My Mind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ONdGZPs9Ubo", - "title": "Elvis Presley - Don't Be Cruel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kv95-4OdX8I", - "title": "Europe - Carrie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fFQFJ1zuAvI", - "title": "Elvis Presley - Love Me Tender (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QzR3FiN1YSQ", - "title": "Shakira - Whenever, Wherever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iNQVPJdKbpA", - "title": "Tom Jones - It's Not Unusual (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c1X3Lg7RVkk", - "title": "The Killers - Mr. Brightside (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zX1Wfqv8ewU", - "title": "Tate McRae - she's all i wanna be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dhr4gym1itg", - "title": "Gary Moore - Still Got The Blues (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FJ3panlVZlI", - "title": "Dove Cameron - Boyfriend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r9yeE4WL1bA", - "title": "Diddy, Faith Evans, 112 - I'll Be Missing You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BcMHbrOuj5A", - "title": "Duffy - Mercy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Mex3q9dMI-s", - "title": "Anne Murray - I Just Fall In Love Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "23fhUj3xIps", - "title": "Lauren Spencer-Smith - Flowers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wJZCtLp-psI", - "title": "Snow Patrol - Chasing Cars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hBsEQfDjnOQ", - "title": "Engelbert Humperdinck - Love Me With All Your Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yDFmqedhZi4", - "title": "Turning Red - U Know What's Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n8PEHTYHrCI", - "title": "Em Beihold - Numb Little Bug (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r-yRELmja1Y", - "title": "Charlie Puth - Light Switch (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WFCozXnIKlk", - "title": "Lil Eddie - Statue (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3lq7ij3vvvM", - "title": "Usher ft. Lil Jon, Ludacris - Yeah! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XJ4AKd-xMtA", - "title": "Nelly - Just A Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MD1AEAKQoZI", - "title": "Faouzia - RIP, Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1CRDnXlieP0", - "title": "Eminem - The Real Slim Shady (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "paLqOMmRqG0", - "title": "Daรฐi Freyr (Daรฐi & Gagnamagniรฐ) - Think About Things (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZCSZ7Whhkhs", - "title": "Gavin James - Always (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "85HoHBCbEXQ", - "title": "Anson Seabra - Broken (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cHTHXdpJa_4", - "title": "Bruce Springsteen - I'm On Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UFEAtofaO14", - "title": "Bruce Springsteen - Dancing In The Dark (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WzhEG3C0daM", - "title": "Engelbert Humperdinck - A Man Without Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c-7tN-dtzIM", - "title": "Charlene - I've Never Been To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VtXijtGnQ5c", - "title": "Karina Pasian - Slow Motion (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9ujWrsDxKvQ", - "title": "Jazmine Sullivan, H.E.R - Girl Like Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8VPqMqYe5H4", - "title": "Natalie Cole - Miss You Like Crazy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dKLATJG_ZoE", - "title": "BLANCO, Mahmood - Brividi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PTAVP5fna8c", - "title": "Aisha Retno - W.H.U.T (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zz0gmnFSkLo", - "title": "Tate McRae - chaotic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1XIAsRsMr_0", - "title": "Elley Duhรฉ - MIDDLE OF THE NIGHT (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kgWB2BpPvC4", - "title": "Anastacia - Left Outside Alone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BE4BbR3Ghzo", - "title": "Julie Anne San Jose - Your Song (My One And Only) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oJ48FtxK_Wo", - "title": "Wet Wet Wet - Love Is All Around (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ee8cL8k-qOo", - "title": "Amy Winehouse - Tears Dry On Their Own (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0nVh3DOJyXg", - "title": "Luke Chiang - Shouldn't Be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vUOxk56Q6pA", - "title": "Gabrielle - Out of Reach (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sCJIckJN5Zs", - "title": "4*TOWN - Nobody Like U (From Turning Red) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V99LdiJpzwI", - "title": "Britney Spears - I'm Not A Girl, Not Yet A Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gpKWiQFETe4", - "title": "All Saints - Never Ever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aaJwugoNayU", - "title": "Bread - Everything I Own (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GNMHj-lxfQY", - "title": "Delaney Bailey - j's lullaby (darlin' i'd wait for you) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J8BW5A3s0HE", - "title": "Jennifer Lopez, Pitbull - On The Floor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bQw55gy3Sgw", - "title": "Flo Rida feat. T-Pain - Low (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NR08Fd7UKt8", - "title": "Boyz II Men - On Bended Knee (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BBdPnDnmPzc", - "title": "Alanis Morisette - You Oughta Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aOeuCJraDK0", - "title": "Rupert Holmes - Escape (The Piรฑa Colada Song) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1O4kthnhz0g", - "title": "Keith Martin - Because Of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fEEfCIGXMeA", - "title": "Lisa Stansfield - All Around the World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uA6cGcXG_wM", - "title": "Kaash Paige - Love Songs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7FlWrnxdkb8", - "title": "Gryffin feat. Maia Wright - Body Back - Acoustic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wk_k8Oks0X8", - "title": "The Platters - Only You (And You Alone) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BcCg_Su7IPo", - "title": "Peach PRC - Heavy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XGP-CTyaVRE", - "title": "Jhenรฉ Aiko - Triggered (freestyle) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VgYAkT4TJmE", - "title": "Brian McKnight - One Last Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cg1rKZ3GHYc", - "title": "Eruption - One Way Ticket (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Lq86NKT_wS8", - "title": "Kyle Hume - If I Would Have Known (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4j8sPt8Q5mg", - "title": "Maddi Zahm - Fat Funny Friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JEKVKMlYnls", - "title": "Christian Bautista - The Way You Look At Me - Acoustic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V0pyvfuQv0U", - "title": "IVE - ELEVEN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JyKfmLkq3BU", - "title": "Harry Styles - As It Was (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3bNpmDQAteI", - "title": "Abe Parker - Stupid Face (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bm5-U155H88", - "title": "Rick Price - Heaven Knows (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OK2KfGgIWP8", - "title": "Sarah Geronimo - A Very Special Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9btumo8-qQs", - "title": "Sigrid - Dynamite (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CPHyoXANz_g", - "title": "Shawn Mendes - Imagination (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BfM8gqUYQeY", - "title": "salem ilese, TOMORROW X TOGETHER, Alan Walker - PS5 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PMpLyE4MpMU", - "title": "Gatton feat. Brooke Young - When Scars Become Art (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5HfPe96JOFM", - "title": "Justin Bieber - Ghost (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ht46E12S42c", - "title": "SZA - I Hate U (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1e3F3xLtWwE", - "title": "Jaymes Young - Happiest Year (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TZUIRETKusI", - "title": "David Kushner - Miserable Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kdygTSRDuro", - "title": "Muni Long - Hrs and Hrs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ab-CalIVbqI", - "title": "Justin Bieber - Favorite Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H-8SfJQDrz0", - "title": "Dylan Conrique - Birthday Cake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jVDIyez8WSs", - "title": "Dean Lewis - Half A Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QTxhoJ7rWD8", - "title": "Tamia - Officially Missing You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bPhlSF5P7Uc", - "title": "Bobby Caldwell - What You Won't Do For Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YFKyoqHOJpY", - "title": "Shakira Jasmine, Nuca - Meant 2 Be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2litZR18DhU", - "title": "Alfie Castley - Teenage Mona Lisa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9-ffimsqeic", - "title": "aespa - Dreams Come True (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WuU1IEGG7N4", - "title": "Jamie Miller - I Lost Myself In Loving You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-doiGyAXSS0", - "title": "Lana Del Rey - Watercolor Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8Nv8WW9-UcA", - "title": "Kylie Minogue - The Loco Motion (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0YizI9hEiMI", - "title": "Lexi Jayde - drunk text me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wk5oDx3PphE", - "title": "Abe Parker - Butterflies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aX5ak-uWer8", - "title": "Ali Gatie - Perfect (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LwkqWLSHYlw", - "title": "Mac DeMarco - Watching Him Fade Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_uc5cue9dY4", - "title": "Cat Burns - Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TQVuqYklp6w", - "title": "Astrid S - It's Ok If You Forget Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ihDmzAQ2Im0", - "title": "Zevia - if depression gets the best of me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aOygpKMsEko", - "title": "Etham - 12:45 - Stripped (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SQO4HlOdJSI", - "title": "Joey Albert - Tell Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J4w1DCeu5sM", - "title": "Lauren Spencer Smith - Fingers Crossed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WLxqiNmfPfI", - "title": "NIKI - Every Summertime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CegJz2S1t0Y", - "title": "Meat Loaf - Two Out of Three Ain't Bad (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0_p_DDkP0Sk", - "title": "New West - Those Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hzEvc1Jj-FM", - "title": "RHODES, Birdy - Let It All Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y3X8E4I7VQw", - "title": "beabadoobee - Coffee (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LSr9nTev3rY", - "title": "Rex Orange County - Pluto Projector (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "59kcRxRHXvg", - "title": "Sadie Jean - WYD Now? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GRZ1JJ3Gxbw", - "title": "Gary Valenciano - Warrior Is A Child (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mTW-Ut83PPU", - "title": "Madonna - Like A Prayer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m80PQ1JX-PE", - "title": "Madison Ryann Ward - Mirror (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3E_THDJhqtU", - "title": "TheOvertunes - I Still Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4qy4SR1QBWk", - "title": "Neil Diamond - Love On The Rocks (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KQ9aG8FiLVk", - "title": "Scouting For Girls - She's So Lovely (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h7L7Le3I1pw", - "title": "Lykke Li - sex money feelings die (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aG3hA3s-bq8", - "title": "Ed Sheeran - The Joker And The Queen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TzrWhXsDblI", - "title": "Leona Lewis - A Moment Like This (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Av-6Pv89u70", - "title": "Dear Evan Hansen - Finale (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ynyvVLoZveQ", - "title": "SALES - Pope Is A Rockstar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xX_Fn1tRqxo", - "title": "NIKI, 88rising - La La Lost You - Acoustic Version (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j9epSSviUWc", - "title": "Dear Evan Hansen - Disappear (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lnClffG9XzQ", - "title": "Nelly feat. Kelly Rowland - Dilemma (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hEViWpjU3Hs", - "title": "Anson Seabra - Robin Hood (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WZIqIMnDdsA", - "title": "Whitney Houston - All The Man That I Need (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "348-jO8z__Y", - "title": "Taio Cruz - Dynamite (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PrwIQFvgj44", - "title": "James Blunt - You're Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KB6c7CHL0MQ", - "title": "Dear Evan Hansen - So Big / So Small (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Vzr_JulXE38", - "title": "tick, tick... BOOM! - 30/90 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ncwBfJIXvXE", - "title": "Ariana Grande, Kid Cudi - Just Look Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3JSk17OP4SA", - "title": "Dear Evan Hansen - You Will Be Found (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ib_PhEzRqTw", - "title": "MIKA - Grace Kelly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2r_hyDi221w", - "title": "Dear Evan Hansen - Good For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FnH0YawRTXg", - "title": "The Pointer Sisters - Slow Hand (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rsiqKmhyUKs", - "title": "Dear Evan Hansen - Only Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xibqq8qsrLQ", - "title": "Wham! - Everything She Wants (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fQXQ2ZjV7M4", - "title": "Dear Evan Hansen - Words Fail (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i6--BeVJi9Y", - "title": "Dermot Kennedy - Better Days (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ikuIsw9ruh8", - "title": "John Mayer - You're Gonna Live Forever In Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hb54rsJDT1g", - "title": "The Proclaimers - I'm Gonna Be (500 Miles) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PvwLiKaeRyY", - "title": "Empire of the Sun - Walking On A Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L5OsNVY5gBI", - "title": "Billy Ocean - Caribbean Queen (No More Love On The Run) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "we9Rkb24al8", - "title": "Simply Red - You Make Me Feel Brand New (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SozZ6M6bP0c", - "title": "Tracy Chapman - Give Me One Reason (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GFy08U8lsf4", - "title": "Coolio feat. L.V. - Gangsta's Paradise (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nyi6IZyfz80", - "title": "Dear Evan Hansen - To Break In A Glove (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9GkcLEH7clA", - "title": "Blur - Song 2 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0J5s2g6rkH0", - "title": "Kim Wilde - You Keep Me Hanging On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9VlHwqJglZc", - "title": "The Temptations - Get Ready (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F6AlsOR7R08", - "title": "Tears For Fears - Shout (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g-TTPSERoBM", - "title": "Fleetwood Mac - Songbird (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P2prTeWmwpQ", - "title": "Westlife - I Have A Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4nmAbO4jla0", - "title": "Wilson Phillips - Hold On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BFW2VlyROsQ", - "title": "Iyaz - Replay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3rtSq7K7KtI", - "title": "Shakira feat. Wyclef Jean - Hips Don't Lie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vErVIwnwVY0", - "title": "Tori Kelly - Paper Hearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qh3_4pGioHk", - "title": "Stevie Wonder - Part-Time Lover (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DY7ba0OJoEs", - "title": "Dear Evan Hansen - If I Could Tell Her (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dprZmTKPbR0", - "title": "Diana Ross - When You Tell Me That You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X1-FlWbvYRk", - "title": "Imagine Dragons feat. JID - Enemy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xzgogmCQUVE", - "title": "Dear Evan Hansen - Requiem (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "prDU2agXKFQ", - "title": "Clinton Kane - Fix It To Break It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ci1ezW6tr4A", - "title": "Meat Loaf - I'd Do Anything For Love (But I Won't Do That) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f5EDLyui1sQ", - "title": "Edison Lighthouse - Love Grows (Where My Rosemary Goes) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ubkUk6Id-_o", - "title": "Dear Evan Hansen - Sincerely, Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4DwB0wtMIy4", - "title": "*NSYNC - Bye Bye Bye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "86-YOQjW3wE", - "title": "Kenny Loggins - Danger Zone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4-O6kAEsfJA", - "title": "Catie Turner - God Must Hate Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r_joTsaNhkA", - "title": "Dear Evan Hansen - For Forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EoFNtT4INas", - "title": "Sara Bareilles - King Of Anything (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pwmVb2FQ3bk", - "title": "The Walters - I Love You So (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SXnWgS3rpVo", - "title": "BoyWithUke - Toxic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3lGVMuLWbnU", - "title": "The Pussycat Dolls - Stickwitu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wvXWKQQ1Y6Q", - "title": "Dear Evan Hansen - Anybody Have A Map? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LraTETF_ga4", - "title": "Mr. Mister - Broken Wings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qi86ZoscFbE", - "title": "Bon Jovi - Bad Medicine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mVdv5objyUY", - "title": "Dear Evan Hansen - Waving Through A Window (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gekXgdkB9w8", - "title": "Larry Graham - One In A Million You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RK378JQx28Q", - "title": "Summer Walker - Session 32 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SthD3f_ZAGI", - "title": "Lost Frequencies feat. Calum Scott - Where Are You Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GyKUbCo3CCg", - "title": "Madonna - La Isla Bonita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-KMvOQJQ65I", - "title": "Ramsey - Goodbye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bdSu5_uHJuw", - "title": "Jax - Like My Father (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aEN0nxbyOWw", - "title": "Shawn Mendes - It'll Be Okay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DKjw1XEJr7Y", - "title": "Lev Cameron - Hate Me Too (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3CZB4q1QUrk", - "title": "Walker Hayes - Fancy Like (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OzDVZS6LOi0", - "title": "Mimi Webb - Halfway (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d2H80TaceRc", - "title": "Madonna - Open Your Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gJ8HQ4vJ9sg", - "title": "Post Malone, The Weeknd - One Right Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-GtJiOtaXn0", - "title": "Joshua Bassett - Let You Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KIRQ1X-S2mk", - "title": "Bruno Major - Nothing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XjVK8pnbwZc", - "title": "Zack Tabudlo - Give Me Your Forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ytZXMbct5KM", - "title": "Tom Rosenthal - Lights Are On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lftOtYjEtrU", - "title": "NEIKED, Mae Muller, Polo G - Better Days (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sRMIUVOi7wI", - "title": "Regina Spektor - Two Birds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-fgyLh-hGKE", - "title": "Jaymes Young - Infinity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JdneXw7wGgA", - "title": "Morgan Wallen - Sand In My Boots (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9h6KWMFxHeA", - "title": "The Rasmus - In The Shadows (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YQJTRH0_ADs", - "title": "Jason Aldean, Carrie Underwood - If I Didn't Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F61bBHr0U2I", - "title": "Car, the garden - Romantic Sunday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NRxv-hT00h0", - "title": "Stephanie Poetri - I Love You 3000 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kNeex9nLIuc", - "title": "Jeremy Zucker - all the kids are depressed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D7RPv3Pg5y8", - "title": "Cash Cash feat Christina Perri - Hero (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iU3BnaUJt1o", - "title": "aespa - Savage (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bunCcqOUkG4", - "title": "Sam Fender - Seventeen Going Under (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZSMf93beaiI", - "title": "Bazzi - Why (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wcImKM2__Ec", - "title": "Tainy, Bad Bunny, Julieta Venegas - Lo Siento BB:/ (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4Ok1GCirSbA", - "title": "Tate McRae - feel like sh*t (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sTfwVvU7Pbc", - "title": "The Police - Message In A Bottle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SJUYPaoht34", - "title": "Demi Lovato - Gift Of A Friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CbO3yL9Klk4", - "title": "Rockwell - Knife (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BEyCBBe1uDg", - "title": "Katelyn Tarver - You Don't Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VQmQ44Mok4U", - "title": "Michael Learns To Rock - Take Me To Your Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mDFzA-PvwDg", - "title": "Camila Cabello - Million To One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AR9XFlwPiHk", - "title": "The Plot In You - FEEL NOTHING (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lC_rTn1iyiA", - "title": "Raisa - Love & Let Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jNbrruU7Eow", - "title": "Lynyrd Skynyrd - Simple Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IUyAGxTdCX4", - "title": "Joan Jett and The Blackhearts - Bad Reputation (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6K7dWf6texU", - "title": "Justin Timberlake - What Goes Around...Comes Around (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kLV94D2Kn2c", - "title": "Mitski - Working For The Knife (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zri38hh84_Y", - "title": "Emmy Meli - I AM WOMAN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Kx_Ou3Txnlw", - "title": "Arctic Monkeys - Why'd You Only Call Me When You're High? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UGjAkeEM0oA", - "title": "JVKE - this is what falling in love feels like (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eyKBeYUeucU", - "title": "JEON SOMI - Anymore (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OsuH2eCYBoU", - "title": "Gracie Abrams - Feels Like (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "25riE6PyRlo", - "title": "GAYLE - abcdefu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7RNclfY6ETk", - "title": "HONNE ft. BEKA - Location Unknown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7o7AaT3JD2s", - "title": "John Mellencamp - Jack & Diane (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9vImMC3v7YY", - "title": "Doja Cat - Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eJOtvSzsZk0", - "title": "Poison - Every Rose Has Its Thorn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M3Q9A7QWWFI", - "title": "Ne-Yo - So Sick (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4ZChbWt6kJw", - "title": "Ashnikko - Panic Attacks In Paradise (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GS_mctzY45A", - "title": "Jose Mari Chan - Christmas In Our Hearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Iz0lq1Vv8AI", - "title": "Jenna Raine - see you later (ten years) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s4qvi6btOxU", - "title": "Jazmine Sullivan - In Love With Another Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z8-jYQhqK3s", - "title": "Christmas Carols - Jingle Bells (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zPPCNwktsD4", - "title": "Kool & The Gang - Celebration (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QJdcqRYy95A", - "title": "BadBoyHalo, CG5, Hyper Potions - MUFFIN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rzi_FfSV2FQ", - "title": "Swedish House Mafia, The Weeknd - Moth To A Flame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B6OiOMDLzNo", - "title": "Colbie Caillat, Jason Mraz - Lucky (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GlbwsyAJwT4", - "title": "JEON SOMI - XOXO (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "80WiXlN-Erk", - "title": "Tracy Chapman - Baby Can I Hold You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WBqZB4_cJgI", - "title": "Los Del Rio - Macarena (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CSeh0SsnRWk", - "title": "Joy Division - Love Will Tear Us Apart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nBpSBhvpoNo", - "title": "Glee Cast - Jingle Bells (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tpr_9esr9Sc", - "title": "Christmas Carols - Deck the Halls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2cjFgtgi9UQ", - "title": "Christmas Carols - 12 Days of Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nMNIOsNMfSw", - "title": "Elvis Presley - Blue Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RYxms9U7SiQ", - "title": "Michael Bublรฉ - The Christmas Sweater (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SJh5IlyUouk", - "title": "Linkin Park - Shadow Of The Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XpDMs-6U9Mw", - "title": "Kool & The Gang - Cherish (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jxqdP5KU2uU", - "title": "Steve Lacy - Dark Red (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hHxrS58naZ8", - "title": "Guy Sebastian - Angels Brought Me Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H0TGqIuZ09k", - "title": "Kenny Rogers - Coward Of The County (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UQhft51HZEs", - "title": "Nena - 99 Red Balloons (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vwLAD5v-XNo", - "title": "George Michael - Faith (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q8NW5NoSN8s", - "title": "Creed - My Sacrifice (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w-Y1wyC1jeI", - "title": "Philip Bailey, Phil Collins - Easy Lover (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q2VpIxVFCRk", - "title": "Cรฉline Dion - It's All Coming Back To Me Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VDZU38aWfV0", - "title": "Simply Red - If You Don't Know Me By Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gNwU3unmg-k", - "title": "Bette Midler - The Rose (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sdmt2ELrLL0", - "title": "Vanessa Williams - Save The Best For Last (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eGWIwDtSSJE", - "title": "Cรฉline Dion - Dance With My Father (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QX_4ImgKiwQ", - "title": "Lil Nas X, Miley Cyrus - AM I DREAMING (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jrlqWiRto1U", - "title": "Atlantic Starr - Always (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2VWIhx6WYec", - "title": "Joan Osborne - One Of Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-rD1vk3Rki8", - "title": "George Benson - Nothing's Gonna Change My Love For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H4pidwQ0ShI", - "title": "Wham! - I'm Your Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "35HSrR6ZGsU", - "title": "Michael Bublรฉ - White Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J-wNzr-qQ_M", - "title": "George Michael - One More Try (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5LgFU24ff8c", - "title": "Kenny Loggins - Footloose (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_inBAq9sTeA", - "title": "Benson Boone - GHOST TOWN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6-poLZPb7q0", - "title": "Cรฉline Dion - I'm Alive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jpbXaMaGfTA", - "title": "Luther Vandross - Dance With My Father (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OhBVRWDKLuA", - "title": "Cรฉline Dion - O Holy Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ekHoLwskh5w", - "title": "Starship - Nothing's Gonna Stop Us Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BcpOsRLTBZA", - "title": "ABBA - Fernando (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RKvQwgCpyHc", - "title": "Big Mountain - Baby, I Love Your Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lVBlf99UQ2Q", - "title": "Sam Smith, Summer Walker - You Will Be Found (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UxxO5qsAwks", - "title": "Bette Midler - Wind Beneath My Wings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "609O0qqdp44", - "title": "My Chemical Romance - I Don't Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VMqdfDvpkxE", - "title": "Paul McCartney - Wonderful Christmastime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ezjrgMVuceg", - "title": "The B-52s - Love Shack (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Hnn5ijwmjvE", - "title": "Nickelback - Rockstar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iTvWOK4tJIQ", - "title": "Bing Crosby - Winter Wonderland (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JfUEh95C5Us", - "title": "Lou Bega - Mambo No 5 (A Little Bit Of...) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PRQ3JPfzno8", - "title": "Cรฉline Dion, Andrea Bocelli - The Prayer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4iGt1L_93-I", - "title": "Cliff Richard - Mistletoe and Wine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Y20_r9u7vGc", - "title": "Wizzard - I Wish It Could Be Christmas Everyday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ibOx37zoRAc", - "title": "Agatha Lee Monn, Katie Lopez, Kristen Bell - Do You Want To Build A Snowman? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BkQqxpk9968", - "title": "Boney M - Mary's Boy Child (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PqpH0PdJs54", - "title": "Leona Lewis - One More Sleep (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DKTlrfsLuhA", - "title": "Fugees - Killing Me Softly With His Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J_FhZ-n3B5M", - "title": "Nickelback - How You Remind Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pIIVI5GEcVs", - "title": "Bananarama - Venus (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VlzS2PHpLr8", - "title": "Kim Carnes - Bette Davis Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uIcmAyAJ5hE", - "title": "Linkin Park - In The End (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8mn4MJ-Nnyw", - "title": "Arash Buana, Raissa Anggiani - if u could see me cryin' in my room (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-sAGqzSkVKQ", - "title": "3 Doors Down - Kryptonite (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1eYJqqbjzgs", - "title": "Van Morrison - Brown Eyed Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iquvJKUwLUc", - "title": "Tubbo, CG5 - Life By The Sea (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "onw0yvslQ0s", - "title": "Erik Santos - I'll Never Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cXT-qQz5vBg", - "title": "Oliver Tree - Life Goes On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XDbTVYkg-fY", - "title": "LISA - LALISA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6WpSJEfWHmg", - "title": "Madds Buckley - The Red Means I Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s5Tsagidkfo", - "title": "LeeHi - ONLY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yZDCZX6nXOs", - "title": "Faouzia, John Legend - Minefields (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-Q1fDkbWepM", - "title": "Whitney Houston - Where Do Broken Hearts Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9hwpgX0hneE", - "title": "DeBarge - Rhythm Of The Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9c80VAkUOds", - "title": "CKay - love nwantiti (ah ah ah) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M6ccBWsX8Dw", - "title": "Cameo - Word Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vbiuaexUGxQ", - "title": "LISA - MONEY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2T0QklpqG4k", - "title": "Fleetwood Mac - Little Lies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EdbriG0Sz_U", - "title": "Linkin Park - What I've Done (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3HlPrd1csr4", - "title": "Rockwell - Somebody's Watching Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6OX6eFoN29s", - "title": "Linkin Park - CASTLE OF GLASS (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MjFu3u5AMks", - "title": "ROSALรA, Ozuna - Yo x Ti, Tu x Mi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iQbT7ADqgSo", - "title": "Linkin Park - BURN IT DOWN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xB3DsoNBQe0", - "title": "Just Stef - Miss U Miss Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DMkfrRksG-w", - "title": "Simply Red - Holding Back The Years (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_qzFDr2ixnI", - "title": "Justin Timberlake - Seรฑorita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cXqEchoTyjI", - "title": "Linkin Park - New Divide (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3293gfAtXbg", - "title": "Rico Blanco - Your Universe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cdx4ed5IzYw", - "title": "Parmalee - Take My Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SDWfE8IKdlk", - "title": "Lil Nas X ft. Elton John - ONE OF ME (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ceWMN7gpGKI", - "title": "Mimi Webb - Dumb Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "grYoOTDUpMY", - "title": "Ingrid Andress, Sam Hunt - Wishful Drinking (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CucVxsLzUjo", - "title": "Deniece Williams - Let's Hear It For The Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6w5mdZZtt-Y", - "title": "Justin Timberlake - Cry Me A River (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GGHXpCCcgQc", - "title": "Luke Combs - Beer Never Broke My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZBWSkU-uxFA", - "title": "OneRepublic - Someday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ybujfv_yaHc", - "title": "Don McLean - American Pie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "40JPyPasInA", - "title": "Sueco - Paralyzed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fA9IX9sIKgU", - "title": "Sam Kim - Love Me Like That (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ehwnuae2QHw", - "title": "THE ANXIETY, Tyler Cole, WILLOW - Meet Me At Our Spot (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AFG_izhrhbY", - "title": "Eagle-Eye Cherry - Save Tonight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "55TwvRv_Xog", - "title": "Shawn Mendes - Stitches (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OA44unnMz2Q", - "title": "Mariah Carey - Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CYpILLJpRBE", - "title": "Troye Sivan - Angel Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1DEiCIT86UU", - "title": "Rex Orange County - Best Friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H8czK8snxQI", - "title": "Sabrina Carpenter - Skinny Dipping (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xEQw0C0SYEI", - "title": "Aretha Franklin - Respect (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ooPl1fprR0o", - "title": "The Weeknd - Take My Breath (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "08kmO_PtJ64", - "title": "Kelsea Ballerini, LANY - I Quit Drinking (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RAExjnAFh9s", - "title": "Nessa Barrett - i hope ur miserable until ur dead (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gm5wyMfJcpI", - "title": "Pat Benatar - We Belong (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TRZWWAh1Cgw", - "title": "Doja Cat, The Weeknd - You Right (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ShMxICBtGNg", - "title": "Lynyrd Skynyrd - Sweet Home Alabama (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2z5WPXAkQYQ", - "title": "Justin Timberlake - Mirrors (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dh0gLJCvmcI", - "title": "The Doors - People Are Strange (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6P3sr7ET7Jc", - "title": "Justin Timberlake - SexyBack (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EV88Btm_wvE", - "title": "Jasmine Thompson - Old Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FaZsDvYW7VA", - "title": "Halsey - Still Learning (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2M6Vqp6UmDU", - "title": "Jasmine Thompson - I Try (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Dij2sym5cAk", - "title": "ABBA - I Still Have Faith In You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K0dKOpXvJEk", - "title": "Jeremy Zucker & Chelsea Cutler - emily (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eb0eF-Nl3FI", - "title": "Aretha Franklin - (You Make Me Feel Like) A Natural Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YZ9R4zjv0mM", - "title": "Arctic Monkeys - Fluorescent Adolescent (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BbrihJKtSLw", - "title": "Train - Bruises (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G5fXnSm0VOI", - "title": "KZ Tandingan - Till My Heartaches End (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sQMDVRBIrsg", - "title": "Lykke Li, The Magician - I Follow Rivers (Remix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2i9RvwboQ-c", - "title": "A Fine Frenzy - Almost Lover (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dg9T9zaCN0M", - "title": "Joan Jett & The Blackhearts - I Love Rock 'N Roll (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zlwtLAHUIlY", - "title": "YEBBA - Evergreen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-SFMIQq4DDU", - "title": "Billie Eilish - Halley's Comet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "62fxRZrdkHQ", - "title": "Warrant - Cherry Pie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tBp0WvkZiYM", - "title": "Chris Stapleton - You Should Probably Leave (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w2M4mwvGxDM", - "title": "Rod Stewart - Maggie May (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zkoG9kdLM9o", - "title": "Tiffany - I Think We're Alone Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G9Xg6DcyJPc", - "title": "Clinton Kane - I GUESS I'M IN LOVE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QurgjrIgfWM", - "title": "The Beatles - Daytripper (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "skLcmItbh9w", - "title": "Oleta Adams - Get Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ejiAfqzKJMA", - "title": "Morgan Wallen - Wasted On You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "29pwdXcwluc", - "title": "Lil Nas X - THATS WHAT I WANT (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FB3Ie1hdZqg", - "title": "Selena Gomez - Feel Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2BBlwzLws6E", - "title": "Toni Braxton - Un-Break My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KOFM7RMoys8", - "title": "ABBA - Don't Shut Me Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HalRmtyV0b4", - "title": "Thin Lizzy - The Boys Are Back In Town (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mBc5HB0qk2w", - "title": "Belinda Carlisle - Heaven Is A Place On Earth (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o7ttgjHdvmo", - "title": "Charlie Puth - Cheating On You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u7-BTSNSEGU", - "title": "Ed Sheeran - Shivers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PmqyoWb2kD4", - "title": "Culture Club - Karma Chameleon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-dLeErrD9Oo", - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y5p1hMXN5UI", - "title": "Irene Cara - Fame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JtiocB8PYPs", - "title": "No Doubt - Don't Speak (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d4oDObL423s", - "title": "Patrick Swayze - She's Like The Wind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r9lVYyhkqUU", - "title": "Dolly Parton - Jolene (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2dnh8g1oNDI", - "title": "Muse - Hysteria (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QP2gth28Lbg", - "title": "Culture Club - Do You Really Want To Hurt Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O52enkT7pFE", - "title": "Bonnie Tyler - Holding Out For A Hero (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3ynrjCFX_1A", - "title": "The Cranberries - Linger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KLfiWUrJ87c", - "title": "Europe - The Final Countdown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9rgLU-UhAe8", - "title": "The Police - Roxanne (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h_Xilv1yn1w", - "title": "Charlie Burg - I Don't Wanna Be Okay Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fKI59ZX4irE", - "title": "Bob Dylan - Knockin' On Heaven's Door (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qQEY7dAR5Ws", - "title": "The Knack - My Sharona (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ouyWpUyaY5k", - "title": "Natasha Bedingfield - Unwritten (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ef8Xfjf4L5A", - "title": "Kim Wilde - Kids In America (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bMSUvArIq8s", - "title": "Men At Work - Down Under (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4HKRJ5EzZks", - "title": "Kid Cudi - Day 'N' Nite (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Oy4WG7jCy9c", - "title": "Pat Benatar - Hit Me With Your Best Shot (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AnaeWMoo-v4", - "title": "Robert Palmer, Eric 'ET' Thorngren - Addicted To Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O4UFdPRb2Qs", - "title": "Irene Cara - Flashdance...What A Feeling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zxjFe42SA8I", - "title": "Katy Perry - The One That Got Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yMQX77emLLY", - "title": "Liam Payne, Rita Ora - For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-vvRfrgTqgo", - "title": "UB40 - Red Red Wine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GMA0iUUW23k", - "title": "Olivia Newton-John - Let Me Be There (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UHmVzIi-8Sw", - "title": "The Temptations - My Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F5-GP1Gnmrg", - "title": "Barry Manilow - Mandy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XB3tWogPM4Q", - "title": "Doja Cat ft. SZA - Kiss Me More (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pZBNshhFVTg", - "title": "Sting - Englishman In New York (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9gVibbuOGrU", - "title": "The Beatles - Drive My Car (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tAmFWs4eBHQ", - "title": "Morgan Wallen - More Than My Hometown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jKq3kB7csOU", - "title": "The Beatles - Love Me Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M7_NY1DG8dA", - "title": "Creedence Clearwater Revival - Fortunate Son (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WGIPBu8sbYw", - "title": "Steppenwolf - Born To Be Wild (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qtr3EdRH3gM", - "title": "The Beatles - Eight Days A Week (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UhXgms1Cnac", - "title": "Whitesnake - Here I Go Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iDVVCIRI9Xc", - "title": "Jack Stauber - Buttercup (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EmZxleXjRpM", - "title": "The Beatles - Ob-La-Di, Ob-La-Da (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gLJ7_TIg6Sw", - "title": "The Beatles - Hello, Goodbye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LOugf8rtG10", - "title": "Cutting Crew - (I Just) Died In Your Arms (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oFDWewDz8Ns", - "title": "The Beatles - I Saw Her Standing There (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qSgmhhkdg3k", - "title": "Alex Warren - One More I Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zf724ASx4qU", - "title": "Billie Eilish - Getting Older (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ErUcD8FwL-Q", - "title": "A-Wall - Loverboy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x_yPzakRX5I", - "title": "Ed Sheeran - Visiting Hours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l8Fk9lHid0w", - "title": "Mr.Kitty - After Dark (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1YN5Emwwoss", - "title": "ABBA - Mamma Mia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TuZPCo5y4OA", - "title": "The Band Perry - DONE. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Srrt2q_kZCg", - "title": "Madcon - Beggin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5DPvFp6jN1M", - "title": "Celeste - Strange (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DAg-IibCqrs", - "title": "ABBA - Money, Money, Money (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MuFTnhPYfew", - "title": "The Kooks - Naive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VTWqeVTgDe4", - "title": "Spandau Ballet - Through The Barricades (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FZqeU0TnNRM", - "title": "ABBA - The Winner Takes It All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tvDYNWxLr-4", - "title": "Bon Jovi - You Give Love A Bad Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H18SVaz-heA", - "title": "ABBA - Gimme! Gimme! Gimme! (A Man After Midnight) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EhtYAcf9-oY", - "title": "ABBA - SOS (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Lzx8gjfz8qU", - "title": "Liana Flores - rises the moon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BYUWNlhQ5Nk", - "title": "Camila Cabello - Don't Go Yet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bCXUtAHd8BM", - "title": "Nelly Furtado ft. Timbaland - Promiscuous (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MOEOT4EvfLo", - "title": "Creedence Clearwater Revival - Have You Ever Seen The Rain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3IOIYLuWdxM", - "title": "The Jackson 5 - I'll Be There (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gnCFEwyArGM", - "title": "Creedence Clearwater Revival - Bad Moon Rising (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MpUbXg7UQpk", - "title": "The Beatles - Penny Lane (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hmOIvv2sIHs", - "title": "Billie Eilish - Male Fantasy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RY2_auiCazQ", - "title": "Sub Urban & Bella Poarch - INFERNO (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DH_lqdBKmPY", - "title": "Train - Drive By (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iXj62Mwqp18", - "title": "ABBA - Thank You For The Music (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5lj47c73eno", - "title": "Ed Sheeran - You Need Me, I Don't Need You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rV96yvY210g", - "title": "Lady Gaga - 911 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_vdDJ4qNHAI", - "title": "Demi Lovato - Heart Attack (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1VIHgW0C7p4", - "title": "The Jackson 5 - ABC (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ALtaiJ2NnK8", - "title": "Maroon 5 - She Will Be Loved (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5NPZG8GWJZs", - "title": "Madonna - Crazy For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "boycqDP-6VA", - "title": "Michael Bublรฉ - Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K5hcLK2uNUc", - "title": "Josh Turner - Would You Go With Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jNfT49-cZE8", - "title": "Billie Eilish - Happier Than Ever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yQlfCWQfY9g", - "title": "Princess Chelsea - The Cigarette Duet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FK0vZWztu80", - "title": "Bo Burnham - Welcome To The Internet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Hpv6NY76lrc", - "title": "Madonna - Papa Don't Preach (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RlK9pfsYwZo", - "title": "Bon Jovi - Wanted Dead Or Alive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ehs_tp-qNQ4", - "title": "Madonna - Material Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sI2geL6f1ZQ", - "title": "sangiovanni - malibu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wv_wbU8LhVk", - "title": "James Arthur - Can I Be Him (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ShxVWm1P298", - "title": "Neon Trees - Everybody Talks (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cQQQ1WQ8L40", - "title": "Robbie Williams & Nicole Kidman - Somethin' Stupid (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y3rHoAicOo4", - "title": "Bon Jovi - It's My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Kc6dEtZk8hM", - "title": "Fleetwood Mac - The Chain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0lL0jVLQ4hA", - "title": "The Kooks - She Moves In Her Own Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_Rp4S3-RKqw", - "title": "Lisa Loeb - Stay (I Missed You) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yIMfwELwzpU", - "title": "Muse - Feeling Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nudao8sP_u0", - "title": "Zac Brown Band - Chicken Fried (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5Bnth5PeS8Y", - "title": "Creed - One Last Breath (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-TpwDAfxBV0", - "title": "MAX & Ali Gatie - Butterflies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fTZZy8f-M4w", - "title": "Morgan Wallen - 7 Summers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nOz8QRycPRo", - "title": "Gnarls Barkley - Crazy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7vExFbUpT54", - "title": "Fleetwood Mac - Go Your Own Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-VCmfd2c5aM", - "title": "Avicii - Addicted To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5_eM9VgR4o0", - "title": "New Hope Club, Danna Paola - Know Me Too Well (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fBGaQoyEz1o", - "title": "Bon Jovi - Bed Of Roses (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bthQTwDCtnw", - "title": "T.I. feat. Rihanna - Live Your Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JPo76r1JtPM", - "title": "vaultboy - everything sucks (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "64gK32or-Fc", - "title": "Mitski - Nobody (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PsQ1aTE-EJQ", - "title": "Imagine Dragons - Wrecked (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "74JX3_FvS9s", - "title": "Nina - Someday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uaVogFtUWA0", - "title": "Selena Gomez - Ring (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3XKP4ffgXLE", - "title": "Madonna - Like A Virgin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nturlhtt7WA", - "title": "Amy Winehouse - Back To Black (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0l83pmQ1VOw", - "title": "Maroon 5 - Harder To Breathe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pWcgbCLI4dU", - "title": "Hinder - Lips Of An Angel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rRX6ZwTBCdI", - "title": "Nico & Vinz - Am I Wrong (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "edorf0kTnJw", - "title": "Arctic Monkeys - Do I Wanna Know? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l8d2-OCqBBk", - "title": "LANY - dancing in the kitchen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EPgytcrDT3Y", - "title": "James Blunt - Goodbye My Lover (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ep6G3P2v5ZA", - "title": "Bon Jovi - Livin' On A Prayer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qeQH9sVRQeA", - "title": "Lil Nas X, Jack Harlow - INDUSTRY BABY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z7VYEhapHgw", - "title": "Bastille - Pompeii (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8p-_LMiZBug", - "title": "Conan Gray - People Watching (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ARX8NEr5cDA", - "title": "Mรฅneskin - Coraline (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "613P9iZVg7A", - "title": "BTS - Permission To Dance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nt31viBn3r4", - "title": "Aly & AJ - Potential Breakup Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3V8LEVcB5B4", - "title": "Norah Jones - Don't Know Why (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ACKpCHoqeR4", - "title": "Sarah Cothran - As The World Caves In (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sOvOa7Q18w4", - "title": "Shawn Mendes - Look Up At The Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s4NrP1bA6WU", - "title": "WILLOW - Wait a Minute! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uBkRdh7LR_U", - "title": "Galantis, David Guetta & Little Mix - Heartbreak Anthem (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yMpWuYqwjZ8", - "title": "Morgan Wallen - Chasin' You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0Z8_f-khj9U", - "title": "Nelly Furtado - Say It Right (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oKcSawS3mzs", - "title": "Tom Grennan - Little Bit Of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sBRmMqrGUOc", - "title": "PinkPantheress - Pain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_4hTPqABZNc", - "title": "Corinne Bailey Rae - Put Your Records On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9vhlO2DHRCs", - "title": "Bo Burnham - White Woman's Instagram (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ak9rCD9ooi4", - "title": "The Kid LAROI & Justin Bieber - Stay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qa1oUZRkYn8", - "title": "Bo Burnham - Bezos II (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H-H5YiKyIe0", - "title": "Sezairi - It's You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H34eyRkBgOM", - "title": "Beach House - Space Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yeYLhT_Ifgw", - "title": "Lenka - Everything At Once (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nw-8t57Ymo8", - "title": "Teddy Swims - Bed On Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DJM8cl7k4oc", - "title": "Chuck Berry - Johnny B. Goode (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pNCTdsTW2wY", - "title": "Billie Eilish - NDA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w3pOQwvxD6w", - "title": "SWV - Weak (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aB2QA_t-RWI", - "title": "The Backyardigans - International Super Spy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BlzwIYTiu1s", - "title": "The Cinematic Orchestra - To Build A Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "68-6OSqnLMo", - "title": "Lady Gaga ft. Colby O'Donis - Just Dance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FFW0OpHD8Ig", - "title": "Bo Burnham - Bezos I (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "btbguIAlacY", - "title": "Elena Tsagrinou - El Diablo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u_072m3oWT0", - "title": "Frankie Valli - Can't Take My Eyes Off You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JZhTjaXH4z4", - "title": "Lady Gaga - Judas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n86DI8GbzB4", - "title": "Sara Bareilles - Brave (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tl4hjWZDAs8", - "title": "Arctic Monkeys - I Bet You Look Good On The Dancefloor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g5bqLDdesh8", - "title": "KSI - Holiday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9PGrRQNMmTk", - "title": "Maroon 5 - Daylight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bpe30T5FIw0", - "title": "Khalid, Disclosure - Know Your Worth (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3PgyEVl5RgA", - "title": "DaBaby ft. Roddy Ricch - Rockstar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X-oMv-qyhgo", - "title": "Lady Gaga - You And I (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h_1CJ8-GYyI", - "title": "Aitana - Con La Miel En Los Labios (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xbAEK9lRQU0", - "title": "Rihanna - Where Have You Been (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r_Vru7M-CO0", - "title": "Roar - I Can't Handle Change (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mytIpQGe4pA", - "title": "Dream - Mask (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "925sVa2zEp4", - "title": "Ed Sheeran - Bad Habits (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jdJp7_ap0Vs", - "title": "Bo Burnham - All Eyes On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nJ72L3D3Tig", - "title": "5 Seconds Of Summer - She Looks So Perfect (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xoe2J2DsSlU", - "title": "WILLOW ft. Travis Barker - t r a n s p a r e n t s o u l (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KR6R12wZ6VE", - "title": "Clean Bandit ft. Jess Glynne - Rather Be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UWQxr0OHe4k", - "title": "Bad Bunny - Yonaguni (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ixD5G-fzvUE", - "title": "Arctic Monkeys - Brianstorm (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CRv72AGaC-A", - "title": "Dua Lipa - Be The One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nQgEFJ-nKMk", - "title": "Trinidad Cardona - Dinero (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MdUkVXSpVxA", - "title": "Matt Cooper - Ain't Met Us Yet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8ZE-emeej_c", - "title": "Halestorm - I Miss The Misery (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JtpGrk27S2A", - "title": "The Wanted - Glad You Came (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NofI12Lj_iA", - "title": "Imagine Dragons - Follow You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TXJVwoCusNI", - "title": "The Backyardigans - Into The Thick Of It! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JAQsnvmqOvg", - "title": "NIKI - lowkey (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pLfq4A6YxYo", - "title": "Mรฅneskin - Beggin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E4NVqpWacPw", - "title": "Olivia Rodrigo - The Rose Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TbD8dC5kk0E", - "title": "Polo G - RAPSTAR (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rqVw5tCvPno", - "title": "Lady Gaga - Alejandro (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ALz3kDEDT6s", - "title": "Maroon 5 - One More Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4JRv61L4Kwo", - "title": "Ava Max - My Head & My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yG9vlkcpfGg", - "title": "Marshmello, Jonas Brothers - Leave Before You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w0S4yINl650", - "title": "Anson Seabra - That's Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vz-nO0wpLfk", - "title": "Zoe Wees - Girls Like Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rV5NCv24FWI", - "title": "The Bangles - Eternal Flame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jzt-oLk0JGU", - "title": "dhruv - double take (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sPg1BpiiEM0", - "title": "Lovejoy - Sex Sells (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Dyjju0aRvlI", - "title": "Dua Lipa - Love Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3MzEbJHnmJk", - "title": "Mรฅneskin - I WANNA BE YOUR SLAVE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xbUHj4bQ5Ew", - "title": "Madison Beer - Reckless (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HaWbUTiLEm8", - "title": "Ashnikko ft. Princess Nokia - Slumber Party (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "va7HaVf-vcM", - "title": "Troye Sivan - Strawberries & Cigarettes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VtErzctE50A", - "title": "Arctic Monkeys - 505 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lhTOyekA4GE", - "title": "Anne-Marie, Niall Horan - Our Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o2asvfE1TDY", - "title": "Estelle ft. Kanye West - American Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kJNhp9Zsexo", - "title": "Noisettes - Never Forget You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XaRyJVXclvY", - "title": "Demi Lovato - Warrior (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "njD4qrMJ-7E", - "title": "Selena Gomez - De Una Vez (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xEAvvD1lt5U", - "title": "Pop Smoke - What You Know Bout Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aDla6WDHdOQ", - "title": "BTS - Life Goes On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-tARouBVuLY", - "title": "Mac Miller - The Spins (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iju6Q7Hy4wU", - "title": "H.E.R. - Damage (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XsfBuHWV9M0", - "title": "Demi Lovato - Fix A Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r3e__7S0zds", - "title": "Surf Curse - Freaks (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rYmTV4OiM6I", - "title": "Roddy Ricch feat. Mustard - High Fashion (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jEWXjhOdiYw", - "title": "Ben&Ben - Make It With You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zxU_c0J7y9E", - "title": "Stefania - LAST DANCE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FnLW1O5-5OU", - "title": "JJ Lin ft. Anne Marie - Bedroom (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "96PWPJFMud8", - "title": "MARINA - Bubblegum B (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "shpSJPGyvRI", - "title": "NIKI - Lose (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WuZMyhABvZc", - "title": "Gabby Barrett - The Good Ones (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K1-rU9b7LtU", - "title": "Demi Lovato - Dancing With The Devil (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1gOcVjO9cxQ", - "title": "All Time Low - Dear Maria, Count Me In (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "79y92meubBg", - "title": "The Neighbourhood - The Beach (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rKeEoWf0jL4", - "title": "Kane Brown, Swae Lee, Khalid - Be Like That (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hFtzTzWE2Ss", - "title": "Rauw Alejandro - Todo De Ti (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fFxYfOLPXEE", - "title": "Nic D - Fine Apple (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jgr062naCnI", - "title": "Mitski - Washing Machine Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BKaMFPWe7pY", - "title": "The Living Tombstone - My Ordinary Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i8y752U4gvQ", - "title": "Forest Blakk ft. Meghan Trainor - If You Love Her (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZKBNAF4_pbg", - "title": "Lykke Li - Possibility (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lQpgE4878iw", - "title": "Matt Maltese - As The World Caves In (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "drxprubv16U", - "title": "Ben&Ben - Leaves (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9kdA-3hJpE0", - "title": "Lifehouse - You And Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZSnRR7TJtFk", - "title": "Lil Nas X - SUN GOES DOWN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ys4Qc0E57ZY", - "title": "Olivia Rodrigo - brutal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tp8NFKWgYto", - "title": "Sam Fischer, Demi Lovato - What Other People Say (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UhxAGUo_Y_A", - "title": "Duncan Laurence - Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p1ZRfET90Ik", - "title": "Bebe Rexha - Sabotage (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2Gi_eAfZbUc", - "title": "Zoe Wees - Ghost (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GH5Brf0JPtA", - "title": "Oasis - Don't Look Back In Anger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pdViQpypSts", - "title": "Reyanna Maria - So Pretty (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KTalHtx-fgI", - "title": "Daniel Caesar - Japanese Denim (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GwzwW007zTg", - "title": "Olivia Rodrigo - hope ur ok (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hlZA2C6A3Z0", - "title": "Olivia Rodrigo - 1 step forward, 3 steps back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2ffdrIeTQCI", - "title": "Olivia Rodrigo - jealousy, jealousy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pcgonULACZk", - "title": "Jamie Miller - Here's Your Perfect (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Iilqpt9eC4k", - "title": "Miguel - Sure Thing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C2OqzzqzHtE", - "title": "Billie Eilish - Lost Cause (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t8ZWb01urdA", - "title": "Bella Poarch - Build A B (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KGn6axh47LM", - "title": "Olivia Rodrigo - favorite crime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "or1_3KMpp3Y", - "title": "Olivia Rodrigo - happier (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rs_5ubVyq-c", - "title": "The Backyardigans - Castaways (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "40QgJjmfTBw", - "title": "Robbie Williams - Feel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oJQSTXa6B-k", - "title": "6 dogs - Faygo Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z8F84X71Dgo", - "title": "twenty one pilots - Shy Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_zByrP21Zp0", - "title": "Yazoo - Only You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wvpoGzmd5v4", - "title": "Olivia Rodrigo - traitor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R0JVigWElPg", - "title": "Demi Lovato ft. Ariana Grande - Met Him Last Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PX0HoNt8Mx4", - "title": "Two Door Cinema Club - What You Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I6LniT-irAs", - "title": "BTS - Butter (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KK1rnzOk0Ts", - "title": "Jazmine Sullivan - Bust Your Windows (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M1mZGT-OnO0", - "title": "Jason Derulo x Nuka - Love Not War (The Tampa Beat) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tZtX6FFBsr0", - "title": "H.E.R. - Hard Place (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RVkMl2wGgbc", - "title": "Maroon 5 ft. Megan Thee Stallion - Beautiful Mistakes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DLL3G_T_P0Y", - "title": "Jeremy Zucker, Chelsea Cutler - this is how you fall in love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CXHVuHy6U9s", - "title": "BTS - Film out (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NiAkVwyig3E", - "title": "P!nk & Willow Sage Hart - Cover Me In Sunshine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AQOt75axc0Y", - "title": "Aqua - Barbie Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zd9rtEyZY6w", - "title": "Soho Dolls - Bang Bang Bang Bang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "itegXci2yYE", - "title": "Conan Gray - Astronomy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GB-W0QMdNwQ", - "title": "Daniel Powter - Bad Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UjejKDLIrRk", - "title": "Ruth B - Dandelions (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aErI67y4WDA", - "title": "Tom Odell - Another Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yOMC9FEwFio", - "title": "Olivia Rodrigo - enough for you (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mj4MU4z5ukk", - "title": "LANY - Malibu Nights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BPZBIBVBArQ", - "title": "Jason Derulo ft. Adam Levine - Lifestyle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "240lGSsuBO0", - "title": "YUNGBLUD - Parents (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WCAvm3-O7zg", - "title": "Sunjae - I'm Missing You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LFxDi6H3_zs", - "title": "Chloe George - ghost town voice memo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BfemgI4dglU", - "title": "Bring Me The Horizon - Can You Feel My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TIav1g1jRa0", - "title": "Cody Fry - I Hear A Symphony (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JJ3cqwjiozs", - "title": "Ashnikko - Tantrum (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_3dXOdRjOCs", - "title": "Rag'n'Bone Man, P!nk - Anywhere Away From Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YVx-Ai0mcJQ", - "title": "Enrique Inglesias - Hero (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Oy_yg7-lJqc", - "title": "Lyn Lapid - Itsy Bitsy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J5XTrbrR784", - "title": "Sasha Sloan - Older (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hVxIfa-Sab4", - "title": "Ella Henderson x Tom Grennan - Let's Go Home Together (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7SNe3RItXyo", - "title": "Westlife - You Raise Me Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L409x_gvwm8", - "title": "Olivia Rodrigo - good 4 u (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MWc6coWJtJk", - "title": "Beach Bunny - Cloud 9 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XG79EuEgEuE", - "title": "Emily Burns - Is It Just Me? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SqdggRfMf2Q", - "title": "Gera MX, Christian Nodal - Botella Tras Botella (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fep_y_M2tsQ", - "title": "Alec Benjamin - Outrunning Karma (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vs_ZvP9dBL4", - "title": "Cardi B - Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hgVFupOREhY", - "title": "Lulu - Boom Bang a Bang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6SXG6xbyqFA", - "title": "Dua Lipa - We're Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FxFFSZxbDPQ", - "title": "Mimi Webb - Good Without (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ecuXrFTOlAQ", - "title": "Little Mix ft. Saweetie - Confetti (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XAp5mbiWfpE", - "title": "Mike Posner - Please Don't Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G6aa9W_zWkM", - "title": "Juris - Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3AnKy-mzUXQ", - "title": "SLANDER, Dylan Matthew - Love Is Gone (Acoustic) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oYiagyqqWrI", - "title": "Cliff Richard - Congratulations (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ibgU0umViYs", - "title": "Olivia Rodrigo, Joshua Bassett - Even When/The Best Part (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZujI2VFeXXM", - "title": "Pamungkas - To The Bone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DAlARmMKgvs", - "title": "Lena - Satellite (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PQOWzg10_j4", - "title": "Conchita Wurst - Rise Like A Phoenix (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xVnqSeLX84c", - "title": "James Newman - Embers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X8Mygx8B54Y", - "title": "Tina Turner - The Best (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ouF4us2d7lw", - "title": "Brotherhood Of Man - Save Your Kisses For Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EMwBoAI-PHg", - "title": "Bucks Fizz - Making Your Mind Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QDi9tlUTQrs", - "title": "Gina G - Ooh Aah... Just A Little Bit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UDVnbZeah7s", - "title": "Mother Mother - Burning Pile (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JfsIryyTd2M", - "title": "Billie Eilish - Your Power (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NqFeNHOwv7c", - "title": "Aurora - Runaway (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OI61ou01NAM", - "title": "Gjon's Tears - Tout l'Univers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oOr7_sX_HVs", - "title": "Tate McRae - slower (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZVsVYTIC1ZU", - "title": "Loreen - Euphoria (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ncXaoIkajns", - "title": "girl in red - i wanna be your girlfriend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-HsvD2g7njI", - "title": "Mรฅneskin - ZITTI E BUONI (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EXZTrdKHNUo", - "title": "Glass Animals - Heat Waves (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l5BNEZQAC_E", - "title": "Clara Mae - I'm Not Her (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RQZscYrhLtA", - "title": "Amy Winehouse - Rehab (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gmmZrbVBOd0", - "title": "Lil Nas X - MONTERO (Call Me By Your Name) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CxW7tbIN1UY", - "title": "Sleeping At Last - Turning Page (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U1uTOOuXqIs", - "title": "Donna Summer - Hot Stuff (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8iBJPvRXqgQ", - "title": "Olivia Rodrigo - deja vu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I5cRXOi1L_o", - "title": "CG5 - Good To Be Alive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S6RIe2obLmM", - "title": "Ashe, FINNEAS - Till Forever Falls Apart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y8ODOt4uTMA", - "title": "James Arthur - Medicine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Fv1V33y6SUs", - "title": "Au/Ra - Panic Room (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MRbbzT9iJw8", - "title": "Little Mix - Happiness (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VboLh-YNYzo", - "title": "Alessia Cara - I Choose (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "odgQHiemvXA", - "title": "ROSร‰ - Gone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FrfyqKgHpA4", - "title": "ROSร‰ - On The Ground (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9b3_RAobRr8", - "title": "Justin Bieber ft. Daniel Caesar & Giveon - Peaches (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0ruhi3keo5g", - "title": "Little Mix - Sweet Melody (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YFbaJJH-gAQ", - "title": "Leah Nobel - Beginning Middle End (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bRCnq_bdAJg", - "title": "Little Mix - Not A Pop Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2nQrSIfzQ-4", - "title": "Justin Bieber ft. Khalid - As I Am (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bK746U8eaDU", - "title": "Faouzia - This Mountain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N3ZAeAoFS-w", - "title": "Luke Combs - Better Together (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l5NZ2blTQ44", - "title": "Victoria Justice - Make It Shine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1X9-WrIr8EY", - "title": "Tate McRae ft. Lil Mosey - vicious (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G9-rEo4ThDI", - "title": "Anson Seabra - Trying My Best (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1g1b2Z5thF8", - "title": "Kali Uchis - telepatรญa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GZjl9kUs8tU", - "title": "Justin Bieber - Hold On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pvNUlAjIBLg", - "title": "Khalid - Young Dumb & Broke (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q63Gig-pOsw", - "title": "Joshua Bassett - Only A Matter Of Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6f13QrObIls", - "title": "Miley Cyrus - 7 Things (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ISH6-W9pNRE", - "title": "Selena Gomez - Boyfriend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ro22d7cdq7Q", - "title": "Ralph McTell - Streets Of London (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O-WbdSk6O-k", - "title": "Nessa Barrett ft. Jxdn - la di die (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pX2BkCElPmk", - "title": "Oasis - Champagne Supernova (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LRJx1QH03sU", - "title": "Kylie Minogue - Can't Get You Out Of My Head (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oqJ1c9WwXfc", - "title": "Michael Bublรฉ - Feeling Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0TvbvdSQQWU", - "title": "The Foundations - Build Me Up Buttercup (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MATnF6bAIB4", - "title": "Larissa Lambert - Weak (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mZg9xYtJPyI", - "title": "Tom Jones - Green Green Grass Of Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nB04X3YiZ58", - "title": "Lauren Daigle - Trust In You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9g0RaYcrk0g", - "title": "Giveon - LIKE I WANT YOU (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x4682azh4Kg", - "title": "Katie Sky - Monsters (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8NSCetPyWJY", - "title": "Post Malone - Only Wanna Be With You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cpy_Zq1GkM0", - "title": "Destiny Rogers - Tomboy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RRVFd6lwsXE", - "title": "ZAYN - Vibez (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9YzZicHcSHY", - "title": "Harry Styles - Cherry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "19Kju46x324", - "title": "Duncan Laurence - Arcade (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nRD8iFBRruw", - "title": "Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oS7a_qkZ8ZY", - "title": "ElyOtto - SugarCrash! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WQcbQoSoCDE", - "title": "Sarah Geronimo - How Could You Say You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UJYGsBdMyDY", - "title": "Jorja Smith - The One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2FCejuVWK5c", - "title": "Dan + Shay - Glad You Exist (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XvLQ-eNKIzk", - "title": "Chord Overstreet - Hold On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JWnw-YyIcSY", - "title": "One Direction - They Don't Know About Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RnABb1rqoe4", - "title": "Kim Dracula - Paparazzi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fn91I3czi0c", - "title": "Hillsong Worship - What A Beautiful Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qE-zymd9Yq0", - "title": "Julie and The Phantoms - Finally Free (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NT5NuWvPPsE", - "title": "Cavetown - Lemon Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wf1iIsyeUkw", - "title": "Sasha Sloan - Dancing With Your Ghost (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Yl-SJoffk1Q", - "title": "La La Land - City Of Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PD6ippYQ434", - "title": "Nathan Evans - Wellerman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8DWe7mOOkps", - "title": "Joshua Bassett - Lie Lie Lie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PtQOFwXIKjA", - "title": "Julie and The Phantoms - Perfect Harmony (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NpozZ2UHU5I", - "title": "United Kingdolls - UK Hun? (from RuPaulโ€™s Drag Race UK) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XUpl5BYB8Lg", - "title": "Sara Bareilles - Love Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R4JPJWkZtZk", - "title": "Mother Mother - Hayloft (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "--mHajGPFCY", - "title": "KAROL G, Nicki Minaj - Tusa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BkUGX-5myOM", - "title": "Tate McRae - r u ok (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dksWnHcXbT8", - "title": "Ariana Grande, Doja Cat - motive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "79b9UbLgmB4", - "title": "Sara Bareilles - She Used To Be Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JfslRemEt-M", - "title": "Lyn Lapid - Producer Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mB8xUlfdDbU", - "title": "Katy Perry - Thinking Of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fN_APTSVtQQ", - "title": "The Kid LAROI - WITHOUT YOU (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zR2b2j_X-WE", - "title": "SZA ft. Travis Scott - Love Galore (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ArZMnvVUO54", - "title": "Ryn Weaver - Pierre (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "96qEU_2qfkE", - "title": "Ed Sheeran - Afterglow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ueA-n3cDRgk", - "title": "Etta James - At Last (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R5PK2yYwHl8", - "title": "Wilbur Soot - Your New Boyfriend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VIB8Z838AVw", - "title": "Shontelle - Impossible (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nK9hD9_SAdU", - "title": "Dua Lipa - Levitating (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HHpo6VhlMoA", - "title": "Zombies 2 - I'm Winning (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SEgSqGq938Q", - "title": "Juice WRLD, The Kid LAROI - Reminds Me Of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9kkTrNh1N2A", - "title": "Bill Withers - Lovely Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gNciVzNpiIc", - "title": "Doja Cat - Streets (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yIyW2lcapHs", - "title": "Grover Washington Jr ft. Bill Withers - Just The Two Of Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4KUoIbvtqjA", - "title": "Sara Kays - Remember That Night? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a6JskTwyQ3s", - "title": "American Authors - Best Day Of My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KHigN-Sgk5I", - "title": "Nina Simone - Feeling Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xR9fY0MCk30", - "title": "Westlife - Flying Without Wings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nRjFavXA8pE", - "title": "Village People - YMCA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uQQntp2Jam8", - "title": "Grouplove - Tongue Tied (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-RrH9ycYp14", - "title": "SZA - Good Days (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qUZcTZgbr_E", - "title": "Sabrina Carpenter - Skin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o50EWLhATXM", - "title": "Billie Eilish, ROSALรA - Lo Vas A Olvidar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-sMcNhlsuoA", - "title": "GANGGA - Blue Jeans (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1HO4TlUBjG4", - "title": "Toploader - Dancing In The Moonlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BUhyJhM5sIw", - "title": "The Lumineers - Ophelia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CS4hB3--47Y", - "title": "Strawberry Guy - Mrs Magic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "51pAw0s7IXU", - "title": "Yarichin B Club - Touch You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "myisMOpHKso", - "title": "The Lumineers - Ho Hey (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wLpoCrUp5n8", - "title": "Conan Gray - Comfort Crowd (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I8mlZYHr_cg", - "title": "Harry Styles - Golden (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dCjgLcZ3q74", - "title": "Hotel Ugly - Shut Up My Mom's Calling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8ztf8RW-LGY", - "title": "Billy Ocean - Suddenly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bAheKhvj_gI", - "title": "Luke Combs - Forever After All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YCg18GGi6_I", - "title": "Miley Cyrus - Plastic Hearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5gxG5KO3jpM", - "title": "EYEDRESS - JEALOUS (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MTp6PpGgLHg", - "title": "Faouzia - Born Without A Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U9xZ4wJdQkw", - "title": "AJR - BANG! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Gw-QOBzISlo", - "title": "Backstreet Boys - Incomplete (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t4s37bZQuSY", - "title": "Lauv, Conan Gray - Fake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cA1nd2m5BHM", - "title": "Miley Cyrus ft. Dua Lipa - Prisoner (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ln98fP6ADS8", - "title": "Studio Killers - Jenny (I Wanna Ruin Our Friendship) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "--IfjfyJiWM", - "title": "Justin Bieber - Anyone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e_yvyWPb2hI", - "title": "Tom Jones - You're My World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8TBn8iRl9vQ", - "title": "carolesdaughter - Violent (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C3y6jGCXiUA", - "title": "Olivia Rodrigo - drivers license (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BGfJobjH4Dc", - "title": "Avicii - Wake Me Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5f15CcwlluQ", - "title": "Simple Plan - Perfect (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FBiPxGCeaGQ", - "title": "Taylor Swift - willow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B-vkJSgNh4Q", - "title": "Jungkook - Still With You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JD9XKAw5Xu8", - "title": "Conan Gray - The Cut That Always Bleeds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fzXwb0VBmrs", - "title": "Conan Gray - Lookalike (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vjJc10kXwi0", - "title": "Faouzia - Tears Of Gold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8JM8dqdVHT4", - "title": "Zombies 2 - One For All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TeOkfhWXMoY", - "title": "Shawn Mendes, Justin Bieber - Monster (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bmYyfKKv8uw", - "title": "DaBaby - Suge (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vyzGHheyc4o", - "title": "Ricky Montgomery - Line Without A Hook (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kvt4MKR2IRk", - "title": "Juice WRLD ft. YoungBoy Never Broke Again - Bandit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tq6XkiGydm0", - "title": "Dexy's Midnight Runners - Come On Eileen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VB9Qda_M-O4", - "title": "Robbie Williams - She's The One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xYjjEfDSnZA", - "title": "Marshmello x YUNGBLUD x blackbear - Tongue Tied (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a0jhPMJSKHI", - "title": "Jung Seung Hwan - Day & Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JQ_gUGUsIDs", - "title": "Lauren Aquilina - King (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sxq13MOyt3c", - "title": "Taylor Swift - champagne problems (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hmgPwlcQHHg", - "title": "Evanescence - Going Under (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nBbYK41u6Fw", - "title": "Tom Jones - (It Looks Like) I'll Never Fall In Love Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "08SGDHJ2fLY", - "title": "Eric Clapton - Tears In Heaven (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ICUrHapBGQI", - "title": "Richard Marx - Now & Forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Bxgvg97oca0", - "title": "The La's - There She Goes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WDXiPavQjNg", - "title": "Eric Clapton - Wonderful Tonight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mgObZN7fZPU", - "title": "Eva Cassidy - Fields Of Gold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Dy6CP3WZwLw", - "title": "Van Halen - Jump (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R-JgdkBHlZo", - "title": "Frances Forever - Space Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7IYbYVyMNTc", - "title": "Hayd - Changes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RQoKTZPPttQ", - "title": "Edith Whiskers - Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "83ZFZPhxskc", - "title": "Survivor - Eye Of The Tiger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XclNcFENpvA", - "title": "Rihanna ft. Calvin Harris - We Found Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9LP71ypf2qg", - "title": "Los Lobos - La Bamba (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TecAH_OrSZs", - "title": "Julie and The Phantoms - Wake Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kcFduXEfwI4", - "title": "Train - Shake Up Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H5iZ0PMJa0U", - "title": "Miley Cyrus - Angels Like You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "btwJm_mV-84", - "title": "Josh Groban - You Raise Me Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vvDSNTlX3DY", - "title": "Gene Autry - Here Comes Santa Claus (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s8CszZUic4w", - "title": "Lionel Richie - Stuck On You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MEYOaImcGZk", - "title": "347aidan - Dancing In My Room (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v1RMIznbpFs", - "title": "Victorious - It's Not Christmas Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sli3QQAB8zM", - "title": "Ariana Grande, Liz Gillies - Santa Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nkaOdoxNTB0", - "title": "Louis Armstrong - What A Wonderful World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hMF4h0gYN-0", - "title": "Katy Perry - Roar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FsKcCqLS91w", - "title": "Pink Sweat$ - At My Worst (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n-AjHqEnNYo", - "title": "Julie and The Phantoms - Bright (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ra-HNUFAcaU", - "title": "Ava Max - Christmas Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UO3UiC6_86o", - "title": "Chuck Berry - Run Rudolph Run (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0NV85akrcHo", - "title": "Katy Perry ft. Juicy J - Dark Horse (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3qTDEpO7k8s", - "title": "Josรฉ Feliciano - Feliz Navidad (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IW-SvUNv1Xg", - "title": "Selena Gomez - Slow Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_vx_Co2Hwuo", - "title": "Lupe Fiasco & Guy Sebastian - Battle Scars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ppIt5aDk12w", - "title": "Coyote Theory - This Side Of Paradise (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "orQTFMuH35o", - "title": "girl in red - two queens in a king sized bed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b5vrOlvZN5c", - "title": "Darlene Love - Christmas (Baby Please Come Home) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_XCshM3W9eA", - "title": "Anson Seabra - Walked Through Hell (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BEO7ZbVbzss", - "title": "Faouzia - You Don't Even Know Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0m3V3gOUD2w", - "title": "Slade - Merry Xmas Everybody (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p8QyRze_u-8", - "title": "Chloe x Halle - Do It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bJ31_Nx0ni4", - "title": "MarMar Oso - Ruthless (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IzDq4hWPpBU", - "title": "Eva Cassidy - Over The Rainbow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ripaCP9HPX4", - "title": "Eva Cassidy - Songbird (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FGJ09zozTYM", - "title": "Mustard with Roddy Ricch - Ballin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p0lAVav6OnY", - "title": "Saweetie - My Type (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "61Un7YQ5vqI", - "title": "Doja Cat ft. Gucci Mane - Like That (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zO4MJqHd6SQ", - "title": "Spencer Crandall ft. Julia Cole - Things I Can't Say (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZJ_-i6MhWq8", - "title": "Katy Perry - Last Friday Night (T.G.I.F) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oQqCEZPVxs0", - "title": "Burl Ives - A Holly Jolly Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tJ4RnhzTueQ", - "title": "Justin Bieber - Mistletoe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wSuc41t_DIk", - "title": "Wham! - Club Tropicana (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wz3UbGHDtuU", - "title": "Luke Combs - When It Rains It Pours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Otk-R5ZzsTE", - "title": "Ariana Grande, The Weeknd - off the table (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WVQkxIzlKWo", - "title": "The Kid LAROI - So Done (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NzfUyshBHOE", - "title": "Selena Gomez & The Scene - Hit The Lights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RpxNeN6UnWE", - "title": "Why Don't We - Kiss You This Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dtbP_vrw_mw", - "title": "Masked Wolf - Astronaut In The Ocean (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e4la2-TxoPQ", - "title": "Lady Gaga - Marry The Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RpNlk3k0b0Q", - "title": "Selena Gomez & The Scene - Naturally (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eIKo7dooxe0", - "title": "NLE Choppa ft. Roddy Ricch - Walk 'Em Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dQuzZXLWVqU", - "title": "Sara Bareilles - Gravity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S9FqT5ddiFI", - "title": "Ariana Grande - pov (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4LbjyKPslWU", - "title": "Ashnikko - Daisy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GgQCc_JIVOA", - "title": "Lil Nas X - HOLIDAY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zRSCaEAeJxg", - "title": "Griff - Love Is A Compass (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rM2YZhBux7w", - "title": "Madison Beer - Good In Goodbye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JafD6bxiXz8", - "title": "Tate McRae - Stupid (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CzNBYF2tGNs", - "title": "Rauw Alejandro - Tattoo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Pt9FG_IpbZg", - "title": "CHROMANCE - Wrap Me In Plastic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UhcMtfvilqo", - "title": "Doja Cat - Mooo! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iJFM66wRttY", - "title": "Phora ft. Jhenรฉ Aiko - Stars In The Sky (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9fRmWBX2Mos", - "title": "Saweetie - Tap In (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NorEzapRCiQ", - "title": "Dua Lipa - Hallucinate (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lhLON3fUywU", - "title": "Cannons - Fire For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wVtWM9sT00k", - "title": "Julie and The Phantoms - Flying Solo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8oKjlIz-oFA", - "title": "Christina Perri - Arms (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TQ_2f80tE-w", - "title": "Miley Cyrus - When I Look At You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OrPt4S3nSQY", - "title": "Julie and The Phantoms - Stand Tall (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iYYOQz8wIWU", - "title": "Julie and The Phantoms - Unsaid Emily (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "palrVfIjTaw", - "title": "Billie Eilish - Therefore I Am (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cKRmRYad318", - "title": "Earth, Wind & Fire - September (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7LSsqBLWGq0", - "title": "James Arthur - Impossible (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HymMBjo29FQ", - "title": "penelope scott - rรคt (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0M8RAAxmnts", - "title": "blackbear, Lauv - if i were u (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n4dG93qt0B8", - "title": "The Weeknd - Save Your Tears (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sJ07Alrg_M0", - "title": "IU ft. SUGA - eight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8V6bKykwQug", - "title": "The Fray - How To Save A Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T9AWDVVad00", - "title": "Diplo ft. Morgan Wallen - Heartless (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DtNAUhIbHXE", - "title": "MAX ft. SUGA - Blueberry Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tOAs-c5jiuQ", - "title": "Ricky Martin - Livin' La Vida Loca (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vEnPGNNgdLg", - "title": "Machine Gun Kelly - Bloody Valentine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iEtP71Np2nA", - "title": "BLACKPINK - You Never Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7OUXBog_dsU", - "title": "Aya Nakamura - Djadja (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rdpRwSRh8g0", - "title": "We The Kingdom - Holy Water (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7tilGhvOeeg", - "title": "BLACKPINK ft. Cardi B - Bet You Wanna (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M5aSLc-3FfY", - "title": "The Neighbourhood - Daddy Issues (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fO88Ox-mhDs", - "title": "James Arthur - Train Wreck (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v6_ZERH_B34", - "title": "Larray - Canceled (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6ZrpPTXTL04", - "title": "Lil Baby & Gunna - Drip Too Hard (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JhYhNNW3pSI", - "title": "Vedo - You Got It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Dn4t2ZG2STo", - "title": "Demi Lovato - Tell Me You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p0FFm6WvMDQ", - "title": "girl in red - we fell in love in october (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i20isdqjJMY", - "title": "OneRepublic - Secrets (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4_FtDjnyf3M", - "title": "Foushรฉe - Deep End (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Yykv6iCQMZY", - "title": "Ariana Grande - 34+35 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NT9Am-a8Nsw", - "title": "Maroon 5 - Love Somebody (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Oa3h2JV3ZEM", - "title": "Lady Gaga - Joanne (Piano Version) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bD4lL-Fx_IE", - "title": "347aidan - Demons and Monsters (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Xe1GN7SFMbk", - "title": "Katy Perry - E.T (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dLqohIY5Wo0", - "title": "Madison Beer - Hurts Like Hell (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R2NyRaSoC8U", - "title": "Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "k8-lhen5B0c", - "title": "Morgan Wallen - Cover Me Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D55PJU_AyQs", - "title": "Backstreet Boys - Show Me The Meaning Of Being Lonely (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "W34p3ag0qgA", - "title": "5 Seconds Of Summer - Wildflower (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w5qaM7G1HnQ", - "title": "Tom Walker - Wait For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p84rf4mz0MM", - "title": "Bill Withers - Lean On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vWdqDmjQuaE", - "title": "Matt Redman - 10,000 Reasons (Bless The Lord) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hHP_GEZIjTg", - "title": "Ne-Yo - Miss Independent (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n31fy8f2Xic", - "title": "Sista Prod, Powfu, Alec Benjamin, Rxseboy - Eyes Blue Like The Atlantic Part 2 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e6slqkrboa4", - "title": "Julie and the Phantoms - Edge Of Great (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2gmzIHU_714", - "title": "Ariana Grande - positions (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eICk1Lz6gH0", - "title": "Bea Miller - Feel Something (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PubMRNXqUD8", - "title": "Camp Rock - Too Cool (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fFJPfx5GP0Q", - "title": "Mario Judah - Die Very Rough (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0J5cvU7g85k", - "title": "Lewis Capaldi - Forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OJorUj0JA3w", - "title": "Britney Spears - Oops!...I Did It Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V4WDQmZd2VE", - "title": "BLACKPINK - Lovesick Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r21Eseaa7Jg", - "title": "Amy Winehouse - Love Is A Losing Game (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bY82VqRnqu0", - "title": "Amy Winehouse - You Know I'm No Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A7gF5FAs6zQ", - "title": "The Cardigans - Lovefool (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bIkFUo3_Y1o", - "title": "Troye Sivan - Easy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EIyfNOhIQ7s", - "title": "Stellar - Ashes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "50TNx49KNwc", - "title": "Sir Chloe - Michelle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5Ysa5iyrpZI", - "title": "Brandi Carlile - The Story (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mc7cOWlwnEY", - "title": "Ariana Grande - Sweetener (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dBHbxo_Pmj8", - "title": "Ricky Montgomery - Mr. Loverman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r7vAruZVl88", - "title": "Everybody Loves An Outlaw - I See Red (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jaWlZ_U-jDc", - "title": "Justin Bieber & benny blanco - Lonely (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8EB2iwEvE4s", - "title": "Labrinth - Still Don't Know My Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "doaBIDVKnA0", - "title": "Ava Max - Take You To Hell (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rGyX_pchRuA", - "title": "Wham! - Wake Me Up Before You Go-Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GDOH8gxPz3I", - "title": "Miley Cyrus - Can't Be Tamed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dSfkj7JZvfw", - "title": "Melanie Martinez - The Bakery (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8dhWZLv87tw", - "title": "Maroon 5 - Nobody's Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kfFe_lj9uIU", - "title": "Doja Cat - Juicy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jiJ4_-jVHYI", - "title": "Clairo - Sofia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M2xFPhFTu6I", - "title": "BANNERS - Someone To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RYcjiDrljHI", - "title": "Hillsong UNITED - Oceans (Where Feet May Fail) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q4g84iGxaNM", - "title": "Shawn Mendes - Wonder (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DHXrbMX7fPw", - "title": "Shakira - Waka Waka (This Time For Africa) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Uukz0TWFfEk", - "title": "24kGoldn ft. iann dior - Mood (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tJz-K5YBpSA", - "title": "Joji - Sanctuary (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gQt2AJjTXHE", - "title": "Justin Bieber ft. Chance The Rapper - Holy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_owvkxtn6tU", - "title": "Claire Rosinkranz - Backyard Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3VP2PkzM_nE", - "title": "Carly Pearce, Lee Brice - I Hope You're Happy Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bIRBzGDdpmU", - "title": "Sam Smith - Diamonds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7SYpPYkLY9Y", - "title": "Christina Aguilera - Reflection (2020) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HXlop0dffyM", - "title": "David Archuleta - Crush (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9520UyI0KsE", - "title": "Bร˜RNS - Electric Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xidiyjf94MQ", - "title": "CARYS - No More (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8MeClO8-stI", - "title": "Kinneret - No Wind Resistance! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-yPwm5ZjmjQ", - "title": "Rihanna - S&M (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Qcr3xGQAtzM", - "title": "Jorja Smith - By Any Means (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IV4XKzW67uU", - "title": "JVKE - Upside Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-f2wo_2aM14", - "title": "Candi Staton - Nights On Broadway (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Uziq2tKy67I", - "title": "Metro Station - Shake It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hCU_wjR9hZA", - "title": "CMTEN - NEVER MET! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MOu_g-vHhks", - "title": "Morgan Wallen - Whiskey Glasses (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wVvVrFLssTQ", - "title": "Ritt Momney - Put Your Records On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v-7LU8YA6BI", - "title": "Maddie & Tae - Die From A Broken Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2h60KkVm3HA", - "title": "Boys Like Girls, Taylor Swift - Two Is Better Than One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0k91tvnkmMc", - "title": "The Neighbourhood - Sweater Weather (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eeiB3nt7KwQ", - "title": "WONHO - Losing You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A7ftOYzRLcw", - "title": "Stephanie Mabey - The Zombie Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xr_iai07tes", - "title": "Christina Aguilera - Reflection (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Bwnm6wCyFHc", - "title": "Christina Aguilera - Genie In A Bottle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BhJYQVplrkI", - "title": "FINNEAS - What They'll Say About Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v69miE-fjaw", - "title": "Peach Tree Rascals - Mariposa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dq4snYpo1Ic", - "title": "Little Mix - Holiday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UPgvgTgrVvk", - "title": "Miley Cyrus - Midnight Sky (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FdmospOE3Jo", - "title": "HONNE - no song without you (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p8p0z_w0Juk", - "title": "Ronan Keating - When You Say Nothing At All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GjaVueSGx20", - "title": "Fleetwood Mac - Landslide (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GOFxPxTQUvY", - "title": "Salem Ilese - Mad At Disney (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ttT6Uv79NNM", - "title": "Ashe - Save Myself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6cLG11_ZA6o", - "title": "avenue beat - F2020 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "k0kXvS1il-o", - "title": "Ava Max - Who's Laughing Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VmD76frueXw", - "title": "Jxdn - Angels & Demons (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fegULDqE9GM", - "title": "Lil Xxel - LMK (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N7kV59gpJjg", - "title": "BLACKPINK, Selena Gomez - Ice Cream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fUOc4noynmc", - "title": "Camp Rock - Gotta Find You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V9aFf48jLPQ", - "title": "BTS - Dynamite (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e1Uv3rBykpg", - "title": "Camp Rock - This Is Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4Ijt0bN9xYA", - "title": "Juice WRLD & The Weeknd - Smile (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4sRdfZMYU-M", - "title": "Dan + Shay - I Should Probably Go To Bed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EkJ2NL6xpcc", - "title": "My Chemical Romance - Welcome To The Black Parade (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RpvbNiC6u_4", - "title": "Fleetwood Mac - Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Fi_otrpQbm0", - "title": "Tate McRae - you broke me first (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qfqzXWf6_4g", - "title": "Royal & The Serpent - Overwhelmed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QzWG-Vc9yo4", - "title": "Lana Del Rey - Happiness Is A Butterfly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OzmFgCQftmc", - "title": "3 Doors Down - Here Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NaN_z-BArCE", - "title": "The Irrepressibles - In This Shirt (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WpjyAZtKd2U", - "title": "Michael Andrews and Gary Jules - Mad World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LDf-njt77AY", - "title": "Jordan Suaste - Body (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LMoBpF6UlOI", - "title": "Nessa Barrett - Pain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RQmoQuPL8hY", - "title": "Billie Eilish - my future (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LSiVDLhdxjk", - "title": "Taylor Swift - cardigan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P6tMjbZ9jfs", - "title": "Camp Rock - Who Will I Be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IfJC9vb6p30", - "title": "Lady Gaga - Paparazzi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rG_K0wVvpao", - "title": "Alessandra De Rossi, Paolo Contis - I Will Be Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WwUYq7kr9dU", - "title": "Conan Gray - Heather (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bYu5srElLlw", - "title": "Curtis Waters ft. Harm Franklin - Stunnin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mTfbXgSEzE8", - "title": "Alexander 23 - IDK You Yet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wl4lAz72RmU", - "title": "grandson - Blood // Water (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qQRRTH-1VN8", - "title": "Fergie - Big Girls Don't Cry (Personal) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TqxB27tRTL8", - "title": "Zoe Wees - Control (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HTTBkyWZFzg", - "title": "Sarah Geronimo - Kiss Me Kiss Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "76qpwPuaqIY", - "title": "Michele Morrone - Hard For Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ODRET_WOuAU", - "title": "Anna Hamilton - Bad Liar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6aB6kkOOsDs", - "title": "Kelsea Ballerini - homecoming queen? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9F3bo-bu07s", - "title": "BLACKPINK - How You Like That (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yFeX4dRdi_o", - "title": "*NSYNC - This I Promise You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "telmJIBjbGg", - "title": "Dixie D'Amelio - Be Happy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "djEvsJGVkI8", - "title": "BTS - Stay Gold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FZnZxA7M9rA", - "title": "Jason Derulo & Jawsh 685 - Savage Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iXvN-PcbWwA", - "title": "Rod Wave - Heart On Ice (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s2JetLwj3-U", - "title": "Ali Gatie - Running On My Mind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D62Pc92QkpA", - "title": "Anna Clendening - Boys Like You (Acoustic) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Qut44K6sINs", - "title": "Lord Huron - The Night We Met (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7dT3YDGoJJ4", - "title": "Savage Garden - I Knew I Loved You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K6uh7tCLpbg", - "title": "5 Seconds Of Summer - Ghost Of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z3r9X3_37LQ", - "title": "Britney Spears - Sometimes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "466j_lb7bMs", - "title": "Wallows feat. Clairo - Are You Bored Yet? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "peWxP-B0rJE", - "title": "Kodaline - All I Want (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "arpSSvad-Uk", - "title": "Mandy Moore - Only Hope (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3ZffbUtgzjc", - "title": "Ellise - 911 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bCdTEH6OQBc", - "title": "Gracie Abrams - I miss you, I'm sorry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aiol2tb4uAc", - "title": "Ingrid Andress - More Hearts Than Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wHrs4LjdKw4", - "title": "Ysabelle - I Like You So Much, You'll Know It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "k6qLc9iD1cI", - "title": "Weird Genius ft. Sara Fajira - Lathi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tfy2VidpjYU", - "title": "Jesse McCartney - Beautiful Soul (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fuJi7FoGSio", - "title": "Lauv, Troye Sivan - i'm so tired... (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b5MY6rVwqeo", - "title": "David Guetta ft. Usher - Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mWnkEM2p4HY", - "title": "Maximillian - Beautiful Scars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FMwiliVzutQ", - "title": "Lauv - Never Not (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NzokKiTxfnA", - "title": "Topic, A7S - Breaking Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BuBPUduKOw0", - "title": "Marshmello, Halsey - Be Kind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HbcTxD1PnJw", - "title": "Sam Fischer - This City (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ceu-tt3cZ3k", - "title": "$uicideBoy$ - ...And To Those I Love, Thanks For Sticking Around (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d6UJJcoMaYA", - "title": "Katy Perry - Daisies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CyQhPvaC-gw", - "title": "Jorja Smith - Don't Watch Me Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "43Bl7QsebHo", - "title": "Dusty Springfield - Son Of A Preacher Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZQ9FSJPeuFM", - "title": "Zombies 2 - Flesh & Bone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oLShwvZopls", - "title": "4 Non Blondes - What's Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K23X9sfz_Jk", - "title": "One Direction - One Thing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XcuFrz5S5Gw", - "title": "Backstreet Boys - Shape Of My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "muwbCi5roa8", - "title": "Tate McRae - That Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zJKkDP9QIi0", - "title": "Lady Gaga & BLACKPINK - Sour Candy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u1CvO6dL0BU", - "title": "Zombies 2 - Call To The Wild (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P_xRlueXsu8", - "title": "Sam Smith, Demi Lovato - I'm Ready (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4VlkUxqL_So", - "title": "Hailee Steinfeld - I Love You's (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8v9pFbX0Pfs", - "title": "Lewis Capaldi - Lost On You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vJvPK1jYgHI", - "title": "Megan Thee Stallion - Savage (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xddl6B_QZ5Y", - "title": "Lady Gaga & Ariana Grande - Rain On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ts_wrleVqvQ", - "title": "Tate McRae - Dear Parents (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U-GZ7ccdLOM", - "title": "Brandi Carlile - The Joke (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DLjXt0c01Ng", - "title": "MAX ft. gnash - Lights Down Low (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kH9_meN7WqQ", - "title": "One Direction - Night Changes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pDPacquHrCE", - "title": "FINNEAS - Break My Heart Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "77JtLVNt7Zs", - "title": "Lewis Capaldi - One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w_uIqbcTkt8", - "title": "Aviva - Princesses Don't Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qY4B6BYzAXQ", - "title": "Luke Combs - Even Though I'm Leaving (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GCkSxPy-1tE", - "title": "Blake Shelton with Gwen Stefani - Nobody But You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UYfzTy3ELAQ", - "title": "StaySolidRocky - Party Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mbPB3rs9_TE", - "title": "Zombies 2 - We Got This (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IdruQKij6P4", - "title": "Ariana Grande & Justin Bieber - Stuck with U (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p9ms_vG6e6I", - "title": "twenty one pilots - Level Of Concern (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zk4QsyEDphk", - "title": "Ariana Grande - My Everything (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E12qDSPoQwk", - "title": "Ariana Grande - Moonlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BlpAh1A8PHI", - "title": "Ava Max - Kings & Queens (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FrnMqc4pqQo", - "title": "The Weeknd - In Your Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "976UK6h2xrQ", - "title": "Zombies 2 - Gotta Find Where I Belong (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MtmGigox0rA", - "title": "Zombies 2 - Like The Zombies Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XjBKOyI-lOY", - "title": "Jeremy Zucker - always, i'll care (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XpD7EPb5kHU", - "title": "Surf Mesa - ily (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iY_4jm6Z97g", - "title": "Drake - Toosie Slide (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2nG4WFnyDlE", - "title": "Zombies 2 - We Own The Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dj8iG9GkNGg", - "title": "Sub Urban ft. REI AMI - Freak (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AQG3h3uYw0k", - "title": "DripReport - Skechers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OKSgEzfWoCo", - "title": "Riverdale - Mad World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FYmjVZbxbJ8", - "title": "Cookiee Kawaii - Vibe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mbdrN6f1j6o", - "title": "Billie Eilish - Six Feet Under (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aE36jBab8VU", - "title": "GRLwood - I'm Yer Dad (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "msTHlwnmbQk", - "title": "Freya Ridings - Blackout (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oT1FQTSuhTM", - "title": "Tate McRae - One Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aQUITsd0NV8", - "title": "Natalie Taylor - Surrender (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TnAY41wAYNk", - "title": "Juice WRLD - Righteous (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fhqnRiuuP5E", - "title": "Gabby Barrett - I Hope (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i2RjSLEMj60", - "title": "OneRepublic - Stop And Stare (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sb2GhD-wGtM", - "title": "Dua Lipa - Break My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MmKRqsrWZ5o", - "title": "Jessie Reyez - FIGURES (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lJ9lO9iRj6M", - "title": "Jeremy Zucker - scared (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VmRvV3GIluU", - "title": "Lizzo - Juice (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "57dMSFH0KMw", - "title": "24kGoldn - CITY OF ANGELS (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SLrJwiLsa9A", - "title": "One Direction - What Makes You Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RzzC5rew5jE", - "title": "Powfu ft. beabadoobee - death bed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OZD6H9SGIB8", - "title": "Keane - Everybody's Changing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Tk76EDFgDvY", - "title": "Madison Beer - Selfish (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l5shwZTwHec", - "title": "Keane - Somewhere Only We Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g3a14E6_Hlo", - "title": "Anne-Marie - Her (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DLR8zu7aHDM", - "title": "Bazzi - Renรฉe's Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bkLh27na7Kc", - "title": "Queen - I Want It All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t14cTDMKPw4", - "title": "Maren Morris - The Bones (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MFvo302RcI8", - "title": "HSMTMTS - Born To Be Brave (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NXWHemYlbfg", - "title": "HSMTMTS - Just For A Moment (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D1DdVAY2EGs", - "title": "MASN - Psycho! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oxxpyTw8U2U", - "title": "R.E.M. - It's The End Of The World As We Know It (And I Feel Fine) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3TLmBNUL_cA", - "title": "Demi Lovato - I Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U9z9CJVjfYA", - "title": "Sarah McLachlan - Angel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2szJYvdUglk", - "title": "Kenny Rogers - The Gambler (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S9eBE1VsISY", - "title": "Little Mix - Break Up Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vTk4dPkUNeg", - "title": "Backstreet Boys - As Long As You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eDUiYL6Mr54", - "title": "Katy Perry - Waking Up In Vegas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MmGmwn09LdU", - "title": "Lady Gaga - Stupid Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0yhP-R5Q5ok", - "title": "Sing King's SING ALONG - 1 Hour Of Non Stop Karaoke!", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nyn4MreKIk4", - "title": "R.E.M. - Everybody Hurts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GVtyZlmWMGc", - "title": "HSMTMTS - Breaking Free (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LTj11cPudyw", - "title": "One Direction - Story Of My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y3hYZJnyN2Y", - "title": "Post Malone - Hollywood's Bleeding (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u_uNxT1bIh8", - "title": "The Weeknd - After Hours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "136MUGbUe60", - "title": "Lil Uzi Vert - That Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rButbqDqAe8", - "title": "Dua Lipa - Homesick (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zSPwK2EFp0M", - "title": "Breland - My Truck (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eOk5HzVhe8g", - "title": "Elina - Another Round (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F6PzaxH_TaA", - "title": "V - Sweet Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BnC1Y2dwuOk", - "title": "Jonas Brothers - I Believe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vLdICfIIumI", - "title": "Lil Mosey - Blueberry Faygo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Tp4ZmcXqiIM", - "title": "John K - if we never met (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1ndQ9XAqomM", - "title": "Justin Bieber ft. Post Malone & Clever - Forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qRUVtrhhhQE", - "title": "BENEE - Supalonely ft. Gus Dapperton (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P5C6bLyzN3s", - "title": "Lauv, LANY - Mean It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OqoICpRNg9U", - "title": "Chris Brown ft. Gunna - Heat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-JH_xJffSBU", - "title": "Jeremy Zucker, Chelsea Cutler - you were good to me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yHX782lZfMs", - "title": "Doja Cat - Candy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ou_MZcmegRk", - "title": "Joshua Bassett, Olivia Rodrigo - I Think I Kinda, You Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-yukAvBxOrQ", - "title": "Frozen 2 - When I Am Older (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7om12uqEO4A", - "title": "Trevor Daniel - Past Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SRXTSa-_DvQ", - "title": "Niall Horan - No Judgement (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uUqZyQ9JQNY", - "title": "Alec Benjamin - Water Fountain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8Lei6uJZydM", - "title": "Lauv - Who feat. BTS (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MzWPiG8l1VU", - "title": "Anne-Marie - BIRTHDAY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y-ooXDPfDy0", - "title": "Katy Perry - Never Worn White (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tR9eNnXA9EA", - "title": "P!nk, Chris Stapleton - Love Me Anyway (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fL7qK5ynYGg", - "title": "Jonas Brothers - What A Man Gotta Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J6jCor0h8v0", - "title": "Joshua Bassett - When There Was Me And You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9NGCbjKh1R0", - "title": "Kesha - Cannibal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Qm1sD8Y4954", - "title": "Frozen 2 - The Next Right Thing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VGNUm-ttsNE", - "title": "Troy & Gabriella - What I've Been Looking For (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VaBUu7VEycM", - "title": "Baby Ariel - The New Kid In Town from \"Zombies 2\" (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QfHbuJW59EE", - "title": "Justin Bieber ft. Quavo - Intentions (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Mk5JYEFcGnU", - "title": "Hoobastank - The Reason (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xp1bRW9nSvM", - "title": "Ashe - Moral Of The Story (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4fZSkwpMopI", - "title": "Halsey - You should be sad (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rq98wWr9pFM", - "title": "Camila Cabello - First Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gPVNI42Xlkw", - "title": "Ali Gatie - What If I Told You That I Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Skn2J1m1FKA", - "title": "for KING & COUNTRY - burn the ships (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iA2K4iMP4fE", - "title": "Summer Walker, Bryson Tiller - Playing Games (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qG520Uw8lUA", - "title": "Carly Rae Jepsen - Call Me Maybe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OAtXbf1nGjs", - "title": "Olivia Rodrigo, Matt Cornett - What I've Been Looking For (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "We5SKLMAYCc", - "title": "Anson Seabra - Welcome To Wonderland (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4-qga7NLOJA", - "title": "Dua Lipa - Physical (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eilM4YHBrS0", - "title": "Post Malone - I Fall Apart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "--Tiine2TlM", - "title": "Taylor Swift - Only The Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VzyZ6jJCvEY", - "title": "Olivia Rodrigo - Start Of Something New (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q7Moarwc_I8", - "title": "Trevor Daniel - Falling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mnD7nbTjZ6U", - "title": "Frozen 2 - Some Things Never Change (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KUKyy4r-BO4", - "title": "Katy Perry - Firework (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6xro-Lm4sn8", - "title": "Sam Smith - To Die For (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0n2XhLPbPMQ", - "title": "Tones and I - Never Seen The Rain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i2ORSLY9CLI", - "title": "Arizona Zervas - FML (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OndurWrYr1Y", - "title": "Kane Brown ft. Lauren Alaina - What Ifs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ioqGmaBHUrk", - "title": "Billie Eilish - No Time To Die (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZWYsKav2-NM", - "title": "Melanie Martinez ft. Tierra Whack - Copy Cat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zvjhSC9_tjA", - "title": "Bill Withers - Ain't No Sunshine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qAI3zlwn6_I", - "title": "Doja Cat - Say So (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zxVI2zMc72Q", - "title": "XXXTENTACION - Hope (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fMMCdBJS_Bs", - "title": "Staind - It's Been Awhile (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "obhqw5DdhXY", - "title": "Conan Gray - Maniac (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U7CQKbusBi4", - "title": "Timbaland, OneRepublic - Apologize (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ToCA0Blmd2U", - "title": "Ava Max - Salt (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H63tNSi0US4", - "title": "YNW Melly - Suicidal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2EqbICF1O88", - "title": "Luke Combs - Beautiful Crazy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kbCFQrCCdNk", - "title": "Lauv - Changes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "voEqotbqmvI", - "title": "Selena Gomez - Dance Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UktjRa86VE8", - "title": "Surfaces - Sunday Best (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6CGF3NHPuyg", - "title": "High School Musical - When There Was Me And You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LdiU9n6vlP8", - "title": "Halsey - I HATE EVERYBODY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5_3hSGhcuo0", - "title": "Lewis Capaldi - Before You Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IrijEHSdDC4", - "title": "Demi Lovato - Anyone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JRkJlxO4qhM", - "title": "Cavetown - This Is Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TKVEaCmS0Zw", - "title": "Roddy Ricch - The Box (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ETsFmFZz208", - "title": "Noah Cyrus - Lonely (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Lzx957gyc8A", - "title": "Camila Cabello - My Oh My ft. DaBaby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r1nkyeH96Lk", - "title": "Katy Perry - Wide Awake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2HGRRqUDOOk", - "title": "Selena Gomez - Rare (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XU1Sts_K3ns", - "title": "Old Dominion - One Man Band (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I3pWfsOfTtU", - "title": "Matt Cornett - A Billion Sorrys (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mib93OpvqY0", - "title": "Hailee Steinfeld - Wrong Direction (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t6biBJh2AAs", - "title": "Matthew Wilder - Break My Stride (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lzJPgXEnXiQ", - "title": "PUBLIC - Make You Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lsRGOImIsAU", - "title": "Olivia Rodrigo, Julia Lester (HSMTMTS) - Wondering (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XL24DbgCWgQ", - "title": "Harry Styles - Adore You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cj4hcXZs3Lc", - "title": "The Weeknd - Blinding Lights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C_JjU5QGQQs", - "title": "Frozen 2 - Lost In The Woods (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JF2GJj_GaKI", - "title": "Lady Antebellum - What If I Never Get Over You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8jHxIZUF1lw", - "title": "Stevie Wonder - Lately (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6UYBrCmALcs", - "title": "Rihanna - Hate That I Love You ft. Ne-Yo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z1fEmiHYgCU", - "title": "Daniel Bedingfield - If You're Not The One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OZzvW_6nKOI", - "title": "Little Big Town - Better Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NxQYcM0Kw2Q", - "title": "Justin Bieber - Yummy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DqqsTljY3PA", - "title": "Olivia Rodrigo - All I Want (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SkvLj4WENkI", - "title": "Sub Urban - Cradles (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "drEzuXi8mT0", - "title": "iann dior, Trippie Redd - gone girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OQzT1OASwPU", - "title": "Harry Styles - Watermelon Sugar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zIKtbGu4tHU", - "title": "Kacey Musgraves - All Is Found (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tweEp6lj8Kk", - "title": "One Direction - Everything About You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zGqZZQablfY", - "title": "Frozen 2 - Show Yourself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FsUa8P-L2Ag", - "title": "Gloria Gaynor - I Will Survive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "16MeABER5xg", - "title": "Whitney Houston - Didn't We Almost Have It All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IS7ESPZn7do", - "title": "The Beatles - In My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TPl0fZ5lK20", - "title": "Whitney Houston - One Moment In Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E62KRZGRo4o", - "title": "Deep Blue Something - Breakfast At Tiffany's (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yYgFs1_BUV0", - "title": "Lionel Richie & Diana Ross - Endless Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-DAdiVbDMFQ", - "title": "INXS - Never Tear Us Apart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BdReRY0VIRg", - "title": "Rod Stewart - I Don't Want To Talk About It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dqIzep89HBw", - "title": "The Righteous Brothers - Unchained Melody (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uixkkqOQoD0", - "title": "Lionel Richie - Hello (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uIMabU0PIKU", - "title": "Berlin - Take My Breath Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dq34Clq3QKY", - "title": "Christmas Carols - Away In A Manger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1Y77BelxUQY", - "title": "The Champs - Tequila (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ezhb6uUMRTc", - "title": "Katy Perry - Cozy Little Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MxmlMePm7fs", - "title": "One Direction - I Want (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b22bqScoWZE", - "title": "Frank Sinatra - That's Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OU3699R53rs", - "title": "Ben E. King - Stand By Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6UcWuv1dwlU", - "title": "Christmas Carols - We Wish You A Merry Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x5J8uwuVBKs", - "title": "Harry Styles - Falling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4XdwLORfj1o", - "title": "LoveLeo - BOYFREN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "srLoAl1mhFw", - "title": "Neil Diamond - Sweet Caroline (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S_BNb0R7iX4", - "title": "Sean Kingston - Beautiful Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GLm3ZryQxYg", - "title": "The Beatles - Twist And Shout (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i_WCFUGCv6M", - "title": "Christmas Carols - Silent Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8pE1h4D9iro", - "title": "REO Speedwagon - Can't Fight This Feeling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z6Zr01BfjBM", - "title": "Elvis Presley - Suspicious Minds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Fus6jCD8VqA", - "title": "Whitney Houston - Run To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h9iHDVEkBYE", - "title": "Queen - Too Much Love Will Kill You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dVsuQFaTPl8", - "title": "Olivia Rodrigo, Julia Lester - Wondering (Ashlyn & Nini Piano Version | HSMTMTS) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rvRqiCzBDZA", - "title": "One Direction - Gotta Be You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KxZoKkjTSys", - "title": "Frozen 2 - All Is Found (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AWgw7_QZELg", - "title": "Taylor Swift - Christmas Tree Farm (Karaoke Version) | Sing King Karaoke", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xNRXuxrHrrk", - "title": "Rihanna - Russian Roulette (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X99Eh9K-8II", - "title": "blackbear - hot girl bummer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C2TTXCXUAaI", - "title": "Queen - The Show Must Go On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cLq1IdfZLog", - "title": "P!nk - A Million Dreams (Karaoke Version) | Sing King Karaoke", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HibqmaLvNjs", - "title": "Sugarland - Stay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jHRS9ybQpg4", - "title": "Christmas Songs - Do You Hear What I Hear (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bHrUsofyXFk", - "title": "Whitney Houston (With Mariah Carey) - When You Believe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YzYeCLUD1NM", - "title": "The Weeknd - Heartless (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ikVcDoy_9UI", - "title": "Little Mix - One I've Been Missing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FBQeaKYmZtA", - "title": "Air Supply - All Out Of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CRZ8DjDfnEE", - "title": "Arizona Zervas - Roxanne (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D3QokilFBpw", - "title": "Noah Cyrus - July (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zwBag5vE6XY", - "title": "The Ronettes - Sleigh Ride (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nlKHe2Ts0lY", - "title": "Camila Cabello - Living Proof (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kTu2QPghqZU", - "title": "Lady Gaga - Poker Face (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3zlhC2AombY", - "title": "Lukas Graham - HERE (For Christmas) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VlFVFTNcz9A", - "title": "Jonas Brothers - Like It's Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BGSld7oUEWo", - "title": "Ali Gatie - Moonlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wm6-X6yPHVI", - "title": "Tracy Chapman - Fast Car (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kRV8K6ApYu0", - "title": "JP Saxe - If The World Was Ending ft. Julia Michaels (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zvDMgPt5Bxo", - "title": "The Beatles - Yellow Submarine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iU8ZofhzVb4", - "title": "Commodores - Easy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3vb17d86fCs", - "title": "Jona Lewie - Stop The Cavalry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9b9wK_V98N4", - "title": "Spandau Ballet - True (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y1ZnaCAb-y8", - "title": "Lionel Richie - All Night Long (All Night) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9rnQFsbDa3o", - "title": "Frozen 2 - Into The Unknown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_J9po90y8es", - "title": "George Ezra - Shotgun (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DaHLqP-CTac", - "title": "Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fYEKliA02vg", - "title": "Alessia Cara - Make It To Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IuvTnwVhBlg", - "title": "Ant Saunders - Yellow Hearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "te5_kvfz82c", - "title": "Idina Menzel & Michael Bublรฉ - Baby It's Cold Outside (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RMmwZIJ3uqk", - "title": "peter kuli & jedwill - ok boomer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tnU5FVhE7d4", - "title": "Taylor Swift - Beautiful Ghosts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rnbQoVsiu2g", - "title": "Selena Gomez - Look At Her Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6cJlBXccEAM", - "title": "Carrie Underwood - O Holy Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oP1VsNFS5aI", - "title": "Camila Cabello - Cry For Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s1rgRFVUIJQ", - "title": "Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lT-3Es67dPs", - "title": "Extreme - More Than Words (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2bb67GtsI80", - "title": "Hozier - Take Me To Church (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hbFLCA3K-tc", - "title": "NLE Choppa ft. Blueface - Shotta Flow (Remix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pGFEj-Dv3-0", - "title": "Robbie Williams - Angels (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NjFqEymOxOs", - "title": "Ariana Grande, Normani, Nicki Minaj - Bad To You (from \"Charlie's Angels\") (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oulyteAIDPU", - "title": "The Crystals - Rudolph The Red-Nosed Reindeer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KFahZd4vVtk", - "title": "Kina ft. Adriana Proenza - Can We Kiss Forever? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SuCg7ZUe8F0", - "title": "Lil Mayo - Be Gone Thot! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1_gLpOJWHC0", - "title": "The Crystals - Santa Claus Is Comin' To Town (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fZHHfJuGU-E", - "title": "Panic! At The Disco - Into The Unknown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WWu83Z4pqss", - "title": "Sia - Snowman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R6RCCNdGu30", - "title": "Lady A - The First Noรซl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vuNP7Y42wgg", - "title": "Michael Bublรฉ - It's Beginning To Look A Lot Like Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r9ucN2tSnDE", - "title": "Ariana Grande - Last Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KTxLR8GOUt4", - "title": "Whitney Houston - Saving All My Love For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uEX4Z4lHS0c", - "title": "Bebe Rexha - You Can't Stop The Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WG3x0Ofe1K0", - "title": "Bazzi - I.F.L.Y (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0J_z7RjLZfo", - "title": "Billie Eilish - everything i wanted (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tyN3301wYQ0", - "title": "Kylie Minogue - Santa Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tAEek8nO11c", - "title": "Frank Sinatra - My Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nRKhtWWUZjw", - "title": "Judy Garland - Have Yourself A Merry Little Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b69Sov59Lvo", - "title": "Ashnikko ft. Yung Baby Tate - STUPID (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u8PBsrnzGU4", - "title": "Amy Grant - Winter Wonderland (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9zYS2GVCWRM", - "title": "Mariah Carey - O Holy Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Oo0PGau7Utk", - "title": "Harry Styles - Lights Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0Lkr7R8LBmo", - "title": "Michael Bublรฉ - Holly Jolly Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QzFDehvDcdU", - "title": "Ariana Grande - Santa Tell Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MR70Dg0_o1A", - "title": "John Lennon - Imagine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qsazv1M6-6I", - "title": "Camila Cabello - Easy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z0VQIRZ9xSk", - "title": "DJ Jazzy Jeff & The Fresh Prince - The Fresh Prince Of Bel-Air (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DVxVXBpi7vc", - "title": "Chris Stapleton - Tennessee Whiskey (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jIMJQsBwsWg", - "title": "Dua Lipa - Don't Start Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K-vyxJj88Jc", - "title": "The Beatles - Help! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zAbT9dr1R30", - "title": "Heart - Alone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QvEhGdkGehE", - "title": "Dan + Shay - Speechless (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VvjWl7lvrnk", - "title": "Frank Sinatra - Fly Me To The Moon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KRU8GuWAzkE", - "title": "Kane Brown - Heaven (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e3C8Nh3DIwA", - "title": "Alexandra Burke - Hallelujah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iZJ2WnpnUcI", - "title": "Halsey - Clementine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O2tQp8O91X4", - "title": "Travis Scott - HIGHEST IN THE ROOM (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r2vP_7btUHA", - "title": "Catie Turner - Prom Queen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D9gA8erVrcY", - "title": "The Beatles - Come Together (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0oOAClzjL5Y", - "title": "Selena Gomez - Lose You To Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aeyxufMtcOY", - "title": "The Beatles - Blackbird (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-HgxYnvguFw", - "title": "Luke Bryan - Knockin' Boots (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K7y0oTROSJM", - "title": "China Anne McClain - Calling All The Monsters (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8KeLyWdfC-A", - "title": "Nina Simone - I Put A Spell On You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZLd6IcDA1qE", - "title": "The Living Tombstone - Spooky, Scary Skeletons (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c5BjapvUndQ", - "title": "Ray Parker Jr. - Ghostbusters (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vLwboi5VkMU", - "title": "Blue ร–yster Cult - (Don't Fear) The Reaper (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uaK8FLttCzc", - "title": "Alice Cooper - Poison (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YKHzMvXdDM8", - "title": "Cartoons - Witch Doctor (Ooh Eeh Ooh Ah Aah Ting Tang Walla Walla Bing Bang) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7Qj3rb4dJsM", - "title": "Patsy Cline - Crazy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GmzRIaRCo_M", - "title": "Duran Duran - Hungry Like The Wolf (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3WLy3AblvmQ", - "title": "Radiohead - Creep (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uw3zzQ-5g4o", - "title": "The Beatles - Yesterday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zW7VS-vySBM", - "title": "Ali Gatie - Used To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NSrVn6PfAtU", - "title": "Lauren Daigle - Rescue (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7kWhaDjtY5A", - "title": "Stevie Wonder - Superstition (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0ih6b17zRM0", - "title": "Shakira - Underneath Your Clothes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F1RcHsV_7s8", - "title": "P!nk - Who Knew (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XVG-jODTeyQ", - "title": "Dan + Shay, Justin Bieber - 10,000 Hours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hCT4IsJ3pQI", - "title": "Miley Cyrus & Billy Ray Cyrus - Butterfly Fly Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bhUe11gw23I", - "title": "Rihanna - Unfaithful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m-2IC9RdTQw", - "title": "Sia - Rainbow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-fVgl9-Zx3k", - "title": "Bobby \"Boris\" Pickett - Monster Mash (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1rLOrijkrNs", - "title": "Bad Wolves - Zombie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sPu9jduC1HI", - "title": "Cรฉline Dion - Because You Loved Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OqQz92Od-HU", - "title": "Dolly Parton - 9 To 5 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uVAt8WqEJhE", - "title": "Labrinth - Jealous (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HHigjZSmsSs", - "title": "Lonestar - Amazed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PenQd3Bhusk", - "title": "Daniel Caesar ft. Kali Uchis - Get You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O19c8OMCykY", - "title": "The Band Perry - If I Die Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I93Xg1aZFEQ", - "title": "John Legend - Ordinary People (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AqYrOoZpsjg", - "title": "Carrie Underwood - Before He Cheats (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fHUcBRL1D2I", - "title": "Melanie Martinez - Teacher's Pet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ei-VpgPozgQ", - "title": "Johnny Cash - Ring Of Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J66WV9OlN8c", - "title": "Melanie Martinez - Detention (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KSr0TJH5m-Q", - "title": "Maroon 5 - Memories (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "enmHYsoCMkQ", - "title": "The Beatles - Hey Jude (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "byhOlv1UvBQ", - "title": "The Beatles - I Want To Hold Your Hand (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ElW8dK1POA4", - "title": "The Beatles - Here Comes The Sun (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "okPNNs3Xow8", - "title": "Melanie Martinez - Strawberry Shortcake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Kya8huDfjcI", - "title": "V (BTS) - Winter Bear (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IEkU7GFBhT0", - "title": "Melanie Martinez - Fire Drill (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sibriJbzZQM", - "title": "Melanie Martinez - Orange Juice (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "an0JKXnnrAY", - "title": "TONES & I - DANCE MONKEY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OhRUYf_yn_s", - "title": "The Beatles - Let It Be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wonXEIuEuIA", - "title": "Lady Antebellum - Just A Kiss (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jZ8o_ZGt9QY", - "title": "Richard Marx - Right Here Waiting (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m8CEEkqQiiY", - "title": "The Cranberries - Zombie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HisAayo4Dio", - "title": "Billy Ray Cyrus - Achy Breaky Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sj5nOjRDiZk", - "title": "Lewis Capaldi - Bruises (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7aNW9hRKYA8", - "title": "John Denver - Take Me Home, Country Roads (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gLsgyN5EDVQ", - "title": "Melanie Martinez - High School Sweethearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CAXwDktQCng", - "title": "Labrinth, Zendaya - All For Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cz_4Qcu1f6c", - "title": "Melanie Martinez - Drama Club (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zilK3bl96W4", - "title": "Melanie Martinez - Lunchbox Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A5j3FkjPomY", - "title": "Rex Orange County - Loving Is Easy ft. Benny Sings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uTbosVWbteo", - "title": "Jeremy Zucker - comethru (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-xc-nrZmfkg", - "title": "Post Malone - Saint-Tropez (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3Cz__Yiutq0", - "title": "Melanie Martinez - Recess (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cf1_XzLVKPU", - "title": "Taylor Swift - Death By A Thousand Cuts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r5Rz2G_41ek", - "title": "Melanie Martinez - Wheels On The Bus (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x8OawWigxBI", - "title": "Taylor Swift - Soon You'll Get Better (Karaoke Version) feat. Dixie Chicks", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xEwPVphGS70", - "title": "Mario - Let Me Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OLqVb3QO_ck", - "title": "Melanie Martinez - The Principal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4kkgit7dcJk", - "title": "Taylor Swift - The Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1y5xNy3pmtk", - "title": "Taylor Swift - Paper Rings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9cIWdpzIN0w", - "title": "Bazzi - Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Eww8-Ky_VNc", - "title": "Charlie Puth - I Warned Myself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Eyumo4hFhcE", - "title": "Charlie Puth - I Warned Myself (Karaoke Version with Backing Vocals)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w2WB9X4H3sk", - "title": "benny blanco, Juice WRLD - Graduation (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZX2UJRtJiNI", - "title": "5 Seconds Of Summer - Teeth (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VgC1kpTUjkY", - "title": "Melanie Martinez - Class Fight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C05frvnB8m4", - "title": "Megan Thee Stallion - Hot Girl Summer (Karaoke Version) ft. Nicki Minaj, Ty Dolla $ign", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "02Hct4xaNfA", - "title": "Taylor Swift - Daylight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "52S8qO8MDjQ", - "title": "SHAED - Trampoline (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hlk6z9nJxGg", - "title": "Post Malone - Circles (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3RX5b0M3fAI", - "title": "Halsey - Graveyard (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jF4xOhCdrlo", - "title": "Olivia Newton John - Hopelessly Devoted To You from \"Grease\" (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bzg25xhxD0s", - "title": "Crowded House - Don't Dream It's Over (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6WJ_GheHMZc", - "title": "Camila Cabello - Liar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GsqtDObdxAU", - "title": "Melanie Martinez - Nurse's Office (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7HW2-XSeoVg", - "title": "Ariana Grande, Miley Cyrus, Lana Del Rey - Don't Call Me Angel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d4K4F2YDDOk", - "title": "Descendants 3 - Good To Be Bad (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rw9Yi4-5RX8", - "title": "Descendants 3 - Queen Of Mean (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4G4tntY30Qw", - "title": "Ariana Grande ft. Nathan Sykes - Almost Is Never Enough (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "otKYi0rYYx8", - "title": "Daniel Caesar ft. H.E.R. - Best Part (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6b1IqNSWdRY", - "title": "Drake ft. Rick Ross - Money In The Grave (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yD-nQwYu3pA", - "title": "Melanie Martinez - Show & Tell (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zUL3luiUzVE", - "title": "Miley Cyrus - Slide Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WYmdxnw2sWc", - "title": "Khalid - Right Back ft. A Boogie Wit Da Hoodie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nY7Wk1P9YjU", - "title": "Taylor Swift - It's Nice To Have A Friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MPc1NApGnQM", - "title": "Roxette - It Must Have Been Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "34xr8xYLYPo", - "title": "LeAnn Rimes - How Do I Live (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "68HfJMN5YUQ", - "title": "Train - Drops Of Jupiter (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BcuDoxTkx_g", - "title": "Molly Kate Kestner - Prom Queen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NU9OB1Gv5Qc", - "title": "Ava Max - Torn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GxAP5FDWl5A", - "title": "Y2K, bbno$ - Lalala (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7rmxIEjMNX0", - "title": "Natalie Imbruglia - Torn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1Ciudf819wA", - "title": "Taylor Swift - I Forgot That You Existed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nqIRN0j-iuI", - "title": "Descendants 3 - Break This Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "femohd7zllQ", - "title": "Rihanna - Take A Bow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wejyFn4GDcs", - "title": "Little Mix - A.D.I.D.A.S (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "buJNHDfiS9U", - "title": "Taylor Swift - London Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tDtdeRHCfGY", - "title": "Descendants 3 - Do What You Gotta Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sl0wAxXJChs", - "title": "NF - The Search (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NWYWiZLtqA0", - "title": "Descendants 3 - My Once Upon A Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q5fv_CT6MEo", - "title": "Camila Cabello - Shameless (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BC9TJI0qP7k", - "title": "ZAYN ft. Nicki Minaj - No Candle No Light (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r_7Zt4SrB34", - "title": "Bad Bunny, Drake - Mia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ls48orWTp3k", - "title": "Becky G, Myke Towers - DOLLAR (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w7oLgnTA1tU", - "title": "Taylor Swift - Cornelia Street (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QzT_NI6Hzl4", - "title": "Lil Tecca - Ransom (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oo4WyB9JBGk", - "title": "Beach Bunny - Prom Queen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kAGdsoH2l3E", - "title": "Lana Del Rey - Looking For America (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n9vQlA7SMjk", - "title": "Taylor Swift - Lover (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u5j2cl8zDUk", - "title": "Taylor Swift - Lover (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GRm6tfEIhDI", - "title": "Taylor Swift - Afterglow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w9oBVnOaKjk", - "title": "Katy Perry - Small Talk (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IqqbfCCXG_8", - "title": "Lauv, Anne Marie - f*ck, i'm lonely (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KAX2wJjOYY0", - "title": "Taylor Swift - I Think He Knows (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Fmk4Hsb-A_s", - "title": "Miley Cyrus - Younger Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "msqBvKWsf7Q", - "title": "Major Lazer ft. Ariana Grande - All My Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XbammamEoZM", - "title": "Ellie Goulding ft. Juice WRLD - Hate Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QSSbJE6GPGk", - "title": "Ali Gatie - It's You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gyEwq68GCIM", - "title": "Taylor Swift - False God (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "79MtlwBg0ik", - "title": "Fifth Harmony - Me & My Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZVvK0m0aHec", - "title": "Taylor Swift - Miss Americana & The Heartbreak Prince (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UYqChykmbb0", - "title": "Normani - Motivation (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hXASS5ZKrKE", - "title": "Selena Gomez, Marshmello - Wolves (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N2ScieGmSGQ", - "title": "Taylor Swift - Cruel Summer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "clsnqc0v4qY", - "title": "UB40 - Red Red Wine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yrG-VAcbCb0", - "title": "Blanco Brown - The Git Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hzhh_zpdvvo", - "title": "Ed Sheeran ft. Skrillex - Way To Break My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YaYiM6xLuCo", - "title": "Descendants 3 - One Kiss (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "krMVgCUl80s", - "title": "Taylor Swift - White Horse (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PIP12dDzUDA", - "title": "Camila Cabello - Never Be The Same (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jxfXf69xRCM", - "title": "Marshmello & Kane Brown - One Thing Right (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bhGqtMsp0-w", - "title": "Rihanna - Stay ft. Mikky Ekko (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7ot2SDdPISA", - "title": "Jonas Brothers - Only Human (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hrGJbnoByAA", - "title": "Taylor Swift - You're Not Sorry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V1jsX0Z3Zms", - "title": "V (BTS) - Winter Bear (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ENjvYNv_I58", - "title": "Taylor Swift - The Story Of Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hbiNQnvinbo", - "title": "Ed Sheeran ft. Travis Scott- Antisocial (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ompZ8VLgjts", - "title": "Taylor Swift - Ours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qE8lNvXnaCQ", - "title": "Taylor Swift - Gorgeous (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9fmy-Ud3_Tw", - "title": "Ariana Grande, Social House - boyfriend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hCvAn9BtCvE", - "title": "Descendants 3 - Night Falls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BRWpIbuGa1M", - "title": "Descendants 3 - Queen Of Mean (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D7_8HFYctas", - "title": "Sam Smith - Too Good At Goodbyes (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-h2hna4fpbA", - "title": "Taylor Swift - Mine (POP Mix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tUxJnCIwyL0", - "title": "Dean Lewis - 7 Minutes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jrZNeq0TOHg", - "title": "City Girls - Act Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bC4ER15Hj10", - "title": "a-ha - Take On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VQjhpQBw8pA", - "title": "Alan Walker - Darkside feat. Au/Ra, Tomine Harket (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Jkg4CUq7gj4", - "title": "P!nk - What About Us (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tPWU56optms", - "title": "Cardi B, Bad Bunny & J Balvin - I Like It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1Ozq7W2gy7k", - "title": "Tom Walker - Leave A Light On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XAomeDeqN0I", - "title": "Kesha - We R Who We R (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-izZYpzLTzI", - "title": "Eric Carmen - Hungry Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OBzl83j-8IE", - "title": "Tears For Fears - Everybody Wants To Rule The World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MI-h3-Br0LM", - "title": "Sofia Reyes ft. Rita Ora, Anitta - R.I.P. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gjLQu644Fz8", - "title": "Ed Sheeran ft. 50 Cent & Eminem - Remember The Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GYPT4UtfBjQ", - "title": "Gabbie Hanna - Medicate (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QAiDXelc9-I", - "title": "DJ Snake - Taki Taki ft. Selena Gomez, Ozuna, Cardi B (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Mjc9QjIrlb4", - "title": "Imagine Dragons ft. Elisa - Birds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u7b3v7055gU", - "title": "Queen - Another One Bites The Dust (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OozUwqWbXzc", - "title": "Simple Minds - Don't You (Forget About Me) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PvkXaU9SuNs", - "title": "CaptainSparklez - Revenge (Minecraft Parody) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "249FPTZ_J3c", - "title": "Alec Benjamin - Let Me Down Slowly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NFNGAVVmXZs", - "title": "Ed Sheeran - Perfect (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5yWgec4Drwc", - "title": "Billie Eilish - Bored (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7lW2uwxuCLI", - "title": "Ed Sheeran - South Of The Border (feat. Camila Cabello & Cardi B) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yBwqQxVXt1o", - "title": "Cher - If I Could Turn Back Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UFxp9yklnHA", - "title": "Why Don't We - Trust Fund Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "W32wsXy3JJQ", - "title": "Cardi B - Money (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NAH3IYHp770", - "title": "Chris Brown ft. Drake - No Guidance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WOHxOEcE_jU", - "title": "Daddy Yankee & Snow - Con Calma (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kVg3L1FvgZw", - "title": "Lauv - I Like Me Better (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UQMtNEu-E3M", - "title": "Melanie Martinez - Toxic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZdmXls_ENVo", - "title": "Sam Smith - How Do You Sleep? (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hO9feFj3F8M", - "title": "Mabel - Don't Call Me Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CHxcL_EXa3Q", - "title": "Lil Nas X, Cardi B - Rodeo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CRrZlEF7-SU", - "title": "Toto - Africa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jiipJz78VD8", - "title": "The Chainsmokers, Bebe Rexha - Call You Mine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WX2Zp0XK0G4", - "title": "Katy Perry - Who Am I Living For? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t_4bSwL7-8w", - "title": "Selena Gomez - Love You Like A Love Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LVOPKlPgKLw", - "title": "Sam Smith - How Do You Sleep? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dKbxxkWlXjE", - "title": "Taylor Swift - The Archer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OLL1YGO8ZzY", - "title": "Limahl - Never Ending Story (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kXaKroziqzM", - "title": "Panic! At The Disco - Girls / Girls / Boys (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-5-Gxfuie4A", - "title": "Alan Walker, K-391 and Emelie Hollow - Lily (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xxguzGJQMY0", - "title": "Gaten Matarazzo, Gabriella Pizzolo - The NeverEnding Story (Karaoke Version) from \"Stranger Things\"", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WbIpVLsCWQ4", - "title": "Ed Sheeran ft. Ella Mai - Put It All On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eC--YZUafss", - "title": "Freya Ridings - Castles (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5jFHyzQA7yY", - "title": "Katy Perry - Not Like The Movies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ARBJv24WtHs", - "title": "Alesso, TINI - Sad Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xYVlHJx2F5o", - "title": "Billie Eilish - my boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P1lZyb3ooh8", - "title": "P!nk ft Wrabel - 90 Days (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m-Yy4RAC8Kg", - "title": "Machine Gun Kelly, YUNGBLUD, Travis Barker - I Think I'm OKAY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CyTdO8B3xNc", - "title": "Beyoncรฉ - Spirit from Disney's \"The Lion King\" (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uTkswjK1CiA", - "title": "Billie Eilish - party favor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QdSsCcRFfw8", - "title": "Naomi Scott - Speechless (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M8Bh3kacMAA", - "title": "Post Malone ft. Young Thug - Goodbyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ld2_DnYJiGg", - "title": "Ed Sheeran ft. YEBBA - Best Part Of Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kHPI6562b7Q", - "title": "Aladdin - Friend Like Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "orCaFpnXIVk", - "title": "Alessia Cara - Out Of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YFVKrqLHPzo", - "title": "BTS - Lights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9hr0BVlqo94", - "title": "George Michael - Freedom! '90 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IPTrk6ZHHoY", - "title": "Zara Larsson - Don't Worry Bout Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lZ9ZUrgMnOA", - "title": "Carly Rae Jepsen - Too Much (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "coeEwriNEdw", - "title": "Lana Del Rey - Doin' Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zyn8ft1jBT4", - "title": "Billie Eilish, Vince Staples - &burn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "olNGLHKj9_c", - "title": "Jonas Blue ft. Theresa Rex - What I Like About You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5i_6Klkekak", - "title": "Little Mix - Bounce Back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZPfvjEkbb4w", - "title": "Billie Eilish - watch (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F7SxTlAuv5Q", - "title": "Ashley O - On A Roll (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x5r0cYNU9No", - "title": "Shawn Mendes, Camila Cabello - Seรฑorita (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dDHBbzdes8k", - "title": "Ed Sheeran feat. Khalid - Beautiful People (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E60j9v-ODLQ", - "title": "Zedd, Maren Morris, Grey - The Middle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wYScPDqj7dU", - "title": "Billie Eilish - COPYCAT (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Obsplk2Oxzc", - "title": "Freddie Mercury - Time Waits For No One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AImB9oMjumc", - "title": "Spice Girls - 2 Become 1 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "k1p3Brnvk3s", - "title": "BTS, Zara Larsson - A Brand New Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kC8jBnooHgs", - "title": "Shawn Mendes, Camila Cabello - Seรฑorita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "siQH7qA7zvg", - "title": "Miley Cyrus - Mother's Daughter (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7BS4cavay2I", - "title": "mxmtoon - Prom Dress (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0HXlJO2bb-s", - "title": "Katy Perry - Never Really Over (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q5zz2QhThmE", - "title": "The Greatest Showman - Rewrite The Stars (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F7TUimZrlGQ", - "title": "Demi Lovato ft. Cher Lloyd - Really Don't Care (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n24s-klOW0c", - "title": "Cher - Believe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2Qq0hEUmnRY", - "title": "Katy Perry - I Kissed A Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BTDPZQGqjY8", - "title": "Spice Girls - Wannabe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A3wF9EMTNvM", - "title": "Taylor Dayne - Tell It To My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-Fg7m1ZqkxI", - "title": "Cyndi Lauper - Girls Just Want To Have Fun (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dKXbO31RmiU", - "title": "Charli XCX ft. Lizzo - Blame It On Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NAwua29GOi0", - "title": "BTS, Charli XCX - Dream Glow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LQLxMTKJux0", - "title": "Cyndi Lauper - True Colors (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "to-S78ftZHI", - "title": "Taylor Swift - You Need To Calm Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TK57e-i_v0c", - "title": "Clean Bandit feat. Ellie Goulding - Mama (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SAwx-A0snUQ", - "title": "Diana Ross - I'm Coming Out (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NatvhO5ihAk", - "title": "Lady Gaga - Born This Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "prgoLEZTit0", - "title": "Britney Spears - Toxic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4Dn9d9Shqsg", - "title": "Lizzo - Truth Hurts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "187jnOhMOOU", - "title": "James Arthur - Falling Like The Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EgU_KyzoMZg", - "title": "Lauren Daigle - You Say (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BdDEhk3RP3I", - "title": "Ed Sheeran - Cross Me feat. Chance The Rapper & PnB Rock (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_TwLBSeIlkM", - "title": "Sabrina Carpenter - Exhale (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QHnY2RlUDAc", - "title": "5 Seconds Of Summer - Easier (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ujm3LnNqVvE", - "title": "ZAYN, Zhavia Ward - A Whole New World (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "48JZWH3C9Qc", - "title": "Why Don't We - Unbelievable (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GjHYNA1-W3A", - "title": "Ruel - Painkiller (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C07BcreJMsY", - "title": "Madison Beer - Dear Society (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4hwpLK7CWVM", - "title": "Mena Massoud, Naomi Scott - A Whole New World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l4vicxPeA3c", - "title": "Billie Eilish - i love you (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rGTHC4I_JPk", - "title": "Queen - Love Of My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wqE5j1TQWVs", - "title": "Naomi Scott - Speechless (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gXZgFNFzhls", - "title": "Clairo - Pretty Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DeSk10qUEiQ", - "title": "Lil Dicky - Earth (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O61upKFDL9I", - "title": "The Greatest Showman - Never Enough (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DKTs8sLLdc0", - "title": "Queen - Radio Ga Ga (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Aqf3pV6Vb8s", - "title": "Ellie Goulding - Sixteen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-DR5vxR78qI", - "title": "Billie Eilish - WHEN WE ALL FALL ASLEEP, WHERE DO WE GO? (Full Album Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jQe37boEHkQ", - "title": "Taylor Swift - Love Story (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PTmcRmDyJlY", - "title": "Billie Eilish - i love you (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7WTHUMRkPDI", - "title": "HRVY - Told You So (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OfwnWaFP_bc", - "title": "ZAYN, Zhavia Ward - A Whole New World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vn4yQJGyUfw", - "title": "Ariana Grande - make up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cpZyeJ5ZiWY", - "title": "Lil Baby, GUNNA - Close Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6iHo98p2RDc", - "title": "Halsey - Nightmare (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gWBEtVoX3K0", - "title": "The Chainsmokers - Do You Mean ft. Ty Dolla $ign, bรผlow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n3RvVXmUtik", - "title": "Billie Eilish - goodbye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z-uz8d2Tif4", - "title": "Kehlani ft. Ty Dolla $ign - Nights Like This (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5CZUSpswwxA", - "title": "Taylor Swift ft. Brendon Urie - ME! (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0QV7xFZ508c", - "title": "Lewis Capaldi - Hold Me While You Wait (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vwPkRY3qUkU", - "title": "Kina ft. Snรธw - Get You The Moon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kaUNP9xhtJ8", - "title": "Ed Sheeran & Justin Bieber - I Don't Care (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "keoUdoKu8Is", - "title": "Queen - Killer Queen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yAxabkR8-9s", - "title": "Ellie Goulding, Diplo, Swae Lee - Close To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9Lxm0iSnKNc", - "title": "Queen - Bohemian Rhapsody (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gSLONLzgUOs", - "title": "Ed Sheeran & Justin Bieber - I Don't Care (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iS6UtPjMNLE", - "title": "ROSALรA & J Balvin - Con Altura ft. El Guincho (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kFD2IRBG35c", - "title": "Queen & David Bowie - Under Pressure (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rNokzhUPfNY", - "title": "Billie Eilish - 8 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dqIil7XK3V4", - "title": "Queen - Somebody To Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fmtAusg2mls", - "title": "Troye Sivan - Lucky Strike (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G962z-4OL9E", - "title": "Queen - Don't Stop Me Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7Cx45KVpIBo", - "title": "Shawn Mendes - If I Can't Have You (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KUiPFviDAvg", - "title": "Queen - We Are The Champions (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IrFEjSQ0EcM", - "title": "Shawn Mendes ft. Khalid - Youth (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j8Mkv84V9mY", - "title": "Queen - We Will Rock You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8LKF6FtZvXA", - "title": "Shawn Mendes - If I Can't Have You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y_IIuMX0rHA", - "title": "Queen - I Want To Break Free (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QMQl1LyzcAE", - "title": "Christina Perri - A Thousand Years (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ACU42cnaRJE", - "title": "James Arthur - Empty Space (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jcqeBw--leM", - "title": "Why Don't We - Don't Change (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u-3kXgZQEBU", - "title": "Marshmello - Rooftops (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KOLgMOMvKo0", - "title": "Tori Kelly - Change Your Mind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x26kByG_Tf8", - "title": "Maggie Rogers - Light On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BMJkyKSlm3o", - "title": "Billie Eilish - my strange addiction (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HIGAhperWjc", - "title": "Little Mix ft. Ty Dolla $ign - Think About Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GHatumpuigc", - "title": "Julia Michaels ft. Niall Horan - What A Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9hguoJLNobQ", - "title": "Jonas Brothers - Cool (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZKArR5KM5mc", - "title": "Panic! At The Disco - Dancing's Not A Crime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J10X301khwY", - "title": "Cรฉline Dion - My Heart Will Go On (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CnQ1yJhRkxw", - "title": "Billie Eilish - ilomilo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3-fK1AmIDcI", - "title": "Billie Eilish - xanny (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-gs_SZM2lRk", - "title": "blackbear - do re mi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oCkoEMDryqA", - "title": "The Chainsmokers - Kills You Slowly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R5Fq8T_s7i8", - "title": "Taylor Swift feat. Brendon Urie - ME! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gVP5u4GnZqo", - "title": "Marshmello ft. CHVRCHES - Here With Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "axfrEvfXrFI", - "title": "Little Mix ft. Nicki Minaj - Woman Like Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZkNf0YMvdqQ", - "title": "BTS () - Boy With Luv ( ) feat. Halsey (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2Mj3n7e2_7E", - "title": "Ariana Grande and Victoria Monรฉt - MONOPOLY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "npyFEBYgJno", - "title": "Billie Eilish - listen before i go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aXS-2bHw4VU", - "title": "The Greatest Showman - A Million Dreams (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YoWJa7GWzk4", - "title": "BLACKPINK - Kill This Love (Karaoke version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qV-JFrzrzws", - "title": "Why Don't We & Macklemore - I Don't Belong In This Club (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EnBpKvUuMHc", - "title": "LSD - Thunderclouds ft. Labrinth, Sia, Diplo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dl1JLjeAkMk", - "title": "David Guetta ft. Anne Marie - Don't Leave Me Alone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "omsisiPresM", - "title": "Dean Lewis - Be Alright (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PH5dzxD7i3U", - "title": "Billie Eilish - all the good girls go to hell (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wvwCi09Q4kk", - "title": "twenty one pilots - Chlorine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wo9IUjs1UfY", - "title": "Juice WRLD - Robbery (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z1tANMFU1i4", - "title": "Post Malone - I Fall Apart (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JhipPliGz-E", - "title": "Bahari - Savage (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S5PtzYrNGaU", - "title": "Khalid - Better (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "71yhIc5cz2k", - "title": "Bebe Rexha - Last Hurrah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9oNDMiyLm4U", - "title": "Alan Walker, Sabrina Carpenter & Farruko - On My Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DoUR6zpG7fE", - "title": "Ariana Grande - thank u, next (Full Album Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GsFlbMS7UIc", - "title": "Billie Eilish - bad guy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2drs07dhS7Y", - "title": "5 Seconds Of Summer - Youngblood (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "exPFJVbIz0c", - "title": "Lil Nas X ft. Billy Ray Cyrus - Old Town Road (Remix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nveMe31V9TQ", - "title": "Ariana Grande - fake smile (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BFsCLt47RSc", - "title": "Ariana Grande - bloodline (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RgIqSc_orts", - "title": "Ariana Grande - in my head (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CGXeSUtbhFk", - "title": "Billie Eilish - lovely (with Khalid) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PD5sXfNFwhw", - "title": "Lady Gaga, Bradley Cooper - Shallow (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q1D2v5xpgV0", - "title": "Iggy Azalea - Sally Walker (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5USk-UoZb74", - "title": "The Chainsmokers ft. 5 Seconds Of Summer - Who Do You Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9QvqYILRi_w", - "title": "Ariana Grande - ghostin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jiFRw8RRpw8", - "title": "Rita Ora - Only Want You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aw-agjuoyVg", - "title": "Ariana Grande - bad idea (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mUsL_F_jBOE", - "title": "Jason Mraz & Meghan Trainor - More Than Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ykLGJ1pUjjs", - "title": "Ariana Grande - needy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7z3HtSSFwf0", - "title": "Juice WRLD - Hear Me Calling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xa17TPwdWZ0", - "title": "Ava Max - So Am I (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_iummmt0xZg", - "title": "Christina Perri - you mean the whole wide world to me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IL1eJdDub9w", - "title": "Why Don't We - BIG PLANS (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TUu5K9LzGOw", - "title": "5 Seconds Of Summer ft. Julia Michaels - Lie To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0H3KpRuwBZ8", - "title": "Lewis Capaldi - Someone You Loved (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lE7thk4N1HM", - "title": "Khalid - Talk (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xsYWYvCJAbs", - "title": "The Greatest Showman - The Other Side (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n6lpeCuGWPs", - "title": "The Greatest Showman - Tightrope (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mayU6Gqpg9Y", - "title": "The Greatest Showman - Rewrite The Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "35jPapexMjk", - "title": "The Greatest Showman - The Greatest Show (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hIHAHHXAoXk", - "title": "The Greatest Showman - From Now On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V59psMbygfI", - "title": "The Greatest Showman - This Is Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O1CB--Snlnw", - "title": "The Greatest Showman - Come Alive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3f2X_gIJ_u4", - "title": "The Greatest Showman - A Million Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0nxmS92MiSM", - "title": "The Greatest Showman - Never Enough (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rij3vlUcxYU", - "title": "The Greatest Showman - Full Soundtrack (Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AaWHi26Tsys", - "title": "Charli XCX, Troye Sivan - 1999 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "obHaUU2ARsA", - "title": "Cheat Codes, Little Mix - Only You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RBGUINaCLtA", - "title": "HRVY - I Wish You Were Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nJRLaEwIKMU", - "title": "Jeff Buckley - Hallelujah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iH277oxWrbc", - "title": "Ruth B - Slow Fade (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vxCU_EToDeE", - "title": "Sigala ft. Ella Eyre, Meghan Trainor, French Montana - Just Got Paid (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c8wn2fMYvns", - "title": "Journey - Don't Stop Believin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mY00uFz5bTA", - "title": "Justin Bieber - Love Yourself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DfaoHJFVG0k", - "title": "Louis Tomlinson - Two Of Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oSRYZ29SoYM", - "title": "Sam Smith, Normani - Dancing With A Stranger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xZCLLVYq3O8", - "title": "Jonas Brothers - Sucker (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jrwl2MNeEbw", - "title": "benny blanco, Tainy, Selena Gomez, J Balvin - I Can't Get Enough (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IOzAmILqFkI", - "title": "Billie Eilish - wish you were gay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FypxFmetLxI", - "title": "Blueface ft. Cardi B - Thotiana Remix (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wh0wBurqWjQ", - "title": "benny blanco & Juice WRLD ft. Brendon Urie - Roses (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DtTFu9qgX38", - "title": "Post Malone - Better Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b1xiezhCNJo", - "title": "Drake - God's Plan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x52q2H9LTT8", - "title": "Fall Out Boy - Thnks fr the Mmrs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6reOzil6yKc", - "title": "Mr. Probz - Praying To A God (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "awIle6Q5M_I", - "title": "Lady Gaga - Look What I Found (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8QlnpQJ5GNQ", - "title": "Sabrina Carpenter - Paris (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QjVLFKOLsEs", - "title": "Kacey Musgraves - Rainbow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OHnC1RAeyco", - "title": "Ariana Grande - NASA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E0id9kAMS4k", - "title": "Dan + Shay - Tequila (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9_gx45yPxMs", - "title": "Jess Glynne - Thursday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ebgYlvQ7Jm0", - "title": "Drake - I'm Upset (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8sOVr-t-IGY", - "title": "Julia Michaels ft. Selena Gomez - Anxiety (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Jr6MwretpMQ", - "title": "Little Mix - Joan Of Arc (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aT9Nb3I49oY", - "title": "Ed Sheeran - Happier (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lBwXEZte1S4", - "title": "benny blanco, Halsey & Khalid - Eastside (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "56j3RJOZM3M", - "title": "Shawn Mendes - Where Were You In The Morning? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mj9i9OqfHSA", - "title": "Anne-Marie - Perfect To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z6X7YdaE8Fc", - "title": "Dua Lipa - Swan Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9YsT_qIziDI", - "title": "Sheck Wes - Mo Bamba (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YJKiF31Keig", - "title": "Post Malone - Wow. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Dc7L5ZzlrCc", - "title": "Panic! At The Disco - High Hopes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CXMpSe6Gkog", - "title": "Khalid - Saturday Nights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7VsqlrZ94c8", - "title": "Flipp Dinero - Leave Me Alone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zveY65HC9vU", - "title": "Rita Ora - Let You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aZ0aqG_8X7Q", - "title": "Imagine Dragons - Zero (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_ETGf6r1zJU", - "title": "Kygo, Imagine Dragons - Born To Be Yours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LK2QEkvTRBg", - "title": "Ella Mai - Shot Clock (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YrG4QM7lans", - "title": "Taylor Swift ft. Ed Sheeran, Future - End Game (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MGf7KlgMTkE", - "title": "Taylor Swift - Delicate (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2-qAlxGg3iQ", - "title": "Bazzi ft. Camila Cabello - Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tXORQ0QV29Q", - "title": "The Chainsmokers ft. Kelsea Ballerini - This Feeling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sHSYs_pojQs", - "title": "Billie Eilish - bury a friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lOx30dknDos", - "title": "Lady Gaga - I'll Never Love Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XclsUVJNv40", - "title": "Ariana Grande - break up with your girlfriend, i'm bored (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rYNbmf-z8tg", - "title": "Zedd, Katy Perry - 365 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tWoaa4vNI8M", - "title": "Lady Gaga - Is That Alright? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9sVKwwSvvLw", - "title": "Lady Gaga - Always Remember Us This Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S0tJ2Scp994", - "title": "Post Malone ft. Ty Dolla $ign - Psycho (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9XfUZfamK9M", - "title": "Jonas Blue, Liam Payne, Lennon Stella - Polaroid (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ev30RsVnQUs", - "title": "Mark Ronson ft . Miley Cyrus - Nothing Breaks Like A Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xb3oMef3hnc", - "title": "Anne Marie - 2002 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IhGn__Prgrs", - "title": "Christina Perri - A Thousand Years (Lullaby) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jTDI5kF3Pco", - "title": "Calvin Harris, Dua Lipa - One Kiss (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6ela2HnWEBk", - "title": "Marshmello, Anne Marie - FRIENDS (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aNknycqtsxA", - "title": "Maroon 5 ft. Cardi B - Girls Like You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "awxvtj-0JKw", - "title": "Post Malone, Swae Lee - Sunflower (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_QC9OSgbmC8", - "title": "Halsey - Without Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_nHT_k9Rswc", - "title": "Lady Gaga, Bradley Cooper - Shallow (A Star Is Born) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UK1jmU_JBXs", - "title": "Billie Eilish - when the party's over (Piano Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XFYP1c1eVKc", - "title": "Ariana Grande - ghostin (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GIuAye8u_v8", - "title": "Ariana Grande - 7 rings (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O2UI4Ii_hzw", - "title": "HRVY - I Don't Think About You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wc4Twxdk44s", - "title": "Billie Eilish - WHEN I WAS OLDER (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6r1zF7QAeqk", - "title": "James Smith - Tell Me That You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7BfhCUB_YkI", - "title": "Ariana Grande - 7 Rings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rqF-W9QBHUQ", - "title": "Billie Eilish - Ocean Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1oXomadSN84", - "title": "GAWVI ft. Lecrae - Fight For Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l53Oe7VmgLc", - "title": "6ix9ine ft. Kanye West & Nicki Minaj - MAMA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b0Quu5Q4Ct8", - "title": "Ariana Grande - thank u, next (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OnRkEVVCTpw", - "title": "David Guetta ft. Justin Bieber - 2U (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-XRt9aEwAy0", - "title": "Dove Cameron - If Only (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i_dKD0ZqBjI", - "title": "Gabrielle Aplin - My Mistake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SHQBizSKGTE", - "title": "Gesaffelstein & The Weeknd - Lost In The Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NjOEDHmWWDM", - "title": "Demi Lovato - You Don't Do It For Me Anymore (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jA-hpo0nMkY", - "title": "Ariana Grande - One Last Time (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zoa3xOECvqI", - "title": "Charlie Puth - Attention (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AkoD5VU55tg", - "title": "Charlie Puth - How Long (Piano Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CROH2DvcybY", - "title": "lovelytheband - broken (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AJcz7PRb7cU", - "title": "Nicki Minaj ft. Lil Wayne - Good Form (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DKN8sskhsrk", - "title": "Ava Max - Sweet But Psycho (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GakCnD5pzNM", - "title": "Billie Eilish - bellyache (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_7BRdJUH5BQ", - "title": "Ariana Grande - imagine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yAhsPDvn3uI", - "title": "The 1975 - Sincerity Is Scary (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Y9dOjrJrfQA", - "title": "Billie Eilish - come out and play (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-uGM1toblIE", - "title": "Natti Natasha - Me Gusta (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qW_ROk9oxn8", - "title": "6ix9ine feat. Lil Baby - TIC TOC (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kimHPIZ-8RM", - "title": "NF - If You Want Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7TnXHuETOdQ", - "title": "AJ Mitchell - I Don't Want You Back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Lud19qb3XBM", - "title": "Aitana x Lele Pons - TELร‰FONO (REMIX) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fSVUvFxu0r0", - "title": "Travis Scott ft. Drake - SICKO MODE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2PMLfo08UH4", - "title": "Steve Aoki feat. BTS - Waste It On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oljV6CWOEUQ", - "title": "Juice WRLD - Armed & Dangerous (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0riUTYNEKBs", - "title": "Bhad Bhabie feat. Lil Baby - Geek'd (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sluLx2JlLqw", - "title": "Billie Eilish - when the party's over (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KqrDah9PD_c", - "title": "Ariana Grande - thank u, next (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mn3CrszoeyY", - "title": "XXXTentacion & Lil Pump ft. Maluma & Swae Lee - Arms Around You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z2-8U9XeArs", - "title": "Imagine Dragons - Bad Liar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AcqnT-ci4io", - "title": "NF - Lie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j2mzH2zkV8w", - "title": "Zara Larsson - Ruin My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CsjQ1NDpUbs", - "title": "Bring Me The Horizon feat. Dani Filth - wonderful life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "evwTfduaO50", - "title": "Jess Glynne - All I Am (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M9ZG-Ndcj3Q", - "title": "Calum Scott - No Matter What (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XAozV09dgt0", - "title": "Loud Luxury feat. brando - Body (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XFcBx-m_OR8", - "title": "Ariana Grande - better off (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wfkadIQRqbU", - "title": "Dua Lipa & BLACKPINK - Kiss And Make Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hG2SP2QC8sw", - "title": "Allie X - Sunflower (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1aE6_R10zJA", - "title": "Gabbie Hanna - Monster (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Mw3XBaq90Zs", - "title": "Freya Ridings - Lost Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "69LBAsBcZ-M", - "title": "Lil Peep - Cry Alone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Kcw4iJe90JY", - "title": "Joji - TEST DRIVE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n0-F0tZdq8Y", - "title": "Rudy Mancuso - Lento (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XGO_qLrJbwc", - "title": "Lil Peep & XXXTENTACION - Falling Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "REegNmz42hk", - "title": "Billie Eilish - hostage (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p34WMpAfa6U", - "title": "R3HAB x Sofia Carson - Rumors (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Iu2CKCW9zdc", - "title": "Lil Pump ft. Juice WRLD - Oh Yeah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7rWHtN2sdIg", - "title": "Sia - I'm Still Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TwXS-MW5vi0", - "title": "AJR - Role Models (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zpBRGghNRBI", - "title": "6ix9ine, Nicki Minaj, Murda Beatz - FEFE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rjRPAKBHFTI", - "title": "LANY - If You See Her (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yXROo8kB1Qk", - "title": "Joji - SLOW DANCING IN THE DARK (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XDwWdQiFiVc", - "title": "Juice WRLD - All Girls Are The Same (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3Kfgd1b7fmA", - "title": "Lauv, Julia Michaels - There's No Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TEKmWUrcEdU", - "title": "Shannon Purser - Sunflower (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7yAlBDgU1z8", - "title": "Ella Mai x Chris Brown - Whatchamacallit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kb1SHbvIe-A", - "title": "Jason Derulo x David Guetta ft. Nicki Minaj - Goodbye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XLCfV73zW_Q", - "title": "Silk City, Dua Lipa - Electricity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f-Ug1J1dC-Q", - "title": "No Rome ft. The 1975 - Narcissist (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7efCH-o6J0s", - "title": "Ella Mai - Trip (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8cE3XUX6F20", - "title": "Sigrid - SUCKER PUNCH (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pOnx3VJteCA", - "title": "XXXTentacion - Moonlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RWhh72skBKk", - "title": "dodie - Human (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qtOaQH1eEIQ", - "title": "CHVRCHES ft. Matt Berninger - My Enemy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7uRkzMJLpAg", - "title": "KSI - On Point (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b48aAThhrMs", - "title": "Noah Cyrus, Lil Xan - Live Or Die (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6sm-VkbvOng", - "title": "Lele Pons - Celoso (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ao2xsnwJpIo", - "title": "Lukas Graham - Love Someone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s4rqxsx1-7k", - "title": "Marshmello x Juicy J ft. James Arthur - You Can Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "70QfofcVzqs", - "title": "Kanye West & Lil Pump ft. Adele Givens - I Love It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6unN3qLF098", - "title": "Why Don't We - 8 Letters (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cNqlovKgatw", - "title": "Marshmello ft. Bastille - Happier (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hShN1gAhrz8", - "title": "Ariana Grande - everytime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9uuUKgHCGnA", - "title": "Nicki Minaj - Ganja Burn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wrecpS2UnFE", - "title": "Noah Cyrus, Gallant - Mad At You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "naZyZzr1Emc", - "title": "twenty one pilots - My Blood (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Klx1VeZFa5g", - "title": "LANY - I Don't Wanna Love You Anymore (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I0Qqf6Pf5L4", - "title": "Childish Gambino - Feels Like Summer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_5EtmQh5K1k", - "title": "twenty one pilots - Jumpsuit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pO7SYKu8mSw", - "title": "The 1975 - TOOTIMETOOTIMETOOTIME (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DAGZIVaDSEw", - "title": "Ariana Grande - breathin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a-d9H0yCMJc", - "title": "Ella Mai - Boo'd Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6hmzFslVd6U", - "title": "Meghan Trainor - No Excuses (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ljf3RDTAM4s", - "title": "ABBA - My Love, My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n4yhmONZimc", - "title": "ABBA - I Have A Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hbBLNvbldTE", - "title": "Logic - Contra (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kRGBd32qIjg", - "title": "The 1975 - Love It If We Made It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aQHjf2rrnZ8", - "title": "DJ Khaled ft. Justin Bieber, Chance The Rapper, Quavo - No Brainer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QAw2A7jCI50", - "title": "ABBA - Super Trouper (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l0ZDMjoOtD8", - "title": "Maddie Poppe - Going Going Gone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Vd_WTH_ZpJg", - "title": "twenty one pilots - Nico And The Niners (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U399h9BI06g", - "title": "Martin Garrix ft. Bonn - High On Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_HNMX3dr8_U", - "title": "Panic! At The Disco - Hey Look Ma, I Made It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EWIDQSEus5k", - "title": "Juice WRLD ft. Lil Uzi Vert - Wasted (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ou--0XxxPdU", - "title": "Tiรซsto & Dzeko ft. Preme & Post Malone - Jackie Chan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ztlumMoFC_w", - "title": "Billie Eilish - You Should See Me In A Crown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Lq0eJeDkzgg", - "title": "Bebe Rexha - Knees (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mqCv2Ee1iaw", - "title": "Selena Gomez - Kill Em With Kindness (Acoustic) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nt484LGuiPA", - "title": "Juice WRLD - Lucid Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q8T4s1-G0rk", - "title": "ABBA - Knowing Me, Knowing You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1b1HEVaWV14", - "title": "Juice WRLD - Legends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v-wsbOhnFuE", - "title": "ABBA - The Name Of The Game (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6xT5f8UIryc", - "title": "Jhenรฉ Aiko ft. Rae Sremmurd - Sativa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fRebxq1PoNY", - "title": "joji - Head In The Clouds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CAxnAR-xu50", - "title": "Tessa Violet - Crush (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oDLsL0K9fXQ", - "title": "Magic! - Kiss Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Jm4skE4VNh4", - "title": "Nicki Minaj ft. Ariana Grande - Bed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wuhbuzGqBYQ", - "title": "Ariana Grande - God Is A Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ecUzyzfs3U4", - "title": "Jonas Blue ft. Joe Jonas - I See Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NWDX0MiwPQU", - "title": "Against The Current - Strangers Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mv9ZQFIsplc", - "title": "Charlie Puth - The Way I Am (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1UIGgaw2gTY", - "title": "Shawn Mendes - In My Blood (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0kHB3e5AUcs", - "title": "Demi Lovato - Sober (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KouUW7pjVKA", - "title": "gnash - imagine if (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QHbG_t6PFfI", - "title": "NF - Why (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wSAxXKkvCTc", - "title": "Alessia Cara - Growing Pains (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wd87finzlo0", - "title": "Fifth Harmony - Don't Say You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4v9M983S8GM", - "title": "BIG SHAQ - MAN DON'T DANCE (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PybzNKo_T-0", - "title": "Nicki Minaj - Chun-Li (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E9xYFGAN3Mk", - "title": "Backstreet Boys - Don't Go Breaking My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U3MY_ffvLo4", - "title": "Bebe Rexha - I'm A Mess (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pQZiJQDUhVs", - "title": "Julia Michaels ft. Trippie Redd - Jump (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-t93cQsVifE", - "title": "Selena Gomez - Back To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lusIsUUD_GE", - "title": "The 1975 - Give Yourself A Try (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j1kepXCOu10", - "title": "ZAYN - Entertainer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-LL-FEEGoEk", - "title": "SZA - Garden (Say It Like Dat) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "noI9Rbb3uhw", - "title": "Kacey Musgraves - Space Cowboy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BHGqphQnFL8", - "title": "Why Don't We - Hooked (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dnDl1hjM6AI", - "title": "Noah Cyrus, Tanner Alexander - Lately (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aPHU3G9IKpk", - "title": "Hayley Kiyoko ft. Kehlani - What I Need (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0Vvf0X7YYE0", - "title": "Sabrina Carpenter - Almost Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VBfyBW3q_4A", - "title": "John Legend, BloodPopยฎ - A Good Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DVeGn_JLwcE", - "title": "James Bay - Wild Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3Xc3eLkGWsw", - "title": "Maren Morris - Rich (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3jL7g3nx0cs", - "title": "Lil Pump - ESSKEETIT (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9F-gGNoVpTc", - "title": "Bebe Rexha - Ferrari (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oAHBQ55tQAw", - "title": "Shawn Mendes - Nervous (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IS8e94ycnC8", - "title": "Jess Glynne - I'll Be There (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CYHSlM19CiU", - "title": "Poo Bear ft. Zara Larsson - Either (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6uoMg0fdBzY", - "title": "Nicki Minaj - Barbie Tingz (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yLiUuKr87cs", - "title": "Kim Petras - Heart To Break (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l8dPB6D1DV4", - "title": "Kacey Musgraves - High Horse (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5r7uxdWzyCY", - "title": "Louisa ft. 2 Chainz - YES (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cZAarc9NRxA", - "title": "Sigala ft. Paloma Faith - Lullaby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4YsCpXeyqnU", - "title": "Ramz - Barking (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MZY0x2w_tsY", - "title": "XXXTENTACION - Jocelyn Flores (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tzN0Yc0ksSo", - "title": "The Vamps - Hair Too Long (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8D48fQ1QVps", - "title": "Cรฉline Dion - Ashes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tlnjFe88etw", - "title": "Charlie Puth - BOY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1cGYpyEFgMQ", - "title": "Incubus - No Fun (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N4WkcAAJQi4", - "title": "Charlie Puth - Kiss Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8udZiDjxua0", - "title": "RaeLynn - Queens Don't (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q_UMLX3AWGY", - "title": "DJ Khaled ft. Demi Lovato - I Believe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qfmxYHMWjwQ", - "title": "XXXTENTACION - Changes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PSYn6Y1B3KY", - "title": "Ariana Grande - No Tears Left To Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3Ae57OHI4Gs", - "title": "KYLE ft. Kehlani - Playinwitme (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sBrdDLQ-X8I", - "title": "Milo Manheim, Meg Donnelly - Someday (Ballad) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gWVI5as34wU", - "title": "Jason Derulo - Colors (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qavWosX8Qgw", - "title": "Years & Years - Sanctify (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V_nHLVkduQo", - "title": "Calum Scott - What I Miss Most (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S3yTwGOOhmk", - "title": "Panic! At The Disco - This Is Gospel (Piano) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w7pspRVaej0", - "title": "YoungBoy Never Broke Again - Diamond Teeth Samurai (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1gRQKAivLns", - "title": "ABBA - Chiquitita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P1UBspLSWvU", - "title": "Panic! At The Disco - Say Amen (Saturday Night) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T5ScMCvBGss", - "title": "TINI, Karol G - Princesa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vRQMsrd4ZAw", - "title": "Billie Eilish - bitches broken hearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T123rkm7x60", - "title": "Amy Shark - Sink In (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rMJ1z5wWGSc", - "title": "Janelle Monรกe - Make Me Feel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UmEFwcj1wlY", - "title": "Diplo ft. Mร˜ - Get It Right (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZUQ9xNWNSzk", - "title": "X Ambassadors - Don't Stay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UzP_Fqbdry0", - "title": "Milo Manheim, Meg Donnelly - Someday (from \"ZOMBIES\") (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zDug9jMBf7E", - "title": "Breaking Benjamin - Blood (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bWPM34_JYcg", - "title": "XXXTENTACION - SAD! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xAA751IOyts", - "title": "Pale Waves - The Tide (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RzQ3esPuewY", - "title": "Noah Cyrus ft. Mร˜ - We Are... (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SgxICAYsYDs", - "title": "ABBA - Take A Chance On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-mG2Nr-Bg7U", - "title": "AJR - Come Hang Out (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h1kScjF479Q", - "title": "Marshmello & Logic - EVERYDAY (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I6DTvp194lg", - "title": "Charlie Puth ft. Kehlani - Done For Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5Dyi8kHw9-k", - "title": "Kelly Clarkson - I Don't Think About You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ec4vC2QnLwc", - "title": "nothing,nowhere. - hammer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z8B6_PFXDEA", - "title": "Ansel Elgort - Supernova (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pkleV8mlxwg", - "title": "Vance Joy - Call If You Need Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zp1KkQMiPt0", - "title": "NF - Let You Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wphW2H4ucg4", - "title": "ABBA - Waterloo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o86W4LqI_Vo", - "title": "Hailee Steinfeld, BloodPopยฎ - Capital Letters (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UrFasuSeBPg", - "title": "Samantha Harvey - Please (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WHayJZ3eMcE", - "title": "ABBA - Dancing Queen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q9W6Sbph_Z8", - "title": "Jason Aldean - You Make It Easy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pUtYAy1oVuM", - "title": "Lauv - Getting Over You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t-7L_AS5dxI", - "title": "Maggie Lindemann - Obsessed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZziQWyu_XSU", - "title": "Mashmello x Lil Peep - Spotlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EhLHj9BG5Ik", - "title": "Madison Beer - Fools (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EwBLyovTp-I", - "title": "Lil Uzi Vert - XO Tour Llif3 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NvrQEgIKi4A", - "title": "Dua Lipa - IDGAF (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F3mc9sDZTO8", - "title": "George Michael - I Can't Make You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1kLKbljlFM4", - "title": "Steve Aoki x Lauren Jauregui - All Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oEKyXKL25FU", - "title": "One Bit, Noah Cyrus - My Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wg6wl4nOiBE", - "title": "Rita Ora - Anywhere (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UyJzRKIhlBM", - "title": "Alex Aiono, T-Pain - One At A Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YrL49-3IBGU", - "title": "Maroon 5 - Wait (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mGGnD-E5Cv0", - "title": "Camila Cabello - Consequences (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "k0QalR34P60", - "title": "dodie - party tattoos (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NWSuaJwUzq8", - "title": "Madison Beer - Dead (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bOu5SNbGW8U", - "title": "Cashmere Cat, Major Lazer & Tory Lanez - Miss You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Yg691Hwao8Q", - "title": "SZA - The Weekend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CWnOzzcUuqQ", - "title": "Bhad Bhabie - I Got It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a5TvedGBijM", - "title": "Camila Cabello - Something's Gotta Give (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oHKkwyl71pY", - "title": "Hayley Kiyoko - Curious (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K02eq35Y02A", - "title": "Chloe x Halle - Grown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CzEZ9xmnNLw", - "title": "Poppy - Bleach Blonde Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OYINqt1ehqM", - "title": "Kendrick Lamar, SZA - All The Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DUWfL7U-StI", - "title": "Billie Eilish - idontwannabeyouanymore (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8UqkODFW-os", - "title": "Lil Pump - Designer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d-y2PfMoUec", - "title": "G-Eazy & Halsey - Him & I (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dnQRUl1P6-s", - "title": "HRVY - Personal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GxtFwKKSmT0", - "title": "Migos ft. 2 Chainz - Deadz (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Kd1oCn0MPLY", - "title": "Martin Garrix & David Guetta - So Far Away (ft. Jamie Scott & Romy Dya) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9UyVKwvOxaY", - "title": "Anne-Marie - Then (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "622jnDi1swc", - "title": "Baby Ariel - Aww (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-cS2mcNnQfY", - "title": "Bebe Rexha ft. Florida Georgia Line - Meant To Be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hE_xtfC592w", - "title": "Grace VanderWaal - So Much More Than This (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O6EhpqFNy_U", - "title": "Camila Cabello - Never Be The Same (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_FhkZYVVrhA", - "title": "P!nk - Beautiful Trauma (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B3bLng2uKAI", - "title": "Migos & Marshmello - Danger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eJZ5QHJPQz8", - "title": "Camila Cabello - Real Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XRn8IBDAnkc", - "title": "Kygo ft. OneRepublic - Stranger Things (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9OCSivFvkL4", - "title": "Mabel - Finders Keepers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sj5qjGmGfcU", - "title": "Anne-Marie - Heavy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wTaWuCk89dg", - "title": "Louis Tomlinson - Miss You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zg06YxALGVw", - "title": "Luis Fonsi, Demi Lovato - Echamรฉ La Culpa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Pfxq1_j23gI", - "title": "Sam Smith - One Last Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zMcfZyb5wCo", - "title": "Calum Scott - You Are The Reason (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ufX7yqEfv70", - "title": "Portugal. The Man - Feel It Still (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a9or0V72vyQ", - "title": "Fall Out Boy - HOLD ME TIGHT OR DON'T (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8dJTrL1SCqM", - "title": "Jason Derulo - If I'm Lucky (Part 1) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4LT_132jJoY", - "title": "BTS ft. Desiigner - MIC Drop (Steve Aoki Remix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Yy8_0pD6Fj0", - "title": "Alan Walker ft. Noah Cyrus - All Falls Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z5V-eI87cW0", - "title": "Niall Horan - Flicker (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z7iaZ_7_IJA", - "title": "Sia - Santa's Coming For Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "axVfg9qI0UU", - "title": "Lil Uzi Vert, Oh Wonder ft. Nicki Minaj - The Way Life Goes (Remix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TaTWOBxwkhA", - "title": "Imagine Dragons - Whatever It Takes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EAamam1pyyQ", - "title": "CNCO - Mamita (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7suNgqRla_Q", - "title": "Halsey - Bad At Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ubnyl4AMk2M", - "title": "Harry Styles - Kiwi (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zelLqyeP7_M", - "title": "Imagine Dragons - Thunder (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6O0RRnCTzhY", - "title": "Louis Tomlinson - Just Like You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ru-hH9B-KPo", - "title": "Clean Bandit ft. Julia Michaels - I Miss You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NH_fxTyZT_Y", - "title": "Taylor Swift - Call It What You Want (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zwIGwnhZmYw", - "title": "Liam Payne - Bedroom Floor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fXr8MtRBczQ", - "title": "Marshmello ft. Khalid - Silence (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MohQxsMc2Es", - "title": "Taylor Swift - Gorgeous (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hwG31U_EAv8", - "title": "Selena Gomez, Marshmello - Wolves (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uqaOdIyEUrA", - "title": "BIQ SHAQ - MANS NOT HOT (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x2BzevUyqhI", - "title": "Lil Pump - \"Gucci Gang\" (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fX4blT-SnLw", - "title": "Maroon 5 ft. SZA - What Lovers Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5-4X6Ck-_0c", - "title": "Grease - You're The One That I Want (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AGdiPC9iKgM", - "title": "Avicii ft. Rita Ora - Lonely Together (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Jd5Rb3BG7zo", - "title": "Ed Sheeran - Bibia Be Ye Ye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XHP9jEIO0mo", - "title": "League of Legends ft. Against The Current - Legends Never Die (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ww5ejsBriBM", - "title": "Machine Gun Kelly - Let You Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vlgK0aHqscQ", - "title": "Fifth Harmony - Angel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4ayExqUfOhU", - "title": "Logan Paul - Outta My Hair (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xGdjxcmlbAc", - "title": "Noah Cyrus ft. XXXTentacion - Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TP7JVS4YPpA", - "title": "Post Malone ft. 21 Savage - Rockstar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Gn8ef47x4w0", - "title": "Sam Smith - Pray (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jzz2RU5hOCc", - "title": "Charlie Puth - How Long (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kSN0AiZiveM", - "title": "Hailee Steinfeld & Alesso (ft. Florida Georgia Line & watt) - Let Me Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1KxWv2WiUIw", - "title": "Jake Paul - THE JAKE PAULERS SONG (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zi2XxyhpRuM", - "title": "Nick Jonas, Anne Marie ft. Mike Posner - Remember I Told You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_-g95MtfenQ", - "title": "Fifth Harmony - He Like That (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pwAyFz9A_Kc", - "title": "CNCO, Little Mix - Reggaetรณn Lento (Remix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kMVE-he0wMw", - "title": "Niall Horan - Too Much To Ask (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FirUcc4mN9M", - "title": "Demi Lovato - You Don't Do It For Me Anymore (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bWhDB28CUHQ", - "title": "Gabbie Hanna - Out Loud (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7FgFtvwcU-o", - "title": "Why Don't We - These Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OYyKnfX1rwk", - "title": "21 Savage - Bank Account (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EfqzDcgux_U", - "title": "Jake Paul ft. Team 10 - It's Everyday Bro (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NvP568DzP5c", - "title": "ZAYN, Sia - Dusk Till Dawn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "szJnuzyu0ng", - "title": "Logic ft. Alessia Cara & Khalid - 1-800-273-8255 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pgDxe8JO_wY", - "title": "Khalid - Location (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m08bnH5G8p8", - "title": "J Balvin, Willy William - Mi Gente (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6YBWfoORoIs", - "title": "Neck Deep - In Bloom (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1g8S-enLQ60", - "title": "Cardi B - Bodak Yellow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IEn49CU7IrA", - "title": "Descendants 2 - Ways To Be Wicked (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yiOHvS4rP5c", - "title": "Sam Smith - Too Good At Goodbyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qF0yc2Ko35I", - "title": "Julia Michaels - Worst In Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AyAW6LzQffA", - "title": "Rachel Platten - Broken Glass (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AyXr1RTColg", - "title": "Snakehips, Anne-Marie ft. Joey Bada$$ - Either Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7_2bv5eN1oA", - "title": "Justin Bieber, BloodPopยฎ - Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dd2nfgicFds", - "title": "Camila Cabello ft. Young Thug - Havana (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3rg_QOVArVI", - "title": "The Chainsmokers - Honest (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AFg3-6Yzo1I", - "title": "P!nk - What About Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6ZwT3v-rZRk", - "title": "Taylor Swift - ...Ready For It? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fRvhoHcOrrE", - "title": "Camila Cabello ft. Quavo - OMG (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cBj9udL0KNk", - "title": "Kesha - Learn To Let Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Rbtq0bHlvmU", - "title": "Taylor Swift - Look What You Made Me Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SQxc3weEzpk", - "title": "Cara Delevingne - I Feel Everything (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QOYHjSK7D2Q", - "title": "Fifth Harmony ft. Gucci Mane - Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "32-e78LIl8M", - "title": "Grace VanderWaal - Moonlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cYAqQC_n-OA", - "title": "Migos - T-Shirt (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gzlOFnf1CMI", - "title": "Charli XCX - Boys (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pMuMs9GmcIk", - "title": "Drake - Signs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nM-4WxGjYW0", - "title": "Louis Tomlinson ft. Bebe Rexha, Digital Farm Animals - Back To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TsEYfkT4eF8", - "title": "Dua Lipa - New Rules (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jHvv2cnXBu4", - "title": "Kendrick Lamar - ELEMENT. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wo2yRe0rVuc", - "title": "The Script - Rain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f8-mGqd2Z6k", - "title": "The Chainsmokers - Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Hqd8SG6NMNo", - "title": "Kesha - Praying (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8e_X3ugkkkY", - "title": "Demi Lovato - Sorry Not Sorry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hELT-kYcugw", - "title": "Lorde - Perfect Places (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RAf5a3V5_W8", - "title": "Sabrina Carpenter - Why (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PiyXW0pBcL0", - "title": "Julia Michaels - Uh Huh (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AmPXE25NxCM", - "title": "French Montana ft. Swae Lee - Unforgettable (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "905cCBm40UM", - "title": "Selena Gomez - Fetish (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KH1Vpx7XZQg", - "title": "Disney Descendants 2 - What's My Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wqi7jYhNh8M", - "title": "Martin Garrix & Dua Lipa - Scared To Be Lonely (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lhh-ajANmcI", - "title": "Lady Gaga - The Edge Of Glory (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8gMkfyrXBsg", - "title": "John Legend - Surefire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0k9ptdxishw", - "title": "The Vamps, Martin Jensen - Middle Of The Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bAnMc7Tkgt4", - "title": "Hailee Steinfeld - Most Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NjTs_oWyJdE", - "title": "Post Malone ft. Quavo - Congratulations (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BhEvk0d0zn4", - "title": "Charli XCX ft. Mร˜ - 3am (Pull Up) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hK5Ku98zXW0", - "title": "Logan Paul ft. Why Don't We - Help Me Help You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dGf12oesrBw", - "title": "Noah Cyrus - I'm Stuck (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "k0ozznP9RcE", - "title": "David Guetta ft. Justin Bieber - 2U (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kntgOSueUZs", - "title": "Katy Perry - Witness (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DHP9Mm4Umlg", - "title": "Halsey ft. Lauren Jauregui - Strangers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M4ZxAIzVJt8", - "title": "Coldplay - Hypnotised (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aV0W-jt6NI8", - "title": "Fall Out Boy - Young And Menace (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Qj90N-DFezk", - "title": "Katy Perry ft. Nicki Minaj - Swish Swish (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ca-PCQ2LMk4", - "title": "Ariana Grande - One Last Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fhT-bf1ws64", - "title": "Selena Gomez - Bad Liar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jQjpf57IQq8", - "title": "Alex Aiono - Question (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MvgCZV3Ceps", - "title": "Halsey - Sorry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nZWWMlEt1iY", - "title": "Halsey - Gasoline (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6SvC0PZ36Xg", - "title": "Jonas Blue ft. William Singe - Mama (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oTW_1OZmXq0", - "title": "Liam Payne ft. Quavo - Strip That Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NO_mDJy0JRg", - "title": "Camila Cabello - Crying In The Club (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ont1JfOY8tA", - "title": "Zara Larsson - Don't Let Me Be Yours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HivnrVR-tbA", - "title": "Camila Cabello - I Have Questions (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hR3ivXi53XM", - "title": "Martin Garrix & Troye Sivan - There For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0yd_pp02_oY", - "title": "Ed Sheeran - Eraser (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "88DkSggcq8s", - "title": "Cheat Codes ft. Demi Lovato - No Promises (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jT7N-6Creso", - "title": "Paramore - Told You So (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V9vY5Unu06k", - "title": "Alan Walker ft. Gavin James - Tired (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8jpENg-mnKo", - "title": "Bebe Rexha ft. Lil Wayne - The Way I Are (Dance With Somebody) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YqibcP7jvpg", - "title": "Harry Styles - Two Ghosts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XsF2eUAfmFE", - "title": "Jax Jones ft. RAYE - You Don't Know Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "odDA2rs-G9M", - "title": "Halsey - Eyes Closed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tIYURcd4WB4", - "title": "Dwayne Johnson - You're Welcome (from \"Moana\") (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3W9XbTGdakA", - "title": "Niall Horan - Slow Hands (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yF7IS5Lw_ws", - "title": "Miley Cyrus - Malibu (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "psQg1L3scRM", - "title": "Katy Perry ft. Migos - Bon Appรฉtit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "muZhBiA2Mks", - "title": "Selena Gomez - Only You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sTvMJOFK_Zo", - "title": "DJ Khaled ft. Justin Bieber, Quavo, Chance The Rapper, Lil Wayne - I'm The One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pdLxI9g_578", - "title": "Lana Del Rey ft. The Weeknd - Lust For Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Fpm77jl9gWE", - "title": "Paramore - Hard Times (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Fsqq8hjLDO0", - "title": "Harry Styles - Sweet Creature (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ySmyrl1jLgE", - "title": "TINI - Got Me Started (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "agnsQRoInFE", - "title": "Noah Cyrus - Stay Together (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FHTACCMr_e0", - "title": "Lady Gaga - The Cure (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jRpDuEgqQQQ", - "title": "Luis Fonsi, Daddy Yankee ft. Justin Bieber - Despacito (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hjZKniV_hSc", - "title": "Birdy - People Help The People (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pU_pOefSxzI", - "title": "Nick Jonas - Chainsaw (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ep0-h-rGHRk", - "title": "Lady Gaga - Bad Romance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6I3lHjuNn7g", - "title": "Charlie Puth - Attention (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "69mrR_Lc_yA", - "title": "Shawn Mendes - There's Nothing Holding Me Back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z1hGda8mftU", - "title": "Halsey - Castle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KbnFlfRT4gE", - "title": "INNA - Gimme Gimme (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v464ay9eei0", - "title": "Sia - Unstoppable (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IXx2MMuGFzM", - "title": "Daya - Cool (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eXqBhDAlVCc", - "title": "Michael Jackson - Billie Jean (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IlnDjUtKMck", - "title": "Sigrid - Don't Kill My Vibe (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dJgRhxg55fg", - "title": "Hey Violet - Break My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wzjl9K2269U", - "title": "KYLE ft. Lil Yachty - iSpy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zFuryVNrq0M", - "title": "ZAYN, PARTYNEXTDOOR - Still Got Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mukvwXNiBRY", - "title": "Halsey - Now Or Never (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AnQESyZisU0", - "title": "Kendrick Lamar - HUMBLE. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2dvrh6g2K_4", - "title": "Lea Michele - Love Is Alive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XYxt7P6Embw", - "title": "Drake - Passionfruit (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fob4meCULZc", - "title": "Melanie Martinez - Teddy Bear (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qXp-Km8oVLk", - "title": "Bea Miller - Yes Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rcarTN2aHYU", - "title": "Jonas Blue ft. RAYE - By Your Side (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Xe9qCMlQZzo", - "title": "Tinashe - Flame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_9sw6y2YzIA", - "title": "Jason Derulo ft. Nicki Minaj & Ty Dolla $ign - Swalla (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zpXSTPUdrgc", - "title": "The Chainsmokers - The One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1JPujd2PKHE", - "title": "Maggie Lindemann - Pretty Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J6ARCHkdQGc", - "title": "Lorde - Liability (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9v8RX3vEru4", - "title": "Cรฉline Dion - How Does A Moment Last Forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VmWN7k0Jenw", - "title": "Zedd, Alessia Cara - Stay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Azyv_umdqvk", - "title": "Clean Bandit ft. Zara Larsson - Symphony (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vAjEtYdqhTA", - "title": "Harry Styles - Sign Of The Times (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sp824istfKk", - "title": "Ed Sheeran - Save Myself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BliQLvRf2EI", - "title": "Lady Gaga - Million Reasons (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1FE7rNOZjC8", - "title": "The Chainsmokers & Coldplay - Something Just Like This (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0S2xCNh3vzg", - "title": "Sara Bareilles - I Choose You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w0F6goHM1DM", - "title": "Alan Walker - Alone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sPMA1tqWuf4", - "title": "Ed Sheeran - Perfect (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WtjdN5aE_qk", - "title": "Ruth B - Golden (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7NspcLdV4xM", - "title": "Troye Sivan - for him. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "woe2zIokb9Q", - "title": "Maroon 5 ft. Future - Cold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2axTFDFnj-Q", - "title": "Ed Sheeran - Galway Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LbLgwcdPhkg", - "title": "Alex Aiono - Work The Middle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tR_cx_9N4CI", - "title": "Lorde - Green Light (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p9StrUuAtCg", - "title": "Kygo, Selena Gomez - It Ain't Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JjVtGC7jcdU", - "title": "LANY - ILYSB (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xo64PSxIDlI", - "title": "gnash - lonely again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dlTImpZKXSE", - "title": "All Time Low - Dirty Laundry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7Q8cvTTsyp4", - "title": "Sam Hunt - Body Like A Back Road (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2n8UwVOeCrg", - "title": "Shawn Mendes - Mercy (Acoustic) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8xWHhumQj4c", - "title": "Ed Sheeran - Supermarket Flowers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cQ3TSUnfNhA", - "title": "The Chainsmokers ft. XYLร˜ - Setting Fires (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "84nTyGKQnbg", - "title": "Rae Sremmurd - Swang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HeK_Rb9Mkg0", - "title": "blink-182 - I Miss You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IRRgg8ItrfI", - "title": "The Weeknd - Reminder (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RzpLllzC-l8", - "title": "Ariana Grande ft. Mac Miller - The Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s_uRP4zLxk8", - "title": "Olivia O'Brien - Empty (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GL7FQZcQtjc", - "title": "Little Mix - No More Sad Songs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bDmb3L4sbLA", - "title": "Noah Cyrus ft. Labrinth - Make Me (Cry) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SfYXCwmgOoc", - "title": "Julia Michaels - Issues (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uLBk13Iza9o", - "title": "Astrid S - Hurts So Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9-3_EknhrI4", - "title": "Alan Walker - Sing Me To Sleep (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mRhsBemoqAc", - "title": "The 1975 - Fallingforyou (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c8Xu1nJYx8M", - "title": "Martin Garrix & Bebe Rexha - In The Name Of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "epU0ayO75kc", - "title": "Hey Violet - Guys My Age (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HEFOCv9d8Kc", - "title": "My Chemical Romance - Cancer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sfbCZw_c2Zs", - "title": "Imagine Dragons - Believer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VtlB9rCmv1k", - "title": "Childish Gambino - Redbone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wjooeVt6nBQ", - "title": "Grace VanderWaal - Clay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oD3-0bH6Sfw", - "title": "Zara Larsson ft. Ty Dolla $ign - So Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m497f9hB9Gs", - "title": "Alanis Morissette - Ironic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K1iXqjAY2Pk", - "title": "Lana Del Rey - Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RH43YE20y-0", - "title": "Ariana Grande, John Legend - Beauty & The Beast (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g_ruB5eA2pk", - "title": "Maroon 5 ft. Kendrick Lamar - Don't Wanna Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G_CKqgdVpyM", - "title": "Katy Perry ft. Skip Marley - Chained To The Rhythm (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HsjYe3NcOm4", - "title": "Robin Schulz & David Guetta & Cheat Codes - Shed A Light (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gzhhpkuxz4E", - "title": "Sia - Angel By The Wings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zbdnIlH5zP8", - "title": "Halsey - Not Afraid Anymore (Karaoke Version) - from the Fifty Shades Darker Soundtrack", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xCaT4RuOrJY", - "title": "Troye Sivan ft. Betty Who - HEAVEN (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SG39UNNFls0", - "title": "The Weeknd - Secrets (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1Ehi59_-9aY", - "title": "Krewella - Team (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e4kJhbDoGq8", - "title": "Migos ft. Lil Uzi Vert - Bad and Boujee (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YWKguc63wt8", - "title": "Drake - Fake Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sPnxLo6CRcQ", - "title": "Sabrina Carpenter - Thumbs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Gn7LvvBAP80", - "title": "Little Mix - Touch (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L0zmjZStHAc", - "title": "Ariana Grande ft. Future - Everyday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aQEg6dwLFDc", - "title": "Whitney Houston - The Greatest Love Of All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qppiSoVLK8M", - "title": "Dua Lipa - Hotter Than Hell (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RBgimRYxorE", - "title": "Bon Jovi - Always (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bKk9ywsZWps", - "title": "Snakehips ft. ZAYN - Cruel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p1r1DHgYm9Y", - "title": "Foreigner - I Want To Know What Love Is (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qPod0NSNSB8", - "title": "Jermaine Stewart - We Don't Have To Take Our Clothes Off (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9QEY6h03lYU", - "title": "The Chainsmokers ft. Phoebe Ryan - All We Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Bn9D3jocbdM", - "title": "Panic! At The Disco - Don't Threaten Me With A Good Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ERprWn2lYS8", - "title": "The Chainsmokers - Paris (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oUBb60AR0-M", - "title": "Panic! At The Disco - LA Devotee (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kcvYFl_Ja7s", - "title": "twenty one pilots - Cancer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qC15Eif2ais", - "title": "Sia - The Greatest (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q5723_RP524", - "title": "Niall Horan - This Town (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vxRU-NCq9bg", - "title": "Lil Wayne, Wiz Khalifa & Imagine Dragons w/ Logic & Ty Dolla $ign ft X Ambassadors - Sucker For Pain", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aQ_iIJa4GwU", - "title": "Charlie Puth - Dangerously (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JExZop1aqPU", - "title": "Fifth Harmony ft. Fetty Wap - All In My Head (Flex) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5J60o-5pWkQ", - "title": "Olivia O'Brien - hate u love u (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cvwDrU9tY-w", - "title": "Andy Black - We Don't Have To Dance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o71_MatpYV0", - "title": "Ed Sheeran - Shape Of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tpNJSR2jtDc", - "title": "5 Seconds Of Summer - Girls Talk Boys (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jb2T4ZXL6R4", - "title": "James Arthur - Say You Won't Let Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N56nBWBIlvk", - "title": "Ed Sheeran - Castle On The Hill (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Gl78zFKbQbE", - "title": "Clean Bandit ft. Sean Paul & Anne-Marie - Rockabye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c0rWoJzdhsQ", - "title": "Fifth Harmony - Write On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UkzGk9v24UU", - "title": "Little Mix - Shout Out To My Ex (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a5LOjg1EiAk", - "title": "Auli'i Cravalho - How Far I'll Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "p5s2gJ0fw4w", - "title": "Calvin Harris ft. Rihanna - This Is What You Came For (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c9FLftozHwg", - "title": "Demi Lovato - Body Say (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N4_tpI18un4", - "title": "Machine Gun Kelly & Camila Cabello - Bad Things (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_eZnrqEK2Ys", - "title": "Before You Exit - Clouds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Tl90y31RWnI", - "title": "Benny - Boys Will Be Boys (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HHa6BtZow0E", - "title": "Little Mix ft. Charlie Puth - Oops (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VmXansa3xTg", - "title": "Train - Hey, Soul Sister (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iYCxpzyfC1s", - "title": "Sophia Grace ft. Silento - Girl In The Mirror (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fD8lvKK_keM", - "title": "Alessia Cara - Scars To Your Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3nt29LRZqFM", - "title": "Shawn Mendes - Mercy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kMb71-aWthI", - "title": "Major Lazer ft. Justin Bieber & Mร˜ - Cold Water (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Kg8UVTUzZL4", - "title": "Britney Spears ft. Tinashe - Slumber Party (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vIIIxiFzpSU", - "title": "DJ Khaled ft. Drake - For Free (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VP5ODDPUpcE", - "title": "DJ Snake ft. Justin Bieber - Let Me Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r0A_1UbB70o", - "title": "The Chainsmokers ft. Halsey - Closer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K-KthlBioDs", - "title": "Kehlani - Advice (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FIYrNrwg8Uk", - "title": "Imagine Dragons - Levitate (from \"Passengers\") (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AEbkkRn8i-Y", - "title": "OneRepublic - Kids (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aLA0hnx2UU8", - "title": "Aminรฉ - Caroline (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cr08cm7sHyM", - "title": "Anna Clendening - To My Parents (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dD3I4k0gA2M", - "title": "Andy Williams - It's The Most Wonderful Time Of The Year (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6E0BRIN3Z0c", - "title": "John Lennon - Happy Xmas (War Is Over) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6ctk_hsJ_-o", - "title": "Owl City - Humbug (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Rov1ZlBzJhs", - "title": "Justin Bieber - Christmas Eve (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dlNbMMkldi0", - "title": "Grace VanderWaal - I Don't Know My Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HEF4KjGTHLQ", - "title": "Destiny's Child - Rudolph The Red-Nosed Reindeer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kaBRnhxPLdE", - "title": "Wham! - Last Christmas (Single Edit) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "usgzxS7OfaM", - "title": "Bing Crosby - White Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vavvsJmo4h4", - "title": "Jordan Pruitt - Merry Christmas Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a7aADI6WyF4", - "title": "Simple Plan - Christmas Every Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zlobBzhTMoQ", - "title": "HELLO CHRISTMAS: Behind The Scenes!", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xz9biBoDpGs", - "title": "ZAYN & Taylor Swift - I Don't Wanna Live Forever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gf0taQyr0E0", - "title": "Rag'n'Bone Man - Human (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_6obMYlPqf8", - "title": "Mud - Lonely This Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "afjaNdzlU1s", - "title": "Zay Hilfigerrr & Zayion McCall โ€“ Juju On That Beat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PpcOtzW0s40", - "title": "Little Mix - F.U. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cjudlh8Mb3M", - "title": "Johnny Cash - Hurt (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RRRvT5kfVyI", - "title": "Hello Christmas - Christmas Without You (Official Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fEpfsVDPImI", - "title": "Rusted Root - Send Me On My Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uczT-O2s_Hc", - "title": "TINI - Great Escape (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B0UCDX9dJ9o", - "title": "Sabrina Carpenter - All We Have Is Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6cGnHyOxPzg", - "title": "HELLO CHRISTMAS - Christmas Without You (Official Music Video)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "30jXkZxbkyI", - "title": "Paramore - Ignorance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Re_NSs2GqZY", - "title": "twenty one pilots - Lane Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GsqF3WroG-Q", - "title": "Louisa Johnson - So Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z3QKTOUC6H8", - "title": "Alessia Cara - How Far I'll Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "78HYbOcswD4", - "title": "Jon Bellion - All Time Low (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NV-USjtsMEI", - "title": "Rae Sremmurd - Black Beatles (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PYiY74QERJA", - "title": "Sabrina Carpenter - Shadows (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fPVo9MnoiEc", - "title": "Rihanna - Shut Up And Drive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MbA79Qe2Jzo", - "title": "Neiked feat. Dyo - Sexual (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sbc74Dhw1c8", - "title": "Lia Marie Johnson - DNA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Mq9IidEy4So", - "title": "Whitney Houston - How Will I Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "azA7YCqiiZU", - "title": "Green Day - Holiday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A33vNcNTGDM", - "title": "Melanie Martinez - Gingerbread Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T_gk8kaI45s", - "title": "Bebe Rexha - I Got You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DI5QsCFHFrw", - "title": "Madonna - Vogue (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BRz_UpdVaK4", - "title": "Phil Collins - In The Air Tonight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KlWvgxsPk74", - "title": "The Vamps & Matoma - All Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PYpU2TxIzAM", - "title": "Britney Spears - ...Baby One More Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rCM6K2qyhKw", - "title": "Nicki Minaj ft. Ariana Grande - Get On Your Knees (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f76Ue9ki3_U", - "title": "Katrina and The Waves - Walking On Sunshine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gGOiwfXuw2M", - "title": "Andy Grammer - Fresh Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x6d5SPKrn60", - "title": "Oh Wonder - Lose It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UjDsK6VFBmc", - "title": "DNCE - Body Moves (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SY37clW29Os", - "title": "Kesha - TiK ToK (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-AEHGMdgCkk", - "title": "Madilyn Bailey - Wiser (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wWKpushhiV0", - "title": "Galantis & Hook N Sling - Love On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5nziYy_f6Xo", - "title": "B.o.B ft. Hayley Williams - Airplanes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j2M23mNY-aI", - "title": "Becky G - Sola (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g5Ny-QaoZ_A", - "title": "Panic! At The Disco - This Is Gospel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T72PR04Nb0s", - "title": "Biffy Clyro - Many Of Horror (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TM8aw1fr4RI", - "title": "Jacob Sartorius - All My Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hTE4K0OQ-Ao", - "title": "Little Mix - How Ya Doin'? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9Mpv9Wlij5g", - "title": "LP - Lost On You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2Yazj2DJ_LE", - "title": "Melanie Martinez - Dead To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R_EXyGWI9rU", - "title": "Oasis - Wonderwall (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7IaPvlHvVqI", - "title": "Christine and the Queens - Tilted (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K7lc7NrJ-3g", - "title": "Ariana Grande - Greedy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8leAAwMIigI", - "title": "Rick Astley - Never Gonna Give You Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-3zo_TEI5qA", - "title": "Little Mix - Little Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ys_V1kOBoqM", - "title": "Katy Perry - Walking On Air (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ERt4OQCSuhg", - "title": "Selena Gomez - Me And My Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MYeP6CTaeMM", - "title": "Demi Lovato ft. Sirah - Waitin For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "11TlwFxNO2M", - "title": "D.R.A.M. feat. Lil Yachty - Broccoli (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yTXNX8TGWxI", - "title": "Galantis - Runaway (U & I) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1wCF8bRsFfo", - "title": "twenty one pilots - Migraine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CmmX9QOCyRg", - "title": "Kelsea Ballerini - Peter Pan (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eYg8CLABiQo", - "title": "Green Day - Bang Bang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "c3LmNdgNFy8", - "title": "Halsey - Control (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GlkwnJTIrcI", - "title": "Ariana Grande ft. Nicki Minaj - Side To Side (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YenRFrfLCBQ", - "title": "Tove Lo - Cool Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_w7YnxZ11SI", - "title": "Laura Marano - Miraculous Ladybug Theme Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dZHQRpj7CQI", - "title": "Zara Larsson - Ain't My Fault (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eZOhZFFpdU4", - "title": "Barenaked Ladies - One Week (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K54Ca4CrKzg", - "title": "Ron Pope - A Drop In The Ocean (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "247YolCxlpI", - "title": "Michael Bublรฉ - Haven't Met You Yet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SJSzWWyoRKI", - "title": "The Girl And The Dreamcatcher - Written In The Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bIUME7pcACA", - "title": "Selena Gomez - Perfect (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wPPLQpRu7nA", - "title": "Anders Lystell - Faster Car (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vIZTzbxUkG0", - "title": "Ellie Goulding - Still Falling For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cyrpA6fx2sU", - "title": "Kehlani - Gangsta (from Suicide Squad) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KavWqUmVMYA", - "title": "JoJo Siwa - Boomerang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "opjN4O9zlGQ", - "title": "The Rembrandts - I'll Be There For You (Friends Theme Song) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xy9r0vhOVpk", - "title": "Green Day - Good Riddance (Time Of Your Life) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e5xN1SRF8Zc", - "title": "Tory Lanez - Luv (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r8BdFXaYE8s", - "title": "Green Day - Boulevard Of Broken Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DvEXv4Shx7s", - "title": "Calum Scott - Dancing On My Own (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ew8wshsJGCQ", - "title": "Hailee Steinfeld & Grey ft. ZEDD - STARVING (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KuiloJgXsbA", - "title": "Melanie Martinez - Play Date (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5J_D7SfIc94", - "title": "Melanie Martinez - Cake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yAoJEd0uZUc", - "title": "Sabrina Carpenter ft. Sofia Carson - Wildside (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3tANSV2LglQ", - "title": "Beyoncรฉ - Sorry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PpflCk1daIY", - "title": "Jacob Sartorius - Sweatshirt (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g8ibaw1fOB4", - "title": "The Girl and The Dreamcatcher - Make You Stay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UdTzFfT-frE", - "title": "Pokรฉmon - Theme Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QIJQ7dxuKgY", - "title": "Shawn Mendes - Treat You Better (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6yQVtrqx5sU", - "title": "Katy Perry - Rise (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BXJ_0Jrr74Y", - "title": "Sabrina Carpenter - On Purpose (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IesptmydsYA", - "title": "Laura Marano - Boombox (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "clevuVa40Vs", - "title": "DNCE - Toothbrush (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AqR295kgmDU", - "title": "The Offspring - Pretty Fly (For A White Guy) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gY-Wl5CfFAY", - "title": "Melanie Martinez - Pacify Her (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ch_xInCwiF4", - "title": "Robyn - Dancing On My Own (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UtPwxeKHUSo", - "title": "The Vamps - Rest Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TKB4VcdWiQc", - "title": "Melanie Martinez - Milk and Cookies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IdPO76f4kmI", - "title": "Florida Georgia Line - H.O.L.Y. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0_p8p17vDJ0", - "title": "Descendants - Did I Mention (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z8JgE6FDQyg", - "title": "Jennifer Lopez - Ain't Your Mama (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JYhavU3IhfQ", - "title": "Bea Miller - Dracula (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fkoOKFgiNXQ", - "title": "X Ambassadors - Unsteady (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ug6Mr144qrM", - "title": "Seal - Kiss From A Rose (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sgIMKZt0RYk", - "title": "The 1975 - A Change Of Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "42sZMRaJe5w", - "title": "High School Musical 2 - Fabulous (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rfCgDUZCzHo", - "title": "Kent Jones - Don't Mind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UntbNt8rK4w", - "title": "Green Day - Basket Case (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3rIbAe4daG0", - "title": "Melanie Martinez - Training Wheels (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u2jQRPVtfgE", - "title": "Melanie Martinez - Alphabet Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hYMHaamhiKU", - "title": "twenty one pilots - Heathens (from Suicide Squad) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pmmakNMzJ7Y", - "title": "Andy Grammer - Back Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8w1lQpUo16A", - "title": "Jess Glynne - Take Me Home (Karaoke, Single Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HJXW27K79T4", - "title": "Shakira - Try Everything (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2lPtXYwT-A4", - "title": "Paramore - Still Into You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OWd-2SVsV50", - "title": "Katy Perry - Hot 'n' Cold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PE9rE3E-fGo", - "title": "Green Day - Wake Me Up When September Ends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NVEf7dhMurM", - "title": "The Jungle Book - Bare Necessities (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "B8S0l--gHgA", - "title": "Kelly Clarkson - Since U Been Gone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ABOYo7ioQJo", - "title": "Smash Mouth - All Star (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J_E1mLcgYq4", - "title": "Andra Day - Rise Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ruviSIVo-TM", - "title": "Les Miserables - I Dreamed A Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZURU1Wu-cWc", - "title": "Flume ft. Kai - Never Be Like You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "muSbrUYiqrI", - "title": "twenty one pilots - Ride (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dZUHFTH2wYY", - "title": "Paramore - Misery Business (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pUso35emJpU", - "title": "Lukas Graham - Mama Said (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Yd4en3dMFY8", - "title": "High School Musical 2 - You Are The Music In Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uBRuA20sX_s", - "title": "Zedd, Kesha - True Colors (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mK_1Ldh6ClA", - "title": "The 1975 - Somebody Else (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I5KLeZM_O2Y", - "title": "Ariana Grande - Into You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YkcrN24JyKk", - "title": "Zendaya - Neverland (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "81cN3C6onmk", - "title": "Jason Derulo - If It Ain't Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xdX_Bcu-RZ4", - "title": "Kygo - Firestone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Wg_-u5cjI4s", - "title": "Desiigner - Panda (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8wBiWyYpaLc", - "title": "Bill Medley, Jennifer Warnes - (I've Had) The Time Of My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9RcoA7RptvE", - "title": "Meghan Trainor - Me Too (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xDfUBoZE6pE", - "title": "Sia - Breathe Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eGpM33XHyoE", - "title": "Imagine Dragons - Radioactive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wYIx_2s1qhc", - "title": "P!nk - Try (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VBo85-_9rL0", - "title": "Joel Adams - Please Don't Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2EaDDg5tVUg", - "title": "Britney Spears - Everytime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3WyuNHA0ibg", - "title": "Ruth B - 2 Poor Kids (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iR2Zo-q-c7M", - "title": "Jess Glynne - Hold My Hand (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dLYuZC6Czfw", - "title": "Pink - Just Like Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RRTUHx95HEg", - "title": "Hailee Steinfeld ft. DNCE - Rock Bottom (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QA2BRqXroEg", - "title": "Sofia Carson - Love Is The Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gfVKv3NEAQ4", - "title": "Owl City - Fireflies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HoKBVMIi2IY", - "title": "Drake ft. Wizkid & Kyla - One Dance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Xf01s-uyIU4", - "title": "Fetty Wap - Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8LV0EYgHhTg", - "title": "Jessie J - Sweet Talker (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QPUh2yRv5mM", - "title": "Sia - Bird Set Free (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gqaXhaKtEAQ", - "title": "One Direction - End Of The Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FiofhisfDqo", - "title": "Melanie Martinez - Tag You're It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "F4EHViOQ8Cw", - "title": "twenty one pilots - Tear In My Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QDgmAFpOUIg", - "title": "Ariana Grande ft. Lil Wayne - Let Me Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zfKgUKBnWmw", - "title": "Tinie Tempah ft. Zara Larsson - Girls Like (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MpS5i1pCwZE", - "title": "Little Mix - DNA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ltMOo1u_-bI", - "title": "Birdy - Not About Angels (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YZUCpWQO2-Y", - "title": "Bebe Rexha - I'm Gonna Show You Crazy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mNL7iE-CxXA", - "title": "Anna Kendrick - Cups (Pitch Perfect's \"When I'm Gone) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dsp6TjJdT9M", - "title": "Little Mix - Towers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oq5cBDKnzkw", - "title": "Sia - You're Never Fully Dressed Without A Smile (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wXvtiVypqu0", - "title": "Daya - Sit Still, Look Pretty (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KAlO0CHZkAo", - "title": "Charlie Puth - I Won't Tell A Soul (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DQzdMorZe04", - "title": "Justin Bieber - Life Is Worth Living (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZakEbWobIj0", - "title": "Plain White T's - Hey There Delilah (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZNeW05ELGhE", - "title": "Taylor Swift - Our Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_ce778S_3iI", - "title": "Wicked - Defying Gravity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rAdXeUbC8Ac", - "title": "Little Mix - Grown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RCEThvfFhOE", - "title": "Shawn Mendes - Aftertaste (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "62dT3H0TcEQ", - "title": "Adam Lambert ft. Laleh - Welcome To The Show (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a03arXvEC7c", - "title": "Kelly Clarkson - Invincible (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FaQUZdvmKlU", - "title": "Lady Gaga - Til It Happens To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tCmltWCah6s", - "title": "Nick Jonas ft. Tove Lo - Close (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-rCIyA3RAjk", - "title": "Katy Perry - Unconditionally (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h1_H_k9tUAg", - "title": "Selena Gomez - Kill Em With Kindness (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bacP3MBLgBw", - "title": "Post Malone - White Iverson (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j52kpEn5roY", - "title": "Kat Dahlia - I Think I'm In Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FXYEuxna-SI", - "title": "Bebe Rexha ft. Nicki Minaj - No Broken Hearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ufWLRZ-r4xY", - "title": "Dove Cameron - Genie In A Bottle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QBrDvR0EE1E", - "title": "ZAYN - BeFoUr (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tdvAUAHlE-4", - "title": "Ariana Grande - Be Alright (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8bwDkgcw0z8", - "title": "Iggy Azalea - Team (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ax0IkqNBSoU", - "title": "Melanie Martinez - Cry Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "E7tMc-vrxTw", - "title": "Kelly Clarkson - Piece By Piece (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "W-TlyOS38gs", - "title": "Alessia Cara - Wild Things (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2P7wedbhYAU", - "title": "The Weeknd - Often (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LqrqgALM1Ug", - "title": "Sia - Cheap Thrills (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oAFTlrdr9RI", - "title": "ZAYN - LIKE I WOULD (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fuhYxD5knq0", - "title": "DJ Snake ft. Bipolar Sunshine - Middle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jJ2Wc6oWb2A", - "title": "Bars and Melody - Shining Star (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Qcc9zdXowPQ", - "title": "Meghan Trainor - NO (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jppqAygqVTc", - "title": "Ariana Grande - Dangerous Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PNkvcuj7m2E", - "title": "Ed Sheeran - One (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M5Q0eiMzup0", - "title": "Alicia Keys - If I Ain't Got You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w0ZoSRQ5xSg", - "title": "twenty one pilots - Car Radio (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Hq9ea4O6ODM", - "title": "Dove Cameron - Better In Stereo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ddi4V-MS6GA", - "title": "Fountains Of Wayne - Stacy's Mom (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xyzwVdyqonc", - "title": "Lana Del Rey - Ultraviolence (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jIi_6LxcEsk", - "title": "Tory Lanez - Say It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vc0rxHPxuek", - "title": "Zella Day - East Of Eden (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mytwQTeWQOc", - "title": "Ruth B - Superficial Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rMHGzmw3fSc", - "title": "Years & Years ft. Tove Lo - Desire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pYlFRLTwC8w", - "title": "Halsey - Colors (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cdgU8YmD3Kc", - "title": "Celine Dion - My Heart Will Go On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EtD7zSgSeWQ", - "title": "Halsey - New Americana (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5FHDnD-VcHI", - "title": "The Chainsmokers feat. Daya - Don't Let Me Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oh5WsfZVVrE", - "title": "The 1975 - The Sound (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CL4iT3AXbiQ", - "title": "Fifth Harmony ft. Ty Dolla Sign - Work From Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ImAt_CFLcgc", - "title": "ZAYN - iT's YoU (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yFOxf2Y0H1g", - "title": "Demi Lovato - Stone Cold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nn0RrIffVoI", - "title": "Little Mix - Love Me Or Leave Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xf5rgfur4gw", - "title": "Alan Walker - Faded (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9vL1HBADzmU", - "title": "Trevor Moran - I Wanna Fly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I1i9FIue6vk", - "title": "Jason Derulo - Get Ugly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OmtagUirS1c", - "title": "Hailee Steinfeld - You're Such A (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ltaCXPrmSO8", - "title": "MAX - Gibberish (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hfimYKn2qDQ", - "title": "Sabrina Carpenter - Smoke And Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zPgyip8Hakg", - "title": "Mike Posner - I Took A Pill In Ibiza (SeeB Remix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "csI7n4NKpmE", - "title": "Troye Sivan - Youth (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_Bti9H8Y24U", - "title": "gnash - i hate u, i love u (feat. Olivia O'Brien) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3xi_rU1lshU", - "title": "Sophia Grace - Best Friends (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t0mMztpGBO0", - "title": "Demi Lovato - Without The Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zj2vI9EASdo", - "title": "WSTRN - In2 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z_fs3a7_VYU", - "title": "Little Mix - Secret Love Song, Pt. II (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t0-3FjSIKJY", - "title": "Justin Bieber - Purpose (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7MPe5t0o48c", - "title": "Panic! At The Disco - Death Of A Bachelor (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cSPGlDnzUYE", - "title": "Bryson Tiller - Don't (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ALq8ihw4pwU", - "title": "Lukas Graham - 7 Years (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e314BoqPb0c", - "title": "X Ambassadors - Renegades (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BAxsoTBR2HA", - "title": "Marvin Gaye - Sexual Healing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ypOsRYE66FM", - "title": "Zara Larsson - She's Not Me (Pt. 1 and 2) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "r2U4YL-f91c", - "title": "Fall Out Boy ft. Demi Lovato - Irresistible (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Bdu9nAVsd6I", - "title": "Flo Rida - My House (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ep_HyhQo2iY", - "title": "Percy Sledge - When A Man Loves A Woman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1TIeDbnzp9M", - "title": "George Michael - Careless Whisper (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IUmIIBeYr1I", - "title": "Charlie Puth ft. Selena Gomez - We Don't Talk Anymore (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "auaqyVYmpP8", - "title": "The Jackson 5 - I Want You Back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AOVyQC67Q4g", - "title": "Lana Del Rey - Video Games (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rFsxIsoN23w", - "title": "ZAYN - PILLOWTALK (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JShoho_WYIQ", - "title": "One Direction - Little Things (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DhQ46uh2vBU", - "title": "A Great Big World, Christina Aguilera - Say Something (Karaoke Version, No Backing Vocals)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gd4mB-zUcO8", - "title": "Elvis Presley - Can't Help Falling In Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x-ufoMYaVYE", - "title": "Stevie Wonder - I Just Called To Say I Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DDMdkRDZVmI", - "title": "Savage Garden - Truly Madly Deeply (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bkkkbniDtHA", - "title": "Christina Aguilera - Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rjPg9JqTxkY", - "title": "Boyz II Men - End Of The Road (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bZm-Aza8fN4", - "title": "Whitney Houston - My Love Is Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UA_JT3dg6zY", - "title": "Frankie Goes To Hollywood - The Power Of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3BHRfD4RU8E", - "title": "Sigala - Sweet Lovin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qQ1fO2NwLt8", - "title": "Fleur East - Sax (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dWm4HGEf2u0", - "title": "DNCE - Cake By The Ocean (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xXbk3InFCxY", - "title": "G-Eazy x Bebe Rexha - Me, Myself & I (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kV5dLKnQ90I", - "title": "The Weeknd - In The Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hYSNz4uJh9k", - "title": "Justin Bieber - Company (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Qnw4FAxd3fc", - "title": "Auburn - The Perfect Two (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EUdNpznNKcc", - "title": "The Chainsmokers ft. Rozes - Roses (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G-5BbdBqT8I", - "title": "One Direction - Love You Goodbye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A0lUjkzeq5o", - "title": "Fleetwood Mac - Everywhere (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zmrme4ulxIY", - "title": "Cyndi Lauper - Time After Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NxilU56kPu0", - "title": "Backstreet Boys - I Want It That Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3s7kBlAiNK4", - "title": "Travis Scott - Antidote (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sTGFkbjK3IU", - "title": "The Calling - Wherever You Will Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XZgmgnaYVl8", - "title": "Melanie Martinez - Mad Hatter (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QlJG_GmdQB0", - "title": "Selena Gomez - Hands To Myself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jbK7Ps-7Gfc", - "title": "Wheatus - Teenage Dirtbag (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ct9fhfcg5UA", - "title": "Disney Descendants - Set It Off (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q80cDvj2L3o", - "title": "Meghan Trainor - 3AM (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Vs20pLrCJXA", - "title": "JoJo - Leave (Get Out) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i3yf7f98MRM", - "title": "Sigala - Easy Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FNCc9ppGgcg", - "title": "5 Seconds Of Summer - Jet Black Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6abAeLt6Hvw", - "title": "One Direction - History (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "st-yPBxRVPM", - "title": "Whitney Houston - I Wanna Dance With Somebody (Who Loves Me) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VHpK1i6XnkY", - "title": "Taylor Swift - Back To December (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D5qBdppqOAc", - "title": "Sam Smith - Drowning Shadows (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kfa-26JfdDA", - "title": "Miley Cyrus - Party In The USA (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-NRcXi3h25s", - "title": "Grace ft. G-Eazy - You Don't Own Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZpK5dZgoC14", - "title": "Who Is Fancy ft. Ariana Grande & Meghan Trainor - Boys Like You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "032UtZ26LPs", - "title": "Panic! At The Disco - Victorious (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FWJtQj_Okpc", - "title": "Little Mix ft. Jason Derulo - Secret Love Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NYiZ0LBe8Sk", - "title": "Justin Bieber ft. Halsey - The Feeling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LmaRqEuusXI", - "title": "Justin Bieber - I'll Show You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vaWw6qZa6BI", - "title": "One Direction - If I Could Fly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9b-6gEkpr5Q", - "title": "Empire Cast - Conqueror ft. Estelle and Jussie Smollett (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CZCfGmLUn9s", - "title": "Shawn Mendes & Camila Cabello - I Know What You Did Last Summer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yQAuGCd1PmU", - "title": "Meghan Trainor - I'll Be Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LnsPMGGcCPk", - "title": "East 17 - Stay Another Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "svN1O_9vYVs", - "title": "Coldplay - Adventure Of A Lifetime (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6JJ5kls77K4", - "title": "Robin Schulz ft. Francesco Yates - Sugar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1enflc905ME", - "title": "Demi Lovato - Let It Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aQURjOPL4Xg", - "title": "Carly Rae Jepsen - Last Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rAPyxGGjNbk", - "title": "Perry Como - It's Beginning To Look A Lot Like Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yTbB0rBfF7Q", - "title": "Sabrina Carpenter - Christmas The Whole Year Round (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JkGkodCBNWs", - "title": "The Pogues & Kirsty McColl - Fairytale Of New York (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wsB1_UGiVoU", - "title": "Dean Martin - Let It Snow! Let It Snow! Let It Snow! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s9Qc54Jp-6M", - "title": "Aerosmith - I Don't Want To Miss A Thing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vnxbblBBVpk", - "title": "Nathan Sykes - Over And Over Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DQvpQN7bnJY", - "title": "Troye Sivan - Talk Me Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jRMHxHbH1fk", - "title": "Little Mix - Lightning (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6qgtHXOJX9s", - "title": "Kelly Clarkson - Underneath The Tree (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LWWpBTaLBf8", - "title": "All Time Low - Time-Bomb (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WIwsFQxvwOY", - "title": "Sofia Carson - Rotten To The Core (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kOHgVuDnknw", - "title": "Tove Lo - Moments (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VIgsBLfcnZQ", - "title": "Eartha Kitt - Santa Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GzG3Np1DdSY", - "title": "Tori Kelly - Hollow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PFz-skg72zc", - "title": "Ellie Goulding - Army (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9_XR3VFabtY", - "title": "Ariana Grande - Snow In California (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sJNtB1jRQog", - "title": "CHVRCHES - The Mother We Share (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ejYXswDqghM", - "title": "Disclosure ft. Lorde - Magnets (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "slA9cFKEAYg", - "title": "Pia Mia - Touch (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zUMmlyfJHIk", - "title": "Madison Beer ft. Jack & Jack - All For Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yCRPlMr9v2c", - "title": "Aurora - Half The World Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jMWXbOjfRxA", - "title": "Miley Cyrus - Hands Of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P1OgjSlXzK8", - "title": "Bethany Mota feat. Mike Tompkins - Need You Right Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-NEfq3FKkyM", - "title": "Michael Bublรฉ - Have Yourself A Merry Little Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KlEimTUMaWU", - "title": "Omi - Hula Hoop (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gymyKFgAF4E", - "title": "JoJo - Too Little, Too Late (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zEloQsYRofI", - "title": "Tinashe ft. Chris Brown - Player (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WFJQQbHKTVQ", - "title": "Miley Cyrus - Adore You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Fi-_5FyZ2ag", - "title": "Panic! At The Disco - The Ballad Of Mona Lisa (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lB2RHp40X_8", - "title": "Melanie Martinez - Mrs. Potato Head (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yFfOIB6BilA", - "title": "Olly Murs - Kiss Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0qZwcoO-zEM", - "title": "A Great Big World ft. Futuristic - Hold Each Other (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mMEdoCG1MH0", - "title": "MyLifeAsEva - Literally My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ToBGhfZTiGA", - "title": "Meghan Trainor - Better When I'm Dancin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CgRGvclVmT0", - "title": "Panic! At The Disco - Emperor's New Clothes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fTRa0BuPlwA", - "title": "Dove Cameron - If Only (from Disney \"Descendants\") (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3ovRDVtkmn8", - "title": "Adele - Chasing Pavements (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xcfNqmchwdE", - "title": "5 Seconds Of Summer - Hey Everybody! (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kUyhDgryS3g", - "title": "Katy Perry - Teenage Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AOp9-5lHL8o", - "title": "Carly Rae Jepsen - Run Away With Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "07z6eOSpWp8", - "title": "ZHU x AlunaGeorge - Automatic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fTfT1JwAy3Q", - "title": "Demi Lovato - Confident (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0CjMoMG-Pwc", - "title": "Lana Del Rey - National Anthem (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1hx2ynaUaHY", - "title": "Charlie Puth - One Call Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IzL4eMcMjZQ", - "title": "One Direction - Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9CLvFIsp9oo", - "title": "Justin Bieber - Sorry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rDDz2tIoxKI", - "title": "Ariana Grande - Focus (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TPVnV0q_Gm8", - "title": "Galantis - Peanut Butter Jelly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6_knW5drAPw", - "title": "Troye Sivan - FOOLS (Karaoke Version) (Blue Neighbourhood Part 2/3)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Xs0w3TstJZg", - "title": "Zara Larsson, MNEK - Never Forget You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_xCwAIeKtX4", - "title": "Years & Years - Eyes Shut (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6tjI8HbZHlM", - "title": "Selena Gomez - Me & The Rhythm (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zj3dMCkEni4", - "title": "Zara Larsson - Lush Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "H0QBqsJF3aA", - "title": "Sia - Alive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ipq2geYz6xw", - "title": "Adele - Hello (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HMFqge5jiaU", - "title": "The Weeknd ft. Lana Del Rey - Prisoner (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1JWWkuLrtro", - "title": "One Direction - Perfect (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e6ISjJiX92I", - "title": "The Vamps - Wake Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BXvaGeVKNIw", - "title": "Maroon 5 - This Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vDfV_n-HiNA", - "title": "Rihanna - Disturbia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TG4Vs02sqx8", - "title": "Rachel Platten - Stand By You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "h7vILHaFTiE", - "title": "Sam Smith - Writing's On The Wall (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CS1Xf9hfUCk", - "title": "Whitney Houston - I Have Nothing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kcK7z-E8Bp4", - "title": "P!nk - Today's The Day (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "keejy6-6xt4", - "title": "Backstreet Boys - Everybody (Backstreet's Back) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q4-j_-CHAJk", - "title": "Panic! At The Disco - I Write Sins Not Tragedies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nBjNC--brTw", - "title": "Halsey - Hold Me Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U6eDFyoGNdA", - "title": "Taylor Swift - Teardrops On My Guitar (Pop Version - Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jAXwHoRExSM", - "title": "The Nightmare Before Christmas - This Is Halloween (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I7HRrjPWLbI", - "title": "Little Mix - Love Me Like You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qHHkdKlKhfo", - "title": "Taylor Swift - Mean (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vQaOmtjsXBc", - "title": "One Direction - Infinity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pE4dBVpr_Io", - "title": "The Rocky Horror Picture Show - Time Warp (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Dv4s4KFptCE", - "title": "Evanescence - My Immortal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-iWvqnq4H0s", - "title": "Daya - Hide Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QNVtVvAJhDI", - "title": "twenty one pilots - Stressed Out (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d5lOB7Ibjhg", - "title": "Fall Out Boy - Sugar, We're Going Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8o3P3jwgtjY", - "title": "Paramore - Monster (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "odO7rH5vmaI", - "title": "Elle King - Ex's & Oh's (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ch_z7_hd5FY", - "title": "Troye Sivan - WILD (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qw-E5IqQ4MU", - "title": "Fall Out Boy - Uma Thurman (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3-jf58-XDYs", - "title": "Meghan Trainor - No Good For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wYRncDCwCoE", - "title": "Five Nights At Freddy's 3 Song - Die In A Fire - The Living Tombstone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7kKPkJQ9yc0", - "title": "Nick Jonas - Levels (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KlrXzBroM3s", - "title": "Ellie Goulding - On My Mind (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "frpfRwGv6KU", - "title": "Evanescence - Bring Me To Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ORtbESA3GqQ", - "title": "Tori Kelly - Should've Been Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2PYU-D4bVEk", - "title": "Little Mix - Hair (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rx3YgEf4mIQ", - "title": "Lana Del Rey - High By The Beach (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BfxdKqJyPhc", - "title": "Becky G - Break A Sweat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "V8TGcqNkNOY", - "title": "Macklemore & Ryan Lewis - Downtown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DE7Ve7N49Is", - "title": "Calvin Harris & Disciples - How Deep Is Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Zl_we3nzBPY", - "title": "5 Seconds Of Summer - She's Kinda Hot (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jFS32d6mcvw", - "title": "Sabrina Carpenter - Too Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e5535hgdIlk", - "title": "Fifth Harmony - I'm In Love With A Monster (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "56kZ5BYfO6E", - "title": "Beyonce - If I Were A Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BVWUB8VMuiI", - "title": "Hayley Kiyoko - Girls Like Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-9U2X886A0E", - "title": "Hailee Steinfeld - Love Myself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uH2VK4yDCLg", - "title": "Bea Miller - Fire N Gold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "20GjgF_3faw", - "title": "Nicki Minaj - Super Bass (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_JmfQjsT13c", - "title": "Disclosure ft. Sam Smith - Omen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YIg0xU_A5-8", - "title": "Selena Gomez - Same Old Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "itoF8gggLhY", - "title": "Disney Descendants - Rotten To The Core (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w7KHcWe5ACw", - "title": "R. City ft. Adam Levine - Locked Away (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dZlowemJbj4", - "title": "Maroon 5 - Sunday Morning (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RMF7mRTrBQ4", - "title": "Meek Mill ft. Nicki Minaj & Chris Brown - All Eyes On You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a0I1h4UyZOU", - "title": "Melanie Martinez - Sippy Cup (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kKKXhrS_my4", - "title": "Justin Bieber - What Do You Mean (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tZKBzoBcytQ", - "title": "Kygo ft. Parson James - Stole The Show (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x8SpSPBeeUE", - "title": "Adele - Make You Feel My Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "J-cx31kkMUA", - "title": "One Direction - Midnight Memories (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_PDhqm1PYtk", - "title": "Alessia Cara - Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C7eH7W5ASlw", - "title": "One Direction - Change Your Ticket (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O2vhF-rARYc", - "title": "Austin Mahone - Dirty Work (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FL9Hcz85CGw", - "title": "Miley Cyrus - The Climb (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OaNREHFxzTA", - "title": "Rihanna, Drake - What's My Name? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WWJyJGY1T2M", - "title": "Kelly Clarkson - Because Of You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WfCz7hV-bJk", - "title": "Selena Gomez & The Scene - Who Says (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q3WYYXb4IpE", - "title": "Lana Del Rey - Honeymoon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "G5Fiuz7Xnio", - "title": "Michael Jackson - The Way You Make Me Feel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9JZi1XSvTdU", - "title": "Swedish House Mafia ft. Tinie Tempah - Miami 2 Ibiza (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NYAHyU_hpPo", - "title": "Jess Glynne - Don't Be So Hard On Yourself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oo96H1OG5VY", - "title": "Travie McCoy ft. Sia - Golden (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yH2mILMKC-0", - "title": "Mark Ronson ft. Amy Winehouse - Valerie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ixGt1ajjOyA", - "title": "My Chemical Romance - Teenagers (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "U4j8UroIWqU", - "title": "Lady Antebellum - Need You Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cvHD1nXh0a0", - "title": "Ariana Grande - Why Try (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8R1xIYOwxRA", - "title": "Ruth B - Lost Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VXv9TQSblJk", - "title": "Jidenna ft. Roman GianArthur - Classic Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EjM8WQ-rXnI", - "title": "Ed Sheeran - Give Me Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R7doV2gITnk", - "title": "Ella Henderson - Missed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5B_dHpwfBXE", - "title": "Taylor Swift - You Belong With Me (Backing Track)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QEZjzH4zEd4", - "title": "Cher Lloyd - Want U Back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1gfFImcYgAE", - "title": "Sage The Gemini ft. Nick Jonas - Good Thing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kSRgkOPBPPc", - "title": "Pia Mia ft. Chris Brown & Tyga - Do It Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kn8YiDSYcq4", - "title": "Jason Mraz - I'm Yours (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DI8TM2fDG2k", - "title": "Natalie La Rose ft. Fetty Wap - Around The World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8SBsvvQPsgg", - "title": "Sabrina Carpenter - Eyes Wide Open (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "klzWPpowZcQ", - "title": "Melanie Martinez - Soap (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wYDW1JfnA_w", - "title": "Tinashe - All Hands On Deck (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aUoeErKrMEs", - "title": "Katy Perry ft. Snoop Dogg - California Gurls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WHLKZDMUR6o", - "title": "One Direction - Drag Me Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9S-B99Dd7d4", - "title": "Felix Jaehn ft. Jasmine Thompson - Ain't Nobody (Loves Me Better) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yCXcs2B8du0", - "title": "Paramore - The Only Exception (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_gP1MePb1Gk", - "title": "Pharrell Williams - Freedom (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v6FuK3w3iBk", - "title": "Fetty Wap ft. Remy Boyz - 679 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vCkDSb6iotQ", - "title": "Major Lazer ft. Ellie Goulding & Tarrus Riley - Powerful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QblwTAiq86c", - "title": "Cimorelli - You're Worth It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2w1EjRaTNuo", - "title": "Jason Derulo - Cheyenne (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O0RZc6k_eLw", - "title": "Zara Larsson - Uncover (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g82LqBoJWFA", - "title": "Taylor Swift ft. Gary Lightbody - The Last Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1OOuQ5CMQTw", - "title": "Megan Nicole - Electrified (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eHNM7ebjcqI", - "title": "Glee - Singing In The Rain/Umbrella (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hyB4iyq2tmw", - "title": "Jessie J ft. B.o.B - Price Tag (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C02apNNsmeI", - "title": "Adele - Set Fire To The Rain (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uhMvKj4bOU8", - "title": "Sia - Fire Meet Gasoline (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sq2FkmVnFcc", - "title": "Zedd ft. Foxes - Clarity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WBKKj3KCScg", - "title": "Meghan Trainor - Close Your Eyes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TsCPrboDunw", - "title": "Imagine Dragons - Demons (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ut8qAfWUW24", - "title": "Taylor Swift - I Knew You Were Trouble (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WpBqBOsYGNc", - "title": "Joey Graceffa - Don't Wait (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EflCttRgdr4", - "title": "Fifth Harmony - Going Nowhere (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BqiBmont1ZQ", - "title": "Demi Lovato - Cool For The Summer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ILIY1Fvh-Qw", - "title": "Rita Ora - Poison (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nhv788BMisk", - "title": "James Bay - Let It Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Pc-cdGfXmp4", - "title": "Avicii - Waiting For Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vGyJHrQhCEA", - "title": "John Newman - Come And Get It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i86mx3z3Hck", - "title": "Tori Kelly - Unbreakable Smile (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ehH4gnzN0Kc", - "title": "Tove Lo - Not On Drugs (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bRSQsgPzU4g", - "title": "One Direction - Clouds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1a5SWpp9Wfg", - "title": "Justin Bieber ft. Ludacris - Baby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Hfw55F2Qg9c", - "title": "Jack and Jack - Like That (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "q6eA_-2DT9o", - "title": "Lana Del Rey - Blue Jeans (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "N6c6ayaZs9g", - "title": "Rich Homie Quan - Flex (Ooh, Ooh, Ooh) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nHGyE7LaRbw", - "title": "Halsey - Ghost (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7h2eqd0Kx4g", - "title": "Taylor Swift feat. The Civil Wars - Safe & Sound (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BSuZ4ztkmPA", - "title": "Ed Sheeran - All Of The Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9_mZCO9WQZM", - "title": "Ciara - I Bet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WggYVunMNTA", - "title": "Selena Gomez ft. A$AP Rocky - Good For You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9lXGUYe4osQ", - "title": "Hozier - Someone New (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "blAk0Zr9UAk", - "title": "The Weeknd - Can't Feel My Face (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X_fmt_y2AzM", - "title": "Colbie Caillat - Bubbly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_2DQti03fQ0", - "title": "Fetty Wap ft. Monty - My Way (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vwhNzQRPs9g", - "title": "Nicki Minaj - The Night Is Still Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cmqlDASPG_w", - "title": "Maroon 5 - This Summer's Gonna Hurt Like A Motherf****r (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZEt5qkoL6iE", - "title": "The Weeknd - The Hills (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YMbxFZYOhig", - "title": "Little Mix - Move (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XWq1hK6XtjU", - "title": "Vance Joy - Riptide (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fQcKB3IEK9k", - "title": "Charlie Puth ft. Meghan Trainor - Marvin Gaye (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9X8Bsgz8DfQ", - "title": "Major Lazer & DJ Snake (feat. Mร˜) - Lean On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JsoxO3vWok0", - "title": "Little Mix - Black Magic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m4RJ3OZdAVk", - "title": "DJ Snake & AlunaGeorge - You Know You Like It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fOWLajLvqXg", - "title": "Melanie Martinez - Pity Party (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8kotNQ07ZEw", - "title": "Whitney Houston - I Will Always Love You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HEv6E4hz8cM", - "title": "Silento - Watch Me (Whip / Nae Nae) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ty_Su_hw6nI", - "title": "Rebecca Ferguson - Nothing's Real But Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FuVWi76sMMw", - "title": "Enrique Iglesias ft. Ludacris - Tonight (I'm Loving You) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C8lCwQsE2Oc", - "title": "Gym Class Heroes ft. Adam Levine - Stereo Hearts (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qnJCMNQQHbY", - "title": "Sabrina Carpenter - We'll Be The Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pdheWX4oO1A", - "title": "Jessie J - Flashlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZWYBkg2vOwM", - "title": "T-Wayne - Nasty Freestyle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mAH8lsmDEB8", - "title": "Leona Lewis - Fire Under My Feet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dKQW7Bsz_R0", - "title": "Years & Years - Shine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TUk3c65izW8", - "title": "Emeli Sande - Next To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nED-QSN2BxU", - "title": "Britney Spears, Iggy Azalea - Pretty Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nxu9-X0lmfE", - "title": "Taylor Swift ft. Kendrick Lamar - Bad Blood (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bRlAA1CpaIA", - "title": "Meghan Trainor - Walkashame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "coU-gIpBeNo", - "title": "Marina and the Diamonds - I'm A Ruin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IzyvJ6XwPN0", - "title": "Katy Perry - Birthday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8P0feGFmRyU", - "title": "Demi Lovato - Give Your Heart A Break (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LTobEt2EF5s", - "title": "Skrillex and Diplo (with Justin Bieber) - Where Are U Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nevamPafdFA", - "title": "Andy Grammer - Honey, I'm Good (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-94zx7u26Ac", - "title": "Lunchmoney Lewis - Bills (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DZa2NOnahTM", - "title": "Stereo Kicks - Love Me So (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Tz7SS5LUKT0", - "title": "The Living Tombstone - It's Been So Long (FNAF 2 - Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g94DBEV1kVA", - "title": "We The Kings ft. Elena Coats - Sad Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FEmEJ-N4QV4", - "title": "Ellie Goulding - Lights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8ogSqVTkDZ8", - "title": "Becky G - Lovin' So Hard (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a5tViY-GsaQ", - "title": "MisterWives - Reflections (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Rizd4rFR6z0", - "title": "Tinashe ft. SchoolBoy Q - 2 On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "beQuJaiWd78", - "title": "Omarion ft. Chris Brown & Jhene Aiko - Post To Be (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oJpv6OzBvno", - "title": "Martin Garrix ft. Usher - Don't Look Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "71qqtDWFVl4", - "title": "Walk The Moon - Shut Up And Dance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lNVeD7CdYQY", - "title": "Taylor Swift - You Are In Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dyygwFpsY7E", - "title": "Taylor Swift - This Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a-vN72B0784", - "title": "Echosmith - Bright (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dK0jVG8BPVA", - "title": "Little Big Town - Girl Crush (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T7Jc_2RAvH4", - "title": "Charlie Puth - See You Again (Piano Demo - Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EubeUnrZr_I", - "title": "Taylor Swift - Begin Again (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "C233y8-aY14", - "title": "Labrinth ft. Emeli Sande - Beneath Your Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_TQN3uV0P6o", - "title": "Ed Sheeran - Drunk (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ER9agIoexhI", - "title": "Fifth Harmony ft. Meghan Trainor - Brave Honest Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kyAxRFUGZek", - "title": "Taylor Swift - I Wish You Would (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iN7jQEpv92I", - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T5-pnoHEpjE", - "title": "Fetty Wap - Trap Queen (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xGPnOpljFHs", - "title": "Gabrielle Aplin - The Power Of Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eFcb5ZbNOWA", - "title": "Kesha - C'mon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bKbBTVSr4ic", - "title": "Christina Perri - The Words (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "50LjlebTog4", - "title": "Tori Kelly - Nobody Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1saC8_UNvyw", - "title": "Justin Bieber - Catching Feelings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AS6miOz7xO0", - "title": "Sia - Big Girls Cry (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "grOUdKT0WxM", - "title": "Nicki Minaj ft. Drake - Truffle Butter (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eHMdPOANY2k", - "title": "Trevor Moran - Echo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kwt6kooMFj0", - "title": "Taylor Swift - Stay Stay Stay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zQbJoIuPUHE", - "title": "Tove Lo - Talking Body (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ral1tVPTNBA", - "title": "James Bay - Hold Back The River (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3ZhUDuqg3rY", - "title": "Chris Brown ft. Benny Benassi - Beautiful People (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Qzq2qLUWQ9M", - "title": "One Direction - No Control (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L7glEAQPKwY", - "title": "MKTO - American Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Gart4SIWnX0", - "title": "Omi - Cheerleader (Felix Jaehn Edit) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YSSBHGJJsUM", - "title": "Karmin - Hello (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TuJiMlvWXiA", - "title": "Neon Trees - Animal (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UUIQT4zhylo", - "title": "Of Monsters And Men - Mountain Sound (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o-ZkwckHNbY", - "title": "Nicki Minaj ft. Lil Wayne - High School (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4Upnkdnzm00", - "title": "Lana Del Rey - Ride (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wTUoMxzZfh0", - "title": "Iggy Azalea ft. Jennifer Hudson - Trouble (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lhy2ej-ccKw", - "title": "Charlene Soraia - Wherever You Will Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UC28wPomKU4", - "title": "Jessie J - Who You Are (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "da1K-sP_Nys", - "title": "Katy Perry - Part Of Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mWaO4gvjG0E", - "title": "Pitbull ft. Ne-Yo - Time Of Our Lives (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LOd3u6FtkAk", - "title": "Adele - Rolling In The Deep (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_DomMYVDEP0", - "title": "Nick Jonas - Chains (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7O0aHoVMVMI", - "title": "Cashmere Cat ft. Ariana Grande - Adore (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "52ejQRox9l4", - "title": "Taylor Swift - All You Had To Do Was Stay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mawPX4US1l4", - "title": "Meghan Trainor ft. John Legend - Like I'm Gonna Lose You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pMfSc5VSp6o", - "title": "Conor Maynard - Talking About (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8rUxhnPcbZ8", - "title": "The Living Tombstone - Five Nights At Freddy's (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "USdZX_vdP4g", - "title": "Jason Derulo - Want To Want Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qBmP6oM1iMg", - "title": "The Weeknd - Wicked Games (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nfH5F0vqzuQ", - "title": "Little Mix - Wings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yKHSriEb1YI", - "title": "Fifth Harmony - Reflection (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xqfxOGv8bFQ", - "title": "Shawn Mendes - A Little Too Much (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7T3FkcLgTzU", - "title": "Ed Sheeran - Nina (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bWq04YH6-mU", - "title": "Karmin - Brokenhearted (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-VxukGeyqGQ", - "title": "David Guetta ft. Chris Brown and Lil Wayne - I Can Only Imagine (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NfJXKVq3bTo", - "title": "Chris Brown - Don't Wake Me Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "VILLFThUZko", - "title": "Carly Rae Jepsen - I Really Like You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GUC5suaH3Gk", - "title": "Taylor Swift - New Romantics (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6SyizvBTUvs", - "title": "Marina And The Diamonds - How To Be A Heartbreaker (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XTy69A8XNeM", - "title": "Of Monsters And Men - Little Talks (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RN-9g7OISl4", - "title": "David Guetta ft. Nicki Minaj - Turn Me On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fwgqfgxQoY0", - "title": "One Direction - Ready To Run (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7DumTG7688U", - "title": "Usher - I Don't Mind ft. Juicy J (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ft6c9v-_SsM", - "title": "Skylar Grey - I Know You (from 'Fifty Shades Of Grey) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UuGannvDvQk", - "title": "Sam Smith - Lay Me Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WQTTfkzWvGI", - "title": "The Wanted - Chasing The Sun (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lMqvq9RbxPs", - "title": "One Direction - Girl Almighty (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qvh7rnqx-VI", - "title": "One Direction - Act My Age (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "57DTPfV3DPI", - "title": "Ed Sheeran - Tenerife Sea (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rz9awqNMlBM", - "title": "Emeli Sande ft. Naughty Boy - Daddy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n00SsD-7iZw", - "title": "Big Sean and E-40 - I Don't F**k With You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yCYin3gFFCE", - "title": "Flo Rida - GDFR ft. Sage The Gemini and Lookas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5_iMzBnR3tE", - "title": "Glee Cast - Teenage Dream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HOfKC4FGM7I", - "title": "The Weeknd - Where You Belong (from 'Fifty Shades of Grey' Soundtrack) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fMGenDZUjdo", - "title": "Fifth Harmony - Worth It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1CR59qSi7Ic", - "title": "Taylor Swift - I Know Places (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hAwR8Mx8W44", - "title": "Maroon 5 ft. Christina Aguilera - Moves Like Jagger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZGoB5KmzMhs", - "title": "Rihanna - Only Girl (In The World) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UEIUWpmXqQY", - "title": "Marlon Roudette - When The Beat Drops Out (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QJmL664nLhA", - "title": "Hercules - I Won't Say (I'm In Love) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xswH-FZvwBQ", - "title": "Hercules - Go The Distance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IofYeQY1Ixk", - "title": "Years & Years - King (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i8_pkJv6pzs", - "title": "One Direction - Where Do Broken Hearts Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2OfWJZPK3X8", - "title": "Iggy Azalea - Iggy Szn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Sj50cDz-SLo", - "title": "Taylor Swift - How You Get The Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BPRoNqB2XK8", - "title": "Adele - Someone Like You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n_h8y2mzpns", - "title": "Avicii - The Nights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2lxEzF2pLa0", - "title": "Little Mix - About The Boy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BsjLCISj4kU", - "title": "Leona Lewis - Bleeding Love (Valentine's Day Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZqY3eONjX5k", - "title": "Taylor Swift - Love Story (Backing Track)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e_M7OqVox5g", - "title": "Jason Derulo - It Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rKrWfymxj5o", - "title": "One Direction - Live While We're Young (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "a-czxmb-rk8", - "title": "Nicki Minaj - Grand Piano (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_CXLHLs1NBs", - "title": "Taylor Swift - Clean (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FLgWioSXAQU", - "title": "Tangled - I See The Light (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "24F76gV_F8c", - "title": "Fall Out Boy - Immortals (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HemnO1qL1xA", - "title": "Madison Beer - Unbreakable (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z0iCPfzgPqA", - "title": "Ne-Yo - Coming With You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7_h4ZHgURAA", - "title": "DJ Fresh ft. Ella Eyre - Gravity (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nxjtaaYWtQE", - "title": "The Weeknd - Earned It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PqX8aA6w4bM", - "title": "Maroon 5 - Sugar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "A7X9_O35rfs", - "title": "Taylor Swift - Wildest Dreams (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yLtefnGc2Pc", - "title": "Kelly Clarkson - Heartbeat Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cDIXDomrK08", - "title": "Lorde - Team (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qoAsOuG4nW4", - "title": "Rixton - Hotel Ceiling (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IOowGOU1BXc", - "title": "Ella Henderson - Yours (Valentine's Day Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YvzTGjEvFW0", - "title": "Charli XCX ft. Rita Ora - Doing It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "y0JtrETzs0w", - "title": "Chris Brown ft. Tyga - Ayo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FOi-1F4jg5o", - "title": "5 Seconds Of Summer - What I Like About You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wD88yyVSdZU", - "title": "Bea Miller - Young Blood (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mIqMMATs3R4", - "title": "Sia - Elastic Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "g_SdqrUolO4", - "title": "Ed Sheeran - I'm A Mess (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d-8UGc7I3Uo", - "title": "Fifth Harmony - Miss Movin' On (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dxE-FrLAMuI", - "title": "R5 - (I Can't) Forget About You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yxFlo4VoaTI", - "title": "Gwen Stefani - Baby Don't Lie (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tW0UjwMOQz8", - "title": "Ellie Goulding - Love Me Like You Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KrvDbVwk9Ug", - "title": "Demi Lovato - Nightingale (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hjpfQQwlznA", - "title": "Taylor Swift - Style (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AYlWJ1TZwlM", - "title": "Jessie J - Masterpiece (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "9_5dpfd0ASI", - "title": "Colbie Caillat - Try (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5p63JJ7uH6k", - "title": "Demi Lovato - Neon Lights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o_sbV5vH4aM", - "title": "James Newton Howard and Jennifer Lawrence - The Hanging Tree (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Xj5vxhFRR2Q", - "title": "One Direction - Fool's Gold (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yqubSu9RbSM", - "title": "Christina Perri - Human (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7FJQCZ8W7zE", - "title": "Olly Murs ft. Demi Lovato - Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jv4tOx4btE8", - "title": "Ben Haenow - Something I Need (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "AvSdV7nh4J4", - "title": "Taylor Swift - Wonderland (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cT-oxsG9fWE", - "title": "Taylor Swift - Bad Blood (1989 Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MMIb5xQHO8s", - "title": "One Direction - Through The Dark (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Rvo_tZPcC1A", - "title": "Imagine Dragons - On Top Of The World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7EiHLU8v4mc", - "title": "Meghan Trainor - Title (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0Qn0loeMRQs", - "title": "DJ Fresh ft. Rita Ora - Hot Right Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hlhCJAmumc0", - "title": "Nicki Minaj ft. Rihanna - Fly (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Im0f_dRnYVU", - "title": "Ariana Grande ft. Big Sean - Right There (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rBg_nhOrE4I", - "title": "One Direction - 18 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Y1DrSBG50NY", - "title": "Nick Jonas - Jealous (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SJVH11MFY7I", - "title": "P!nk ft. Nate Ruess - Just Give Me A Reason (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3y0-7ykbzKU", - "title": "High School Musical 3 - Right Here, Right Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iFPPmwJ_SAc", - "title": "Fifth Harmony - Sledgehammer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LcBlxXqFUJk", - "title": "One Direction - Stockholm Syndrome (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "umsh3W514-c", - "title": "High School Musical - Stick To The Status Quo (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oH9M-ZgctGk", - "title": "Nicki Minaj ft. Skylar Grey - Bed Of Lies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "f3vmxzaH6yI", - "title": "Pink - F**kin' Perfect (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "13Tho7I-5y8", - "title": "Coldplay - Christmas Lights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Noenqxgd7T0", - "title": "Pink - Raise Your Glass (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gS34vxm-Q8g", - "title": "High School Musical 3 - Can I Have This Dance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FEZ5GOCcC0k", - "title": "Band Aid - Do They Know It's Christmas? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yIeef8WNQ6U", - "title": "Mariah Carey - Santa Claus Is Comin' To Town (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u0yAWWpqFHQ", - "title": "Bobby Helms - Jingle Bell Rock (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Y3-YxV_7SeY", - "title": "Chris Rea - Driving Home For Christmas (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dETgVcucAxo", - "title": "Brenda Lee - Rockin' Around The Christmas Tree (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X9Tzv0fiZnk", - "title": "Sabrina Carpenter - Silver Nights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bGEOuQHv6Ic", - "title": "Tom Odell - Real Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aTrT5xfQILM", - "title": "Wham! - Last Christmas (Pudding Mix Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MOmHq7yHF1Q", - "title": "Enrique Iglesias ft. Nicole Scherzinger - Heartbeat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t0q4bUW45zM", - "title": "High School Musical - We're All In This Together (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vjSQ-10eRD4", - "title": "High School Musical - Start Of Something New (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e-ChngqFCe0", - "title": "Kelly Clarkson - People Like Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1HvR0ZAB_Xs", - "title": "Shakin' Stevens - Merry Christmas Everyone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1xXRWbS4QlU", - "title": "Shawn Mendes - Show You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nprRe7SH8U0", - "title": "Swedish House Mafia - Don't You Worry Child (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wnWKoEATxh8", - "title": "The Little Mermaid - Part Of Your World (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dWoGvNofjbM", - "title": "Beauty And The Beast - Tale As Old As Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X6RQy_6q_Wc", - "title": "Becky G - Can't Stop Dancing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IQs4p65sgLQ", - "title": "Sam Smith - Like I Can (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l0Gr35DNFeA", - "title": "Trey Songz - Simply Amazing (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EuOp_2Zcr8E", - "title": "Taylor Swift - Blank Space (Backing Track)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "aoVtLhhPtSc", - "title": "Tangled - When Will My Life Begin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "npavbyUY-iQ", - "title": "Nicki Minaj - Only ft. Drake, Lil Wayne, Chris Brown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RdhyabRpbxQ", - "title": "Selena Gomez - The Heart Wants What It Wants (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sWeQn4uBEyQ", - "title": "Meghan Trainor - Lips Are Movin (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "n6MGWXqPGLI", - "title": "Little Mix - Cannonball (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WDOjTDQPOTA", - "title": "Iggy Azalea ft. MO - Beg For It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dkFprYzkj-c", - "title": "Tove Lo - Habits (Stay High) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R4ugqhEZfcI", - "title": "Taylor Swift - Speak Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CSB0qayOf00", - "title": "Imagine Dragons - I Bet My Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "exr4TFXsKeY", - "title": "Ariana Grande ft. The Weeknd - Love Me Harder (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qW34tGhKCd4", - "title": "Take That - These Days (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JIDBnlp2AIw", - "title": "Melanie Martinez - Carousel (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fDpms3alF5o", - "title": "Calvin Harris ft. Ellie Goulding - Outside (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6QSsqDgUn20", - "title": "Tulisa - Living Without You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JYHtUJ8IRss", - "title": "Union J - You Got It All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oXQkmMzwE8M", - "title": "Bring Me The Horizon - Drown (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w8m7vg9BCaM", - "title": "Bastille - Torn Apart (Bastille VS. Grades) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-VaK3fA0MLk", - "title": "Taylor Swift - Welcome To New York (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GhkyN4wn0pQ", - "title": "Ariana Grande - Just A Little Bit Of Your Heart (Valentine's Day Karaoke)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rFfsmRca5SA", - "title": "Oliver Heldens ft. KStewart - Last All Night (Koala) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GQ6URuvL8R8", - "title": "Taylor Swift - Out Of The Woods (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vBm8NMIxjWY", - "title": "Olly Murs ft. Travie McCoy - Wrapped Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nL9fXL1K2X8", - "title": "Kendrick Lamar - i (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HiNNU1yNmZ0", - "title": "Pink - Blow Me (One Last Kiss) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UvyKFvSlYjk", - "title": "McBusted - Air Guitar (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lGCvdDoby2w", - "title": "Avicii ft. Robbie Williams - The Days (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t618KFLRzo8", - "title": "The Script ft. Will.I.Am - Hall Of Fame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YwP9YSnOayk", - "title": "High School Musical - Breaking Free (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "i4Rxx_W34aM", - "title": "The Addams Family Theme Song (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZdJ88cvxyb0", - "title": "Drake ft. Rihanna - Take Care (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HH0GvxqzZXE", - "title": "Jessie J - Who's Laughing Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hwjzQ25cOdM", - "title": "Clean Bandit - Real Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vq9GUJnBJRc", - "title": "Taylor Swift - Red (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DIdYR6XUj0o", - "title": "Cheryl Cole - Call My Name (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s4zdE6vw8dc", - "title": "Sabrina Carpenter - Can't Blame A Girl For Trying (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YPANAPBjP0c", - "title": "Jessie J and 2 Chainz - Burnin' Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "euAnSu99z1c", - "title": "Taylor Swift - State Of Grace (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "50qQwM_JcPE", - "title": "Cheryl - I Don't Care (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KDbafD4FQRk", - "title": "Emeli Sandรฉ - Read All About It Pt. III (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NAOwdpLvJPU", - "title": "Maroon 5 ft. Wiz Khalifa - Payphone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4i_EpEJqbRw", - "title": "The Veronicas - You Ruin Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s2GEl7Ple9U", - "title": "Wretch 32 - 6 Words (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OFrRFmfq0l4", - "title": "Curtis Stigers and The Forest Rangers - This Life (Sons Of Anarchy Theme) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t4p3nvGWOB4", - "title": "One Direction - Steal My Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IhSQJ-yJYI8", - "title": "Lorde - Yellow Flicker Beat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "13yP4A2WE-M", - "title": "One Direction - You and I (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ny2EbG0ddx4", - "title": "Meghan Trainor - Dear Future Husband (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rSWHCZoX2mE", - "title": "Alicia Keys - Girl On Fire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3X9bDL8hHR0", - "title": "Alesso and Tove Lo - Heroes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HZEIK--lDkc", - "title": "The Vamps - Hurricane (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pnHEAUuvVoE", - "title": "Jennifer Lopez and Iggy Azalea - Booty (Remix) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QA0aJNsAq8A", - "title": "Troye Sivan - Happy Little Pill (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Y53kOdnjWec", - "title": "Echosmith - Cool Kids (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6-cSmlY1t60", - "title": "Cher Lloyd - Swagger Jagger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gKjIiaAXfDs", - "title": "The Police - Every Breath You Take (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1EFhj_ofcnw", - "title": "Fall Out Boy - Centuries (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YsDNmRF-E1c", - "title": "George Ezra - Blame It On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Bx1nxiMV5Zc", - "title": "Nelly Furtado - Try (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3xtbMy_hcY4", - "title": "Shawn Mendes - Life Of The Party (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T8NQAl6fFmQ", - "title": "Fifth Harmony - BO$$ (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "toHUpXZRgTQ", - "title": "Gotye and Kimbra - Somebody That I Used To Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sd3UJLIxyas", - "title": "Pitbull and John Ryan - Fireball (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SI2E05Dad9M", - "title": "Calvin Harris and John Newman - Blame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ic76QuFskME", - "title": "Melanie Martinez - Dollhouse (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XWriQS9yEug", - "title": "Jeremih and YG - Don't Tell Em (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DV9RYBcnr7s", - "title": "Chris Brown - X (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XZzfLl7M1oE", - "title": "Zendaya - Replay (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XcZX89Z0nVA", - "title": "Sam Smith - I'm Not The Only One (Classic Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "R1ug4G9JHOA", - "title": "Maroon 5 - Animals (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CYrZ6QOrrsg", - "title": "Charli XCX - Break The Rules (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u2zxuW5nN5E", - "title": "Iggy Azalea and T.I. - Change Your Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l-hN9wzbPJE", - "title": "Cee Lo Green - Forget You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-i5MU14JLdw", - "title": "Taylor Swift - Shake It Off (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "77P-hroYzLE", - "title": "Professor Green and Tori Kelly - Lullaby (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0ZZL5nj8fVo", - "title": "Damien Rice - Cannonball (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vLMMYprCNVk", - "title": "Katy Perry - This Is How We Do (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EpAo04PEshQ", - "title": "Ella Eyre - Comeback (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6cjnk0r_63k", - "title": "Ella Henderson - Glow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RLSxxKyw4Tk", - "title": "Becky G - Shower (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xpo4FUydnMM", - "title": "Ariana Grande and Big Sean - Best Mistake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Del8tBjZm5I", - "title": "Nicki Minaj - Anaconda (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j3zBJPk0Jtk", - "title": "Taylor Swift and Ed Sheeran - Everything Has Changed (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z5la7qf4EbI", - "title": "Iggy Azalea - Bounce (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Dd9W3PthynU", - "title": "Ed Sheeran - Thinking Out Loud (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wn1I-FXlkuo", - "title": "Fuse ODG and Angel - T.I.N.A. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fOMmJWmKkBk", - "title": "5 Seconds Of Summer - Voodoo Doll (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zjEuYztBbBo", - "title": "Iggy Azalea and Rita Ora - Black Widow (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "32LB2DR_JM0", - "title": "David Guetta ft. Sia - Titanium (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UxVpPdd7TVQ", - "title": "Corinne Bailey Rae - Like A Star (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "KJf5S46Jv8A", - "title": "Juicy J, Wiz Khalifa, Ty Dolla $ign - Shell Shocked (TMNT Theme) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "K-riKCPdhVc", - "title": "Lilly Wood and Robin Schulz - Prayer In C (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jlui69ARZEE", - "title": "G.R.L. - Ugly Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0ycVgd7YleI", - "title": "Coldplay - The Scientist (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rmQ_n0rJ7JE", - "title": "Frozen - For The First Time In Forever (Idina Menzel and Kristen Bell) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "u1OG4gBcPaA", - "title": "Jessie J, Ariana Grande and Nicki Minaj - Bang Bang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "m3dSO95AALI", - "title": "Meghan Trainor - All About That Bass (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QoASq_f-SSs", - "title": "They Might Be Giants - Boss Of Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LRcXnBQ_nsk", - "title": "Lucy Spraggan - Someone (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jhNLW2_Oejg", - "title": "DJ Fresh and Ellie Goulding - Flashlight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EQ2TjiP6ZcA", - "title": "Rixton - Wait On Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_4KETuTveLA", - "title": "The Script - Superheroes (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o68oHN_opVQ", - "title": "Bars and Melody - Hopeful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7SadKnEYzMI", - "title": "Maverick Sabre - Emotion (Ain't Nobody) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "XpXe2mXmhp0", - "title": "Ed Sheeran - Photograph (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z2jPqqpNq0A", - "title": "Melissa Steel and Popcaan - Kisses For Breakfast (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2v-PoJdMsfg", - "title": "Naughty Boy and Sam Romans - Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wo5pP2x5sh4", - "title": "Chris Brown and Usher and Rick Ross - New Flame (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MwAY-Cx4VAI", - "title": "Ed Sheeran - Don't (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ifCAfAzOBJM", - "title": "Frozen - Let It Go (Idina Menzel) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uIJUBnf3sRU", - "title": "5 Seconds Of Summer - Heartbreak Girl (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "O0Jq_xygFS0", - "title": "5 Seconds Of Summer - Beside You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z-mdz2aKPgE", - "title": "Union J - Tonight (We Live Forever) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EevP04l97PA", - "title": "Cher Lloyd - Bind Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L2YJD9urLdA", - "title": "Ariana Grande and Zedd - Break Free (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0QA5RuYP22Y", - "title": "5 Seconds Of Summer - Amnesia (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7mQS9bI1640", - "title": "Ella Eyre - If I Go (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zrcywPrIr9k", - "title": "Charli XCX - Boom Clap (From 'The Fault In Our Stars') (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lumFjOzdh0E", - "title": "Maroon 5 - Maps (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ABBGBCGKDm4", - "title": "T.I. and Iggy Azalea - No Mediocre (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "T3LzwxVpm7o", - "title": "Jess Glynne - Right Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kt0Bv3RSAL8", - "title": "Matrix & Futurebound and Tanya Lacey - Don't Look Back (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "P2C0fZLGYSo", - "title": "Little Mix - Salute (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TLHJWLJ6kE0", - "title": "Ed Sheeran - The Man (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nWR9KwCCdok", - "title": "MKTO - Classic (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZpyYGysTGHI", - "title": "2 Chainz and Wiz Khalifa - We Own It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pRWW6FENG7o", - "title": "Armin Van Buuren - This Is What It Feels Like (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Df0E9H2PUCA", - "title": "Cheryl Cole and Tinie Tempah - Crazy Stupid Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s2gD1jwjU_M", - "title": "Jason Derulo and Snoop Dogg - Wiggle (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nuA_oDeq-i0", - "title": "Lana Del Rey - Born To Die (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QQre5RbiyGM", - "title": "Magic! - Rude (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MaoUGscvHOU", - "title": "Iggy Azalea - Work (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ly9ot1bTEhE", - "title": "David Guetta and Ne-Yo and Akon - Play Hard (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lfm5wEn08h0", - "title": "Pixie Lott - Lay Me Down (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LkuqdAAG8JM", - "title": "Neon Jungle - Louder (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0vjO6_uc__A", - "title": "The Vamps and Demi Lovato - Somebody To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1wWwSJ8tUyE", - "title": "Cher Lloyd - Human (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ohg5_yH0fQ8", - "title": "5 Seconds Of Summer and Scott Mills - Hearts Upon Our Sleeve (World Cup 2014 Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2Uy1smeoEZo", - "title": "Jennifer Lopez - First Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NK7Prd-tJUk", - "title": "The Common Linnets - Calm After The Storm (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3eWhaHn_6hE", - "title": "Nicki Minaj - Pills N Potions (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZXiunLg67Dw", - "title": "Will.I.Am and Cody Wise - It's My Birthday (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZnjXy97P7lY", - "title": "DJ Snake and Lil Jon - Turn Down For What (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "2jcPA9-BNmQ", - "title": "Nicole Scherzinger - Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eO3m7GK9DKU", - "title": "Shakira and Carlinhos Brown - La La La (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zepWe58eKVE", - "title": "Little Mix - Change Your Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qXLbMCaW8AU", - "title": "Tiesto and Matthew Koma - Wasted (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sNuLpPuWM68", - "title": "Paloma Faith - Only Love Can Hurt Like This (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "X3k7kLJ9p_I", - "title": "5 Seconds Of Summer - Good Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "sndK-GAOLPM", - "title": "Birdy - Skinny Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CioqlHi-2b4", - "title": "George Ezra - Budapest (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Z1Uh8Gxxci4", - "title": "JLS - Love You More (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WPRJlC9h8D0", - "title": "Ed Sheeran - Lego House (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mHT7qO-cZbo", - "title": "Coldplay - A Sky Full Of Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YXVxusIRT5A", - "title": "Ariana Grande and Iggy Azalea - Problem (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7216Gq7Gk8o", - "title": "Ben Howard - Only Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fyRdIzoUiqg", - "title": "5 Seconds Of Summer - Don't Stop (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NEH_jPXDOMA", - "title": "Chris Brown and Justin Bieber - Next To You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rR_tkAIIFXE", - "title": "Lil Twist and Justin Bieber and Miley Cyrus - Twerk (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "s2YDvHj4rEE", - "title": "Tove Lo and Hippie Sabotage - Stay High (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7e0P-3OC5jM", - "title": "Regina Spektor - You've Got Time (Karaoke Version) (OITNB Theme)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ey6wngxuWcM", - "title": "Rixton - Me And My Broken Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "hET7cow11KQ", - "title": "Union J - Carry You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ZIduCDtNICU", - "title": "Lana Del Rey - West Coast (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PAv5xhWR2NU", - "title": "Ella Henderson - Ghost (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Oo1qfMufvx4", - "title": "OneRepublic - Love Runs Out (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xMuNX6Za6F4", - "title": "Nelly - Hey Porsche (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LOtANEwl_74", - "title": "Alicia Keys and Kendrick Lamar - It's On Again (Karaoke Version) from 'The Amazing Spider-Man 2'", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "UdxPKQ0_PdE", - "title": "Jason Mraz - I Won't Give Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ASCRuBkjvGY", - "title": "Ed Sheeran - SING (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5Fm8Wi9sYAU", - "title": "Fall Out Boy - My Songs Know What You Did In The Dark (Light Em Up) [Karaoke Version]", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Hh_9KtUL3hU", - "title": "Kelly Clarkson - Catch My Breath (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WMcNsTdCqwk", - "title": "The 1975 - Chocolate (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yox8cYUa8ks", - "title": "Nicole Scherzinger - Don't Hold Your Breath (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4mBsRpC1Ajc", - "title": "Klangkarussell and Will Heard - Sonnentanz (Sun Don't Shine) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "DvBvNnzwdzU", - "title": "Kelly Clarkson - Mr Know It All (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3dD3hI6cw18", - "title": "Clean Bandit and Sharna Bass - Extraordinary (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QbpxigTbPaw", - "title": "Rudimental and Ella Eyre - Waiting All Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ThDF47voqJs", - "title": "Will.I.Am and Justin Bieber - #thatPOWER (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "xO3u3T8ztsA", - "title": "Justin Bieber and Nicki Minaj - Beauty And A Beat (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "t4ePY7LqFV4", - "title": "Ed Sheeran - The A Team (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bTRwtUrggKs", - "title": "Mr. Probz and Robin Schulz - Waves (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "I2rvzgyMDPI", - "title": "Rita Ora and Tinie Tempah - R.I.P. (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NAukkfuuCu4", - "title": "Justin Bieber and Big Sean - As Long as You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7C8034DlmIM", - "title": "Sam Smith - Stay With Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GZ_ROLrdvPI", - "title": "Jessie J - Domino (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kr8wPkdHFA0", - "title": "John Legend - All of Me (Karaoke With Backing Vocals)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "5rCYIi0-NEo", - "title": "Cash Cash and Bebe Rexha - Take Me Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D-NwmaRLAnc", - "title": "Little Mix - Word Up (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RxXWFl8Fmk4", - "title": "Foxes - Holding Onto Heaven (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "j1V33b2ZEIo", - "title": "Christina Perri - A Thousand Years (Karaoke With Backing Vocals)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M355EDbE-oE", - "title": "Calvin Harris - Summer (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b3iox_qUaUE", - "title": "Sia - Chandelier (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "LYI2Gwxqiag", - "title": "Justin Bieber - Boyfriend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7DzQs7dpNL8", - "title": "Rihanna - Diamonds (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "dFGokH0hG_8", - "title": "Fuse ODG and Sean Paul - Dangerous Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "e76TSYl5T1A", - "title": "Chris Brown and Aaliyah - Don't Think They Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QW48JauNXww", - "title": "Pitbull and G. R.L. - Wild Wild Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "v1u9cPBBiKI", - "title": "Usher - Scream (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ia8kqGdYmKw", - "title": "Taylor Swift - 22 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "bi0hyLXusjo", - "title": "Goo Goo Dolls - Iris (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zzpeqH9wzeo", - "title": "Usher - Climax (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yVu-4OAcMI0", - "title": "Elyar Fox - A Billion Girls (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "IW0EU6Ge5SE", - "title": "Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pbPV7a-u3wM", - "title": "Rita Ora - How We Do (Party)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FbKx9g6oyvw", - "title": "Paramore - Now (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "L0u8R04l4Mk", - "title": "Rita Ora - Shine Ya Light (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_xncUDtPA_8", - "title": "Olly Murs - Dear Darlin' (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Ug_OM0WzVmA", - "title": "Let Her Go - Passenger (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nrV7e6ASomM", - "title": "Iggy Azalea and Charli Xcx - Fancy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_AN2wQ4Bjao", - "title": "Meridian Dan and Big H and Jme- German Whip (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "HyI18YcqCg8", - "title": "The Vamps - Last Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yVcQMZcXvLQ", - "title": "Afrojack and Wrabel - Ten Feet Tall (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qLkddAcYk_o", - "title": "Britney Spears - Work B***h (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pfi5VycP0ug", - "title": "Ellie Goulding - Beating Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eWJAA6VnN4U", - "title": "Birdy - Wings (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "YJehZXL35lE", - "title": "Kiesza - Hideaway (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7IM-A_tLqq0", - "title": "Union J - Beautiful Life (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6yh1KrT_zEM", - "title": "Avicii - You Make Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vejuDZqIwKg", - "title": "Lucy Spraggan - Tea and Toast (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "jwH1hD0-DoQ", - "title": "Pharrell Williams - Happy (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "fNOywuJ_5KI", - "title": "Lucy Spraggan - Last Night (Beer Fear) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "eGa2T3ilPdU", - "title": "Kylie Minogue - Into the Blue (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3KbcNzvOEj8", - "title": "John Martin - Anywhere for You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lyeHjTwkI-k", - "title": "The Wanted - We Own The Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "-Qh5-CtdqAI", - "title": "Enrique Iglesias and Pitbull - I'm A Freak (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vnONN4Lv3t8", - "title": "Alesso vs OneRepublic - If I Lose Myself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PHfZnrXNyiA", - "title": "Demi Lovato - Skyscraper (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GB2q8fg-ZtI", - "title": "The Vamps - Can We Dance (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1j1ks3ZQrzw", - "title": "Haim - The Wire (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "l1znKeghAXk", - "title": "Macklemore & Ryan Lewis and Mary Lambert - Same Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vJA-pglQTP0", - "title": "Duke Dumont and Jax Jones - I Got U (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "WxMEiEhUwjU", - "title": "Zedd and Hayley Williams - Stay the Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JgTU2aoHigU", - "title": "Taylor Swift - All Too Well (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "483Su5V0wGA", - "title": "Tiรซsto - Red Lights (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "oLc24dxIU_w", - "title": "Lily Allen - Air Balloon (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "MfL3EQaytvs", - "title": "Fuse ODG - Million Pound Girl (Badder Than Bad) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3l0ro3uYvSs", - "title": "Justin Bieber - Heartbreaker (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Rt2vt7U-6jU", - "title": "Matrix & Futurebound and Max Marshall - Control (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "S78RmvtH79Y", - "title": "Miley Cyrus - Wrecking Ball (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z1aF-nGMLc0", - "title": "Calvin Harris and Ellie Goulding - I Need Your Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b9YPBnVx3B0", - "title": "Drake - Trophies (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_ukBxzYp6DA", - "title": "Foxes - Let Go For Tonight (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QzveqpX655M", - "title": "Katy B - Crying For No Reason (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0_I0dpYtZ6Q", - "title": "Lea Michele - Cannonball (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ORc-j7Kxvr8", - "title": "Neon Jungle - Braveheart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "OQVBlJEW2lU", - "title": "Jason Derulo - Trumpets (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Cnz3ayX8dyg", - "title": "Pitbull and Ke$ha - Timber (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7fjomuUR2kM", - "title": "Avicii - Hey Brother (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7GcLZz-jdAE", - "title": "Will.I.Am and Miley Cyrus, French Montana, Wiz Khalifa - Feelin' Myself (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vBd0vSqjkuA", - "title": "Future & Miley Cyrus and Mr Hudson - Real and True (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3Jyg6SD-UVo", - "title": "The Vamps - Wild Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7NhxGVOC4Ww", - "title": "Icona Pop and Charli XCX - I Love It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "z-5-vOEXc40", - "title": "Pink and Lily Allen - True Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w_Bp1T32EUk", - "title": "Jason Derulo - The Other Side (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "wM-C3Z8Nem8", - "title": "DJ Fresh VS Diplo and Dominique Young Unique - Earthquake (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uj6QnzPxEbo", - "title": "Calvin Harris and Ayah Marah - Thinking About You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TwF4DJDKkjU", - "title": "Jason Derulo - Talk Dirty (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Q35XY69y4v0", - "title": "Matt Cardle and Melanie C - Loving You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "M-hN4k999b8", - "title": "Miley Cyrus - We Can't Stop (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "FH4XRaC9Ze0", - "title": "Naughty Boy and Emeli Sandรฉ - Lifted (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "D2CA3imf9Vw", - "title": "Gabz - Lighters (The One) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "6wv_7xyQj2c", - "title": "Selena Gomez - Come And Get It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "1tYTP-uXPlo", - "title": "Icona Pop - All Night (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "nNcTFDHEyes", - "title": "Britney Spears - Ooh La La (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "htDFR5LMfqg", - "title": "Lana Del Rey vs Cedric Gervais - Summertime Sadness (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "b6wXoujOMGw", - "title": "Jessie J - It's My Party (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yCanOK-R6sw", - "title": "Neon Jungle - Trouble (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mdizaRgRTXQ", - "title": "Drake and Majid Jordan - Hold On, We're Going Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "doarFqjcTfg", - "title": "Ellie Goulding - Burn (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ReUUpDpLlhA", - "title": "One Direction - Best Song Ever (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "TCVRimsdsyI", - "title": "Alunageorge - You Know You Like It (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4_EQ0rs6Vqg", - "title": "Leah McFall - I Will Survive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "vh32e2knTF8", - "title": "Britney Spears - Perfume (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "rFzx3VH4vPU", - "title": "Jessie J and Becky G - Excuse My Rude (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "mBkc7uKrczQ", - "title": "Lily Allen - Somewhere Only We Know (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "kF1JFT96oWk", - "title": "Lucy Spraggan - Lighthouse (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gKXuYKQNA08", - "title": "Afrojack and Spree - The Spark (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "d20XBaOnzOY", - "title": "Rudimental and Foxes - Right Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_A-zr1NqOKs", - "title": "Cher Lloyd and T.I. - I Wish (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "QseRWDhVHsg", - "title": "John Newman - Cheating (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Jv7hnWeUmIM", - "title": "Disclosure - F for You (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "JsPFdlBTSx0", - "title": "James Blunt - Bonfire Heart (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "BP-LutXnC24", - "title": "London Grammar - Strong (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "7_TY6EGoozE", - "title": "Lady Gaga - Applause (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RfGCROLwibw", - "title": "Calvin Harris & Alesso and Hurts - Under Control (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "NWWXvzat7lk", - "title": "Rixton - Make Out (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "GGgQgeSx2jg", - "title": "Enrique Iglesias - Heart Attack (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "EhnEONnS2-M", - "title": "Lily Allen - Hard Out Here (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Fe2BkM4Ie5o", - "title": "Lawson - Juliet (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3EG3CfTv4lQ", - "title": "OneRepublic - Counting Stars (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "ejDCjhhWQYo", - "title": "Conor Maynard - R U Crazy? (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "SkwcAhRaEIg", - "title": "Shane Filan - Everything To Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "w54NfoUuhXo", - "title": "Lana Del Rey - Young And Beautiful (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "pNr5LSMXG94", - "title": "The 1975 - The City (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "_W3uKctm9v0", - "title": "Owl City - Good Time (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "RXYFMzmOFiY", - "title": "Sia - Kill And Run (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "4Xi6V-aT1nA", - "title": "Ne-Yo - Let Me Love You (Until You Learn to Love Yourself) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3fXvkCYp-qc", - "title": "Beyoncรฉ and Andre 3000 - Back To Black (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o83nHAszSrQ", - "title": "The Gaslight Anthem - 45 (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "CZ5WFGTjQ8A", - "title": "Macklemore & Ryan Lewis and Ray Dalton - Can't Hold Us (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "0txJDr9G1dk", - "title": "Gabrielle Aplin - Please Don't Say You Love Me (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "yjxk2DrFSgI", - "title": "Afrojack and Chris Brown - As Your Friend (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "tS91oZiNaN8", - "title": "Drake - Started From The Bottom (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "lt7mkYREVEg", - "title": "One Direction - One Way or Another (Teenage Kicks) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "izr_9HpTZaU", - "title": "Chris Brown - Home (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "qx668eVJKeo", - "title": "Macklemore & Ryan Lewis and Wanz - Thrift Shop (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "Nv5boiav3ek", - "title": "Rita Ora - Radioactive (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "gt-psBCXsWo", - "title": "White Noise (in the Style of Disclosure and Alunageorge)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "uqbJDWEAfNo", - "title": "I Could Be The One (in the Style of Avicii and Nicky Romero)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "3u7dyorgyBU", - "title": "Nicole Scherzinger - Boomerang (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "8czby-7FXsc", - "title": "Bingo Players and Far East Movement - Get Up (Rattle) (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "o32l2OpcVzM", - "title": "Sing King Karaoke - Kisses Down Low (in the Style of Kelly Rowland)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "x7oWjR-4aM4", - "title": "Pompeii (in the Style of Bastille)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "16ngyFp4QdY", - "title": "Biffy Clyro - Black Chandelier (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "cQe6D8bwNHA", - "title": "Don't Make Em Like You (in the Style of Ne-Yo and Wiz Khalifa)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "PadpNCw5EFA", - "title": "Your Drums, Your Love (in the Style of Alunageorge)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "zZEy5v8lmcY", - "title": "Rudimental, John Newman and Alex Clare - Not Giving In (Karaoke Version)", - "duration": null, - "upload_date": "NA" - }, - { - "video_id": "iPt5vUHVROI", - "title": "Rudimental and John Newman - Feel The Love (Karaoke Version)", - "duration": null, - "upload_date": "NA" - } - ], - "cached_at": "2025-07-23T20:17:15.426179", - "video_count": 4993 - } - }, - "settings": { - "cache_duration_hours": 168, - "last_updated": "2025-07-26T20:17:15.426193" - }, - "@SingKingKaraoke": [ - { - "title": "Lewis Capaldi - Survive (Karaoke Version)", - "id": "TYEt1y8JzEg" - }, - { - "title": "the JaneDear girls - Good Girls Gone Bad (Karaoke Version)", - "id": "4A6NnXs9WCA" - }, - { - "title": "Justin Bieber - Flatline (Karaoke Version)", - "id": "ZDfs__tnGYc" - }, - { - "title": "One Direction - Another World (Karaoke Version)", - "id": "6qzQH1dxL00" - }, - { - "title": "Spin The Wheel - Your Song Requests Week 8", - "id": "HCbVcvt1TY4" - }, - { - "title": "Traveling Wilburys - End Of The Line (Karaoke Version)", - "id": "hVSwG_dZtBA" - }, - { - "title": "d4vd, Hyunjin - Always Love (Karaoke Version)", - "id": "a-MJCn8EFhQ" - }, - { - "title": "Adrianne Lenker - forwards beckon rebound (Karaoke Version)", - "id": "Duy2bsfNvCg" - }, - { - "title": "Nothing Beats A Jet2 Holiday (Karaoke Version)", - "id": "VJOoefAZkto" - }, - { - "title": "Bailey Zimmerman, Luke Combs - Backup Plan (Karaoke Version)", - "id": "b-AZzJ7eYwM" - }, - { - "title": "Bryson Tiller - Let Em' Know (Karaoke Version)", - "id": "7gVGgUNZlPw" - }, - { - "title": "Benson Boone - Mr Electric Blue (Karaoke Version)", - "id": "ndEtts7dZNw" - }, - { - "title": "GloRilla - Typa (Karaoke Version)", - "id": "Dgog3Vfj2zE" - }, - { - "title": "Cardi B - Outside (Karaoke Version)", - "id": "-fJbQzU2UO8" - }, - { - "title": "Morgan Wallen - Skoal, Chevy, and Browning (Karaoke Version)", - "id": "RLzf9_Krvbg" - }, - { - "title": "Morgan Wallen - I Ain't Comin' Back (feat. Post Malone) (Karaoke Version)", - "id": "WzpvknAn8gs" - }, - { - "title": "JADE - Angel Of My Dreams (Karaoke Version)", - "id": "B__zBVrWP_w" - }, - { - "title": "KAROL G - LATINA FOREVA (Karaoke Version)", - "id": "zApwtjDZLyU" - }, - { - "title": "Morgan Wallen - I Got Better (Karaoke Version)", - "id": "_FCmhcZvkOM" - }, - { - "title": "Ella Langley - weren't for the wind (Karaoke Version)", - "id": "Q7qkKPe4uoM" - }, - { - "title": "Shabrina Leanor - Pendampingmu #TahtaHatiku (Karaoke Version)", - "id": "vb5VDf7-Ios" - }, - { - "title": "Elle King - Before You Met Me (Karaoke Version)", - "id": "fX7DBWyvAYA" - }, - { - "title": "Lorde - Hammer (Karaoke Version)", - "id": "hSsGFyFa_Fk" - }, - { - "title": "Sean Paul - Temperature (Karaoke Version)", - "id": "yHbkL50m6Io" - }, - { - "title": "Bell Biv Devoe - Poison (Karaoke Version)", - "id": "9dJCf8WkohE" - }, - { - "title": "KAROL G - Papasito (Karaoke Version)", - "id": "CglP2MTxxFs" - }, - { - "title": "Benson Boone - Before You (Karaoke Version)", - "id": "DUig07b0_P4" - }, - { - "title": "Forrest Frank - YOUR WAY'S BETTER (Karaoke Version)", - "id": "PQ5vyiXgkvg" - }, - { - "title": "Morgan Wallen - Superman (Karaoke Version)", - "id": "q850gFIULUU" - }, - { - "title": "Earl Agustin - Tibok (Karaoke Version)", - "id": "Bu1itd5ddJE" - }, - { - "title": "PRETTYMUCH - Eyes Off You (Karaoke Version)", - "id": "pjm6AS20IHs" - }, - { - "title": "Lorde - Shapeshifter (Karaoke Version)", - "id": "ElWexx6YqrE" - }, - { - "title": "Keith Sweat, Athena Cage - Nobody (Karaoke Version)", - "id": "IpFFfb97lzY" - }, - { - "title": "The Fray - Look After You (Karaoke Version)", - "id": "yNipRwTEQ10" - }, - { - "title": "MAX, HUH YUNJIN - STUPID IN LOVE (Karaoke Version)", - "id": "Nfz3jImy8Ws" - }, - { - "title": "Justin Bieber - One Less Lonely Girl (Karaoke Version)", - "id": "-O2gI9Qubc8" - }, - { - "title": "Edward Sharpe & The Magnetic Zeros - Home (Karaoke Version)", - "id": "B2KXWCklZtQ" - }, - { - "title": "Penelope Scott - Lotta True Crime (Karaoke Version)", - "id": "6NCGZgFtja0" - }, - { - "title": "Alex G, Emily Yacina - Treehouse (Karaoke Version)", - "id": "CB-AsNusMGI" - }, - { - "title": "Kimya Dawson - You Love Me (Karaoke Version)", - "id": "N--gM6Bi250" - }, - { - "title": "Pat Benatar - Love Is A Battlefield (Karaoke Version)", - "id": "lrmT0BtMUkE" - }, - { - "title": "Towa Bird - Boomerang (Karaoke Version)", - "id": "OniExPZHjwE" - }, - { - "title": "j-hope, GloRilla - Killin' It Girl (Karaoke Version)", - "id": "Jz7YSEVj4is" - }, - { - "title": "Tate McRae - Miss possessive (Karaoke Version)", - "id": "t86fWXcvSJ0" - }, - { - "title": "KATSEYE - Gabriela (Karaoke Version)", - "id": "FCTGfH-fY4s" - }, - { - "title": "Justyna Steczkowska - GAJA - Eurovision Edit (Karaoke Version)", - "id": "-BJOtgLROv4" - }, - { - "title": "JoJo Siwa - Bulletproof (Karaoke Version)", - "id": "ScEVJCzhynw" - }, - { - "title": "Ed Sheeran - Drive (From F1ยฎ The Movie) (Karaoke Version)", - "id": "wiY-HZKJDlw" - }, - { - "title": "CMAT - Take A Sexy Picture Of Me (Karaoke Version)", - "id": "gMgpXfnbSmg" - }, - { - "title": "Hozier - De Selby (Part 1) (Karaoke Version)", - "id": "Sdu54UU8d28" - }, - { - "title": "Gracie Abrams - Blowing Smoke (Karaoke Version)", - "id": "Djq_XVCs8Ng" - }, - { - "title": "Kesha - Your Love Is My Drug (Karaoke Version)", - "id": "qHqG7UA9LYU" - }, - { - "title": "Tom Grennan - This is the Place (Karaoke Version)", - "id": "Etw_x760wiI" - }, - { - "title": "Adrianne Lenker - not a lot, just forever (Karaoke Version)", - "id": "esPsQKFewfM" - }, - { - "title": "Linkin Park - Numb (Karaoke Version)", - "id": "FctRIWObELM" - }, - { - "title": "Morgan Wallen - Just In Case (Karaoke Version)", - "id": "9OhpF17GLEY" - }, - { - "title": "Djo - Basic Being Basic (Karaoke Version)", - "id": "U6sDIv61v3I" - }, - { - "title": "SZA - Normal Girl (Karaoke Version)", - "id": "m2_dakJKePo" - }, - { - "title": "Milky Chance - Stolen Dance (Karaoke Version)", - "id": "Z6NbsBxfHJM" - }, - { - "title": "Jim Brickman, Billy Porter, Jordan Hill - Destiny (Karaoke Version)", - "id": "nzAo20TSGUY" - }, - { - "title": "Tate McRae - Just Keep Watching (From F1ยฎ The Movie) (Karaoke Version)", - "id": "E07j_cbWfkI" - }, - { - "title": "BIGBANG - Fantastic Baby (Karaoke Version)", - "id": "4S2Az8NXEY0" - }, - { - "title": "Bailey Zimmerman, BigXthaPlug - All The Way (Karaoke Version)", - "id": "Ehx5A03da8w" - }, - { - "title": "Don Toliver - No Pole (Karaoke Version)", - "id": "UzWKxDAtg_w" - }, - { - "title": "Coldplay - Sparks (Karaoke Version)", - "id": "OCJ3Nau8Z1U" - }, - { - "title": "Morgan Wallen, Tate McRae - What I Want (Karaoke Version)", - "id": "kp4Zoh5AnME" - }, - { - "title": "Gigi Perez - Fable (Karaoke Version)", - "id": "3LJTrBP-fbk" - }, - { - "title": "Ed Sheeran - Dive (Karaoke Version)", - "id": "SFyCnhoatjQ" - }, - { - "title": "Mariah the Scientist - Spread Thin (Karaoke Version)", - "id": "0u_Lmje3_AI" - }, - { - "title": "Radiohead - Fake Plastic Trees (Karaoke Version)", - "id": "tBBRn2jswm0" - }, - { - "title": "YKNIECE, PLUTO - WHIM WHAMIEE (Karaoke Version)", - "id": "hoe2oo4FI4I" - }, - { - "title": "Jeezy, Akon - Soul Survivor (Karaoke Version)", - "id": "OTztbrXvdvw" - }, - { - "title": "Amerie - 1 Thing (Karaoke Version)", - "id": "epD1O3L3JJk" - }, - { - "title": "Sabrina Carpenter - Manchild (Karaoke Version)", - "id": "EOAILMpVCxk" - }, - { - "title": "Lola Young - One Thing (Karaoke Version)", - "id": "fxaVMaY2-UY" - }, - { - "title": "CeCe Winans - Holy Forever (Karaoke Version)", - "id": "GBSvbXkXxc8" - }, - { - "title": "Benson Boone - Sorry I'm Here For Someone Else (Karaoke Version)", - "id": "P-8I8LqEb_0" - }, - { - "title": "Lauv - Paris in the Rain (Karaoke Version)", - "id": "iFthuxIaIS0" - }, - { - "title": "Lana Del Rey - Bluebird (Karaoke Version)", - "id": "269YF1oOssY" - }, - { - "title": "The Red Clay Strays - Wondering Why (Karaoke Version)", - "id": "-fjEeuaXRUw" - }, - { - "title": "BIGBANG - IF YOU (Karaoke Version)", - "id": "NRsHd27r_jA" - }, - { - "title": "Elliot James Reay - Who Knew Dancing Was A Sin (Karaoke Version)", - "id": "kGqBAMzZkPU" - }, - { - "title": "Jamiroquai - Virtual Insanity (Karaoke Version)", - "id": "dYEC_x4pTEQ" - }, - { - "title": "Cody Johnson, Carrie Underwood - I'm Gonna Love You (Karaoke Version)", - "id": "7XGAnveI8Oc" - }, - { - "title": "Mila J, Ty Dolla $ign - My Main (Karaoke Version)", - "id": "kSpJDKh0jCY" - }, - { - "title": "Akon - Akon's Beautiful Day (Karaoke Version)", - "id": "bBg58zRfGpA" - }, - { - "title": "Sleep Token - Caramel (Karaoke Version)", - "id": "YEvdnVLRJrE" - }, - { - "title": "Gorillaz, Del the Funky Homosapien - Clint Eastwood (Karaoke Version)", - "id": "V-yzRDOJTRU" - }, - { - "title": "PinkPantheress - Illegal (Karaoke Version)", - "id": "P-2MWGQO88I" - }, - { - "title": "Usher, Young Jeezy - Love in This Club (Karaoke Version)", - "id": "4-9pU9QFZLs" - }, - { - "title": "Cup of Joe - Multo (Karaoke Version)", - "id": "ZveLAvHwevs" - }, - { - "title": "The Corrs - Runaway (Karaoke Version)", - "id": "99n84BrbZD4" - }, - { - "title": "JENNIE - Seoul City (Karaoke Version)", - "id": "UWbi6wpNJjg" - }, - { - "title": "Lil Tecca - Dark Thoughts (Karaoke Version)", - "id": "eig3fibYn_g" - }, - { - "title": "Mariah the Scientist - Burning Blue (Karaoke Version)", - "id": "bup5xcZmrtg" - }, - { - "title": "Benson Boone - Mystical Magical (Karaoke Version)", - "id": "TdoSSXQxpT8" - }, - { - "title": "Mรฅns Zelmerlรถw - Heroes (Karaoke Version)", - "id": "u59biCTaClA" - }, - { - "title": "Jessie Murph - Blue Strips (Karaoke Version)", - "id": "WGdJg3HuCdw" - }, - { - "title": "Maroon 5 - Won't Go Home Without You (Karaoke Version)", - "id": "VxTMkOPnSrw" - }, - { - "title": "A$AP Rocky - Sundress (Karaoke Version)", - "id": "bpPDFqU3TIQ" - }, - { - "title": "WizTheMc - Show Me Love (Karaoke Version)", - "id": "nUnYsEGCGRk" - }, - { - "title": "Radiohead - Let Down (Karaoke Version)", - "id": "XkUDVU49EtI" - }, - { - "title": "Chanel - SloMo (Karaoke Version)", - "id": "8KEtGhVAkVU" - }, - { - "title": "Mahmood - Soldi (Karaoke Version)", - "id": "dWV0C-1_gwA" - }, - { - "title": "ROSร‰ - Messy (From F1ยฎ The Movie) (Karaoke Version)", - "id": "M4pMqDtuILc" - }, - { - "title": "Will Smith - Gettin' Jiggy Wit It (Karaoke Version)", - "id": "W2Yw9qYOpzE" - }, - { - "title": "Lorde - What Was That (Karaoke Version)", - "id": "lH9vWbRKMOM" - }, - { - "title": "Drake, Yebba, PARTYNEXTDOOR - DIE TRYING (Karaoke Version)", - "id": "BAnUj3dDg64" - }, - { - "title": "B-Legit, E-40, Suga T, The Click, D-Shott - Captain Save A Hoe (Karaoke Version)", - "id": "US_MJeYea4o" - }, - { - "title": "Rod Wave - Sinners (Karaoke Version)", - "id": "ZyUsYrFqLJk" - }, - { - "title": "ADONXS - Kiss Kiss Goodbye (Karaoke Version)", - "id": "qmyB4dvwv3Q" - }, - { - "title": "KATSEYE - Gnarly (Karaoke Version)", - "id": "owgUu6irRSw" - }, - { - "title": "Laufey - Tough Luck (Karaoke Version)", - "id": "jrvihPThsp4" - }, - { - "title": "Selena Gomez, The Marรญas, benny blanco - Ojos Tristes (Karaoke Version)", - "id": "hFu8kCb4AYQ" - }, - { - "title": "Janet Jackson - Someone To Call My Lover (Karaoke Version)", - "id": "YxBJT2npkFM" - }, - { - "title": "sombr - undressed (Karaoke Version)", - "id": "VCvC3cNvTHk" - }, - { - "title": "Lana Del Rey - Henry, come on (Karaoke Version)", - "id": "TLwn41hYLVM" - }, - { - "title": "Fleetwood Mac - Say You Love Me (Karaoke Version)", - "id": "S5xeIJbANug" - }, - { - "title": "Sergio Dalma - Bailar Pegados (Karaoke Version)", - "id": "lvCsLQ8pAYM" - }, - { - "title": "Morgan Wallen - I'm The Problem (Karaoke Version)", - "id": "CGA3p6HbHZ8" - }, - { - "title": "Connie Francis - Pretty Little Baby - Stereo Mix (Karaoke Version)", - "id": "DMTwDJM_J44" - }, - { - "title": "Ed Sheeran - Azizam (Karaoke Version)", - "id": "Ub8saZM1I_k" - }, - { - "title": "Selena Gomez, benny blanco - How Does It Feel To Be Forgotten (Karaoke Version)", - "id": "gzUQ46R5pMM" - }, - { - "title": "Chic - Le Freak (Karaoke Version)", - "id": "Yaw_dEVHZWw" - }, - { - "title": "Laufey - Silver Lining (Karaoke Version)", - "id": "t3t3hq0Z9XA" - }, - { - "title": "Ariana Grande - past life (Karaoke Version)", - "id": "dB4IHKiz_QY" - }, - { - "title": "MOLIY, Silent Addy, Skillibeng, Shenseea - Shake It To The Max (FLY) - Remix (Karaoke Version)", - "id": "qd7E87OnizY" - }, - { - "title": "Maroon 5, LISA - Priceless (Karaoke Version)", - "id": "HPnr2kcS9HY" - }, - { - "title": "Ariana Grande - intro (end of the world) - extended (Karaoke Version)", - "id": "KbPeFaGASTE" - }, - { - "title": "Rasheeda - My Bubble Gum (Karaoke Version)", - "id": "pF5iNEsG79w" - }, - { - "title": "Marco Mengoni - Due Vite (Karaoke Version)", - "id": "BcnWxhYurds" - }, - { - "title": "Lily Allen - LDN (Karaoke Version)", - "id": "vjucg6FfpFs" - }, - { - "title": "Rob49 - WTHELLY (Karaoke Version)", - "id": "fr69UOYU0DY" - }, - { - "title": "Sam Ryder - SPACE MAN (Karaoke Version)", - "id": "SfTXncyYn4o" - }, - { - "title": "Ariana Grande - warm (Karaoke Version)", - "id": "L8zY5Icfi6U" - }, - { - "title": "Alexander Rybak - Fairytale (Karaoke Version)", - "id": "IB2iAQ1BB8U" - }, - { - "title": "Ariana Grande - dandelion (Karaoke Version)", - "id": "n8KWDKciR10" - }, - { - "title": "Mocedades - Eres Tรบ (Karaoke Version)", - "id": "JYF_9KGY3FU" - }, - { - "title": "Chris Stapleton - Think I'm In Love With You (Karaoke Version)", - "id": "ytHuAifhwzI" - }, - { - "title": "Tyler, The Creator , GloRilla, Sexyy Red, Lil Wayne - Sticky (Karaoke Version)", - "id": "I49_4kilIHw" - }, - { - "title": "Louane - maman (Karaoke Version)", - "id": "RmV1YFAH_bU" - }, - { - "title": "Abor & Tynna - Baller (Karaoke Version)", - "id": "Zz8WqCFWvXU" - }, - { - "title": "Noah Kahan - Northern Attitude (Karaoke Version)", - "id": "ytvtCBX0biY" - }, - { - "title": "Erika Vikman - ICH KOMME (Karaoke Version)", - "id": "pSyILdf2GeM" - }, - { - "title": "Megan Woods - The Truth (Karaoke Version)", - "id": "KAi1_fBE6JI" - }, - { - "title": "Lucio Corsi - Volevo essere un duro (Karaoke Version)", - "id": "i0bcK7S5z_U" - }, - { - "title": "NIKI - Autumn (Karaoke Version)", - "id": "zJMSdpz1aHk" - }, - { - "title": "Melody - Esa Diva (Karaoke Version)", - "id": "i84Js7EGRIM" - }, - { - "title": "Three Days Grace - I Hate Everything About You (Karaoke Version)", - "id": "i_apAljBFlk" - }, - { - "title": "Alex Warren - Burning Down (Karaoke Version)", - "id": "E4GLs-dFKKc" - }, - { - "title": "Damiano David - Next Summer (Karaoke Version)", - "id": "xICe13Qc-pw" - }, - { - "title": "Claude - C'est La Vie (Karaoke Version)", - "id": "_4oYe1UGG_g" - }, - { - "title": "SYML - Where's My Love (Karaoke Version)", - "id": "p4zZarTDKQ0" - }, - { - "title": "JJ - Wasted Love (Karaoke Version)", - "id": "K4xyQb2UlYM" - }, - { - "title": "Tommy Cash - Espresso Macchiato (Karaoke Version)", - "id": "ZuFuZ0AkemM" - }, - { - "title": "Lizzy McAlpine - Spring Into Summer (Karaoke Version)", - "id": "QBirk0XPUpc" - }, - { - "title": "KAJ - Bara Bada Bastu (Karaoke Version)", - "id": "zcrL7culk4k" - }, - { - "title": "Big Thief - Velvet Ring (Karaoke Version)", - "id": "aNhTzKM6v-0" - }, - { - "title": "GELO - Tweaker (Karaoke Version)", - "id": "BAcbWIZxOAg" - }, - { - "title": "GloRilla - Bad Bih 4 Ya (feat. Boston Richey) (Karaoke Version)", - "id": "GzJLjps85UI" - }, - { - "title": "Chappell Roan - The Giver (Karaoke Version)", - "id": "RQPXeqlTpxA" - }, - { - "title": "Adele - To Be Loved (Karaoke Version)", - "id": "fw9-zpPzSfo" - }, - { - "title": "Adele - I Drink Wine (Karaoke Version)", - "id": "FOtf5AmvrTc" - }, - { - "title": "Adele - Water Under the Bridge (Karaoke Version)", - "id": "CVqTspFyg38" - }, - { - "title": "Adele - Turning Tables (Karaoke Version)", - "id": "h0m2SHvEHGw" - }, - { - "title": "Remember Monday - What The Hell Just Happened? (Karaoke Version)", - "id": "GqapSIu4KEE" - }, - { - "title": "Adele - When We Were Young (Karaoke Version)", - "id": "8nsX2lBHKzc" - }, - { - "title": "Adele - Don't You Remember (Karaoke Version)", - "id": "Z9iZW1vIgu0" - }, - { - "title": "Jack Black - Steve's Lava Chicken (Karaoke Version)", - "id": "9pN_cDcDrcA" - }, - { - "title": "Adele - One And Only (Karaoke Version)", - "id": "fuhFVkpVZ3g" - }, - { - "title": "Miriana Conte - SERVING - Eurovision Official Version (Karaoke Version)", - "id": "iurUdBaOCPM" - }, - { - "title": "Adele - Love In The Dark (Karaoke Version)", - "id": "T0AZymFbD3A" - }, - { - "title": "Adele - Remedy (Karaoke Version)", - "id": "tDbU_GwwIMc" - }, - { - "title": "Noah Kahan, Hozier - Northern Attitude (Karaoke Version)", - "id": "w5Zb_46odaI" - }, - { - "title": "Adele - Million Years Ago (Karaoke Version)", - "id": "Nd-ZkNQNkds" - }, - { - "title": "Declan McKenna - Brazil (Karaoke Version)", - "id": "tkzU_UQtaFM" - }, - { - "title": "sombr - back to friends (Karaoke Version)", - "id": "zhhu5Sn8o5c" - }, - { - "title": "Jeff Buckley - Lover, You Should've Come Over (Karaoke Version)", - "id": "6PK0zhi1NyQ" - }, - { - "title": "Calum Scott - Biblical (Karaoke Version)", - "id": "61O0GvBMAqk" - }, - { - "title": "Zach Top - I Never Lie (Karaoke Version)", - "id": "QcLYN-Hbyvk" - }, - { - "title": "Empire Of The Sun - We Are The People (Karaoke Version)", - "id": "K4KRfxk7U5g" - }, - { - "title": "Miley Cyrus - Something Beautiful (Karaoke Version)", - "id": "ROywgQB2Mns" - }, - { - "title": "Ella Mai - Little Things (Karaoke Version)", - "id": "riQfYacxt8M" - }, - { - "title": "George Michael - Father Figure (Karaoke Version)", - "id": "4G2rdVvVG9E" - }, - { - "title": "Adele - Rumour Has It (Karaoke Version)", - "id": "znE56k4vf_w" - }, - { - "title": "Carpenters - There's A Kind Of Hush (Karaoke Version)", - "id": "JmZkLQaWddk" - }, - { - "title": "JENNIE, Dua Lipa - Handlebars (Karaoke Version)", - "id": "KO4aHmpEM2o" - }, - { - "title": "Wicked - What Is This Feeling? - Original Broadway Cast (Karaoke Version)", - "id": "SzI_er_oxVk" - }, - { - "title": "Adele - Hometown Glory (Karaoke Version)", - "id": "_TlVs0GJ2rM" - }, - { - "title": "Bob Dylan - Like a Rolling Stone (Karaoke Version)", - "id": "aGGN8Re59B8" - }, - { - "title": "Adele - Someone Like You (Karaoke Version)", - "id": "_uORhCSX2f8" - }, - { - "title": "Miley Cyrus - End of the World (Karaoke Version)", - "id": "Bz8GBSKwDQI" - }, - { - "title": "Tomo - le poisson steve (Karaoke Version)", - "id": "7Fv2Sdlpk-M" - }, - { - "title": "Daniel Caesar, Rex Orange County - Rearrange My World (Karaoke Version)", - "id": "tKjCAV6-8lo" - }, - { - "title": "JENNIE - twin (Karaoke Version)", - "id": "Bd_QGX0fB34" - }, - { - "title": "Pitbull - Hotel Room Service (Karaoke Version)", - "id": "DocjNb_mg-o" - }, - { - "title": "Ravyn Lenae - Love Me Not (Karaoke Version)", - "id": "sdHKOgllcDw" - }, - { - "title": "Sydney Rose - We Hug Now (Karaoke Version)", - "id": "_K23OQqPWK8" - }, - { - "title": "Lady Gaga - How Bad Do U Want Me (Karaoke Version)", - "id": "K1t0Ml-Acbk" - }, - { - "title": "JENNIE - like JENNIE (Karaoke Version)", - "id": "d_-jC3519xI" - }, - { - "title": "Tate McRae - Revolving door (Karaoke Version)", - "id": "0FAENp7SyaU" - }, - { - "title": "Ariana Grande - twilight zone (Karaoke Version)", - "id": "wzf0Nmz4hjs" - }, - { - "title": "Ariana Grande - Hampstead (Karaoke Version)", - "id": "imwNEeqNNWE" - }, - { - "title": "Malcolm Todd - Chest Pain (I Love) (Karaoke Version)", - "id": "-LsqjSJMyEI" - }, - { - "title": "Alex Warren - Ordinary (Karaoke Version)", - "id": "bFvZbgCghj8" - }, - { - "title": "PARTYNEXTDOOR, Drake - NOKIA (Karaoke Version)", - "id": "PNkeCxYQWoM" - }, - { - "title": "Tamar Braxton, Future - Let Me Know (Karaoke Version)", - "id": "KzvMzlelhaI" - }, - { - "title": "Angie Stone - Wish I Didn't Miss You (Karaoke Version)", - "id": "9EJSbdeNw-g" - }, - { - "title": "Pitbull, T-Pain - Hey Baby (Drop It to the Floor) (Karaoke Version)", - "id": "5lGFzX7iyrY" - }, - { - "title": "Myles Smith - Nice To Meet You (Karaoke Version)", - "id": "yd2vcIyquIs" - }, - { - "title": "Summer Walker - Heart Of A Woman (Karaoke Version)", - "id": "R1ub6OBLtOE" - }, - { - "title": "benny blanco, Selena Gomez - Scared Of Loving You (Karaoke Version)", - "id": "HfGnW9jWJmg" - }, - { - "title": "Adele - Chasing Pavements (Karaoke Version)", - "id": "kmbyk-7v6jg" - }, - { - "title": "Sabrina Carpenter - Busy Woman (Karaoke Version)", - "id": "m3wVeAJNFzA" - }, - { - "title": "Fleetwood Mac - Silver Springs (Karaoke Version)", - "id": "4VBfjChuVm8" - }, - { - "title": "Adele - Hello (Karaoke Version)", - "id": "FTVvjIExtAU" - }, - { - "title": "Stereophonics - Dakota (Karaoke Version)", - "id": "XajTX-fG7W0" - }, - { - "title": "Alexandra Stan - Mr. Saxobeat (Karaoke Version)", - "id": "zgusMLkk40I" - }, - { - "title": "Adele - Set Fire To The Rain (Karaoke Version)", - "id": "Z0klfsQ-7R8" - }, - { - "title": "Chris Brown - Residuals (Karaoke Version)", - "id": "MKfs3OF2jB4" - }, - { - "title": "Lady Gaga - Garden Of Eden (Karaoke Version)", - "id": "Fj1KclOp-Ik" - }, - { - "title": "Givon - TWENTIES (Karaoke Version)", - "id": "pC_Q7vXRaCs" - }, - { - "title": "Adele - Skyfall (Karaoke Version)", - "id": "UadrtR56n6s" - }, - { - "title": "Lil Wayne, Drake - She Will (Karaoke Version)", - "id": "RvQ0lIwi0zo" - }, - { - "title": "JENNIE, Doechii - ExtraL (Karaoke Version)", - "id": "4OvOvwHOMjg" - }, - { - "title": "Charli xcx - party 4 u (Karaoke Version)", - "id": "DscB8zA7Bug" - }, - { - "title": "Chrystal - The Days - NOTION Remix (Karaoke Version)", - "id": "44mqPOJOgU8" - }, - { - "title": "Adele - Easy On Me (Karaoke Version)", - "id": "RZmva8uquiQ" - }, - { - "title": "Chrystal - The Days (Karaoke Version)", - "id": "jKdsBBr-7SY" - }, - { - "title": "Leon Thomas - MUTT (Karaoke Version)", - "id": "5REo18GfifQ" - }, - { - "title": "JENNIE, Dominic Fike - Love Hangover (Karaoke Version)", - "id": "Ml_a7pVg9mU" - }, - { - "title": "Earth, Wind & Fire - Let's Groove (Karaoke Version)", - "id": "dPV5xt_BL9I" - }, - { - "title": "Riley Green - Worst Way (Karaoke Version)", - "id": "Axj2CbCGp5w" - }, - { - "title": "Doechii - Anxiety (Karaoke Version)", - "id": "iIIOeDKfwJw" - }, - { - "title": "Megan Moroney - Tennessee Orange (Karaoke Version)", - "id": "1sBdCvrmepI" - }, - { - "title": "JISOO - earthquake (Karaoke Version)", - "id": "n-aHkg4JTHw" - }, - { - "title": "Monica - Angel of Mine (Karaoke Version)", - "id": "JtEO8Rz_9qI" - }, - { - "title": "Koe Wetzel, Jessie Murph - High Road (Karaoke Version)", - "id": "C2UQh0jbtO4" - }, - { - "title": "Cage The Elephant - Cigarette Daydreams (Karaoke Version)", - "id": "Ao03VOzKeIE" - }, - { - "title": "ZICO, JENNIE - SPOT! (Karaoke Version)", - "id": "nH1Jaccl-ok" - }, - { - "title": "Tate McRae - Sports car (Karaoke Version)", - "id": "kVIpQpSiknE" - }, - { - "title": "Kendrick Lamar - LOVE. FEAT. ZACARI. (Karaoke Version)", - "id": "7pwn5fgU1kA" - }, - { - "title": "Lloyd, Lil Wayne - You (Karaoke Version)", - "id": "AoJVBtAY3fg" - }, - { - "title": "Kendrick Lamar - tv off (feat. lefty gunplay) (Karaoke Version)", - "id": "lZMv6VCsKlg" - }, - { - "title": "Cigarettes After Sex - K. (Karaoke Version)", - "id": "n1Mm8huiZWQ" - }, - { - "title": "keshi - Soft Spot (Karaoke Version)", - "id": "mB3hDzmQRmM" - }, - { - "title": "Kendrick Lamar - DNA. (Karaoke Version)", - "id": "sPCvX34eQAc" - }, - { - "title": "Shakira - Soltera (Karaoke Version)", - "id": "-77D4vVeniE" - }, - { - "title": "SZA - Crybaby (Karaoke Version)", - "id": "xuLlncltyqE" - }, - { - "title": "Kendrick Lamar - Money Trees (Karaoke Version)", - "id": "Lgt_z4rm25I" - }, - { - "title": "Juice WRLD - Empty Out Your Pockets (Karaoke Version)", - "id": "UnjqelSG5V0" - }, - { - "title": "Roberta Flack - The First Time Ever I Saw Your Face (Karaoke Version)", - "id": "ZgaiWFFql38" - }, - { - "title": "Dionela - Marilag (Karaoke Version)", - "id": "4ll9sZl68NQ" - }, - { - "title": "Paramore - Decode - Twilight Soundtrack Version (Karaoke Version)", - "id": "n3HDjAAvhQY" - }, - { - "title": "M.I.A. - Paper Planes (Karaoke Version)", - "id": "8-XsZ78KvoI" - }, - { - "title": "Daniel Caesar - Hold Me Down (Karaoke Version)", - "id": "AtVi5Y5mB7k" - }, - { - "title": "Ariana Grande, Cynthia Erivo - What Is This Feeling? (Karaoke Version)", - "id": "xt1-4bM0KjI" - }, - { - "title": "Noah Kahan - Youโ€™re Gonna Go Far (Karaoke Version)", - "id": "KZU0ASSaZnY" - }, - { - "title": "NIKI - The Apartment We Won't Share (Karaoke Version)", - "id": "WHWbez_c2nI" - }, - { - "title": "Green Day - Last Night on Earth (Karaoke Version)", - "id": "-tTLDTjiNjw" - }, - { - "title": "PARTYNEXTDOOR - M a k e I t T o T h e M o r n i n g (Karaoke Version)", - "id": "WwlFX8BsZZo" - }, - { - "title": "Chappell Roan - Picture You (Karaoke Version)", - "id": "XfxN3twMD2s" - }, - { - "title": "Sam Barber, Avery Anna - Indigo (Karaoke Version)", - "id": "FXmf7OTljg0" - }, - { - "title": "LISA, Doja Cat, RAYE - Born Again (Karaoke Version)", - "id": "4oaNe2qVG-I" - }, - { - "title": "The Weeknd, Playboy Carti - Timeless (Karaoke Version)", - "id": "Jm74pFy9Wtg" - }, - { - "title": "Heidi Montag, Pitbull - I'll Do It (feat. Pitbull) (Karaoke Version)", - "id": "stCswZp2BTI" - }, - { - "title": "Lana Del Rey - Diet Mountain Dew (Karaoke Version)", - "id": "q69n-X6-wz0" - }, - { - "title": "Lady Gaga - Abracadabra (Karaoke Version)", - "id": "ANXnoJStI-g" - }, - { - "title": "Tenxi, Jemsii, Naykilla - Garam & Madu (Sakit Dadaku) (Karaoke Version)", - "id": "XwO7abK_4AY" - }, - { - "title": "The Emotions, Earth, Wind & Fire - Boogie Wonderland (Karaoke Version)", - "id": "oueiBPYcNYo" - }, - { - "title": "Ethel Cain - Strangers (Karaoke Version)", - "id": "xrBJKiYEkhE" - }, - { - "title": "Lana Del Rey - Cinnamon Girl (Karaoke Version)", - "id": "I--9z5AGImA" - }, - { - "title": "Julie Doiron - August 10 (Karaoke Version)", - "id": "gIMVZ9-TIqE" - }, - { - "title": "Teddy Swims - Bad Dreams (Karaoke Version)", - "id": "-tZqXuvQyZc" - }, - { - "title": "JENNIE - ZEN (Karaoke Version)", - "id": "vdQdTyw4O38" - }, - { - "title": "Morgan Wallen - Smile (Karaoke Version)", - "id": "Eq-ceacRCw8" - }, - { - "title": "Jade LeMac - Constellations (Karaoke Version)", - "id": "lehqQDrWMgk" - }, - { - "title": "Bad Bunny - DtMF (Karaoke Version)", - "id": "chgJRSs_WwI" - }, - { - "title": "Bad Bunny - BAILE INoLVIDABLE (Karaoke Version)", - "id": "lfVfcwVPlDw" - }, - { - "title": "Laufey - I Wish You Love (Karaoke Version)", - "id": "OI8rY3hiGXs" - }, - { - "title": "Minnie Riperton - Lovin' You (Karaoke Version)", - "id": "DlkvunK-DZM" - }, - { - "title": "Lauryn Hill - Can't Take My Eyes Off of You - (I Love You Baby) (Karaoke Version)", - "id": "Q5T9QB4Dp-A" - }, - { - "title": "Modern Talking - Cheri Cheri Lady (Karaoke Version)", - "id": "3qD4cjYjrSY" - }, - { - "title": "Megan Moroney - Am I Okay? (Karaoke Version)", - "id": "UFyJGsDqHps" - }, - { - "title": "beabadoobee - the way things go (Karaoke Version)", - "id": "RbZF0jbA6_g" - }, - { - "title": "Heidi Montag - I'll Do It (Karaoke Version)", - "id": "3WUGkKJuylA" - }, - { - "title": "Modern Talking - You're My Heart, You're My Soul (Karaoke Version)", - "id": "ywXl49tfjg0" - }, - { - "title": "BIGBANG - BANG BANG BANG (Karaoke Version)", - "id": "jM92ACYKkog" - }, - { - "title": "Yeng Constantino - Ikaw (Karaoke Version)", - "id": "jWsRwPAGy0A" - }, - { - "title": "Nickelback - Far Away (Karaoke Version)", - "id": "f_HVnKb9i1M" - }, - { - "title": "Lorde - Ribs (Karaoke Version)", - "id": "xtqwAl7cavQ" - }, - { - "title": "Ella Fitzgerald - Misty (Karaoke Version)", - "id": "S02E9JJtvak" - }, - { - "title": "Tyla - PUSH 2 START (Karaoke Version)", - "id": "YuRbsKhX1uw" - }, - { - "title": "System Of A Down - Aerials (Karaoke Version)", - "id": "KRCQKhbsGjA" - }, - { - "title": "Doechii - DENIAL IS A RIVER (Karaoke Version)", - "id": "tvrp4BynsTE" - }, - { - "title": "Damiano David - Born With a Broken Heart (Karaoke Version)", - "id": "8AVQsH3M7rU" - }, - { - "title": "Ed Sheeran - I See Fire (Karaoke Version)", - "id": "2bTVI7R9scs" - }, - { - "title": "Rihanna - Breakin' Dishes (Karaoke Version)", - "id": "ZJAy_jhgfaQ" - }, - { - "title": "Hozier - Do I Wanna Know? - Live At the BBC (Karaoke Version)", - "id": "pVpLD2ME6z8" - }, - { - "title": "Sleepy Hallow - 2055 (Karaoke Version)", - "id": "usi447S2zPw" - }, - { - "title": "Andmesh - Anugerah Terindah (Karaoke Version)", - "id": "sgByahWVAGw" - }, - { - "title": "SZA, Kendrick Lamar - 30 For 30 (Karaoke Version)", - "id": "r5nMSK8FHTc" - }, - { - "title": "beabadoobee - Real Man (Karaoke Version)", - "id": "HsFyMIHqc1k" - }, - { - "title": "Tyler, The Creator, Lola Young - Like Him (Karaoke Version)", - "id": "duaDNulZ4j8" - }, - { - "title": "Flo Rida, Wynter Gordon - Sugar (Karaoke Version)", - "id": "UWn-PVFLCPk" - }, - { - "title": "Ashanti - Only U - No Intro (Karaoke Version)", - "id": "X9Rq0nnSnM8" - }, - { - "title": "Billy Ocean - Love Really Hurts Without You (Karaoke Version)", - "id": "dP2f6-wSQiQ" - }, - { - "title": "SZA - BMF (Karaoke Version)", - "id": "LUIL3MN97MA" - }, - { - "title": "Nelly Furtado - I'm Like A Bird (Karaoke Version)", - "id": "nfx-9IA6Ot8" - }, - { - "title": "Sting - Fields Of Gold (Karaoke Version)", - "id": "9GmqFsWW1ko" - }, - { - "title": "SZA - Drive (Karaoke Version)", - "id": "0AmKR5Dcmuk" - }, - { - "title": "Akon, Eminem - Smack That (Karaoke Version)", - "id": "aUnAmrAGU10" - }, - { - "title": "The Pointer Sisters - I'm So Excited (Karaoke Version)", - "id": "z_twGrqu7ng" - }, - { - "title": "IV OF SPADES - Come Inside Of My Heart (Karaoke Version)", - "id": "MGDsNLZtFCA" - }, - { - "title": "Coldplay - ALL MY LOVE (Karaoke Version)", - "id": "5xgjPdCE6vI" - }, - { - "title": "Selena - Amor Prohibido (Karaoke Version)", - "id": "XfuwWadB08M" - }, - { - "title": "Naughty Boy, Sam Smith - La La La (Karaoke Version)", - "id": "ZTs8WB0XOj4" - }, - { - "title": "Engelbert Humperdinck - The Last Waltz (Karaoke Version)", - "id": "8waL4HAxF2s" - }, - { - "title": "Whitney Houston - You're Still My Man (Karaoke Version)", - "id": "xxJiZadoTk4" - }, - { - "title": "Carpenters - Love Me For What I Am (Karaoke Version)", - "id": "dDczjnWoWuY" - }, - { - "title": "Sam Smith - Money On My Mind (Karaoke Version)", - "id": "P-_dAS-BeWc" - }, - { - "title": "The Beatles - The Long And Winding Road (Karaoke Version)", - "id": "WKe8pNUviDE" - }, - { - "title": "ROSร‰ - toxic till the end (Karaoke Version)", - "id": "AS_oUqHN0QU" - }, - { - "title": "Chase Atlantic - Swim (Karaoke Version)", - "id": "DJgCjTeU4-E" - }, - { - "title": "Matchbox Twenty - Push (Karaoke Version)", - "id": "XutUJ5Vxric" - }, - { - "title": "Morgan Wallen - Love Somebody (Karaoke Version)", - "id": "-irI9uaHeIk" - }, - { - "title": "Cรฉline Dion - I Love You (Karaoke Version)", - "id": "YzuYNcCkLD0" - }, - { - "title": "Lola Amour - Fallen (Karaoke Version)", - "id": "VzJvV_22lHA" - }, - { - "title": "Arctic Monkeys - No. 1 Party Anthem (Karaoke Version)", - "id": "eRN43wlBV6o" - }, - { - "title": "Carpenters - Superstar (Karaoke Version)", - "id": "Jr1HWoQpA0g" - }, - { - "title": "David Bowie - Space Oddity (Karaoke Version)", - "id": "uSMZOFNCUSY" - }, - { - "title": "Gracie Abrams - Mess It Up (Karaoke Version)", - "id": "4Sdc27sG17k" - }, - { - "title": "Linda Ronstadt, Aaron Neville - Don't Know Much (Karaoke Version)", - "id": "MEiZQJFM6UM" - }, - { - "title": "Christina Aguilera - What a Girl Wants (Karaoke Version)", - "id": "fwOEziXz8UQ" - }, - { - "title": "ROSร‰ - Until I Found You (Karaoke Version)", - "id": "lOOnU_L0fLY" - }, - { - "title": "Wicked - The Wizard And I (Karaoke Version)", - "id": "yqLm5nc3M9U" - }, - { - "title": "Queen Naija - Medicine (Karaoke Version)", - "id": "ocXHWlnYNxA" - }, - { - "title": "TV Girl - Lovers Rock (Karaoke Version)", - "id": "MCOg17y-VA0" - }, - { - "title": "Kenny Rogers, Anne Murray - If I Ever Fall in Love Again (Karaoke Version)", - "id": "pU-UmhUQMYw" - }, - { - "title": "Clean Bandit, Demi Lovato - Solo (Karaoke Version)", - "id": "GZ_uka-1hzE" - }, - { - "title": "EYE - Satu Nama Tetap Di Hati (Karaoke Version)", - "id": "BrSIGgBuF1w" - }, - { - "title": "Sheryfa Luna - Il avait les mots (Karaoke Version)", - "id": "1dxQrzuwPNk" - }, - { - "title": "Christina Perri - you are my sunshine (Karaoke Version)", - "id": "oofmut5Rqv8" - }, - { - "title": "Cรฉline Dion - Pour que tu m'aimes encore (Karaoke Version)", - "id": "2qyvu8m3h40" - }, - { - "title": "Restless Heart - When She Cries (Karaoke Version)", - "id": "NjDwK70MEBM" - }, - { - "title": "BTS, Steve Aoki - The Truth Untold (Karaoke Version)", - "id": "5Vuezq_C0ts" - }, - { - "title": "White Lion - When the Children Cry (Karaoke Version)", - "id": "HWoj8tb9YLU" - }, - { - "title": "Train - Marry Me (Karaoke Version)", - "id": "1HcmsGCA-2Y" - }, - { - "title": "Mentissa - Et Bam (Karaoke Version)", - "id": "ofCff4jBsug" - }, - { - "title": "Lauryn Hill - Ex-Factor (Karaoke Version)", - "id": "AL8DYrpvalI" - }, - { - "title": "TINI - Te Olvidarรฉ (Karaoke Version)", - "id": "--x5_XZspCE" - }, - { - "title": "Philharmonia Orchestra, Laufey - Let You Break My Heart Again (Karaoke Version)", - "id": "cK2kVb8BMGU" - }, - { - "title": "LE SSERAFIM - CRAZY (Karaoke Version)", - "id": "T9hKNO2hJE8" - }, - { - "title": "Roy Orbison - Oh, Pretty Woman (Karaoke Version)", - "id": "skIuixj9wEM" - }, - { - "title": "Don Toliver - NEW DROP (Karaoke Version)", - "id": "Av2Fg5g9EYI" - }, - { - "title": "ROSร‰ - stay a little longer (Karaoke Version)", - "id": "S_lcgS5s2K0" - }, - { - "title": "Yami Safdie, Lasso - En Otra Vida (Karaoke Version)", - "id": "gJ1_ND2PUyA" - }, - { - "title": "Oscar Maydon, Fuerza Regida - Tu Boda (Karaoke Version)", - "id": "SxSKNdpDTro" - }, - { - "title": "Mon Laferte - Tu Falta De Querer (Karaoke Version)", - "id": "KsYPqZZWF7o" - }, - { - "title": "yung kai - blue (Karaoke Version)", - "id": "bhaOsOCveRY" - }, - { - "title": "Tate McRae - 2 hands (Karaoke Version)", - "id": "ueobDwUa_aE" - }, - { - "title": "Michael Bublรฉ - Save the Last Dance for Me (Karaoke Version)", - "id": "kKXJfyCiZfE" - }, - { - "title": "Imogen Heap - Headlock (Karaoke Version)", - "id": "nQMaYJ2epbQ" - }, - { - "title": "One Direction - More Than This (Karaoke Version)", - "id": "AC518ctCXUA" - }, - { - "title": "Marvin Gaye - I Heard It Through The Grapevine (Karaoke Version)", - "id": "K2R7gqE0sYA" - }, - { - "title": "BABYMONSTER - DRIP (Karaoke Version)", - "id": "3gO5laSon44" - }, - { - "title": "Kendrick Lamar - luther (with sza) (Karaoke Version)", - "id": "ypZTfLupGqE" - }, - { - "title": "Stevie Wonder - Signed, Sealed, Delivered (I'm Yours) (Karaoke Version)", - "id": "5E3lkGFIfC4" - }, - { - "title": "Twenty One Pilots - The Line (Arcane League of Legends) (Karaoke Version)", - "id": "xLz84zV22hA" - }, - { - "title": "Chris Brown - This Christmas (Karaoke Version)", - "id": "ljzj6s98cKU" - }, - { - "title": "Luther Vandross - Never Too Much (Karaoke Version)", - "id": "8J-qIt7Q5uI" - }, - { - "title": "Lady Gaga - Disease (Karaoke Version)", - "id": "4P3f9_uHxeI" - }, - { - "title": "Ariel Rivera - Sana Ngayong Pasko (Karaoke Version)", - "id": "DuJUyXlRzlY" - }, - { - "title": "Donny Hathaway - This Christmas (Karaoke Version)", - "id": "pbwfieS_zEs" - }, - { - "title": "GloRilla, Sexyy Red - WHATCHU KNO ABOUT ME (Karaoke Version)", - "id": "q4RMFx7fSnU" - }, - { - "title": "Pentatonix - Little Drummer Boy (Karaoke Version)", - "id": "fY60n84nRsk" - }, - { - "title": "Pentatonix - Carol of the Bells (Karaoke Version)", - "id": "irwAhrRNpe4" - }, - { - "title": "Karaoke App - New Design overhaul!", - "id": "_YcwV2y5GeU" - }, - { - "title": "Pentatonix - God Rest Ye Merry Gentlemen (Karaoke Version)", - "id": "xYhOCYA-1qA" - }, - { - "title": "Sabrina Carpenter - is it new years yet? (Karaoke Version)", - "id": "eYLZfSy0f90" - }, - { - "title": "Vince Guaraldi Trio - Christmas Time Is Here (Karaoke Version)", - "id": "Q9OkV-SQPn0" - }, - { - "title": "Kelly Clarkson - White Christmas (Karaoke Version)", - "id": "7j4pZ_fgQIk" - }, - { - "title": "Pentatonix - That's Christmas to Me (Karaoke Version)", - "id": "LXvuKQjod-0" - }, - { - "title": "Laufey - Santa Baby (Karaoke Version)", - "id": "KmmRZucz1bM" - }, - { - "title": "Bad Boys Blue - You're a Woman (Karaoke Version)", - "id": "PdHLdXwHHHo" - }, - { - "title": "Sabrina Carpenter - white xmas (Karaoke Version)", - "id": "t12WMWJ-eT0" - }, - { - "title": "Eurythmics - Sweet Dreams (Are Made of This) (Karaoke Version)", - "id": "chmCcY52KwI" - }, - { - "title": "Sabrina Carpenter - A Nonsense Christmas (Karaoke Version)", - "id": "Er_z666JLyY" - }, - { - "title": "Natalie Cole - Someone That I Used To Love (Karaoke Version)", - "id": "MgGAZ-LVZSc" - }, - { - "title": "Sabrina Carpenter - cindy lou who (Karaoke Version)", - "id": "UPgV8xd_ymY" - }, - { - "title": "Willie Nelson - Always On My Mind (Karaoke Version)", - "id": "6sLDljyd6l4" - }, - { - "title": "Cรฉline Dion, Jean-Jacques Goldman - J'irai oรน tu iras (Karaoke Version)", - "id": "6x6CsQMmwFE" - }, - { - "title": "Calum Scott - Flaws (Karaoke Version)", - "id": "3ShC4tNVriI" - }, - { - "title": "Cynthia Erivo, Ariana Grande - Defying Gravity (From Wicked The Soundtrack) (Karaoke Version)", - "id": "0NpPmuaBXZg" - }, - { - "title": "Laura Story - Blessings (Karaoke Version)", - "id": "2b_SEqL48ds" - }, - { - "title": "Otis Redding - (Sittin' On) the Dock of the Bay (Karaoke Version)", - "id": "wLSnTe__V8Q" - }, - { - "title": "Nat King Cole - L-O-V-E (Karaoke Version)", - "id": "MWRI_4LDPsc" - }, - { - "title": "Laufey - Winter Wonderland (Karaoke Version)", - "id": "hVZK8ZZsVO8" - }, - { - "title": "Green Day - When I Come Around (Karaoke Version)", - "id": "Y_Uuqgdn26k" - }, - { - "title": "Sabrina Carpenter - santa doesnโ€™t know you like i do (Karaoke Version)", - "id": "t8s_Y7VU39I" - }, - { - "title": "Don Omar, Lucenzo - Danza Kuduro (Karaoke Version)", - "id": "QSWmgNMK-VM" - }, - { - "title": "Sabrina Carpenter - buy me presents (Karaoke Version)", - "id": "FPpjSn28xyM" - }, - { - "title": "Chappell Roan - Kaleidoscope (Karaoke Version)", - "id": "2PCzqxl9Y6Y" - }, - { - "title": "Elliot James Reay - I Think They Call This Love (Karaoke Version)", - "id": "o7A5BhnZ6H4" - }, - { - "title": "Cory Asbury - Reckless Love (Karaoke Version)", - "id": "CV6ireKZQwU" - }, - { - "title": "Lizzy McAlpine - doomsday (Karaoke Version)", - "id": "nwt0AbwxuMo" - }, - { - "title": "Frank Sinatra - Jingle Bells (Karaoke Version)", - "id": "XRFR3sAQUjg" - }, - { - "title": "Edward Sharpe & The Magnetic Zeros - Home (Karaoke Version)", - "id": "2VO1KZSr6XM" - }, - { - "title": "Coldplay - feelslikeimfallinginlove (Karaoke Version)", - "id": "Z_UR8wJNJGI" - }, - { - "title": "Chaka Khan - Ain't Nobody (Karaoke Version)", - "id": "4i5rzirTzNs" - }, - { - "title": "John Newton - Amazing Grace (Karaoke Version)", - "id": "I7X850zgW0o" - }, - { - "title": "Shirin David - Bauch Beine Po (Karaoke Version)", - "id": "2c7y3oZ5aRU" - }, - { - "title": "System Of A Down - Toxicity (Karaoke Version)", - "id": "ylgusZ0K_YA" - }, - { - "title": "Years & Years - Breathe (Karaoke Version)", - "id": "rwsNb2uotb4" - }, - { - "title": "Gracie Abrams - Thatโ€™s So True (Karaoke Version)", - "id": "hx3GTIny7iM" - }, - { - "title": "Jim Reeves - He'll Have to Go (Karaoke Version)", - "id": "kVsKULlOQ_4" - }, - { - "title": "Doja Cat - Paint The Town Red (Karaoke Version)", - "id": "lbQoAxwgdOQ" - }, - { - "title": "Wicked - No Good Deed (Karaoke Version)", - "id": "6S96FV0PLY8" - }, - { - "title": "RAYE - Oscar Winning Tears. (Karaoke Version)", - "id": "BBEkmzEfYZc" - }, - { - "title": "PARTYNEXTDOOR - N o C h i l l (Karaoke Version)", - "id": "N9WjP1sEJ34" - }, - { - "title": "Luke Combs - Ain't No Love In Oklahoma (From Twisters: The Album) (Karaoke Version)", - "id": "u1DgYoUNo_0" - }, - { - "title": "Eminem - Houdini (Karaoke Version)", - "id": "XtmJTgtCoP8" - }, - { - "title": "Liam Payne - Teardrops (Karaoke Version)", - "id": "y0tbpX8Jf9U" - }, - { - "title": "Sister Sledge - Thinking of You (Karaoke Version)", - "id": "qDncl914eG8" - }, - { - "title": "wave to earth - annie. (Karaoke Version)", - "id": "gs1YdqH7vQ0" - }, - { - "title": "Wicked - I'm Not That Girl (Karaoke Version)", - "id": "tKE_DRVIsJw" - }, - { - "title": "Mazzy Star - Fade Into You (Karaoke Version)", - "id": "hRJ7GaQrVyc" - }, - { - "title": "TJ Monterde - Palagi (Karaoke Version)", - "id": "mb_hyuoXwb8" - }, - { - "title": "Paramore - Ain't It Fun (Karaoke Version)", - "id": "FyIi1vK03wM" - }, - { - "title": "Arthur Nery - TAKE ALL THE LOVE (Karaoke Version)", - "id": "tzBJcY-__-4" - }, - { - "title": "Rod Wave - 25 (Karaoke Version)", - "id": "eElQhOM9aGQ" - }, - { - "title": "The Marรญas - No One Noticed (Karaoke Version)", - "id": "X04WLsUHRSY" - }, - { - "title": "Toto - Hold the Line (Karaoke Version)", - "id": "cVn_1bQxVSg" - }, - { - "title": "LISA - Moonlit Floor (Karaoke Version)", - "id": "zk0zgspJjX0" - }, - { - "title": "Ariana Grande - Somewhere Over The Rainbow (Karaoke Version)", - "id": "ww4uWGMEydg" - }, - { - "title": "JENNIE - Mantra (Karaoke Version)", - "id": "RdJSszreF3k" - }, - { - "title": "Akon, Kardinal Offishall, Colby O'Donis - Beautiful (Karaoke Version)", - "id": "xCfkF9NcTYI" - }, - { - "title": "Wicked - For Good (Karaoke Version)", - "id": "X_ny0h8mHsg" - }, - { - "title": "Charli xcx, Billie Eilish - Guess (Karaoke Version)", - "id": "Dq20VE5-q1s" - }, - { - "title": "Cigarettes After Sex - Cry (Karaoke Version)", - "id": "bs-k8HidZZ4" - }, - { - "title": "Yeah Yeah Yeahs - Maps (Karaoke Version)", - "id": "bCN8PhfN8hc" - }, - { - "title": "Clairo - Bags (Karaoke Version)", - "id": "-cEN7t9bHNg" - }, - { - "title": "Lola Young - Messy (Karaoke Version)", - "id": "mG-occ2cGvI" - }, - { - "title": "Mitski - I Bet on Losing Dogs (Karaoke Version)", - "id": "uJqJr13Wb70" - }, - { - "title": "David Guetta, Kid Cudi - Memories (Karaoke Version)", - "id": "YgI6OHCFd1U" - }, - { - "title": "V - Love Me Again (Karaoke Version)", - "id": "rY2D7S1TZRM" - }, - { - "title": "Steve Lacy - Infrunami (Karaoke Version)", - "id": "ONeM_06BHkw" - }, - { - "title": "bรดa - Duvet (Karaoke Version)", - "id": "qA1I4NijAwc" - }, - { - "title": "Cigarettes After Sex - Apocalypse (Karaoke Version)", - "id": "gFhXlUvm7R0" - }, - { - "title": "KSI, Trippie Redd - Thick Of It (Karaoke Version)", - "id": "XTjM6lx9KPw" - }, - { - "title": "One Direction - Half a Heart (Karaoke Version)", - "id": "7lYwoFB-kME" - }, - { - "title": "Johnny Cash - Folsom Prison Blues (Karaoke Version)", - "id": "bpM3judUwDI" - }, - { - "title": "GloRilla, Cardi B - Tomorrow 2 (Karaoke Version)", - "id": "okYNA7TZwwg" - }, - { - "title": "Wicked - Popular (Karaoke Version)", - "id": "LHDOYGz_iGs" - }, - { - "title": "PARTYNEXTDOOR - Break from Toronto (Karaoke Version)", - "id": "fsfTDDxCSgE" - }, - { - "title": "Samantha Ebert - Flowers (Karaoke Version)", - "id": "ypXmNE56_z4" - }, - { - "title": "Regina Song - the cutest pair (Karaoke Version)", - "id": "TXH2WQntoUw" - }, - { - "title": "NIKI - Did You Like Her In The Morning? (Karaoke Version)", - "id": "jSL-dCwzd98" - }, - { - "title": "Alex Warren - Carry You Home (Karaoke Version)", - "id": "S7Kuvi7YQ1Y" - }, - { - "title": "Olivia Dean - Dive (Karaoke Version)", - "id": "GGvtD9_bnuQ" - }, - { - "title": "Michael Marcagi - Scared To Start (Karaoke Version)", - "id": "hvLPdaijvaI" - }, - { - "title": "Travis Scott, Playboy Carti - FE!N (Karaoke Version)", - "id": "7FXr-lBn8cE" - }, - { - "title": "Sabrina Carpenter - Sharpest Tool (Karaoke Version)", - "id": "S8eMeGCSIqg" - }, - { - "title": "Sabrina Carpenter - Coincidence (Karaoke Version)", - "id": "yBi3Vh87Ujc" - }, - { - "title": "Milli Vanilli - Blame It on the Rain (Karaoke Version)", - "id": "9G-ppzI-36w" - }, - { - "title": "Tory Lanez - The Color Violet (Karaoke Version)", - "id": "kk_D62AONl4" - }, - { - "title": "Sabrina Carpenter - Good Graces (Karaoke Version)", - "id": "JvP836fdzWk" - }, - { - "title": "Teddy Swims - The Door (Karaoke Version)", - "id": "U9AV8FR4Ogk" - }, - { - "title": "Latto - Brokey (Karaoke Version)", - "id": "ONhtxkQgJ_I" - }, - { - "title": "Tyler, The Creator, ft. Kali Uchis - See You Again (Karaoke Version)", - "id": "URhnha026OA" - }, - { - "title": "J Cole, Amber Coffman, Cults - She Knows (Karaoke Version)", - "id": "j_JKfLGNW1U" - }, - { - "title": "Sabrina Carpenter - Juno (Karaoke Version)", - "id": "aVq-F01aqC0" - }, - { - "title": "KAROL G - Si Antes Te Hubiera Conocido (Karaoke Version)", - "id": "crLFRvgs57k" - }, - { - "title": "LISA, ROSALรA - New Woman (Karaoke Version)", - "id": "2e-DgEqQqiQ" - }, - { - "title": "Tate McRae - It's ok I'm ok (Karaoke Version)", - "id": "b8GtV0_g1nc" - }, - { - "title": "Surf Curse - Disco (Karaoke Version)", - "id": "Lak0DKR1Fc4" - }, - { - "title": "Shakira - She Wolf (Karaoke Version)", - "id": "F_6-FWr9EIY" - }, - { - "title": "Sabrina Carpenter - Bed Chem (Karaoke Version)", - "id": "x63IDcwS4p0" - }, - { - "title": "Baby Meow - What Was I Made For? - Meow Cover (Karaoke Version)", - "id": "X7e6Np2m9pQ" - }, - { - "title": "Lady Gaga - Happy Mistake (Karaoke Version)", - "id": "_cMuM1U1dPc" - }, - { - "title": "Bernadya - Lama Lama (Karaoke Version)", - "id": "_8jOmMtISsw" - }, - { - "title": "Annie Lennox - I Put A Spell On You (Karaoke Version)", - "id": "O3-8SeZT04Y" - }, - { - "title": "Joe Dassin - Et si tu n'existais pas (Karaoke Version)", - "id": "WS2NuUe1lMQ" - }, - { - "title": "Lainey Wilson - Watermelon Moonshine (Karaoke Version)", - "id": "_tBXtngZqEA" - }, - { - "title": "beabadoobee - the perfect pair (Karaoke Version)", - "id": "7gnnTNOBQ8s" - }, - { - "title": "keshi - UNDERSTAND (Karaoke Version)", - "id": "PNqrc89yF0s" - }, - { - "title": "FloyyMenor, Chris Mj - Gata Only (Karaoke Version)", - "id": "RY4t98ImksM" - }, - { - "title": "Milli Vanilli - I'm Gonna Miss You (Karaoke Version)", - "id": "VtYzLfTGnWk" - }, - { - "title": "Mahalini - Sampai Menutup Mata (Karaoke Version)", - "id": "YB-NHIVKZk0" - }, - { - "title": "The Weeknd, JENNIE, Lily Rose Depp - One Of The Girls (Karaoke Version)", - "id": "DDKaMCucnec" - }, - { - "title": "Ariana Grande - we can't be friends (wait for your love) - acoustic (Karaoke Version)", - "id": "urjBqiBAoJ8" - }, - { - "title": "Aaron Smith - Dancin (feat. Luvli) - Krono Remix (Karaoke Version)", - "id": "gxOlpSFRoHo" - }, - { - "title": "Megan Thee Stallion - Mamushi (Karaoke Version)", - "id": "ZAixh4mEbuo" - }, - { - "title": "Jelly Roll - I Am Not Okay (Karaoke Version)", - "id": "KUvM6qhV-lI" - }, - { - "title": "Sabrina Carpenter - Dumb & Poetic (Karaoke Version)", - "id": "EfLBGtBF4GU" - }, - { - "title": "Zach Bryan - Pink Skies (Karaoke Version)", - "id": "EE_o5Sjq7qg" - }, - { - "title": "Blood Orange - Champagne Coast (Karaoke Version)", - "id": "ipC-dZnC4PI" - }, - { - "title": "Alicia Keys - Un thinkable (I'm Ready) (Karaoke Version)", - "id": "ubHHiTYbPwk" - }, - { - "title": "GloRilla - TGIF (Karaoke Version)", - "id": "J8agM8sOuBE" - }, - { - "title": "The Weeknd - Dancing In The Flames (Karaoke Version)", - "id": "jeD2dheUgzs" - }, - { - "title": "Addison Rae - Diet Pepsi (Karaoke Version)", - "id": "qU0PhzKxGUY" - }, - { - "title": "Sabrina Carpenter - Slim Pickins (Karaoke Version)", - "id": "qSKW7JYM46w" - }, - { - "title": "Oasis - Stand By Me (Karaoke Version)", - "id": "pxpZ201x2ho" - }, - { - "title": "Central Cee, Lil Baby - BAND4BAND (Karaoke Version)", - "id": "nabAtSD13Nk" - }, - { - "title": "beabadoobee - Ever Seen (Karaoke Version)", - "id": "74q2QJ5bfow" - }, - { - "title": "Lee Young Ji , D.O. - Small girl (Karaoke Version)", - "id": "zPWvR4F3MvU" - }, - { - "title": "Bernadya - Satu Bulan (Karaoke Version)", - "id": "qDNWCHJQS-M" - }, - { - "title": "aespa - Supernova (Karaoke Version)", - "id": "SsSss2ypZ3g" - }, - { - "title": "Ella Langley, Riley Green - you look like you love me (Karaoke Version)", - "id": "uN0LmVJg1-I" - }, - { - "title": "Chappell Roan - Femininomenon (Karaoke Version)", - "id": "dN5hRys-t9U" - }, - { - "title": "Oasis - Live Forever (Karaoke Version)", - "id": "-NLEipVDDO8" - }, - { - "title": "Shawn Mendes - Why Why Why (Karaoke Version)", - "id": "e0JPjMotxyw" - }, - { - "title": "KATSEYE - Touch (Karaoke Version)", - "id": "6Kmjr2dNSsc" - }, - { - "title": "Gracie Abrams - I Love You, I'm Sorry (Karaoke Version)", - "id": "-4NP3tDpIlk" - }, - { - "title": "Bryant Barnes - I'd Rather Pretend (Karaoke Version)", - "id": "8zaVLrwA400" - }, - { - "title": "Gigi Perez - Sailor Song (Karaoke Version)", - "id": "jijWjlS_Iu0" - }, - { - "title": "Lewis Capaldi - Love The Hell Out Of You", - "id": "From 'It Ends With Us' (Karaoke Version)" - }, - { - "title": "Jordan Adetunji - KEHLANI (Karaoke Version)", - "id": "MwuAqhTgKvA" - }, - { - "title": "Clairo - Juna (Karaoke Version)", - "id": "5NZsB1RTjpU" - }, - { - "title": "BABYMONSTER - FOREVER (Karaoke Version)", - "id": "OZ8BEucczaQ" - }, - { - "title": "Dionela ft. Jay R - sining (Karaoke Version)", - "id": "DijWZw-WdFI" - }, - { - "title": "Chitรฃozinho & Xororรณ - Evidรชncias (Karaoke Version)", - "id": "9K7rZv5WT9Y" - }, - { - "title": "Barry Manilow - Can't Smile Without You (Karaoke Version)", - "id": "5ePpO-aRmHg" - }, - { - "title": "Jimin - Who (Karaoke Version)", - "id": "AoXEB7VZkiU" - }, - { - "title": "Chappell Roan - My Kink Is Karma (Karaoke Version)", - "id": "adF36uNTSSM" - }, - { - "title": "Clairo - Sexy to Someone (Karaoke Version)", - "id": "A2gM82qieRE" - }, - { - "title": "Charli xcx - Apple (Karaoke Version)", - "id": "INgrgvaLTbw" - }, - { - "title": "Sevdaliza ft. Yseult & Pabllo Vittar - Alibi (Karaoke Version)", - "id": "5IIwlxdURqE" - }, - { - "title": "Alphaville - Forever Young (Karaoke Version)", - "id": "gRs06F494Ao" - }, - { - "title": "Sabrina Carpenter - Taste (Karaoke Version)", - "id": "JO9dHGu-ayA" - }, - { - "title": "Jeremy Passion - Lemonade - Ukulele Version (Karaoke Version)", - "id": "7K4aj_zPqjo" - }, - { - "title": "Yebba - My Mind Karaoke Version)", - "id": "r93hkKtDl_M" - }, - { - "title": "Young Thug & Rich Homie Quan & Rich Gang - Lifestyle (Karaoke Version)", - "id": "JtlfCaujYiA" - }, - { - "title": "James Ingram - I Don't Have the Heart (Karaoke Version)", - "id": "6Jg4nbZtJpU" - }, - { - "title": "SB19 - MAPA (Karaoke Version)", - "id": "c0BC27DVTqI" - }, - { - "title": "Ricchi E Poveri - Sarร  perchรฉ ti amo (Karaoke Version)", - "id": "pbO7vo-sMQ0" - }, - { - "title": "ECLIPSE - Sudden Shower (Karaoke Version)", - "id": "XkZz2WSrT6M" - }, - { - "title": "Steve Lacy - Static (Karaoke Version)", - "id": "kbOa2rF3bPY" - }, - { - "title": "Royel Otis - Linger SiriusXM Session (Karaoke Version)", - "id": "aMfs3AvYIps" - }, - { - "title": "Chris Grey - LET THE WORLD BURN (Karaoke Version)", - "id": "5NXo5-KJyBI" - }, - { - "title": "Yaelokre - Harpy Hare (Karaoke Version)", - "id": "IMq1g14rBYk" - }, - { - "title": "BLACKPINK - Tally (Karaoke Version)", - "id": "KMaCPHbvODs" - }, - { - "title": "Roberto Carlos - Cama e Mesa (Karaoke Version)", - "id": "pHpyWWAFHME" - }, - { - "title": "Antรดnio Carlos Jobim - Garota de Ipanema (Karaoke Version)", - "id": "A51QLzjBaLI" - }, - { - "title": "Dua Lipa - These Walls (Karaoke Version)", - "id": "AHQ8hukOWGs" - }, - { - "title": "BINI - Salamin, Salamin (Karaoke Version)", - "id": "dsCk4VHSdMg" - }, - { - "title": "Brandy, Monica - The Boy Is Mine (Karaoke Version)", - "id": "v22Srmh3_bc" - }, - { - "title": "Jeremy Passion, Tori Kelly - Brokenhearted (Karaoke Version)", - "id": "Hdpt73sBfCQ" - }, - { - "title": "Al Bano And Romina Power - Felicitร  (Karaoke Version)", - "id": "KrgLgo8Qn6E" - }, - { - "title": "Ella Mai - Naked (Karaoke Version)", - "id": "OuS7EWWrD-M" - }, - { - "title": "adrianne lenker - anything (Karaoke Version)", - "id": "tf1OrQSH3U8" - }, - { - "title": "CeCe Winans - Goodness of God (Karaoke Version)", - "id": "1sntrHM1Oak" - }, - { - "title": "Roger Hodgson - Lovers In The Wind (Karaoke Version)", - "id": "FuUsQ_zmMbA" - }, - { - "title": "Screen - Bila Cinta Di Dusta (Karaoke Version)", - "id": "E4NCbgtzJU0" - }, - { - "title": "Chappell Roan - Red Wine Supernova (Karaoke Version)", - "id": "h9iOmGY0zRM" - }, - { - "title": "Coldplay - Paradise (Karaoke Version)", - "id": "3e4i_062zYA" - }, - { - "title": "Coldplay - Fix You (Karaoke Version)", - "id": "yI2T7_wvOJs" - }, - { - "title": "Coldplay - In My Place (Karaoke Version)", - "id": "ngpcKo2AJz0" - }, - { - "title": "Coldplay - Yellow (Karaoke Version)", - "id": "XZN3DaxqFuQ" - }, - { - "title": "Trinidad Cardona - Jennifer (Karaoke Version)", - "id": "N_-cG54wBNY" - }, - { - "title": "Calvin Harris - Feel So Close - Radio Edit (Karaoke Version)", - "id": "z1716Bkpzmw" - }, - { - "title": "Coldplay - Clocks (Karaoke Version)", - "id": "cltIrW3fG8A" - }, - { - "title": "Kendrick Lamar - Not Like Us (Karaoke Version)", - "id": "91OF2UkJHAQ" - }, - { - "title": "Coldplay - Viva La Vida (Karaoke Version)", - "id": "VQxLvR_P75o" - }, - { - "title": "Quavo, Lana Del Rey - Tough (Karaoke Version)", - "id": "Eou63RRvXjM" - }, - { - "title": "Lana Del Rey - Mariners Apartment Complex (Karaoke Version)", - "id": "A_XGZWXF2po" - }, - { - "title": "Toto Cutugno - Lโ€™italiano (Karaoke Version)", - "id": "T-y1ln71HNs" - }, - { - "title": "Joe Dassin - Les Champs-Elysรฉes (Karaoke Version)", - "id": "M6cNs1b4uzQ" - }, - { - "title": "Chappell Roan - Pink Pony Club (Karaoke Version)", - "id": "d4L7iymCVHk" - }, - { - "title": "Billie Eilish - L'AMOUR DE MA VIE (Karaoke Version)", - "id": "szf5A5jrS6I" - }, - { - "title": "ร‰dith Piaf - La Vie En Rose (Karaoke Version)", - "id": "4c4myH5kbo0" - }, - { - "title": "SZA - Blind (Karaoke Version)", - "id": "bUsVwe7zNdo" - }, - { - "title": "Lauren Daigle - Thank God I Do (Karaoke Version)", - "id": "HeKrd_yCiWA" - }, - { - "title": "Justin Bieber, Jaden - Never Say Never (Karaoke Version)", - "id": "nypFcAYr2w0" - }, - { - "title": "Exists - Mencari Alasan (Karaoke Version)", - "id": "uSSLf0o3i1U" - }, - { - "title": "Nicki Minaj - Pink Friday Girls (Karaoke Version)", - "id": "KCoeyqqJpSA" - }, - { - "title": "Laufey - Bored (Karaoke Version)", - "id": "YIgGSHTUX8M" - }, - { - "title": "Jung Kook - Too Sad to Dance (Karaoke Version)", - "id": "Rg_K0cOdqT0" - }, - { - "title": "Lauryn Hill - Doo Wop (That Thing) (Karaoke Version)", - "id": "fubhLZJWwjk" - }, - { - "title": "DJ ร–tzi, Nik P. - Ein Stern (der deinen Namen trรคgt) (Karaoke Version)", - "id": "DYvfWmZJzDU" - }, - { - "title": "d4vd - Feel It (Karaoke Version)", - "id": "Y4XGRs_IbHM" - }, - { - "title": "Livingston - Last Man Standing (Karaoke Version)", - "id": "RzSKK7-UkJU" - }, - { - "title": "Chappell Roan - HOT TO GO! (Karaoke Version)", - "id": "tRAVVvXUKDA" - }, - { - "title": "Gracie Abrams - Close To You (Karaoke Version)", - "id": "9MYqJdwMSfo" - }, - { - "title": "Billie Eilish - BITTERSUITE (Karaoke Version)", - "id": "7zaY30rVLOM" - }, - { - "title": "Sexyy Redd - Get It Sexyy (Karaoke Version)", - "id": "XYbUEWkaJug" - }, - { - "title": "Post Malone, Morgan Wallen - I Had Some Help (Karaoke Version)", - "id": "-itB1uWxxCg" - }, - { - "title": "Lenka - Trouble Is A Friend (Karaoke Version)", - "id": "rVsIJzmDCzI" - }, - { - "title": "Kehlani - Honey (Karaoke Version)", - "id": "VRTiVt5Oz5o" - }, - { - "title": "Billy Joel - Vienna (Karaoke Version)", - "id": "SfIj1GMU45Q" - }, - { - "title": "J-Cole - No Role Modelz (Karaoke Version)", - "id": "skMekv3Glt0" - }, - { - "title": "Helene Fischer - Atemlos durch die Nacht (Karaoke Version)", - "id": "VDjE_YPi2nk" - }, - { - "title": "Billie Eilish - THE GREATEST (Karaoke Version)", - "id": "qbGzcedmuPI" - }, - { - "title": "Bausa - Was du Liebe nennst (Karaoke Version)", - "id": "9XGJC80ol7Q" - }, - { - "title": "Crush - Love You with All My Heart (Karaoke Version)", - "id": "HSVhvYOYKzI" - }, - { - "title": "LISA - Rockstar (Karaoke Version)", - "id": "DZJwCm_8fK0" - }, - { - "title": "Lithe - Fall Back (Karaoke Version)", - "id": "vYWegByrl1g" - }, - { - "title": "CG5, Chi Chi, Kathy Chan & Cami Cat - Sleep Well (Karaoke Version)", - "id": "ZfCFfw4v_z4" - }, - { - "title": "BABYMONSTER - SHEESH (Karaoke Version)", - "id": "oywVOcD-bo0" - }, - { - "title": "Laila! - Like That (Karaoke Version)", - "id": "7CQYBbPug18" - }, - { - "title": "David Guetta, Zara Larsson - This One's for You [Official Song UEFA EURO 2016] (Karaoke Version)", - "id": "RqZI1KBrcKQ" - }, - { - "title": "JT - OKAY (Karaoke Version)", - "id": "M0cwPe95fsQ" - }, - { - "title": "Sarah Geronimo - Maybe This Time (Karaoke Version)", - "id": "DNRCGU2IRxI" - }, - { - "title": "Chappell Roan - Casual (Karaoke Version)", - "id": "-A58t72ENz4" - }, - { - "title": "Billie Eilish - THE DINER (Karaoke Version)", - "id": "HGgPSIudsX4" - }, - { - "title": "Carole King - You've Got a Friend (Karaoke Version)", - "id": "F6CntbLcPJg" - }, - { - "title": "Mariah Carey - I Want To Know What Love Is (Karaoke Version)", - "id": "NrTVaaoFOWk" - }, - { - "title": "Billie Eilish - WILDFLOWER (Karaoke Version)", - "id": "KrjkhyJwVmE" - }, - { - "title": "Coldplay - Christmas Lights (Karaoke Version)", - "id": "koHyNlSt8YM" - }, - { - "title": "Coldplay - The Scientist (Karaoke Version)", - "id": "rIA_K-6BdS4" - }, - { - "title": "Coldplay - A Sky Full Of Stars (Karaoke Version)", - "id": "855NPDQpLA0" - }, - { - "title": "Coldplay - Adventure Of A Lifetime (Karaoke Version)", - "id": "zCY-6jxMB4A" - }, - { - "title": "The Chainsmokers and Coldplay - Something Just Like This (Karaoke Version)", - "id": "tqNJpJcV6oU" - }, - { - "title": "Coldplay - Hypnotised (Karaoke Version)", - "id": "3Yd7oK6BzT4" - }, - { - "title": "Billie Eilish - BLUE (Karaoke Version)", - "id": "vgTHtQBwolE" - }, - { - "title": "Olivia Rodrigo - pretty isn't pretty (Karaoke Version)", - "id": "mNPj074qsoA" - }, - { - "title": "Billie Eilish - CHIHIRO (Karaoke Version)", - "id": "R7hRQUYStJM" - }, - { - "title": "Chromatics - Girls Just Wanna Have Some (Karaoke Version)", - "id": "Kpf8O-m812Q" - }, - { - "title": "Charli xcx - 360 (Karaoke Version)", - "id": "7f9gR-iSVP0" - }, - { - "title": "Billie Eilish - LUNCH (Karaoke Version)", - "id": "WvwLg_yHwao" - }, - { - "title": "G Eazy, Christoph Andersson - Tumblr Girls (Karaoke Version)", - "id": "hjoTkd5XaUQ" - }, - { - "title": "Billie Eilish - SKINNY (Karaoke Version)", - "id": "M-cBwD2qT1Y" - }, - { - "title": "Livingston - Shadow (Karaoke Version)", - "id": "38zZ6gX1zsA" - }, - { - "title": "April Boys - Honey My Love So Sweet (Karaoke Version)", - "id": "5N_-r_5-H6I" - }, - { - "title": "ILLIT - Magnetic (Karaoke Version)", - "id": "tYglJFtvhR4" - }, - { - "title": "John Farnham - Please Don't Ask Me (Karaoke Version)", - "id": "j25UD-GLGMc" - }, - { - "title": "Myles Smith - Stargazing (Karaoke Version)", - "id": "X8o4_K77VsM" - }, - { - "title": "Barry Manilow - Even Now (Karaoke Version)", - "id": "9rmosBMpnLg" - }, - { - "title": "Billie Eilish - BIRDS OF A FEATHER (Karaoke Version)", - "id": "J_yZFlbnHxU" - }, - { - "title": "Shaggy, RikRok - It Wasn't Me (Karaoke Version)", - "id": "Oob8OwGwd50" - }, - { - "title": "Sabrina Carpenter - Please Please Please (Karaoke Version)", - "id": "3hc24MkUdhM" - }, - { - "title": "Mario - How Do I Breathe (Karaoke Version)", - "id": "8yKMWsdCERs" - }, - { - "title": "Tommy Richman - MILLION DOLLAR BABY (Karaoke Version)", - "id": "YzRel12IFg0" - }, - { - "title": "Jorja Smith - Teenage Fantasy (Karaoke Version)", - "id": "jrDNjoVp03s" - }, - { - "title": "James Bay - Us (Karaoke Version)", - "id": "mE52-eNy6Jc" - }, - { - "title": "Sam Smith - Latch - Acoustic (Karaoke Version)", - "id": "V_FWhuSmgdk" - }, - { - "title": "Hozier - Cherry Wine (Karaoke Version)", - "id": "ZUg1x45Yk58" - }, - { - "title": "The Cranberries - Dreams (Karaoke Version)", - "id": "cnTQFPdPQLM" - }, - { - "title": "Bakar, Summer Walker - Hell N Back (Karaoke Version)", - "id": "hMKyMiVqfnw" - }, - { - "title": "Paramore - All I Wanted (Karaoke Version)", - "id": "sOtdXKWtHyo" - }, - { - "title": "Justin Bieber - One Time (Karaoke Version)", - "id": "DCVscJtCTRg" - }, - { - "title": "Edward Maya and Vika Jigulina - Stereo Love (Karaoke Version)", - "id": "77SPfnP9S_w" - }, - { - "title": "Ne Yo - Closer (Karaoke Version)", - "id": "hlIjp67CcFM" - }, - { - "title": "Timbaland, Justin Timberlake, Nelly Furtado - Give It To Me (Karaoke Version)", - "id": "ArSqi30fczA" - }, - { - "title": "Laufey - Dreamer (Karaoke Version)", - "id": "haNGTmGCrzk" - }, - { - "title": "Elvis Presley - Jailhouse Rock (Karaoke Version)", - "id": "4DFTeDjCe4U" - }, - { - "title": "Tinashe - Nasty (Karaoke Version)", - "id": "0Z8cKdieBOY" - }, - { - "title": "Jung Kook - Yes or No (Karaoke Version)", - "id": "kwsYkT0hwh8" - }, - { - "title": "Gracie Abrams - Risk (Karaoke Version)", - "id": "pSIaoe87YLI" - }, - { - "title": "Laufey - Bewitched (Karaoke Version)", - "id": "bGEA2zZbGzM" - }, - { - "title": "Joost - Europapa (Karaoke Version)", - "id": "vshRNPadeFI" - }, - { - "title": "Olivia Rodrigo - ballad of a homeschooled girl (Karaoke Version)", - "id": "Jw6qaz_52-4" - }, - { - "title": "Alec Benjamin - If We Have Each Other (Karaoke Version)", - "id": "CENNzOYiQ3E" - }, - { - "title": "Chaka Khan - Through The Fire (Karaoke Version)", - "id": "a3ohzsRWWIQ" - }, - { - "title": "Olivia Rodrigo - love is embarassing (Karaoke Version)", - "id": "ScvA8G-Kf6o" - }, - { - "title": "Bryson Tiller - Whatever She Wants (Karaoke Version)", - "id": "rAoWIf4AgF8" - }, - { - "title": "Lay Bankz - Tell Ur Girlfriend (Karaoke Version)", - "id": "ajg8S1CZoog" - }, - { - "title": "Benson Boone - Cry (Karaoke Version)", - "id": "4xI5Qb4_Q9c" - }, - { - "title": "The Script - For The First Time (Karaoke Version)", - "id": "Q76GQNpvgfo" - }, - { - "title": "Isabel LaRos - favorite (Karaoke Version)", - "id": "bwdouC2Gpns" - }, - { - "title": "The Ink Spots - I Don't Want to Set the World on Fire (Karaoke Version)", - "id": "AoIosL3ND_0" - }, - { - "title": "Chappell Roan - Good Luck, Babe! (Karaoke Version)", - "id": "DjkCfplHxww" - }, - { - "title": "James Brown - I Got You (I Feel Good) (Karaoke Version)", - "id": "V3AYU6TiUJo" - }, - { - "title": "Alek Olsen - someday i'll get it (Karaoke Version)", - "id": "tdQ6bTdoBLQ" - }, - { - "title": "Xavi - La Vรญctima (Karaoke Version)", - "id": "w6BkedvErpI" - }, - { - "title": "Mahalini - Mati-Matian (Karaoke Version)", - "id": "I367RwBJWyg" - }, - { - "title": "TINI - pa (Karaoke Version)", - "id": "BpUE4H6ui-A" - }, - { - "title": "Angelina Mango - La noia (Karaoke Version)", - "id": "kUCf24IKB-Q" - }, - { - "title": "Sam Smith - Fire On Fire (Karaoke Version)", - "id": "Rnda6Ixm_3s" - }, - { - "title": "Laufey - Goddess (Karaoke Version)", - "id": "aRvHChqgRJw" - }, - { - "title": "Shaboozey - A Bar Song Tipsy (Karaoke Version)", - "id": "_BL462UlwEQ" - }, - { - "title": "Tate McRae - dear ex best friend (Karaoke Version)", - "id": "wMvlHhi7poE" - }, - { - "title": "No Doubt - Just A Girl (Karaoke Version)", - "id": "9trBKChZ1tQ" - }, - { - "title": "Nemo - The Code (Karaoke Version)", - "id": "GwBkAipkRUY" - }, - { - "title": "Lana Del Rey - hope is a dangerous thing for a woman like me to have (Karaoke Version)", - "id": "lBP_SWYLkGs" - }, - { - "title": "SZA, Travis Scott - Open Arms (Karaoke Version)", - "id": "Wq4QKics5A8" - }, - { - "title": "Olivia Rodrigo - girl i've always been (Karaoke Version)", - "id": "TMvn3S6WTKI" - }, - { - "title": "Ariana Grande - intro (end of the world) (Karaoke Version)", - "id": "wMfvk395HD4" - }, - { - "title": "Mark Ambor - Belong Together (Karaoke Version)", - "id": "CLkRrDolEDM" - }, - { - "title": "Olivia Rodrigo - so american (Karaoke Version)", - "id": "QeltDFxMRtk" - }, - { - "title": "Natasha Bedingfield - These Words (Karaoke Version)", - "id": "quodFWz0l8s" - }, - { - "title": "Slimane - Mon amour (Karaoke Version)", - "id": "nB5ufpWrcYk" - }, - { - "title": "LMFAO, Lauren Bennett, GoonRock - Party Rock Anthem (Karaoke Version)", - "id": "YY3jdu7ur2Y" - }, - { - "title": "Aimee Carty - 2 days into college (Karaoke Version)", - "id": "Cz99kGNLTYg" - }, - { - "title": "T Pain, Akon - Bartender (Karaoke Version)", - "id": "zqWAdqEjl5M" - }, - { - "title": "Cรฉline Dion - To Love You More (Karaoke Version)", - "id": "WPQ-wl8EL8I" - }, - { - "title": "Sublime - Santeria (Karaoke Version)", - "id": "3fh4lLaOCtc" - }, - { - "title": "Destiny's Child - Stand Up For Love (2005 World Childrenโ€™s Day Anthem) (Karaoke Version)", - "id": "X1CaeQkyWIY" - }, - { - "title": "Daniel Caesar - Superpowers (Karaoke Version)", - "id": "f8tIaiHlF20" - }, - { - "title": "Carpenters - You (Karaoke Version)", - "id": "R-hngJ7_wfc" - }, - { - "title": "Myke Towers - LALA (Karaoke Version)", - "id": "tRyLUBgux04" - }, - { - "title": "NIKI - Take A Chance With Me (Karaoke Version)", - "id": "gHs3L-PUQfA" - }, - { - "title": "Jason Dhakal - Para Sa Akin (Karaoke Version)", - "id": "530_7COF0-Y" - }, - { - "title": "Sabrina Carpenter - Espresso (Karaoke Version)", - "id": "dJa-R_Pdyo0" - }, - { - "title": "Paris Paloma - labour (Karaoke Version)", - "id": "nVD8ISqWrQE" - }, - { - "title": "Lana Del Rey, Father John Misty - Let The Light In (Karaoke Version)", - "id": "f_GQZaW4NqQ" - }, - { - "title": "Dua Lipa - Illusion (Karaoke Version)", - "id": "-8Iu0sfx_ss" - }, - { - "title": "Tiรซsto, Tate McRae - 10:35 (Karaoke Version)", - "id": "xP3avKS6eBw" - }, - { - "title": "Renรฉe Rapp - Snow Angel (Karaoke Version)", - "id": "EHGCyupKdK0" - }, - { - "title": "V - FRI(END)S (Karaoke Version)", - "id": "9Q-p8nmTUmE" - }, - { - "title": "Laufey - Lovesick (Karaoke Version)", - "id": "8oOveStlomg" - }, - { - "title": "Beyoncรฉ - I Was Here (Karaoke Version)", - "id": "IURgDagPrcA" - }, - { - "title": "Natalie Jane - Intrusive Thoughts (Karaoke Version)", - "id": "2vbYwofoAHE" - }, - { - "title": "Tom Odell - Black Friday (Karaoke Version)", - "id": "vAZ-90stF8k" - }, - { - "title": "Shy Smith - Soaked (Karaoke Version)", - "id": "kKNxnigwWHY" - }, - { - "title": "50 Cent, Ne-Yo - Baby By Me (Karaoke Version)", - "id": "KVqmQEYsT8c" - }, - { - "title": "The Outfield - Your Love (Karaoke Version)", - "id": "7KDGolMBTQk" - }, - { - "title": "Renรฉe Rapp - Tummy Hurts (Karaoke Version)", - "id": "WGO17yg3PGw" - }, - { - "title": "Olivia Rodrigo - scared of my guitar (Karaoke Version)", - "id": "fDYyy3yXK7o" - }, - { - "title": "Panic! At The Disco - New Perspective (Karaoke Version)", - "id": "SXX8VgA-XVw" - }, - { - "title": "Agnes - Release Me (Karaoke Version)", - "id": "UEkEZNHYgqk" - }, - { - "title": "Olivia Rodrigo - stranger (Karaoke Version)", - "id": "j5j_3bWnAJ0" - }, - { - "title": "Ariana Grande - supernatural (Karaoke Version)", - "id": "03kU7gBkBcU" - }, - { - "title": "Hazbin Hotel - Poison (Karaoke Version)", - "id": "ySnpJvRWNnI" - }, - { - "title": "Ariana Grande - bye (Karaoke Version)", - "id": "lwwV3EtCWGI" - }, - { - "title": "Doja Cat - Agora Hills (Karaoke Version)", - "id": "ZF8yWXIJXJc" - }, - { - "title": "Yamรช - Bรฉcane A COLORS SHOW (Karaoke Version)", - "id": "PnvixEPm-Jk" - }, - { - "title": "Artemas - i like the way you kiss me (Karaoke Version)", - "id": "lBKotQRWWJM" - }, - { - "title": "Ariana Grande - don't wanna break up again (Karaoke Version)", - "id": "Ovxl4EEhsNI" - }, - { - "title": "Jessie Murph, Jelly Roll - Wild Ones (Karaoke Version)", - "id": "dbBe4FbuBd4" - }, - { - "title": "Barbara Pravi - Voilร  (Karaoke Version)", - "id": "8Uqd4PIZMLY" - }, - { - "title": "Faouzia - Fur Elise (Karaoke Version)", - "id": "hTMjospTBDE" - }, - { - "title": "Jason Derulo - Marry Me (Karaoke Version)", - "id": "YOJ0ZLAHWRY" - }, - { - "title": "Justin Bieber - That Should Be Me (Karaoke Version)", - "id": "TzmDQgFymLs" - }, - { - "title": "Hale - Kung Wala Ka (Karaoke Version)", - "id": "y0iRJTt7Fao" - }, - { - "title": "Olivia Rodrigo - obsessed (Karaoke Version)", - "id": "-rFH0pbcn2A" - }, - { - "title": "Hozier - Too Sweet (Karaoke Version)", - "id": "hikzbv4pKp8" - }, - { - "title": "Lorde - Tennis Court (Karaoke Version)", - "id": "BK4kBZHuuf8" - }, - { - "title": "IU - Love wins all (Karaoke Version)", - "id": "BbdyUBX0hlI" - }, - { - "title": "The Cranberries - Ode To My Family (Karaoke Version)", - "id": "R5Dr0cWjQ3U" - }, - { - "title": "Ariana Grande - true story (Karaoke Version)", - "id": "ilEej6aKkV4" - }, - { - "title": "Madison Beer - Make You Mine (Karaoke Version)", - "id": "SA_9U46KCcU" - }, - { - "title": "Benson Boone - Slow It Down (Karaoke Version)", - "id": "J3hHDOMt2xM" - }, - { - "title": "Ariana Grande - i wish i hated you (Karaoke Version)", - "id": "znDYCTl2m-c" - }, - { - "title": "Ariana Grande - eternal sunshine (Karaoke Version)", - "id": "scv-qWCsqdM" - }, - { - "title": "Brit Smith - Karma's A B (Karaoke Version)", - "id": "O7YtJ3oG8C4" - }, - { - "title": "Usher - U Remind Me (Karaoke Version)", - "id": "9e3Ta3R5Z4o" - }, - { - "title": "Usher - U Got It Bad (Karaoke Version)", - "id": "a63mJJ1bi3I" - }, - { - "title": "Beyoncรฉ - JOLENE (Karaoke Version)", - "id": "DnE36lFhvoM" - }, - { - "title": "James Arthur - Naked (Karaoke Version)", - "id": "dpgcu_NRRG4" - }, - { - "title": "Usher, Alicia Keys - My Boo (Karaoke Version)", - "id": "zhN-NAArEH0" - }, - { - "title": "Join The Club - Nobela (Karaoke Version)", - "id": "hk2Cv5vqLfI" - }, - { - "title": "Ariana Grande - imperfect for you (Karaoke Version)", - "id": "VK-z9PobXyw" - }, - { - "title": "Ariana Grande - the boy is mine (Karaoke Version)", - "id": "OCWmZYXvm9E" - }, - { - "title": "Journey - Open Arms (Karaoke Version)", - "id": "neaeFc3hjjA" - }, - { - "title": "Rossa - Lupakan Cinta (Karaoke Version)", - "id": "vWZ3MVAeYcs" - }, - { - "title": "Dasha - Austin (Karaoke Version)", - "id": "23CmzyEwZOE" - }, - { - "title": "Dean Lewis - Waves (Karaoke Version)", - "id": "kitNvfkdVkg" - }, - { - "title": "Djo - End of Beginning (Karaoke Version)", - "id": "SNZjMi-eD1Q" - }, - { - "title": "JoJo Siwa - Karma (Karaoke Version)", - "id": "9LQ6AFrc4KM" - }, - { - "title": "Yseult - Corps (Karaoke Version)", - "id": "cBtfrk3qFpE" - }, - { - "title": "YG Marley - Praise Jah In The Moonlight (Karaoke Version)", - "id": "X1E2kQF9cLk" - }, - { - "title": "Daughtry - Home (Karaoke Version)", - "id": "qAi2XyMS3dU" - }, - { - "title": "Melissa Manchester - Through the Eyes of Love (Karaoke Version)", - "id": "w7f8cSERApM" - }, - { - "title": "Jordin Sparks - This Is My Now (Karaoke Version)", - "id": "yf50uDl8n1I" - }, - { - "title": "Bethel Music, Jenn Johnson - Goodness of God (Karaoke Version)", - "id": "MMAi2Zy0C6I" - }, - { - "title": "Roberta Flack - Killing Me Softly With His Song (Karaoke Version)", - "id": "eNwKETbyNOw" - }, - { - "title": "Brett Young - In Case You Didn't Know (Karaoke Version)", - "id": "xms6DIzJwEI" - }, - { - "title": "Summer Walker - Riot (Karaoke Version)", - "id": "nWaYld5kGC0" - }, - { - "title": "SZA - Saturn (Karaoke Version)", - "id": "EkwcFOLrlkE" - }, - { - "title": "4Batz - act ii: date @ 8 (Karaoke Version)", - "id": "5gQvfXCPzKg" - }, - { - "title": "LE SSERAFIM - EASY (Karaoke Version)", - "id": "dzeSQENlw1Y" - }, - { - "title": "Ariana Grande - we can't be friends wait for your love (Karaoke Version)", - "id": "32Qajs7sCAI" - }, - { - "title": "Nick Carter - Do I Have To Cry For You (Karaoke Version)", - "id": "oh8O_KuCkHc" - }, - { - "title": "Indila - Derniรจre danse (Karaoke Version)", - "id": "g83DvrPBFP8" - }, - { - "title": "Lenka - The Show (Karaoke Version)", - "id": "QLvobWQG2W0" - }, - { - "title": "Ben&Ben - Kathang Isip (Karaoke Version)", - "id": "Y20dk5HO-0A" - }, - { - "title": "Ariana Grande - goodnight n go (Karaoke Version)", - "id": "p-QStG_S-GI" - }, - { - "title": "Roxette - Listen To Your Heart (Karaoke Version)", - "id": "5-XKX3tXwIM" - }, - { - "title": "Dylan Gossett - Coal (Karaoke Version)", - "id": "s--DFGbkz1c" - }, - { - "title": "BABYMONSTER - BATTER UP (Karaoke Version)", - "id": "4g1XWSTATno" - }, - { - "title": "Tate McRae - exes (Karaoke Version)", - "id": "IbcKfbv7mfQ" - }, - { - "title": "Dua Lipa - Training Season (Karaoke Version)", - "id": "lFVbDj_qlUU" - }, - { - "title": "Justin Timberlake - Selfish (Karaoke Version)", - "id": "gA0YhENzgds" - }, - { - "title": "He Is We - I Wouldn't Mind (Karaoke Version)", - "id": "NM4hXiCbwK4" - }, - { - "title": "SZA - Broken Clocks (Karaoke Version)", - "id": "g10PJaelvHc" - }, - { - "title": "Hozier - Work Song (Karaoke Version)", - "id": "uRcEEBsbfDg" - }, - { - "title": "Natasha Bedingfield - Pocketful of Sunshine (Karaoke Version)", - "id": "1h9hhsVTz6A" - }, - { - "title": "Frank Sinatra, Nancy Sinatra - Somethin' Stupid (Karaoke Version)", - "id": "-2X84JQuJJs" - }, - { - "title": "Usher - Caught Up (Karaoke Version)", - "id": "367rwhsofqs" - }, - { - "title": "David Kushner - Skin and Bones (Karaoke Version)", - "id": "xiNb1d6F9Zo" - }, - { - "title": "Muni Long - Made For Me (Karaoke Version)", - "id": "_zIVNdUGOXc" - }, - { - "title": "BABYMONSTER - Stuck In The Middle (Karaoke Version)", - "id": "xea0kXBAI38" - }, - { - "title": "Benson Boone - Beautiful Things (Karaoke Version)", - "id": "yPaHm9w-EEw" - }, - { - "title": "Bob Marley - No Woman No Cry (Karaoke Version)", - "id": "8rP5KeR3tzc" - }, - { - "title": "Bob Marley - Redemption Song (Karaoke Version)", - "id": "mXfgsiAPCXc" - }, - { - "title": "Bob Marley - Buffalo Soldier (Karaoke Version)", - "id": "FucSWsj1cgU" - }, - { - "title": "Bob Marley - One Love / People Get Ready (Karaoke Version)", - "id": "KpZhbzLvWms" - }, - { - "title": "Bob Marley - Waiting In Vain (Karaoke Version)", - "id": "WTdkf40IgQE" - }, - { - "title": "Ripley Alexander - Mamma Mia (Karaoke Version)", - "id": "y-3ttXaXRyY" - }, - { - "title": "Nina - Love Moves in Mysterious Ways - Live (Karaoke Version)", - "id": "yarCkISGzsI" - }, - { - "title": "Gwen Stefani, Akon - The Sweet Escape (Karaoke Version)", - "id": "rnFgMSQY-FM" - }, - { - "title": "MIIA - Dynasty (Karaoke Version)", - "id": "3mdO0FRrLuY" - }, - { - "title": "The Jets - You Got It All (Karaoke Version)", - "id": "5ipMO0magsU" - }, - { - "title": "Mahalini - Melawan Restu (Karaoke Version)", - "id": "K2pXbssq7IA" - }, - { - "title": "Fujii Kaze - Shinunoga E Wa (Karaoke Version)", - "id": "yLT_eaEy1lA" - }, - { - "title": "Yura Yunita - Dunia Tipu Tipu (Karaoke Version)", - "id": "sgj0neU9Leg" - }, - { - "title": "Bing Rodrigo - May Pag-ibig Pa Ba (Karaoke Version)", - "id": "bs-t-sm6sc4" - }, - { - "title": "Bob Marley - Three Little Birds (Karaoke Version)", - "id": "zmj7tGv4ECI" - }, - { - "title": "Yura Yunita, Glenn Fredly - Cinta Dan Rahasia (Karaoke Version)", - "id": "uaMuEMV_jag" - }, - { - "title": "April Boy Regino - Umiiyak Ang Puso (Karaoke Version)", - "id": "ESubt5DIepY" - }, - { - "title": "Oranges & Lemons - Heaven Knows - This Angel Has Flown (Karaoke Version)", - "id": "gkVHOC-hjhc" - }, - { - "title": "Alan Walker, Putri Ariani, Peder Elias - Who I Am (Karaoke Version)", - "id": "10Bq4b3BC0s" - }, - { - "title": "Randy Santiago - Hindi Magbabago (Karaoke Version)", - "id": "IQxtHtt-1YE" - }, - { - "title": "Regine Velasquez - Pangarap ko Ang Ibigin Ka (Karaoke Version)", - "id": "ENox0-dvveg" - }, - { - "title": "Anisa Rahman - Muhasabah Cinta (Karaoke Version)", - "id": "s5L7sol3TcM" - }, - { - "title": "Yura Yunita - Tutur Batin (Karaoke Version)", - "id": "rFTb7_9WyOc" - }, - { - "title": "Daryl Ong - Ikaw Na Nga (Karaoke Version)", - "id": "bzT5PCRHhvU" - }, - { - "title": "Bobby Goldsboro - Honey Karaoke (Version)", - "id": "SEtCdqD6NY0" - }, - { - "title": "Afgan - Bawalah Cintaku (Karaoke Version)", - "id": "oCZzWLFzzzA" - }, - { - "title": "Isyana Sarasvati - Tetap Dalam Jiwa (Karaoke Version)", - "id": "cARhNBPMn8A" - }, - { - "title": "Mahalini, Nuca - Aku Yang Salah (Karaoke Version)", - "id": "0W_2xEuySoA" - }, - { - "title": "Jack Harlow - Lovin On Me (Karaoke Version)", - "id": "rjqoWOZRbT0" - }, - { - "title": "Keisya Levronka - Tak Pantas Terluka (Karaoke Version)", - "id": "6fDo1xec1f8" - }, - { - "title": "Lara Fabian - Broken Vow (Karaoke Version)", - "id": "AHxttSwL_Ws" - }, - { - "title": "Donna Cruz - Only Me and You (Karaoke Version)", - "id": "qqI2aY6quLE" - }, - { - "title": "Brandon Lake - Gratitude (Karaoke Version)", - "id": "D5cwJW650eU" - }, - { - "title": "Virgoun - Saat Kau Telah Mengerti (Karaoke Version)", - "id": "J9D2SkpDJzo" - }, - { - "title": "Jim Brickman, Martina McBride - Valentine (Karaoke Version)", - "id": "h7BlkA7OAOc" - }, - { - "title": "Katrina Velarde - Lason Mong Halik (Karaoke Version)", - "id": "FRpndW3zzUE" - }, - { - "title": "Men Oppose - Sabihin Mong Lagi (Karaoke Version)", - "id": "GwR1OjrzBCM" - }, - { - "title": "Jade LeMac - Constellations (Piano Karaoke)", - "id": "dU-fhUgn9XA" - }, - { - "title": "Drake - Practice (Karaoke Version)", - "id": "GZbktkbRpek" - }, - { - "title": "Usher - Burn (Karaoke Version)", - "id": "giE8oV3AI44" - }, - { - "title": "Flo Milli - Never Lose Me (Karaoke Version)", - "id": "OgX8UJSeCjQ" - }, - { - "title": "Xavi - La Diabla (Karaoke Version)", - "id": "IO73YjbwoVo" - }, - { - "title": "UMI, V - wherever u r (Karaoke Version)", - "id": "dFFPTnDtN3M" - }, - { - "title": "Usher - Hey Daddy (Daddy's Home) (Karaoke Version)", - "id": "6TB0GQxu60I" - }, - { - "title": "Adie - Paraluman (Karaoke Version)", - "id": "lV1dvFobXI4" - }, - { - "title": "Element - Rahasia Hati (Karaoke Version)", - "id": "Cro88cWAcqk" - }, - { - "title": "Air Supply - Making Love Out of Nothing at All (Karaoke Version)", - "id": "90Wbsm9zBYc" - }, - { - "title": "Lani Misalucha - Tunay Na Mahal (Karaoke Version)", - "id": "RcXWiCGluTk" - }, - { - "title": "Karnamereka - Aya Ibu (Karaoke Version)", - "id": "LtDIMy9Z0aQ" - }, - { - "title": "Suara Kayu, Feby Putri - Kembali Pulang (Karaoke Version)", - "id": "LJkzis5a_9U" - }, - { - "title": "Judika - Aku Yang Tersakiti (Karaoke Version)", - "id": "aR-pGCbmlfM" - }, - { - "title": "Mason, Princess Superstar - Perfect (Exceeder) (Karaoke Version)", - "id": "nQiLL0mspHs" - }, - { - "title": "Batas Senja - Nanti Kita Seperti Ini (Karaoke Version)", - "id": "UfsWnmTb7rU" - }, - { - "title": "Bob Marley - Is This Love (Karaoke Version)", - "id": "jHCNqXX55pI" - }, - { - "title": "Idgitaf - Takut (Karaoke Version)", - "id": "Br_JahjWe_k" - }, - { - "title": "Moira Dela Torre - Dito Ka Lang (Karaoke Version)", - "id": "oxfwvWgvs6Q" - }, - { - "title": "Sophie Ellis-Bextor - Murder On The Dancefloor (Karaoke Version)", - "id": "lhr_pPAJ0C4" - }, - { - "title": "Dewa - Separuh Nafas (Karaoke Version)", - "id": "ITbj0_ca4cc" - }, - { - "title": "Bandang Lapis - Nang Dumating Ka (Karaoke Version)", - "id": "mM9I6cjtwRk" - }, - { - "title": "Noel Cabangon - Kanlungan (Karaoke Version)", - "id": "LO8-PqiXdMA" - }, - { - "title": "Ariana Grande - yes, and? (Karaoke Version)", - "id": "kS7lSiBJ_0s" - }, - { - "title": "BLACKPINK - Typa Girl (Karaoke Version)", - "id": "dexBY9pLSTw" - }, - { - "title": "Parokya Ni Edgar - Halaga (Karaoke Version)", - "id": "tCKhPhgmuTA" - }, - { - "title": "Nadin Amizah - Rayuan Perempuan Gila (Karaoke Version)", - "id": "eDV5k8E1lNI" - }, - { - "title": "TONEEJAY - 711 (Karaoke Version)", - "id": "AZzYnakiLCQ" - }, - { - "title": "Renรฉe Rapp - In The Kitchen (Karaoke Version)", - "id": "9Q3Ii2a7Q3M" - }, - { - "title": "Blackstreet, Dr Dre, Queen Pen - No Diggity (Karaoke Version)", - "id": "n4m4v6N379k" - }, - { - "title": "Lola Amour - Raining in Manila (Karaoke Version)", - "id": "1J69S52pJzE" - }, - { - "title": "Mahalini - Ini Laguku (Karaoke Version)", - "id": "KlyhFjuKW40" - }, - { - "title": "Daryl Hall & John Oates - You Make My Dreams (Come True) (Karaoke Version)", - "id": "bfltF1vZSAE" - }, - { - "title": "Jericho Rosales - Pusong Ligaw (Karaoke Version)", - "id": "isMRkX3Nu6A" - }, - { - "title": "Michael Pangilinan - Kung Sakali (Karaoke Version)", - "id": "bLcE-4xnK74" - }, - { - "title": "South Border - Love Of My Life (Karaoke Version)", - "id": "Nhhoau4criM" - }, - { - "title": "Tate McRae - grave (Karaoke Version)", - "id": "plzYWhLlbGg" - }, - { - "title": "Selena - Como La Flor (Karaoke Version)", - "id": "d6mToWZXZKA" - }, - { - "title": "Nelly Furtado - Maneater (Radio Edit) (Karaoke Version)", - "id": "2SwA1UDvYGE" - }, - { - "title": "Howie Day - Collide (Karaoke Version)", - "id": "pv73nSUPkNo" - }, - { - "title": "The Platters - The Great Pretender (Karaoke Version)", - "id": "S7vcCf_DZ7A" - }, - { - "title": "Cakra Khan - Kepada Hati (Karaoke Version)", - "id": "WolY12ByOoo" - }, - { - "title": "Gino Padella - Closer You And I (Karaoke Version)", - "id": "QQPUNZ_qrXA" - }, - { - "title": "Mahalini - Bohongi Hati (Karaoke Version)", - "id": "1__M7aASjjA" - }, - { - "title": "Regine Velasquez - On the Wings of Love (Karaoke Version)", - "id": "p7jpzkQdBP4" - }, - { - "title": "Tiara Andini - Menjadi Dia (Karaoke Version)", - "id": "n3yjproe5gA" - }, - { - "title": "Raissa Anggiani - Kau Rumahku (Karaoke Version)", - "id": "HXZ6we0_roc" - }, - { - "title": "Gabriella - Natatawa Ako (Karaoke Version)", - "id": "Ti8KstMvOtQ" - }, - { - "title": "Meiska - Hilang Tanpa Bilang (Karaoke Version)", - "id": "XlHzpIvS62g" - }, - { - "title": "Aruma - Muak (Karaoke Version)", - "id": "sV7PWVTJLFo" - }, - { - "title": "Barbra Streisand, Cรฉline Dion - Tell Him (Karaoke Version)", - "id": "IN-tb8M97ss" - }, - { - "title": "Luis Fonsi - Sola (English Version) (Karaoke Version)", - "id": "dqCGNAIkj0A" - }, - { - "title": "Siouxxie - masquerade (Karaoke Version)", - "id": "FJOxPKfBmJA" - }, - { - "title": "Guys Next Door - I've Been Waiting For You (Karaoke Version)", - "id": "zGEUoy-PXjI" - }, - { - "title": "Chris De Burgh - The Lady In Red (Karaoke Version)", - "id": "8dPoap31yh4" - }, - { - "title": "Ghea Indrawari - Jiwa Yang Bersedih (Karaoke Version)", - "id": "9CkVu_RS3H0" - }, - { - "title": "Everly Brothers - All I Have to Do Is Dream (Karaoke Version)", - "id": "ig8K_GsWnYg" - }, - { - "title": "Andmesh - Andaikan Kau Datang (Karaoke Version)", - "id": "tSYoCdVIXic" - }, - { - "title": "Ganny Brown - Lowbat Na Ba? (Karaoke Version)", - "id": "GvBqkVrURA8" - }, - { - "title": "Dan Seals - One Friend (Karaoke Version)", - "id": "dEH8g2x0a1Y" - }, - { - "title": "John Denver - Leaving On A Jet Plane (Karaoke Version)", - "id": "SXdzPT0lOP8" - }, - { - "title": "Stephen Bishop - It Might Be You (Karaoke Version)", - "id": "SJfIEyvh_9M" - }, - { - "title": "Radiohead - No Surprises (Karaoke Version)", - "id": "Ukn0xjnsLko" - }, - { - "title": "Jim Photoglo - Will of the Wind (Karaoke Version)", - "id": "DwschyLzBa0" - }, - { - "title": "Avenged Sevenfold - So Far Away (Karaoke Version)", - "id": "4oU7-kmfnJw" - }, - { - "title": "Pentatonix - Hallelujah (Karaoke Version)", - "id": "NQKrqJw3UlA" - }, - { - "title": "Michael Bublรฉ - Sway (Karaoke Version)", - "id": "NH7pnWJn3hM" - }, - { - "title": "Tom Petty - Love Is A Long Road (Karaoke Version)", - "id": "JPn-mF8JTuQ" - }, - { - "title": "Sabrina Carpenter - Feather (Karaoke Version)", - "id": "l6a9Gd0EIW4" - }, - { - "title": "Freddie Aguilar - Minamahal Kita (Karaoke Version)", - "id": "PiHSh1N1ZS0" - }, - { - "title": "Rey Valera - Walang Kapalit (Karaoke Version)", - "id": "zLBovSsfS5o" - }, - { - "title": "NIKI - Backburner (Karaoke Version)", - "id": "z7br8eHWtvc" - }, - { - "title": "Teddy Swims - Lose Control (Karaoke Version)", - "id": "-h6zdzLK-hE" - }, - { - "title": "Lana Del Rey - Take Me Home, Country Roads (Karaoke Version)", - "id": "A3XQnWgXtQw" - }, - { - "title": "Arthur Nery - Isa lang (Karaoke Version)", - "id": "9jRievxFFyY" - }, - { - "title": "NIKI - Oceans & Engines (Karaoke Version)", - "id": "PgsO3CaUfzg" - }, - { - "title": "Imagine Dragons - Bones (Karaoke Version)", - "id": "taxtGcOC_3E" - }, - { - "title": "Rivermaya - If (Karaoke Version)", - "id": "6sXZOByuzts" - }, - { - "title": "Tom Petty - I Won't Back Down (Karaoke Version)", - "id": "PUAqBG9U_zA" - }, - { - "title": "Tom Petty - Free Fallin' (Karaoke Version)", - "id": "tYPM_z90ahc" - }, - { - "title": "Gilbert O'Sullivan - Alone Again (Naturally) (Karaoke Version)", - "id": "qRI1YXonIXY" - }, - { - "title": "Jessie Murph - How Could You (Karaoke Version)", - "id": "tDxteaAtDT4" - }, - { - "title": "Jelly Roll - Save Me (Karaoke Versions)", - "id": "UccmluKtZ6I" - }, - { - "title": "Air Supply - Come What May (Karaoke Version)", - "id": "VFtJEe_VX5M" - }, - { - "title": "Jerron - Come What May (Tagalog Version) (Karaoke Version)", - "id": "hGV5YDR2JFg" - }, - { - "title": "Arthur Miguel - Lihim (Karaoke Version)", - "id": "R_sVqEj1pJM" - }, - { - "title": "Raden Rakha, Basmalah - Aku Jatu Cinta (Karaoke Version)", - "id": "Hf-deLjTerA" - }, - { - "title": "Devano - Surat Hati (Karaoke Version)", - "id": "NYxKm7klmpE" - }, - { - "title": "Shoti - LDR (Karaoke Version)", - "id": "3FL2Fqfp0G4" - }, - { - "title": "NewJeans - ETA (Karaoke Version)", - "id": "hCMfa74ldPc" - }, - { - "title": "Donne Maula - Bercinta Lewat Kata (Karaoke Version)", - "id": "zY-sAeqqx2o" - }, - { - "title": "Rachel Zegler - The Hanging Tree (The Hunger Games) (Karaoke Version)", - "id": "4gDdRpqMqYw" - }, - { - "title": "Rachel Zegler - The Ballad of Lucy Gray Baird (The Hunger Games) (Karaoke Version)", - "id": "U_4Mk42QSlU" - }, - { - "title": "Traditional - Auld Lang Syne (Karaoke Version)", - "id": "TNbgXx1B18Q" - }, - { - "title": "Fadhilah Intan - Dawai (Karaoke Version)", - "id": "RFp3dfVwL6w" - }, - { - "title": "Dygta, Kamsaean - Tapi Tahukah Kamu? (Karaoke Version)", - "id": "KH1BrR14CeI" - }, - { - "title": "George Benson - Nothing's Gonna Change My Love For You (Piano Version)", - "id": "e5i0YTU7K4g" - }, - { - "title": "Rod Stewart - Have I Told You Lately (Karaoke Version)", - "id": "xW8viTSEM0M" - }, - { - "title": "Cรฉline Dion - That's The Way It Is (Karaoke Version)", - "id": "k7XvAWjhK04" - }, - { - "title": "Jung Kook - Shot Glass of Tears (Karaoke Version)", - "id": "mSSzYD60s-0" - }, - { - "title": "Noah Kahan - Stick Season (Karaoke Version)", - "id": "IcS1tLmpR5o" - }, - { - "title": "Christmas Carols - Once in Royal David's City (Karaoke Version)", - "id": "YRSqpPtdlFs" - }, - { - "title": "Christmas Carols - We Three Kings (Karaoke Version)", - "id": "ugu-vYRax2M" - }, - { - "title": "Christmas Carols - O Little Town of Bethlehem (Karaoke Version)", - "id": "5ZR8u7FixqA" - }, - { - "title": "Mariah Carey - O Holy Night (Karaoke Version)", - "id": "x-p6dTA7JpU" - }, - { - "title": "Traditional - Happy Birthday (Karaoke Version)", - "id": "aF8voKa_3Us" - }, - { - "title": "Christmas Carols - O Christmas Tree (Karaoke Version)", - "id": "sA9Nz5bXI5E" - }, - { - "title": "Michael Bublรฉ - Winter Wonderland (Karaoke Version)", - "id": "czhfO1vAPg0" - }, - { - "title": "Pentatonix - Mary Did You Know? (Karaoke Version)", - "id": "otB8Ha8ZzMM" - }, - { - "title": "Jung Kook - Standing Next to You (Karaoke Version)", - "id": "tKkoy19cKl4" - }, - { - "title": "Christmas Carols - Go Tell It on the Mountain (Karaoke Version)", - "id": "RxjmbgrgPGI" - }, - { - "title": "Christmas Carols - Up on the Housetop (Karaoke Version)", - "id": "Yo_AF8kx4GU" - }, - { - "title": "Christmas Classics", - "id": "Karaoke Songs With Lyrics Medley" - }, - { - "title": "Luke Combs - Fast Car (Karaoke Version)", - "id": "TQY2TVn1azM" - }, - { - "title": "NIKI - High School in Jakarta (Karaoke Version)", - "id": "lieAdqPDHi8" - }, - { - "title": "Wham! - Last Christmas (Piano Karaoke)", - "id": "DUd4RcCL49Q" - }, - { - "title": "Christmas Carols - Ding Dong Merrily on High (Karaoke Version)", - "id": "AbH0lf1ayu0" - }, - { - "title": "juan karlos - ERE (Karaoke Version)", - "id": "EQJzDPAFVqU" - }, - { - "title": "Britney Spears - Circus (Karaoke Version)", - "id": "wKrHlCSebyY" - }, - { - "title": "Jung Kook - Hate You (Karaoke Version)", - "id": "LDLX90nARKo" - }, - { - "title": "Olivia Rodrigo - Canโ€™t Catch Me Now (from The Hunger Games) (Karaoke Version)", - "id": "6e4mLaYzsvQ" - }, - { - "title": "Troye Sivan - One Of Your Girls (Karaoke Version)", - "id": "Lc6yWmGZcqg" - }, - { - "title": "Britney Spears - Womanizer (Karaoke Version)", - "id": "efJhuhGNw4I" - }, - { - "title": "Britney Spears - Gimme More (Karaoke Version)", - "id": "5BCMm-uxU1Q" - }, - { - "title": "Christmas Carols - While Shepherds Watched Their Flocks (Karaoke Version)", - "id": "a4gytOFeGg4" - }, - { - "title": "Juris - Di Lang Ikaw (Karaoke Version)", - "id": "7IziBfOUdGk" - }, - { - "title": "Orange & Lemons - Hanggang Kailan, Umuwi Ka Na Baby (Karaoke Version)", - "id": "thbEKCf-Ddw" - }, - { - "title": "Billie Eilish - Bellyache (Karaoke Piano)", - "id": "-1dhNytIrss" - }, - { - "title": "SZA, Justin Bieber - Snooze (Acoustic) (Karaoke Version)", - "id": "PSk-oEwzg1Y" - }, - { - "title": "Laufey - Valentine (Karaoke Version)", - "id": "IVsF-yfh3LI" - }, - { - "title": "Laufey - Promise (Karaoke Version)", - "id": "G146k8TV4N4" - }, - { - "title": "Alan Walker - The Spectre (Karaoke Version)", - "id": "bFl2V_wNooo" - }, - { - "title": "Laufey - Falling Behind (Karaoke Version)", - "id": "Yx3yUs-zW4U" - }, - { - "title": "Dua Lipa - Houdini (Karaoke Version)", - "id": "vx1OQtHFWEs" - }, - { - "title": "Sing King Karaoke New Game", - "id": "Up_vxZjp1HM" - }, - { - "title": "iรฑigo quintero - Si No Estรกs (Karaoke Version)", - "id": "iEZmB9bDPDE" - }, - { - "title": "Kenya Grace - Strangers (Karaoke Version)", - "id": "XjPHz2T7DNA" - }, - { - "title": "Nadhif Basalamah - penjaga hati (Karaoke Version)", - "id": "bnbGIqpsoQY" - }, - { - "title": "Offset, Metro Boomin - Ric Flair Drip (Karaoke Version)", - "id": "kj3vazAG2sY" - }, - { - "title": "Britney Spears - Lucky (Karaoke Version)", - "id": "hzR9lRaiJMI" - }, - { - "title": "Zach Bryan, Kacey Musgraves - I Remember Everything (Karaoke Version)", - "id": "WeL44qPLmR8" - }, - { - "title": "Rihanna - If It's Lovin' That You Want (Karaoke Version)", - "id": "6OvAKHU1Ctc" - }, - { - "title": "Tyla - Water (Karaoke Version)", - "id": "_KZCVehzPK4" - }, - { - "title": "Arthur Miguel - Walang Kapalit (Karaoke Version)", - "id": "_1w-PRXVTFg" - }, - { - "title": "KALEO - Way Down We Go (Karaoke Version)", - "id": "ASHtmCXlHUM" - }, - { - "title": "Nena - 99 Luftballons (Karaoke Version)", - "id": "WtOVV4Wk74E" - }, - { - "title": "Tiara Andini - Janji Setia (Karaoke Version)", - "id": "xXBdKXvi6n4" - }, - { - "title": "The Beatles - Now And Then (Karaoke Version)", - "id": "m1CXT1Z4tQE" - }, - { - "title": "Cliff Richard - Ocean Deep (Karaoke Version)", - "id": "DSf72Cz_CYw" - }, - { - "title": "My Chemical Romance - Disenchanted (Karaoke Version)", - "id": "uehwruC1aF8" - }, - { - "title": "rhodessa - Kisame (Karaoke Version)", - "id": "hlIzAt06Fuw" - }, - { - "title": "Salbakuta - Stupid Love (Karaoke Version)", - "id": "IznUdRQGUEM" - }, - { - "title": "Jung Kook, Jack Harlow - 3D (Karaoke Version)", - "id": "qMZ3Rhdalo0" - }, - { - "title": "James Arthur, Anne Marie - Rewrite the Stars (Karaoke Version)", - "id": "u5F88j0eRZI" - }, - { - "title": "Anne Murray - Broken Hearted Me (Karaoke Version)", - "id": "-z3JLpc4TCg" - }, - { - "title": "Seafret - Atlantis (Piano Karaoke)", - "id": "I_CQsnFNeMA" - }, - { - "title": "David Slater - Exchange of Hearts (Karaoke Version)", - "id": "N9cBqMyxo9Y" - }, - { - "title": "System Of A Down - Chop Suey! (Karaoke Version)", - "id": "oHwRsI2aSDg" - }, - { - "title": "JENNIE - You & Me (Karaoke Version)", - "id": "ALQADb5CRW4" - }, - { - "title": "YOASOBI - (Idol) (Karaoke Version)", - "id": "aoZrqJcXfK8" - }, - { - "title": "sapientdream - Past Lives (Karaoke Version)", - "id": "SIRHqDNpLMo" - }, - { - "title": "Drake, Yebba - Yebba's Heartbreak (Karaoke Version)", - "id": "jJyXx9Re6TU" - }, - { - "title": "IVE - Either Way (Karaoke Version)", - "id": "WOrmzW8w29A" - }, - { - "title": "Moonstar88 - Torete (Karaoke Version)", - "id": "GNvoF7v4Ipg" - }, - { - "title": "Mitski - My Love Mine All Mine (Karaoke Version)", - "id": "Tl6lNyaao5Q" - }, - { - "title": "Fabio Asher - Rumah Singgah (Karaoke Version)", - "id": "HPyiPgWSls8" - }, - { - "title": "Dan Byrd - Boulevard (Karaoke Version)", - "id": "XIrWf0eHAww" - }, - { - "title": "Sammi Smith - Help Me Make It Through The Night (Karaoke Version)", - "id": "h_1qP5CcYfc" - }, - { - "title": "Josh Turner - Your Man (Karaoke Version)", - "id": "h4N1Uedlgac" - }, - { - "title": "M2M - Pretty Boy (Karaoke Version)", - "id": "zUWpSsiwLts" - }, - { - "title": "Olivia Rodrigo - the grudge (Karaoke Version)", - "id": "0rjWJWGRmco" - }, - { - "title": "Ketama - You Are The Reason (Karaoke Version)", - "id": "4-1hHXOCKvY" - }, - { - "title": "Mario G Klau - Semata Karenamu (Karaoke Version)", - "id": "0FbelJQWDMc" - }, - { - "title": "Sanshai - HABANG AKO'Y NABUBUHAY (Karaoke Version)", - "id": "A2VaX62mkUw" - }, - { - "title": "Tate McRae - greedy (Karaoke Version)", - "id": "jYC52LQxs3c" - }, - { - "title": "Kelly Clarkson - Because of You (Karaoke Piano)", - "id": "7tkqwlV8UCA" - }, - { - "title": "Olivia Rodrigo - get him back! (Karaoke Version)", - "id": "SCuzW6LJy2s" - }, - { - "title": "Lyodra - Tak Dianggap (Karaoke Version)", - "id": "fVjmSd_qSbI" - }, - { - "title": "Bandang Lapis - Kung Alam Mo Lang (Karaoke Version)", - "id": "GGtJYPBXFCk" - }, - { - "title": "ABBA - Honey Honey (Karaoke Version)", - "id": "trIzdC4dqfQ" - }, - { - "title": "Halle - Angel (Karaoke Version)", - "id": "pffG11viB2A" - }, - { - "title": "Alan Walker, Ava Max - Alone, Pt II (Karaoke Version)", - "id": "KiM_sBjG2M8" - }, - { - "title": "Brad Paisley, Alison Krauss - Whiskey Lullaby (Karaoke Version)", - "id": "rCZHQH4kx28" - }, - { - "title": "Olivia Rodrigo - teenage dream (Karaoke Version)", - "id": "soEjNVen5SQ" - }, - { - "title": "Olivia Rodrigo - making the bed (Karaoke Version)", - "id": "JpI2jorWxVQ" - }, - { - "title": "Olivia Rodrigo - lacy (Karaoke Version)", - "id": "vVtZ4XA_VHM" - }, - { - "title": "Olivia Rodrigo - logical (Karaoke Version)", - "id": "7plqe0keQgU" - }, - { - "title": "Nicki Minaj - Last Time I Saw You (Karaoke Version)", - "id": "G-ItNK8bvdo" - }, - { - "title": "December Avenue - Huling Sandali (Karaoke Version)", - "id": "Mre_8H8Inf4" - }, - { - "title": "Edwin McCain - I'll Be (Karaoke Version)", - "id": "g0QTe8ajayk" - }, - { - "title": "Ella Eyre - We Don't Have To Take Our Clothes Off (Karaoke Version)", - "id": "gDGPChDrFQc" - }, - { - "title": "wave to earth - seasons (Karaoke Version)", - "id": "DvDcbqyBlEM" - }, - { - "title": "Billie Eilish - everything i wanted (Karaoke Piano)", - "id": "kLHjY32FhLs" - }, - { - "title": "Moonstar88 - Migraine (Karaoke Version)", - "id": "8sF9f1bMNo8" - }, - { - "title": "Chris Norman - Some Hearts Are Diamonds (Karaoke Version)", - "id": "r7rtegChEQA" - }, - { - "title": "Whitney Houston - I Will Always Love You (Karaoke Piano)", - "id": "obXXv9riK8o" - }, - { - "title": "Olivia Rodrigo - all-american b*tch (Karaoke Version)", - "id": "J9ouUOckADw" - }, - { - "title": "Ariana Grande - Honeymoon Avenue (Karaoke Version)", - "id": "3Zy_v3zearY" - }, - { - "title": "Ne-Yo - Because Of You (Karaoke Version)", - "id": "nJyz179rbfU" - }, - { - "title": "Neocolours - Maybe (Karaoke Version)", - "id": "03p_baVTcLQ" - }, - { - "title": "Roel Cortez - Sa Mata Makikita (Karaoke Version)", - "id": "af7J3eM1ofc" - }, - { - "title": "A1 - Like A Rose (Karaoke Version)", - "id": "PRJhhwR64Dg" - }, - { - "title": "Mahalini - Kisah Sempurna (Karaoke Version)", - "id": "oqf2vXw5cD4" - }, - { - "title": "Fra Lippo Lippi - Later (Karaoke Version)", - "id": "JGk6h7Qt_jo" - }, - { - "title": "James Ingram - There's No Easy Way (Karaoke Version)", - "id": "0bk2T1COcyE" - }, - { - "title": "Jaya - Wala Na Bang Pag Ibig (Karaoke Version)", - "id": "q1kEDNphw1w" - }, - { - "title": "Ciamara Morales - Muling Binuhay Mo (Karaoke Version)", - "id": "3AyECvv0b40" - }, - { - "title": "Akon - Lonely (Karaoke Version)", - "id": "7gtwoq4LnUw" - }, - { - "title": "Everybody Loves An Outlaw - I See Red (Karaoke Piano)", - "id": "sGYVAQGPh7Q" - }, - { - "title": "Whitney Houston - One Moment In Time (Karaoke Piano)", - "id": "xE6L_6cH5i8" - }, - { - "title": "I Belong to the Zoo - Sana (Karaoke Version)", - "id": "L8WtyxYN99o" - }, - { - "title": "Dolly Parton - Jolene (Karaoke Piano)", - "id": "blR4XEGPE_o" - }, - { - "title": "Imago - Sundo (Karaoke Version)", - "id": "RW4x19-NUDg" - }, - { - "title": "Tiara Andini, Arsy Widianto - Cintanya Aku (Karaoke Version)", - "id": "BO4eeJWGkHY" - }, - { - "title": "Cheap Trick - The Flame (Karaoke Version)", - "id": "L2BlaTnT3QY" - }, - { - "title": "Tulus - Langit Abu-Abu (Karaoke Version)", - "id": "RyZ_Km2mbQI" - }, - { - "title": "Miley Cyrus - Used To Be Young (Karaoke Version)", - "id": "ChCJUgjPDcg" - }, - { - "title": "Angela Bofill - Break It To Me Gently (Karaoke Version)", - "id": "-bWHFidPF4M" - }, - { - "title": "Whigfield - Close To You - Radio Edit (Karaoke Version)", - "id": "BUKlbNHtQz0" - }, - { - "title": "Ziva Magnolya - Pilihan Yang Terbaik (Karaoke Version)", - "id": "uXibWWP9hH0" - }, - { - "title": "Olivia Rodrigo - jealousy, jealousy (Piano Karaoke)", - "id": "roZczwRn8Y8" - }, - { - "title": "Selena Gomez - Single Soon (Karaoke Version)", - "id": "7RALFxl9k88" - }, - { - "title": "Crystal Gayle - A Long and Lasting Love (Karaoke Version)", - "id": "4pngCxH8wq0" - }, - { - "title": "ABBA - Dancing Queen (Karaoke Piano)", - "id": "-vy6Mwige1A" - }, - { - "title": "The Beatles - Let It Be (Karaoke Piano)", - "id": "nrXMyIBm9Ls" - }, - { - "title": "Angeline Quinto - Till I Met You (Karaoke Version)", - "id": "6bYMHkKGR5Y" - }, - { - "title": "Queen - Bohemian Rhapsody (Karaoke Piano)", - "id": "KZ7nyHjuu5o" - }, - { - "title": "Yovie Widianto, Lyodra, Tiara Andini, Ziva Magnolya - Menyesal (Karaoke Version)", - "id": "1m-lEU9OFQo" - }, - { - "title": "Toto - I'll Be Over You (Karaoke Version)", - "id": "3pNWAKNBfHE" - }, - { - "title": "Jennifer Hudson - Spotlight (Karaoke Version)", - "id": "SjdtX8G1GaY" - }, - { - "title": "Passenger - Let Her Go (Karaoke Piano)", - "id": "iTQb_x6neqg" - }, - { - "title": "Ariana Grande - Tattooed Heart (Karaoke Version)", - "id": "kRciKrkyzSk" - }, - { - "title": "James Arthur - A Year Ago (Karaoke Version)", - "id": "vdIGT7fEKA0" - }, - { - "title": "Akon - Right Now (Na Na Na) (Karaoke Version)", - "id": "mSqJTWupltU" - }, - { - "title": "Olivia Rodrigo - bad idea right? (clean) (Karaoke Version)", - "id": "ju0aen5p8Jk" - }, - { - "title": "Olivia Rodrigo - bad idea right? (Karaoke Version)", - "id": "j8KWYIw3HJ4" - }, - { - "title": "Billie Eilish - The 30th (Karaoke Version)", - "id": "x9qdzwyHq5M" - }, - { - "title": "BTS - Blue & Grey (Karaoke Version)", - "id": "TKqhYZ_MRsU" - }, - { - "title": "Marco Sison - Always (Karaoke Version)", - "id": "PfzS6xh8Okg" - }, - { - "title": "Morisette - Gusto Ko Nang Bumitaw (Karaoke Version)", - "id": "bxkorVDJITo" - }, - { - "title": "James Arthur - A Thousand Years (Karaoke Version)", - "id": "mdlwzeZTRKo" - }, - { - "title": "Karyn White - Superwoman (Karaoke Version)", - "id": "Sj2YubYA_QM" - }, - { - "title": "Menudo - If You're Not Here (By My Side) (Karaoke Version)", - "id": "KT_XEwRJ7Js" - }, - { - "title": "Janet Basco - You Made Me Live Again (Karaoke Version)", - "id": "AW4R6zRrVyY" - }, - { - "title": "Boyz II Men - I'll Make Love To You (Karaoke Version)", - "id": "GjvVL5fShZg" - }, - { - "title": "Justin Bieber - Baby (Piano Karaoke)", - "id": "IMQICvUacBM" - }, - { - "title": "NOBITA - Ikaw Lang (Karaoke Version)", - "id": "O6V5tL4dyIQ" - }, - { - "title": "Gigi de Lana - Bakit Nga Ba Mahal Kita (Karaoke Version)", - "id": "9lw6kJeBzMU" - }, - { - "title": "The Notorious B I G , Diddy, Mase - Mo Money Mo Problems (Karaoke Version)", - "id": "h-UVCwvhzUg" - }, - { - "title": "The Righteous Brothers - Unchained Melody (Karaoke Piano)", - "id": "dQ5RJDK838w" - }, - { - "title": "Nazareth - Dream On (Karaoke Version)", - "id": "uLzPttz1V8g" - }, - { - "title": "Roel Cortez - Iniibig Kita (Karaoke Version)", - "id": "G10cm8yNLx0" - }, - { - "title": "NewJeans - Super Shy (Karaoke Version)", - "id": "1O1SG71rfoI" - }, - { - "title": "Pitbull, Ne Yo, Afrojack, Nayer - Give Me Everything (Karaoke Version)", - "id": "12ZDvzIViTw" - }, - { - "title": "Kid Rock, Sheryl Crow - Picture (Karaoke Version)", - "id": "CPO-Y0nvkYI" - }, - { - "title": "Callalily - Magbalik (Karaoke Version)", - "id": "4JWM7QW0NIM" - }, - { - "title": "BTS - Yet To Come (Karaoke Version)", - "id": "J9_F0ayNKOw" - }, - { - "title": "Last Child - Duka (Karaoke Version)", - "id": "vFHi5FSWg-c" - }, - { - "title": "ZAYN - Love Like This (Karaoke Version)", - "id": "FmE26Xpylg8" - }, - { - "title": "Ava Max - Choose Your Fighter (Karaoke Version) (From Barbie The Album)", - "id": "nYNaNY6CFHU" - }, - { - "title": "Ryan Gosling - I'm Just Ken (Karaoke Version) (From Barbie The Album)", - "id": "B7OpLSunE_w" - }, - { - "title": "Lizzo - Pink (Karaoke Version) (From Barbie The Album)", - "id": "3OLbw2BIrvc" - }, - { - "title": "Sam Smith - Man I Am (Karaoke Version) (From Barbie The Album)", - "id": "nCxk5SdNKcg" - }, - { - "title": "Alan Walker - Faded (Piano Karaoke)", - "id": "3W02Lpom65c" - }, - { - "title": "Eiffel 65 - Blue Da Ba Dee (Karaoke Version)", - "id": "FNIhj6DQtgk" - }, - { - "title": "Bette Midler - From A Distance (Karaoke Version)", - "id": "mx7oveUJUTs" - }, - { - "title": "Vanilla Ice - Ice Ice Baby (Karaoke Version)", - "id": "CmER6_swceY" - }, - { - "title": "Lyodra - Ego (Karaoke Version)", - "id": "KtLFoHwxECw" - }, - { - "title": "Juan Karlos - Buwan (Karaoke Version)", - "id": "f1cCpqOnc8c" - }, - { - "title": "Luther Vandross - Dance With My Father (Piano Karaoke)", - "id": "S_xUZHo-Nnc" - }, - { - "title": "Jung Kook, Latto - Seven (Karaoke Version) (Clean Ver.)", - "id": "0xnC8C2DL2M" - }, - { - "title": "Olivia Rodrigo - good 4 u (Piano Karaoke)", - "id": "g00vtIN_XUw" - }, - { - "title": "Moira Dela Torre - Dito Ka Lang (Karaoke Version)", - "id": "QA42l6E91co" - }, - { - "title": "Lana Del Rey - Radio (Karaoke Version)", - "id": "bNB_toiJ9js" - }, - { - "title": "Gloria Gaynor - I Will Survive (Piano Karaoke)", - "id": "OcZmincsx8A" - }, - { - "title": "Yng Lvcas, Peso Pluma - La Bebe - Remix (Karaoke Version)", - "id": "-iQDbgTX2z4" - }, - { - "title": "Lily Rose Depp - World Class Sinner/I'm A Freak (Karaoke Version)", - "id": "wnRDx2g04r0" - }, - { - "title": "Backstreet Boys - I Want It That Way (Piano Karaoke)", - "id": "9lCnW_UsjZk" - }, - { - "title": "FIFTY FIFTY, Kaliii - Barbie Dreams (From Barbie The Album) (Karaoke Version)", - "id": "olzREp08QNQ" - }, - { - "title": "Billie Eilish - What Was I Made For? (Karaoke Version [From The Barbie Soundtrack]", - "id": "f5dVe2PNXBw" - }, - { - "title": "PinkPantheress - Angel (Karaoke From Barbie The Album)", - "id": "jh-BHj-YGxw" - }, - { - "title": "Brian McKnight - 6, 8, 12 (Karaoke Version)", - "id": "dwnV1pQeW-E" - }, - { - "title": "Mandy Moore - Cry (Karaoke Version)", - "id": "zNHE859q-gQ" - }, - { - "title": "Rivermaya - 214 (Karaoke Version)", - "id": "LbQ5I1QPSsk" - }, - { - "title": "Michelle Branch - Everywhere (Karaoke Version)", - "id": "nRSvkKymHOA" - }, - { - "title": "Louane - Secret (Karaoke Version)", - "id": "yAfhOnKM5iw" - }, - { - "title": "Grease - Summer Nights (Karaoke Version)", - "id": "EVNFbhrJC-o" - }, - { - "title": "Elsya, Aan Story - Trauma (Karaoke Version)", - "id": "GOxIxJw9wAA" - }, - { - "title": "Tiara Andini - Tega (Karaoke Version)", - "id": "ud_ZJ6ggRhs" - }, - { - "title": "Air Supply Karaoke songs", - "id": "Sing King Karaoke Medley" - }, - { - "title": "Nicki Minaj, Ice Spice - Barbie World (with Aqua) (Karaoke Version)", - "id": "XFnXLPH4iCk" - }, - { - "title": "Darius Rucker - Wagon Wheel (Karaoke Version)", - "id": "fZLhpn1K9eE" - }, - { - "title": "Deep Purple - Soldier of Fortune (Karaoke Version)", - "id": "qY_odIHCCC0" - }, - { - "title": "Alan Walker, Sasha Alex Sloan - Hero (Karaoke Version)", - "id": "MdIZG8iu6j4" - }, - { - "title": "Ric Segreto - Don't Know What to Say - Don't Know What to Do (Karaoke Version)", - "id": "1MrjIaMfVzY" - }, - { - "title": "Olivia Rodrigo - vampire (clean) (Karaoke Version)", - "id": "hanrdeLWt-E" - }, - { - "title": "George Baker Selection - I've Been Away Too Long (Karaoke Version)", - "id": "jTJcTdK6xbc" - }, - { - "title": "Coco Jones - ICU (Karaoke Version)", - "id": "Mnpunk2tiho" - }, - { - "title": "Olivia Rodrigo - vampire (Piano Karaoke)", - "id": "2C94UwCoeQU" - }, - { - "title": "Harmonica Band ft Justine Calucin - Mahal Pa Rin Kita (Karaoke Version)", - "id": "dspKbUK2_Pw" - }, - { - "title": "Olivia Rodrigo - deja vu (Piano Karaoke)", - "id": "JgmORN_h9Vs" - }, - { - "title": "Olivia Rodrigo - vampire (Karaoke Version)", - "id": "xpha1FmOjLA" - }, - { - "title": "Laufey - From The Start (Karaoke Version)", - "id": "3vCD1mQlDlg" - }, - { - "title": "Why Don't We - Just Friends (Karaoke Version)", - "id": "e7rCqFiehKk" - }, - { - "title": "S Club 7 - Never Had A Dream Come True (Karaoke Version)", - "id": "QwUGRlLAsZM" - }, - { - "title": "Kane Brown, Katelyn Brown - Thank God (Karaoke Version)", - "id": "3EMu-wZg6ow" - }, - { - "title": "Marvin Gaye, Tammi Terrell - Ain't No Mountain High Enough (Karaoke Version)", - "id": "qzNxP1CVJsg" - }, - { - "title": "Bailey Zimmerman - Rock and A Hard Place (Karaoke Version)", - "id": "7IivchtEv7s" - }, - { - "title": "Lainey Wilson - Heart Like A Truck (Karaoke Version)", - "id": "3I5HhPbUDtI" - }, - { - "title": "Khloe Rose - Fictional (Karaoke Version)", - "id": "U-YJZxe_NdU" - }, - { - "title": "BABYMONSTER - DREAM (Karaoke Version)", - "id": "YSpnQ0R-9Hw" - }, - { - "title": "Iniko - Jericho (Karaoke Version)", - "id": "7VQ1OvPopXo" - }, - { - "title": "Putri Ariani - Loneliness (Karaoke Version)", - "id": "D8-X9T_U-R8" - }, - { - "title": "Niall Horan - The Show (Karaoke Version)", - "id": "EK709vKTyqM" - }, - { - "title": "Florence + The Machine - Dog Days Are Over (Karaoke Version)", - "id": "_iZNCYAfSPo" - }, - { - "title": "Lauren Spencer Smith - That Part (Karaoke Version)", - "id": "eyyLY4oNrXM" - }, - { - "title": "Future ft. The Weeknd - Low Life (Karaoke Version)", - "id": "iPkQdrMS0a8" - }, - { - "title": "(G)I-DLE - Queencard (Karaoke Version)", - "id": "-EDBn1RQhzE" - }, - { - "title": "The Weather Girls - It's Raining Men (Karaoke Version)", - "id": "1xKiUQSBWgo" - }, - { - "title": "Nicki Minaj - Starships (Karaoke Version)", - "id": "MGblJggENS4" - }, - { - "title": "Angeline Quinto - At Ang Hirap (Karaoke Version)", - "id": "R-G6ew8NuA0" - }, - { - "title": "Elvis Presley - Can't Help Falling In Love (Piano Karaoke)", - "id": "fIJQWkgMQ98" - }, - { - "title": "Yuji, Putri Dahlia - Old Love (Karaoke Version)", - "id": "KpEVuaNw9V0" - }, - { - "title": "Kylie Minogue - Padam Padam (Karaoke Version)", - "id": "7dDlCAKBebI" - }, - { - "title": "Haddaway - What Is Love (7\" Mix) (Karaoke Version)", - "id": "5PA6VEDIicM" - }, - { - "title": "Justine Calucin - Mahal Pa Rin Kita (Karaoke Version)", - "id": "nwXLKbY2OvA" - }, - { - "title": "Olivia Newton-John - Hopelessly Devoted To You (Karaoke with Guide Vocal)", - "id": "TN1pMItJ3xA" - }, - { - "title": "Tina Turner - Proud Mary (Karaoke Version)", - "id": "QRo_bA0UZqs" - }, - { - "title": "Cรฉline Dion - It's All Coming Back To Me Now (Karaoke with Guide Vocal)", - "id": "Runsc90Jtw8" - }, - { - "title": "NLE Choppa, Kodak Black, Jimin of BTS, JVKE, & Muni Long - Angel Pt. 1 (Karaoke Version)", - "id": "2KsPGJP7-io" - }, - { - "title": "Karaoke Songs with lyrics", - "id": "Love Song Medley" - }, - { - "title": "Doechii - What It Is (Solo Version) (Karaoke Version)", - "id": "99zqSU1llbE" - }, - { - "title": "Awdella - Tertawan Hati (Karaoke Version)", - "id": "5aFf8n_Vhso" - }, - { - "title": "Lyodra - Pesan Terakhir (Karaoke Version)", - "id": "QSOJrRZQXQ4" - }, - { - "title": "Krissy & Ericka - 12:51 (Karaoke Version)", - "id": "ryw3sTbV9jc" - }, - { - "title": "Rockstar - Mahal Pa Rin Kita (Karaoke Version)", - "id": "mZ8FWOETu8g" - }, - { - "title": "Anggi Marito - Tak Segampang Itu (Karaoke Version)", - "id": "7Aydn2Wkkps" - }, - { - "title": "Daniel Caeser - Always (Karaoke Version)", - "id": "dqlf45uFd8Y" - }, - { - "title": "Ed Sheeran - Photograph (Piano Karaoke)", - "id": "RNxwd8utNBI" - }, - { - "title": "Lewis Capaldi - The Pretender (Karaoke Version)", - "id": "6NxO-jvNdD8" - }, - { - "title": "Dua Lipa - Dance The Night (From The Barbie Album) (Karaoke Version)", - "id": "JqmYhOF_FwY" - }, - { - "title": "Loreen - Tattoo (Piano Karaoke)", - "id": "tgZ60HUZ9hg" - }, - { - "title": "Grupo Frontera, Bad Bunny - un x100to (Karaoke Version)", - "id": "5LAAjawwjRE" - }, - { - "title": "Up Dharma Down - Tadhana (Karaoke Version)", - "id": "9eFKTDA-pk8" - }, - { - "title": "Alicia Keys - Girl on Fire (Piano Karaoke)", - "id": "hvMw15GwRK8" - }, - { - "title": "keshi - LIMBO (Karaoke Version)", - "id": "pgrNaBHpOK4" - }, - { - "title": "TVORCHI - Heart Of Steel (Karaoke Version)", - "id": "-MpLG3PQs70" - }, - { - "title": "Lewis Capaldi - Haven't You Ever Been In Love Before? (Karaoke Version)", - "id": "u1HPIeivnmo" - }, - { - "title": "Carrie Underwood - Before He Cheats (Piano Karaoke)", - "id": "Rf374Hiw7jA" - }, - { - "title": "Kali - Area Codes (Karaoke Version)", - "id": "XvanaWBWdHg" - }, - { - "title": "Lana Del Rey - Say Yes To Heaven (Karaoke Version)", - "id": "qHpumOcF_7w" - }, - { - "title": "Kodaline - Moving On (Karaoke Version)", - "id": "3qWgz-N7lAc" - }, - { - "title": "Frank Sinatra - My Way (Karaoke With Vocal Guide)", - "id": "qr7bmNeIr_8" - }, - { - "title": "The Itchyworms - Beer (Karaoke Version)", - "id": "IvIvCzMlB8Y" - }, - { - "title": "IVE - Kitsch (Karaoke Version)", - "id": "P2zvgp0DLcs" - }, - { - "title": "Neil Diamond - Sweet Caroline (Karaoke with Guide Vocal)", - "id": "21UJnJkNQXc" - }, - { - "title": "The Best Karaoke with lyrics", - "id": "Piano Karaoke" - }, - { - "title": "Henry Moodie - drunk text (Karaoke Version)", - "id": "0yYbzWRroKo" - }, - { - "title": "TVORCHI - Heart Of Steel (Eurovision Version) (Karaoke Version)", - "id": "pRlM4b8YrV0" - }, - { - "title": "Raim Loade - Komang (Karaoke Version)", - "id": "7r6R8KLCTG0" - }, - { - "title": "Dilaw - Uhaw (Tayong Lahat) (Piano Karaoke)", - "id": "g5UqComgW60" - }, - { - "title": "Kรครคrijรค - Cha Cha Cha (Karaoke Version)", - "id": "xhJZSwQ_NoY" - }, - { - "title": "O-Town - All or Nothing (Karaoke Version)", - "id": "05e33y630oo" - }, - { - "title": "Eslabon Armado, Peso Pluma - Ella Baila Sola (Karaoke Version)", - "id": "gk0OC3Zw4pg" - }, - { - "title": "d4vd - Here With Me (Piano Karaoke)", - "id": "ZMSa-QnnRws" - }, - { - "title": "Alan Walker, Emma Steinbakken - Not You (Karaoke Version)", - "id": "4rbcZR-WvCk" - }, - { - "title": "LE SSERAFIM, Nile Rodgers - UNFORGIVEN (Karaoke Version)", - "id": "n95ANSJY8bY" - }, - { - "title": "Eric Clapton - Wonderful Tonight (Piano Karaoke)", - "id": "SVicB-bFaxw" - }, - { - "title": "Gloria Gaynor - I Will Survive (Karaoke with Guide Vocal)", - "id": "ysRoXpBRNbo" - }, - { - "title": "Alexandra Burke - Hallelujah (Piano Karaoke)", - "id": "sWw5xVdb3F8" - }, - { - "title": "NF - HAPPY (Karaoke Version)", - "id": "dMSC3lKFQCw" - }, - { - "title": "FUN. ft. Janelle Monรกe - We Are Young (Karaoke Version)", - "id": "E_bVDXdmE1w" - }, - { - "title": "SZA - Snooze (Karaoke Version)", - "id": "MM2EQbLou30" - }, - { - "title": "Ed Sheeran - Boat (Karaoke Version)", - "id": "8k2yq4UHS2E" - }, - { - "title": "Sabrina Carpenter - emails i can't send (Karaoke Version)", - "id": "od6aENgF07k" - }, - { - "title": "IVE - I AM (Karaoke Version)", - "id": "6eysaF9iZi8" - }, - { - "title": "Aziz Hedra - Somebody's Pleasure (Karaoke Version)", - "id": "ao1zmQPd-kI" - }, - { - "title": "Lorde - Royals (Karaoke Version)", - "id": "1Gv5AFz8HE0" - }, - { - "title": "One Direction - Night Changes (Piano Karaoke)", - "id": "684wyeA41-c" - }, - { - "title": "The Weeknd ft. Future - Double Fantasy (Karaoke Version)", - "id": "FnvpCmCIa90" - }, - { - "title": "Luke Combs - The Kind of Love We Make (Karaoke Version)", - "id": "IHCjoOC1qIc" - }, - { - "title": "Labrinth - Never Felt So Alone (Karaoke Version)", - "id": "FmXJYnLVrJA" - }, - { - "title": "Jack Black - Peaches (Karaoke Version)", - "id": "b4r10ZDkoRc" - }, - { - "title": "NewJeans - OMG (Karaoke Version)", - "id": "Nb4MZAuWr9g" - }, - { - "title": "Lady Gaga - Always Remember Us This Way (Piano Karaoke)", - "id": "F4ZLwK_tZM0" - }, - { - "title": "Dilaw - Uhaw (Karaoke Songs)", - "id": "OgpA8sMKZMk" - }, - { - "title": "Vance Joy - Riptide (Piano Karaoke)", - "id": "qj1ExxR7Mbs" - }, - { - "title": "Lana Del Rey, SYML - Paris, Texas (Karaoke Version)", - "id": "NMrnX4ivbRk" - }, - { - "title": "Michael Pangilinan - Bakit Ba Ikaw (Karaoke Version)", - "id": "Ma6K99zE8Sw" - }, - { - "title": "Best Karaoke songs with lyrics from 90s, 00s, 10s and 20s", - "id": "RQC7JL4a6fc" - }, - { - "title": "Loreen - Tattoo (Karaoke Version)", - "id": "b9skN7auv4c" - }, - { - "title": "Rihanna - SOS (Karaoke Version)", - "id": "v5keWE6yB6k" - }, - { - "title": "Melanie Martinez - DEATH (Karaoke Version)", - "id": "yJl30_RIQyg" - }, - { - "title": "Rod Wave - Fight The Feeling (Karaoke Version)", - "id": "0XM1xdHwsJg" - }, - { - "title": "Jimin - Like Crazy (Karaoke Version)", - "id": "4xKXKVKg6d0" - }, - { - "title": "Jimin - Like Crazy (English Version) (Karaoke Version)", - "id": "IQR4ejQlNeA" - }, - { - "title": "David Kushner - Daylight (Karaoke Version)", - "id": "6On6QGIaRww" - }, - { - "title": "Miley Cyrus - Angels Like You (Piano Karaoke)", - "id": "RDkIcMvkpkE" - }, - { - "title": "Shawn Mendes - Stitches (Piano Karaoke)", - "id": "fAHs9mfj2Uw" - }, - { - "title": "NF - HOPE (Karaoke Version)", - "id": "bbHPT8aEYhM" - }, - { - "title": "Melanie Martinez - VOID (Karaoke Version)", - "id": "P05u6WS8uEk" - }, - { - "title": "Mahalini - Sial (Karaoke Version)", - "id": "BzJsUqvKrRY" - }, - { - "title": "JISOO - FLOWER (Karaoke Version)", - "id": "Bn5n8R5MY1k" - }, - { - "title": "ABBA - The Winner Takes It All (Piano Karaoke)", - "id": "0IsoAYygKAM" - }, - { - "title": "Charlie Puth, Dan + Shay - That's Not How This Works (Karaoke Version)", - "id": "KN5XuOYXadA" - }, - { - "title": "Best Karaoke songs with lyrics from 50s, 60s, 70s and 80s", - "id": "6ZI0fNdkAWI" - }, - { - "title": "Jimin - Promise (Karaoke Version)", - "id": "c8_EGyV0Op8" - }, - { - "title": "Lana Del Rey, Jon Batiste - Candy Necklace (Karaoke Version)", - "id": "mDDF5ZDH14U" - }, - { - "title": "BLACKPINK - Shut Down (Karaoke Version)", - "id": "u0XVZwf1l9Q" - }, - { - "title": "FIFTY FIFTY - Cupid (Twin Ver.) (Karaoke Version)", - "id": "q7xdulZjasw" - }, - { - "title": "Lewis Capaldi - Wish You The Best (Karaoke Version)", - "id": "WtJ3I4Qt4Fg" - }, - { - "title": "Keenan Te - Scars (Karaoke Version)", - "id": "-YsPk7ALYfc" - }, - { - "title": "Jeff Grecia - Elevate (Karaoke Version)", - "id": "wwm-hU_PSPk" - }, - { - "title": "Ed Sheeran - Eyes Closed (Piano Karaoke)", - "id": "66cx3A9l3L8" - }, - { - "title": "Ed Sheeran - Eyes Closed (Karaoke Version)", - "id": "Cu6_d4p-Ewo" - }, - { - "title": "Lovejoy - Call Me What You Like (Karaoke Version)", - "id": "2DXxv09R5dE" - }, - { - "title": "FIFTY FIFTY - Cupid (Karaoke Version)", - "id": "-63_3ZnjInE" - }, - { - "title": "Lizzy McAlpine - ceilings (Piano Karaoke)", - "id": "x3u02M1XKcE" - }, - { - "title": "New West - Those Eyes (Piano Karaoke)", - "id": "_FMFY1JLIME" - }, - { - "title": "Taylor Swift - All Of The Girls You Loved Before (Karaoke Version)", - "id": "JRx_iLdF4JE" - }, - { - "title": "Meghan Trainor - Mother (Karaoke Version)", - "id": "LedF8wCozsI" - }, - { - "title": "Demi Lovato - Heart Attack (Rock Version) (Karaoke Version)", - "id": "2NVB-fm4FmA" - }, - { - "title": "Toosii - Favorite Song (Karaoke Version)", - "id": "xL-R3K_CSlY" - }, - { - "title": "TINI - Cupido (Karaoke Version)", - "id": "wEbABJYI_yk" - }, - { - "title": "Rihanna, Calvin Harris - We Found Love (Piano Karaoke)", - "id": "Ka0JPMwJI4M" - }, - { - "title": "Morgan Wallen - Last Night (Karaoke Version)", - "id": "u-AR6JBjj3M" - }, - { - "title": "James Blunt - Monsters (Karaoke Version)", - "id": "v_x8AqRGHtU" - }, - { - "title": "Hozier - Eat Your Young (Karaoke Version)", - "id": "22iOZ9WysFg" - }, - { - "title": "Miley Cyrus ft Brandi Carlile - Thousand Miles (Karaoke Version)", - "id": "joaDUTMQUEc" - }, - { - "title": "Halsey - Die 4 Me (Karaoke Version)", - "id": "qEV-njk4sIc" - }, - { - "title": "David Guetta, Bebe Rexha - I'm Good (Blue) (Karaoke Version)", - "id": "r2Eia2HDqIA" - }, - { - "title": "Rihanna - Only Girl (In the World) (Piano Karaoke)", - "id": "6KECCNE22d0" - }, - { - "title": "MC Niack - Oh Juliana (Karaoke Version)", - "id": "NYa7EWsAdIE" - }, - { - "title": "Rihanna - Where Have You Been (Piano Karaoke)", - "id": "3GHPjm_rJOc" - }, - { - "title": "The Killers - Mr Brightside (Piano Karaoke)", - "id": "hZ1gsYckDGk" - }, - { - "title": "JVKE - this is what losing someone feels like (Karaoke Version)", - "id": "h3rFlQsob9g" - }, - { - "title": "Miley Cyrus - You (Karaoke Version)", - "id": "Rv40J-KVqlk" - }, - { - "title": "The Weeknd, Ariana Grande - Die For You (Remix) (Piano Karaoke)", - "id": "_zBLHtVg0eI" - }, - { - "title": "Miley Cyrus - River (Karaoke Version)", - "id": "Ff3-e7tq_LE" - }, - { - "title": "Miley Cyrus Ft. Sia - Muddy Feet (Karaoke Version)", - "id": "pEYKvfyEXik" - }, - { - "title": "Taylor Dayne - Love Will Lead You Back (Karaoke Version)", - "id": "1XvcftQeLSM" - }, - { - "title": "New Jeans - Ditto (Karaoke Version)", - "id": "EXfULdbfL7U" - }, - { - "title": "Kris Yute - I Did It (Karaoke Version)", - "id": "rwV_IoxJW0Q" - }, - { - "title": "Firehouse - Love of a Lifetime (Karaoke Version)", - "id": "OLXPKj1FAnU" - }, - { - "title": "j-hope, J. Cole - on the street (Karaoke Version)", - "id": "8uHee-A4amk" - }, - { - "title": "Miley Cyrus - Jaded (Karaoke Version)", - "id": "0LIZP4TdBmQ" - }, - { - "title": "Phil Collins - Another Day in Paradise (Karaoke Version)", - "id": "cnCqNp1aaSE" - }, - { - "title": "KAROL G, Shakira - TQG (Karaoke Version)", - "id": "oS5uiRwQL64" - }, - { - "title": "Mike Posner, Gigamesh - Cooler Than Me - Single Mix (Karaoke Version)", - "id": "dLuuoykVw54" - }, - { - "title": "Matchbox Twenty - Unwell (Karaoke Version)", - "id": "aGkFoXPJsY8" - }, - { - "title": "Ne-Yo - Mad (Karaoke Version)", - "id": "RFx0hP1SpGU" - }, - { - "title": "Rihanna - Take A Bow (Piano Karaoke)", - "id": "RCto1V1gfBk" - }, - { - "title": "Baby Tate - Hey Mickey! (Karaoke Version)", - "id": "tbuirN6Ubes" - }, - { - "title": "Miley Cyrus - Wonder Woman (Karaoke Version)", - "id": "NkAOEMx6bss" - }, - { - "title": "Zelle - Sabihin (Karaoke Version)", - "id": "FrRLQ1cCFnA" - }, - { - "title": "beabadoobee - Glue Song (Karaoke Version)", - "id": "vcn4tU8rq-c" - }, - { - "title": "ROSALรA - Aute Cuture (Karaoke Version)", - "id": "blvn4w3Mnn0" - }, - { - "title": "Dua Lipa - Don't Start Now (Piano Karaoke)", - "id": "aLlns5GW97Y" - }, - { - "title": "The Mamas & The Papas - California Dreamin' (Karaoke Version)", - "id": "K1n5_8d0MsU" - }, - { - "title": "Sia - Chandelier (Piano Karaoke)", - "id": "qUP5mDujZrE" - }, - { - "title": "Denise Julia - NVMD (Karaoke Version)", - "id": "2zdRAvMoPRE" - }, - { - "title": "Halsey - Without Me (Piano Karaoke)", - "id": "ZMh-A3nCRzc" - }, - { - "title": "Diana Ross - Theme From Mahogany (Do You Know Where You're Going To) (Karaoke Version)", - "id": "jZO2gNgmvUM" - }, - { - "title": "Frank Sinatra - My Way (Piano Karaoke)", - "id": "PsS9qN3LrII" - }, - { - "title": "Miley Cyrus - Flowers (Demo) (Karaoke Version)", - "id": "gKYJ7EQavhE" - }, - { - "title": "SunKissed Lola - PASILYO (Karaoke Version)", - "id": "ZGUtHVzi1qI" - }, - { - "title": "Pink Pantheress, Ice Spice - Boy's a liar Pt. 2 (Karaoke Version)", - "id": "W7583jsL-lA" - }, - { - "title": "Tina Turner - What's Love Got to Do with It (Karaoke Version)", - "id": "R23iFLtZzmY" - }, - { - "title": "Kenny Rogers - Through The Years (Karaoke Version)", - "id": "2d4D-0Vsyiw" - }, - { - "title": "Mรฅneskin - MAMMAMIA (Karaoke Version)", - "id": "1duiZbF_Tx4" - }, - { - "title": "Ed Sheeran - Lego House (Piano Karaoke)", - "id": "LYqRbwHavCI" - }, - { - "title": "Luther Vandross - I'd Rather (Karaoke Version)", - "id": "Wvv43gyB6no" - }, - { - "title": "Pink Pantheress - Boy's a liar (Karaoke Version)", - "id": "nwYRNqf_F1E" - }, - { - "title": "Mahalini - Sisa Rasa (Karaoke Version)", - "id": "lTMHgTdKang" - }, - { - "title": "Lauren Daigle - Hold On To Me (Karaoke Version)", - "id": "K-Sw29N29oc" - }, - { - "title": "The Kid LAROI - Kids Are Growing Up (Part 1) (Karaoke Version)", - "id": "vJilneCLSbU" - }, - { - "title": "Gina T - Sail Over Seven Seas (Karaoke Songs)", - "id": "-dlXnvxWe-s" - }, - { - "title": "Kelly Clarkson - Stronger (What Doesn't Kill You) (Karaoke Version)", - "id": "jqpVztRB7RA" - }, - { - "title": "Allona - Someone's Always Saying Goodbye (Karaoke Version)", - "id": "_yEjGGeNU5c" - }, - { - "title": "Stephen Sanchez, Em Beihold - Until I Found You - Duet (Piano Karaoke)", - "id": "8thgXdLa4lM" - }, - { - "title": "The Weeknd, Ariana Grande - Die For You Remix (Karaoke Version)", - "id": "nxeDoH4VqQA" - }, - { - "title": "The Script - Breakeven (Piano Karaoke)", - "id": "TBYscv4mGes" - }, - { - "title": "Stephen Sanchez, Em Beihold - Until I Found You - Duet (Karaoke Version)", - "id": "wm668alY3Yc" - }, - { - "title": "Meghan Trainor - NO (Piano Karaoke)", - "id": "ErVCFQxiL64" - }, - { - "title": "Rihanna - Pon De Replay (Karaoke Version)", - "id": "yCKLqLvii8w" - }, - { - "title": "Miley Cyrus - The Climb (Piano Karaoke)", - "id": "r341EL7PXZg" - }, - { - "title": "Raisa, Andi Rianto - Bahasa Kalbu (Karaoke Version)", - "id": "tyewo2nMMj4" - }, - { - "title": "Lizzy McAlpine - ceilings (Karaoke Version)", - "id": "vUWsC88Copw" - }, - { - "title": "Kali Uchis - I Wish you Roses (Karaoke Version)", - "id": "px0ZmISy-EE" - }, - { - "title": "Libianca - People (Karaoke Version)", - "id": "ZFlYXKnGH3Y" - }, - { - "title": "Niall Horan - Heaven (Karaoke Version)", - "id": "Te_4SM_LCC4" - }, - { - "title": "Rema, Selena Gomez - Calm Down (Karaoke Version)", - "id": "To1kB_DFggQ" - }, - { - "title": "Coi Leray - Players (Karaoke Version)", - "id": "3hQtdpZjuwE" - }, - { - "title": "Nine Days - Absolutely (Story of a Girl) (Karaoke Version)", - "id": "r-w__4au_Tc" - }, - { - "title": "Billie Eilish - TV (Piano Karaoke)", - "id": "ATV62AoZG_E" - }, - { - "title": "Lobo - How Can I Tell Her (Karaoke Version)", - "id": "uqRSWhytzAY" - }, - { - "title": "The Everly Brothers - Let It Be Me (Karaoke Version)", - "id": "DML7SdkO5ZQ" - }, - { - "title": "The Kid LAROI - I Canโ€™t Go Back To The Way It Was (Intro) (Karaoke Version)", - "id": "x-2ogfKAZbY" - }, - { - "title": "Paramore - This Is Why (Karaoke Version)", - "id": "in6H8oj6_Jc" - }, - { - "title": "Martin Nievera - Be My Lady (Karaoke Version)", - "id": "h_hEMHfqr2Q" - }, - { - "title": "Mรฅneskin - Baby Said (Karaoke Version)", - "id": "eBlwDo8QaIw" - }, - { - "title": "Louyah - I Used To Care (Karaoke Version)", - "id": "1-WcnWe4-Ig" - }, - { - "title": "boygenius - Emily I'm Sorry (Karaoke Version)", - "id": "_0ctZUD65Xc" - }, - { - "title": "Rockstar - Parting Time (Karaoke Version)", - "id": "gimpuish6DU" - }, - { - "title": "JVKE - this is what heartbreak feels like (Karaoke Version)", - "id": "yJcY-KdXT54" - }, - { - "title": "Ice Spice, Lil Tjay - Gangsta Boo (Karaoke Version)", - "id": "jGIC4ske6_s" - }, - { - "title": "Mary J. Blige - Family Affair (Karaoke Version)", - "id": "5Ed0GIyStVQ" - }, - { - "title": "Lil Nas X - STAR WALKIN' (Karaoke Version)", - "id": "e1E2eo1n2Pk" - }, - { - "title": "Billy Joel - Uptown Girl (Karaoke Version)", - "id": "xrYUNv_qRVg" - }, - { - "title": "Eraserheads - With A Smile (Karaoke Version)", - "id": "5_e015_ayUE" - }, - { - "title": "Olivia Rodrigo - favorite crime (Piano Karaoke)", - "id": "aK7c-9sYAdc" - }, - { - "title": "Cรฉline Dion - The Power of Love (Karaoke Version)", - "id": "t6Ydvm0g_4w" - }, - { - "title": "Jordin Sparks ft Chris Brown - No Air (Karaoke Version)", - "id": "0y0zKN06RNg" - }, - { - "title": "Seventeen - Kemarin (Karaoke Version)", - "id": "o-OqytXZ4rY" - }, - { - "title": "Sam Smith - I'm Not Here to Make Friends (Karaoke Version)", - "id": "5WMsf0nAlFI" - }, - { - "title": "TWICE - MOONLIGHT SUNRISE (Karaoke Version)", - "id": "EpxuxJcSrwQ" - }, - { - "title": "REYNE - At My Worst (Karaoke Version)", - "id": "jjoGOYjvfE0" - }, - { - "title": "SZA - Nobody Gets Me (Karaoke Version)", - "id": "ehMN7CQ1vDg" - }, - { - "title": "Sam Smith, Koffee, Jessie Reyez - Gimme (Karaoke Version)", - "id": "_jq-e2QtSV4" - }, - { - "title": "The Jets - Make It Real (Karaoke Version)", - "id": "LeRcAzEwI7E" - }, - { - "title": "Betharia Sonatha - Hati Yang Luka (Karaoke Version)", - "id": "VeYc6_E_2OM" - }, - { - "title": "Sabrina Carpenter - Nonsense (Karaoke Version)", - "id": "qZaS1OT9xQI" - }, - { - "title": "Bonnie Tyler - If I Sing You a Love Song (Karaoke Version)", - "id": "k6gcSuNufhA" - }, - { - "title": "Sam Smith, Ed Sheeran - Who We Love (Karaoke Version)", - "id": "XpsYVpXhEOw" - }, - { - "title": "Maroon 5 - She Will Be Loved (Piano Karaoke)", - "id": "zu10xadVaWM" - }, - { - "title": "David Pomeranz - On This Day (Karaoke Version)", - "id": "sUD_pgXU0e0" - }, - { - "title": "R.E.M - Losing My Religion (Karaoke Version)", - "id": "gCrqBZlxSyA" - }, - { - "title": "Ava Max - One Of Us (Karaoke Version)", - "id": "1_f2enUKeSU" - }, - { - "title": "Sam Smith, Ed Sheeran - Who We Love (Piano Karaoke)", - "id": "sGrHqxca4Ig" - }, - { - "title": "Mayonnaise - Jopay (Karaoke Version)", - "id": "1vBcxWpOi6w" - }, - { - "title": "Rema - Calm Down (Karaoke Version)", - "id": "I96r37piNG4" - }, - { - "title": "Budi Doremi - Melukis Senja (Karaoke Version)", - "id": "DgmcO5TSRdI" - }, - { - "title": "Lauren Christy - Steep (Karaoke Version)", - "id": "3xPjXbD1TBg" - }, - { - "title": "Billy Joel - Piano Man (Karaoke Version)", - "id": "rW2541x8VzY" - }, - { - "title": "d4vd - Romantic Homicide (Karaoke Version)", - "id": "6gJOFTj-z_I" - }, - { - "title": "Lana Del Rey - Summertime Sadness (Piano Karaoke)", - "id": "rYvkGO98iaI" - }, - { - "title": "Keane - Somewhere Only We Know (Piano Karaoke)", - "id": "GUvK2YLh98o" - }, - { - "title": "Westlife - My Love (Karaoke Version)", - "id": "SMBliIvBigU" - }, - { - "title": "Jennelyn Yabu - Labis na Nasaktan (Karaoke Version)", - "id": "SRtd8zs1geU" - }, - { - "title": "Bizarrap, Shakira - Bzrp Music Sessions, #53 (Karaoke Version)", - "id": "hEZHzkuXL_U" - }, - { - "title": "Mac Demarco - Heart To Heart (Karaoke Version)", - "id": "3hRpzd9_8BM" - }, - { - "title": "Miley Cyrus - Flowers (Karaoke Version)", - "id": "fO4wsNsXtDg" - }, - { - "title": "Olivia Newton-John - Hopelessly Devoted To You (Piano Karaoke)", - "id": "Ez9gHxgJAY8" - }, - { - "title": "Billy Joel - She's Always a Woman (Karaoke Version)", - "id": "FN9QZmfvIHQ" - }, - { - "title": "Boyzone - Baby Can I Hold You (Karaoke Version)", - "id": "qEH9w7TFInw" - }, - { - "title": "Sheila On 7 - Sephia (Karaoke Version)", - "id": "bYwkHbnycJ0" - }, - { - "title": "Miguel - Sure Thing (Piano Karaoke)", - "id": "WfImwSpERvg" - }, - { - "title": "Kahitna - Cantik (Karaoke Version)", - "id": "RWhJBqt87Ak" - }, - { - "title": "Taylor Swift - Anti-Hero (Piano Karaoke)", - "id": "PVXB7sXhOaI" - }, - { - "title": "Dean Lewis - How Do I Say Goodbye (Karaoke Version)", - "id": "_jRP_Ss0Uog" - }, - { - "title": "Dewa - Risalah Hati (Karaoke Version)", - "id": "kMvBDTPgAdc" - }, - { - "title": "Zach Bryan - Something in the Orange (Karaoke Version)", - "id": "zSnv3nZBcoc" - }, - { - "title": "Cian Ducrot - All For You (Karaoke Version)", - "id": "qvYMJol__LA" - }, - { - "title": "Miley Cyrus - Flowers (Piano Karaoke)", - "id": "mBTg_mSuFSE" - }, - { - "title": "Oliver Tree, Robin Schulz - Miss You (Karaoke Version)", - "id": "h6HX9kqEj2k" - }, - { - "title": "Dan Hill - Never Thought That I Could Love (Karaoke Version)", - "id": "Lqfn-J82-O8" - }, - { - "title": "Katharine McPhee, Jason Reeves - Terrified (Karaoke Version)", - "id": "Sg_9m6flh78" - }, - { - "title": "Frank Sinatra - Theme from New York, New York (Karaoke Version)", - "id": "4giwDeT59AA" - }, - { - "title": "ABBA - Lay All Your Love On Me (Karaoke Version)", - "id": "tW2cvXq4siI" - }, - { - "title": "Selena Gomez - Vulnerable (Karaoke Version)", - "id": "ltriLBa-NkU" - }, - { - "title": "Son Lux, Mitski, David Byrne - This Is A Life (Karaoke Version)", - "id": "fmKKyjuOkVI" - }, - { - "title": "Lobo - I'd Love You To Want Me (Karaoke Version)", - "id": "uNTCFLsiSsg" - }, - { - "title": "Dian Piesesha - Tak Ingin Sendiri (Karaoke Version)", - "id": "t6iroPCHKnA" - }, - { - "title": "Cian Ducrot - I'll Be Waiting (Karaoke Version)", - "id": "8vgohTaYLfw" - }, - { - "title": "South Border - Rainbow (Karaoke Version)", - "id": "S5s8SONdmf8" - }, - { - "title": "SZA - Kill Bill (Piano Karaoke)", - "id": "tcpBGRhCAOs" - }, - { - "title": "Lana Del Rey - Video Games (Piano Karaoke)", - "id": "tzzF4vALNhE" - }, - { - "title": "blink-182 - All the Small Things (Karaoke Version)", - "id": "WCWHVRaBtLg" - }, - { - "title": "Ariana Grande - Daydreamin' (Karaoke Version)", - "id": "o9CFPLGI588" - }, - { - "title": "The Pussycat Dolls - Hush Hush; Hush Hush (Karaoke Version)", - "id": "0Sp1FNLtODA" - }, - { - "title": "RAYE, 070 Shake - Escapism. (Karaoke Version)", - "id": "hCV1Th0KSJQ" - }, - { - "title": "Haley Reinhart - Can't Help Falling In Love (Piano Karaoke)", - "id": "8pWww4QgM8Q" - }, - { - "title": "Mary MacGregor - Torn Between Two Lovers (Karaoke Version)", - "id": "JOI1FEhsMq8" - }, - { - "title": "The Neighbourhood - Sweater Weather (Piano Karaoke)", - "id": "eCZtmGSVKnc" - }, - { - "title": "Mรฅneskin - THE LONELIEST (Karaoke Version)", - "id": "MguYlusfy4M" - }, - { - "title": "SZA - Kill Bill (Karaoke Version)", - "id": "OEc9U6Prxos" - }, - { - "title": "Amy Winehouse - Back To Black (Piano Karaoke)", - "id": "07NJs_FTXo0" - }, - { - "title": "The Pussycat Dolls - Don't Cha (Karaoke Version)", - "id": "ISn1-RwoNN0" - }, - { - "title": "Olivia Rodrigo - happier (Piano Karaoke)", - "id": "f0WGcng_NQI" - }, - { - "title": "The Weeknd - Save Your Tears (Piano Karaoke)", - "id": "Wd8hFdbEEqA" - }, - { - "title": "Sam Smith - Lay Me Down (Piano Karaoke)", - "id": "rW3Xt1ZZduA" - }, - { - "title": "NOAH - Mungkin Nanti (Karaoke Version)", - "id": "grWgLhlSUog" - }, - { - "title": "Rossa - Hati Yang Kau Sakiti (Karaoke Version)", - "id": "bSy0RaSPjw4" - }, - { - "title": "Jordin Sparks - Tattoo (Karaoke Version)", - "id": "d4E9wOh-3ME" - }, - { - "title": "Indila - Tourner Dans Le Vide (Karaoke Version)", - "id": "bQL9SvYb4rc" - }, - { - "title": "LeAnn Rimes - I Need You (Karaoke Version)", - "id": "2uF-ZTcSR9Q" - }, - { - "title": "The Carpenters - I Won't Last A Day Without You (Karaoke Version)", - "id": "n8jOCfDx0PM" - }, - { - "title": "Tom Jones - Delilah (Karaoke Version)", - "id": "AiICGcP5SzM" - }, - { - "title": "Stacey Ryan - Fall In Love Alone (Karaoke Version)", - "id": "3rB5iQmVGmg" - }, - { - "title": "Joni Mitchell - River (Karaoke Version)", - "id": "No3Q3_Jdzt0" - }, - { - "title": "Michael Learns To Rock - That's Why You Go Away (Karaoke Version)", - "id": "H0JJoxdfnBY" - }, - { - "title": "d4vd - Here With Me (Karaoke Version)", - "id": "sTOr0JemZyM" - }, - { - "title": "Akon - Be With You (Karaoke Version)", - "id": "8ieR8QZLGEw" - }, - { - "title": "Whitney Houston - Try It On My Own (Karaoke Version)", - "id": "MBIHLqvrUHI" - }, - { - "title": "Mario Winans ft. Enya, Diddy - I Don't Wanna Know (Karaoke Version)", - "id": "DTYk16yMls0" - }, - { - "title": "Kitchie Nadal - Same Ground (Karaoke Version)", - "id": "nKbiJPLExBE" - }, - { - "title": "John Lennon - Woman (Karaoke Version)", - "id": "uzpXgWvbs_c" - }, - { - "title": "Rod Stewart - Sailing (Karaoke Version)", - "id": "B5ENLD3kVmY" - }, - { - "title": "10cc - I'm Not In Love (Karaoke Version)", - "id": "SvUY7Rfh7Hw" - }, - { - "title": "Leonard Cohen - Hallelujah (Karaoke Version)", - "id": "xscaqUk7Eck" - }, - { - "title": "Metro Boomin, The Weeknd, 21 Savage - Creepin' (Karaoke Version)", - "id": "kSRGor18SyQ" - }, - { - "title": "Kali Uchis - Melting (Karaoke Version)", - "id": "2IV8BrHO1GA" - }, - { - "title": "One Direction - Right Now (Karaoke Version)", - "id": "lHoGLAd79Wo" - }, - { - "title": "Air Supply - Having You Near Me (Karaoke Version)", - "id": "CxXU47MCsL8" - }, - { - "title": "Justine Skye ft. Tyga - Collide (Karaoke Version)", - "id": "MVD6cO1yDzM" - }, - { - "title": "Lana Del Rey - Did you know that there's a tunnel under Ocean Blvd (Karaoke Version)", - "id": "tGU01G3OVaw" - }, - { - "title": "SZA - Shirt (Karaoke Version)", - "id": "W-ZpjZRa0sw" - }, - { - "title": "Selena Gomez - My Mind & Me (Karaoke Version)", - "id": "esNwgzCKEiE" - }, - { - "title": "One Direction - Strong (Karaoke Version)", - "id": "9S_HaJudD2U" - }, - { - "title": "Christmas Carols - Little Drummer Boy (Piano Karaoke)", - "id": "NQbUlFKyroc" - }, - { - "title": "Jose Mari Chan - A Perfect Christmas (Karaoke Version)", - "id": "MRagA5nB8-I" - }, - { - "title": "Nicky Youre, dazy - Sunroof (Karaoke Version)", - "id": "Xr4bbASQs4I" - }, - { - "title": "Christmas Carols - Hark! The Herald Angels Sing (Piano Karaoke)", - "id": "6v1GN3xidlk" - }, - { - "title": "Christmas Carols - O Come All Ye Faithful (Piano Karaoke)", - "id": "hZkElF2crMg" - }, - { - "title": "Christmas Carols - Angels We Have Heard on High (Karaoke Version)", - "id": "P90YMd7y32o" - }, - { - "title": "Christmas Carols - Joy To The World (Piano Karaoke)", - "id": "eyUf9BTR1b4" - }, - { - "title": "Steve Lacy - Bad Habit (Karaoke Version)", - "id": "2LE0hcAIatA" - }, - { - "title": "Jim Brickman, Collin Raye, Susan Ashton - The Gift (Karaoke Version)", - "id": "DEB23TuWIPs" - }, - { - "title": "Goo Goo Dolls - Iris (Piano Karaoke)", - "id": "R-PRCBZZGh0" - }, - { - "title": "Joji - Die For You (Karaoke Version)", - "id": "Nkcvrr_1aP8" - }, - { - "title": "Lady Gaga - Bloody Mary (Karaoke Version)", - "id": "ECpCDK-2rkg" - }, - { - "title": "Christmas Karaoke Carols! (Christmas Medley)", - "id": "V32VnVymJVA" - }, - { - "title": "Gabrielle - Dreams (Karaoke Version)", - "id": "vXjspvSS3R4" - }, - { - "title": "Christmas Carols - Frosty The Snowman (Piano Karaoke)", - "id": "LRmeaaefL2Q" - }, - { - "title": "Christmas Carols - Frosty The Snowman (Karaoke Version)", - "id": "2M71HHvEia8" - }, - { - "title": "ABBA - Slipping Through My Fingers (Piano Karaoke)", - "id": "mOxpXSge7vs" - }, - { - "title": "Katie Gregson-MacLeod - complex (demo) (Karaoke Version)", - "id": "KxlV-2KP-BY" - }, - { - "title": "Pongki Barata - Aku Milikmu Malam Ini (Karaoke Version)", - "id": "ErOJmixf1L0" - }, - { - "title": "Tate McRae - uh oh (Karaoke Version)", - "id": "KUbBLUwfz4U" - }, - { - "title": "Christmas Carols - Hark! The Herald Angels Sing (Karaoke Version)", - "id": "mr1aLAWZgUI" - }, - { - "title": "James Arthur - Car's Outside (Karaoke Version)", - "id": "XWIrcAESaQU" - }, - { - "title": "Boney M. - Feliz Navidad (Karaoke Version)", - "id": "S4IVRsebTcc" - }, - { - "title": "Taylor Swift - Lavender Haze (Karaoke Version)", - "id": "xR0KZKsbSck" - }, - { - "title": "Andmesh - Hanya Rindu (Karaoke Version)", - "id": "5iyR4x84n1M" - }, - { - "title": "Christmas Carols - Little Drummer Boy (Karaoke Version)", - "id": "lZ_gv_AWhRc" - }, - { - "title": "Chris Norman - No Arms Can Ever Hold You (Karaoke Version)", - "id": "yVzJxEk39Ck" - }, - { - "title": "Christmas Carols - Joy to the World (Karaoke Version)", - "id": "XwYW2K1vN_A" - }, - { - "title": "Camila Cabello - I'll Be Home For Christmas (Karaoke Version)", - "id": "1VRycH5ZoVs" - }, - { - "title": "Steelheart - She's Gone (Karaoke Version)", - "id": "8qNUANocvQY" - }, - { - "title": "Taylor Swift - You're On Your Own Kid (Karaoke Version)", - "id": "Ev5IpTlOC0g" - }, - { - "title": "Jung Kook - 'Dreamers' FIFA World Cup 2022 (Karaoke Version)", - "id": "Z9cv6yaL1E8" - }, - { - "title": "Arctic Monkeys - I Wanna Be Yours (Piano Karaoke)", - "id": "ApGDINM-oKQ" - }, - { - "title": "Elha Nympha, Martin Nievera - Wonderful Tonight (Karaoke Version)", - "id": "MLE-FL-M27M" - }, - { - "title": "Christmas Carols - O Come All Ye Faithful (Karaoke Version)", - "id": "4cWhYRTCs70" - }, - { - "title": "Baddiel, Skinner & The Lightening Seeds - Three Lions (Karaoke Version)", - "id": "V7i-Zw_IZyY" - }, - { - "title": "Lana Del Rey - Summertime Sadness (Karaoke Version)", - "id": "W812a1FEO4k" - }, - { - "title": "Frank Sinatra - Fly Me To The Moon (Piano Karaoke)", - "id": "T_Fd7Qxjz9k" - }, - { - "title": "AJR - World's Smallest Violin (Karaoke Version)", - "id": "ClNkwd1u2eQ" - }, - { - "title": "Elha Nympha - Wonderful Tonight (Karaoke Version)", - "id": "zaWRg0fSkwI" - }, - { - "title": "Ariana Grande - pov (Piano Karaoke)", - "id": "5PXAWruecVI" - }, - { - "title": "Giveon - Heartbreak Anniversary (Piano Karaoke)", - "id": "oxJzliJdyDE" - }, - { - "title": "Katy Perry - The One That Got Away (Piano Karaoke)", - "id": "MHs4LxbjvYg" - }, - { - "title": "Rosa Walton, Hallie Coggins - I Really Want to Stay at Your House (Karaoke Version)", - "id": "dr2oCTw5a28" - }, - { - "title": "Meghan Trainor - Made You Look (Karaoke Version)", - "id": "x5tRozfF_b8" - }, - { - "title": "NOAH - Yang Terdalam (Karaoke Version)", - "id": "s3hxbn1bt-Y" - }, - { - "title": "Tulus - Hati Hati di Jalan (Karaoke Version)", - "id": "QrK2y_P3yuA" - }, - { - "title": "Air Supply - Here I Am (Karaoke Version)", - "id": "qH7p6cJEXO4" - }, - { - "title": "Ben&Ben - The Ones We Once Loved (Karaoke Version)", - "id": "EDAREI4lz4s" - }, - { - "title": "Emeli Sandรฉ - Clown (Karaoke Version)", - "id": "wNbNAT0T31Y" - }, - { - "title": "TLC - Waterfalls (Karaoke Version)", - "id": "MBfYXMw-NvI" - }, - { - "title": "Demi Lovato - Heart Attack (Piano Karaoke)", - "id": "CxF9yi4FFyg" - }, - { - "title": "Jax - Victoria's Secret (Karaoke Version)", - "id": "_RD5Yf3Vu6Q" - }, - { - "title": "George Michael - Careless Whisper (Piano Karaoke)", - "id": "uL1iJAgsxUY" - }, - { - "title": "Ghost - Mary On A Cross (Karaoke Version)", - "id": "GbC140tbTf8" - }, - { - "title": "Lewis Capaldi - Forget Me (Piano Karaoke)", - "id": "6BPSquDTD5Q" - }, - { - "title": "Cassandra - Cinta Terbaik (Karaoke Version)", - "id": "cmaQOEb4dQ0" - }, - { - "title": "Justin Timberlake - Mirrors (Piano Karaoke)", - "id": "ocWI7EgwUFs" - }, - { - "title": "Lord Huron - The Night We Met (Piano Karaoke)", - "id": "PbKcCfLF3y8" - }, - { - "title": "Ben E King - Stand By Me (Piano Karaoke)", - "id": "DSNK351fGAM" - }, - { - "title": "Keisya Levronka - Tak Ingin Usai (Karaoke Version)", - "id": "FkTT-NllZg0" - }, - { - "title": "Taylor Swift - Anti-Hero (Karaoke Version)", - "id": "TdPPo-hs5kA" - }, - { - "title": "Indonesian Voices - Rumah Kita (Karaoke Version)", - "id": "0dl79YW-vz0" - }, - { - "title": "Sam Smith, Kim Petras - Unholy (Karaoke Version)", - "id": "60QVBCd7JNw" - }, - { - "title": "Nicki Minaj - Super Freaky Girl (Karaoke Version)", - "id": "Gs84QK6C75g" - }, - { - "title": "Britney Spears - Criminal (Karaoke Version)", - "id": "trIRQLseyF4" - }, - { - "title": "Firman - Kehilangan (Karaoke Version)", - "id": "2L8xc87QMvs" - }, - { - "title": "Tri Suaka - Aku Bukan Jodohnya (Karaoke Version)", - "id": "BB820gr0JJE" - }, - { - "title": "Rinto Harahap - Mama (Karaoke Version)", - "id": "mcFKcYUMq6g" - }, - { - "title": "Sofia Carson - Come Back Home (Karaoke Version)", - "id": "RoQTjX-MeaI" - }, - { - "title": "Billie Eilish - idontwannabeyouanymore (Piano Karaoke)", - "id": "a-6TcHb2x1A" - }, - { - "title": "Mรฅneskin - Beggin' (Piano Karaoke)", - "id": "28tUgf7ZTic" - }, - { - "title": "Solomon Burke - Cry To Me (Karaoke Version)", - "id": "LuBiUJjZMaQ" - }, - { - "title": "AURORA - Runaway (Piano Karaoke)", - "id": "3xIm0Gcy_64" - }, - { - "title": "JVKE - golden hour (Karaoke Version)", - "id": "ju03AIeny2Q" - }, - { - "title": "BLACKPINK - The Happiest Girl (Karaoke Version)", - "id": "-pz3aaLuuTs" - }, - { - "title": "Maroon 5 - Memories (Piano Karaoke)", - "id": "BffvNQDAlIA" - }, - { - "title": "Dua Lipa - Levitating (Piano Karaoke)", - "id": "ivnGkcgRwOI" - }, - { - "title": "James Arthur - Impossible (Piano Karaoke)", - "id": "npggOlVAGog" - }, - { - "title": "John Denver - Annie's Song (Karaoke Version)", - "id": "VJvzYBo0QDk" - }, - { - "title": "Lewis Capaldi - Before You Go (Piano Karaoke)", - "id": "ZyqXQawtw4w" - }, - { - "title": "Skeeter Davis - The End of the World (Karaoke Version)", - "id": "P3XgPgTrVGk" - }, - { - "title": "Ne-Yo - So Sick (Piano Karaoke)", - "id": "WFxNC48iS2o" - }, - { - "title": "Joey Albert - I Remember The Boy (Karaoke Version)", - "id": "_UWR2GB2kis" - }, - { - "title": "Sia - Unstoppable (Piano Karaoke)", - "id": "zg4VisWwstw" - }, - { - "title": "Ruth B - If By Chance (Karaoke Version)", - "id": "DtCrQA6Br5M" - }, - { - "title": "Sisqรณ - Incomplete (Karaoke Version)", - "id": "E0WFQt0Ef-8" - }, - { - "title": "Lewis Capaldi - Forget Me (Karaoke Version)", - "id": "AMpiv3yNA4Q" - }, - { - "title": "Warren G, Nate Dogg - Regulate (Karaoke Version)", - "id": "-EVM538kELk" - }, - { - "title": "Harry Styles - As It Was (Piano Version)", - "id": "seGYMjQsblo" - }, - { - "title": "Madison Beer - Selfish (Piano Karaoke)", - "id": "IH-dkzl9by4" - }, - { - "title": "BLACKPINK - Pink Venom (Karaoke Version)", - "id": "MmkJtZ83yl4" - }, - { - "title": "Seafret - Atlantis (Karaoke Version)", - "id": "9q7d6OaG0M4" - }, - { - "title": "The Cranberries - Zombie (Piano Version)", - "id": "mXhzpwwIVRk" - }, - { - "title": "Meghan Trainor, John Legend - Like I'm Gonna Lose You (Piano Karaoke)", - "id": "2heAh-Kj2hg" - }, - { - "title": "Michael Ruff - More Than You'll Ever Know (Karaoke Version)", - "id": "BXyLrKoaCGQ" - }, - { - "title": "Ella Mae Saison - Till My Heartaches End (Karaoke Version)", - "id": "O4PQ7AhAGUA" - }, - { - "title": "Sam Smith - Like I Can (Piano Karaoke)", - "id": "046zCU6C5qY" - }, - { - "title": "Stevie B - Waiting For Your Love (Karaoke Version)", - "id": "6Nl2dSl4zms" - }, - { - "title": "P!nk - Try (Piano Karaoke)", - "id": "LJRNmdCSc3Q" - }, - { - "title": "James Arthur - Say You Won't Let Go (Piano Karaoke)", - "id": "v1aS9pzKgBg" - }, - { - "title": "Sam Cooke - A Change Is Gonna Come (Karaoke Version)", - "id": "jXpoXuuuwuA" - }, - { - "title": "Calum Scott, Leona Lewis - You Are The Reason - Duet (Karaoke Version)", - "id": "76-3jepBZnY" - }, - { - "title": "Drake - Hotline Bling (Karaoke Version)", - "id": "gLIaz2b4vmc" - }, - { - "title": "Patty Smyth, Don Henley - Sometimes Love Just Ain't Enough (Karaoke Version)", - "id": "ha5jKryASz8" - }, - { - "title": "Chris Brown - Under The Influence (Karaoke Version)", - "id": "TfvtO_AINlE" - }, - { - "title": "Tate McRae - you broke me first (Piano Karaoke)", - "id": "EKG1iDJJuok" - }, - { - "title": "Shaggy Ft. Rayvon - Angel (Karaoke Version)", - "id": "GjivXHAoLS4" - }, - { - "title": "Olivia Rodrigo - drivers license (Piano Karaoke)", - "id": "vGCmAYof0vk" - }, - { - "title": "Anne Marie - 2002 (Piano Karaoke)", - "id": "kJl98QLXjxs" - }, - { - "title": "Lauren Spencer Smith - Fingers Crossed (Piano Karaoke)", - "id": "Ydco4uHmanM" - }, - { - "title": "Ariana Grande - Dangerous Woman (Piano Karaoke)", - "id": "oo0WMbA7v8c" - }, - { - "title": "Troye Sivan - Angel Baby (Karaoke Piano)", - "id": "T4KyhB9l-L4" - }, - { - "title": "Olivia Rodrigo - traitor (Piano Karaoke)", - "id": "M-i3C_6Nkyk" - }, - { - "title": "Fools Garden - Lemon Tree (Karaoke Version)", - "id": "9OX0x9uTfqA" - }, - { - "title": "Conan Gray - Heather (Piano Karaoke)", - "id": "QO0ucFnssKI" - }, - { - "title": "David Gates - Take Me Now (Karaoke Version)", - "id": "6Z9rce3zCPQ" - }, - { - "title": "Rihanna - Diamonds (Piano Karaoke)", - "id": "6RdZmSag8Hs" - }, - { - "title": "George Benson - In Your Eyes (Karaoke Version)", - "id": "njuHyVZ2hFs" - }, - { - "title": "Beverley Craven - Promise Me (Karaoke Version)", - "id": "OgtYP649W_Y" - }, - { - "title": "The Ronettes - Be My Baby (Karaoke Version)", - "id": "3Y52_YwE7Oo" - }, - { - "title": "Billie Eilish - Ocean Eyes (Piano Karaoke)", - "id": "xJKKopkyuDw" - }, - { - "title": "Justin Bieber - Ghost (Piano Karaoke)", - "id": "_y9lTYkcHlM" - }, - { - "title": "Dove Cameron - Boyfriend (Piano Karaoke)", - "id": "SFSPlENtqPA" - }, - { - "title": "Stephen Sanchez - Until I Found You (Piano Karaoke)", - "id": "qSnNWkvocN4" - }, - { - "title": "The Script - The Man Who Can't Be Moved (Karaoke Version)", - "id": "Im2A5pbWis8" - }, - { - "title": "Elvis Presley - Trouble (Karaoke Version)", - "id": "XNE2n-dNiyQ" - }, - { - "title": "Kodaline - All I Want (Piano Karaoke)", - "id": "3ZdQXhlXGAw" - }, - { - "title": "Alex & Sierra - Little Do You Know (Karaoke Version)", - "id": "ZQGU6_ZjWwg" - }, - { - "title": "Fifth Harmony Feat. Ty Dolla $ign - Work From Home (Karaoke Version)", - "id": "255bFXQUqhk" - }, - { - "title": "Lea Salonga - The Journey (Karaoke Version)", - "id": "TvVxh2NQZI8" - }, - { - "title": "Whitney Houston - I Have Nothing (Piano Karaoke)", - "id": "r7T4zNZ3cTs" - }, - { - "title": "Bonnie Raitt - I Can't Make You Love Me (Karaoke Version)", - "id": "Ft3srWYmldc" - }, - { - "title": "Sabrina Carpenter - because i liked a boy (Karaoke Version)", - "id": "d5x3vS__7ZU" - }, - { - "title": "Lauren Spencer-Smith - Narcissist (Karaoke Version)", - "id": "RwvpGhUffKU" - }, - { - "title": "Alicia Keys - Fallin' (Karaoke Version)", - "id": "yQcTzxmG1ro" - }, - { - "title": "Christina Perri - Jar Of Hearts (Karaoke Version)", - "id": "1JCVr44e5xs" - }, - { - "title": "Deborah Cox - Nobody's Supposed to Be Here (Karaoke Version)", - "id": "gwbRCdhwFs8" - }, - { - "title": "Nina - Somewhere Down the Road (Karaoke Version)", - "id": "jLfO9_Xa4bk" - }, - { - "title": "Rachel Platten - Fight Song (Karaoke Version)", - "id": "G0JiiGgbi_k" - }, - { - "title": "Wiz Khalifa, Charlie Puth - See You Again (Karaoke Version)", - "id": "BpeuvMD66vg" - }, - { - "title": "Lady Gaga - Million Reasons (Piano Karaoke)", - "id": "2Si9GK36rVw" - }, - { - "title": "John Legend - All Of Me (Karaoke Version)", - "id": "6VoT-KrseHA" - }, - { - "title": "Vanessa Carlton - A Thousand Miles (Karaoke Version)", - "id": "u2K-525UPUA" - }, - { - "title": "Sam Smith - I'm Not The Only One (Karaoke Version)", - "id": "7LOW-zFO380" - }, - { - "title": "Christina Perri - A Thousand Years (Karaoke Version)", - "id": "85zr83teaug" - }, - { - "title": "Alicia Keys - No One (Karaoke Version)", - "id": "0lFbFPq8ajo" - }, - { - "title": "Michael Bolton - How Am I Supposed To Live Without You (Karaoke Version)", - "id": "JVN9XsGSQw0" - }, - { - "title": "Rosa Linn - SNAP (Karaoke Version)", - "id": "cidANUBQ2jw" - }, - { - "title": "Timbaland, Keri Hilson, D.O.E, Sebastian - The Way I Are (Karaoke Version)", - "id": "YBATVZ5wVQM" - }, - { - "title": "Pamungkus - One Only (Karaoke Version)", - "id": "xROW0bLB7eQ" - }, - { - "title": "Sheena Easton - Almost Over You (Karaoke Version)", - "id": "QOAPoyNp8HA" - }, - { - "title": "Billie Eilish - TV (Karaoke Version)", - "id": "XhBa1opnVrQ" - }, - { - "title": "Stephen Speaks - Passenger Seat (Karaoke Version)", - "id": "B6WfTi8PU1Y" - }, - { - "title": "Fugees - Killing Me Softly With His Song (Piano Karaoke)", - "id": "XAeoj4diXxM" - }, - { - "title": "Counting Crows - Mr Jones (Karaoke Version)", - "id": "mfivXPztcKU" - }, - { - "title": "Alannah Myles - Black Velvet (Karaoke Version)", - "id": "mY10QWZ37CM" - }, - { - "title": "Boz Scaggs - We're All Alone (Karaoke Version)", - "id": "txJxn6Tbm6Y" - }, - { - "title": "LUM!X, MOLOW - Trick Or Treat (Karaoke Version)", - "id": "o_J61xGmiqM" - }, - { - "title": "Nessa Barrett - die first (Karaoke Version)", - "id": "aSLJnZ5WOgQ" - }, - { - "title": "Sia - Elastic Heart (Piano Karaoke)", - "id": "dXoUB99KO20" - }, - { - "title": "Billie EIlish - Happier Than Ever (Piano Karaoke)", - "id": "PhHQGG2HNx0" - }, - { - "title": "NF - Paralyzed (Karaoke Version)", - "id": "2Ne-dNU8iEc" - }, - { - "title": "ABBA - Angeleyes (Karaoke Version)", - "id": "gtt8hGIVrhs" - }, - { - "title": "K-Ci & Jojo - All My Life (Karaoke Version)", - "id": "mgt9QudIVrY" - }, - { - "title": "Dido - Thank You (Karaoke Version)", - "id": "vg79oI8qrmg" - }, - { - "title": "Radiohead - Creep (Piano Karaoke)", - "id": "4XWNLZgCNKU" - }, - { - "title": "Harry Styles - Matilda (Piano Karaoke)", - "id": "ldbNVRCLUYk" - }, - { - "title": "Charlie Puth - Some Type Of Love (Karaoke Version)", - "id": "QVwLVXX7CHY" - }, - { - "title": "Joji - Like You Do (Karaoke Version)", - "id": "jmDGhHRE6jY" - }, - { - "title": "Ray Parker Jr - The Past (Karaoke Version)", - "id": "ap17JEXdDzE" - }, - { - "title": "The Weeknd - Call Out My Name (Karaoke Version)", - "id": "FP6LIQgdIcI" - }, - { - "title": "Britney Spears - Showdown (Karaoke Version)", - "id": "osaAtdKMHz8" - }, - { - "title": "Lana Del Rey - Norman f*cking Rockwell (Karaoke Version)", - "id": "hq8nGEgAx04" - }, - { - "title": "Don McLean - Vincent (Karaoke Version)", - "id": "cuIUns_KHjE" - }, - { - "title": "Arctic Monkeys - I Wanna Be Yours (Karaoke Version)", - "id": "sAmuevpBwH8" - }, - { - "title": "*NSYNC - It's Gonna Be Me (Karaoke Version)", - "id": "-HgYAkSRt6c" - }, - { - "title": "Etta James - I'd Rather Go Blind (Karaoke Version)", - "id": "FrSjfQWDffI" - }, - { - "title": "Eminem - Mockingbird (Karaoke Version)", - "id": "HAYuls3af5s" - }, - { - "title": "Tiffany - All This Time (Karaoke Version)", - "id": "yGpqpMvMJKM" - }, - { - "title": "Journey - Faithfully (Karaoke Version)", - "id": "mcEivPqruow" - }, - { - "title": "Sean Paul, Dua Lipa - No Lie (Karaoke Version)", - "id": "iOVTbiLABMY" - }, - { - "title": "A Boogie Wit Da Hoodie, Kodak Black - Drowning (Karaoke Version)", - "id": "4WAtVrUUPbY" - }, - { - "title": "New Order - World In Motion (Karaoke Version)", - "id": "_NBuSTWhIDc" - }, - { - "title": "Charlie Puth, Jung Kook - Left and Right (Karaoke Version)", - "id": "QR832n5jeFg" - }, - { - "title": "Whitney Houston - All At Once (Karaoke Version)", - "id": "C59DpP2dW3o" - }, - { - "title": "Anne Murray - Just Another Woman In Love (Karaoke Version)", - "id": "-YOh8FOUkhQ" - }, - { - "title": "Odette Quesada - Friend of Mine (Karaoke Version)", - "id": "MFPj_LzV66g" - }, - { - "title": "Justin Bieber - Off My Face (Karaoke Version)", - "id": "eZCHYEH5cV0" - }, - { - "title": "Harry Styles - Matilda (Karaoke Version)", - "id": "l4ZsRuVFkVE" - }, - { - "title": "Boney M. - Rasputin (Karaoke Version)", - "id": "sJZOoWKaM84" - }, - { - "title": "Faith Hill - There You'll Be (Karaoke Version)", - "id": "5BQ12VHhkVs" - }, - { - "title": "Ronan Keating - If Tomorrow Never Comes (Karaoke Version)", - "id": "thLuW_0snZ0" - }, - { - "title": "Hale - The Day You Said Goodnight (Karaoke Version)", - "id": "adB2--dOKLo" - }, - { - "title": "Chris Walker - How Do You Heal A Broken Heart (Karaoke Version)", - "id": "deLQPVcQi2U" - }, - { - "title": "Debby Boone - You Light Up My Life (Karaoke Version)", - "id": "oygfegm6Pjk" - }, - { - "title": "Calum Scott, Lyodra - Heaven (Karaoke Version)", - "id": "fM8BLWGwyIw" - }, - { - "title": "Debbie Gibson - Lost In Your Eyes (Karaoke Version)", - "id": "SEGaufBGkUs" - }, - { - "title": "Peabo Bryson - If Ever You're in My Arms Again (Karaoke Version)", - "id": "xHqxRGuwzno" - }, - { - "title": "Becky G, KAROL G - MAMIII (Karaoke Version)", - "id": "BuFgpOAQpvo" - }, - { - "title": "Brooks & Dunn - Neon Moon (Karaoke Version)", - "id": "26ZFpiYfGJU" - }, - { - "title": "Elvis Presley - If I Can Dream (Karaoke Version)", - "id": "mngzaa-UB20" - }, - { - "title": "Melissa Manchester - Don't Cry Out Loud (Karaoke Version)", - "id": "NJ--Olbtbls" - }, - { - "title": "James Ingram - Just Once (Karaoke Version)", - "id": "oRFJx6BsyBg" - }, - { - "title": "Keyshia Cole - Love (Karaoke Version)", - "id": "L5t-8YP4U0A" - }, - { - "title": "Bonnie Tyler - It's a Heartache (Karaoke Version)", - "id": "idRREHyhyso" - }, - { - "title": "Post Malone, Roddy Ricch - Cooped Up (Karaoke Version)", - "id": "MQUCdqpZbCo" - }, - { - "title": "TLC - No Scrubs (Karaoke Version)", - "id": "CUFIRtDz-Oo" - }, - { - "title": "Indila - Love Story (Karaoke Version)", - "id": "lecqaehgAF0" - }, - { - "title": "Daniel Boone - Beautiful Sunday (Karaoke Version)", - "id": "HlOr9UWZK1s" - }, - { - "title": "John Lennon - Jealous Guy (Karaoke Version)", - "id": "HPJMUvjoOa0" - }, - { - "title": "Simple Plan - Untitled (How Could This Happen to Me?) (Karaoke Version)", - "id": "6wSvak7mM4w" - }, - { - "title": "Natalie Cole - Starting Over Again (Karaoke Version)", - "id": "fOV2D5ZQOkA" - }, - { - "title": "Phil Collins - Against All Odds (Karaoke Version)", - "id": "f7SyBXYWL90" - }, - { - "title": "Cรฉline Dion - All By Myself (Karaoke Version)", - "id": "eiTOcxAmyLA" - }, - { - "title": "Brian McKnight - Back At One (Karaoke Version)", - "id": "YyzruIR8nqc" - }, - { - "title": "Sean Kingston, Justin Bieber - Eenie Meenie (Karaoke Version)", - "id": "KosDA_A_jpE" - }, - { - "title": "The Weeknd - Die For You (Karaoke Version)", - "id": "jCZ8PC2XlAg" - }, - { - "title": "Jay Sean, Lil Wayne - Down (Karaoke Version)", - "id": "91ktJCiGSic" - }, - { - "title": "Bad Bunny - Moscow Mule (Karaoke Version)", - "id": "cf06sXPkNA0" - }, - { - "title": "Mr Big - To Be With You (Karaoke Version)", - "id": "mM3GJXktVVw" - }, - { - "title": "Conan Gray - Yours (Karaoke Version)", - "id": "_nKUmLesoLk" - }, - { - "title": "ABBA - Slipping Through My Fingers (Karaoke Version)", - "id": "S-yL4X_lZ5M" - }, - { - "title": "Sixpence None The Richer - Kiss Me (Karaoke Version)", - "id": "bwiYjnW23Os" - }, - { - "title": "Lizzo - About Damn Time (Karaoke Version)", - "id": "FcClAz9eT0s" - }, - { - "title": "Lady Gaga - Hold My Hand (Karaoke Version)", - "id": "7lgbF0kf1cE" - }, - { - "title": "Kaleb J - Now I Know (Karaoke Version)", - "id": "LGRAqPaGlT4" - }, - { - "title": "Stephen Sanchez - Until I Found You (Karaoke Version)", - "id": "mAU03y_qqkk" - }, - { - "title": "Joji - Glimpse Of Us (Karaoke Version)", - "id": "D6tZBIVor2s" - }, - { - "title": "Regine Velasquez - You Are My Song (Karaoke Version)", - "id": "K_pDsSP2mIc" - }, - { - "title": "Bic Runga - Sway (Karaoke Version)", - "id": "ZwYr8VLtSQQ" - }, - { - "title": "Alanis Morisette - Hand In My Pocket (Karaoke Version)", - "id": "1hz78abNR7A" - }, - { - "title": "Toni Gonzaga - Catch Me I'm Falling (Karaoke Version)", - "id": "EZh4UiPsJ1A" - }, - { - "title": "anees - sun and moon (Karaoke Version)", - "id": "CuE_SEJpRNg" - }, - { - "title": "Elvis Presley - Return To Sender (Karaoke Version)", - "id": "TFHh1rK6sTk" - }, - { - "title": "The Animals - House of the Rising Sun (Karaoke Version)", - "id": "C-tbyJLrTPc" - }, - { - "title": "Jimin, HA SUNG WOON - With You (Karaoke Version)", - "id": "p6LfFyVK5xA" - }, - { - "title": "EMELINE - cinderella's dead (Karaoke Version)", - "id": "GSrpCBK07MA" - }, - { - "title": "Camila Cabello, Ed Sheeran - Bam Bam (Karaoke Version)", - "id": "2ctitUsccu0" - }, - { - "title": "Shayne Ward - No Promises (Karaoke Version)", - "id": "el6CciFwgwk" - }, - { - "title": "Judy Boucher - Can't Be With You Tonight (Karaoke Version)", - "id": "dKsi5GPbRbs" - }, - { - "title": "Selena - Dreaming of You (Karaoke Version)", - "id": "rc1QFDlK_Kc" - }, - { - "title": "Charlie Puth -That's Hilarious (Karaoke Version)", - "id": "RDSruwjK6GM" - }, - { - "title": "Elvis Presley - In The Ghetto (Karaoke Version)", - "id": "YG2ByQge56E" - }, - { - "title": "Gorillaz - Feel Good Inc. (Karaoke Version)", - "id": "VbkUuIXXyb4" - }, - { - "title": "Anitta - Envolver (Karaoke Version)", - "id": "uYrsKYqAPiU" - }, - { - "title": "50 Cent - In Da Club (Karaoke Version)", - "id": "1QTiGL_dr9c" - }, - { - "title": "Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version)", - "id": "UPd80vvFNtY" - }, - { - "title": "Panic! At The Disco - House Of Memories (Karaoke Version)", - "id": "F8HxxaDEBeE" - }, - { - "title": "Dionne Warwick - I'll Never Love This Way Again (Karaoke Version)", - "id": "UYrREAAiH7A" - }, - { - "title": "Tom Jones - I Know (Karaoke Version)", - "id": "l4lHAiYGzdE" - }, - { - "title": "Elvis Presley - I Just Can't Help Believing (Karaoke Version)", - "id": "h9JMc9WLF5g" - }, - { - "title": "Vicente Fernรกndez - Mujeres Divinas (Karaoke Version)", - "id": "WJ7PwmiRd5c" - }, - { - "title": "Jimmy Bondoc - Let Me Be The One (Karaoke Version)", - "id": "dPcGDZjYzb0" - }, - { - "title": "Helen Reddy - I Can't Say Goodbye To You (Karaoke Version)", - "id": "ilxtgesTkUY" - }, - { - "title": "Dan Hill - Sometimes When We Touch (Karaoke Version)", - "id": "4Zto899x7x4" - }, - { - "title": "Benson Boone - In The Stars (Karaoke Version)", - "id": "QnitepvT9zQ" - }, - { - "title": "LeAnn Rimes - Can't Fight The Moonlight (Karaoke Version)", - "id": "FTlUW-dhv48" - }, - { - "title": "MYMP - Only Reminds Me Of You (Karaoke Version)", - "id": "j-HWqIw0B_Q" - }, - { - "title": "Katy Nichole - In Jesus Name God Of Possible (Karaoke Version)", - "id": "LjHyzwa2Kf8" - }, - { - "title": "George Harrison - My Sweet Lord (Karaoke Version)", - "id": "K1jSgY_QSiQ" - }, - { - "title": "Vicente Fernรกndez - Acรก Entre Nos (Karaoke Version)", - "id": "GiWIpQHnMcw" - }, - { - "title": "Joshua Kadison - Beautiful In My Eyes (Karaoke Version)", - "id": "slUDJ4AV9Rg" - }, - { - "title": "Dave - Starlight (Karaoke Version)", - "id": "wjOkhfxwEVU" - }, - { - "title": "Tom Odell - Heal (Karaoke Version)", - "id": "DaJ8IOg8yPM" - }, - { - "title": "David Pomeranz - Born For You (Karaoke Version)", - "id": "T-H27Zii-tY" - }, - { - "title": "Leo Sayer - When I Need You (Karaoke Version)", - "id": "TamNL-1_Lwg" - }, - { - "title": "Eminem - Without Me (Karaoke Version)", - "id": "7XzJ9vg47qw" - }, - { - "title": "Elvis Presley - Are You Lonesome Tonight? (Karaoke Version)", - "id": "Ulv5MEF85D0" - }, - { - "title": "The Script - Breakeven (Karaoke Version)", - "id": "3yztOz6QUtQ" - }, - { - "title": "TWICE - The Feels (Karaoke Version)", - "id": "eP3ZhCyKP_k" - }, - { - "title": "Backstreet Boys - All I Have To Give (Karaoke Version)", - "id": "pHZJDruEBj0" - }, - { - "title": "Elvis Presley - Always on My Mind (Karaoke Version)", - "id": "JvlEC54_3VM" - }, - { - "title": "Elvis Presley - Don't Be Cruel (Karaoke Version)", - "id": "ONdGZPs9Ubo" - }, - { - "title": "Europe - Carrie (Karaoke Version)", - "id": "kv95-4OdX8I" - }, - { - "title": "Elvis Presley - Love Me Tender (Karaoke Version)", - "id": "fFQFJ1zuAvI" - }, - { - "title": "Shakira - Whenever, Wherever (Karaoke Version)", - "id": "QzR3FiN1YSQ" - }, - { - "title": "Tom Jones - It's Not Unusual (Karaoke Version)", - "id": "iNQVPJdKbpA" - }, - { - "title": "The Killers - Mr. Brightside (Karaoke Version)", - "id": "c1X3Lg7RVkk" - }, - { - "title": "Tate McRae - she's all i wanna be (Karaoke Version)", - "id": "zX1Wfqv8ewU" - }, - { - "title": "Gary Moore - Still Got The Blues (Karaoke Version)", - "id": "dhr4gym1itg" - }, - { - "title": "Dove Cameron - Boyfriend (Karaoke Version)", - "id": "FJ3panlVZlI" - }, - { - "title": "Diddy, Faith Evans, 112 - I'll Be Missing You (Karaoke Version)", - "id": "r9yeE4WL1bA" - }, - { - "title": "Duffy - Mercy (Karaoke Version)", - "id": "BcMHbrOuj5A" - }, - { - "title": "Anne Murray - I Just Fall In Love Again (Karaoke Version)", - "id": "Mex3q9dMI-s" - }, - { - "title": "Lauren Spencer-Smith - Flowers (Karaoke Version)", - "id": "23fhUj3xIps" - }, - { - "title": "Snow Patrol - Chasing Cars (Karaoke Version)", - "id": "wJZCtLp-psI" - }, - { - "title": "Engelbert Humperdinck - Love Me With All Your Heart (Karaoke Version)", - "id": "hBsEQfDjnOQ" - }, - { - "title": "Turning Red - U Know What's Up (Karaoke Version)", - "id": "yDFmqedhZi4" - }, - { - "title": "Em Beihold - Numb Little Bug (Karaoke Version)", - "id": "n8PEHTYHrCI" - }, - { - "title": "Charlie Puth - Light Switch (Karaoke Version)", - "id": "r-yRELmja1Y" - }, - { - "title": "Lil Eddie - Statue (Karaoke Version)", - "id": "WFCozXnIKlk" - }, - { - "title": "Usher ft. Lil Jon, Ludacris - Yeah! (Karaoke Version)", - "id": "3lq7ij3vvvM" - }, - { - "title": "Nelly - Just A Dream (Karaoke Version)", - "id": "XJ4AKd-xMtA" - }, - { - "title": "Faouzia - RIP, Love (Karaoke Version)", - "id": "MD1AEAKQoZI" - }, - { - "title": "Eminem - The Real Slim Shady (Karaoke Version)", - "id": "1CRDnXlieP0" - }, - { - "title": "Daรฐi Freyr (Daรฐi & Gagnamagniรฐ) - Think About Things (Karaoke Version)", - "id": "paLqOMmRqG0" - }, - { - "title": "Gavin James - Always (Karaoke Version)", - "id": "ZCSZ7Whhkhs" - }, - { - "title": "Anson Seabra - Broken (Karaoke Version)", - "id": "85HoHBCbEXQ" - }, - { - "title": "Bruce Springsteen - I'm On Fire (Karaoke Version)", - "id": "cHTHXdpJa_4" - }, - { - "title": "Bruce Springsteen - Dancing In The Dark (Karaoke Version)", - "id": "UFEAtofaO14" - }, - { - "title": "Engelbert Humperdinck - A Man Without Love (Karaoke Version)", - "id": "WzhEG3C0daM" - }, - { - "title": "Charlene - I've Never Been To Me (Karaoke Version)", - "id": "c-7tN-dtzIM" - }, - { - "title": "Karina Pasian - Slow Motion (Karaoke Version)", - "id": "VtXijtGnQ5c" - }, - { - "title": "Jazmine Sullivan, H.E.R - Girl Like Me (Karaoke Version)", - "id": "9ujWrsDxKvQ" - }, - { - "title": "Natalie Cole - Miss You Like Crazy (Karaoke Version)", - "id": "8VPqMqYe5H4" - }, - { - "title": "BLANCO, Mahmood - Brividi (Karaoke Version)", - "id": "dKLATJG_ZoE" - }, - { - "title": "Aisha Retno - W.H.U.T (Karaoke Version)", - "id": "PTAVP5fna8c" - }, - { - "title": "Tate McRae - chaotic (Karaoke Version)", - "id": "Zz0gmnFSkLo" - }, - { - "title": "Elley Duhรฉ - MIDDLE OF THE NIGHT (Karaoke Version)", - "id": "1XIAsRsMr_0" - }, - { - "title": "Anastacia - Left Outside Alone (Karaoke Version)", - "id": "kgWB2BpPvC4" - }, - { - "title": "Julie Anne San Jose - Your Song (My One And Only) (Karaoke Version)", - "id": "BE4BbR3Ghzo" - }, - { - "title": "Wet Wet Wet - Love Is All Around (Karaoke Version)", - "id": "oJ48FtxK_Wo" - }, - { - "title": "Amy Winehouse - Tears Dry On Their Own (Karaoke Version)", - "id": "Ee8cL8k-qOo" - }, - { - "title": "Luke Chiang - Shouldn't Be (Karaoke Version)", - "id": "0nVh3DOJyXg" - }, - { - "title": "Gabrielle - Out of Reach (Karaoke Version)", - "id": "vUOxk56Q6pA" - }, - { - "title": "4*TOWN - Nobody Like U (From Turning Red) (Karaoke Version)", - "id": "sCJIckJN5Zs" - }, - { - "title": "Britney Spears - I'm Not A Girl, Not Yet A Woman (Karaoke Version)", - "id": "V99LdiJpzwI" - }, - { - "title": "All Saints - Never Ever (Karaoke Version)", - "id": "gpKWiQFETe4" - }, - { - "title": "Bread - Everything I Own (Karaoke Version)", - "id": "aaJwugoNayU" - }, - { - "title": "Delaney Bailey - j's lullaby (darlin' i'd wait for you) (Karaoke Version)", - "id": "GNMHj-lxfQY" - }, - { - "title": "Jennifer Lopez, Pitbull - On The Floor (Karaoke Version)", - "id": "J8BW5A3s0HE" - }, - { - "title": "Flo Rida feat. T-Pain - Low (Karaoke Version)", - "id": "bQw55gy3Sgw" - }, - { - "title": "Boyz II Men - On Bended Knee (Karaoke Version)", - "id": "NR08Fd7UKt8" - }, - { - "title": "Alanis Morisette - You Oughta Know (Karaoke Version)", - "id": "BBdPnDnmPzc" - }, - { - "title": "Rupert Holmes - Escape (The Piรฑa Colada Song) (Karaoke Version)", - "id": "aOeuCJraDK0" - }, - { - "title": "Keith Martin - Because Of You (Karaoke Version)", - "id": "1O4kthnhz0g" - }, - { - "title": "Lisa Stansfield - All Around the World (Karaoke Version)", - "id": "fEEfCIGXMeA" - }, - { - "title": "Kaash Paige - Love Songs (Karaoke Version)", - "id": "uA6cGcXG_wM" - }, - { - "title": "Gryffin feat. Maia Wright - Body Back - Acoustic (Karaoke Version)", - "id": "7FlWrnxdkb8" - }, - { - "title": "The Platters - Only You (And You Alone) (Karaoke Version)", - "id": "Wk_k8Oks0X8" - }, - { - "title": "Peach PRC - Heavy (Karaoke Version)", - "id": "BcCg_Su7IPo" - }, - { - "title": "Jhenรฉ Aiko - Triggered (freestyle) (Karaoke Version)", - "id": "XGP-CTyaVRE" - }, - { - "title": "Brian McKnight - One Last Cry (Karaoke Version)", - "id": "VgYAkT4TJmE" - }, - { - "title": "Eruption - One Way Ticket (Karaoke Version)", - "id": "cg1rKZ3GHYc" - }, - { - "title": "Kyle Hume - If I Would Have Known (Karaoke Version)", - "id": "Lq86NKT_wS8" - }, - { - "title": "Maddi Zahm - Fat Funny Friend (Karaoke Version)", - "id": "4j8sPt8Q5mg" - }, - { - "title": "Christian Bautista - The Way You Look At Me - Acoustic (Karaoke Version)", - "id": "JEKVKMlYnls" - }, - { - "title": "IVE - ELEVEN (Karaoke Version)", - "id": "V0pyvfuQv0U" - }, - { - "title": "Harry Styles - As It Was (Karaoke Version)", - "id": "JyKfmLkq3BU" - }, - { - "title": "Abe Parker - Stupid Face (Karaoke Version)", - "id": "3bNpmDQAteI" - }, - { - "title": "Rick Price - Heaven Knows (Karaoke Version)", - "id": "bm5-U155H88" - }, - { - "title": "Sarah Geronimo - A Very Special Love (Karaoke Version)", - "id": "OK2KfGgIWP8" - }, - { - "title": "Sigrid - Dynamite (Karaoke Version)", - "id": "9btumo8-qQs" - }, - { - "title": "Shawn Mendes - Imagination (Karaoke Version)", - "id": "CPHyoXANz_g" - }, - { - "title": "salem ilese, TOMORROW X TOGETHER, Alan Walker - PS5 (Karaoke Version)", - "id": "BfM8gqUYQeY" - }, - { - "title": "Gatton feat. Brooke Young - When Scars Become Art (Karaoke Version)", - "id": "PMpLyE4MpMU" - }, - { - "title": "Justin Bieber - Ghost (Karaoke Version)", - "id": "5HfPe96JOFM" - }, - { - "title": "SZA - I Hate U (Karaoke Version)", - "id": "Ht46E12S42c" - }, - { - "title": "Jaymes Young - Happiest Year (Karaoke Version)", - "id": "1e3F3xLtWwE" - }, - { - "title": "David Kushner - Miserable Man (Karaoke Version)", - "id": "TZUIRETKusI" - }, - { - "title": "Muni Long - Hrs and Hrs (Karaoke Version)", - "id": "kdygTSRDuro" - }, - { - "title": "Justin Bieber - Favorite Girl (Karaoke Version)", - "id": "Ab-CalIVbqI" - }, - { - "title": "Dylan Conrique - Birthday Cake (Karaoke Version)", - "id": "H-8SfJQDrz0" - }, - { - "title": "Dean Lewis - Half A Man (Karaoke Version)", - "id": "jVDIyez8WSs" - }, - { - "title": "Tamia - Officially Missing You (Karaoke Version)", - "id": "QTxhoJ7rWD8" - }, - { - "title": "Bobby Caldwell - What You Won't Do For Love (Karaoke Version)", - "id": "bPhlSF5P7Uc" - }, - { - "title": "Shakira Jasmine, Nuca - Meant 2 Be (Karaoke Version)", - "id": "YFKyoqHOJpY" - }, - { - "title": "Alfie Castley - Teenage Mona Lisa (Karaoke Version)", - "id": "2litZR18DhU" - }, - { - "title": "aespa - Dreams Come True (Karaoke Version)", - "id": "9-ffimsqeic" - }, - { - "title": "Jamie Miller - I Lost Myself In Loving You (Karaoke Version)", - "id": "WuU1IEGG7N4" - }, - { - "title": "Lana Del Rey - Watercolor Eyes (Karaoke Version)", - "id": "-doiGyAXSS0" - }, - { - "title": "Kylie Minogue - The Loco Motion (Karaoke Version)", - "id": "8Nv8WW9-UcA" - }, - { - "title": "Lexi Jayde - drunk text me (Karaoke Version)", - "id": "0YizI9hEiMI" - }, - { - "title": "Abe Parker - Butterflies (Karaoke Version)", - "id": "Wk5oDx3PphE" - }, - { - "title": "Ali Gatie - Perfect (Karaoke Version)", - "id": "aX5ak-uWer8" - }, - { - "title": "Mac DeMarco - Watching Him Fade Away (Karaoke Version)", - "id": "LwkqWLSHYlw" - }, - { - "title": "Cat Burns - Go (Karaoke Version)", - "id": "_uc5cue9dY4" - }, - { - "title": "Astrid S - It's Ok If You Forget Me (Karaoke Version)", - "id": "TQVuqYklp6w" - }, - { - "title": "Zevia - if depression gets the best of me (Karaoke Version)", - "id": "ihDmzAQ2Im0" - }, - { - "title": "Etham - 12:45 - Stripped (Karaoke Version)", - "id": "aOygpKMsEko" - }, - { - "title": "Joey Albert - Tell Me (Karaoke Version)", - "id": "SQO4HlOdJSI" - }, - { - "title": "Lauren Spencer Smith - Fingers Crossed (Karaoke Version)", - "id": "J4w1DCeu5sM" - }, - { - "title": "NIKI - Every Summertime (Karaoke Version)", - "id": "WLxqiNmfPfI" - }, - { - "title": "Meat Loaf - Two Out of Three Ain't Bad (Karaoke Version)", - "id": "CegJz2S1t0Y" - }, - { - "title": "New West - Those Eyes (Karaoke Version)", - "id": "0_p_DDkP0Sk" - }, - { - "title": "RHODES, Birdy - Let It All Go (Karaoke Version)", - "id": "hzEvc1Jj-FM" - }, - { - "title": "beabadoobee - Coffee (Karaoke Version)", - "id": "y3X8E4I7VQw" - }, - { - "title": "Rex Orange County - Pluto Projector (Karaoke Version)", - "id": "LSr9nTev3rY" - }, - { - "title": "Sadie Jean - WYD Now? (Karaoke Version)", - "id": "59kcRxRHXvg" - }, - { - "title": "Gary Valenciano - Warrior Is A Child (Karaoke Version)", - "id": "GRZ1JJ3Gxbw" - }, - { - "title": "Madonna - Like A Prayer (Karaoke Version)", - "id": "mTW-Ut83PPU" - }, - { - "title": "Madison Ryann Ward - Mirror (Karaoke Version)", - "id": "m80PQ1JX-PE" - }, - { - "title": "TheOvertunes - I Still Love You (Karaoke Version)", - "id": "3E_THDJhqtU" - }, - { - "title": "Neil Diamond - Love On The Rocks (Karaoke Version)", - "id": "4qy4SR1QBWk" - }, - { - "title": "Scouting For Girls - She's So Lovely (Karaoke Version)", - "id": "KQ9aG8FiLVk" - }, - { - "title": "Lykke Li - sex money feelings die (Karaoke Version)", - "id": "h7L7Le3I1pw" - }, - { - "title": "Ed Sheeran - The Joker And The Queen (Karaoke Version)", - "id": "aG3hA3s-bq8" - }, - { - "title": "Leona Lewis - A Moment Like This (Karaoke Version)", - "id": "TzrWhXsDblI" - }, - { - "title": "Dear Evan Hansen - Finale (Karaoke Version)", - "id": "Av-6Pv89u70" - }, - { - "title": "SALES - Pope Is A Rockstar (Karaoke Version)", - "id": "ynyvVLoZveQ" - }, - { - "title": "NIKI, 88rising - La La Lost You - Acoustic Version (Karaoke Version)", - "id": "xX_Fn1tRqxo" - }, - { - "title": "Dear Evan Hansen - Disappear (Karaoke Version)", - "id": "j9epSSviUWc" - }, - { - "title": "Nelly feat. Kelly Rowland - Dilemma (Karaoke Version)", - "id": "lnClffG9XzQ" - }, - { - "title": "Anson Seabra - Robin Hood (Karaoke Version)", - "id": "hEViWpjU3Hs" - }, - { - "title": "Whitney Houston - All The Man That I Need (Karaoke Version)", - "id": "WZIqIMnDdsA" - }, - { - "title": "Taio Cruz - Dynamite (Karaoke Version)", - "id": "348-jO8z__Y" - }, - { - "title": "James Blunt - You're Beautiful (Karaoke Version)", - "id": "PrwIQFvgj44" - }, - { - "title": "Dear Evan Hansen - So Big / So Small (Karaoke Version)", - "id": "KB6c7CHL0MQ" - }, - { - "title": "tick, tick... BOOM! - 30/90 (Karaoke Version)", - "id": "Vzr_JulXE38" - }, - { - "title": "Ariana Grande, Kid Cudi - Just Look Up (Karaoke Version)", - "id": "ncwBfJIXvXE" - }, - { - "title": "Dear Evan Hansen - You Will Be Found (Karaoke Version)", - "id": "3JSk17OP4SA" - }, - { - "title": "MIKA - Grace Kelly (Karaoke Version)", - "id": "ib_PhEzRqTw" - }, - { - "title": "Dear Evan Hansen - Good For You (Karaoke Version)", - "id": "2r_hyDi221w" - }, - { - "title": "The Pointer Sisters - Slow Hand (Karaoke Version)", - "id": "FnH0YawRTXg" - }, - { - "title": "Dear Evan Hansen - Only Us (Karaoke Version)", - "id": "rsiqKmhyUKs" - }, - { - "title": "Wham! - Everything She Wants (Karaoke Version)", - "id": "xibqq8qsrLQ" - }, - { - "title": "Dear Evan Hansen - Words Fail (Karaoke Version)", - "id": "fQXQ2ZjV7M4" - }, - { - "title": "Dermot Kennedy - Better Days (Karaoke Version)", - "id": "i6--BeVJi9Y" - }, - { - "title": "John Mayer - You're Gonna Live Forever In Me (Karaoke Version)", - "id": "ikuIsw9ruh8" - }, - { - "title": "The Proclaimers - I'm Gonna Be (500 Miles) (Karaoke Version)", - "id": "hb54rsJDT1g" - }, - { - "title": "Empire of the Sun - Walking On A Dream (Karaoke Version)", - "id": "PvwLiKaeRyY" - }, - { - "title": "Billy Ocean - Caribbean Queen (No More Love On The Run) (Karaoke Version)", - "id": "L5OsNVY5gBI" - }, - { - "title": "Simply Red - You Make Me Feel Brand New (Karaoke Version)", - "id": "we9Rkb24al8" - }, - { - "title": "Tracy Chapman - Give Me One Reason (Karaoke Version)", - "id": "SozZ6M6bP0c" - }, - { - "title": "Coolio feat. L.V. - Gangsta's Paradise (Karaoke Version)", - "id": "GFy08U8lsf4" - }, - { - "title": "Dear Evan Hansen - To Break In A Glove (Karaoke Version)", - "id": "Nyi6IZyfz80" - }, - { - "title": "Blur - Song 2 (Karaoke Version)", - "id": "9GkcLEH7clA" - }, - { - "title": "Kim Wilde - You Keep Me Hanging On (Karaoke Version)", - "id": "0J5s2g6rkH0" - }, - { - "title": "The Temptations - Get Ready (Karaoke Version)", - "id": "9VlHwqJglZc" - }, - { - "title": "Tears For Fears - Shout (Karaoke Version)", - "id": "F6AlsOR7R08" - }, - { - "title": "Fleetwood Mac - Songbird (Karaoke Version)", - "id": "g-TTPSERoBM" - }, - { - "title": "Westlife - I Have A Dream (Karaoke Version)", - "id": "P2prTeWmwpQ" - }, - { - "title": "Wilson Phillips - Hold On (Karaoke Version)", - "id": "4nmAbO4jla0" - }, - { - "title": "Iyaz - Replay (Karaoke Version)", - "id": "BFW2VlyROsQ" - }, - { - "title": "Shakira feat. Wyclef Jean - Hips Don't Lie (Karaoke Version)", - "id": "3rtSq7K7KtI" - }, - { - "title": "Tori Kelly - Paper Hearts (Karaoke Version)", - "id": "vErVIwnwVY0" - }, - { - "title": "Stevie Wonder - Part-Time Lover (Karaoke Version)", - "id": "qh3_4pGioHk" - }, - { - "title": "Dear Evan Hansen - If I Could Tell Her (Karaoke Version)", - "id": "DY7ba0OJoEs" - }, - { - "title": "Diana Ross - When You Tell Me That You Love Me (Karaoke Version)", - "id": "dprZmTKPbR0" - }, - { - "title": "Imagine Dragons feat. JID - Enemy (Karaoke Version)", - "id": "X1-FlWbvYRk" - }, - { - "title": "Dear Evan Hansen - Requiem (Karaoke Version)", - "id": "xzgogmCQUVE" - }, - { - "title": "Clinton Kane - Fix It To Break It (Karaoke Version)", - "id": "prDU2agXKFQ" - }, - { - "title": "Meat Loaf - I'd Do Anything For Love (But I Won't Do That) (Karaoke Version)", - "id": "Ci1ezW6tr4A" - }, - { - "title": "Edison Lighthouse - Love Grows (Where My Rosemary Goes) (Karaoke Version)", - "id": "f5EDLyui1sQ" - }, - { - "title": "Dear Evan Hansen - Sincerely, Me (Karaoke Version)", - "id": "ubkUk6Id-_o" - }, - { - "title": "*NSYNC - Bye Bye Bye (Karaoke Version)", - "id": "4DwB0wtMIy4" - }, - { - "title": "Kenny Loggins - Danger Zone (Karaoke Version)", - "id": "86-YOQjW3wE" - }, - { - "title": "Catie Turner - God Must Hate Me (Karaoke Version)", - "id": "4-O6kAEsfJA" - }, - { - "title": "Dear Evan Hansen - For Forever (Karaoke Version)", - "id": "r_joTsaNhkA" - }, - { - "title": "Sara Bareilles - King Of Anything (Karaoke Version)", - "id": "EoFNtT4INas" - }, - { - "title": "The Walters - I Love You So (Karaoke Version)", - "id": "pwmVb2FQ3bk" - }, - { - "title": "BoyWithUke - Toxic (Karaoke Version)", - "id": "SXnWgS3rpVo" - }, - { - "title": "The Pussycat Dolls - Stickwitu (Karaoke Version)", - "id": "3lGVMuLWbnU" - }, - { - "title": "Dear Evan Hansen - Anybody Have A Map? (Karaoke Version)", - "id": "wvXWKQQ1Y6Q" - }, - { - "title": "Mr. Mister - Broken Wings (Karaoke Version)", - "id": "LraTETF_ga4" - }, - { - "title": "Bon Jovi - Bad Medicine (Karaoke Version)", - "id": "qi86ZoscFbE" - }, - { - "title": "Dear Evan Hansen - Waving Through A Window (Karaoke Version)", - "id": "mVdv5objyUY" - }, - { - "title": "Larry Graham - One In A Million You (Karaoke Version)", - "id": "gekXgdkB9w8" - }, - { - "title": "Summer Walker - Session 32 (Karaoke Version)", - "id": "RK378JQx28Q" - }, - { - "title": "Lost Frequencies feat. Calum Scott - Where Are You Now (Karaoke Version)", - "id": "SthD3f_ZAGI" - }, - { - "title": "Madonna - La Isla Bonita (Karaoke Version)", - "id": "GyKUbCo3CCg" - }, - { - "title": "Ramsey - Goodbye (Karaoke Version)", - "id": "-KMvOQJQ65I" - }, - { - "title": "Jax - Like My Father (Karaoke Version)", - "id": "bdSu5_uHJuw" - }, - { - "title": "Shawn Mendes - It'll Be Okay (Karaoke Version)", - "id": "aEN0nxbyOWw" - }, - { - "title": "Lev Cameron - Hate Me Too (Karaoke Version)", - "id": "DKjw1XEJr7Y" - }, - { - "title": "Walker Hayes - Fancy Like (Karaoke Version)", - "id": "3CZB4q1QUrk" - }, - { - "title": "Mimi Webb - Halfway (Karaoke Version)", - "id": "OzDVZS6LOi0" - }, - { - "title": "Madonna - Open Your Heart (Karaoke Version)", - "id": "d2H80TaceRc" - }, - { - "title": "Post Malone, The Weeknd - One Right Now (Karaoke Version)", - "id": "gJ8HQ4vJ9sg" - }, - { - "title": "Joshua Bassett - Let You Go (Karaoke Version)", - "id": "-GtJiOtaXn0" - }, - { - "title": "Bruno Major - Nothing (Karaoke Version)", - "id": "KIRQ1X-S2mk" - }, - { - "title": "Zack Tabudlo - Give Me Your Forever (Karaoke Version)", - "id": "XjVK8pnbwZc" - }, - { - "title": "Tom Rosenthal - Lights Are On (Karaoke Version)", - "id": "ytZXMbct5KM" - }, - { - "title": "NEIKED, Mae Muller, Polo G - Better Days (Karaoke Version)", - "id": "lftOtYjEtrU" - }, - { - "title": "Regina Spektor - Two Birds (Karaoke Version)", - "id": "sRMIUVOi7wI" - }, - { - "title": "Jaymes Young - Infinity (Karaoke Version)", - "id": "-fgyLh-hGKE" - }, - { - "title": "Morgan Wallen - Sand In My Boots (Karaoke Version)", - "id": "JdneXw7wGgA" - }, - { - "title": "The Rasmus - In The Shadows (Karaoke Version)", - "id": "9h6KWMFxHeA" - }, - { - "title": "Jason Aldean, Carrie Underwood - If I Didn't Love You (Karaoke Version)", - "id": "YQJTRH0_ADs" - }, - { - "title": "Car, the garden - Romantic Sunday (Karaoke Version)", - "id": "F61bBHr0U2I" - }, - { - "title": "Stephanie Poetri - I Love You 3000 (Karaoke Version)", - "id": "NRxv-hT00h0" - }, - { - "title": "Jeremy Zucker - all the kids are depressed (Karaoke Version)", - "id": "kNeex9nLIuc" - }, - { - "title": "Cash Cash feat Christina Perri - Hero (Karaoke Version)", - "id": "D7RPv3Pg5y8" - }, - { - "title": "aespa - Savage (Karaoke Version)", - "id": "iU3BnaUJt1o" - }, - { - "title": "Sam Fender - Seventeen Going Under (Karaoke Version)", - "id": "bunCcqOUkG4" - }, - { - "title": "Bazzi - Why (Karaoke Version)", - "id": "ZSMf93beaiI" - }, - { - "title": "Tainy, Bad Bunny, Julieta Venegas - Lo Siento BB:/ (Karaoke Version)", - "id": "wcImKM2__Ec" - }, - { - "title": "Tate McRae - feel like sh*t (Karaoke Version)", - "id": "4Ok1GCirSbA" - }, - { - "title": "The Police - Message In A Bottle (Karaoke Version)", - "id": "sTfwVvU7Pbc" - }, - { - "title": "Demi Lovato - Gift Of A Friend (Karaoke Version)", - "id": "SJUYPaoht34" - }, - { - "title": "Rockwell - Knife (Karaoke Version)", - "id": "CbO3yL9Klk4" - }, - { - "title": "Katelyn Tarver - You Don't Know (Karaoke Version)", - "id": "BEyCBBe1uDg" - }, - { - "title": "Michael Learns To Rock - Take Me To Your Heart (Karaoke Version)", - "id": "VQmQ44Mok4U" - }, - { - "title": "Camila Cabello - Million To One (Karaoke Version)", - "id": "mDFzA-PvwDg" - }, - { - "title": "The Plot In You - FEEL NOTHING (Karaoke Version)", - "id": "AR9XFlwPiHk" - }, - { - "title": "Raisa - Love & Let Go (Karaoke Version)", - "id": "lC_rTn1iyiA" - }, - { - "title": "Lynyrd Skynyrd - Simple Man (Karaoke Version)", - "id": "jNbrruU7Eow" - }, - { - "title": "Joan Jett and The Blackhearts - Bad Reputation (Karaoke Version)", - "id": "IUyAGxTdCX4" - }, - { - "title": "Justin Timberlake - What Goes Around...Comes Around (Karaoke Version)", - "id": "6K7dWf6texU" - }, - { - "title": "Mitski - Working For The Knife (Karaoke Version)", - "id": "kLV94D2Kn2c" - }, - { - "title": "Emmy Meli - I AM WOMAN (Karaoke Version)", - "id": "Zri38hh84_Y" - }, - { - "title": "Arctic Monkeys - Why'd You Only Call Me When You're High? (Karaoke Version)", - "id": "Kx_Ou3Txnlw" - }, - { - "title": "JVKE - this is what falling in love feels like (Karaoke Version)", - "id": "UGjAkeEM0oA" - }, - { - "title": "JEON SOMI - Anymore (Karaoke Version)", - "id": "eyKBeYUeucU" - }, - { - "title": "Gracie Abrams - Feels Like (Karaoke Version)", - "id": "OsuH2eCYBoU" - }, - { - "title": "GAYLE - abcdefu (Karaoke Version)", - "id": "25riE6PyRlo" - }, - { - "title": "HONNE ft. BEKA - Location Unknown (Karaoke Version)", - "id": "7RNclfY6ETk" - }, - { - "title": "John Mellencamp - Jack & Diane (Karaoke Version)", - "id": "7o7AaT3JD2s" - }, - { - "title": "Doja Cat - Woman (Karaoke Version)", - "id": "9vImMC3v7YY" - }, - { - "title": "Poison - Every Rose Has Its Thorn (Karaoke Version)", - "id": "eJOtvSzsZk0" - }, - { - "title": "Ne-Yo - So Sick (Karaoke Version)", - "id": "M3Q9A7QWWFI" - }, - { - "title": "Ashnikko - Panic Attacks In Paradise (Karaoke Version)", - "id": "4ZChbWt6kJw" - }, - { - "title": "Jose Mari Chan - Christmas In Our Hearts (Karaoke Version)", - "id": "GS_mctzY45A" - }, - { - "title": "Jenna Raine - see you later (ten years) (Karaoke Version)", - "id": "Iz0lq1Vv8AI" - }, - { - "title": "Jazmine Sullivan - In Love With Another Man (Karaoke Version)", - "id": "s4qvi6btOxU" - }, - { - "title": "Christmas Carols - Jingle Bells (Karaoke Version)", - "id": "Z8-jYQhqK3s" - }, - { - "title": "Kool & The Gang - Celebration (Karaoke Version)", - "id": "zPPCNwktsD4" - }, - { - "title": "BadBoyHalo, CG5, Hyper Potions - MUFFIN (Karaoke Version)", - "id": "QJdcqRYy95A" - }, - { - "title": "Swedish House Mafia, The Weeknd - Moth To A Flame (Karaoke Version)", - "id": "rzi_FfSV2FQ" - }, - { - "title": "Colbie Caillat, Jason Mraz - Lucky (Karaoke Version)", - "id": "B6OiOMDLzNo" - }, - { - "title": "JEON SOMI - XOXO (Karaoke Version)", - "id": "GlbwsyAJwT4" - }, - { - "title": "Tracy Chapman - Baby Can I Hold You (Karaoke Version)", - "id": "80WiXlN-Erk" - }, - { - "title": "Los Del Rio - Macarena (Karaoke Version)", - "id": "WBqZB4_cJgI" - }, - { - "title": "Joy Division - Love Will Tear Us Apart (Karaoke Version)", - "id": "CSeh0SsnRWk" - }, - { - "title": "Glee Cast - Jingle Bells (Karaoke Version)", - "id": "nBpSBhvpoNo" - }, - { - "title": "Christmas Carols - Deck the Halls (Karaoke Version)", - "id": "tpr_9esr9Sc" - }, - { - "title": "Christmas Carols - 12 Days of Christmas (Karaoke Version)", - "id": "2cjFgtgi9UQ" - }, - { - "title": "Elvis Presley - Blue Christmas (Karaoke Version)", - "id": "nMNIOsNMfSw" - }, - { - "title": "Michael Bublรฉ - The Christmas Sweater (Karaoke Version)", - "id": "RYxms9U7SiQ" - }, - { - "title": "Linkin Park - Shadow Of The Day (Karaoke Version)", - "id": "SJh5IlyUouk" - }, - { - "title": "Kool & The Gang - Cherish (Karaoke Version)", - "id": "XpDMs-6U9Mw" - }, - { - "title": "Steve Lacy - Dark Red (Karaoke Version)", - "id": "jxqdP5KU2uU" - }, - { - "title": "Guy Sebastian - Angels Brought Me Here (Karaoke Version)", - "id": "hHxrS58naZ8" - }, - { - "title": "Kenny Rogers - Coward Of The County (Karaoke Version)", - "id": "H0TGqIuZ09k" - }, - { - "title": "Nena - 99 Red Balloons (Karaoke Version)", - "id": "UQhft51HZEs" - }, - { - "title": "George Michael - Faith (Karaoke Version)", - "id": "vwLAD5v-XNo" - }, - { - "title": "Creed - My Sacrifice (Karaoke Version)", - "id": "q8NW5NoSN8s" - }, - { - "title": "Philip Bailey, Phil Collins - Easy Lover (Karaoke Version)", - "id": "w-Y1wyC1jeI" - }, - { - "title": "Cรฉline Dion - It's All Coming Back To Me Now (Karaoke Version)", - "id": "q2VpIxVFCRk" - }, - { - "title": "Simply Red - If You Don't Know Me By Now (Karaoke Version)", - "id": "VDZU38aWfV0" - }, - { - "title": "Bette Midler - The Rose (Karaoke Version)", - "id": "gNwU3unmg-k" - }, - { - "title": "Vanessa Williams - Save The Best For Last (Karaoke Version)", - "id": "Sdmt2ELrLL0" - }, - { - "title": "Cรฉline Dion - Dance With My Father (Karaoke Version)", - "id": "eGWIwDtSSJE" - }, - { - "title": "Lil Nas X, Miley Cyrus - AM I DREAMING (Karaoke Version)", - "id": "QX_4ImgKiwQ" - }, - { - "title": "Atlantic Starr - Always (Karaoke Version)", - "id": "jrlqWiRto1U" - }, - { - "title": "Joan Osborne - One Of Us (Karaoke Version)", - "id": "2VWIhx6WYec" - }, - { - "title": "George Benson - Nothing's Gonna Change My Love For You (Karaoke Version)", - "id": "-rD1vk3Rki8" - }, - { - "title": "Wham! - I'm Your Man (Karaoke Version)", - "id": "H4pidwQ0ShI" - }, - { - "title": "Michael Bublรฉ - White Christmas (Karaoke Version)", - "id": "35HSrR6ZGsU" - }, - { - "title": "George Michael - One More Try (Karaoke Version)", - "id": "J-wNzr-qQ_M" - }, - { - "title": "Kenny Loggins - Footloose (Karaoke Version)", - "id": "5LgFU24ff8c" - }, - { - "title": "Benson Boone - GHOST TOWN (Karaoke Version)", - "id": "_inBAq9sTeA" - }, - { - "title": "Cรฉline Dion - I'm Alive (Karaoke Version)", - "id": "6-poLZPb7q0" - }, - { - "title": "Luther Vandross - Dance With My Father (Karaoke Version)", - "id": "jpbXaMaGfTA" - }, - { - "title": "Cรฉline Dion - O Holy Night (Karaoke Version)", - "id": "OhBVRWDKLuA" - }, - { - "title": "Starship - Nothing's Gonna Stop Us Now (Karaoke Version)", - "id": "ekHoLwskh5w" - }, - { - "title": "ABBA - Fernando (Karaoke Version)", - "id": "BcpOsRLTBZA" - }, - { - "title": "Big Mountain - Baby, I Love Your Way (Karaoke Version)", - "id": "RKvQwgCpyHc" - }, - { - "title": "Sam Smith, Summer Walker - You Will Be Found (Karaoke Version)", - "id": "lVBlf99UQ2Q" - }, - { - "title": "Bette Midler - Wind Beneath My Wings (Karaoke Version)", - "id": "UxxO5qsAwks" - }, - { - "title": "My Chemical Romance - I Don't Love You (Karaoke Version)", - "id": "609O0qqdp44" - }, - { - "title": "Paul McCartney - Wonderful Christmastime (Karaoke Version)", - "id": "VMqdfDvpkxE" - }, - { - "title": "The B-52s - Love Shack (Karaoke Version)", - "id": "ezjrgMVuceg" - }, - { - "title": "Nickelback - Rockstar (Karaoke Version)", - "id": "Hnn5ijwmjvE" - }, - { - "title": "Bing Crosby - Winter Wonderland (Karaoke Version)", - "id": "iTvWOK4tJIQ" - }, - { - "title": "Lou Bega - Mambo No 5 (A Little Bit Of...) (Karaoke Version)", - "id": "JfUEh95C5Us" - }, - { - "title": "Cรฉline Dion, Andrea Bocelli - The Prayer (Karaoke Version)", - "id": "PRQ3JPfzno8" - }, - { - "title": "Cliff Richard - Mistletoe and Wine (Karaoke Version)", - "id": "4iGt1L_93-I" - }, - { - "title": "Wizzard - I Wish It Could Be Christmas Everyday (Karaoke Version)", - "id": "Y20_r9u7vGc" - }, - { - "title": "Agatha Lee Monn, Katie Lopez, Kristen Bell - Do You Want To Build A Snowman? (Karaoke Version)", - "id": "ibOx37zoRAc" - }, - { - "title": "Boney M - Mary's Boy Child (Karaoke Version)", - "id": "BkQqxpk9968" - }, - { - "title": "Leona Lewis - One More Sleep (Karaoke Version)", - "id": "PqpH0PdJs54" - }, - { - "title": "Fugees - Killing Me Softly With His Song (Karaoke Version)", - "id": "DKTlrfsLuhA" - }, - { - "title": "Nickelback - How You Remind Me (Karaoke Version)", - "id": "J_FhZ-n3B5M" - }, - { - "title": "Bananarama - Venus (Karaoke Version)", - "id": "pIIVI5GEcVs" - }, - { - "title": "Kim Carnes - Bette Davis Eyes (Karaoke Version)", - "id": "VlzS2PHpLr8" - }, - { - "title": "Linkin Park - In The End (Karaoke Version)", - "id": "uIcmAyAJ5hE" - }, - { - "title": "Arash Buana, Raissa Anggiani - if u could see me cryin' in my room (Karaoke Version)", - "id": "8mn4MJ-Nnyw" - }, - { - "title": "3 Doors Down - Kryptonite (Karaoke Version)", - "id": "-sAGqzSkVKQ" - }, - { - "title": "Van Morrison - Brown Eyed Girl (Karaoke Version)", - "id": "1eYJqqbjzgs" - }, - { - "title": "Tubbo, CG5 - Life By The Sea (Karaoke Version)", - "id": "iquvJKUwLUc" - }, - { - "title": "Erik Santos - I'll Never Go (Karaoke Version)", - "id": "onw0yvslQ0s" - }, - { - "title": "Oliver Tree - Life Goes On (Karaoke Version)", - "id": "cXT-qQz5vBg" - }, - { - "title": "LISA - LALISA (Karaoke Version)", - "id": "XDbTVYkg-fY" - }, - { - "title": "Madds Buckley - The Red Means I Love You (Karaoke Version)", - "id": "6WpSJEfWHmg" - }, - { - "title": "LeeHi - ONLY (Karaoke Version)", - "id": "s5Tsagidkfo" - }, - { - "title": "Faouzia, John Legend - Minefields (Karaoke Version)", - "id": "yZDCZX6nXOs" - }, - { - "title": "Whitney Houston - Where Do Broken Hearts Go (Karaoke Version)", - "id": "-Q1fDkbWepM" - }, - { - "title": "DeBarge - Rhythm Of The Night (Karaoke Version)", - "id": "9hwpgX0hneE" - }, - { - "title": "CKay - love nwantiti (ah ah ah) (Karaoke Version)", - "id": "9c80VAkUOds" - }, - { - "title": "Cameo - Word Up (Karaoke Version)", - "id": "M6ccBWsX8Dw" - }, - { - "title": "LISA - MONEY (Karaoke Version)", - "id": "vbiuaexUGxQ" - }, - { - "title": "Fleetwood Mac - Little Lies (Karaoke Version)", - "id": "2T0QklpqG4k" - }, - { - "title": "Linkin Park - What I've Done (Karaoke Version)", - "id": "EdbriG0Sz_U" - }, - { - "title": "Rockwell - Somebody's Watching Me (Karaoke Version)", - "id": "3HlPrd1csr4" - }, - { - "title": "Linkin Park - CASTLE OF GLASS (Karaoke Version)", - "id": "6OX6eFoN29s" - }, - { - "title": "ROSALรA, Ozuna - Yo x Ti, Tu x Mi (Karaoke Version)", - "id": "MjFu3u5AMks" - }, - { - "title": "Linkin Park - BURN IT DOWN (Karaoke Version)", - "id": "iQbT7ADqgSo" - }, - { - "title": "Just Stef - Miss U Miss Me (Karaoke Version)", - "id": "xB3DsoNBQe0" - }, - { - "title": "Simply Red - Holding Back The Years (Karaoke Version)", - "id": "DMkfrRksG-w" - }, - { - "title": "Justin Timberlake - Seรฑorita (Karaoke Version)", - "id": "_qzFDr2ixnI" - }, - { - "title": "Linkin Park - New Divide (Karaoke Version)", - "id": "cXqEchoTyjI" - }, - { - "title": "Rico Blanco - Your Universe (Karaoke Version)", - "id": "3293gfAtXbg" - }, - { - "title": "Parmalee - Take My Name (Karaoke Version)", - "id": "Cdx4ed5IzYw" - }, - { - "title": "Lil Nas X ft. Elton John - ONE OF ME (Karaoke Version)", - "id": "SDWfE8IKdlk" - }, - { - "title": "Mimi Webb - Dumb Love (Karaoke Version)", - "id": "ceWMN7gpGKI" - }, - { - "title": "Ingrid Andress, Sam Hunt - Wishful Drinking (Karaoke Version)", - "id": "grYoOTDUpMY" - }, - { - "title": "Deniece Williams - Let's Hear It For The Boy (Karaoke Version)", - "id": "CucVxsLzUjo" - }, - { - "title": "Justin Timberlake - Cry Me A River (Karaoke Version)", - "id": "6w5mdZZtt-Y" - }, - { - "title": "Luke Combs - Beer Never Broke My Heart (Karaoke Version)", - "id": "GGHXpCCcgQc" - }, - { - "title": "OneRepublic - Someday (Karaoke Version)", - "id": "ZBWSkU-uxFA" - }, - { - "title": "Don McLean - American Pie (Karaoke Version)", - "id": "ybujfv_yaHc" - }, - { - "title": "Sueco - Paralyzed (Karaoke Version)", - "id": "40JPyPasInA" - }, - { - "title": "Sam Kim - Love Me Like That (Karaoke Version)", - "id": "fA9IX9sIKgU" - }, - { - "title": "THE ANXIETY, Tyler Cole, WILLOW - Meet Me At Our Spot (Karaoke Version)", - "id": "ehwnuae2QHw" - }, - { - "title": "Eagle-Eye Cherry - Save Tonight (Karaoke Version)", - "id": "AFG_izhrhbY" - }, - { - "title": "Shawn Mendes - Stitches (Karaoke Version)", - "id": "55TwvRv_Xog" - }, - { - "title": "Mariah Carey - Without You (Karaoke Version)", - "id": "OA44unnMz2Q" - }, - { - "title": "Troye Sivan - Angel Baby (Karaoke Version)", - "id": "CYpILLJpRBE" - }, - { - "title": "Rex Orange County - Best Friend (Karaoke Version)", - "id": "1DEiCIT86UU" - }, - { - "title": "Sabrina Carpenter - Skinny Dipping (Karaoke Version)", - "id": "H8czK8snxQI" - }, - { - "title": "Aretha Franklin - Respect (Karaoke Version)", - "id": "xEQw0C0SYEI" - }, - { - "title": "The Weeknd - Take My Breath (Karaoke Version)", - "id": "ooPl1fprR0o" - }, - { - "title": "Kelsea Ballerini, LANY - I Quit Drinking (Karaoke Version)", - "id": "08kmO_PtJ64" - }, - { - "title": "Nessa Barrett - i hope ur miserable until ur dead (Karaoke Version)", - "id": "RAExjnAFh9s" - }, - { - "title": "Pat Benatar - We Belong (Karaoke Version)", - "id": "gm5wyMfJcpI" - }, - { - "title": "Doja Cat, The Weeknd - You Right (Karaoke Version)", - "id": "TRZWWAh1Cgw" - }, - { - "title": "Lynyrd Skynyrd - Sweet Home Alabama (Karaoke Version)", - "id": "ShMxICBtGNg" - }, - { - "title": "Justin Timberlake - Mirrors (Karaoke Version)", - "id": "2z5WPXAkQYQ" - }, - { - "title": "The Doors - People Are Strange (Karaoke Version)", - "id": "dh0gLJCvmcI" - }, - { - "title": "Justin Timberlake - SexyBack (Karaoke Version)", - "id": "6P3sr7ET7Jc" - }, - { - "title": "Jasmine Thompson - Old Friends (Karaoke Version)", - "id": "EV88Btm_wvE" - }, - { - "title": "Halsey - Still Learning (Karaoke Version)", - "id": "FaZsDvYW7VA" - }, - { - "title": "Jasmine Thompson - I Try (Karaoke Version)", - "id": "2M6Vqp6UmDU" - }, - { - "title": "ABBA - I Still Have Faith In You (Karaoke Version)", - "id": "Dij2sym5cAk" - }, - { - "title": "Jeremy Zucker & Chelsea Cutler - emily (Karaoke Version)", - "id": "K0dKOpXvJEk" - }, - { - "title": "Aretha Franklin - (You Make Me Feel Like) A Natural Woman (Karaoke Version)", - "id": "eb0eF-Nl3FI" - }, - { - "title": "Arctic Monkeys - Fluorescent Adolescent (Karaoke Version)", - "id": "YZ9R4zjv0mM" - }, - { - "title": "Train - Bruises (Karaoke Version)", - "id": "BbrihJKtSLw" - }, - { - "title": "KZ Tandingan - Till My Heartaches End (Karaoke Version)", - "id": "G5fXnSm0VOI" - }, - { - "title": "Lykke Li, The Magician - I Follow Rivers (Remix) (Karaoke Version)", - "id": "sQMDVRBIrsg" - }, - { - "title": "A Fine Frenzy - Almost Lover (Karaoke Version)", - "id": "2i9RvwboQ-c" - }, - { - "title": "Joan Jett & The Blackhearts - I Love Rock 'N Roll (Karaoke Version)", - "id": "dg9T9zaCN0M" - }, - { - "title": "YEBBA - Evergreen (Karaoke Version)", - "id": "zlwtLAHUIlY" - }, - { - "title": "Billie Eilish - Halley's Comet (Karaoke Version)", - "id": "-SFMIQq4DDU" - }, - { - "title": "Warrant - Cherry Pie (Karaoke Version)", - "id": "62fxRZrdkHQ" - }, - { - "title": "Chris Stapleton - You Should Probably Leave (Karaoke Version)", - "id": "tBp0WvkZiYM" - }, - { - "title": "Rod Stewart - Maggie May (Karaoke Version)", - "id": "w2M4mwvGxDM" - }, - { - "title": "Tiffany - I Think We're Alone Now (Karaoke Version)", - "id": "zkoG9kdLM9o" - }, - { - "title": "Clinton Kane - I GUESS I'M IN LOVE (Karaoke Version)", - "id": "G9Xg6DcyJPc" - }, - { - "title": "The Beatles - Daytripper (Karaoke Version)", - "id": "QurgjrIgfWM" - }, - { - "title": "Oleta Adams - Get Here (Karaoke Version)", - "id": "skLcmItbh9w" - }, - { - "title": "Morgan Wallen - Wasted On You (Karaoke Version)", - "id": "ejiAfqzKJMA" - }, - { - "title": "Lil Nas X - THATS WHAT I WANT (Karaoke Version)", - "id": "29pwdXcwluc" - }, - { - "title": "Selena Gomez - Feel Me (Karaoke Version)", - "id": "FB3Ie1hdZqg" - }, - { - "title": "Toni Braxton - Un-Break My Heart (Karaoke Version)", - "id": "2BBlwzLws6E" - }, - { - "title": "ABBA - Don't Shut Me Down (Karaoke Version)", - "id": "KOFM7RMoys8" - }, - { - "title": "Thin Lizzy - The Boys Are Back In Town (Karaoke Version)", - "id": "HalRmtyV0b4" - }, - { - "title": "Belinda Carlisle - Heaven Is A Place On Earth (Karaoke Version)", - "id": "mBc5HB0qk2w" - }, - { - "title": "Charlie Puth - Cheating On You (Karaoke Version)", - "id": "o7ttgjHdvmo" - }, - { - "title": "Ed Sheeran - Shivers (Karaoke Version)", - "id": "u7-BTSNSEGU" - }, - { - "title": "Culture Club - Karma Chameleon (Karaoke Version)", - "id": "PmqyoWb2kD4" - }, - { - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version)", - "id": "-dLeErrD9Oo" - }, - { - "title": "Irene Cara - Fame (Karaoke Version)", - "id": "y5p1hMXN5UI" - }, - { - "title": "No Doubt - Don't Speak (Karaoke Version)", - "id": "JtiocB8PYPs" - }, - { - "title": "Patrick Swayze - She's Like The Wind (Karaoke Version)", - "id": "d4oDObL423s" - }, - { - "title": "Dolly Parton - Jolene (Karaoke Version)", - "id": "r9lVYyhkqUU" - }, - { - "title": "Muse - Hysteria (Karaoke Version)", - "id": "2dnh8g1oNDI" - }, - { - "title": "Culture Club - Do You Really Want To Hurt Me (Karaoke Version)", - "id": "QP2gth28Lbg" - }, - { - "title": "Bonnie Tyler - Holding Out For A Hero (Karaoke Version)", - "id": "O52enkT7pFE" - }, - { - "title": "The Cranberries - Linger (Karaoke Version)", - "id": "3ynrjCFX_1A" - }, - { - "title": "Europe - The Final Countdown (Karaoke Version)", - "id": "KLfiWUrJ87c" - }, - { - "title": "The Police - Roxanne (Karaoke Version)", - "id": "9rgLU-UhAe8" - }, - { - "title": "Charlie Burg - I Don't Wanna Be Okay Without You (Karaoke Version)", - "id": "h_Xilv1yn1w" - }, - { - "title": "Bob Dylan - Knockin' On Heaven's Door (Karaoke Version)", - "id": "fKI59ZX4irE" - }, - { - "title": "The Knack - My Sharona (Karaoke Version)", - "id": "qQEY7dAR5Ws" - }, - { - "title": "Natasha Bedingfield - Unwritten (Karaoke Version)", - "id": "ouyWpUyaY5k" - }, - { - "title": "Kim Wilde - Kids In America (Karaoke Version)", - "id": "ef8Xfjf4L5A" - }, - { - "title": "Men At Work - Down Under (Karaoke Version)", - "id": "bMSUvArIq8s" - }, - { - "title": "Kid Cudi - Day 'N' Nite (Karaoke Version)", - "id": "4HKRJ5EzZks" - }, - { - "title": "Pat Benatar - Hit Me With Your Best Shot (Karaoke Version)", - "id": "Oy4WG7jCy9c" - }, - { - "title": "Robert Palmer, Eric 'ET' Thorngren - Addicted To Love (Karaoke Version)", - "id": "AnaeWMoo-v4" - }, - { - "title": "Irene Cara - Flashdance...What A Feeling (Karaoke Version)", - "id": "O4UFdPRb2Qs" - }, - { - "title": "Katy Perry - The One That Got Away (Karaoke Version)", - "id": "zxjFe42SA8I" - }, - { - "title": "Liam Payne, Rita Ora - For You (Karaoke Version)", - "id": "yMQX77emLLY" - }, - { - "title": "UB40 - Red Red Wine (Karaoke Version)", - "id": "-vvRfrgTqgo" - }, - { - "title": "Olivia Newton-John - Let Me Be There (Karaoke Version)", - "id": "GMA0iUUW23k" - }, - { - "title": "The Temptations - My Girl (Karaoke Version)", - "id": "UHmVzIi-8Sw" - }, - { - "title": "Barry Manilow - Mandy (Karaoke Version)", - "id": "F5-GP1Gnmrg" - }, - { - "title": "Doja Cat ft. SZA - Kiss Me More (Karaoke Version)", - "id": "XB3tWogPM4Q" - }, - { - "title": "Sting - Englishman In New York (Karaoke Version)", - "id": "pZBNshhFVTg" - }, - { - "title": "The Beatles - Drive My Car (Karaoke Version)", - "id": "9gVibbuOGrU" - }, - { - "title": "Morgan Wallen - More Than My Hometown (Karaoke Version)", - "id": "tAmFWs4eBHQ" - }, - { - "title": "The Beatles - Love Me Do (Karaoke Version)", - "id": "jKq3kB7csOU" - }, - { - "title": "Creedence Clearwater Revival - Fortunate Son (Karaoke Version)", - "id": "M7_NY1DG8dA" - }, - { - "title": "Steppenwolf - Born To Be Wild (Karaoke Version)", - "id": "WGIPBu8sbYw" - }, - { - "title": "The Beatles - Eight Days A Week (Karaoke Version)", - "id": "qtr3EdRH3gM" - }, - { - "title": "Whitesnake - Here I Go Again (Karaoke Version)", - "id": "UhXgms1Cnac" - }, - { - "title": "Jack Stauber - Buttercup (Karaoke Version)", - "id": "iDVVCIRI9Xc" - }, - { - "title": "The Beatles - Ob-La-Di, Ob-La-Da (Karaoke Version)", - "id": "EmZxleXjRpM" - }, - { - "title": "The Beatles - Hello, Goodbye (Karaoke Version)", - "id": "gLJ7_TIg6Sw" - }, - { - "title": "Cutting Crew - (I Just) Died In Your Arms (Karaoke Version)", - "id": "LOugf8rtG10" - }, - { - "title": "The Beatles - I Saw Her Standing There (Karaoke Version)", - "id": "oFDWewDz8Ns" - }, - { - "title": "Alex Warren - One More I Love You (Karaoke Version)", - "id": "qSgmhhkdg3k" - }, - { - "title": "Billie Eilish - Getting Older (Karaoke Version)", - "id": "Zf724ASx4qU" - }, - { - "title": "A-Wall - Loverboy (Karaoke Version)", - "id": "ErUcD8FwL-Q" - }, - { - "title": "Ed Sheeran - Visiting Hours (Karaoke Version)", - "id": "x_yPzakRX5I" - }, - { - "title": "Mr.Kitty - After Dark (Karaoke Version)", - "id": "l8Fk9lHid0w" - }, - { - "title": "ABBA - Mamma Mia (Karaoke Version)", - "id": "1YN5Emwwoss" - }, - { - "title": "The Band Perry - DONE. (Karaoke Version)", - "id": "TuZPCo5y4OA" - }, - { - "title": "Madcon - Beggin' (Karaoke Version)", - "id": "Srrt2q_kZCg" - }, - { - "title": "Celeste - Strange (Karaoke Version)", - "id": "5DPvFp6jN1M" - }, - { - "title": "ABBA - Money, Money, Money (Karaoke Version)", - "id": "DAg-IibCqrs" - }, - { - "title": "The Kooks - Naive (Karaoke Version)", - "id": "MuFTnhPYfew" - }, - { - "title": "Spandau Ballet - Through The Barricades (Karaoke Version)", - "id": "VTWqeVTgDe4" - }, - { - "title": "ABBA - The Winner Takes It All (Karaoke Version)", - "id": "FZqeU0TnNRM" - }, - { - "title": "Bon Jovi - You Give Love A Bad Name (Karaoke Version)", - "id": "tvDYNWxLr-4" - }, - { - "title": "ABBA - Gimme! Gimme! Gimme! (A Man After Midnight) (Karaoke Version)", - "id": "H18SVaz-heA" - }, - { - "title": "ABBA - SOS (Karaoke Version)", - "id": "EhtYAcf9-oY" - }, - { - "title": "Liana Flores - rises the moon (Karaoke Version)", - "id": "Lzx8gjfz8qU" - }, - { - "title": "Camila Cabello - Don't Go Yet (Karaoke Version)", - "id": "BYUWNlhQ5Nk" - }, - { - "title": "Nelly Furtado ft. Timbaland - Promiscuous (Karaoke Version)", - "id": "bCXUtAHd8BM" - }, - { - "title": "Creedence Clearwater Revival - Have You Ever Seen The Rain (Karaoke Version)", - "id": "MOEOT4EvfLo" - }, - { - "title": "The Jackson 5 - I'll Be There (Karaoke Version)", - "id": "3IOIYLuWdxM" - }, - { - "title": "Creedence Clearwater Revival - Bad Moon Rising (Karaoke Version)", - "id": "gnCFEwyArGM" - }, - { - "title": "The Beatles - Penny Lane (Karaoke Version)", - "id": "MpUbXg7UQpk" - }, - { - "title": "Billie Eilish - Male Fantasy (Karaoke Version)", - "id": "hmOIvv2sIHs" - }, - { - "title": "Sub Urban & Bella Poarch - INFERNO (Karaoke Version)", - "id": "RY2_auiCazQ" - }, - { - "title": "Train - Drive By (Karaoke Version)", - "id": "DH_lqdBKmPY" - }, - { - "title": "ABBA - Thank You For The Music (Karaoke Version)", - "id": "iXj62Mwqp18" - }, - { - "title": "Ed Sheeran - You Need Me, I Don't Need You (Karaoke Version)", - "id": "5lj47c73eno" - }, - { - "title": "Lady Gaga - 911 (Karaoke Version)", - "id": "rV96yvY210g" - }, - { - "title": "Demi Lovato - Heart Attack (Karaoke Version)", - "id": "_vdDJ4qNHAI" - }, - { - "title": "The Jackson 5 - ABC (Karaoke Version)", - "id": "1VIHgW0C7p4" - }, - { - "title": "Maroon 5 - She Will Be Loved (Karaoke Version)", - "id": "ALtaiJ2NnK8" - }, - { - "title": "Madonna - Crazy For You (Karaoke Version)", - "id": "5NPZG8GWJZs" - }, - { - "title": "Michael Bublรฉ - Home (Karaoke Version)", - "id": "boycqDP-6VA" - }, - { - "title": "Josh Turner - Would You Go With Me (Karaoke Version)", - "id": "K5hcLK2uNUc" - }, - { - "title": "Billie Eilish - Happier Than Ever (Karaoke Version)", - "id": "jNfT49-cZE8" - }, - { - "title": "Princess Chelsea - The Cigarette Duet (Karaoke Version)", - "id": "yQlfCWQfY9g" - }, - { - "title": "Bo Burnham - Welcome To The Internet (Karaoke Version)", - "id": "FK0vZWztu80" - }, - { - "title": "Madonna - Papa Don't Preach (Karaoke Version)", - "id": "Hpv6NY76lrc" - }, - { - "title": "Bon Jovi - Wanted Dead Or Alive (Karaoke Version)", - "id": "RlK9pfsYwZo" - }, - { - "title": "Madonna - Material Girl (Karaoke Version)", - "id": "Ehs_tp-qNQ4" - }, - { - "title": "sangiovanni - malibu (Karaoke Version)", - "id": "sI2geL6f1ZQ" - }, - { - "title": "James Arthur - Can I Be Him (Karaoke Version)", - "id": "wv_wbU8LhVk" - }, - { - "title": "Neon Trees - Everybody Talks (Karaoke Version)", - "id": "ShxVWm1P298" - }, - { - "title": "Robbie Williams & Nicole Kidman - Somethin' Stupid (Karaoke Version)", - "id": "cQQQ1WQ8L40" - }, - { - "title": "Bon Jovi - It's My Life (Karaoke Version)", - "id": "y3rHoAicOo4" - }, - { - "title": "Fleetwood Mac - The Chain (Karaoke Version)", - "id": "Kc6dEtZk8hM" - }, - { - "title": "The Kooks - She Moves In Her Own Way (Karaoke Version)", - "id": "0lL0jVLQ4hA" - }, - { - "title": "Lisa Loeb - Stay (I Missed You) (Karaoke Version)", - "id": "_Rp4S3-RKqw" - }, - { - "title": "Muse - Feeling Good (Karaoke Version)", - "id": "yIMfwELwzpU" - }, - { - "title": "Zac Brown Band - Chicken Fried (Karaoke Version)", - "id": "Nudao8sP_u0" - }, - { - "title": "Creed - One Last Breath (Karaoke Version)", - "id": "5Bnth5PeS8Y" - }, - { - "title": "MAX & Ali Gatie - Butterflies (Karaoke Version)", - "id": "-TpwDAfxBV0" - }, - { - "title": "Morgan Wallen - 7 Summers (Karaoke Version)", - "id": "fTZZy8f-M4w" - }, - { - "title": "Gnarls Barkley - Crazy (Karaoke Version)", - "id": "nOz8QRycPRo" - }, - { - "title": "Fleetwood Mac - Go Your Own Way (Karaoke Version)", - "id": "7vExFbUpT54" - }, - { - "title": "Avicii - Addicted To You (Karaoke Version)", - "id": "-VCmfd2c5aM" - }, - { - "title": "New Hope Club, Danna Paola - Know Me Too Well (Karaoke Version)", - "id": "5_eM9VgR4o0" - }, - { - "title": "Bon Jovi - Bed Of Roses (Karaoke Version)", - "id": "fBGaQoyEz1o" - }, - { - "title": "T.I. feat. Rihanna - Live Your Life (Karaoke Version)", - "id": "bthQTwDCtnw" - }, - { - "title": "vaultboy - everything sucks (Karaoke Version)", - "id": "JPo76r1JtPM" - }, - { - "title": "Mitski - Nobody (Karaoke Version)", - "id": "64gK32or-Fc" - }, - { - "title": "Imagine Dragons - Wrecked (Karaoke Version)", - "id": "PsQ1aTE-EJQ" - }, - { - "title": "Nina - Someday (Karaoke Version)", - "id": "74JX3_FvS9s" - }, - { - "title": "Selena Gomez - Ring (Karaoke Version)", - "id": "uaVogFtUWA0" - }, - { - "title": "Madonna - Like A Virgin (Karaoke Version)", - "id": "3XKP4ffgXLE" - }, - { - "title": "Amy Winehouse - Back To Black (Karaoke Version)", - "id": "nturlhtt7WA" - }, - { - "title": "Maroon 5 - Harder To Breathe (Karaoke Version)", - "id": "0l83pmQ1VOw" - }, - { - "title": "Hinder - Lips Of An Angel (Karaoke Version)", - "id": "pWcgbCLI4dU" - }, - { - "title": "Nico & Vinz - Am I Wrong (Karaoke Version)", - "id": "rRX6ZwTBCdI" - }, - { - "title": "Arctic Monkeys - Do I Wanna Know? (Karaoke Version)", - "id": "edorf0kTnJw" - }, - { - "title": "LANY - dancing in the kitchen (Karaoke Version)", - "id": "l8d2-OCqBBk" - }, - { - "title": "James Blunt - Goodbye My Lover (Karaoke Version)", - "id": "EPgytcrDT3Y" - }, - { - "title": "Bon Jovi - Livin' On A Prayer (Karaoke Version)", - "id": "Ep6G3P2v5ZA" - }, - { - "title": "Lil Nas X, Jack Harlow - INDUSTRY BABY (Karaoke Version)", - "id": "qeQH9sVRQeA" - }, - { - "title": "Bastille - Pompeii (Karaoke Version)", - "id": "Z7VYEhapHgw" - }, - { - "title": "Conan Gray - People Watching (Karaoke Version)", - "id": "8p-_LMiZBug" - }, - { - "title": "Mรฅneskin - Coraline (Karaoke Version)", - "id": "ARX8NEr5cDA" - }, - { - "title": "BTS - Permission To Dance (Karaoke Version)", - "id": "613P9iZVg7A" - }, - { - "title": "Aly & AJ - Potential Breakup Song (Karaoke Version)", - "id": "Nt31viBn3r4" - }, - { - "title": "Norah Jones - Don't Know Why (Karaoke Version)", - "id": "3V8LEVcB5B4" - }, - { - "title": "Sarah Cothran - As The World Caves In (Karaoke Version)", - "id": "ACKpCHoqeR4" - }, - { - "title": "Shawn Mendes - Look Up At The Stars (Karaoke Version)", - "id": "sOvOa7Q18w4" - }, - { - "title": "WILLOW - Wait a Minute! (Karaoke Version)", - "id": "s4NrP1bA6WU" - }, - { - "title": "Galantis, David Guetta & Little Mix - Heartbreak Anthem (Karaoke Version)", - "id": "uBkRdh7LR_U" - }, - { - "title": "Morgan Wallen - Chasin' You (Karaoke Version)", - "id": "yMpWuYqwjZ8" - }, - { - "title": "Nelly Furtado - Say It Right (Karaoke Version)", - "id": "0Z8_f-khj9U" - }, - { - "title": "Tom Grennan - Little Bit Of Love (Karaoke Version)", - "id": "oKcSawS3mzs" - }, - { - "title": "PinkPantheress - Pain (Karaoke Version)", - "id": "sBRmMqrGUOc" - }, - { - "title": "Corinne Bailey Rae - Put Your Records On (Karaoke Version)", - "id": "_4hTPqABZNc" - }, - { - "title": "Bo Burnham - White Woman's Instagram (Karaoke Version)", - "id": "9vhlO2DHRCs" - }, - { - "title": "The Kid LAROI & Justin Bieber - Stay (Karaoke Version)", - "id": "Ak9rCD9ooi4" - }, - { - "title": "Bo Burnham - Bezos II (Karaoke Version)", - "id": "qa1oUZRkYn8" - }, - { - "title": "Sezairi - It's You (Karaoke Version)", - "id": "H-H5YiKyIe0" - }, - { - "title": "Beach House - Space Song (Karaoke Version)", - "id": "H34eyRkBgOM" - }, - { - "title": "Lenka - Everything At Once (Karaoke Version)", - "id": "yeYLhT_Ifgw" - }, - { - "title": "Teddy Swims - Bed On Fire (Karaoke Version)", - "id": "Nw-8t57Ymo8" - }, - { - "title": "Chuck Berry - Johnny B. Goode (Karaoke Version)", - "id": "DJM8cl7k4oc" - }, - { - "title": "Billie Eilish - NDA (Karaoke Version)", - "id": "pNCTdsTW2wY" - }, - { - "title": "SWV - Weak (Karaoke Version)", - "id": "w3pOQwvxD6w" - }, - { - "title": "The Backyardigans - International Super Spy (Karaoke Version)", - "id": "aB2QA_t-RWI" - }, - { - "title": "The Cinematic Orchestra - To Build A Home (Karaoke Version)", - "id": "BlzwIYTiu1s" - }, - { - "title": "Lady Gaga ft. Colby O'Donis - Just Dance (Karaoke Version)", - "id": "68-6OSqnLMo" - }, - { - "title": "Bo Burnham - Bezos I (Karaoke Version)", - "id": "FFW0OpHD8Ig" - }, - { - "title": "Elena Tsagrinou - El Diablo (Karaoke Version)", - "id": "btbguIAlacY" - }, - { - "title": "Frankie Valli - Can't Take My Eyes Off You (Karaoke Version)", - "id": "u_072m3oWT0" - }, - { - "title": "Lady Gaga - Judas (Karaoke Version)", - "id": "JZhTjaXH4z4" - }, - { - "title": "Sara Bareilles - Brave (Karaoke Version)", - "id": "n86DI8GbzB4" - }, - { - "title": "Arctic Monkeys - I Bet You Look Good On The Dancefloor (Karaoke Version)", - "id": "tl4hjWZDAs8" - }, - { - "title": "KSI - Holiday (Karaoke Version)", - "id": "g5bqLDdesh8" - }, - { - "title": "Maroon 5 - Daylight (Karaoke Version)", - "id": "9PGrRQNMmTk" - }, - { - "title": "Khalid, Disclosure - Know Your Worth (Karaoke Version)", - "id": "bpe30T5FIw0" - }, - { - "title": "DaBaby ft. Roddy Ricch - Rockstar (Karaoke Version)", - "id": "3PgyEVl5RgA" - }, - { - "title": "Lady Gaga - You And I (Karaoke Version)", - "id": "X-oMv-qyhgo" - }, - { - "title": "Aitana - Con La Miel En Los Labios (Karaoke Version)", - "id": "h_1CJ8-GYyI" - }, - { - "title": "Rihanna - Where Have You Been (Karaoke Version)", - "id": "xbAEK9lRQU0" - }, - { - "title": "Roar - I Can't Handle Change (Karaoke Version)", - "id": "r_Vru7M-CO0" - }, - { - "title": "Dream - Mask (Karaoke Version)", - "id": "mytIpQGe4pA" - }, - { - "title": "Ed Sheeran - Bad Habits (Karaoke Version)", - "id": "925sVa2zEp4" - }, - { - "title": "Bo Burnham - All Eyes On Me (Karaoke Version)", - "id": "jdJp7_ap0Vs" - }, - { - "title": "5 Seconds Of Summer - She Looks So Perfect (Karaoke Version)", - "id": "nJ72L3D3Tig" - }, - { - "title": "WILLOW ft. Travis Barker - t r a n s p a r e n t s o u l (Karaoke Version)", - "id": "xoe2J2DsSlU" - }, - { - "title": "Clean Bandit ft. Jess Glynne - Rather Be (Karaoke Version)", - "id": "KR6R12wZ6VE" - }, - { - "title": "Bad Bunny - Yonaguni (Karaoke Version)", - "id": "UWQxr0OHe4k" - }, - { - "title": "Arctic Monkeys - Brianstorm (Karaoke Version)", - "id": "ixD5G-fzvUE" - }, - { - "title": "Dua Lipa - Be The One (Karaoke Version)", - "id": "CRv72AGaC-A" - }, - { - "title": "Trinidad Cardona - Dinero (Karaoke Version)", - "id": "nQgEFJ-nKMk" - }, - { - "title": "Matt Cooper - Ain't Met Us Yet (Karaoke Version)", - "id": "MdUkVXSpVxA" - }, - { - "title": "Halestorm - I Miss The Misery (Karaoke Version)", - "id": "8ZE-emeej_c" - }, - { - "title": "The Wanted - Glad You Came (Karaoke Version)", - "id": "JtpGrk27S2A" - }, - { - "title": "Imagine Dragons - Follow You (Karaoke Version)", - "id": "NofI12Lj_iA" - }, - { - "title": "The Backyardigans - Into The Thick Of It! (Karaoke Version)", - "id": "TXJVwoCusNI" - }, - { - "title": "NIKI - lowkey (Karaoke Version)", - "id": "JAQsnvmqOvg" - }, - { - "title": "Mรฅneskin - Beggin' (Karaoke Version)", - "id": "pLfq4A6YxYo" - }, - { - "title": "Olivia Rodrigo - The Rose Song (Karaoke Version)", - "id": "E4NVqpWacPw" - }, - { - "title": "Polo G - RAPSTAR (Karaoke Version)", - "id": "TbD8dC5kk0E" - }, - { - "title": "Lady Gaga - Alejandro (Karaoke Version)", - "id": "rqVw5tCvPno" - }, - { - "title": "Maroon 5 - One More Night (Karaoke Version)", - "id": "ALz3kDEDT6s" - }, - { - "title": "Ava Max - My Head & My Heart (Karaoke Version)", - "id": "4JRv61L4Kwo" - }, - { - "title": "Marshmello, Jonas Brothers - Leave Before You Love Me (Karaoke Version)", - "id": "yG9vlkcpfGg" - }, - { - "title": "Anson Seabra - That's Us (Karaoke Version)", - "id": "w0S4yINl650" - }, - { - "title": "Zoe Wees - Girls Like Us (Karaoke Version)", - "id": "vz-nO0wpLfk" - }, - { - "title": "The Bangles - Eternal Flame (Karaoke Version)", - "id": "rV5NCv24FWI" - }, - { - "title": "dhruv - double take (Karaoke Version)", - "id": "jzt-oLk0JGU" - }, - { - "title": "Lovejoy - Sex Sells (Karaoke Version)", - "id": "sPg1BpiiEM0" - }, - { - "title": "Dua Lipa - Love Again (Karaoke Version)", - "id": "Dyjju0aRvlI" - }, - { - "title": "Mรฅneskin - I WANNA BE YOUR SLAVE (Karaoke Version)", - "id": "3MzEbJHnmJk" - }, - { - "title": "Madison Beer - Reckless (Karaoke Version)", - "id": "xbUHj4bQ5Ew" - }, - { - "title": "Ashnikko ft. Princess Nokia - Slumber Party (Karaoke Version)", - "id": "HaWbUTiLEm8" - }, - { - "title": "Troye Sivan - Strawberries & Cigarettes (Karaoke Version)", - "id": "va7HaVf-vcM" - }, - { - "title": "Arctic Monkeys - 505 (Karaoke Version)", - "id": "VtErzctE50A" - }, - { - "title": "Anne-Marie, Niall Horan - Our Song (Karaoke Version)", - "id": "lhTOyekA4GE" - }, - { - "title": "Estelle ft. Kanye West - American Boy (Karaoke Version)", - "id": "o2asvfE1TDY" - }, - { - "title": "Noisettes - Never Forget You (Karaoke Version)", - "id": "kJNhp9Zsexo" - }, - { - "title": "Demi Lovato - Warrior (Karaoke Version)", - "id": "XaRyJVXclvY" - }, - { - "title": "Selena Gomez - De Una Vez (Karaoke Version)", - "id": "njD4qrMJ-7E" - }, - { - "title": "Pop Smoke - What You Know Bout Love (Karaoke Version)", - "id": "xEAvvD1lt5U" - }, - { - "title": "BTS - Life Goes On (Karaoke Version)", - "id": "aDla6WDHdOQ" - }, - { - "title": "Mac Miller - The Spins (Karaoke Version)", - "id": "-tARouBVuLY" - }, - { - "title": "H.E.R. - Damage (Karaoke Version)", - "id": "iju6Q7Hy4wU" - }, - { - "title": "Demi Lovato - Fix A Heart (Karaoke Version)", - "id": "XsfBuHWV9M0" - }, - { - "title": "Surf Curse - Freaks (Karaoke Version)", - "id": "r3e__7S0zds" - }, - { - "title": "Roddy Ricch feat. Mustard - High Fashion (Karaoke Version)", - "id": "rYmTV4OiM6I" - }, - { - "title": "Ben&Ben - Make It With You (Karaoke Version)", - "id": "jEWXjhOdiYw" - }, - { - "title": "Stefania - LAST DANCE (Karaoke Version)", - "id": "zxU_c0J7y9E" - }, - { - "title": "JJ Lin ft. Anne Marie - Bedroom (Karaoke Version)", - "id": "FnLW1O5-5OU" - }, - { - "title": "MARINA - Bubblegum B (Karaoke Version)", - "id": "96PWPJFMud8" - }, - { - "title": "NIKI - Lose (Karaoke Version)", - "id": "shpSJPGyvRI" - }, - { - "title": "Gabby Barrett - The Good Ones (Karaoke Version)", - "id": "WuZMyhABvZc" - }, - { - "title": "Demi Lovato - Dancing With The Devil (Karaoke Version)", - "id": "K1-rU9b7LtU" - }, - { - "title": "All Time Low - Dear Maria, Count Me In (Karaoke Version)", - "id": "1gOcVjO9cxQ" - }, - { - "title": "The Neighbourhood - The Beach (Karaoke Version)", - "id": "79y92meubBg" - }, - { - "title": "Kane Brown, Swae Lee, Khalid - Be Like That (Karaoke Version)", - "id": "rKeEoWf0jL4" - }, - { - "title": "Rauw Alejandro - Todo De Ti (Karaoke Version)", - "id": "hFtzTzWE2Ss" - }, - { - "title": "Nic D - Fine Apple (Karaoke Version)", - "id": "fFxYfOLPXEE" - }, - { - "title": "Mitski - Washing Machine Heart (Karaoke Version)", - "id": "jgr062naCnI" - }, - { - "title": "The Living Tombstone - My Ordinary Life (Karaoke Version)", - "id": "BKaMFPWe7pY" - }, - { - "title": "Forest Blakk ft. Meghan Trainor - If You Love Her (Karaoke Version)", - "id": "i8y752U4gvQ" - }, - { - "title": "Lykke Li - Possibility (Karaoke Version)", - "id": "ZKBNAF4_pbg" - }, - { - "title": "Matt Maltese - As The World Caves In (Karaoke Version)", - "id": "lQpgE4878iw" - }, - { - "title": "Ben&Ben - Leaves (Karaoke Version)", - "id": "drxprubv16U" - }, - { - "title": "Lifehouse - You And Me (Karaoke Version)", - "id": "9kdA-3hJpE0" - }, - { - "title": "Lil Nas X - SUN GOES DOWN (Karaoke Version)", - "id": "ZSnRR7TJtFk" - }, - { - "title": "Olivia Rodrigo - brutal (Karaoke Version)", - "id": "ys4Qc0E57ZY" - }, - { - "title": "Sam Fischer, Demi Lovato - What Other People Say (Karaoke Version)", - "id": "tp8NFKWgYto" - }, - { - "title": "Duncan Laurence - Stars (Karaoke Version)", - "id": "UhxAGUo_Y_A" - }, - { - "title": "Bebe Rexha - Sabotage (Karaoke Version)", - "id": "p1ZRfET90Ik" - }, - { - "title": "Zoe Wees - Ghost (Karaoke Version)", - "id": "2Gi_eAfZbUc" - }, - { - "title": "Oasis - Don't Look Back In Anger (Karaoke Version)", - "id": "GH5Brf0JPtA" - }, - { - "title": "Reyanna Maria - So Pretty (Karaoke Version)", - "id": "pdViQpypSts" - }, - { - "title": "Daniel Caesar - Japanese Denim (Karaoke Version)", - "id": "KTalHtx-fgI" - }, - { - "title": "Olivia Rodrigo - hope ur ok (Karaoke Version)", - "id": "GwzwW007zTg" - }, - { - "title": "Olivia Rodrigo - 1 step forward, 3 steps back (Karaoke Version)", - "id": "hlZA2C6A3Z0" - }, - { - "title": "Olivia Rodrigo - jealousy, jealousy (Karaoke Version)", - "id": "2ffdrIeTQCI" - }, - { - "title": "Jamie Miller - Here's Your Perfect (Karaoke Version)", - "id": "pcgonULACZk" - }, - { - "title": "Miguel - Sure Thing (Karaoke Version)", - "id": "Iilqpt9eC4k" - }, - { - "title": "Billie Eilish - Lost Cause (Karaoke Version)", - "id": "C2OqzzqzHtE" - }, - { - "title": "Bella Poarch - Build A B (Karaoke Version)", - "id": "t8ZWb01urdA" - }, - { - "title": "Olivia Rodrigo - favorite crime (Karaoke Version)", - "id": "KGn6axh47LM" - }, - { - "title": "Olivia Rodrigo - happier (Karaoke Version)", - "id": "or1_3KMpp3Y" - }, - { - "title": "The Backyardigans - Castaways (Karaoke Version)", - "id": "rs_5ubVyq-c" - }, - { - "title": "Robbie Williams - Feel (Karaoke Version)", - "id": "40QgJjmfTBw" - }, - { - "title": "6 dogs - Faygo Dreams (Karaoke Version)", - "id": "oJQSTXa6B-k" - }, - { - "title": "twenty one pilots - Shy Away (Karaoke Version)", - "id": "Z8F84X71Dgo" - }, - { - "title": "Yazoo - Only You (Karaoke Version)", - "id": "_zByrP21Zp0" - }, - { - "title": "Olivia Rodrigo - traitor (Karaoke Version)", - "id": "wvpoGzmd5v4" - }, - { - "title": "Demi Lovato ft. Ariana Grande - Met Him Last Night (Karaoke Version)", - "id": "R0JVigWElPg" - }, - { - "title": "Two Door Cinema Club - What You Know (Karaoke Version)", - "id": "PX0HoNt8Mx4" - }, - { - "title": "BTS - Butter (Karaoke Version)", - "id": "I6LniT-irAs" - }, - { - "title": "Jazmine Sullivan - Bust Your Windows (Karaoke Version)", - "id": "KK1rnzOk0Ts" - }, - { - "title": "Jason Derulo x Nuka - Love Not War (The Tampa Beat) (Karaoke Version)", - "id": "M1mZGT-OnO0" - }, - { - "title": "H.E.R. - Hard Place (Karaoke Version)", - "id": "tZtX6FFBsr0" - }, - { - "title": "Maroon 5 ft. Megan Thee Stallion - Beautiful Mistakes (Karaoke Version)", - "id": "RVkMl2wGgbc" - }, - { - "title": "Jeremy Zucker, Chelsea Cutler - this is how you fall in love (Karaoke Version)", - "id": "DLL3G_T_P0Y" - }, - { - "title": "BTS - Film out (Karaoke Version)", - "id": "CXHVuHy6U9s" - }, - { - "title": "P!nk & Willow Sage Hart - Cover Me In Sunshine (Karaoke Version)", - "id": "NiAkVwyig3E" - }, - { - "title": "Aqua - Barbie Girl (Karaoke Version)", - "id": "AQOt75axc0Y" - }, - { - "title": "Soho Dolls - Bang Bang Bang Bang (Karaoke Version)", - "id": "zd9rtEyZY6w" - }, - { - "title": "Conan Gray - Astronomy (Karaoke Version)", - "id": "itegXci2yYE" - }, - { - "title": "Daniel Powter - Bad Day (Karaoke Version)", - "id": "GB-W0QMdNwQ" - }, - { - "title": "Ruth B - Dandelions (Karaoke Version)", - "id": "UjejKDLIrRk" - }, - { - "title": "Tom Odell - Another Love (Karaoke Version)", - "id": "aErI67y4WDA" - }, - { - "title": "Olivia Rodrigo - enough for you (Karaoke Version)", - "id": "yOMC9FEwFio" - }, - { - "title": "LANY - Malibu Nights (Karaoke Version)", - "id": "mj4MU4z5ukk" - }, - { - "title": "Jason Derulo ft. Adam Levine - Lifestyle (Karaoke Version)", - "id": "BPZBIBVBArQ" - }, - { - "title": "YUNGBLUD - Parents (Karaoke Version)", - "id": "240lGSsuBO0" - }, - { - "title": "Sunjae - I'm Missing You (Karaoke Version)", - "id": "WCAvm3-O7zg" - }, - { - "title": "Chloe George - ghost town voice memo (Karaoke Version)", - "id": "LFxDi6H3_zs" - }, - { - "title": "Bring Me The Horizon - Can You Feel My Heart (Karaoke Version)", - "id": "BfemgI4dglU" - }, - { - "title": "Cody Fry - I Hear A Symphony (Karaoke Version)", - "id": "TIav1g1jRa0" - }, - { - "title": "Ashnikko - Tantrum (Karaoke Version)", - "id": "JJ3cqwjiozs" - }, - { - "title": "Rag'n'Bone Man, P!nk - Anywhere Away From Here (Karaoke Version)", - "id": "_3dXOdRjOCs" - }, - { - "title": "Enrique Inglesias - Hero (Karaoke Version)", - "id": "YVx-Ai0mcJQ" - }, - { - "title": "Lyn Lapid - Itsy Bitsy (Karaoke Version)", - "id": "Oy_yg7-lJqc" - }, - { - "title": "Sasha Sloan - Older (Karaoke Version)", - "id": "J5XTrbrR784" - }, - { - "title": "Ella Henderson x Tom Grennan - Let's Go Home Together (Karaoke Version)", - "id": "hVxIfa-Sab4" - }, - { - "title": "Westlife - You Raise Me Up (Karaoke Version)", - "id": "7SNe3RItXyo" - }, - { - "title": "Olivia Rodrigo - good 4 u (Karaoke Version)", - "id": "L409x_gvwm8" - }, - { - "title": "Beach Bunny - Cloud 9 (Karaoke Version)", - "id": "MWc6coWJtJk" - }, - { - "title": "Emily Burns - Is It Just Me? (Karaoke Version)", - "id": "XG79EuEgEuE" - }, - { - "title": "Gera MX, Christian Nodal - Botella Tras Botella (Karaoke Version)", - "id": "SqdggRfMf2Q" - }, - { - "title": "Alec Benjamin - Outrunning Karma (Karaoke Version)", - "id": "fep_y_M2tsQ" - }, - { - "title": "Cardi B - Up (Karaoke Version)", - "id": "vs_ZvP9dBL4" - }, - { - "title": "Lulu - Boom Bang a Bang (Karaoke Version)", - "id": "hgVFupOREhY" - }, - { - "title": "Dua Lipa - We're Good (Karaoke Version)", - "id": "6SXG6xbyqFA" - }, - { - "title": "Mimi Webb - Good Without (Karaoke Version)", - "id": "FxFFSZxbDPQ" - }, - { - "title": "Little Mix ft. Saweetie - Confetti (Karaoke Version)", - "id": "ecuXrFTOlAQ" - }, - { - "title": "Mike Posner - Please Don't Go (Karaoke Version)", - "id": "XAp5mbiWfpE" - }, - { - "title": "Juris - Your Love (Karaoke Version)", - "id": "G6aa9W_zWkM" - }, - { - "title": "SLANDER, Dylan Matthew - Love Is Gone (Acoustic) (Karaoke Version)", - "id": "3AnKy-mzUXQ" - }, - { - "title": "Cliff Richard - Congratulations (Karaoke Version)", - "id": "oYiagyqqWrI" - }, - { - "title": "Olivia Rodrigo, Joshua Bassett - Even When/The Best Part (Karaoke Version)", - "id": "ibgU0umViYs" - }, - { - "title": "Pamungkas - To The Bone (Karaoke Version)", - "id": "ZujI2VFeXXM" - }, - { - "title": "Lena - Satellite (Karaoke Version)", - "id": "DAlARmMKgvs" - }, - { - "title": "Conchita Wurst - Rise Like A Phoenix (Karaoke Version)", - "id": "PQOWzg10_j4" - }, - { - "title": "James Newman - Embers (Karaoke Version)", - "id": "xVnqSeLX84c" - }, - { - "title": "Tina Turner - The Best (Karaoke Version)", - "id": "X8Mygx8B54Y" - }, - { - "title": "Brotherhood Of Man - Save Your Kisses For Me (Karaoke Version)", - "id": "ouF4us2d7lw" - }, - { - "title": "Bucks Fizz - Making Your Mind Up (Karaoke Version)", - "id": "EMwBoAI-PHg" - }, - { - "title": "Gina G - Ooh Aah... Just A Little Bit (Karaoke Version)", - "id": "QDi9tlUTQrs" - }, - { - "title": "Mother Mother - Burning Pile (Karaoke Version)", - "id": "UDVnbZeah7s" - }, - { - "title": "Billie Eilish - Your Power (Karaoke Version)", - "id": "JfsIryyTd2M" - }, - { - "title": "Aurora - Runaway (Karaoke Version)", - "id": "NqFeNHOwv7c" - }, - { - "title": "Gjon's Tears - Tout l'Univers (Karaoke Version)", - "id": "OI61ou01NAM" - }, - { - "title": "Tate McRae - slower (Karaoke Version)", - "id": "oOr7_sX_HVs" - }, - { - "title": "Loreen - Euphoria (Karaoke Version)", - "id": "ZVsVYTIC1ZU" - }, - { - "title": "girl in red - i wanna be your girlfriend (Karaoke Version)", - "id": "ncXaoIkajns" - }, - { - "title": "Mรฅneskin - ZITTI E BUONI (Karaoke Version)", - "id": "-HsvD2g7njI" - }, - { - "title": "Glass Animals - Heat Waves (Karaoke Version)", - "id": "EXZTrdKHNUo" - }, - { - "title": "Clara Mae - I'm Not Her (Karaoke Version)", - "id": "l5BNEZQAC_E" - }, - { - "title": "Amy Winehouse - Rehab (Karaoke Version)", - "id": "RQZscYrhLtA" - }, - { - "title": "Lil Nas X - MONTERO (Call Me By Your Name) (Karaoke Version)", - "id": "gmmZrbVBOd0" - }, - { - "title": "Sleeping At Last - Turning Page (Karaoke Version)", - "id": "CxW7tbIN1UY" - }, - { - "title": "Donna Summer - Hot Stuff (Karaoke Version)", - "id": "U1uTOOuXqIs" - }, - { - "title": "Olivia Rodrigo - deja vu (Karaoke Version)", - "id": "8iBJPvRXqgQ" - }, - { - "title": "CG5 - Good To Be Alive (Karaoke Version)", - "id": "I5cRXOi1L_o" - }, - { - "title": "Ashe, FINNEAS - Till Forever Falls Apart (Karaoke Version)", - "id": "S6RIe2obLmM" - }, - { - "title": "James Arthur - Medicine (Karaoke Version)", - "id": "y8ODOt4uTMA" - }, - { - "title": "Au/Ra - Panic Room (Karaoke Version)", - "id": "Fv1V33y6SUs" - }, - { - "title": "Little Mix - Happiness (Karaoke Version)", - "id": "MRbbzT9iJw8" - }, - { - "title": "Alessia Cara - I Choose (Karaoke Version)", - "id": "VboLh-YNYzo" - }, - { - "title": "ROSร‰ - Gone (Karaoke Version)", - "id": "odgQHiemvXA" - }, - { - "title": "ROSร‰ - On The Ground (Karaoke Version)", - "id": "FrfyqKgHpA4" - }, - { - "title": "Justin Bieber ft. Daniel Caesar & Giveon - Peaches (Karaoke Version)", - "id": "9b3_RAobRr8" - }, - { - "title": "Little Mix - Sweet Melody (Karaoke Version)", - "id": "0ruhi3keo5g" - }, - { - "title": "Leah Nobel - Beginning Middle End (Karaoke Version)", - "id": "YFbaJJH-gAQ" - }, - { - "title": "Little Mix - Not A Pop Song (Karaoke Version)", - "id": "bRCnq_bdAJg" - }, - { - "title": "Justin Bieber ft. Khalid - As I Am (Karaoke Version)", - "id": "2nQrSIfzQ-4" - }, - { - "title": "Faouzia - This Mountain (Karaoke Version)", - "id": "bK746U8eaDU" - }, - { - "title": "Luke Combs - Better Together (Karaoke Version)", - "id": "N3ZAeAoFS-w" - }, - { - "title": "Victoria Justice - Make It Shine (Karaoke Version)", - "id": "l5NZ2blTQ44" - }, - { - "title": "Tate McRae ft. Lil Mosey - vicious (Karaoke Version)", - "id": "1X9-WrIr8EY" - }, - { - "title": "Anson Seabra - Trying My Best (Karaoke Version)", - "id": "G9-rEo4ThDI" - }, - { - "title": "Kali Uchis - telepatรญa (Karaoke Version)", - "id": "1g1b2Z5thF8" - }, - { - "title": "Justin Bieber - Hold On (Karaoke Version)", - "id": "GZjl9kUs8tU" - }, - { - "title": "Khalid - Young Dumb & Broke (Karaoke Version)", - "id": "pvNUlAjIBLg" - }, - { - "title": "Joshua Bassett - Only A Matter Of Time (Karaoke Version)", - "id": "Q63Gig-pOsw" - }, - { - "title": "Miley Cyrus - 7 Things (Karaoke Version)", - "id": "6f13QrObIls" - }, - { - "title": "Selena Gomez - Boyfriend (Karaoke Version)", - "id": "ISH6-W9pNRE" - }, - { - "title": "Ralph McTell - Streets Of London (Karaoke Version)", - "id": "ro22d7cdq7Q" - }, - { - "title": "Nessa Barrett ft. Jxdn - la di die (Karaoke Version)", - "id": "O-WbdSk6O-k" - }, - { - "title": "Oasis - Champagne Supernova (Karaoke Version)", - "id": "pX2BkCElPmk" - }, - { - "title": "Kylie Minogue - Can't Get You Out Of My Head (Karaoke Version)", - "id": "LRJx1QH03sU" - }, - { - "title": "Michael Bublรฉ - Feeling Good (Karaoke Version)", - "id": "oqJ1c9WwXfc" - }, - { - "title": "The Foundations - Build Me Up Buttercup (Karaoke Version)", - "id": "0TvbvdSQQWU" - }, - { - "title": "Larissa Lambert - Weak (Karaoke Version)", - "id": "MATnF6bAIB4" - }, - { - "title": "Tom Jones - Green Green Grass Of Home (Karaoke Version)", - "id": "mZg9xYtJPyI" - }, - { - "title": "Lauren Daigle - Trust In You (Karaoke Version)", - "id": "nB04X3YiZ58" - }, - { - "title": "Giveon - LIKE I WANT YOU (Karaoke Version)", - "id": "9g0RaYcrk0g" - }, - { - "title": "Katie Sky - Monsters (Karaoke Version)", - "id": "x4682azh4Kg" - }, - { - "title": "Post Malone - Only Wanna Be With You (Karaoke Version)", - "id": "8NSCetPyWJY" - }, - { - "title": "Destiny Rogers - Tomboy (Karaoke Version)", - "id": "cpy_Zq1GkM0" - }, - { - "title": "ZAYN - Vibez (Karaoke Version)", - "id": "RRVFd6lwsXE" - }, - { - "title": "Harry Styles - Cherry (Karaoke Version)", - "id": "9YzZicHcSHY" - }, - { - "title": "Duncan Laurence - Arcade (Karaoke Version)", - "id": "19Kju46x324" - }, - { - "title": "Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version)", - "id": "nRD8iFBRruw" - }, - { - "title": "ElyOtto - SugarCrash! (Karaoke Version)", - "id": "oS7a_qkZ8ZY" - }, - { - "title": "Sarah Geronimo - How Could You Say You Love Me (Karaoke Version)", - "id": "WQcbQoSoCDE" - }, - { - "title": "Jorja Smith - The One (Karaoke Version)", - "id": "UJYGsBdMyDY" - }, - { - "title": "Dan + Shay - Glad You Exist (Karaoke Version)", - "id": "2FCejuVWK5c" - }, - { - "title": "Chord Overstreet - Hold On (Karaoke Version)", - "id": "XvLQ-eNKIzk" - }, - { - "title": "One Direction - They Don't Know About Us (Karaoke Version)", - "id": "JWnw-YyIcSY" - }, - { - "title": "Kim Dracula - Paparazzi (Karaoke Version)", - "id": "RnABb1rqoe4" - }, - { - "title": "Hillsong Worship - What A Beautiful Name (Karaoke Version)", - "id": "fn91I3czi0c" - }, - { - "title": "Julie and The Phantoms - Finally Free (Karaoke Version)", - "id": "qE-zymd9Yq0" - }, - { - "title": "Cavetown - Lemon Boy (Karaoke Version)", - "id": "NT5NuWvPPsE" - }, - { - "title": "Sasha Sloan - Dancing With Your Ghost (Karaoke Version)", - "id": "Wf1iIsyeUkw" - }, - { - "title": "La La Land - City Of Stars (Karaoke Version)", - "id": "Yl-SJoffk1Q" - }, - { - "title": "Nathan Evans - Wellerman (Karaoke Version)", - "id": "PD6ippYQ434" - }, - { - "title": "Joshua Bassett - Lie Lie Lie (Karaoke Version)", - "id": "8DWe7mOOkps" - }, - { - "title": "Julie and The Phantoms - Perfect Harmony (Karaoke Version)", - "id": "PtQOFwXIKjA" - }, - { - "title": "United Kingdolls - UK Hun? (from RuPaulโ€™s Drag Race UK) (Karaoke Version)", - "id": "NpozZ2UHU5I" - }, - { - "title": "Sara Bareilles - Love Song (Karaoke Version)", - "id": "XUpl5BYB8Lg" - }, - { - "title": "Mother Mother - Hayloft (Karaoke Version)", - "id": "R4JPJWkZtZk" - }, - { - "title": "KAROL G, Nicki Minaj - Tusa (Karaoke Version)", - "id": "--mHajGPFCY" - }, - { - "title": "Tate McRae - r u ok (Karaoke Version)", - "id": "BkUGX-5myOM" - }, - { - "title": "Ariana Grande, Doja Cat - motive (Karaoke Version)", - "id": "dksWnHcXbT8" - }, - { - "title": "Sara Bareilles - She Used To Be Mine (Karaoke Version)", - "id": "79b9UbLgmB4" - }, - { - "title": "Lyn Lapid - Producer Man (Karaoke Version)", - "id": "JfslRemEt-M" - }, - { - "title": "Katy Perry - Thinking Of You (Karaoke Version)", - "id": "mB8xUlfdDbU" - }, - { - "title": "The Kid LAROI - WITHOUT YOU (Karaoke Version)", - "id": "fN_APTSVtQQ" - }, - { - "title": "SZA ft. Travis Scott - Love Galore (Karaoke Version)", - "id": "zR2b2j_X-WE" - }, - { - "title": "Ryn Weaver - Pierre (Karaoke Version)", - "id": "ArZMnvVUO54" - }, - { - "title": "Ed Sheeran - Afterglow (Karaoke Version)", - "id": "96qEU_2qfkE" - }, - { - "title": "Etta James - At Last (Karaoke Version)", - "id": "ueA-n3cDRgk" - }, - { - "title": "Wilbur Soot - Your New Boyfriend (Karaoke Version)", - "id": "R5PK2yYwHl8" - }, - { - "title": "Shontelle - Impossible (Karaoke Version)", - "id": "VIB8Z838AVw" - }, - { - "title": "Dua Lipa - Levitating (Karaoke Version)", - "id": "nK9hD9_SAdU" - }, - { - "title": "Zombies 2 - I'm Winning (Karaoke Version)", - "id": "HHpo6VhlMoA" - }, - { - "title": "Juice WRLD, The Kid LAROI - Reminds Me Of You (Karaoke Version)", - "id": "SEgSqGq938Q" - }, - { - "title": "Bill Withers - Lovely Day (Karaoke Version)", - "id": "9kkTrNh1N2A" - }, - { - "title": "Doja Cat - Streets (Karaoke Version)", - "id": "gNciVzNpiIc" - }, - { - "title": "Grover Washington Jr ft. Bill Withers - Just The Two Of Us (Karaoke Version)", - "id": "yIyW2lcapHs" - }, - { - "title": "Sara Kays - Remember That Night? (Karaoke Version)", - "id": "4KUoIbvtqjA" - }, - { - "title": "American Authors - Best Day Of My Life (Karaoke Version)", - "id": "a6JskTwyQ3s" - }, - { - "title": "Nina Simone - Feeling Good (Karaoke Version)", - "id": "KHigN-Sgk5I" - }, - { - "title": "Westlife - Flying Without Wings (Karaoke Version)", - "id": "xR9fY0MCk30" - }, - { - "title": "Village People - YMCA (Karaoke Version)", - "id": "nRjFavXA8pE" - }, - { - "title": "Grouplove - Tongue Tied (Karaoke Version)", - "id": "uQQntp2Jam8" - }, - { - "title": "SZA - Good Days (Karaoke Version)", - "id": "-RrH9ycYp14" - }, - { - "title": "Sabrina Carpenter - Skin (Karaoke Version)", - "id": "qUZcTZgbr_E" - }, - { - "title": "Billie Eilish, ROSALรA - Lo Vas A Olvidar (Karaoke Version)", - "id": "o50EWLhATXM" - }, - { - "title": "GANGGA - Blue Jeans (Karaoke Version)", - "id": "-sMcNhlsuoA" - }, - { - "title": "Toploader - Dancing In The Moonlight (Karaoke Version)", - "id": "1HO4TlUBjG4" - }, - { - "title": "The Lumineers - Ophelia (Karaoke Version)", - "id": "BUhyJhM5sIw" - }, - { - "title": "Strawberry Guy - Mrs Magic (Karaoke Version)", - "id": "CS4hB3--47Y" - }, - { - "title": "Yarichin B Club - Touch You (Karaoke Version)", - "id": "51pAw0s7IXU" - }, - { - "title": "The Lumineers - Ho Hey (Karaoke Version)", - "id": "myisMOpHKso" - }, - { - "title": "Conan Gray - Comfort Crowd (Karaoke Version)", - "id": "wLpoCrUp5n8" - }, - { - "title": "Harry Styles - Golden (Karaoke Version)", - "id": "I8mlZYHr_cg" - }, - { - "title": "Hotel Ugly - Shut Up My Mom's Calling (Karaoke Version)", - "id": "dCjgLcZ3q74" - }, - { - "title": "Billy Ocean - Suddenly (Karaoke Version)", - "id": "8ztf8RW-LGY" - }, - { - "title": "Luke Combs - Forever After All (Karaoke Version)", - "id": "bAheKhvj_gI" - }, - { - "title": "Miley Cyrus - Plastic Hearts (Karaoke Version)", - "id": "YCg18GGi6_I" - }, - { - "title": "EYEDRESS - JEALOUS (Karaoke Version)", - "id": "5gxG5KO3jpM" - }, - { - "title": "Faouzia - Born Without A Heart (Karaoke Version)", - "id": "MTp6PpGgLHg" - }, - { - "title": "AJR - BANG! (Karaoke Version)", - "id": "U9xZ4wJdQkw" - }, - { - "title": "Backstreet Boys - Incomplete (Karaoke Version)", - "id": "Gw-QOBzISlo" - }, - { - "title": "Lauv, Conan Gray - Fake (Karaoke Version)", - "id": "t4s37bZQuSY" - }, - { - "title": "Miley Cyrus ft. Dua Lipa - Prisoner (Karaoke Version)", - "id": "cA1nd2m5BHM" - }, - { - "title": "Studio Killers - Jenny (I Wanna Ruin Our Friendship) (Karaoke Version)", - "id": "Ln98fP6ADS8" - }, - { - "title": "Justin Bieber - Anyone (Karaoke Version)", - "id": "--IfjfyJiWM" - }, - { - "title": "Tom Jones - You're My World (Karaoke Version)", - "id": "e_yvyWPb2hI" - }, - { - "title": "carolesdaughter - Violent (Karaoke Version)", - "id": "8TBn8iRl9vQ" - }, - { - "title": "Olivia Rodrigo - drivers license (Karaoke Version)", - "id": "C3y6jGCXiUA" - }, - { - "title": "Avicii - Wake Me Up (Karaoke Version)", - "id": "BGfJobjH4Dc" - }, - { - "title": "Simple Plan - Perfect (Karaoke Version)", - "id": "5f15CcwlluQ" - }, - { - "title": "Taylor Swift - willow (Karaoke Version)", - "id": "FBiPxGCeaGQ" - }, - { - "title": "Jungkook - Still With You (Karaoke Version)", - "id": "B-vkJSgNh4Q" - }, - { - "title": "Conan Gray - The Cut That Always Bleeds (Karaoke Version)", - "id": "JD9XKAw5Xu8" - }, - { - "title": "Conan Gray - Lookalike (Karaoke Version)", - "id": "fzXwb0VBmrs" - }, - { - "title": "Faouzia - Tears Of Gold (Karaoke Version)", - "id": "vjJc10kXwi0" - }, - { - "title": "Zombies 2 - One For All (Karaoke Version)", - "id": "8JM8dqdVHT4" - }, - { - "title": "Shawn Mendes, Justin Bieber - Monster (Karaoke Version)", - "id": "TeOkfhWXMoY" - }, - { - "title": "DaBaby - Suge (Karaoke Version)", - "id": "bmYyfKKv8uw" - }, - { - "title": "Ricky Montgomery - Line Without A Hook (Karaoke Version)", - "id": "vyzGHheyc4o" - }, - { - "title": "Juice WRLD ft. YoungBoy Never Broke Again - Bandit (Karaoke Version)", - "id": "kvt4MKR2IRk" - }, - { - "title": "Dexy's Midnight Runners - Come On Eileen (Karaoke Version)", - "id": "tq6XkiGydm0" - }, - { - "title": "Robbie Williams - She's The One (Karaoke Version)", - "id": "VB9Qda_M-O4" - }, - { - "title": "Marshmello x YUNGBLUD x blackbear - Tongue Tied (Karaoke Version)", - "id": "xYjjEfDSnZA" - }, - { - "title": "Jung Seung Hwan - Day & Night (Karaoke Version)", - "id": "a0jhPMJSKHI" - }, - { - "title": "Lauren Aquilina - King (Karaoke Version)", - "id": "JQ_gUGUsIDs" - }, - { - "title": "Taylor Swift - champagne problems (Karaoke Version)", - "id": "Sxq13MOyt3c" - }, - { - "title": "Evanescence - Going Under (Karaoke Version)", - "id": "hmgPwlcQHHg" - }, - { - "title": "Tom Jones - (It Looks Like) I'll Never Fall In Love Again (Karaoke Version)", - "id": "nBbYK41u6Fw" - }, - { - "title": "Eric Clapton - Tears In Heaven (Karaoke Version)", - "id": "08SGDHJ2fLY" - }, - { - "title": "Richard Marx - Now & Forever (Karaoke Version)", - "id": "ICUrHapBGQI" - }, - { - "title": "The La's - There She Goes (Karaoke Version)", - "id": "Bxgvg97oca0" - }, - { - "title": "Eric Clapton - Wonderful Tonight (Karaoke Version)", - "id": "WDXiPavQjNg" - }, - { - "title": "Eva Cassidy - Fields Of Gold (Karaoke Version)", - "id": "mgObZN7fZPU" - }, - { - "title": "Van Halen - Jump (Karaoke Version)", - "id": "Dy6CP3WZwLw" - }, - { - "title": "Frances Forever - Space Girl (Karaoke Version)", - "id": "R-JgdkBHlZo" - }, - { - "title": "Hayd - Changes (Karaoke Version)", - "id": "7IYbYVyMNTc" - }, - { - "title": "Edith Whiskers - Home (Karaoke Version)", - "id": "RQoKTZPPttQ" - }, - { - "title": "Survivor - Eye Of The Tiger (Karaoke Version)", - "id": "83ZFZPhxskc" - }, - { - "title": "Rihanna ft. Calvin Harris - We Found Love (Karaoke Version)", - "id": "XclNcFENpvA" - }, - { - "title": "Los Lobos - La Bamba (Karaoke Version)", - "id": "9LP71ypf2qg" - }, - { - "title": "Julie and The Phantoms - Wake Up (Karaoke Version)", - "id": "TecAH_OrSZs" - }, - { - "title": "Train - Shake Up Christmas (Karaoke Version)", - "id": "kcFduXEfwI4" - }, - { - "title": "Miley Cyrus - Angels Like You (Karaoke Version)", - "id": "H5iZ0PMJa0U" - }, - { - "title": "Josh Groban - You Raise Me Up (Karaoke Version)", - "id": "btwJm_mV-84" - }, - { - "title": "Gene Autry - Here Comes Santa Claus (Karaoke Version)", - "id": "vvDSNTlX3DY" - }, - { - "title": "Lionel Richie - Stuck On You (Karaoke Version)", - "id": "s8CszZUic4w" - }, - { - "title": "347aidan - Dancing In My Room (Karaoke Version)", - "id": "MEYOaImcGZk" - }, - { - "title": "Victorious - It's Not Christmas Without You (Karaoke Version)", - "id": "v1RMIznbpFs" - }, - { - "title": "Ariana Grande, Liz Gillies - Santa Baby (Karaoke Version)", - "id": "Sli3QQAB8zM" - }, - { - "title": "Louis Armstrong - What A Wonderful World (Karaoke Version)", - "id": "nkaOdoxNTB0" - }, - { - "title": "Katy Perry - Roar (Karaoke Version)", - "id": "hMF4h0gYN-0" - }, - { - "title": "Pink Sweat$ - At My Worst (Karaoke Version)", - "id": "FsKcCqLS91w" - }, - { - "title": "Julie and The Phantoms - Bright (Karaoke Version)", - "id": "n-AjHqEnNYo" - }, - { - "title": "Ava Max - Christmas Without You (Karaoke Version)", - "id": "ra-HNUFAcaU" - }, - { - "title": "Chuck Berry - Run Rudolph Run (Karaoke Version)", - "id": "UO3UiC6_86o" - }, - { - "title": "Katy Perry ft. Juicy J - Dark Horse (Karaoke Version)", - "id": "0NV85akrcHo" - }, - { - "title": "Josรฉ Feliciano - Feliz Navidad (Karaoke Version)", - "id": "3qTDEpO7k8s" - }, - { - "title": "Selena Gomez - Slow Down (Karaoke Version)", - "id": "IW-SvUNv1Xg" - }, - { - "title": "Lupe Fiasco & Guy Sebastian - Battle Scars (Karaoke Version)", - "id": "_vx_Co2Hwuo" - }, - { - "title": "Coyote Theory - This Side Of Paradise (Karaoke Version)", - "id": "ppIt5aDk12w" - }, - { - "title": "girl in red - two queens in a king sized bed (Karaoke Version)", - "id": "orQTFMuH35o" - }, - { - "title": "Darlene Love - Christmas (Baby Please Come Home) (Karaoke Version)", - "id": "b5vrOlvZN5c" - }, - { - "title": "Anson Seabra - Walked Through Hell (Karaoke Version)", - "id": "_XCshM3W9eA" - }, - { - "title": "Faouzia - You Don't Even Know Me (Karaoke Version)", - "id": "BEO7ZbVbzss" - }, - { - "title": "Slade - Merry Xmas Everybody (Karaoke Version)", - "id": "0m3V3gOUD2w" - }, - { - "title": "Chloe x Halle - Do It (Karaoke Version)", - "id": "p8QyRze_u-8" - }, - { - "title": "MarMar Oso - Ruthless (Karaoke Version)", - "id": "bJ31_Nx0ni4" - }, - { - "title": "Eva Cassidy - Over The Rainbow (Karaoke Version)", - "id": "IzDq4hWPpBU" - }, - { - "title": "Eva Cassidy - Songbird (Karaoke Version)", - "id": "ripaCP9HPX4" - }, - { - "title": "Mustard with Roddy Ricch - Ballin' (Karaoke Version)", - "id": "FGJ09zozTYM" - }, - { - "title": "Saweetie - My Type (Karaoke Version)", - "id": "p0lAVav6OnY" - }, - { - "title": "Doja Cat ft. Gucci Mane - Like That (Karaoke Version)", - "id": "61Un7YQ5vqI" - }, - { - "title": "Spencer Crandall ft. Julia Cole - Things I Can't Say (Karaoke Version)", - "id": "zO4MJqHd6SQ" - }, - { - "title": "Katy Perry - Last Friday Night (T.G.I.F) (Karaoke Version)", - "id": "ZJ_-i6MhWq8" - }, - { - "title": "Burl Ives - A Holly Jolly Christmas (Karaoke Version)", - "id": "oQqCEZPVxs0" - }, - { - "title": "Justin Bieber - Mistletoe (Karaoke Version)", - "id": "tJ4RnhzTueQ" - }, - { - "title": "Wham! - Club Tropicana (Karaoke Version)", - "id": "wSuc41t_DIk" - }, - { - "title": "Luke Combs - When It Rains It Pours (Karaoke Version)", - "id": "Wz3UbGHDtuU" - }, - { - "title": "Ariana Grande, The Weeknd - off the table (Karaoke Version)", - "id": "Otk-R5ZzsTE" - }, - { - "title": "The Kid LAROI - So Done (Karaoke Version)", - "id": "WVQkxIzlKWo" - }, - { - "title": "Selena Gomez & The Scene - Hit The Lights (Karaoke Version)", - "id": "NzfUyshBHOE" - }, - { - "title": "Why Don't We - Kiss You This Christmas (Karaoke Version)", - "id": "RpxNeN6UnWE" - }, - { - "title": "Masked Wolf - Astronaut In The Ocean (Karaoke Version)", - "id": "dtbP_vrw_mw" - }, - { - "title": "Lady Gaga - Marry The Night (Karaoke Version)", - "id": "e4la2-TxoPQ" - }, - { - "title": "Selena Gomez & The Scene - Naturally (Karaoke Version)", - "id": "RpNlk3k0b0Q" - }, - { - "title": "NLE Choppa ft. Roddy Ricch - Walk 'Em Down (Karaoke Version)", - "id": "eIKo7dooxe0" - }, - { - "title": "Sara Bareilles - Gravity (Karaoke Version)", - "id": "dQuzZXLWVqU" - }, - { - "title": "Ariana Grande - pov (Karaoke Version)", - "id": "S9FqT5ddiFI" - }, - { - "title": "Ashnikko - Daisy (Karaoke Version)", - "id": "4LbjyKPslWU" - }, - { - "title": "Lil Nas X - HOLIDAY (Karaoke Version)", - "id": "GgQCc_JIVOA" - }, - { - "title": "Griff - Love Is A Compass (Karaoke Version)", - "id": "zRSCaEAeJxg" - }, - { - "title": "Madison Beer - Good In Goodbye (Karaoke Version)", - "id": "rM2YZhBux7w" - }, - { - "title": "Tate McRae - Stupid (Karaoke Version)", - "id": "JafD6bxiXz8" - }, - { - "title": "Rauw Alejandro - Tattoo (Karaoke Version)", - "id": "CzNBYF2tGNs" - }, - { - "title": "CHROMANCE - Wrap Me In Plastic (Karaoke Version)", - "id": "Pt9FG_IpbZg" - }, - { - "title": "Doja Cat - Mooo! (Karaoke Version)", - "id": "UhcMtfvilqo" - }, - { - "title": "Phora ft. Jhenรฉ Aiko - Stars In The Sky (Karaoke Version)", - "id": "iJFM66wRttY" - }, - { - "title": "Saweetie - Tap In (Karaoke Version)", - "id": "9fRmWBX2Mos" - }, - { - "title": "Dua Lipa - Hallucinate (Karaoke Version)", - "id": "NorEzapRCiQ" - }, - { - "title": "Cannons - Fire For You (Karaoke Version)", - "id": "lhLON3fUywU" - }, - { - "title": "Julie and The Phantoms - Flying Solo (Karaoke Version)", - "id": "wVtWM9sT00k" - }, - { - "title": "Christina Perri - Arms (Karaoke Version)", - "id": "8oKjlIz-oFA" - }, - { - "title": "Miley Cyrus - When I Look At You (Karaoke Version)", - "id": "TQ_2f80tE-w" - }, - { - "title": "Julie and The Phantoms - Stand Tall (Karaoke Version)", - "id": "OrPt4S3nSQY" - }, - { - "title": "Julie and The Phantoms - Unsaid Emily (Karaoke Version)", - "id": "iYYOQz8wIWU" - }, - { - "title": "Billie Eilish - Therefore I Am (Karaoke Version)", - "id": "palrVfIjTaw" - }, - { - "title": "Earth, Wind & Fire - September (Karaoke Version)", - "id": "cKRmRYad318" - }, - { - "title": "James Arthur - Impossible (Karaoke Version)", - "id": "7LSsqBLWGq0" - }, - { - "title": "penelope scott - rรคt (Karaoke Version)", - "id": "HymMBjo29FQ" - }, - { - "title": "blackbear, Lauv - if i were u (Karaoke Version)", - "id": "0M8RAAxmnts" - }, - { - "title": "The Weeknd - Save Your Tears (Karaoke Version)", - "id": "n4dG93qt0B8" - }, - { - "title": "IU ft. SUGA - eight (Karaoke Version)", - "id": "sJ07Alrg_M0" - }, - { - "title": "The Fray - How To Save A Life (Karaoke Version)", - "id": "8V6bKykwQug" - }, - { - "title": "Diplo ft. Morgan Wallen - Heartless (Karaoke Version)", - "id": "T9AWDVVad00" - }, - { - "title": "MAX ft. SUGA - Blueberry Eyes (Karaoke Version)", - "id": "DtNAUhIbHXE" - }, - { - "title": "Ricky Martin - Livin' La Vida Loca (Karaoke Version)", - "id": "tOAs-c5jiuQ" - }, - { - "title": "Machine Gun Kelly - Bloody Valentine (Karaoke Version)", - "id": "vEnPGNNgdLg" - }, - { - "title": "BLACKPINK - You Never Know (Karaoke Version)", - "id": "iEtP71Np2nA" - }, - { - "title": "Aya Nakamura - Djadja (Karaoke Version)", - "id": "7OUXBog_dsU" - }, - { - "title": "We The Kingdom - Holy Water (Karaoke Version)", - "id": "rdpRwSRh8g0" - }, - { - "title": "BLACKPINK ft. Cardi B - Bet You Wanna (Karaoke Version)", - "id": "7tilGhvOeeg" - }, - { - "title": "The Neighbourhood - Daddy Issues (Karaoke Version)", - "id": "M5aSLc-3FfY" - }, - { - "title": "James Arthur - Train Wreck (Karaoke Version)", - "id": "fO88Ox-mhDs" - }, - { - "title": "Larray - Canceled (Karaoke Version)", - "id": "v6_ZERH_B34" - }, - { - "title": "Lil Baby & Gunna - Drip Too Hard (Karaoke Version)", - "id": "6ZrpPTXTL04" - }, - { - "title": "Vedo - You Got It (Karaoke Version)", - "id": "JhYhNNW3pSI" - }, - { - "title": "Demi Lovato - Tell Me You Love Me (Karaoke Version)", - "id": "Dn4t2ZG2STo" - }, - { - "title": "girl in red - we fell in love in october (Karaoke Version)", - "id": "p0FFm6WvMDQ" - }, - { - "title": "OneRepublic - Secrets (Karaoke Version)", - "id": "i20isdqjJMY" - }, - { - "title": "Foushรฉe - Deep End (Karaoke Version)", - "id": "4_FtDjnyf3M" - }, - { - "title": "Ariana Grande - 34+35 (Karaoke Version)", - "id": "Yykv6iCQMZY" - }, - { - "title": "Maroon 5 - Love Somebody (Karaoke Version)", - "id": "NT9Am-a8Nsw" - }, - { - "title": "Lady Gaga - Joanne (Piano Version) (Karaoke Version)", - "id": "Oa3h2JV3ZEM" - }, - { - "title": "347aidan - Demons and Monsters (Karaoke Version)", - "id": "bD4lL-Fx_IE" - }, - { - "title": "Katy Perry - E.T (Karaoke Version)", - "id": "Xe1GN7SFMbk" - }, - { - "title": "Madison Beer - Hurts Like Hell (Karaoke Version)", - "id": "dLqohIY5Wo0" - }, - { - "title": "Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version)", - "id": "R2NyRaSoC8U" - }, - { - "title": "Morgan Wallen - Cover Me Up (Karaoke Version)", - "id": "k8-lhen5B0c" - }, - { - "title": "Backstreet Boys - Show Me The Meaning Of Being Lonely (Karaoke Version)", - "id": "D55PJU_AyQs" - }, - { - "title": "5 Seconds Of Summer - Wildflower (Karaoke Version)", - "id": "W34p3ag0qgA" - }, - { - "title": "Tom Walker - Wait For You (Karaoke Version)", - "id": "w5qaM7G1HnQ" - }, - { - "title": "Bill Withers - Lean On Me (Karaoke Version)", - "id": "p84rf4mz0MM" - }, - { - "title": "Matt Redman - 10,000 Reasons (Bless The Lord) (Karaoke Version)", - "id": "vWdqDmjQuaE" - }, - { - "title": "Ne-Yo - Miss Independent (Karaoke Version)", - "id": "hHP_GEZIjTg" - }, - { - "title": "Sista Prod, Powfu, Alec Benjamin, Rxseboy - Eyes Blue Like The Atlantic Part 2 (Karaoke Version)", - "id": "n31fy8f2Xic" - }, - { - "title": "Julie and the Phantoms - Edge Of Great (Karaoke Version)", - "id": "e6slqkrboa4" - }, - { - "title": "Ariana Grande - positions (Karaoke Version)", - "id": "2gmzIHU_714" - }, - { - "title": "Bea Miller - Feel Something (Karaoke Version)", - "id": "eICk1Lz6gH0" - }, - { - "title": "Camp Rock - Too Cool (Karaoke Version)", - "id": "PubMRNXqUD8" - }, - { - "title": "Mario Judah - Die Very Rough (Karaoke Version)", - "id": "fFJPfx5GP0Q" - }, - { - "title": "Lewis Capaldi - Forever (Karaoke Version)", - "id": "0J5cvU7g85k" - }, - { - "title": "Britney Spears - Oops!...I Did It Again (Karaoke Version)", - "id": "OJorUj0JA3w" - }, - { - "title": "BLACKPINK - Lovesick Girls (Karaoke Version)", - "id": "V4WDQmZd2VE" - }, - { - "title": "Amy Winehouse - Love Is A Losing Game (Karaoke Version)", - "id": "r21Eseaa7Jg" - }, - { - "title": "Amy Winehouse - You Know I'm No Good (Karaoke Version)", - "id": "bY82VqRnqu0" - }, - { - "title": "The Cardigans - Lovefool (Karaoke Version)", - "id": "A7gF5FAs6zQ" - }, - { - "title": "Troye Sivan - Easy (Karaoke Version)", - "id": "bIkFUo3_Y1o" - }, - { - "title": "Stellar - Ashes (Karaoke Version)", - "id": "EIyfNOhIQ7s" - }, - { - "title": "Sir Chloe - Michelle (Karaoke Version)", - "id": "50TNx49KNwc" - }, - { - "title": "Brandi Carlile - The Story (Karaoke Version)", - "id": "5Ysa5iyrpZI" - }, - { - "title": "Ariana Grande - Sweetener (Karaoke Version)", - "id": "mc7cOWlwnEY" - }, - { - "title": "Ricky Montgomery - Mr. Loverman (Karaoke Version)", - "id": "dBHbxo_Pmj8" - }, - { - "title": "Everybody Loves An Outlaw - I See Red (Karaoke Version)", - "id": "r7vAruZVl88" - }, - { - "title": "Justin Bieber & benny blanco - Lonely (Karaoke Version)", - "id": "jaWlZ_U-jDc" - }, - { - "title": "Labrinth - Still Don't Know My Name (Karaoke Version)", - "id": "8EB2iwEvE4s" - }, - { - "title": "Ava Max - Take You To Hell (Karaoke Version)", - "id": "doaBIDVKnA0" - }, - { - "title": "Wham! - Wake Me Up Before You Go-Go (Karaoke Version)", - "id": "rGyX_pchRuA" - }, - { - "title": "Miley Cyrus - Can't Be Tamed (Karaoke Version)", - "id": "GDOH8gxPz3I" - }, - { - "title": "Melanie Martinez - The Bakery (Karaoke Version)", - "id": "dSfkj7JZvfw" - }, - { - "title": "Maroon 5 - Nobody's Love (Karaoke Version)", - "id": "8dhWZLv87tw" - }, - { - "title": "Doja Cat - Juicy (Karaoke Version)", - "id": "kfFe_lj9uIU" - }, - { - "title": "Clairo - Sofia (Karaoke Version)", - "id": "jiJ4_-jVHYI" - }, - { - "title": "BANNERS - Someone To You (Karaoke Version)", - "id": "M2xFPhFTu6I" - }, - { - "title": "Hillsong UNITED - Oceans (Where Feet May Fail) (Karaoke Version)", - "id": "RYcjiDrljHI" - }, - { - "title": "Shawn Mendes - Wonder (Karaoke Version)", - "id": "q4g84iGxaNM" - }, - { - "title": "Shakira - Waka Waka (This Time For Africa) (Karaoke Version)", - "id": "DHXrbMX7fPw" - }, - { - "title": "24kGoldn ft. iann dior - Mood (Karaoke Version)", - "id": "Uukz0TWFfEk" - }, - { - "title": "Joji - Sanctuary (Karaoke Version)", - "id": "tJz-K5YBpSA" - }, - { - "title": "Justin Bieber ft. Chance The Rapper - Holy (Karaoke Version)", - "id": "gQt2AJjTXHE" - }, - { - "title": "Claire Rosinkranz - Backyard Boy (Karaoke Version)", - "id": "_owvkxtn6tU" - }, - { - "title": "Carly Pearce, Lee Brice - I Hope You're Happy Now (Karaoke Version)", - "id": "3VP2PkzM_nE" - }, - { - "title": "Sam Smith - Diamonds (Karaoke Version)", - "id": "bIRBzGDdpmU" - }, - { - "title": "Christina Aguilera - Reflection (2020) (Karaoke Version)", - "id": "7SYpPYkLY9Y" - }, - { - "title": "David Archuleta - Crush (Karaoke Version)", - "id": "HXlop0dffyM" - }, - { - "title": "Bร˜RNS - Electric Love (Karaoke Version)", - "id": "9520UyI0KsE" - }, - { - "title": "CARYS - No More (Karaoke Version)", - "id": "xidiyjf94MQ" - }, - { - "title": "Kinneret - No Wind Resistance! (Karaoke Version)", - "id": "8MeClO8-stI" - }, - { - "title": "Rihanna - S&M (Karaoke Version)", - "id": "-yPwm5ZjmjQ" - }, - { - "title": "Jorja Smith - By Any Means (Karaoke Version)", - "id": "Qcr3xGQAtzM" - }, - { - "title": "JVKE - Upside Down (Karaoke Version)", - "id": "IV4XKzW67uU" - }, - { - "title": "Candi Staton - Nights On Broadway (Karaoke Version)", - "id": "-f2wo_2aM14" - }, - { - "title": "Metro Station - Shake It (Karaoke Version)", - "id": "Uziq2tKy67I" - }, - { - "title": "CMTEN - NEVER MET! (Karaoke Version)", - "id": "hCU_wjR9hZA" - }, - { - "title": "Morgan Wallen - Whiskey Glasses (Karaoke Version)", - "id": "MOu_g-vHhks" - }, - { - "title": "Ritt Momney - Put Your Records On (Karaoke Version)", - "id": "wVvVrFLssTQ" - }, - { - "title": "Maddie & Tae - Die From A Broken Heart (Karaoke Version)", - "id": "v-7LU8YA6BI" - }, - { - "title": "Boys Like Girls, Taylor Swift - Two Is Better Than One (Karaoke Version)", - "id": "2h60KkVm3HA" - }, - { - "title": "The Neighbourhood - Sweater Weather (Karaoke Version)", - "id": "0k91tvnkmMc" - }, - { - "title": "WONHO - Losing You (Karaoke Version)", - "id": "eeiB3nt7KwQ" - }, - { - "title": "Stephanie Mabey - The Zombie Song (Karaoke Version)", - "id": "A7ftOYzRLcw" - }, - { - "title": "Christina Aguilera - Reflection (Karaoke Version)", - "id": "xr_iai07tes" - }, - { - "title": "Christina Aguilera - Genie In A Bottle (Karaoke Version)", - "id": "Bwnm6wCyFHc" - }, - { - "title": "FINNEAS - What They'll Say About Us (Karaoke Version)", - "id": "BhJYQVplrkI" - }, - { - "title": "Peach Tree Rascals - Mariposa (Karaoke Version)", - "id": "v69miE-fjaw" - }, - { - "title": "Little Mix - Holiday (Karaoke Version)", - "id": "dq4snYpo1Ic" - }, - { - "title": "Miley Cyrus - Midnight Sky (Karaoke Version)", - "id": "UPgvgTgrVvk" - }, - { - "title": "HONNE - no song without you (Karaoke Version)", - "id": "FdmospOE3Jo" - }, - { - "title": "Ronan Keating - When You Say Nothing At All (Karaoke Version)", - "id": "p8p0z_w0Juk" - }, - { - "title": "Fleetwood Mac - Landslide (Karaoke Version)", - "id": "GjaVueSGx20" - }, - { - "title": "Salem Ilese - Mad At Disney (Karaoke Version)", - "id": "GOFxPxTQUvY" - }, - { - "title": "Ashe - Save Myself (Karaoke Version)", - "id": "ttT6Uv79NNM" - }, - { - "title": "avenue beat - F2020 (Karaoke Version)", - "id": "6cLG11_ZA6o" - }, - { - "title": "Ava Max - Who's Laughing Now (Karaoke Version)", - "id": "k0kXvS1il-o" - }, - { - "title": "Jxdn - Angels & Demons (Karaoke Version)", - "id": "VmD76frueXw" - }, - { - "title": "Lil Xxel - LMK (Karaoke Version)", - "id": "fegULDqE9GM" - }, - { - "title": "BLACKPINK, Selena Gomez - Ice Cream (Karaoke Version)", - "id": "N7kV59gpJjg" - }, - { - "title": "Camp Rock - Gotta Find You (Karaoke Version)", - "id": "fUOc4noynmc" - }, - { - "title": "BTS - Dynamite (Karaoke Version)", - "id": "V9aFf48jLPQ" - }, - { - "title": "Camp Rock - This Is Me (Karaoke Version)", - "id": "e1Uv3rBykpg" - }, - { - "title": "Juice WRLD & The Weeknd - Smile (Karaoke Version)", - "id": "4Ijt0bN9xYA" - }, - { - "title": "Dan + Shay - I Should Probably Go To Bed (Karaoke Version)", - "id": "4sRdfZMYU-M" - }, - { - "title": "My Chemical Romance - Welcome To The Black Parade (Karaoke Version)", - "id": "EkJ2NL6xpcc" - }, - { - "title": "Fleetwood Mac - Dreams (Karaoke Version)", - "id": "RpvbNiC6u_4" - }, - { - "title": "Tate McRae - you broke me first (Karaoke Version)", - "id": "Fi_otrpQbm0" - }, - { - "title": "Royal & The Serpent - Overwhelmed (Karaoke Version)", - "id": "qfqzXWf6_4g" - }, - { - "title": "Lana Del Rey - Happiness Is A Butterfly (Karaoke Version)", - "id": "QzWG-Vc9yo4" - }, - { - "title": "3 Doors Down - Here Without You (Karaoke Version)", - "id": "OzmFgCQftmc" - }, - { - "title": "The Irrepressibles - In This Shirt (Karaoke Version)", - "id": "NaN_z-BArCE" - }, - { - "title": "Michael Andrews and Gary Jules - Mad World (Karaoke Version)", - "id": "WpjyAZtKd2U" - }, - { - "title": "Jordan Suaste - Body (Karaoke Version)", - "id": "LDf-njt77AY" - }, - { - "title": "Nessa Barrett - Pain (Karaoke Version)", - "id": "LMoBpF6UlOI" - }, - { - "title": "Billie Eilish - my future (Karaoke Version)", - "id": "RQmoQuPL8hY" - }, - { - "title": "Taylor Swift - cardigan (Karaoke Version)", - "id": "LSiVDLhdxjk" - }, - { - "title": "Camp Rock - Who Will I Be (Karaoke Version)", - "id": "P6tMjbZ9jfs" - }, - { - "title": "Lady Gaga - Paparazzi (Karaoke Version)", - "id": "IfJC9vb6p30" - }, - { - "title": "Alessandra De Rossi, Paolo Contis - I Will Be Here (Karaoke Version)", - "id": "rG_K0wVvpao" - }, - { - "title": "Conan Gray - Heather (Karaoke Version)", - "id": "WwUYq7kr9dU" - }, - { - "title": "Curtis Waters ft. Harm Franklin - Stunnin' (Karaoke Version)", - "id": "bYu5srElLlw" - }, - { - "title": "Alexander 23 - IDK You Yet (Karaoke Version)", - "id": "mTfbXgSEzE8" - }, - { - "title": "grandson - Blood // Water (Karaoke Version)", - "id": "Wl4lAz72RmU" - }, - { - "title": "Fergie - Big Girls Don't Cry (Personal) (Karaoke Version)", - "id": "qQRRTH-1VN8" - }, - { - "title": "Zoe Wees - Control (Karaoke Version)", - "id": "TqxB27tRTL8" - }, - { - "title": "Sarah Geronimo - Kiss Me Kiss Me (Karaoke Version)", - "id": "HTTBkyWZFzg" - }, - { - "title": "Michele Morrone - Hard For Me (Karaoke Version)", - "id": "76qpwPuaqIY" - }, - { - "title": "Anna Hamilton - Bad Liar (Karaoke Version)", - "id": "ODRET_WOuAU" - }, - { - "title": "Kelsea Ballerini - homecoming queen? (Karaoke Version)", - "id": "6aB6kkOOsDs" - }, - { - "title": "BLACKPINK - How You Like That (Karaoke Version)", - "id": "9F3bo-bu07s" - }, - { - "title": "*NSYNC - This I Promise You (Karaoke Version)", - "id": "yFeX4dRdi_o" - }, - { - "title": "Dixie D'Amelio - Be Happy (Karaoke Version)", - "id": "telmJIBjbGg" - }, - { - "title": "BTS - Stay Gold (Karaoke Version)", - "id": "djEvsJGVkI8" - }, - { - "title": "Jason Derulo & Jawsh 685 - Savage Love (Karaoke Version)", - "id": "FZnZxA7M9rA" - }, - { - "title": "Rod Wave - Heart On Ice (Karaoke Version)", - "id": "iXvN-PcbWwA" - }, - { - "title": "Ali Gatie - Running On My Mind (Karaoke Version)", - "id": "s2JetLwj3-U" - }, - { - "title": "Anna Clendening - Boys Like You (Acoustic) (Karaoke Version)", - "id": "D62Pc92QkpA" - }, - { - "title": "Lord Huron - The Night We Met (Karaoke Version)", - "id": "Qut44K6sINs" - }, - { - "title": "Savage Garden - I Knew I Loved You (Karaoke Version)", - "id": "7dT3YDGoJJ4" - }, - { - "title": "5 Seconds Of Summer - Ghost Of You (Karaoke Version)", - "id": "K6uh7tCLpbg" - }, - { - "title": "Britney Spears - Sometimes (Karaoke Version)", - "id": "Z3r9X3_37LQ" - }, - { - "title": "Wallows feat. Clairo - Are You Bored Yet? (Karaoke Version)", - "id": "466j_lb7bMs" - }, - { - "title": "Kodaline - All I Want (Karaoke Version)", - "id": "peWxP-B0rJE" - }, - { - "title": "Mandy Moore - Only Hope (Karaoke Version)", - "id": "arpSSvad-Uk" - }, - { - "title": "Ellise - 911 (Karaoke Version)", - "id": "3ZffbUtgzjc" - }, - { - "title": "Gracie Abrams - I miss you, I'm sorry (Karaoke Version)", - "id": "bCdTEH6OQBc" - }, - { - "title": "Ingrid Andress - More Hearts Than Mine (Karaoke Version)", - "id": "aiol2tb4uAc" - }, - { - "title": "Ysabelle - I Like You So Much, You'll Know It (Karaoke Version)", - "id": "wHrs4LjdKw4" - }, - { - "title": "Weird Genius ft. Sara Fajira - Lathi (Karaoke Version)", - "id": "k6qLc9iD1cI" - }, - { - "title": "Jesse McCartney - Beautiful Soul (Karaoke Version)", - "id": "tfy2VidpjYU" - }, - { - "title": "Lauv, Troye Sivan - i'm so tired... (Karaoke Version)", - "id": "fuJi7FoGSio" - }, - { - "title": "David Guetta ft. Usher - Without You (Karaoke Version)", - "id": "b5MY6rVwqeo" - }, - { - "title": "Maximillian - Beautiful Scars (Karaoke Version)", - "id": "mWnkEM2p4HY" - }, - { - "title": "Lauv - Never Not (Karaoke Version)", - "id": "FMwiliVzutQ" - }, - { - "title": "Topic, A7S - Breaking Me (Karaoke Version)", - "id": "NzokKiTxfnA" - }, - { - "title": "Marshmello, Halsey - Be Kind (Karaoke Version)", - "id": "BuBPUduKOw0" - }, - { - "title": "Sam Fischer - This City (Karaoke Version)", - "id": "HbcTxD1PnJw" - }, - { - "title": "$uicideBoy$ - ...And To Those I Love, Thanks For Sticking Around (Karaoke Version)", - "id": "ceu-tt3cZ3k" - }, - { - "title": "Katy Perry - Daisies (Karaoke Version)", - "id": "d6UJJcoMaYA" - }, - { - "title": "Jorja Smith - Don't Watch Me Cry (Karaoke Version)", - "id": "CyQhPvaC-gw" - }, - { - "title": "Dusty Springfield - Son Of A Preacher Man (Karaoke Version)", - "id": "43Bl7QsebHo" - }, - { - "title": "Zombies 2 - Flesh & Bone (Karaoke Version)", - "id": "ZQ9FSJPeuFM" - }, - { - "title": "4 Non Blondes - What's Up (Karaoke Version)", - "id": "oLShwvZopls" - }, - { - "title": "One Direction - One Thing (Karaoke Version)", - "id": "K23X9sfz_Jk" - }, - { - "title": "Backstreet Boys - Shape Of My Heart (Karaoke Version)", - "id": "XcuFrz5S5Gw" - }, - { - "title": "Tate McRae - That Way (Karaoke Version)", - "id": "muwbCi5roa8" - }, - { - "title": "Lady Gaga & BLACKPINK - Sour Candy (Karaoke Version)", - "id": "zJKkDP9QIi0" - }, - { - "title": "Zombies 2 - Call To The Wild (Karaoke Version)", - "id": "u1CvO6dL0BU" - }, - { - "title": "Sam Smith, Demi Lovato - I'm Ready (Karaoke Version)", - "id": "P_xRlueXsu8" - }, - { - "title": "Hailee Steinfeld - I Love You's (Karaoke Version)", - "id": "4VlkUxqL_So" - }, - { - "title": "Lewis Capaldi - Lost On You (Karaoke Version)", - "id": "8v9pFbX0Pfs" - }, - { - "title": "Megan Thee Stallion - Savage (Karaoke Version)", - "id": "vJvPK1jYgHI" - }, - { - "title": "Lady Gaga & Ariana Grande - Rain On Me (Karaoke Version)", - "id": "xddl6B_QZ5Y" - }, - { - "title": "Tate McRae - Dear Parents (Karaoke Version)", - "id": "Ts_wrleVqvQ" - }, - { - "title": "Brandi Carlile - The Joke (Karaoke Version)", - "id": "U-GZ7ccdLOM" - }, - { - "title": "MAX ft. gnash - Lights Down Low (Karaoke Version)", - "id": "DLjXt0c01Ng" - }, - { - "title": "One Direction - Night Changes (Karaoke Version)", - "id": "kH9_meN7WqQ" - }, - { - "title": "FINNEAS - Break My Heart Again (Karaoke Version)", - "id": "pDPacquHrCE" - }, - { - "title": "Lewis Capaldi - One (Karaoke Version)", - "id": "77JtLVNt7Zs" - }, - { - "title": "Aviva - Princesses Don't Cry (Karaoke Version)", - "id": "w_uIqbcTkt8" - }, - { - "title": "Luke Combs - Even Though I'm Leaving (Karaoke Version)", - "id": "qY4B6BYzAXQ" - }, - { - "title": "Blake Shelton with Gwen Stefani - Nobody But You (Karaoke Version)", - "id": "GCkSxPy-1tE" - }, - { - "title": "StaySolidRocky - Party Girl (Karaoke Version)", - "id": "UYfzTy3ELAQ" - }, - { - "title": "Zombies 2 - We Got This (Karaoke Version)", - "id": "mbPB3rs9_TE" - }, - { - "title": "Ariana Grande & Justin Bieber - Stuck with U (Karaoke Version)", - "id": "IdruQKij6P4" - }, - { - "title": "twenty one pilots - Level Of Concern (Karaoke Version)", - "id": "p9ms_vG6e6I" - }, - { - "title": "Ariana Grande - My Everything (Karaoke Version)", - "id": "Zk4QsyEDphk" - }, - { - "title": "Ariana Grande - Moonlight (Karaoke Version)", - "id": "E12qDSPoQwk" - }, - { - "title": "Ava Max - Kings & Queens (Karaoke Version)", - "id": "BlpAh1A8PHI" - }, - { - "title": "The Weeknd - In Your Eyes (Karaoke Version)", - "id": "FrnMqc4pqQo" - }, - { - "title": "Zombies 2 - Gotta Find Where I Belong (Karaoke Version)", - "id": "976UK6h2xrQ" - }, - { - "title": "Zombies 2 - Like The Zombies Do (Karaoke Version)", - "id": "MtmGigox0rA" - }, - { - "title": "Jeremy Zucker - always, i'll care (Karaoke Version)", - "id": "XjBKOyI-lOY" - }, - { - "title": "Surf Mesa - ily (Karaoke Version)", - "id": "XpD7EPb5kHU" - }, - { - "title": "Drake - Toosie Slide (Karaoke Version)", - "id": "iY_4jm6Z97g" - }, - { - "title": "Zombies 2 - We Own The Night (Karaoke Version)", - "id": "2nG4WFnyDlE" - }, - { - "title": "Sub Urban ft. REI AMI - Freak (Karaoke Version)", - "id": "dj8iG9GkNGg" - }, - { - "title": "DripReport - Skechers (Karaoke Version)", - "id": "AQG3h3uYw0k" - }, - { - "title": "Riverdale - Mad World (Karaoke Version)", - "id": "OKSgEzfWoCo" - }, - { - "title": "Cookiee Kawaii - Vibe (Karaoke Version)", - "id": "FYmjVZbxbJ8" - }, - { - "title": "Billie Eilish - Six Feet Under (Karaoke Version)", - "id": "mbdrN6f1j6o" - }, - { - "title": "GRLwood - I'm Yer Dad (Karaoke Version)", - "id": "aE36jBab8VU" - }, - { - "title": "Freya Ridings - Blackout (Karaoke Version)", - "id": "msTHlwnmbQk" - }, - { - "title": "Tate McRae - One Day (Karaoke Version)", - "id": "oT1FQTSuhTM" - }, - { - "title": "Natalie Taylor - Surrender (Karaoke Version)", - "id": "aQUITsd0NV8" - }, - { - "title": "Juice WRLD - Righteous (Karaoke Version)", - "id": "TnAY41wAYNk" - }, - { - "title": "Gabby Barrett - I Hope (Karaoke Version)", - "id": "fhqnRiuuP5E" - }, - { - "title": "OneRepublic - Stop And Stare (Karaoke Version)", - "id": "i2RjSLEMj60" - }, - { - "title": "Dua Lipa - Break My Heart (Karaoke Version)", - "id": "Sb2GhD-wGtM" - }, - { - "title": "Jessie Reyez - FIGURES (Karaoke Version)", - "id": "MmKRqsrWZ5o" - }, - { - "title": "Jeremy Zucker - scared (Karaoke Version)", - "id": "lJ9lO9iRj6M" - }, - { - "title": "Lizzo - Juice (Karaoke Version)", - "id": "VmRvV3GIluU" - }, - { - "title": "24kGoldn - CITY OF ANGELS (Karaoke Version)", - "id": "57dMSFH0KMw" - }, - { - "title": "One Direction - What Makes You Beautiful (Karaoke Version)", - "id": "SLrJwiLsa9A" - }, - { - "title": "Powfu ft. beabadoobee - death bed (Karaoke Version)", - "id": "RzzC5rew5jE" - }, - { - "title": "Keane - Everybody's Changing (Karaoke Version)", - "id": "OZD6H9SGIB8" - }, - { - "title": "Madison Beer - Selfish (Karaoke Version)", - "id": "Tk76EDFgDvY" - }, - { - "title": "Keane - Somewhere Only We Know (Karaoke Version)", - "id": "l5shwZTwHec" - }, - { - "title": "Anne-Marie - Her (Karaoke Version)", - "id": "g3a14E6_Hlo" - }, - { - "title": "Bazzi - Renรฉe's Song (Karaoke Version)", - "id": "DLR8zu7aHDM" - }, - { - "title": "Queen - I Want It All (Karaoke Version)", - "id": "bkLh27na7Kc" - }, - { - "title": "Maren Morris - The Bones (Karaoke Version)", - "id": "t14cTDMKPw4" - }, - { - "title": "HSMTMTS - Born To Be Brave (Karaoke Version)", - "id": "MFvo302RcI8" - }, - { - "title": "HSMTMTS - Just For A Moment (Karaoke Version)", - "id": "NXWHemYlbfg" - }, - { - "title": "MASN - Psycho! (Karaoke Version)", - "id": "D1DdVAY2EGs" - }, - { - "title": "R.E.M. - It's The End Of The World As We Know It (And I Feel Fine) (Karaoke Version)", - "id": "oxxpyTw8U2U" - }, - { - "title": "Demi Lovato - I Love Me (Karaoke Version)", - "id": "3TLmBNUL_cA" - }, - { - "title": "Sarah McLachlan - Angel (Karaoke Version)", - "id": "U9z9CJVjfYA" - }, - { - "title": "Kenny Rogers - The Gambler (Karaoke Version)", - "id": "2szJYvdUglk" - }, - { - "title": "Little Mix - Break Up Song (Karaoke Version)", - "id": "S9eBE1VsISY" - }, - { - "title": "Backstreet Boys - As Long As You Love Me (Karaoke Version)", - "id": "vTk4dPkUNeg" - }, - { - "title": "Katy Perry - Waking Up In Vegas (Karaoke Version)", - "id": "eDUiYL6Mr54" - }, - { - "title": "Lady Gaga - Stupid Love (Karaoke Version)", - "id": "MmGmwn09LdU" - }, - { - "title": "Sing King's SING ALONG - 1 Hour Of Non Stop Karaoke!", - "id": "0yhP-R5Q5ok" - }, - { - "title": "R.E.M. - Everybody Hurts (Karaoke Version)", - "id": "Nyn4MreKIk4" - }, - { - "title": "HSMTMTS - Breaking Free (Karaoke Version)", - "id": "GVtyZlmWMGc" - }, - { - "title": "One Direction - Story Of My Life (Karaoke Version)", - "id": "LTj11cPudyw" - }, - { - "title": "Post Malone - Hollywood's Bleeding (Karaoke Version)", - "id": "y3hYZJnyN2Y" - }, - { - "title": "The Weeknd - After Hours (Karaoke Version)", - "id": "u_uNxT1bIh8" - }, - { - "title": "Lil Uzi Vert - That Way (Karaoke Version)", - "id": "136MUGbUe60" - }, - { - "title": "Dua Lipa - Homesick (Karaoke Version)", - "id": "rButbqDqAe8" - }, - { - "title": "Breland - My Truck (Karaoke Version)", - "id": "zSPwK2EFp0M" - }, - { - "title": "Elina - Another Round (Karaoke Version)", - "id": "eOk5HzVhe8g" - }, - { - "title": "V - Sweet Night (Karaoke Version)", - "id": "F6PzaxH_TaA" - }, - { - "title": "Jonas Brothers - I Believe (Karaoke Version)", - "id": "BnC1Y2dwuOk" - }, - { - "title": "Lil Mosey - Blueberry Faygo (Karaoke Version)", - "id": "vLdICfIIumI" - }, - { - "title": "John K - if we never met (Karaoke Version)", - "id": "Tp4ZmcXqiIM" - }, - { - "title": "Justin Bieber ft. Post Malone & Clever - Forever (Karaoke Version)", - "id": "1ndQ9XAqomM" - }, - { - "title": "BENEE - Supalonely ft. Gus Dapperton (Karaoke Version)", - "id": "qRUVtrhhhQE" - }, - { - "title": "Lauv, LANY - Mean It (Karaoke Version)", - "id": "P5C6bLyzN3s" - }, - { - "title": "Chris Brown ft. Gunna - Heat (Karaoke Version)", - "id": "OqoICpRNg9U" - }, - { - "title": "Jeremy Zucker, Chelsea Cutler - you were good to me (Karaoke Version)", - "id": "-JH_xJffSBU" - }, - { - "title": "Doja Cat - Candy (Karaoke Version)", - "id": "yHX782lZfMs" - }, - { - "title": "Joshua Bassett, Olivia Rodrigo - I Think I Kinda, You Know (Karaoke Version)", - "id": "ou_MZcmegRk" - }, - { - "title": "Frozen 2 - When I Am Older (Karaoke Version)", - "id": "-yukAvBxOrQ" - }, - { - "title": "Trevor Daniel - Past Life (Karaoke Version)", - "id": "7om12uqEO4A" - }, - { - "title": "Niall Horan - No Judgement (Karaoke Version)", - "id": "SRXTSa-_DvQ" - }, - { - "title": "Alec Benjamin - Water Fountain (Karaoke Version)", - "id": "uUqZyQ9JQNY" - }, - { - "title": "Lauv - Who feat. BTS (Karaoke Version)", - "id": "8Lei6uJZydM" - }, - { - "title": "Anne-Marie - BIRTHDAY (Karaoke Version)", - "id": "MzWPiG8l1VU" - }, - { - "title": "Katy Perry - Never Worn White (Karaoke Version)", - "id": "y-ooXDPfDy0" - }, - { - "title": "P!nk, Chris Stapleton - Love Me Anyway (Karaoke Version)", - "id": "tR9eNnXA9EA" - }, - { - "title": "Jonas Brothers - What A Man Gotta Do (Karaoke Version)", - "id": "fL7qK5ynYGg" - }, - { - "title": "Joshua Bassett - When There Was Me And You (Karaoke Version)", - "id": "J6jCor0h8v0" - }, - { - "title": "Kesha - Cannibal (Karaoke Version)", - "id": "9NGCbjKh1R0" - }, - { - "title": "Frozen 2 - The Next Right Thing (Karaoke Version)", - "id": "Qm1sD8Y4954" - }, - { - "title": "Troy & Gabriella - What I've Been Looking For (Karaoke Version)", - "id": "VGNUm-ttsNE" - }, - { - "title": "Baby Ariel - The New Kid In Town from \"Zombies 2\" (Karaoke Version)", - "id": "VaBUu7VEycM" - }, - { - "title": "Justin Bieber ft. Quavo - Intentions (Karaoke Version)", - "id": "QfHbuJW59EE" - }, - { - "title": "Hoobastank - The Reason (Karaoke Version)", - "id": "Mk5JYEFcGnU" - }, - { - "title": "Ashe - Moral Of The Story (Karaoke Version)", - "id": "xp1bRW9nSvM" - }, - { - "title": "Halsey - You should be sad (Karaoke Version)", - "id": "4fZSkwpMopI" - }, - { - "title": "Camila Cabello - First Man (Karaoke Version)", - "id": "rq98wWr9pFM" - }, - { - "title": "Ali Gatie - What If I Told You That I Love You (Karaoke Version)", - "id": "gPVNI42Xlkw" - }, - { - "title": "for KING & COUNTRY - burn the ships (Karaoke Version)", - "id": "Skn2J1m1FKA" - }, - { - "title": "Summer Walker, Bryson Tiller - Playing Games (Karaoke Version)", - "id": "iA2K4iMP4fE" - }, - { - "title": "Carly Rae Jepsen - Call Me Maybe (Karaoke Version)", - "id": "qG520Uw8lUA" - }, - { - "title": "Olivia Rodrigo, Matt Cornett - What I've Been Looking For (Karaoke Version)", - "id": "OAtXbf1nGjs" - }, - { - "title": "Anson Seabra - Welcome To Wonderland (Karaoke Version)", - "id": "We5SKLMAYCc" - }, - { - "title": "Dua Lipa - Physical (Karaoke Version)", - "id": "4-qga7NLOJA" - }, - { - "title": "Post Malone - I Fall Apart (Karaoke Version)", - "id": "eilM4YHBrS0" - }, - { - "title": "Taylor Swift - Only The Young (Karaoke Version)", - "id": "--Tiine2TlM" - }, - { - "title": "Olivia Rodrigo - Start Of Something New (Karaoke Version)", - "id": "VzyZ6jJCvEY" - }, - { - "title": "Trevor Daniel - Falling (Karaoke Version)", - "id": "Q7Moarwc_I8" - }, - { - "title": "Frozen 2 - Some Things Never Change (Karaoke Version)", - "id": "mnD7nbTjZ6U" - }, - { - "title": "Katy Perry - Firework (Karaoke Version)", - "id": "KUKyy4r-BO4" - }, - { - "title": "Sam Smith - To Die For (Karaoke Version)", - "id": "6xro-Lm4sn8" - }, - { - "title": "Tones and I - Never Seen The Rain (Karaoke Version)", - "id": "0n2XhLPbPMQ" - }, - { - "title": "Arizona Zervas - FML (Karaoke Version)", - "id": "i2ORSLY9CLI" - }, - { - "title": "Kane Brown ft. Lauren Alaina - What Ifs (Karaoke Version)", - "id": "OndurWrYr1Y" - }, - { - "title": "Billie Eilish - No Time To Die (Karaoke Version)", - "id": "ioqGmaBHUrk" - }, - { - "title": "Melanie Martinez ft. Tierra Whack - Copy Cat (Karaoke Version)", - "id": "ZWYsKav2-NM" - }, - { - "title": "Bill Withers - Ain't No Sunshine (Karaoke Version)", - "id": "zvjhSC9_tjA" - }, - { - "title": "Doja Cat - Say So (Karaoke Version)", - "id": "qAI3zlwn6_I" - }, - { - "title": "XXXTENTACION - Hope (Karaoke Version)", - "id": "zxVI2zMc72Q" - }, - { - "title": "Staind - It's Been Awhile (Karaoke Version)", - "id": "fMMCdBJS_Bs" - }, - { - "title": "Conan Gray - Maniac (Karaoke Version)", - "id": "obhqw5DdhXY" - }, - { - "title": "Timbaland, OneRepublic - Apologize (Karaoke Version)", - "id": "U7CQKbusBi4" - }, - { - "title": "Ava Max - Salt (Karaoke Version)", - "id": "ToCA0Blmd2U" - }, - { - "title": "YNW Melly - Suicidal (Karaoke Version)", - "id": "H63tNSi0US4" - }, - { - "title": "Luke Combs - Beautiful Crazy (Karaoke Version)", - "id": "2EqbICF1O88" - }, - { - "title": "Lauv - Changes (Karaoke Version)", - "id": "kbCFQrCCdNk" - }, - { - "title": "Selena Gomez - Dance Again (Karaoke Version)", - "id": "voEqotbqmvI" - }, - { - "title": "Surfaces - Sunday Best (Karaoke Version)", - "id": "UktjRa86VE8" - }, - { - "title": "High School Musical - When There Was Me And You (Karaoke Version)", - "id": "6CGF3NHPuyg" - }, - { - "title": "Halsey - I HATE EVERYBODY (Karaoke Version)", - "id": "LdiU9n6vlP8" - }, - { - "title": "Lewis Capaldi - Before You Go (Karaoke Version)", - "id": "5_3hSGhcuo0" - }, - { - "title": "Demi Lovato - Anyone (Karaoke Version)", - "id": "IrijEHSdDC4" - }, - { - "title": "Cavetown - This Is Home (Karaoke Version)", - "id": "JRkJlxO4qhM" - }, - { - "title": "Roddy Ricch - The Box (Karaoke Version)", - "id": "TKVEaCmS0Zw" - }, - { - "title": "Noah Cyrus - Lonely (Karaoke Version)", - "id": "ETsFmFZz208" - }, - { - "title": "Camila Cabello - My Oh My ft. DaBaby (Karaoke Version)", - "id": "Lzx957gyc8A" - }, - { - "title": "Katy Perry - Wide Awake (Karaoke Version)", - "id": "r1nkyeH96Lk" - }, - { - "title": "Selena Gomez - Rare (Karaoke Version)", - "id": "2HGRRqUDOOk" - }, - { - "title": "Old Dominion - One Man Band (Karaoke Version)", - "id": "XU1Sts_K3ns" - }, - { - "title": "Matt Cornett - A Billion Sorrys (Karaoke Version)", - "id": "I3pWfsOfTtU" - }, - { - "title": "Hailee Steinfeld - Wrong Direction (Karaoke Version)", - "id": "mib93OpvqY0" - }, - { - "title": "Matthew Wilder - Break My Stride (Karaoke Version)", - "id": "t6biBJh2AAs" - }, - { - "title": "PUBLIC - Make You Mine (Karaoke Version)", - "id": "lzJPgXEnXiQ" - }, - { - "title": "Olivia Rodrigo, Julia Lester (HSMTMTS) - Wondering (Karaoke Version)", - "id": "lsRGOImIsAU" - }, - { - "title": "Harry Styles - Adore You (Karaoke Version)", - "id": "XL24DbgCWgQ" - }, - { - "title": "The Weeknd - Blinding Lights (Karaoke Version)", - "id": "Cj4hcXZs3Lc" - }, - { - "title": "Frozen 2 - Lost In The Woods (Karaoke Version)", - "id": "C_JjU5QGQQs" - }, - { - "title": "Lady Antebellum - What If I Never Get Over You (Karaoke Version)", - "id": "JF2GJj_GaKI" - }, - { - "title": "Stevie Wonder - Lately (Karaoke Version)", - "id": "8jHxIZUF1lw" - }, - { - "title": "Rihanna - Hate That I Love You ft. Ne-Yo (Karaoke Version)", - "id": "6UYBrCmALcs" - }, - { - "title": "Daniel Bedingfield - If You're Not The One (Karaoke Version)", - "id": "Z1fEmiHYgCU" - }, - { - "title": "Little Big Town - Better Man (Karaoke Version)", - "id": "OZzvW_6nKOI" - }, - { - "title": "Justin Bieber - Yummy (Karaoke Version)", - "id": "NxQYcM0Kw2Q" - }, - { - "title": "Olivia Rodrigo - All I Want (Karaoke Version)", - "id": "DqqsTljY3PA" - }, - { - "title": "Sub Urban - Cradles (Karaoke Version)", - "id": "SkvLj4WENkI" - }, - { - "title": "iann dior, Trippie Redd - gone girl (Karaoke Version)", - "id": "drEzuXi8mT0" - }, - { - "title": "Harry Styles - Watermelon Sugar (Karaoke Version)", - "id": "OQzT1OASwPU" - }, - { - "title": "Kacey Musgraves - All Is Found (Karaoke Version)", - "id": "zIKtbGu4tHU" - }, - { - "title": "One Direction - Everything About You (Karaoke Version)", - "id": "tweEp6lj8Kk" - }, - { - "title": "Frozen 2 - Show Yourself (Karaoke Version)", - "id": "zGqZZQablfY" - }, - { - "title": "Gloria Gaynor - I Will Survive (Karaoke Version)", - "id": "FsUa8P-L2Ag" - }, - { - "title": "Whitney Houston - Didn't We Almost Have It All (Karaoke Version)", - "id": "16MeABER5xg" - }, - { - "title": "The Beatles - In My Life (Karaoke Version)", - "id": "IS7ESPZn7do" - }, - { - "title": "Whitney Houston - One Moment In Time (Karaoke Version)", - "id": "TPl0fZ5lK20" - }, - { - "title": "Deep Blue Something - Breakfast At Tiffany's (Karaoke Version)", - "id": "E62KRZGRo4o" - }, - { - "title": "Lionel Richie & Diana Ross - Endless Love (Karaoke Version)", - "id": "yYgFs1_BUV0" - }, - { - "title": "INXS - Never Tear Us Apart (Karaoke Version)", - "id": "-DAdiVbDMFQ" - }, - { - "title": "Rod Stewart - I Don't Want To Talk About It (Karaoke Version)", - "id": "BdReRY0VIRg" - }, - { - "title": "The Righteous Brothers - Unchained Melody (Karaoke Version)", - "id": "dqIzep89HBw" - }, - { - "title": "Lionel Richie - Hello (Karaoke Version)", - "id": "uixkkqOQoD0" - }, - { - "title": "Berlin - Take My Breath Away (Karaoke Version)", - "id": "uIMabU0PIKU" - }, - { - "title": "Christmas Carols - Away In A Manger (Karaoke Version)", - "id": "dq34Clq3QKY" - }, - { - "title": "The Champs - Tequila (Karaoke Version)", - "id": "1Y77BelxUQY" - }, - { - "title": "Katy Perry - Cozy Little Christmas (Karaoke Version)", - "id": "ezhb6uUMRTc" - }, - { - "title": "One Direction - I Want (Karaoke Version)", - "id": "MxmlMePm7fs" - }, - { - "title": "Frank Sinatra - That's Life (Karaoke Version)", - "id": "b22bqScoWZE" - }, - { - "title": "Ben E. King - Stand By Me (Karaoke Version)", - "id": "OU3699R53rs" - }, - { - "title": "Christmas Carols - We Wish You A Merry Christmas (Karaoke Version)", - "id": "6UcWuv1dwlU" - }, - { - "title": "Harry Styles - Falling (Karaoke Version)", - "id": "x5J8uwuVBKs" - }, - { - "title": "LoveLeo - BOYFREN (Karaoke Version)", - "id": "4XdwLORfj1o" - }, - { - "title": "Neil Diamond - Sweet Caroline (Karaoke Version)", - "id": "srLoAl1mhFw" - }, - { - "title": "Sean Kingston - Beautiful Girls (Karaoke Version)", - "id": "S_BNb0R7iX4" - }, - { - "title": "The Beatles - Twist And Shout (Karaoke Version)", - "id": "GLm3ZryQxYg" - }, - { - "title": "Christmas Carols - Silent Night (Karaoke Version)", - "id": "i_WCFUGCv6M" - }, - { - "title": "REO Speedwagon - Can't Fight This Feeling (Karaoke Version)", - "id": "8pE1h4D9iro" - }, - { - "title": "Elvis Presley - Suspicious Minds (Karaoke Version)", - "id": "Z6Zr01BfjBM" - }, - { - "title": "Whitney Houston - Run To You (Karaoke Version)", - "id": "Fus6jCD8VqA" - }, - { - "title": "Queen - Too Much Love Will Kill You (Karaoke Version)", - "id": "h9iHDVEkBYE" - }, - { - "title": "Olivia Rodrigo, Julia Lester - Wondering (Ashlyn & Nini Piano Version", - "id": "HSMTMTS) (Karaoke Version)" - }, - { - "title": "One Direction - Gotta Be You (Karaoke Version)", - "id": "rvRqiCzBDZA" - }, - { - "title": "Frozen 2 - All Is Found (Karaoke Version)", - "id": "KxZoKkjTSys" - }, - { - "title": "Taylor Swift - Christmas Tree Farm (Karaoke Version)", - "id": "Sing King Karaoke" - }, - { - "title": "Rihanna - Russian Roulette (Karaoke Version)", - "id": "xNRXuxrHrrk" - }, - { - "title": "blackbear - hot girl bummer (Karaoke Version)", - "id": "X99Eh9K-8II" - }, - { - "title": "Queen - The Show Must Go On (Karaoke Version)", - "id": "C2TTXCXUAaI" - }, - { - "title": "P!nk - A Million Dreams (Karaoke Version)", - "id": "Sing King Karaoke" - }, - { - "title": "Sugarland - Stay (Karaoke Version)", - "id": "HibqmaLvNjs" - }, - { - "title": "Christmas Songs - Do You Hear What I Hear (Karaoke Version)", - "id": "jHRS9ybQpg4" - }, - { - "title": "Whitney Houston (With Mariah Carey) - When You Believe (Karaoke Version)", - "id": "bHrUsofyXFk" - }, - { - "title": "The Weeknd - Heartless (Karaoke Version)", - "id": "YzYeCLUD1NM" - }, - { - "title": "Little Mix - One I've Been Missing (Karaoke Version)", - "id": "ikVcDoy_9UI" - }, - { - "title": "Air Supply - All Out Of Love (Karaoke Version)", - "id": "FBQeaKYmZtA" - }, - { - "title": "Arizona Zervas - Roxanne (Karaoke Version)", - "id": "CRZ8DjDfnEE" - }, - { - "title": "Noah Cyrus - July (Karaoke Version)", - "id": "D3QokilFBpw" - }, - { - "title": "The Ronettes - Sleigh Ride (Karaoke Version)", - "id": "zwBag5vE6XY" - }, - { - "title": "Camila Cabello - Living Proof (Karaoke Version)", - "id": "nlKHe2Ts0lY" - }, - { - "title": "Lady Gaga - Poker Face (Karaoke Version)", - "id": "kTu2QPghqZU" - }, - { - "title": "Lukas Graham - HERE (For Christmas) (Karaoke Version)", - "id": "3zlhC2AombY" - }, - { - "title": "Jonas Brothers - Like It's Christmas (Karaoke Version)", - "id": "VlFVFTNcz9A" - }, - { - "title": "Ali Gatie - Moonlight (Karaoke Version)", - "id": "BGSld7oUEWo" - }, - { - "title": "Tracy Chapman - Fast Car (Karaoke Version)", - "id": "Wm6-X6yPHVI" - }, - { - "title": "JP Saxe - If The World Was Ending ft. Julia Michaels (Karaoke Version)", - "id": "kRV8K6ApYu0" - }, - { - "title": "The Beatles - Yellow Submarine (Karaoke Version)", - "id": "zvDMgPt5Bxo" - }, - { - "title": "Commodores - Easy (Karaoke Version)", - "id": "iU8ZofhzVb4" - }, - { - "title": "Jona Lewie - Stop The Cavalry (Karaoke Version)", - "id": "3vb17d86fCs" - }, - { - "title": "Spandau Ballet - True (Karaoke Version)", - "id": "9b9wK_V98N4" - }, - { - "title": "Lionel Richie - All Night Long (All Night) (Karaoke Version)", - "id": "y1ZnaCAb-y8" - }, - { - "title": "Frozen 2 - Into The Unknown (Karaoke Version)", - "id": "9rnQFsbDa3o" - }, - { - "title": "George Ezra - Shotgun (Karaoke Version)", - "id": "_J9po90y8es" - }, - { - "title": "Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version)", - "id": "DaHLqP-CTac" - }, - { - "title": "Alessia Cara - Make It To Christmas (Karaoke Version)", - "id": "fYEKliA02vg" - }, - { - "title": "Ant Saunders - Yellow Hearts (Karaoke Version)", - "id": "IuvTnwVhBlg" - }, - { - "title": "Idina Menzel & Michael Bublรฉ - Baby It's Cold Outside (Karaoke Version)", - "id": "te5_kvfz82c" - }, - { - "title": "peter kuli & jedwill - ok boomer (Karaoke Version)", - "id": "RMmwZIJ3uqk" - }, - { - "title": "Taylor Swift - Beautiful Ghosts (Karaoke Version)", - "id": "tnU5FVhE7d4" - }, - { - "title": "Selena Gomez - Look At Her Now (Karaoke Version)", - "id": "rnbQoVsiu2g" - }, - { - "title": "Carrie Underwood - O Holy Night (Karaoke Version)", - "id": "6cJlBXccEAM" - }, - { - "title": "Camila Cabello - Cry For Me (Karaoke Version)", - "id": "oP1VsNFS5aI" - }, - { - "title": "Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version)", - "id": "s1rgRFVUIJQ" - }, - { - "title": "Extreme - More Than Words (Karaoke Version)", - "id": "lT-3Es67dPs" - }, - { - "title": "Hozier - Take Me To Church (Karaoke Version)", - "id": "2bb67GtsI80" - }, - { - "title": "NLE Choppa ft. Blueface - Shotta Flow (Remix) (Karaoke Version)", - "id": "hbFLCA3K-tc" - }, - { - "title": "Robbie Williams - Angels (Karaoke Version)", - "id": "pGFEj-Dv3-0" - }, - { - "title": "Ariana Grande, Normani, Nicki Minaj - Bad To You (from \"Charlie's Angels\") (Karaoke Version)", - "id": "NjFqEymOxOs" - }, - { - "title": "The Crystals - Rudolph The Red-Nosed Reindeer (Karaoke Version)", - "id": "oulyteAIDPU" - }, - { - "title": "Kina ft. Adriana Proenza - Can We Kiss Forever? (Karaoke Version)", - "id": "KFahZd4vVtk" - }, - { - "title": "Lil Mayo - Be Gone Thot! (Karaoke Version)", - "id": "SuCg7ZUe8F0" - }, - { - "title": "The Crystals - Santa Claus Is Comin' To Town (Karaoke Version)", - "id": "1_gLpOJWHC0" - }, - { - "title": "Panic! At The Disco - Into The Unknown (Karaoke Version)", - "id": "fZHHfJuGU-E" - }, - { - "title": "Sia - Snowman (Karaoke Version)", - "id": "WWu83Z4pqss" - }, - { - "title": "Lady A - The First Noรซl (Karaoke Version)", - "id": "R6RCCNdGu30" - }, - { - "title": "Michael Bublรฉ - It's Beginning To Look A Lot Like Christmas (Karaoke Version)", - "id": "vuNP7Y42wgg" - }, - { - "title": "Ariana Grande - Last Christmas (Karaoke Version)", - "id": "r9ucN2tSnDE" - }, - { - "title": "Whitney Houston - Saving All My Love For You (Karaoke Version)", - "id": "KTxLR8GOUt4" - }, - { - "title": "Bebe Rexha - You Can't Stop The Girl (Karaoke Version)", - "id": "uEX4Z4lHS0c" - }, - { - "title": "Bazzi - I.F.L.Y (Karaoke Version)", - "id": "WG3x0Ofe1K0" - }, - { - "title": "Billie Eilish - everything i wanted (Karaoke Version)", - "id": "0J_z7RjLZfo" - }, - { - "title": "Kylie Minogue - Santa Baby (Karaoke Version)", - "id": "tyN3301wYQ0" - }, - { - "title": "Frank Sinatra - My Way (Karaoke Version)", - "id": "tAEek8nO11c" - }, - { - "title": "Judy Garland - Have Yourself A Merry Little Christmas (Karaoke Version)", - "id": "nRKhtWWUZjw" - }, - { - "title": "Ashnikko ft. Yung Baby Tate - STUPID (Karaoke Version)", - "id": "b69Sov59Lvo" - }, - { - "title": "Amy Grant - Winter Wonderland (Karaoke Version)", - "id": "u8PBsrnzGU4" - }, - { - "title": "Mariah Carey - O Holy Night (Karaoke Version)", - "id": "9zYS2GVCWRM" - }, - { - "title": "Harry Styles - Lights Up (Karaoke Version)", - "id": "Oo0PGau7Utk" - }, - { - "title": "Michael Bublรฉ - Holly Jolly Christmas (Karaoke Version)", - "id": "0Lkr7R8LBmo" - }, - { - "title": "Ariana Grande - Santa Tell Me (Karaoke Version)", - "id": "QzFDehvDcdU" - }, - { - "title": "John Lennon - Imagine (Karaoke Version)", - "id": "MR70Dg0_o1A" - }, - { - "title": "Camila Cabello - Easy (Karaoke Version)", - "id": "qsazv1M6-6I" - }, - { - "title": "DJ Jazzy Jeff & The Fresh Prince - The Fresh Prince Of Bel-Air (Karaoke Version)", - "id": "z0VQIRZ9xSk" - }, - { - "title": "Chris Stapleton - Tennessee Whiskey (Karaoke Version)", - "id": "DVxVXBpi7vc" - }, - { - "title": "Dua Lipa - Don't Start Now (Karaoke Version)", - "id": "jIMJQsBwsWg" - }, - { - "title": "The Beatles - Help! (Karaoke Version)", - "id": "K-vyxJj88Jc" - }, - { - "title": "Heart - Alone (Karaoke Version)", - "id": "zAbT9dr1R30" - }, - { - "title": "Dan + Shay - Speechless (Karaoke Version)", - "id": "QvEhGdkGehE" - }, - { - "title": "Frank Sinatra - Fly Me To The Moon (Karaoke Version)", - "id": "VvjWl7lvrnk" - }, - { - "title": "Kane Brown - Heaven (Karaoke Version)", - "id": "KRU8GuWAzkE" - }, - { - "title": "Alexandra Burke - Hallelujah (Karaoke Version)", - "id": "e3C8Nh3DIwA" - }, - { - "title": "Halsey - Clementine (Karaoke Version)", - "id": "iZJ2WnpnUcI" - }, - { - "title": "Travis Scott - HIGHEST IN THE ROOM (Karaoke Version)", - "id": "O2tQp8O91X4" - }, - { - "title": "Catie Turner - Prom Queen (Karaoke Version)", - "id": "r2vP_7btUHA" - }, - { - "title": "The Beatles - Come Together (Karaoke Version)", - "id": "D9gA8erVrcY" - }, - { - "title": "Selena Gomez - Lose You To Love Me (Karaoke Version)", - "id": "0oOAClzjL5Y" - }, - { - "title": "The Beatles - Blackbird (Karaoke Version)", - "id": "aeyxufMtcOY" - }, - { - "title": "Luke Bryan - Knockin' Boots (Karaoke Version)", - "id": "-HgxYnvguFw" - }, - { - "title": "China Anne McClain - Calling All The Monsters (Karaoke Version)", - "id": "K7y0oTROSJM" - }, - { - "title": "Nina Simone - I Put A Spell On You (Karaoke Version)", - "id": "8KeLyWdfC-A" - }, - { - "title": "The Living Tombstone - Spooky, Scary Skeletons (Karaoke Version)", - "id": "ZLd6IcDA1qE" - }, - { - "title": "Ray Parker Jr. - Ghostbusters (Karaoke Version)", - "id": "c5BjapvUndQ" - }, - { - "title": "Blue ร–yster Cult - (Don't Fear) The Reaper (Karaoke Version)", - "id": "vLwboi5VkMU" - }, - { - "title": "Alice Cooper - Poison (Karaoke Version)", - "id": "uaK8FLttCzc" - }, - { - "title": "Cartoons - Witch Doctor (Ooh Eeh Ooh Ah Aah Ting Tang Walla Walla Bing Bang) (Karaoke Version)", - "id": "YKHzMvXdDM8" - }, - { - "title": "Patsy Cline - Crazy (Karaoke Version)", - "id": "7Qj3rb4dJsM" - }, - { - "title": "Duran Duran - Hungry Like The Wolf (Karaoke Version)", - "id": "GmzRIaRCo_M" - }, - { - "title": "Radiohead - Creep (Karaoke Version)", - "id": "3WLy3AblvmQ" - }, - { - "title": "The Beatles - Yesterday (Karaoke Version)", - "id": "uw3zzQ-5g4o" - }, - { - "title": "Ali Gatie - Used To You (Karaoke Version)", - "id": "zW7VS-vySBM" - }, - { - "title": "Lauren Daigle - Rescue (Karaoke Version)", - "id": "NSrVn6PfAtU" - }, - { - "title": "Stevie Wonder - Superstition (Karaoke Version)", - "id": "7kWhaDjtY5A" - }, - { - "title": "Shakira - Underneath Your Clothes (Karaoke Version)", - "id": "0ih6b17zRM0" - }, - { - "title": "P!nk - Who Knew (Karaoke Version)", - "id": "F1RcHsV_7s8" - }, - { - "title": "Dan + Shay, Justin Bieber - 10,000 Hours (Karaoke Version)", - "id": "XVG-jODTeyQ" - }, - { - "title": "Miley Cyrus & Billy Ray Cyrus - Butterfly Fly Away (Karaoke Version)", - "id": "hCT4IsJ3pQI" - }, - { - "title": "Rihanna - Unfaithful (Karaoke Version)", - "id": "bhUe11gw23I" - }, - { - "title": "Sia - Rainbow (Karaoke Version)", - "id": "m-2IC9RdTQw" - }, - { - "title": "Bobby \"Boris\" Pickett - Monster Mash (Karaoke Version)", - "id": "-fVgl9-Zx3k" - }, - { - "title": "Bad Wolves - Zombie (Karaoke Version)", - "id": "1rLOrijkrNs" - }, - { - "title": "Cรฉline Dion - Because You Loved Me (Karaoke Version)", - "id": "sPu9jduC1HI" - }, - { - "title": "Dolly Parton - 9 To 5 (Karaoke Version)", - "id": "OqQz92Od-HU" - }, - { - "title": "Labrinth - Jealous (Karaoke Version)", - "id": "uVAt8WqEJhE" - }, - { - "title": "Lonestar - Amazed (Karaoke Version)", - "id": "HHigjZSmsSs" - }, - { - "title": "Daniel Caesar ft. Kali Uchis - Get You (Karaoke Version)", - "id": "PenQd3Bhusk" - }, - { - "title": "The Band Perry - If I Die Young (Karaoke Version)", - "id": "O19c8OMCykY" - }, - { - "title": "John Legend - Ordinary People (Karaoke Version)", - "id": "I93Xg1aZFEQ" - }, - { - "title": "Carrie Underwood - Before He Cheats (Karaoke Version)", - "id": "AqYrOoZpsjg" - }, - { - "title": "Melanie Martinez - Teacher's Pet (Karaoke Version)", - "id": "fHUcBRL1D2I" - }, - { - "title": "Johnny Cash - Ring Of Fire (Karaoke Version)", - "id": "ei-VpgPozgQ" - }, - { - "title": "Melanie Martinez - Detention (Karaoke Version)", - "id": "J66WV9OlN8c" - }, - { - "title": "Maroon 5 - Memories (Karaoke Version)", - "id": "KSr0TJH5m-Q" - }, - { - "title": "The Beatles - Hey Jude (Karaoke Version)", - "id": "enmHYsoCMkQ" - }, - { - "title": "The Beatles - I Want To Hold Your Hand (Karaoke Version)", - "id": "byhOlv1UvBQ" - }, - { - "title": "The Beatles - Here Comes The Sun (Karaoke Version)", - "id": "ElW8dK1POA4" - }, - { - "title": "Melanie Martinez - Strawberry Shortcake (Karaoke Version)", - "id": "okPNNs3Xow8" - }, - { - "title": "V (BTS) - Winter Bear (Piano Version)", - "id": "Kya8huDfjcI" - }, - { - "title": "Melanie Martinez - Fire Drill (Karaoke Version)", - "id": "IEkU7GFBhT0" - }, - { - "title": "Melanie Martinez - Orange Juice (Karaoke Version)", - "id": "sibriJbzZQM" - }, - { - "title": "TONES & I - DANCE MONKEY (Karaoke Version)", - "id": "an0JKXnnrAY" - }, - { - "title": "The Beatles - Let It Be (Karaoke Version)", - "id": "OhRUYf_yn_s" - }, - { - "title": "Lady Antebellum - Just A Kiss (Karaoke Version)", - "id": "wonXEIuEuIA" - }, - { - "title": "Richard Marx - Right Here Waiting (Karaoke Version)", - "id": "jZ8o_ZGt9QY" - }, - { - "title": "The Cranberries - Zombie (Karaoke Version)", - "id": "m8CEEkqQiiY" - }, - { - "title": "Billy Ray Cyrus - Achy Breaky Heart (Karaoke Version)", - "id": "HisAayo4Dio" - }, - { - "title": "Lewis Capaldi - Bruises (Karaoke Version)", - "id": "sj5nOjRDiZk" - }, - { - "title": "John Denver - Take Me Home, Country Roads (Karaoke Version)", - "id": "7aNW9hRKYA8" - }, - { - "title": "Melanie Martinez - High School Sweethearts (Karaoke Version)", - "id": "gLsgyN5EDVQ" - }, - { - "title": "Labrinth, Zendaya - All For Us (Karaoke Version)", - "id": "CAXwDktQCng" - }, - { - "title": "Melanie Martinez - Drama Club (Karaoke Version)", - "id": "Cz_4Qcu1f6c" - }, - { - "title": "Melanie Martinez - Lunchbox Friends (Karaoke Version)", - "id": "zilK3bl96W4" - }, - { - "title": "Rex Orange County - Loving Is Easy ft. Benny Sings (Karaoke Version)", - "id": "A5j3FkjPomY" - }, - { - "title": "Jeremy Zucker - comethru (Karaoke Version)", - "id": "uTbosVWbteo" - }, - { - "title": "Post Malone - Saint-Tropez (Karaoke Version)", - "id": "-xc-nrZmfkg" - }, - { - "title": "Melanie Martinez - Recess (Karaoke Version)", - "id": "3Cz__Yiutq0" - }, - { - "title": "Taylor Swift - Death By A Thousand Cuts (Karaoke Version)", - "id": "Cf1_XzLVKPU" - }, - { - "title": "Melanie Martinez - Wheels On The Bus (Karaoke Version)", - "id": "r5Rz2G_41ek" - }, - { - "title": "Taylor Swift - Soon You'll Get Better (Karaoke Version) feat. Dixie Chicks", - "id": "x8OawWigxBI" - }, - { - "title": "Mario - Let Me Love You (Karaoke Version)", - "id": "xEwPVphGS70" - }, - { - "title": "Melanie Martinez - The Principal (Karaoke Version)", - "id": "OLqVb3QO_ck" - }, - { - "title": "Taylor Swift - The Man (Karaoke Version)", - "id": "4kkgit7dcJk" - }, - { - "title": "Taylor Swift - Paper Rings (Karaoke Version)", - "id": "1y5xNy3pmtk" - }, - { - "title": "Bazzi - Mine (Karaoke Version)", - "id": "9cIWdpzIN0w" - }, - { - "title": "Charlie Puth - I Warned Myself (Karaoke Version)", - "id": "Eww8-Ky_VNc" - }, - { - "title": "Charlie Puth - I Warned Myself (Karaoke Version with Backing Vocals)", - "id": "Eyumo4hFhcE" - }, - { - "title": "benny blanco, Juice WRLD - Graduation (Karaoke Version)", - "id": "w2WB9X4H3sk" - }, - { - "title": "5 Seconds Of Summer - Teeth (Karaoke Version)", - "id": "ZX2UJRtJiNI" - }, - { - "title": "Melanie Martinez - Class Fight (Karaoke Version)", - "id": "VgC1kpTUjkY" - }, - { - "title": "Megan Thee Stallion - Hot Girl Summer (Karaoke Version) ft. Nicki Minaj, Ty Dolla $ign", - "id": "C05frvnB8m4" - }, - { - "title": "Taylor Swift - Daylight (Karaoke Version)", - "id": "02Hct4xaNfA" - }, - { - "title": "SHAED - Trampoline (Karaoke Version)", - "id": "52S8qO8MDjQ" - }, - { - "title": "Post Malone - Circles (Karaoke Version)", - "id": "hlk6z9nJxGg" - }, - { - "title": "Halsey - Graveyard (Karaoke Version)", - "id": "3RX5b0M3fAI" - }, - { - "title": "Olivia Newton John - Hopelessly Devoted To You from \"Grease\" (Karaoke Version)", - "id": "jF4xOhCdrlo" - }, - { - "title": "Crowded House - Don't Dream It's Over (Karaoke Version)", - "id": "bzg25xhxD0s" - }, - { - "title": "Camila Cabello - Liar (Karaoke Version)", - "id": "6WJ_GheHMZc" - }, - { - "title": "Melanie Martinez - Nurse's Office (Karaoke Version)", - "id": "GsqtDObdxAU" - }, - { - "title": "Ariana Grande, Miley Cyrus, Lana Del Rey - Don't Call Me Angel (Karaoke Version)", - "id": "7HW2-XSeoVg" - }, - { - "title": "Descendants 3 - Good To Be Bad (Karaoke Version)", - "id": "d4K4F2YDDOk" - }, - { - "title": "Descendants 3 - Queen Of Mean (Piano Version)", - "id": "rw9Yi4-5RX8" - }, - { - "title": "Ariana Grande ft. Nathan Sykes - Almost Is Never Enough (Karaoke Version)", - "id": "4G4tntY30Qw" - }, - { - "title": "Daniel Caesar ft. H.E.R. - Best Part (Karaoke Version)", - "id": "otKYi0rYYx8" - }, - { - "title": "Drake ft. Rick Ross - Money In The Grave (Karaoke Version)", - "id": "6b1IqNSWdRY" - }, - { - "title": "Melanie Martinez - Show & Tell (Karaoke Version)", - "id": "yD-nQwYu3pA" - }, - { - "title": "Miley Cyrus - Slide Away (Karaoke Version)", - "id": "zUL3luiUzVE" - }, - { - "title": "Khalid - Right Back ft. A Boogie Wit Da Hoodie (Karaoke Version)", - "id": "WYmdxnw2sWc" - }, - { - "title": "Taylor Swift - It's Nice To Have A Friend (Karaoke Version)", - "id": "nY7Wk1P9YjU" - }, - { - "title": "Roxette - It Must Have Been Love (Karaoke Version)", - "id": "MPc1NApGnQM" - }, - { - "title": "LeAnn Rimes - How Do I Live (Karaoke Version)", - "id": "34xr8xYLYPo" - }, - { - "title": "Train - Drops Of Jupiter (Karaoke Version)", - "id": "68HfJMN5YUQ" - }, - { - "title": "Molly Kate Kestner - Prom Queen (Karaoke Version)", - "id": "BcuDoxTkx_g" - }, - { - "title": "Ava Max - Torn (Karaoke Version)", - "id": "NU9OB1Gv5Qc" - }, - { - "title": "Y2K, bbno$ - Lalala (Karaoke Version)", - "id": "GxAP5FDWl5A" - }, - { - "title": "Natalie Imbruglia - Torn (Karaoke Version)", - "id": "7rmxIEjMNX0" - }, - { - "title": "Taylor Swift - I Forgot That You Existed (Karaoke Version)", - "id": "1Ciudf819wA" - }, - { - "title": "Descendants 3 - Break This Down (Karaoke Version)", - "id": "nqIRN0j-iuI" - }, - { - "title": "Rihanna - Take A Bow (Karaoke Version)", - "id": "femohd7zllQ" - }, - { - "title": "Little Mix - A.D.I.D.A.S (Karaoke Version)", - "id": "wejyFn4GDcs" - }, - { - "title": "Taylor Swift - London Boy (Karaoke Version)", - "id": "buJNHDfiS9U" - }, - { - "title": "Descendants 3 - Do What You Gotta Do (Karaoke Version)", - "id": "tDtdeRHCfGY" - }, - { - "title": "NF - The Search (Karaoke Version)", - "id": "sl0wAxXJChs" - }, - { - "title": "Descendants 3 - My Once Upon A Time (Karaoke Version)", - "id": "NWYWiZLtqA0" - }, - { - "title": "Camila Cabello - Shameless (Karaoke Version)", - "id": "q5fv_CT6MEo" - }, - { - "title": "ZAYN ft. Nicki Minaj - No Candle No Light (Karaoke Version)", - "id": "BC9TJI0qP7k" - }, - { - "title": "Bad Bunny, Drake - Mia (Karaoke Version)", - "id": "r_7Zt4SrB34" - }, - { - "title": "Becky G, Myke Towers - DOLLAR (Karaoke Version)", - "id": "Ls48orWTp3k" - }, - { - "title": "Taylor Swift - Cornelia Street (Karaoke Version)", - "id": "w7oLgnTA1tU" - }, - { - "title": "Lil Tecca - Ransom (Karaoke Version)", - "id": "QzT_NI6Hzl4" - }, - { - "title": "Beach Bunny - Prom Queen (Karaoke Version)", - "id": "oo4WyB9JBGk" - }, - { - "title": "Lana Del Rey - Looking For America (Karaoke Version)", - "id": "kAGdsoH2l3E" - }, - { - "title": "Taylor Swift - Lover (Karaoke Version)", - "id": "n9vQlA7SMjk" - }, - { - "title": "Taylor Swift - Lover (Piano Version)", - "id": "u5j2cl8zDUk" - }, - { - "title": "Taylor Swift - Afterglow (Karaoke Version)", - "id": "GRm6tfEIhDI" - }, - { - "title": "Katy Perry - Small Talk (Karaoke Version)", - "id": "w9oBVnOaKjk" - }, - { - "title": "Lauv, Anne Marie - f*ck, i'm lonely (Karaoke Version)", - "id": "IqqbfCCXG_8" - }, - { - "title": "Taylor Swift - I Think He Knows (Karaoke Version)", - "id": "KAX2wJjOYY0" - }, - { - "title": "Miley Cyrus - Younger Now (Karaoke Version)", - "id": "Fmk4Hsb-A_s" - }, - { - "title": "Major Lazer ft. Ariana Grande - All My Love (Karaoke Version)", - "id": "msqBvKWsf7Q" - }, - { - "title": "Ellie Goulding ft. Juice WRLD - Hate Me (Karaoke Version)", - "id": "XbammamEoZM" - }, - { - "title": "Ali Gatie - It's You (Karaoke Version)", - "id": "QSSbJE6GPGk" - }, - { - "title": "Taylor Swift - False God (Karaoke Version)", - "id": "gyEwq68GCIM" - }, - { - "title": "Fifth Harmony - Me & My Girls (Karaoke Version)", - "id": "79MtlwBg0ik" - }, - { - "title": "Taylor Swift - Miss Americana & The Heartbreak Prince (Karaoke Version)", - "id": "ZVvK0m0aHec" - }, - { - "title": "Normani - Motivation (Karaoke Version)", - "id": "UYqChykmbb0" - }, - { - "title": "Selena Gomez, Marshmello - Wolves (Piano Version)", - "id": "hXASS5ZKrKE" - }, - { - "title": "Taylor Swift - Cruel Summer (Karaoke Version)", - "id": "N2ScieGmSGQ" - }, - { - "title": "UB40 - Red Red Wine (Karaoke Version)", - "id": "clsnqc0v4qY" - }, - { - "title": "Blanco Brown - The Git Up (Karaoke Version)", - "id": "yrG-VAcbCb0" - }, - { - "title": "Ed Sheeran ft. Skrillex - Way To Break My Heart (Karaoke Version)", - "id": "hzhh_zpdvvo" - }, - { - "title": "Descendants 3 - One Kiss (Karaoke Version)", - "id": "YaYiM6xLuCo" - }, - { - "title": "Taylor Swift - White Horse (Karaoke Version)", - "id": "krMVgCUl80s" - }, - { - "title": "Camila Cabello - Never Be The Same (Piano Version)", - "id": "PIP12dDzUDA" - }, - { - "title": "Marshmello & Kane Brown - One Thing Right (Karaoke Version)", - "id": "jxfXf69xRCM" - }, - { - "title": "Rihanna - Stay ft. Mikky Ekko (Karaoke Version)", - "id": "bhGqtMsp0-w" - }, - { - "title": "Jonas Brothers - Only Human (Karaoke Version)", - "id": "7ot2SDdPISA" - }, - { - "title": "Taylor Swift - You're Not Sorry (Karaoke Version)", - "id": "hrGJbnoByAA" - }, - { - "title": "V (BTS) - Winter Bear (Karaoke Version)", - "id": "V1jsX0Z3Zms" - }, - { - "title": "Taylor Swift - The Story Of Us (Karaoke Version)", - "id": "ENjvYNv_I58" - }, - { - "title": "Ed Sheeran ft. Travis Scott- Antisocial (Karaoke Version)", - "id": "hbiNQnvinbo" - }, - { - "title": "Taylor Swift - Ours (Karaoke Version)", - "id": "ompZ8VLgjts" - }, - { - "title": "Taylor Swift - Gorgeous (Piano Version)", - "id": "qE8lNvXnaCQ" - }, - { - "title": "Ariana Grande, Social House - boyfriend (Karaoke Version)", - "id": "9fmy-Ud3_Tw" - }, - { - "title": "Descendants 3 - Night Falls (Karaoke Version)", - "id": "hCvAn9BtCvE" - }, - { - "title": "Descendants 3 - Queen Of Mean (Karaoke Version)", - "id": "BRWpIbuGa1M" - }, - { - "title": "Sam Smith - Too Good At Goodbyes (Piano Version)", - "id": "D7_8HFYctas" - }, - { - "title": "Taylor Swift - Mine (POP Mix) (Karaoke Version)", - "id": "-h2hna4fpbA" - }, - { - "title": "Dean Lewis - 7 Minutes (Karaoke Version)", - "id": "tUxJnCIwyL0" - }, - { - "title": "City Girls - Act Up (Karaoke Version)", - "id": "jrZNeq0TOHg" - }, - { - "title": "a-ha - Take On Me (Karaoke Version)", - "id": "bC4ER15Hj10" - }, - { - "title": "Alan Walker - Darkside feat. Au/Ra, Tomine Harket (Karaoke Version)", - "id": "VQjhpQBw8pA" - }, - { - "title": "P!nk - What About Us (Piano Version)", - "id": "Jkg4CUq7gj4" - }, - { - "title": "Cardi B, Bad Bunny & J Balvin - I Like It (Karaoke Version)", - "id": "tPWU56optms" - }, - { - "title": "Tom Walker - Leave A Light On (Karaoke Version)", - "id": "1Ozq7W2gy7k" - }, - { - "title": "Kesha - We R Who We R (Karaoke Version)", - "id": "XAomeDeqN0I" - }, - { - "title": "Eric Carmen - Hungry Eyes (Karaoke Version)", - "id": "-izZYpzLTzI" - }, - { - "title": "Tears For Fears - Everybody Wants To Rule The World (Karaoke Version)", - "id": "OBzl83j-8IE" - }, - { - "title": "Sofia Reyes ft. Rita Ora, Anitta - R.I.P. (Karaoke Version)", - "id": "MI-h3-Br0LM" - }, - { - "title": "Ed Sheeran ft. 50 Cent & Eminem - Remember The Name (Karaoke Version)", - "id": "gjLQu644Fz8" - }, - { - "title": "Gabbie Hanna - Medicate (Karaoke Version)", - "id": "GYPT4UtfBjQ" - }, - { - "title": "DJ Snake - Taki Taki ft. Selena Gomez, Ozuna, Cardi B (Karaoke Version)", - "id": "QAiDXelc9-I" - }, - { - "title": "Imagine Dragons ft. Elisa - Birds (Karaoke Version)", - "id": "Mjc9QjIrlb4" - }, - { - "title": "Queen - Another One Bites The Dust (Karaoke Version)", - "id": "u7b3v7055gU" - }, - { - "title": "Simple Minds - Don't You (Forget About Me) (Karaoke Version)", - "id": "OozUwqWbXzc" - }, - { - "title": "CaptainSparklez - Revenge (Minecraft Parody) (Karaoke Version)", - "id": "PvkXaU9SuNs" - }, - { - "title": "Alec Benjamin - Let Me Down Slowly (Karaoke Version)", - "id": "249FPTZ_J3c" - }, - { - "title": "Ed Sheeran - Perfect (Piano Karaoke)", - "id": "NFNGAVVmXZs" - }, - { - "title": "Billie Eilish - Bored (Karaoke Version)", - "id": "5yWgec4Drwc" - }, - { - "title": "Ed Sheeran - South Of The Border (feat. Camila Cabello & Cardi B) (Karaoke Version)", - "id": "7lW2uwxuCLI" - }, - { - "title": "Cher - If I Could Turn Back Time (Karaoke Version)", - "id": "yBwqQxVXt1o" - }, - { - "title": "Why Don't We - Trust Fund Baby (Karaoke Version)", - "id": "UFxp9yklnHA" - }, - { - "title": "Cardi B - Money (Karaoke Version)", - "id": "W32wsXy3JJQ" - }, - { - "title": "Chris Brown ft. Drake - No Guidance (Karaoke Version)", - "id": "NAH3IYHp770" - }, - { - "title": "Daddy Yankee & Snow - Con Calma (Karaoke Version)", - "id": "WOHxOEcE_jU" - }, - { - "title": "Lauv - I Like Me Better (Karaoke Version)", - "id": "kVg3L1FvgZw" - }, - { - "title": "Melanie Martinez - Toxic (Karaoke Version)", - "id": "UQMtNEu-E3M" - }, - { - "title": "Sam Smith - How Do You Sleep? (Piano Version)", - "id": "ZdmXls_ENVo" - }, - { - "title": "Mabel - Don't Call Me Up (Karaoke Version)", - "id": "hO9feFj3F8M" - }, - { - "title": "Lil Nas X, Cardi B - Rodeo (Karaoke Version)", - "id": "CHxcL_EXa3Q" - }, - { - "title": "Toto - Africa (Karaoke Version)", - "id": "CRrZlEF7-SU" - }, - { - "title": "The Chainsmokers, Bebe Rexha - Call You Mine (Karaoke Version)", - "id": "jiipJz78VD8" - }, - { - "title": "Katy Perry - Who Am I Living For? (Karaoke Version)", - "id": "WX2Zp0XK0G4" - }, - { - "title": "Selena Gomez - Love You Like A Love Song (Karaoke Version)", - "id": "t_4bSwL7-8w" - }, - { - "title": "Sam Smith - How Do You Sleep? (Karaoke Version)", - "id": "LVOPKlPgKLw" - }, - { - "title": "Taylor Swift - The Archer (Karaoke Version)", - "id": "dKbxxkWlXjE" - }, - { - "title": "Limahl - Never Ending Story (Karaoke Version)", - "id": "OLL1YGO8ZzY" - }, - { - "title": "Panic! At The Disco - Girls / Girls / Boys (Karaoke Version)", - "id": "kXaKroziqzM" - }, - { - "title": "Alan Walker, K-391 and Emelie Hollow - Lily (Karaoke Version)", - "id": "-5-Gxfuie4A" - }, - { - "title": "Gaten Matarazzo, Gabriella Pizzolo - The NeverEnding Story (Karaoke Version) from \"Stranger Things\"", - "id": "xxguzGJQMY0" - }, - { - "title": "Ed Sheeran ft. Ella Mai - Put It All On Me (Karaoke Version)", - "id": "WbIpVLsCWQ4" - }, - { - "title": "Freya Ridings - Castles (Karaoke Version)", - "id": "eC--YZUafss" - }, - { - "title": "Katy Perry - Not Like The Movies (Karaoke Version)", - "id": "5jFHyzQA7yY" - }, - { - "title": "Alesso, TINI - Sad Song (Karaoke Version)", - "id": "ARBJv24WtHs" - }, - { - "title": "Billie Eilish - my boy (Karaoke Version)", - "id": "xYVlHJx2F5o" - }, - { - "title": "P!nk ft Wrabel - 90 Days (Karaoke Version)", - "id": "P1lZyb3ooh8" - }, - { - "title": "Machine Gun Kelly, YUNGBLUD, Travis Barker - I Think I'm OKAY (Karaoke Version)", - "id": "m-Yy4RAC8Kg" - }, - { - "title": "Beyoncรฉ - Spirit from Disney's \"The Lion King\" (Karaoke Version)", - "id": "CyTdO8B3xNc" - }, - { - "title": "Billie Eilish - party favor (Karaoke Version)", - "id": "uTkswjK1CiA" - }, - { - "title": "Naomi Scott - Speechless (Piano Version)", - "id": "QdSsCcRFfw8" - }, - { - "title": "Post Malone ft. Young Thug - Goodbyes (Karaoke Version)", - "id": "M8Bh3kacMAA" - }, - { - "title": "Ed Sheeran ft. YEBBA - Best Part Of Me (Karaoke Version)", - "id": "Ld2_DnYJiGg" - }, - { - "title": "Aladdin - Friend Like Me (Karaoke Version)", - "id": "kHPI6562b7Q" - }, - { - "title": "Alessia Cara - Out Of Love (Karaoke Version)", - "id": "orCaFpnXIVk" - }, - { - "title": "BTS - Lights (Karaoke Version)", - "id": "YFVKrqLHPzo" - }, - { - "title": "George Michael - Freedom! '90 (Karaoke Version)", - "id": "9hr0BVlqo94" - }, - { - "title": "Zara Larsson - Don't Worry Bout Me (Karaoke Version)", - "id": "IPTrk6ZHHoY" - }, - { - "title": "Carly Rae Jepsen - Too Much (Karaoke Version)", - "id": "lZ9ZUrgMnOA" - }, - { - "title": "Lana Del Rey - Doin' Time (Karaoke Version)", - "id": "coeEwriNEdw" - }, - { - "title": "Billie Eilish, Vince Staples - &burn (Karaoke Version)", - "id": "zyn8ft1jBT4" - }, - { - "title": "Jonas Blue ft. Theresa Rex - What I Like About You (Karaoke Version)", - "id": "olNGLHKj9_c" - }, - { - "title": "Little Mix - Bounce Back (Karaoke Version)", - "id": "5i_6Klkekak" - }, - { - "title": "Billie Eilish - watch (Karaoke Version)", - "id": "ZPfvjEkbb4w" - }, - { - "title": "Ashley O - On A Roll (Karaoke Version)", - "id": "F7SxTlAuv5Q" - }, - { - "title": "Shawn Mendes, Camila Cabello - Seรฑorita (Piano Version)", - "id": "x5r0cYNU9No" - }, - { - "title": "Ed Sheeran feat. Khalid - Beautiful People (Karaoke Version)", - "id": "dDHBbzdes8k" - }, - { - "title": "Zedd, Maren Morris, Grey - The Middle (Karaoke Version)", - "id": "E60j9v-ODLQ" - }, - { - "title": "Billie Eilish - COPYCAT (Karaoke Version)", - "id": "wYScPDqj7dU" - }, - { - "title": "Freddie Mercury - Time Waits For No One (Karaoke Version)", - "id": "Obsplk2Oxzc" - }, - { - "title": "Spice Girls - 2 Become 1 (Karaoke Version)", - "id": "AImB9oMjumc" - }, - { - "title": "BTS, Zara Larsson - A Brand New Day (Karaoke Version)", - "id": "k1p3Brnvk3s" - }, - { - "title": "Shawn Mendes, Camila Cabello - Seรฑorita (Karaoke Version)", - "id": "kC8jBnooHgs" - }, - { - "title": "Miley Cyrus - Mother's Daughter (Karaoke Version)", - "id": "siQH7qA7zvg" - }, - { - "title": "mxmtoon - Prom Dress (Karaoke Version)", - "id": "7BS4cavay2I" - }, - { - "title": "Katy Perry - Never Really Over (Karaoke Version)", - "id": "0HXlJO2bb-s" - }, - { - "title": "The Greatest Showman - Rewrite The Stars (Piano Version)", - "id": "q5zz2QhThmE" - }, - { - "title": "Demi Lovato ft. Cher Lloyd - Really Don't Care (Karaoke Version)", - "id": "F7TUimZrlGQ" - }, - { - "title": "Cher - Believe (Karaoke Version)", - "id": "n24s-klOW0c" - }, - { - "title": "Katy Perry - I Kissed A Girl (Karaoke Version)", - "id": "2Qq0hEUmnRY" - }, - { - "title": "Spice Girls - Wannabe (Karaoke Version)", - "id": "BTDPZQGqjY8" - }, - { - "title": "Taylor Dayne - Tell It To My Heart (Karaoke Version)", - "id": "A3wF9EMTNvM" - }, - { - "title": "Cyndi Lauper - Girls Just Want To Have Fun (Karaoke Version)", - "id": "-Fg7m1ZqkxI" - }, - { - "title": "Charli XCX ft. Lizzo - Blame It On Your Love (Karaoke Version)", - "id": "dKXbO31RmiU" - }, - { - "title": "BTS, Charli XCX - Dream Glow (Karaoke Version)", - "id": "NAwua29GOi0" - }, - { - "title": "Cyndi Lauper - True Colors (Karaoke Version)", - "id": "LQLxMTKJux0" - }, - { - "title": "Taylor Swift - You Need To Calm Down (Karaoke Version)", - "id": "to-S78ftZHI" - }, - { - "title": "Clean Bandit feat. Ellie Goulding - Mama (Karaoke Version)", - "id": "TK57e-i_v0c" - }, - { - "title": "Diana Ross - I'm Coming Out (Karaoke Version)", - "id": "SAwx-A0snUQ" - }, - { - "title": "Lady Gaga - Born This Way (Karaoke Version)", - "id": "NatvhO5ihAk" - }, - { - "title": "Britney Spears - Toxic (Karaoke Version)", - "id": "prgoLEZTit0" - }, - { - "title": "Lizzo - Truth Hurts (Karaoke Version)", - "id": "4Dn9d9Shqsg" - }, - { - "title": "James Arthur - Falling Like The Stars (Karaoke Version)", - "id": "187jnOhMOOU" - }, - { - "title": "Lauren Daigle - You Say (Karaoke Version)", - "id": "EgU_KyzoMZg" - }, - { - "title": "Ed Sheeran - Cross Me feat. Chance The Rapper & PnB Rock (Karaoke Version)", - "id": "BdDEhk3RP3I" - }, - { - "title": "Sabrina Carpenter - Exhale (Karaoke Version)", - "id": "_TwLBSeIlkM" - }, - { - "title": "5 Seconds Of Summer - Easier (Karaoke Version)", - "id": "QHnY2RlUDAc" - }, - { - "title": "ZAYN, Zhavia Ward - A Whole New World (Piano Version)", - "id": "Ujm3LnNqVvE" - }, - { - "title": "Why Don't We - Unbelievable (Karaoke Version)", - "id": "48JZWH3C9Qc" - }, - { - "title": "Ruel - Painkiller (Karaoke Version)", - "id": "GjHYNA1-W3A" - }, - { - "title": "Madison Beer - Dear Society (Karaoke Version)", - "id": "C07BcreJMsY" - }, - { - "title": "Mena Massoud, Naomi Scott - A Whole New World (Karaoke Version)", - "id": "4hwpLK7CWVM" - }, - { - "title": "Billie Eilish - i love you (Piano Version)", - "id": "l4vicxPeA3c" - }, - { - "title": "Queen - Love Of My Life (Karaoke Version)", - "id": "rGTHC4I_JPk" - }, - { - "title": "Naomi Scott - Speechless (Karaoke Version)", - "id": "wqE5j1TQWVs" - }, - { - "title": "Clairo - Pretty Girl (Karaoke Version)", - "id": "gXZgFNFzhls" - }, - { - "title": "Lil Dicky - Earth (Karaoke Version)", - "id": "DeSk10qUEiQ" - }, - { - "title": "The Greatest Showman - Never Enough (Piano Version)", - "id": "O61upKFDL9I" - }, - { - "title": "Queen - Radio Ga Ga (Karaoke Version)", - "id": "DKTs8sLLdc0" - }, - { - "title": "Ellie Goulding - Sixteen (Karaoke Version)", - "id": "Aqf3pV6Vb8s" - }, - { - "title": "Billie Eilish - WHEN WE ALL FALL ASLEEP, WHERE DO WE GO? (Full Album Karaoke)", - "id": "-DR5vxR78qI" - }, - { - "title": "Taylor Swift - Love Story (Piano Version)", - "id": "jQe37boEHkQ" - }, - { - "title": "Billie Eilish - i love you (Karaoke Version)", - "id": "PTmcRmDyJlY" - }, - { - "title": "HRVY - Told You So (Karaoke Version)", - "id": "7WTHUMRkPDI" - }, - { - "title": "ZAYN, Zhavia Ward - A Whole New World (Karaoke Version)", - "id": "OfwnWaFP_bc" - }, - { - "title": "Ariana Grande - make up (Karaoke Version)", - "id": "vn4yQJGyUfw" - }, - { - "title": "Lil Baby, GUNNA - Close Friends (Karaoke Version)", - "id": "cpZyeJ5ZiWY" - }, - { - "title": "Halsey - Nightmare (Karaoke Version)", - "id": "6iHo98p2RDc" - }, - { - "title": "The Chainsmokers - Do You Mean ft. Ty Dolla $ign, bรผlow (Karaoke Version)", - "id": "gWBEtVoX3K0" - }, - { - "title": "Billie Eilish - goodbye (Karaoke Version)", - "id": "n3RvVXmUtik" - }, - { - "title": "Kehlani ft. Ty Dolla $ign - Nights Like This (Karaoke Version)", - "id": "z-uz8d2Tif4" - }, - { - "title": "Taylor Swift ft. Brendon Urie - ME! (Piano Version)", - "id": "5CZUSpswwxA" - }, - { - "title": "Lewis Capaldi - Hold Me While You Wait (Karaoke Version)", - "id": "0QV7xFZ508c" - }, - { - "title": "Kina ft. Snรธw - Get You The Moon (Karaoke Version)", - "id": "vwPkRY3qUkU" - }, - { - "title": "Ed Sheeran & Justin Bieber - I Don't Care (Piano Version)", - "id": "kaUNP9xhtJ8" - }, - { - "title": "Queen - Killer Queen (Karaoke Version)", - "id": "keoUdoKu8Is" - }, - { - "title": "Ellie Goulding, Diplo, Swae Lee - Close To Me (Karaoke Version)", - "id": "yAxabkR8-9s" - }, - { - "title": "Queen - Bohemian Rhapsody (Karaoke Version)", - "id": "9Lxm0iSnKNc" - }, - { - "title": "Ed Sheeran & Justin Bieber - I Don't Care (Karaoke Version)", - "id": "gSLONLzgUOs" - }, - { - "title": "ROSALรA & J Balvin - Con Altura ft. El Guincho (Karaoke Version)", - "id": "iS6UtPjMNLE" - }, - { - "title": "Queen & David Bowie - Under Pressure (Karaoke Version)", - "id": "kFD2IRBG35c" - }, - { - "title": "Billie Eilish - 8 (Karaoke Version)", - "id": "rNokzhUPfNY" - }, - { - "title": "Queen - Somebody To Love (Karaoke Version)", - "id": "dqIil7XK3V4" - }, - { - "title": "Troye Sivan - Lucky Strike (Karaoke Version)", - "id": "fmtAusg2mls" - }, - { - "title": "Queen - Don't Stop Me Now (Karaoke Version)", - "id": "G962z-4OL9E" - }, - { - "title": "Shawn Mendes - If I Can't Have You (Piano Version)", - "id": "7Cx45KVpIBo" - }, - { - "title": "Queen - We Are The Champions (Karaoke Version)", - "id": "KUiPFviDAvg" - }, - { - "title": "Shawn Mendes ft. Khalid - Youth (Karaoke Version)", - "id": "IrFEjSQ0EcM" - }, - { - "title": "Queen - We Will Rock You (Karaoke Version)", - "id": "j8Mkv84V9mY" - }, - { - "title": "Shawn Mendes - If I Can't Have You (Karaoke Version)", - "id": "8LKF6FtZvXA" - }, - { - "title": "Queen - I Want To Break Free (Karaoke Version)", - "id": "y_IIuMX0rHA" - }, - { - "title": "Christina Perri - A Thousand Years (Piano Version)", - "id": "QMQl1LyzcAE" - }, - { - "title": "James Arthur - Empty Space (Karaoke Version)", - "id": "ACU42cnaRJE" - }, - { - "title": "Why Don't We - Don't Change (Karaoke Version)", - "id": "jcqeBw--leM" - }, - { - "title": "Marshmello - Rooftops (Karaoke Version)", - "id": "u-3kXgZQEBU" - }, - { - "title": "Tori Kelly - Change Your Mind (Karaoke Version)", - "id": "KOLgMOMvKo0" - }, - { - "title": "Maggie Rogers - Light On (Karaoke Version)", - "id": "x26kByG_Tf8" - }, - { - "title": "Billie Eilish - my strange addiction (Karaoke Version)", - "id": "BMJkyKSlm3o" - }, - { - "title": "Little Mix ft. Ty Dolla $ign - Think About Us (Karaoke Version)", - "id": "HIGAhperWjc" - }, - { - "title": "Julia Michaels ft. Niall Horan - What A Time (Karaoke Version)", - "id": "GHatumpuigc" - }, - { - "title": "Jonas Brothers - Cool (Karaoke Version)", - "id": "9hguoJLNobQ" - }, - { - "title": "Panic! At The Disco - Dancing's Not A Crime (Karaoke Version)", - "id": "ZKArR5KM5mc" - }, - { - "title": "Cรฉline Dion - My Heart Will Go On (Piano Karaoke)", - "id": "J10X301khwY" - }, - { - "title": "Billie Eilish - ilomilo (Karaoke Version)", - "id": "CnQ1yJhRkxw" - }, - { - "title": "Billie Eilish - xanny (Karaoke Version)", - "id": "3-fK1AmIDcI" - }, - { - "title": "blackbear - do re mi (Karaoke Version)", - "id": "-gs_SZM2lRk" - }, - { - "title": "The Chainsmokers - Kills You Slowly (Karaoke Version)", - "id": "oCkoEMDryqA" - }, - { - "title": "Taylor Swift feat. Brendon Urie - ME! (Karaoke Version)", - "id": "R5Fq8T_s7i8" - }, - { - "title": "Marshmello ft. CHVRCHES - Here With Me (Karaoke Version)", - "id": "gVP5u4GnZqo" - }, - { - "title": "Little Mix ft. Nicki Minaj - Woman Like Me (Karaoke Version)", - "id": "axfrEvfXrFI" - }, - { - "title": "BTS () - Boy With Luv ( ) feat. Halsey (Karaoke Version)", - "id": "ZkNf0YMvdqQ" - }, - { - "title": "Ariana Grande and Victoria Monรฉt - MONOPOLY (Karaoke Version)", - "id": "2Mj3n7e2_7E" - }, - { - "title": "Billie Eilish - listen before i go (Karaoke Version)", - "id": "npyFEBYgJno" - }, - { - "title": "The Greatest Showman - A Million Dreams (Piano Version)", - "id": "aXS-2bHw4VU" - }, - { - "title": "BLACKPINK - Kill This Love (Karaoke version)", - "id": "YoWJa7GWzk4" - }, - { - "title": "Why Don't We & Macklemore - I Don't Belong In This Club (Karaoke Version)", - "id": "qV-JFrzrzws" - }, - { - "title": "LSD - Thunderclouds ft. Labrinth, Sia, Diplo (Karaoke Version)", - "id": "EnBpKvUuMHc" - }, - { - "title": "David Guetta ft. Anne Marie - Don't Leave Me Alone (Karaoke Version)", - "id": "dl1JLjeAkMk" - }, - { - "title": "Dean Lewis - Be Alright (Karaoke Version)", - "id": "omsisiPresM" - }, - { - "title": "Billie Eilish - all the good girls go to hell (Karaoke Version)", - "id": "PH5dzxD7i3U" - }, - { - "title": "twenty one pilots - Chlorine (Karaoke Version)", - "id": "wvwCi09Q4kk" - }, - { - "title": "Juice WRLD - Robbery (Karaoke Version)", - "id": "Wo9IUjs1UfY" - }, - { - "title": "Post Malone - I Fall Apart (Piano Version)", - "id": "z1tANMFU1i4" - }, - { - "title": "Bahari - Savage (Karaoke Version)", - "id": "JhipPliGz-E" - }, - { - "title": "Khalid - Better (Karaoke Version)", - "id": "S5PtzYrNGaU" - }, - { - "title": "Bebe Rexha - Last Hurrah (Karaoke Version)", - "id": "71yhIc5cz2k" - }, - { - "title": "Alan Walker, Sabrina Carpenter & Farruko - On My Way (Karaoke Version)", - "id": "9oNDMiyLm4U" - }, - { - "title": "Ariana Grande - thank u, next (Full Album Karaoke)", - "id": "DoUR6zpG7fE" - }, - { - "title": "Billie Eilish - bad guy (Karaoke Version)", - "id": "GsFlbMS7UIc" - }, - { - "title": "5 Seconds Of Summer - Youngblood (Karaoke Version)", - "id": "2drs07dhS7Y" - }, - { - "title": "Lil Nas X ft. Billy Ray Cyrus - Old Town Road (Remix) (Karaoke Version)", - "id": "exPFJVbIz0c" - }, - { - "title": "Ariana Grande - fake smile (Karaoke Version)", - "id": "nveMe31V9TQ" - }, - { - "title": "Ariana Grande - bloodline (Karaoke Version)", - "id": "BFsCLt47RSc" - }, - { - "title": "Ariana Grande - in my head (Karaoke Version)", - "id": "RgIqSc_orts" - }, - { - "title": "Billie Eilish - lovely (with Khalid) (Karaoke Version)", - "id": "CGXeSUtbhFk" - }, - { - "title": "Lady Gaga, Bradley Cooper - Shallow (Piano Version)", - "id": "PD5sXfNFwhw" - }, - { - "title": "Iggy Azalea - Sally Walker (Karaoke Version)", - "id": "q1D2v5xpgV0" - }, - { - "title": "The Chainsmokers ft. 5 Seconds Of Summer - Who Do You Love (Karaoke Version)", - "id": "5USk-UoZb74" - }, - { - "title": "Ariana Grande - ghostin (Karaoke Version)", - "id": "9QvqYILRi_w" - }, - { - "title": "Rita Ora - Only Want You (Karaoke Version)", - "id": "jiFRw8RRpw8" - }, - { - "title": "Ariana Grande - bad idea (Karaoke Version)", - "id": "aw-agjuoyVg" - }, - { - "title": "Jason Mraz & Meghan Trainor - More Than Friends (Karaoke Version)", - "id": "mUsL_F_jBOE" - }, - { - "title": "Ariana Grande - needy (Karaoke Version)", - "id": "ykLGJ1pUjjs" - }, - { - "title": "Juice WRLD - Hear Me Calling (Karaoke Version)", - "id": "7z3HtSSFwf0" - }, - { - "title": "Ava Max - So Am I (Karaoke Version)", - "id": "xa17TPwdWZ0" - }, - { - "title": "Christina Perri - you mean the whole wide world to me (Karaoke Version)", - "id": "_iummmt0xZg" - }, - { - "title": "Why Don't We - BIG PLANS (Karaoke Version)", - "id": "IL1eJdDub9w" - }, - { - "title": "5 Seconds Of Summer ft. Julia Michaels - Lie To Me (Karaoke Version)", - "id": "TUu5K9LzGOw" - }, - { - "title": "Lewis Capaldi - Someone You Loved (Karaoke Version)", - "id": "0H3KpRuwBZ8" - }, - { - "title": "Khalid - Talk (Karaoke Version)", - "id": "lE7thk4N1HM" - }, - { - "title": "The Greatest Showman - The Other Side (Karaoke Version)", - "id": "xsYWYvCJAbs" - }, - { - "title": "The Greatest Showman - Tightrope (Karaoke Version)", - "id": "n6lpeCuGWPs" - }, - { - "title": "The Greatest Showman - Rewrite The Stars (Karaoke Version)", - "id": "mayU6Gqpg9Y" - }, - { - "title": "The Greatest Showman - The Greatest Show (Karaoke Version)", - "id": "35jPapexMjk" - }, - { - "title": "The Greatest Showman - From Now On (Karaoke Version)", - "id": "hIHAHHXAoXk" - }, - { - "title": "The Greatest Showman - This Is Me (Karaoke Version)", - "id": "V59psMbygfI" - }, - { - "title": "The Greatest Showman - Come Alive (Karaoke Version)", - "id": "O1CB--Snlnw" - }, - { - "title": "The Greatest Showman - A Million Dreams (Karaoke Version)", - "id": "3f2X_gIJ_u4" - }, - { - "title": "The Greatest Showman - Never Enough (Karaoke Version)", - "id": "0nxmS92MiSM" - }, - { - "title": "The Greatest Showman - Full Soundtrack (Karaoke)", - "id": "rij3vlUcxYU" - }, - { - "title": "Charli XCX, Troye Sivan - 1999 (Karaoke Version)", - "id": "AaWHi26Tsys" - }, - { - "title": "Cheat Codes, Little Mix - Only You (Karaoke Version)", - "id": "obHaUU2ARsA" - }, - { - "title": "HRVY - I Wish You Were Here (Karaoke Version)", - "id": "RBGUINaCLtA" - }, - { - "title": "Jeff Buckley - Hallelujah (Karaoke Version)", - "id": "nJRLaEwIKMU" - }, - { - "title": "Ruth B - Slow Fade (Karaoke Version)", - "id": "iH277oxWrbc" - }, - { - "title": "Sigala ft. Ella Eyre, Meghan Trainor, French Montana - Just Got Paid (Karaoke Version)", - "id": "vxCU_EToDeE" - }, - { - "title": "Journey - Don't Stop Believin' (Karaoke Version)", - "id": "c8wn2fMYvns" - }, - { - "title": "Justin Bieber - Love Yourself (Karaoke Version)", - "id": "mY00uFz5bTA" - }, - { - "title": "Louis Tomlinson - Two Of Us (Karaoke Version)", - "id": "DfaoHJFVG0k" - }, - { - "title": "Sam Smith, Normani - Dancing With A Stranger (Karaoke Version)", - "id": "oSRYZ29SoYM" - }, - { - "title": "Jonas Brothers - Sucker (Karaoke Version)", - "id": "xZCLLVYq3O8" - }, - { - "title": "benny blanco, Tainy, Selena Gomez, J Balvin - I Can't Get Enough (Karaoke Version)", - "id": "jrwl2MNeEbw" - }, - { - "title": "Billie Eilish - wish you were gay (Karaoke Version)", - "id": "IOzAmILqFkI" - }, - { - "title": "Blueface ft. Cardi B - Thotiana Remix (Karaoke Version)", - "id": "FypxFmetLxI" - }, - { - "title": "benny blanco & Juice WRLD ft. Brendon Urie - Roses (Karaoke Version)", - "id": "Wh0wBurqWjQ" - }, - { - "title": "Post Malone - Better Now (Karaoke Version)", - "id": "DtTFu9qgX38" - }, - { - "title": "Drake - God's Plan (Karaoke Version)", - "id": "b1xiezhCNJo" - }, - { - "title": "Fall Out Boy - Thnks fr the Mmrs (Karaoke Version)", - "id": "x52q2H9LTT8" - }, - { - "title": "Mr. Probz - Praying To A God (Karaoke Version)", - "id": "6reOzil6yKc" - }, - { - "title": "Lady Gaga - Look What I Found (Karaoke Version)", - "id": "awIle6Q5M_I" - }, - { - "title": "Sabrina Carpenter - Paris (Karaoke Version)", - "id": "8QlnpQJ5GNQ" - }, - { - "title": "Kacey Musgraves - Rainbow (Karaoke Version)", - "id": "QjVLFKOLsEs" - }, - { - "title": "Ariana Grande - NASA (Karaoke Version)", - "id": "OHnC1RAeyco" - }, - { - "title": "Dan + Shay - Tequila (Karaoke Version)", - "id": "E0id9kAMS4k" - }, - { - "title": "Jess Glynne - Thursday (Karaoke Version)", - "id": "9_gx45yPxMs" - }, - { - "title": "Drake - I'm Upset (Karaoke Version)", - "id": "ebgYlvQ7Jm0" - }, - { - "title": "Julia Michaels ft. Selena Gomez - Anxiety (Karaoke Version)", - "id": "8sOVr-t-IGY" - }, - { - "title": "Little Mix - Joan Of Arc (Karaoke Version)", - "id": "Jr6MwretpMQ" - }, - { - "title": "Ed Sheeran - Happier (Karaoke Version)", - "id": "aT9Nb3I49oY" - }, - { - "title": "benny blanco, Halsey & Khalid - Eastside (Karaoke Version)", - "id": "lBwXEZte1S4" - }, - { - "title": "Shawn Mendes - Where Were You In The Morning? (Karaoke Version)", - "id": "56j3RJOZM3M" - }, - { - "title": "Anne-Marie - Perfect To Me (Karaoke Version)", - "id": "mj9i9OqfHSA" - }, - { - "title": "Dua Lipa - Swan Song (Karaoke Version)", - "id": "Z6X7YdaE8Fc" - }, - { - "title": "Sheck Wes - Mo Bamba (Karaoke Version)", - "id": "9YsT_qIziDI" - }, - { - "title": "Post Malone - Wow. (Karaoke Version)", - "id": "YJKiF31Keig" - }, - { - "title": "Panic! At The Disco - High Hopes (Karaoke Version)", - "id": "Dc7L5ZzlrCc" - }, - { - "title": "Khalid - Saturday Nights (Karaoke Version)", - "id": "CXMpSe6Gkog" - }, - { - "title": "Flipp Dinero - Leave Me Alone (Karaoke Version)", - "id": "7VsqlrZ94c8" - }, - { - "title": "Rita Ora - Let You Love Me (Karaoke Version)", - "id": "zveY65HC9vU" - }, - { - "title": "Imagine Dragons - Zero (Karaoke Version)", - "id": "aZ0aqG_8X7Q" - }, - { - "title": "Kygo, Imagine Dragons - Born To Be Yours (Karaoke Version)", - "id": "_ETGf6r1zJU" - }, - { - "title": "Ella Mai - Shot Clock (Karaoke Version)", - "id": "LK2QEkvTRBg" - }, - { - "title": "Taylor Swift ft. Ed Sheeran, Future - End Game (Karaoke Version)", - "id": "YrG4QM7lans" - }, - { - "title": "Taylor Swift - Delicate (Karaoke Version)", - "id": "MGf7KlgMTkE" - }, - { - "title": "Bazzi ft. Camila Cabello - Beautiful (Karaoke Version)", - "id": "2-qAlxGg3iQ" - }, - { - "title": "The Chainsmokers ft. Kelsea Ballerini - This Feeling (Karaoke Version)", - "id": "tXORQ0QV29Q" - }, - { - "title": "Billie Eilish - bury a friend (Karaoke Version)", - "id": "sHSYs_pojQs" - }, - { - "title": "Lady Gaga - I'll Never Love Again (Karaoke Version)", - "id": "lOx30dknDos" - }, - { - "title": "Ariana Grande - break up with your girlfriend, i'm bored (Karaoke Version)", - "id": "XclsUVJNv40" - }, - { - "title": "Zedd, Katy Perry - 365 (Karaoke Version)", - "id": "rYNbmf-z8tg" - }, - { - "title": "Lady Gaga - Is That Alright? (Karaoke Version)", - "id": "tWoaa4vNI8M" - }, - { - "title": "Lady Gaga - Always Remember Us This Way (Karaoke Version)", - "id": "9sVKwwSvvLw" - }, - { - "title": "Post Malone ft. Ty Dolla $ign - Psycho (Karaoke Version)", - "id": "S0tJ2Scp994" - }, - { - "title": "Jonas Blue, Liam Payne, Lennon Stella - Polaroid (Karaoke Version)", - "id": "9XfUZfamK9M" - }, - { - "title": "Mark Ronson ft . Miley Cyrus - Nothing Breaks Like A Heart (Karaoke Version)", - "id": "Ev30RsVnQUs" - }, - { - "title": "Anne Marie - 2002 (Karaoke Version)", - "id": "xb3oMef3hnc" - }, - { - "title": "Christina Perri - A Thousand Years (Lullaby) (Karaoke Version)", - "id": "IhGn__Prgrs" - }, - { - "title": "Calvin Harris, Dua Lipa - One Kiss (Karaoke Version)", - "id": "jTDI5kF3Pco" - }, - { - "title": "Marshmello, Anne Marie - FRIENDS (Karaoke Version)", - "id": "6ela2HnWEBk" - }, - { - "title": "Maroon 5 ft. Cardi B - Girls Like You (Karaoke Version)", - "id": "aNknycqtsxA" - }, - { - "title": "Post Malone, Swae Lee - Sunflower (Karaoke Version)", - "id": "awxvtj-0JKw" - }, - { - "title": "Halsey - Without Me (Karaoke Version)", - "id": "_QC9OSgbmC8" - }, - { - "title": "Lady Gaga, Bradley Cooper - Shallow (A Star Is Born) (Karaoke Version)", - "id": "_nHT_k9Rswc" - }, - { - "title": "Billie Eilish - when the party's over (Piano Karaoke)", - "id": "UK1jmU_JBXs" - }, - { - "title": "Ariana Grande - ghostin (Piano Version)", - "id": "XFYP1c1eVKc" - }, - { - "title": "Ariana Grande - 7 rings (Piano Version)", - "id": "GIuAye8u_v8" - }, - { - "title": "HRVY - I Don't Think About You (Karaoke Version)", - "id": "O2UI4Ii_hzw" - }, - { - "title": "Billie Eilish - WHEN I WAS OLDER (Karaoke Version)", - "id": "Wc4Twxdk44s" - }, - { - "title": "James Smith - Tell Me That You Love Me (Karaoke Version)", - "id": "6r1zF7QAeqk" - }, - { - "title": "Ariana Grande - 7 Rings (Karaoke Version)", - "id": "7BfhCUB_YkI" - }, - { - "title": "Billie Eilish - Ocean Eyes (Karaoke Version)", - "id": "rqF-W9QBHUQ" - }, - { - "title": "GAWVI ft. Lecrae - Fight For Me (Karaoke Version)", - "id": "1oXomadSN84" - }, - { - "title": "6ix9ine ft. Kanye West & Nicki Minaj - MAMA (Karaoke Version)", - "id": "l53Oe7VmgLc" - }, - { - "title": "Ariana Grande - thank u, next (Piano Version)", - "id": "b0Quu5Q4Ct8" - }, - { - "title": "David Guetta ft. Justin Bieber - 2U (Piano Version)", - "id": "OnRkEVVCTpw" - }, - { - "title": "Dove Cameron - If Only (Piano Version)", - "id": "-XRt9aEwAy0" - }, - { - "title": "Gabrielle Aplin - My Mistake (Karaoke Version)", - "id": "i_dKD0ZqBjI" - }, - { - "title": "Gesaffelstein & The Weeknd - Lost In The Fire (Karaoke Version)", - "id": "SHQBizSKGTE" - }, - { - "title": "Demi Lovato - You Don't Do It For Me Anymore (Piano Version)", - "id": "NjOEDHmWWDM" - }, - { - "title": "Ariana Grande - One Last Time (Piano Version)", - "id": "jA-hpo0nMkY" - }, - { - "title": "Charlie Puth - Attention (Piano Version)", - "id": "Zoa3xOECvqI" - }, - { - "title": "Charlie Puth - How Long (Piano Version)", - "id": "AkoD5VU55tg" - }, - { - "title": "lovelytheband - broken (Karaoke Version)", - "id": "CROH2DvcybY" - }, - { - "title": "Nicki Minaj ft. Lil Wayne - Good Form (Karaoke Version)", - "id": "AJcz7PRb7cU" - }, - { - "title": "Ava Max - Sweet But Psycho (Karaoke Version)", - "id": "DKN8sskhsrk" - }, - { - "title": "Billie Eilish - bellyache (Karaoke Version)", - "id": "GakCnD5pzNM" - }, - { - "title": "Ariana Grande - imagine (Karaoke Version)", - "id": "_7BRdJUH5BQ" - }, - { - "title": "The 1975 - Sincerity Is Scary (Karaoke Version)", - "id": "yAhsPDvn3uI" - }, - { - "title": "Billie Eilish - come out and play (Karaoke Version)", - "id": "Y9dOjrJrfQA" - }, - { - "title": "Natti Natasha - Me Gusta (Karaoke Version)", - "id": "-uGM1toblIE" - }, - { - "title": "6ix9ine feat. Lil Baby - TIC TOC (Karaoke Version)", - "id": "qW_ROk9oxn8" - }, - { - "title": "NF - If You Want Love (Karaoke Version)", - "id": "kimHPIZ-8RM" - }, - { - "title": "AJ Mitchell - I Don't Want You Back (Karaoke Version)", - "id": "7TnXHuETOdQ" - }, - { - "title": "Aitana x Lele Pons - TELร‰FONO (REMIX) (Karaoke Version)", - "id": "Lud19qb3XBM" - }, - { - "title": "Travis Scott ft. Drake - SICKO MODE (Karaoke Version)", - "id": "fSVUvFxu0r0" - }, - { - "title": "Steve Aoki feat. BTS - Waste It On Me (Karaoke Version)", - "id": "2PMLfo08UH4" - }, - { - "title": "Juice WRLD - Armed & Dangerous (Karaoke Version)", - "id": "oljV6CWOEUQ" - }, - { - "title": "Bhad Bhabie feat. Lil Baby - Geek'd (Karaoke Version)", - "id": "0riUTYNEKBs" - }, - { - "title": "Billie Eilish - when the party's over (Karaoke Version)", - "id": "sluLx2JlLqw" - }, - { - "title": "Ariana Grande - thank u, next (Karaoke Version)", - "id": "KqrDah9PD_c" - }, - { - "title": "XXXTentacion & Lil Pump ft. Maluma & Swae Lee - Arms Around You (Karaoke Version)", - "id": "mn3CrszoeyY" - }, - { - "title": "Imagine Dragons - Bad Liar (Karaoke Version)", - "id": "z2-8U9XeArs" - }, - { - "title": "NF - Lie (Karaoke Version)", - "id": "AcqnT-ci4io" - }, - { - "title": "Zara Larsson - Ruin My Life (Karaoke Version)", - "id": "j2mzH2zkV8w" - }, - { - "title": "Bring Me The Horizon feat. Dani Filth - wonderful life (Karaoke Version)", - "id": "CsjQ1NDpUbs" - }, - { - "title": "Jess Glynne - All I Am (Karaoke Version)", - "id": "evwTfduaO50" - }, - { - "title": "Calum Scott - No Matter What (Karaoke Version)", - "id": "M9ZG-Ndcj3Q" - }, - { - "title": "Loud Luxury feat. brando - Body (Karaoke Version)", - "id": "XAozV09dgt0" - }, - { - "title": "Ariana Grande - better off (Karaoke Version)", - "id": "XFcBx-m_OR8" - }, - { - "title": "Dua Lipa & BLACKPINK - Kiss And Make Up (Karaoke Version)", - "id": "wfkadIQRqbU" - }, - { - "title": "Allie X - Sunflower (Karaoke Version)", - "id": "hG2SP2QC8sw" - }, - { - "title": "Gabbie Hanna - Monster (Karaoke Version)", - "id": "1aE6_R10zJA" - }, - { - "title": "Freya Ridings - Lost Without You (Karaoke Version)", - "id": "Mw3XBaq90Zs" - }, - { - "title": "Lil Peep - Cry Alone (Karaoke Version)", - "id": "69LBAsBcZ-M" - }, - { - "title": "Joji - TEST DRIVE (Karaoke Version)", - "id": "Kcw4iJe90JY" - }, - { - "title": "Rudy Mancuso - Lento (Karaoke Version)", - "id": "n0-F0tZdq8Y" - }, - { - "title": "Lil Peep & XXXTENTACION - Falling Down (Karaoke Version)", - "id": "XGO_qLrJbwc" - }, - { - "title": "Billie Eilish - hostage (Karaoke Version)", - "id": "REegNmz42hk" - }, - { - "title": "R3HAB x Sofia Carson - Rumors (Karaoke Version)", - "id": "p34WMpAfa6U" - }, - { - "title": "Lil Pump ft. Juice WRLD - Oh Yeah (Karaoke Version)", - "id": "Iu2CKCW9zdc" - }, - { - "title": "Sia - I'm Still Here (Karaoke Version)", - "id": "7rWHtN2sdIg" - }, - { - "title": "AJR - Role Models (Karaoke Version)", - "id": "TwXS-MW5vi0" - }, - { - "title": "6ix9ine, Nicki Minaj, Murda Beatz - FEFE (Karaoke Version)", - "id": "zpBRGghNRBI" - }, - { - "title": "LANY - If You See Her (Karaoke Version)", - "id": "rjRPAKBHFTI" - }, - { - "title": "Joji - SLOW DANCING IN THE DARK (Karaoke Version)", - "id": "yXROo8kB1Qk" - }, - { - "title": "Juice WRLD - All Girls Are The Same (Karaoke Version)", - "id": "XDwWdQiFiVc" - }, - { - "title": "Lauv, Julia Michaels - There's No Way (Karaoke Version)", - "id": "3Kfgd1b7fmA" - }, - { - "title": "Shannon Purser - Sunflower (Karaoke Version)", - "id": "TEKmWUrcEdU" - }, - { - "title": "Ella Mai x Chris Brown - Whatchamacallit (Karaoke Version)", - "id": "7yAlBDgU1z8" - }, - { - "title": "Jason Derulo x David Guetta ft. Nicki Minaj - Goodbye (Karaoke Version)", - "id": "kb1SHbvIe-A" - }, - { - "title": "Silk City, Dua Lipa - Electricity (Karaoke Version)", - "id": "XLCfV73zW_Q" - }, - { - "title": "No Rome ft. The 1975 - Narcissist (Karaoke Version)", - "id": "f-Ug1J1dC-Q" - }, - { - "title": "Ella Mai - Trip (Karaoke Version)", - "id": "7efCH-o6J0s" - }, - { - "title": "Sigrid - SUCKER PUNCH (Karaoke Version)", - "id": "8cE3XUX6F20" - }, - { - "title": "XXXTentacion - Moonlight (Karaoke Version)", - "id": "pOnx3VJteCA" - }, - { - "title": "dodie - Human (Karaoke Version)", - "id": "RWhh72skBKk" - }, - { - "title": "CHVRCHES ft. Matt Berninger - My Enemy (Karaoke Version)", - "id": "qtOaQH1eEIQ" - }, - { - "title": "KSI - On Point (Karaoke Version)", - "id": "7uRkzMJLpAg" - }, - { - "title": "Noah Cyrus, Lil Xan - Live Or Die (Karaoke Version)", - "id": "b48aAThhrMs" - }, - { - "title": "Lele Pons - Celoso (Karaoke Version)", - "id": "6sm-VkbvOng" - }, - { - "title": "Lukas Graham - Love Someone (Karaoke Version)", - "id": "ao2xsnwJpIo" - }, - { - "title": "Marshmello x Juicy J ft. James Arthur - You Can Cry (Karaoke Version)", - "id": "s4rqxsx1-7k" - }, - { - "title": "Kanye West & Lil Pump ft. Adele Givens - I Love It (Karaoke Version)", - "id": "70QfofcVzqs" - }, - { - "title": "Why Don't We - 8 Letters (Karaoke Version)", - "id": "6unN3qLF098" - }, - { - "title": "Marshmello ft. Bastille - Happier (Karaoke Version)", - "id": "cNqlovKgatw" - }, - { - "title": "Ariana Grande - everytime (Karaoke Version)", - "id": "hShN1gAhrz8" - }, - { - "title": "Nicki Minaj - Ganja Burn (Karaoke Version)", - "id": "9uuUKgHCGnA" - }, - { - "title": "Noah Cyrus, Gallant - Mad At You (Karaoke Version)", - "id": "wrecpS2UnFE" - }, - { - "title": "twenty one pilots - My Blood (Karaoke Version)", - "id": "naZyZzr1Emc" - }, - { - "title": "LANY - I Don't Wanna Love You Anymore (Karaoke Version)", - "id": "Klx1VeZFa5g" - }, - { - "title": "Childish Gambino - Feels Like Summer (Karaoke Version)", - "id": "I0Qqf6Pf5L4" - }, - { - "title": "twenty one pilots - Jumpsuit (Karaoke Version)", - "id": "_5EtmQh5K1k" - }, - { - "title": "The 1975 - TOOTIMETOOTIMETOOTIME (Karaoke Version)", - "id": "pO7SYKu8mSw" - }, - { - "title": "Ariana Grande - breathin (Karaoke Version)", - "id": "DAGZIVaDSEw" - }, - { - "title": "Ella Mai - Boo'd Up (Karaoke Version)", - "id": "a-d9H0yCMJc" - }, - { - "title": "Meghan Trainor - No Excuses (Karaoke Version)", - "id": "6hmzFslVd6U" - }, - { - "title": "ABBA - My Love, My Life (Karaoke Version)", - "id": "ljf3RDTAM4s" - }, - { - "title": "ABBA - I Have A Dream (Karaoke Version)", - "id": "n4yhmONZimc" - }, - { - "title": "Logic - Contra (Karaoke Version)", - "id": "hbBLNvbldTE" - }, - { - "title": "The 1975 - Love It If We Made It (Karaoke Version)", - "id": "kRGBd32qIjg" - }, - { - "title": "DJ Khaled ft. Justin Bieber, Chance The Rapper, Quavo - No Brainer (Karaoke Version)", - "id": "aQHjf2rrnZ8" - }, - { - "title": "ABBA - Super Trouper (Karaoke Version)", - "id": "QAw2A7jCI50" - }, - { - "title": "Maddie Poppe - Going Going Gone (Karaoke Version)", - "id": "l0ZDMjoOtD8" - }, - { - "title": "twenty one pilots - Nico And The Niners (Karaoke Version)", - "id": "Vd_WTH_ZpJg" - }, - { - "title": "Martin Garrix ft. Bonn - High On Life (Karaoke Version)", - "id": "U399h9BI06g" - }, - { - "title": "Panic! At The Disco - Hey Look Ma, I Made It (Karaoke Version)", - "id": "_HNMX3dr8_U" - }, - { - "title": "Juice WRLD ft. Lil Uzi Vert - Wasted (Karaoke Version)", - "id": "EWIDQSEus5k" - }, - { - "title": "Tiรซsto & Dzeko ft. Preme & Post Malone - Jackie Chan (Karaoke Version)", - "id": "ou--0XxxPdU" - }, - { - "title": "Billie Eilish - You Should See Me In A Crown (Karaoke Version)", - "id": "ztlumMoFC_w" - }, - { - "title": "Bebe Rexha - Knees (Karaoke Version)", - "id": "Lq0eJeDkzgg" - }, - { - "title": "Selena Gomez - Kill Em With Kindness (Acoustic) (Karaoke Version)", - "id": "mqCv2Ee1iaw" - }, - { - "title": "Juice WRLD - Lucid Dreams (Karaoke Version)", - "id": "Nt484LGuiPA" - }, - { - "title": "ABBA - Knowing Me, Knowing You (Karaoke Version)", - "id": "Q8T4s1-G0rk" - }, - { - "title": "Juice WRLD - Legends (Karaoke Version)", - "id": "1b1HEVaWV14" - }, - { - "title": "ABBA - The Name Of The Game (Karaoke Version)", - "id": "v-wsbOhnFuE" - }, - { - "title": "Jhenรฉ Aiko ft. Rae Sremmurd - Sativa (Karaoke Version)", - "id": "6xT5f8UIryc" - }, - { - "title": "joji - Head In The Clouds (Karaoke Version)", - "id": "fRebxq1PoNY" - }, - { - "title": "Tessa Violet - Crush (Karaoke Version)", - "id": "CAxnAR-xu50" - }, - { - "title": "Magic! - Kiss Me (Karaoke Version)", - "id": "oDLsL0K9fXQ" - }, - { - "title": "Nicki Minaj ft. Ariana Grande - Bed (Karaoke Version)", - "id": "Jm4skE4VNh4" - }, - { - "title": "Ariana Grande - God Is A Woman (Karaoke Version)", - "id": "wuhbuzGqBYQ" - }, - { - "title": "Jonas Blue ft. Joe Jonas - I See Love (Karaoke Version)", - "id": "ecUzyzfs3U4" - }, - { - "title": "Against The Current - Strangers Again (Karaoke Version)", - "id": "NWDX0MiwPQU" - }, - { - "title": "Charlie Puth - The Way I Am (Karaoke Version)", - "id": "mv9ZQFIsplc" - }, - { - "title": "Shawn Mendes - In My Blood (Karaoke Version)", - "id": "1UIGgaw2gTY" - }, - { - "title": "Demi Lovato - Sober (Karaoke Version)", - "id": "0kHB3e5AUcs" - }, - { - "title": "gnash - imagine if (Karaoke Version)", - "id": "KouUW7pjVKA" - }, - { - "title": "NF - Why (Karaoke Version)", - "id": "QHbG_t6PFfI" - }, - { - "title": "Alessia Cara - Growing Pains (Karaoke Version)", - "id": "wSAxXKkvCTc" - }, - { - "title": "Fifth Harmony - Don't Say You Love Me (Karaoke Version)", - "id": "Wd87finzlo0" - }, - { - "title": "BIG SHAQ - MAN DON'T DANCE (Karaoke Version)", - "id": "4v9M983S8GM" - }, - { - "title": "Nicki Minaj - Chun-Li (Karaoke Version)", - "id": "PybzNKo_T-0" - }, - { - "title": "Backstreet Boys - Don't Go Breaking My Heart (Karaoke Version)", - "id": "E9xYFGAN3Mk" - }, - { - "title": "Bebe Rexha - I'm A Mess (Karaoke Version)", - "id": "U3MY_ffvLo4" - }, - { - "title": "Julia Michaels ft. Trippie Redd - Jump (Karaoke Version)", - "id": "pQZiJQDUhVs" - }, - { - "title": "Selena Gomez - Back To You (Karaoke Version)", - "id": "-t93cQsVifE" - }, - { - "title": "The 1975 - Give Yourself A Try (Karaoke Version)", - "id": "lusIsUUD_GE" - }, - { - "title": "ZAYN - Entertainer (Karaoke Version)", - "id": "j1kepXCOu10" - }, - { - "title": "SZA - Garden (Say It Like Dat) (Karaoke Version)", - "id": "-LL-FEEGoEk" - }, - { - "title": "Kacey Musgraves - Space Cowboy (Karaoke Version)", - "id": "noI9Rbb3uhw" - }, - { - "title": "Why Don't We - Hooked (Karaoke Version)", - "id": "BHGqphQnFL8" - }, - { - "title": "Noah Cyrus, Tanner Alexander - Lately (Karaoke Version)", - "id": "dnDl1hjM6AI" - }, - { - "title": "Hayley Kiyoko ft. Kehlani - What I Need (Karaoke Version)", - "id": "aPHU3G9IKpk" - }, - { - "title": "Sabrina Carpenter - Almost Love (Karaoke Version)", - "id": "0Vvf0X7YYE0" - }, - { - "title": "John Legend, BloodPopยฎ - A Good Night (Karaoke Version)", - "id": "VBfyBW3q_4A" - }, - { - "title": "James Bay - Wild Love (Karaoke Version)", - "id": "DVeGn_JLwcE" - }, - { - "title": "Maren Morris - Rich (Karaoke Version)", - "id": "3Xc3eLkGWsw" - }, - { - "title": "Lil Pump - ESSKEETIT (Karaoke Version)", - "id": "3jL7g3nx0cs" - }, - { - "title": "Bebe Rexha - Ferrari (Karaoke Version)", - "id": "9F-gGNoVpTc" - }, - { - "title": "Shawn Mendes - Nervous (Karaoke Version)", - "id": "oAHBQ55tQAw" - }, - { - "title": "Jess Glynne - I'll Be There (Karaoke Version)", - "id": "IS8e94ycnC8" - }, - { - "title": "Poo Bear ft. Zara Larsson - Either (Karaoke Version)", - "id": "CYHSlM19CiU" - }, - { - "title": "Nicki Minaj - Barbie Tingz (Karaoke Version)", - "id": "6uoMg0fdBzY" - }, - { - "title": "Kim Petras - Heart To Break (Karaoke Version)", - "id": "yLiUuKr87cs" - }, - { - "title": "Kacey Musgraves - High Horse (Karaoke Version)", - "id": "l8dPB6D1DV4" - }, - { - "title": "Louisa ft. 2 Chainz - YES (Karaoke Version)", - "id": "5r7uxdWzyCY" - }, - { - "title": "Sigala ft. Paloma Faith - Lullaby (Karaoke Version)", - "id": "cZAarc9NRxA" - }, - { - "title": "Ramz - Barking (Karaoke Version)", - "id": "4YsCpXeyqnU" - }, - { - "title": "XXXTENTACION - Jocelyn Flores (Karaoke Version)", - "id": "MZY0x2w_tsY" - }, - { - "title": "The Vamps - Hair Too Long (Karaoke Version)", - "id": "tzN0Yc0ksSo" - }, - { - "title": "Cรฉline Dion - Ashes (Karaoke Version)", - "id": "8D48fQ1QVps" - }, - { - "title": "Charlie Puth - BOY (Karaoke Version)", - "id": "tlnjFe88etw" - }, - { - "title": "Incubus - No Fun (Karaoke Version)", - "id": "1cGYpyEFgMQ" - }, - { - "title": "Charlie Puth - Kiss Me (Karaoke Version)", - "id": "N4WkcAAJQi4" - }, - { - "title": "RaeLynn - Queens Don't (Karaoke Version)", - "id": "8udZiDjxua0" - }, - { - "title": "DJ Khaled ft. Demi Lovato - I Believe (Karaoke Version)", - "id": "q_UMLX3AWGY" - }, - { - "title": "XXXTENTACION - Changes (Karaoke Version)", - "id": "qfmxYHMWjwQ" - }, - { - "title": "Ariana Grande - No Tears Left To Cry (Karaoke Version)", - "id": "PSYn6Y1B3KY" - }, - { - "title": "KYLE ft. Kehlani - Playinwitme (Karaoke Version)", - "id": "3Ae57OHI4Gs" - }, - { - "title": "Milo Manheim, Meg Donnelly - Someday (Ballad) (Karaoke Version)", - "id": "sBrdDLQ-X8I" - }, - { - "title": "Jason Derulo - Colors (Karaoke Version)", - "id": "gWVI5as34wU" - }, - { - "title": "Years & Years - Sanctify (Karaoke Version)", - "id": "qavWosX8Qgw" - }, - { - "title": "Calum Scott - What I Miss Most (Karaoke Version)", - "id": "V_nHLVkduQo" - }, - { - "title": "Panic! At The Disco - This Is Gospel (Piano) (Karaoke Version)", - "id": "S3yTwGOOhmk" - }, - { - "title": "YoungBoy Never Broke Again - Diamond Teeth Samurai (Karaoke Version)", - "id": "w7pspRVaej0" - }, - { - "title": "ABBA - Chiquitita (Karaoke Version)", - "id": "1gRQKAivLns" - }, - { - "title": "Panic! At The Disco - Say Amen (Saturday Night) (Karaoke Version)", - "id": "P1UBspLSWvU" - }, - { - "title": "TINI, Karol G - Princesa (Karaoke Version)", - "id": "T5ScMCvBGss" - }, - { - "title": "Billie Eilish - bitches broken hearts (Karaoke Version)", - "id": "vRQMsrd4ZAw" - }, - { - "title": "Amy Shark - Sink In (Karaoke Version)", - "id": "T123rkm7x60" - }, - { - "title": "Janelle Monรกe - Make Me Feel (Karaoke Version)", - "id": "rMJ1z5wWGSc" - }, - { - "title": "Diplo ft. Mร˜ - Get It Right (Karaoke Version)", - "id": "UmEFwcj1wlY" - }, - { - "title": "X Ambassadors - Don't Stay (Karaoke Version)", - "id": "ZUQ9xNWNSzk" - }, - { - "title": "Milo Manheim, Meg Donnelly - Someday (from \"ZOMBIES\") (Karaoke Version)", - "id": "UzP_Fqbdry0" - }, - { - "title": "Breaking Benjamin - Blood (Karaoke Version)", - "id": "zDug9jMBf7E" - }, - { - "title": "XXXTENTACION - SAD! (Karaoke Version)", - "id": "bWPM34_JYcg" - }, - { - "title": "Pale Waves - The Tide (Karaoke Version)", - "id": "xAA751IOyts" - }, - { - "title": "Noah Cyrus ft. Mร˜ - We Are... (Karaoke Version)", - "id": "RzQ3esPuewY" - }, - { - "title": "ABBA - Take A Chance On Me (Karaoke Version)", - "id": "SgxICAYsYDs" - }, - { - "title": "AJR - Come Hang Out (Karaoke Version)", - "id": "-mG2Nr-Bg7U" - }, - { - "title": "Marshmello & Logic - EVERYDAY (Karaoke Version)", - "id": "h1kScjF479Q" - }, - { - "title": "Charlie Puth ft. Kehlani - Done For Me (Karaoke Version)", - "id": "I6DTvp194lg" - }, - { - "title": "Kelly Clarkson - I Don't Think About You (Karaoke Version)", - "id": "5Dyi8kHw9-k" - }, - { - "title": "nothing,nowhere. - hammer (Karaoke Version)", - "id": "Ec4vC2QnLwc" - }, - { - "title": "Ansel Elgort - Supernova (Karaoke Version)", - "id": "z8B6_PFXDEA" - }, - { - "title": "Vance Joy - Call If You Need Me (Karaoke Version)", - "id": "pkleV8mlxwg" - }, - { - "title": "NF - Let You Down (Karaoke Version)", - "id": "zp1KkQMiPt0" - }, - { - "title": "ABBA - Waterloo (Karaoke Version)", - "id": "wphW2H4ucg4" - }, - { - "title": "Hailee Steinfeld, BloodPopยฎ - Capital Letters (Karaoke Version)", - "id": "o86W4LqI_Vo" - }, - { - "title": "Samantha Harvey - Please (Karaoke Version)", - "id": "UrFasuSeBPg" - }, - { - "title": "ABBA - Dancing Queen (Karaoke Version)", - "id": "WHayJZ3eMcE" - }, - { - "title": "Jason Aldean - You Make It Easy (Karaoke Version)", - "id": "Q9W6Sbph_Z8" - }, - { - "title": "Lauv - Getting Over You (Karaoke Version)", - "id": "pUtYAy1oVuM" - }, - { - "title": "Maggie Lindemann - Obsessed (Karaoke Version)", - "id": "t-7L_AS5dxI" - }, - { - "title": "Mashmello x Lil Peep - Spotlight (Karaoke Version)", - "id": "ZziQWyu_XSU" - }, - { - "title": "Madison Beer - Fools (Karaoke Version)", - "id": "EhLHj9BG5Ik" - }, - { - "title": "Lil Uzi Vert - XO Tour Llif3 (Karaoke Version)", - "id": "EwBLyovTp-I" - }, - { - "title": "Dua Lipa - IDGAF (Karaoke Version)", - "id": "NvrQEgIKi4A" - }, - { - "title": "George Michael - I Can't Make You Love Me (Karaoke Version)", - "id": "F3mc9sDZTO8" - }, - { - "title": "Steve Aoki x Lauren Jauregui - All Night (Karaoke Version)", - "id": "1kLKbljlFM4" - }, - { - "title": "One Bit, Noah Cyrus - My Way (Karaoke Version)", - "id": "oEKyXKL25FU" - }, - { - "title": "Rita Ora - Anywhere (Karaoke Version)", - "id": "wg6wl4nOiBE" - }, - { - "title": "Alex Aiono, T-Pain - One At A Time (Karaoke Version)", - "id": "UyJzRKIhlBM" - }, - { - "title": "Maroon 5 - Wait (Karaoke Version)", - "id": "YrL49-3IBGU" - }, - { - "title": "Camila Cabello - Consequences (Karaoke Version)", - "id": "mGGnD-E5Cv0" - }, - { - "title": "dodie - party tattoos (Karaoke Version)", - "id": "k0QalR34P60" - }, - { - "title": "Madison Beer - Dead (Karaoke Version)", - "id": "NWSuaJwUzq8" - }, - { - "title": "Cashmere Cat, Major Lazer & Tory Lanez - Miss You (Karaoke Version)", - "id": "bOu5SNbGW8U" - }, - { - "title": "SZA - The Weekend (Karaoke Version)", - "id": "Yg691Hwao8Q" - }, - { - "title": "Bhad Bhabie - I Got It (Karaoke Version)", - "id": "CWnOzzcUuqQ" - }, - { - "title": "Camila Cabello - Something's Gotta Give (Karaoke Version)", - "id": "a5TvedGBijM" - }, - { - "title": "Hayley Kiyoko - Curious (Karaoke Version)", - "id": "oHKkwyl71pY" - }, - { - "title": "Chloe x Halle - Grown (Karaoke Version)", - "id": "K02eq35Y02A" - }, - { - "title": "Poppy - Bleach Blonde Baby (Karaoke Version)", - "id": "CzEZ9xmnNLw" - }, - { - "title": "Kendrick Lamar, SZA - All The Stars (Karaoke Version)", - "id": "OYINqt1ehqM" - }, - { - "title": "Billie Eilish - idontwannabeyouanymore (Karaoke Version)", - "id": "DUWfL7U-StI" - }, - { - "title": "Lil Pump - Designer (Karaoke Version)", - "id": "8UqkODFW-os" - }, - { - "title": "G-Eazy & Halsey - Him & I (Karaoke Version)", - "id": "d-y2PfMoUec" - }, - { - "title": "HRVY - Personal (Karaoke Version)", - "id": "dnQRUl1P6-s" - }, - { - "title": "Migos ft. 2 Chainz - Deadz (Karaoke Version)", - "id": "GxtFwKKSmT0" - }, - { - "title": "Martin Garrix & David Guetta - So Far Away (ft. Jamie Scott & Romy Dya) (Karaoke Version)", - "id": "Kd1oCn0MPLY" - }, - { - "title": "Anne-Marie - Then (Karaoke Version)", - "id": "9UyVKwvOxaY" - }, - { - "title": "Baby Ariel - Aww (Karaoke Version)", - "id": "622jnDi1swc" - }, - { - "title": "Bebe Rexha ft. Florida Georgia Line - Meant To Be (Karaoke Version)", - "id": "-cS2mcNnQfY" - }, - { - "title": "Grace VanderWaal - So Much More Than This (Karaoke Version)", - "id": "hE_xtfC592w" - }, - { - "title": "Camila Cabello - Never Be The Same (Karaoke Version)", - "id": "O6EhpqFNy_U" - }, - { - "title": "P!nk - Beautiful Trauma (Karaoke Version)", - "id": "_FhkZYVVrhA" - }, - { - "title": "Migos & Marshmello - Danger (Karaoke Version)", - "id": "B3bLng2uKAI" - }, - { - "title": "Camila Cabello - Real Friends (Karaoke Version)", - "id": "eJZ5QHJPQz8" - }, - { - "title": "Kygo ft. OneRepublic - Stranger Things (Karaoke Version)", - "id": "XRn8IBDAnkc" - }, - { - "title": "Mabel - Finders Keepers (Karaoke Version)", - "id": "9OCSivFvkL4" - }, - { - "title": "Anne-Marie - Heavy (Karaoke Version)", - "id": "Sj5qjGmGfcU" - }, - { - "title": "Louis Tomlinson - Miss You (Karaoke Version)", - "id": "wTaWuCk89dg" - }, - { - "title": "Luis Fonsi, Demi Lovato - Echamรฉ La Culpa (Karaoke Version)", - "id": "Zg06YxALGVw" - }, - { - "title": "Sam Smith - One Last Song (Karaoke Version)", - "id": "Pfxq1_j23gI" - }, - { - "title": "Calum Scott - You Are The Reason (Karaoke Version)", - "id": "zMcfZyb5wCo" - }, - { - "title": "Portugal. The Man - Feel It Still (Karaoke Version)", - "id": "ufX7yqEfv70" - }, - { - "title": "Fall Out Boy - HOLD ME TIGHT OR DON'T (Karaoke Version)", - "id": "a9or0V72vyQ" - }, - { - "title": "Jason Derulo - If I'm Lucky (Part 1) (Karaoke Version)", - "id": "8dJTrL1SCqM" - }, - { - "title": "BTS ft. Desiigner - MIC Drop (Steve Aoki Remix) (Karaoke Version)", - "id": "4LT_132jJoY" - }, - { - "title": "Alan Walker ft. Noah Cyrus - All Falls Down (Karaoke Version)", - "id": "Yy8_0pD6Fj0" - }, - { - "title": "Niall Horan - Flicker (Karaoke Version)", - "id": "Z5V-eI87cW0" - }, - { - "title": "Sia - Santa's Coming For Us (Karaoke Version)", - "id": "z7iaZ_7_IJA" - }, - { - "title": "Lil Uzi Vert, Oh Wonder ft. Nicki Minaj - The Way Life Goes (Remix) (Karaoke Version)", - "id": "axVfg9qI0UU" - }, - { - "title": "Imagine Dragons - Whatever It Takes (Karaoke Version)", - "id": "TaTWOBxwkhA" - }, - { - "title": "CNCO - Mamita (Karaoke Version)", - "id": "EAamam1pyyQ" - }, - { - "title": "Halsey - Bad At Love (Karaoke Version)", - "id": "7suNgqRla_Q" - }, - { - "title": "Harry Styles - Kiwi (Karaoke Version)", - "id": "ubnyl4AMk2M" - }, - { - "title": "Imagine Dragons - Thunder (Karaoke Version)", - "id": "zelLqyeP7_M" - }, - { - "title": "Louis Tomlinson - Just Like You (Karaoke Version)", - "id": "6O0RRnCTzhY" - }, - { - "title": "Clean Bandit ft. Julia Michaels - I Miss You (Karaoke Version)", - "id": "ru-hH9B-KPo" - }, - { - "title": "Taylor Swift - Call It What You Want (Karaoke Version)", - "id": "NH_fxTyZT_Y" - }, - { - "title": "Liam Payne - Bedroom Floor (Karaoke Version)", - "id": "zwIGwnhZmYw" - }, - { - "title": "Marshmello ft. Khalid - Silence (Karaoke Version)", - "id": "fXr8MtRBczQ" - }, - { - "title": "Taylor Swift - Gorgeous (Karaoke Version)", - "id": "MohQxsMc2Es" - }, - { - "title": "Selena Gomez, Marshmello - Wolves (Karaoke Version)", - "id": "hwG31U_EAv8" - }, - { - "title": "BIQ SHAQ - MANS NOT HOT (Karaoke Version)", - "id": "uqaOdIyEUrA" - }, - { - "title": "Lil Pump - \"Gucci Gang\" (Karaoke Version)", - "id": "x2BzevUyqhI" - }, - { - "title": "Maroon 5 ft. SZA - What Lovers Do (Karaoke Version)", - "id": "fX4blT-SnLw" - }, - { - "title": "Grease - You're The One That I Want (Karaoke Version)", - "id": "5-4X6Ck-_0c" - }, - { - "title": "Avicii ft. Rita Ora - Lonely Together (Karaoke Version)", - "id": "AGdiPC9iKgM" - }, - { - "title": "Ed Sheeran - Bibia Be Ye Ye (Karaoke Version)", - "id": "Jd5Rb3BG7zo" - }, - { - "title": "League of Legends ft. Against The Current - Legends Never Die (Karaoke Version)", - "id": "XHP9jEIO0mo" - }, - { - "title": "Machine Gun Kelly - Let You Go (Karaoke Version)", - "id": "ww5ejsBriBM" - }, - { - "title": "Fifth Harmony - Angel (Karaoke Version)", - "id": "vlgK0aHqscQ" - }, - { - "title": "Logan Paul - Outta My Hair (Karaoke Version)", - "id": "4ayExqUfOhU" - }, - { - "title": "Noah Cyrus ft. XXXTentacion - Again (Karaoke Version)", - "id": "xGdjxcmlbAc" - }, - { - "title": "Post Malone ft. 21 Savage - Rockstar (Karaoke Version)", - "id": "TP7JVS4YPpA" - }, - { - "title": "Sam Smith - Pray (Karaoke Version)", - "id": "Gn8ef47x4w0" - }, - { - "title": "Charlie Puth - How Long (Karaoke Version)", - "id": "jzz2RU5hOCc" - }, - { - "title": "Hailee Steinfeld & Alesso (ft. Florida Georgia Line & watt) - Let Me Go (Karaoke Version)", - "id": "kSN0AiZiveM" - }, - { - "title": "Jake Paul - THE JAKE PAULERS SONG (Karaoke Version)", - "id": "1KxWv2WiUIw" - }, - { - "title": "Nick Jonas, Anne Marie ft. Mike Posner - Remember I Told You (Karaoke Version)", - "id": "Zi2XxyhpRuM" - }, - { - "title": "Fifth Harmony - He Like That (Karaoke Version)", - "id": "_-g95MtfenQ" - }, - { - "title": "CNCO, Little Mix - Reggaetรณn Lento (Remix) (Karaoke Version)", - "id": "pwAyFz9A_Kc" - }, - { - "title": "Niall Horan - Too Much To Ask (Karaoke Version)", - "id": "kMVE-he0wMw" - }, - { - "title": "Demi Lovato - You Don't Do It For Me Anymore (Karaoke Version)", - "id": "FirUcc4mN9M" - }, - { - "title": "Gabbie Hanna - Out Loud (Karaoke Version)", - "id": "bWhDB28CUHQ" - }, - { - "title": "Why Don't We - These Girls (Karaoke Version)", - "id": "7FgFtvwcU-o" - }, - { - "title": "21 Savage - Bank Account (Karaoke Version)", - "id": "OYyKnfX1rwk" - }, - { - "title": "Jake Paul ft. Team 10 - It's Everyday Bro (Karaoke Version)", - "id": "EfqzDcgux_U" - }, - { - "title": "ZAYN, Sia - Dusk Till Dawn (Karaoke Version)", - "id": "NvP568DzP5c" - }, - { - "title": "Logic ft. Alessia Cara & Khalid - 1-800-273-8255 (Karaoke Version)", - "id": "szJnuzyu0ng" - }, - { - "title": "Khalid - Location (Karaoke Version)", - "id": "pgDxe8JO_wY" - }, - { - "title": "J Balvin, Willy William - Mi Gente (Karaoke Version)", - "id": "m08bnH5G8p8" - }, - { - "title": "Neck Deep - In Bloom (Karaoke Version)", - "id": "6YBWfoORoIs" - }, - { - "title": "Cardi B - Bodak Yellow (Karaoke Version)", - "id": "1g8S-enLQ60" - }, - { - "title": "Descendants 2 - Ways To Be Wicked (Karaoke Version)", - "id": "IEn49CU7IrA" - }, - { - "title": "Sam Smith - Too Good At Goodbyes (Karaoke Version)", - "id": "yiOHvS4rP5c" - }, - { - "title": "Julia Michaels - Worst In Me (Karaoke Version)", - "id": "qF0yc2Ko35I" - }, - { - "title": "Rachel Platten - Broken Glass (Karaoke Version)", - "id": "AyAW6LzQffA" - }, - { - "title": "Snakehips, Anne-Marie ft. Joey Bada$$ - Either Way (Karaoke Version)", - "id": "AyXr1RTColg" - }, - { - "title": "Justin Bieber, BloodPopยฎ - Friends (Karaoke Version)", - "id": "7_2bv5eN1oA" - }, - { - "title": "Camila Cabello ft. Young Thug - Havana (Karaoke Version)", - "id": "dd2nfgicFds" - }, - { - "title": "The Chainsmokers - Honest (Karaoke Version)", - "id": "3rg_QOVArVI" - }, - { - "title": "P!nk - What About Us (Karaoke Version)", - "id": "AFg3-6Yzo1I" - }, - { - "title": "Taylor Swift - ...Ready For It? (Karaoke Version)", - "id": "6ZwT3v-rZRk" - }, - { - "title": "Camila Cabello ft. Quavo - OMG (Karaoke Version)", - "id": "fRvhoHcOrrE" - }, - { - "title": "Kesha - Learn To Let Go (Karaoke Version)", - "id": "cBj9udL0KNk" - }, - { - "title": "Taylor Swift - Look What You Made Me Do (Karaoke Version)", - "id": "Rbtq0bHlvmU" - }, - { - "title": "Cara Delevingne - I Feel Everything (Karaoke Version)", - "id": "SQxc3weEzpk" - }, - { - "title": "Fifth Harmony ft. Gucci Mane - Down (Karaoke Version)", - "id": "QOYHjSK7D2Q" - }, - { - "title": "Grace VanderWaal - Moonlight (Karaoke Version)", - "id": "32-e78LIl8M" - }, - { - "title": "Migos - T-Shirt (Karaoke Version)", - "id": "cYAqQC_n-OA" - }, - { - "title": "Charli XCX - Boys (Karaoke Version)", - "id": "gzlOFnf1CMI" - }, - { - "title": "Drake - Signs (Karaoke Version)", - "id": "pMuMs9GmcIk" - }, - { - "title": "Louis Tomlinson ft. Bebe Rexha, Digital Farm Animals - Back To You (Karaoke Version)", - "id": "nM-4WxGjYW0" - }, - { - "title": "Dua Lipa - New Rules (Karaoke Version)", - "id": "TsEYfkT4eF8" - }, - { - "title": "Kendrick Lamar - ELEMENT. (Karaoke Version)", - "id": "jHvv2cnXBu4" - }, - { - "title": "The Script - Rain (Karaoke Version)", - "id": "Wo2yRe0rVuc" - }, - { - "title": "The Chainsmokers - Young (Karaoke Version)", - "id": "f8-mGqd2Z6k" - }, - { - "title": "Kesha - Praying (Karaoke Version)", - "id": "Hqd8SG6NMNo" - }, - { - "title": "Demi Lovato - Sorry Not Sorry (Karaoke Version)", - "id": "8e_X3ugkkkY" - }, - { - "title": "Lorde - Perfect Places (Karaoke Version)", - "id": "hELT-kYcugw" - }, - { - "title": "Sabrina Carpenter - Why (Karaoke Version)", - "id": "RAf5a3V5_W8" - }, - { - "title": "Julia Michaels - Uh Huh (Karaoke Version)", - "id": "PiyXW0pBcL0" - }, - { - "title": "French Montana ft. Swae Lee - Unforgettable (Karaoke Version)", - "id": "AmPXE25NxCM" - }, - { - "title": "Selena Gomez - Fetish (Karaoke Version)", - "id": "905cCBm40UM" - }, - { - "title": "Disney Descendants 2 - What's My Name (Karaoke Version)", - "id": "KH1Vpx7XZQg" - }, - { - "title": "Martin Garrix & Dua Lipa - Scared To Be Lonely (Karaoke Version)", - "id": "Wqi7jYhNh8M" - }, - { - "title": "Lady Gaga - The Edge Of Glory (Karaoke Version)", - "id": "lhh-ajANmcI" - }, - { - "title": "John Legend - Surefire (Karaoke Version)", - "id": "8gMkfyrXBsg" - }, - { - "title": "The Vamps, Martin Jensen - Middle Of The Night (Karaoke Version)", - "id": "0k9ptdxishw" - }, - { - "title": "Hailee Steinfeld - Most Girls (Karaoke Version)", - "id": "bAnMc7Tkgt4" - }, - { - "title": "Post Malone ft. Quavo - Congratulations (Karaoke Version)", - "id": "NjTs_oWyJdE" - }, - { - "title": "Charli XCX ft. Mร˜ - 3am (Pull Up) (Karaoke Version)", - "id": "BhEvk0d0zn4" - }, - { - "title": "Logan Paul ft. Why Don't We - Help Me Help You (Karaoke Version)", - "id": "hK5Ku98zXW0" - }, - { - "title": "Noah Cyrus - I'm Stuck (Karaoke Version)", - "id": "dGf12oesrBw" - }, - { - "title": "David Guetta ft. Justin Bieber - 2U (Karaoke Version)", - "id": "k0ozznP9RcE" - }, - { - "title": "Katy Perry - Witness (Karaoke Version)", - "id": "kntgOSueUZs" - }, - { - "title": "Halsey ft. Lauren Jauregui - Strangers (Karaoke Version)", - "id": "DHP9Mm4Umlg" - }, - { - "title": "Coldplay - Hypnotised (Karaoke Version)", - "id": "M4ZxAIzVJt8" - }, - { - "title": "Fall Out Boy - Young And Menace (Karaoke Version)", - "id": "aV0W-jt6NI8" - }, - { - "title": "Katy Perry ft. Nicki Minaj - Swish Swish (Karaoke Version)", - "id": "Qj90N-DFezk" - }, - { - "title": "Ariana Grande - One Last Time (Karaoke Version)", - "id": "Ca-PCQ2LMk4" - }, - { - "title": "Selena Gomez - Bad Liar (Karaoke Version)", - "id": "fhT-bf1ws64" - }, - { - "title": "Alex Aiono - Question (Karaoke Version)", - "id": "jQjpf57IQq8" - }, - { - "title": "Halsey - Sorry (Karaoke Version)", - "id": "MvgCZV3Ceps" - }, - { - "title": "Halsey - Gasoline (Karaoke Version)", - "id": "nZWWMlEt1iY" - }, - { - "title": "Jonas Blue ft. William Singe - Mama (Karaoke Version)", - "id": "6SvC0PZ36Xg" - }, - { - "title": "Liam Payne ft. Quavo - Strip That Down (Karaoke Version)", - "id": "oTW_1OZmXq0" - }, - { - "title": "Camila Cabello - Crying In The Club (Karaoke Version)", - "id": "NO_mDJy0JRg" - }, - { - "title": "Zara Larsson - Don't Let Me Be Yours (Karaoke Version)", - "id": "Ont1JfOY8tA" - }, - { - "title": "Camila Cabello - I Have Questions (Karaoke Version)", - "id": "HivnrVR-tbA" - }, - { - "title": "Martin Garrix & Troye Sivan - There For You (Karaoke Version)", - "id": "hR3ivXi53XM" - }, - { - "title": "Ed Sheeran - Eraser (Karaoke Version)", - "id": "0yd_pp02_oY" - }, - { - "title": "Cheat Codes ft. Demi Lovato - No Promises (Karaoke Version)", - "id": "88DkSggcq8s" - }, - { - "title": "Paramore - Told You So (Karaoke Version)", - "id": "jT7N-6Creso" - }, - { - "title": "Alan Walker ft. Gavin James - Tired (Karaoke Version)", - "id": "V9vY5Unu06k" - }, - { - "title": "Bebe Rexha ft. Lil Wayne - The Way I Are (Dance With Somebody) (Karaoke Version)", - "id": "8jpENg-mnKo" - }, - { - "title": "Harry Styles - Two Ghosts (Karaoke Version)", - "id": "YqibcP7jvpg" - }, - { - "title": "Jax Jones ft. RAYE - You Don't Know Me (Karaoke Version)", - "id": "XsF2eUAfmFE" - }, - { - "title": "Halsey - Eyes Closed (Karaoke Version)", - "id": "odDA2rs-G9M" - }, - { - "title": "Dwayne Johnson - You're Welcome (from \"Moana\") (Karaoke Version)", - "id": "tIYURcd4WB4" - }, - { - "title": "Niall Horan - Slow Hands (Karaoke Version)", - "id": "3W9XbTGdakA" - }, - { - "title": "Miley Cyrus - Malibu (Karaoke Version)", - "id": "yF7IS5Lw_ws" - }, - { - "title": "Katy Perry ft. Migos - Bon Appรฉtit (Karaoke Version)", - "id": "psQg1L3scRM" - }, - { - "title": "Selena Gomez - Only You (Karaoke Version)", - "id": "muZhBiA2Mks" - }, - { - "title": "DJ Khaled ft. Justin Bieber, Quavo, Chance The Rapper, Lil Wayne - I'm The One (Karaoke Version)", - "id": "sTvMJOFK_Zo" - }, - { - "title": "Lana Del Rey ft. The Weeknd - Lust For Life (Karaoke Version)", - "id": "pdLxI9g_578" - }, - { - "title": "Paramore - Hard Times (Karaoke Version)", - "id": "Fpm77jl9gWE" - }, - { - "title": "Harry Styles - Sweet Creature (Karaoke Version)", - "id": "Fsqq8hjLDO0" - }, - { - "title": "TINI - Got Me Started (Karaoke Version)", - "id": "ySmyrl1jLgE" - }, - { - "title": "Noah Cyrus - Stay Together (Karaoke Version)", - "id": "agnsQRoInFE" - }, - { - "title": "Lady Gaga - The Cure (Karaoke Version)", - "id": "FHTACCMr_e0" - }, - { - "title": "Luis Fonsi, Daddy Yankee ft. Justin Bieber - Despacito (Karaoke Version)", - "id": "jRpDuEgqQQQ" - }, - { - "title": "Birdy - People Help The People (Karaoke Version)", - "id": "hjZKniV_hSc" - }, - { - "title": "Nick Jonas - Chainsaw (Karaoke Version)", - "id": "pU_pOefSxzI" - }, - { - "title": "Lady Gaga - Bad Romance (Karaoke Version)", - "id": "Ep0-h-rGHRk" - }, - { - "title": "Charlie Puth - Attention (Karaoke Version)", - "id": "6I3lHjuNn7g" - }, - { - "title": "Shawn Mendes - There's Nothing Holding Me Back (Karaoke Version)", - "id": "69mrR_Lc_yA" - }, - { - "title": "Halsey - Castle (Karaoke Version)", - "id": "z1hGda8mftU" - }, - { - "title": "INNA - Gimme Gimme (Karaoke Version)", - "id": "KbnFlfRT4gE" - }, - { - "title": "Sia - Unstoppable (Karaoke Version)", - "id": "v464ay9eei0" - }, - { - "title": "Daya - Cool (Karaoke Version)", - "id": "IXx2MMuGFzM" - }, - { - "title": "Michael Jackson - Billie Jean (Karaoke Version)", - "id": "eXqBhDAlVCc" - }, - { - "title": "Sigrid - Don't Kill My Vibe (Karaoke Version)", - "id": "IlnDjUtKMck" - }, - { - "title": "Hey Violet - Break My Heart (Karaoke Version)", - "id": "dJgRhxg55fg" - }, - { - "title": "KYLE ft. Lil Yachty - iSpy (Karaoke Version)", - "id": "wzjl9K2269U" - }, - { - "title": "ZAYN, PARTYNEXTDOOR - Still Got Time (Karaoke Version)", - "id": "zFuryVNrq0M" - }, - { - "title": "Halsey - Now Or Never (Karaoke Version)", - "id": "mukvwXNiBRY" - }, - { - "title": "Kendrick Lamar - HUMBLE. (Karaoke Version)", - "id": "AnQESyZisU0" - }, - { - "title": "Lea Michele - Love Is Alive (Karaoke Version)", - "id": "2dvrh6g2K_4" - }, - { - "title": "Drake - Passionfruit (Karaoke Version)", - "id": "XYxt7P6Embw" - }, - { - "title": "Melanie Martinez - Teddy Bear (Karaoke Version)", - "id": "fob4meCULZc" - }, - { - "title": "Bea Miller - Yes Girl (Karaoke Version)", - "id": "qXp-Km8oVLk" - }, - { - "title": "Jonas Blue ft. RAYE - By Your Side (Karaoke Version)", - "id": "rcarTN2aHYU" - }, - { - "title": "Tinashe - Flame (Karaoke Version)", - "id": "Xe9qCMlQZzo" - }, - { - "title": "Jason Derulo ft. Nicki Minaj & Ty Dolla $ign - Swalla (Karaoke Version)", - "id": "_9sw6y2YzIA" - }, - { - "title": "The Chainsmokers - The One (Karaoke Version)", - "id": "zpXSTPUdrgc" - }, - { - "title": "Maggie Lindemann - Pretty Girl (Karaoke Version)", - "id": "1JPujd2PKHE" - }, - { - "title": "Lorde - Liability (Karaoke Version)", - "id": "J6ARCHkdQGc" - }, - { - "title": "Cรฉline Dion - How Does A Moment Last Forever (Karaoke Version)", - "id": "9v8RX3vEru4" - }, - { - "title": "Zedd, Alessia Cara - Stay (Karaoke Version)", - "id": "VmWN7k0Jenw" - }, - { - "title": "Clean Bandit ft. Zara Larsson - Symphony (Karaoke Version)", - "id": "Azyv_umdqvk" - }, - { - "title": "Harry Styles - Sign Of The Times (Karaoke Version)", - "id": "vAjEtYdqhTA" - }, - { - "title": "Ed Sheeran - Save Myself (Karaoke Version)", - "id": "sp824istfKk" - }, - { - "title": "Lady Gaga - Million Reasons (Karaoke Version)", - "id": "BliQLvRf2EI" - }, - { - "title": "The Chainsmokers & Coldplay - Something Just Like This (Karaoke Version)", - "id": "1FE7rNOZjC8" - }, - { - "title": "Sara Bareilles - I Choose You (Karaoke Version)", - "id": "0S2xCNh3vzg" - }, - { - "title": "Alan Walker - Alone (Karaoke Version)", - "id": "w0F6goHM1DM" - }, - { - "title": "Ed Sheeran - Perfect (Karaoke Version)", - "id": "sPMA1tqWuf4" - }, - { - "title": "Ruth B - Golden (Karaoke Version)", - "id": "WtjdN5aE_qk" - }, - { - "title": "Troye Sivan - for him. (Karaoke Version)", - "id": "7NspcLdV4xM" - }, - { - "title": "Maroon 5 ft. Future - Cold (Karaoke Version)", - "id": "woe2zIokb9Q" - }, - { - "title": "Ed Sheeran - Galway Girl (Karaoke Version)", - "id": "2axTFDFnj-Q" - }, - { - "title": "Alex Aiono - Work The Middle (Karaoke Version)", - "id": "LbLgwcdPhkg" - }, - { - "title": "Lorde - Green Light (Karaoke Version)", - "id": "tR_cx_9N4CI" - }, - { - "title": "Kygo, Selena Gomez - It Ain't Me (Karaoke Version)", - "id": "p9StrUuAtCg" - }, - { - "title": "LANY - ILYSB (Karaoke Version)", - "id": "JjVtGC7jcdU" - }, - { - "title": "gnash - lonely again (Karaoke Version)", - "id": "xo64PSxIDlI" - }, - { - "title": "All Time Low - Dirty Laundry (Karaoke Version)", - "id": "dlTImpZKXSE" - }, - { - "title": "Sam Hunt - Body Like A Back Road (Karaoke Version)", - "id": "7Q8cvTTsyp4" - }, - { - "title": "Shawn Mendes - Mercy (Acoustic) (Karaoke Version)", - "id": "2n8UwVOeCrg" - }, - { - "title": "Ed Sheeran - Supermarket Flowers (Karaoke Version)", - "id": "8xWHhumQj4c" - }, - { - "title": "The Chainsmokers ft. XYLร˜ - Setting Fires (Karaoke Version)", - "id": "cQ3TSUnfNhA" - }, - { - "title": "Rae Sremmurd - Swang (Karaoke Version)", - "id": "84nTyGKQnbg" - }, - { - "title": "blink-182 - I Miss You (Karaoke Version)", - "id": "HeK_Rb9Mkg0" - }, - { - "title": "The Weeknd - Reminder (Karaoke Version)", - "id": "IRRgg8ItrfI" - }, - { - "title": "Ariana Grande ft. Mac Miller - The Way (Karaoke Version)", - "id": "RzpLllzC-l8" - }, - { - "title": "Olivia O'Brien - Empty (Karaoke Version)", - "id": "s_uRP4zLxk8" - }, - { - "title": "Little Mix - No More Sad Songs (Karaoke Version)", - "id": "GL7FQZcQtjc" - }, - { - "title": "Noah Cyrus ft. Labrinth - Make Me (Cry) (Karaoke Version)", - "id": "bDmb3L4sbLA" - }, - { - "title": "Julia Michaels - Issues (Karaoke Version)", - "id": "SfYXCwmgOoc" - }, - { - "title": "Astrid S - Hurts So Good (Karaoke Version)", - "id": "uLBk13Iza9o" - }, - { - "title": "Alan Walker - Sing Me To Sleep (Karaoke Version)", - "id": "9-3_EknhrI4" - }, - { - "title": "The 1975 - Fallingforyou (Karaoke Version)", - "id": "mRhsBemoqAc" - }, - { - "title": "Martin Garrix & Bebe Rexha - In The Name Of Love (Karaoke Version)", - "id": "c8Xu1nJYx8M" - }, - { - "title": "Hey Violet - Guys My Age (Karaoke Version)", - "id": "epU0ayO75kc" - }, - { - "title": "My Chemical Romance - Cancer (Karaoke Version)", - "id": "HEFOCv9d8Kc" - }, - { - "title": "Imagine Dragons - Believer (Karaoke Version)", - "id": "sfbCZw_c2Zs" - }, - { - "title": "Childish Gambino - Redbone (Karaoke Version)", - "id": "VtlB9rCmv1k" - }, - { - "title": "Grace VanderWaal - Clay (Karaoke Version)", - "id": "wjooeVt6nBQ" - }, - { - "title": "Zara Larsson ft. Ty Dolla $ign - So Good (Karaoke Version)", - "id": "oD3-0bH6Sfw" - }, - { - "title": "Alanis Morissette - Ironic (Karaoke Version)", - "id": "m497f9hB9Gs" - }, - { - "title": "Lana Del Rey - Love (Karaoke Version)", - "id": "K1iXqjAY2Pk" - }, - { - "title": "Ariana Grande, John Legend - Beauty & The Beast (Karaoke Version)", - "id": "RH43YE20y-0" - }, - { - "title": "Maroon 5 ft. Kendrick Lamar - Don't Wanna Know (Karaoke Version)", - "id": "g_ruB5eA2pk" - }, - { - "title": "Katy Perry ft. Skip Marley - Chained To The Rhythm (Karaoke Version)", - "id": "G_CKqgdVpyM" - }, - { - "title": "Robin Schulz & David Guetta & Cheat Codes - Shed A Light (Karaoke Version)", - "id": "HsjYe3NcOm4" - }, - { - "title": "Sia - Angel By The Wings (Karaoke Version)", - "id": "gzhhpkuxz4E" - }, - { - "title": "Halsey - Not Afraid Anymore (Karaoke Version) - from the Fifty Shades Darker Soundtrack", - "id": "zbdnIlH5zP8" - }, - { - "title": "Troye Sivan ft. Betty Who - HEAVEN (Karaoke Version)", - "id": "xCaT4RuOrJY" - }, - { - "title": "The Weeknd - Secrets (Karaoke Version)", - "id": "SG39UNNFls0" - }, - { - "title": "Krewella - Team (Karaoke Version)", - "id": "1Ehi59_-9aY" - }, - { - "title": "Migos ft. Lil Uzi Vert - Bad and Boujee (Karaoke Version)", - "id": "e4kJhbDoGq8" - }, - { - "title": "Drake - Fake Love (Karaoke Version)", - "id": "YWKguc63wt8" - }, - { - "title": "Sabrina Carpenter - Thumbs (Karaoke Version)", - "id": "sPnxLo6CRcQ" - }, - { - "title": "Little Mix - Touch (Karaoke Version)", - "id": "Gn7LvvBAP80" - }, - { - "title": "Ariana Grande ft. Future - Everyday (Karaoke Version)", - "id": "L0zmjZStHAc" - }, - { - "title": "Whitney Houston - The Greatest Love Of All (Karaoke Version)", - "id": "aQEg6dwLFDc" - }, - { - "title": "Dua Lipa - Hotter Than Hell (Karaoke Version)", - "id": "qppiSoVLK8M" - }, - { - "title": "Bon Jovi - Always (Karaoke Version)", - "id": "RBgimRYxorE" - }, - { - "title": "Snakehips ft. ZAYN - Cruel (Karaoke Version)", - "id": "bKk9ywsZWps" - }, - { - "title": "Foreigner - I Want To Know What Love Is (Karaoke Version)", - "id": "p1r1DHgYm9Y" - }, - { - "title": "Jermaine Stewart - We Don't Have To Take Our Clothes Off (Karaoke Version)", - "id": "qPod0NSNSB8" - }, - { - "title": "The Chainsmokers ft. Phoebe Ryan - All We Know (Karaoke Version)", - "id": "9QEY6h03lYU" - }, - { - "title": "Panic! At The Disco - Don't Threaten Me With A Good Time (Karaoke Version)", - "id": "Bn9D3jocbdM" - }, - { - "title": "The Chainsmokers - Paris (Karaoke Version)", - "id": "ERprWn2lYS8" - }, - { - "title": "Panic! At The Disco - LA Devotee (Karaoke Version)", - "id": "oUBb60AR0-M" - }, - { - "title": "twenty one pilots - Cancer (Karaoke Version)", - "id": "kcvYFl_Ja7s" - }, - { - "title": "Sia - The Greatest (Karaoke Version)", - "id": "qC15Eif2ais" - }, - { - "title": "Niall Horan - This Town (Karaoke Version)", - "id": "q5723_RP524" - }, - { - "title": "Lil Wayne, Wiz Khalifa & Imagine Dragons w/ Logic & Ty Dolla $ign ft X Ambassadors - Sucker For Pain", - "id": "vxRU-NCq9bg" - }, - { - "title": "Charlie Puth - Dangerously (Karaoke Version)", - "id": "aQ_iIJa4GwU" - }, - { - "title": "Fifth Harmony ft. Fetty Wap - All In My Head (Flex) (Karaoke Version)", - "id": "JExZop1aqPU" - }, - { - "title": "Olivia O'Brien - hate u love u (Karaoke Version)", - "id": "5J60o-5pWkQ" - }, - { - "title": "Andy Black - We Don't Have To Dance (Karaoke Version)", - "id": "cvwDrU9tY-w" - }, - { - "title": "Ed Sheeran - Shape Of You (Karaoke Version)", - "id": "o71_MatpYV0" - }, - { - "title": "5 Seconds Of Summer - Girls Talk Boys (Karaoke Version)", - "id": "tpNJSR2jtDc" - }, - { - "title": "James Arthur - Say You Won't Let Go (Karaoke Version)", - "id": "jb2T4ZXL6R4" - }, - { - "title": "Ed Sheeran - Castle On The Hill (Karaoke Version)", - "id": "N56nBWBIlvk" - }, - { - "title": "Clean Bandit ft. Sean Paul & Anne-Marie - Rockabye (Karaoke Version)", - "id": "Gl78zFKbQbE" - }, - { - "title": "Fifth Harmony - Write On Me (Karaoke Version)", - "id": "c0rWoJzdhsQ" - }, - { - "title": "Little Mix - Shout Out To My Ex (Karaoke Version)", - "id": "UkzGk9v24UU" - }, - { - "title": "Auli'i Cravalho - How Far I'll Go (Karaoke Version)", - "id": "a5LOjg1EiAk" - }, - { - "title": "Calvin Harris ft. Rihanna - This Is What You Came For (Karaoke Version)", - "id": "p5s2gJ0fw4w" - }, - { - "title": "Demi Lovato - Body Say (Karaoke Version)", - "id": "c9FLftozHwg" - }, - { - "title": "Machine Gun Kelly & Camila Cabello - Bad Things (Karaoke Version)", - "id": "N4_tpI18un4" - }, - { - "title": "Before You Exit - Clouds (Karaoke Version)", - "id": "_eZnrqEK2Ys" - }, - { - "title": "Benny - Boys Will Be Boys (Karaoke Version)", - "id": "Tl90y31RWnI" - }, - { - "title": "Little Mix ft. Charlie Puth - Oops (Karaoke Version)", - "id": "HHa6BtZow0E" - }, - { - "title": "Train - Hey, Soul Sister (Karaoke Version)", - "id": "VmXansa3xTg" - }, - { - "title": "Sophia Grace ft. Silento - Girl In The Mirror (Karaoke Version)", - "id": "iYCxpzyfC1s" - }, - { - "title": "Alessia Cara - Scars To Your Beautiful (Karaoke Version)", - "id": "fD8lvKK_keM" - }, - { - "title": "Shawn Mendes - Mercy (Karaoke Version)", - "id": "3nt29LRZqFM" - }, - { - "title": "Major Lazer ft. Justin Bieber & Mร˜ - Cold Water (Karaoke Version)", - "id": "kMb71-aWthI" - }, - { - "title": "Britney Spears ft. Tinashe - Slumber Party (Karaoke Version)", - "id": "Kg8UVTUzZL4" - }, - { - "title": "DJ Khaled ft. Drake - For Free (Karaoke Version)", - "id": "vIIIxiFzpSU" - }, - { - "title": "DJ Snake ft. Justin Bieber - Let Me Love You (Karaoke Version)", - "id": "VP5ODDPUpcE" - }, - { - "title": "The Chainsmokers ft. Halsey - Closer (Karaoke Version)", - "id": "r0A_1UbB70o" - }, - { - "title": "Kehlani - Advice (Karaoke Version)", - "id": "K-KthlBioDs" - }, - { - "title": "Imagine Dragons - Levitate (from \"Passengers\") (Karaoke Version)", - "id": "FIYrNrwg8Uk" - }, - { - "title": "OneRepublic - Kids (Karaoke Version)", - "id": "AEbkkRn8i-Y" - }, - { - "title": "Aminรฉ - Caroline (Karaoke Version)", - "id": "aLA0hnx2UU8" - }, - { - "title": "Anna Clendening - To My Parents (Karaoke Version)", - "id": "Cr08cm7sHyM" - }, - { - "title": "Andy Williams - It's The Most Wonderful Time Of The Year (Karaoke Version)", - "id": "dD3I4k0gA2M" - }, - { - "title": "John Lennon - Happy Xmas (War Is Over) (Karaoke Version)", - "id": "6E0BRIN3Z0c" - }, - { - "title": "Owl City - Humbug (Karaoke Version)", - "id": "6ctk_hsJ_-o" - }, - { - "title": "Justin Bieber - Christmas Eve (Karaoke Version)", - "id": "Rov1ZlBzJhs" - }, - { - "title": "Grace VanderWaal - I Don't Know My Name (Karaoke Version)", - "id": "dlNbMMkldi0" - }, - { - "title": "Destiny's Child - Rudolph The Red-Nosed Reindeer (Karaoke Version)", - "id": "HEF4KjGTHLQ" - }, - { - "title": "Wham! - Last Christmas (Single Edit) (Karaoke Version)", - "id": "kaBRnhxPLdE" - }, - { - "title": "Bing Crosby - White Christmas (Karaoke Version)", - "id": "usgzxS7OfaM" - }, - { - "title": "Jordan Pruitt - Merry Christmas Baby (Karaoke Version)", - "id": "vavvsJmo4h4" - }, - { - "title": "Simple Plan - Christmas Every Day (Karaoke Version)", - "id": "a7aADI6WyF4" - }, - { - "title": "HELLO CHRISTMAS: Behind The Scenes!", - "id": "zlobBzhTMoQ" - }, - { - "title": "ZAYN & Taylor Swift - I Don't Wanna Live Forever (Karaoke Version)", - "id": "xz9biBoDpGs" - }, - { - "title": "Rag'n'Bone Man - Human (Karaoke Version)", - "id": "gf0taQyr0E0" - }, - { - "title": "Mud - Lonely This Christmas (Karaoke Version)", - "id": "_6obMYlPqf8" - }, - { - "title": "Zay Hilfigerrr & Zayion McCall โ€“ Juju On That Beat (Karaoke Version)", - "id": "afjaNdzlU1s" - }, - { - "title": "Little Mix - F.U. (Karaoke Version)", - "id": "PpcOtzW0s40" - }, - { - "title": "Johnny Cash - Hurt (Karaoke Version)", - "id": "Cjudlh8Mb3M" - }, - { - "title": "Hello Christmas - Christmas Without You (Official Karaoke Version)", - "id": "RRRvT5kfVyI" - }, - { - "title": "Rusted Root - Send Me On My Way (Karaoke Version)", - "id": "fEpfsVDPImI" - }, - { - "title": "TINI - Great Escape (Karaoke Version)", - "id": "uczT-O2s_Hc" - }, - { - "title": "Sabrina Carpenter - All We Have Is Love (Karaoke Version)", - "id": "B0UCDX9dJ9o" - }, - { - "title": "HELLO CHRISTMAS - Christmas Without You (Official Music Video)", - "id": "6cGnHyOxPzg" - }, - { - "title": "Paramore - Ignorance (Karaoke Version)", - "id": "30jXkZxbkyI" - }, - { - "title": "twenty one pilots - Lane Boy (Karaoke Version)", - "id": "Re_NSs2GqZY" - }, - { - "title": "Louisa Johnson - So Good (Karaoke Version)", - "id": "GsqF3WroG-Q" - }, - { - "title": "Alessia Cara - How Far I'll Go (Karaoke Version)", - "id": "z3QKTOUC6H8" - }, - { - "title": "Jon Bellion - All Time Low (Karaoke Version)", - "id": "78HYbOcswD4" - }, - { - "title": "Rae Sremmurd - Black Beatles (Karaoke Version)", - "id": "NV-USjtsMEI" - }, - { - "title": "Sabrina Carpenter - Shadows (Karaoke Version)", - "id": "PYiY74QERJA" - }, - { - "title": "Rihanna - Shut Up And Drive (Karaoke Version)", - "id": "fPVo9MnoiEc" - }, - { - "title": "Neiked feat. Dyo - Sexual (Karaoke Version)", - "id": "MbA79Qe2Jzo" - }, - { - "title": "Lia Marie Johnson - DNA (Karaoke Version)", - "id": "Sbc74Dhw1c8" - }, - { - "title": "Whitney Houston - How Will I Know (Karaoke Version)", - "id": "Mq9IidEy4So" - }, - { - "title": "Green Day - Holiday (Karaoke Version)", - "id": "azA7YCqiiZU" - }, - { - "title": "Melanie Martinez - Gingerbread Man (Karaoke Version)", - "id": "A33vNcNTGDM" - }, - { - "title": "Bebe Rexha - I Got You (Karaoke Version)", - "id": "T_gk8kaI45s" - }, - { - "title": "Madonna - Vogue (Karaoke Version)", - "id": "DI5QsCFHFrw" - }, - { - "title": "Phil Collins - In The Air Tonight (Karaoke Version)", - "id": "BRz_UpdVaK4" - }, - { - "title": "The Vamps & Matoma - All Night (Karaoke Version)", - "id": "KlWvgxsPk74" - }, - { - "title": "Britney Spears - ...Baby One More Time (Karaoke Version)", - "id": "PYpU2TxIzAM" - }, - { - "title": "Nicki Minaj ft. Ariana Grande - Get On Your Knees (Karaoke Version)", - "id": "rCM6K2qyhKw" - }, - { - "title": "Katrina and The Waves - Walking On Sunshine (Karaoke Version)", - "id": "f76Ue9ki3_U" - }, - { - "title": "Andy Grammer - Fresh Eyes (Karaoke Version)", - "id": "gGOiwfXuw2M" - }, - { - "title": "Oh Wonder - Lose It (Karaoke Version)", - "id": "x6d5SPKrn60" - }, - { - "title": "DNCE - Body Moves (Karaoke Version)", - "id": "UjDsK6VFBmc" - }, - { - "title": "Kesha - TiK ToK (Karaoke Version)", - "id": "SY37clW29Os" - }, - { - "title": "Madilyn Bailey - Wiser (Karaoke Version)", - "id": "-AEHGMdgCkk" - }, - { - "title": "Galantis & Hook N Sling - Love On Me (Karaoke Version)", - "id": "wWKpushhiV0" - }, - { - "title": "B.o.B ft. Hayley Williams - Airplanes (Karaoke Version)", - "id": "5nziYy_f6Xo" - }, - { - "title": "Becky G - Sola (Karaoke Version)", - "id": "j2M23mNY-aI" - }, - { - "title": "Panic! At The Disco - This Is Gospel (Karaoke Version)", - "id": "g5Ny-QaoZ_A" - }, - { - "title": "Biffy Clyro - Many Of Horror (Karaoke Version)", - "id": "T72PR04Nb0s" - }, - { - "title": "Jacob Sartorius - All My Friends (Karaoke Version)", - "id": "TM8aw1fr4RI" - }, - { - "title": "Little Mix - How Ya Doin'? (Karaoke Version)", - "id": "hTE4K0OQ-Ao" - }, - { - "title": "LP - Lost On You (Karaoke Version)", - "id": "9Mpv9Wlij5g" - }, - { - "title": "Melanie Martinez - Dead To Me (Karaoke Version)", - "id": "2Yazj2DJ_LE" - }, - { - "title": "Oasis - Wonderwall (Karaoke Version)", - "id": "R_EXyGWI9rU" - }, - { - "title": "Christine and the Queens - Tilted (Karaoke Version)", - "id": "7IaPvlHvVqI" - }, - { - "title": "Ariana Grande - Greedy (Karaoke Version)", - "id": "K7lc7NrJ-3g" - }, - { - "title": "Rick Astley - Never Gonna Give You Up (Karaoke Version)", - "id": "8leAAwMIigI" - }, - { - "title": "Little Mix - Little Me (Karaoke Version)", - "id": "-3zo_TEI5qA" - }, - { - "title": "Katy Perry - Walking On Air (Karaoke Version)", - "id": "Ys_V1kOBoqM" - }, - { - "title": "Selena Gomez - Me And My Girls (Karaoke Version)", - "id": "ERt4OQCSuhg" - }, - { - "title": "Demi Lovato ft. Sirah - Waitin For You (Karaoke Version)", - "id": "MYeP6CTaeMM" - }, - { - "title": "D.R.A.M. feat. Lil Yachty - Broccoli (Karaoke Version)", - "id": "11TlwFxNO2M" - }, - { - "title": "Galantis - Runaway (U & I) (Karaoke Version)", - "id": "yTXNX8TGWxI" - }, - { - "title": "twenty one pilots - Migraine (Karaoke Version)", - "id": "1wCF8bRsFfo" - }, - { - "title": "Kelsea Ballerini - Peter Pan (Karaoke Version)", - "id": "CmmX9QOCyRg" - }, - { - "title": "Green Day - Bang Bang (Karaoke Version)", - "id": "eYg8CLABiQo" - }, - { - "title": "Halsey - Control (Karaoke Version)", - "id": "c3LmNdgNFy8" - }, - { - "title": "Ariana Grande ft. Nicki Minaj - Side To Side (Karaoke Version)", - "id": "GlkwnJTIrcI" - }, - { - "title": "Tove Lo - Cool Girl (Karaoke Version)", - "id": "YenRFrfLCBQ" - }, - { - "title": "Laura Marano - Miraculous Ladybug Theme Song (Karaoke Version)", - "id": "_w7YnxZ11SI" - }, - { - "title": "Zara Larsson - Ain't My Fault (Karaoke Version)", - "id": "dZHQRpj7CQI" - }, - { - "title": "Barenaked Ladies - One Week (Karaoke Version)", - "id": "eZOhZFFpdU4" - }, - { - "title": "Ron Pope - A Drop In The Ocean (Karaoke Version)", - "id": "K54Ca4CrKzg" - }, - { - "title": "Michael Bublรฉ - Haven't Met You Yet (Karaoke Version)", - "id": "247YolCxlpI" - }, - { - "title": "The Girl And The Dreamcatcher - Written In The Stars (Karaoke Version)", - "id": "SJSzWWyoRKI" - }, - { - "title": "Selena Gomez - Perfect (Karaoke Version)", - "id": "bIUME7pcACA" - }, - { - "title": "Anders Lystell - Faster Car (Karaoke Version)", - "id": "wPPLQpRu7nA" - }, - { - "title": "Ellie Goulding - Still Falling For You (Karaoke Version)", - "id": "vIZTzbxUkG0" - }, - { - "title": "Kehlani - Gangsta (from Suicide Squad) (Karaoke Version)", - "id": "cyrpA6fx2sU" - }, - { - "title": "JoJo Siwa - Boomerang (Karaoke Version)", - "id": "KavWqUmVMYA" - }, - { - "title": "The Rembrandts - I'll Be There For You (Friends Theme Song) (Karaoke Version)", - "id": "opjN4O9zlGQ" - }, - { - "title": "Green Day - Good Riddance (Time Of Your Life) (Karaoke Version)", - "id": "xy9r0vhOVpk" - }, - { - "title": "Tory Lanez - Luv (Karaoke Version)", - "id": "e5xN1SRF8Zc" - }, - { - "title": "Green Day - Boulevard Of Broken Dreams (Karaoke Version)", - "id": "r8BdFXaYE8s" - }, - { - "title": "Calum Scott - Dancing On My Own (Karaoke Version)", - "id": "DvEXv4Shx7s" - }, - { - "title": "Hailee Steinfeld & Grey ft. ZEDD - STARVING (Karaoke Version)", - "id": "ew8wshsJGCQ" - }, - { - "title": "Melanie Martinez - Play Date (Karaoke Version)", - "id": "KuiloJgXsbA" - }, - { - "title": "Melanie Martinez - Cake (Karaoke Version)", - "id": "5J_D7SfIc94" - }, - { - "title": "Sabrina Carpenter ft. Sofia Carson - Wildside (Karaoke Version)", - "id": "yAoJEd0uZUc" - }, - { - "title": "Beyoncรฉ - Sorry (Karaoke Version)", - "id": "3tANSV2LglQ" - }, - { - "title": "Jacob Sartorius - Sweatshirt (Karaoke Version)", - "id": "PpflCk1daIY" - }, - { - "title": "The Girl and The Dreamcatcher - Make You Stay (Karaoke Version)", - "id": "g8ibaw1fOB4" - }, - { - "title": "Pokรฉmon - Theme Song (Karaoke Version)", - "id": "UdTzFfT-frE" - }, - { - "title": "Shawn Mendes - Treat You Better (Karaoke Version)", - "id": "QIJQ7dxuKgY" - }, - { - "title": "Katy Perry - Rise (Karaoke Version)", - "id": "6yQVtrqx5sU" - }, - { - "title": "Sabrina Carpenter - On Purpose (Karaoke Version)", - "id": "BXJ_0Jrr74Y" - }, - { - "title": "Laura Marano - Boombox (Karaoke Version)", - "id": "IesptmydsYA" - }, - { - "title": "DNCE - Toothbrush (Karaoke Version)", - "id": "clevuVa40Vs" - }, - { - "title": "The Offspring - Pretty Fly (For A White Guy) (Karaoke Version)", - "id": "AqR295kgmDU" - }, - { - "title": "Melanie Martinez - Pacify Her (Karaoke Version)", - "id": "gY-Wl5CfFAY" - }, - { - "title": "Robyn - Dancing On My Own (Karaoke Version)", - "id": "Ch_xInCwiF4" - }, - { - "title": "The Vamps - Rest Your Love (Karaoke Version)", - "id": "UtPwxeKHUSo" - }, - { - "title": "Melanie Martinez - Milk and Cookies (Karaoke Version)", - "id": "TKB4VcdWiQc" - }, - { - "title": "Florida Georgia Line - H.O.L.Y. (Karaoke Version)", - "id": "IdPO76f4kmI" - }, - { - "title": "Descendants - Did I Mention (Karaoke Version)", - "id": "0_p8p17vDJ0" - }, - { - "title": "Jennifer Lopez - Ain't Your Mama (Karaoke Version)", - "id": "z8JgE6FDQyg" - }, - { - "title": "Bea Miller - Dracula (Karaoke Version)", - "id": "JYhavU3IhfQ" - }, - { - "title": "X Ambassadors - Unsteady (Karaoke Version)", - "id": "fkoOKFgiNXQ" - }, - { - "title": "Seal - Kiss From A Rose (Karaoke Version)", - "id": "Ug6Mr144qrM" - }, - { - "title": "The 1975 - A Change Of Heart (Karaoke Version)", - "id": "sgIMKZt0RYk" - }, - { - "title": "High School Musical 2 - Fabulous (Karaoke Version)", - "id": "42sZMRaJe5w" - }, - { - "title": "Kent Jones - Don't Mind (Karaoke Version)", - "id": "rfCgDUZCzHo" - }, - { - "title": "Green Day - Basket Case (Karaoke Version)", - "id": "UntbNt8rK4w" - }, - { - "title": "Melanie Martinez - Training Wheels (Karaoke Version)", - "id": "3rIbAe4daG0" - }, - { - "title": "Melanie Martinez - Alphabet Boy (Karaoke Version)", - "id": "u2jQRPVtfgE" - }, - { - "title": "twenty one pilots - Heathens (from Suicide Squad) (Karaoke Version)", - "id": "hYMHaamhiKU" - }, - { - "title": "Andy Grammer - Back Home (Karaoke Version)", - "id": "pmmakNMzJ7Y" - }, - { - "title": "Jess Glynne - Take Me Home (Karaoke, Single Version)", - "id": "8w1lQpUo16A" - }, - { - "title": "Shakira - Try Everything (Karaoke Version)", - "id": "HJXW27K79T4" - }, - { - "title": "Paramore - Still Into You (Karaoke Version)", - "id": "2lPtXYwT-A4" - }, - { - "title": "Katy Perry - Hot 'n' Cold (Karaoke Version)", - "id": "OWd-2SVsV50" - }, - { - "title": "Green Day - Wake Me Up When September Ends (Karaoke Version)", - "id": "PE9rE3E-fGo" - }, - { - "title": "The Jungle Book - Bare Necessities (Karaoke Version)", - "id": "NVEf7dhMurM" - }, - { - "title": "Kelly Clarkson - Since U Been Gone (Karaoke Version)", - "id": "B8S0l--gHgA" - }, - { - "title": "Smash Mouth - All Star (Karaoke Version)", - "id": "ABOYo7ioQJo" - }, - { - "title": "Andra Day - Rise Up (Karaoke Version)", - "id": "J_E1mLcgYq4" - }, - { - "title": "Les Miserables - I Dreamed A Dream (Karaoke Version)", - "id": "ruviSIVo-TM" - }, - { - "title": "Flume ft. Kai - Never Be Like You (Karaoke Version)", - "id": "ZURU1Wu-cWc" - }, - { - "title": "twenty one pilots - Ride (Karaoke Version)", - "id": "muSbrUYiqrI" - }, - { - "title": "Paramore - Misery Business (Karaoke Version)", - "id": "dZUHFTH2wYY" - }, - { - "title": "Lukas Graham - Mama Said (Karaoke Version)", - "id": "pUso35emJpU" - }, - { - "title": "High School Musical 2 - You Are The Music In Me (Karaoke Version)", - "id": "Yd4en3dMFY8" - }, - { - "title": "Zedd, Kesha - True Colors (Karaoke Version)", - "id": "uBRuA20sX_s" - }, - { - "title": "The 1975 - Somebody Else (Karaoke Version)", - "id": "mK_1Ldh6ClA" - }, - { - "title": "Ariana Grande - Into You (Karaoke Version)", - "id": "I5KLeZM_O2Y" - }, - { - "title": "Zendaya - Neverland (Karaoke Version)", - "id": "YkcrN24JyKk" - }, - { - "title": "Jason Derulo - If It Ain't Love (Karaoke Version)", - "id": "81cN3C6onmk" - }, - { - "title": "Kygo - Firestone (Karaoke Version)", - "id": "xdX_Bcu-RZ4" - }, - { - "title": "Desiigner - Panda (Karaoke Version)", - "id": "Wg_-u5cjI4s" - }, - { - "title": "Bill Medley, Jennifer Warnes - (I've Had) The Time Of My Life (Karaoke Version)", - "id": "8wBiWyYpaLc" - }, - { - "title": "Meghan Trainor - Me Too (Karaoke Version)", - "id": "9RcoA7RptvE" - }, - { - "title": "Sia - Breathe Me (Karaoke Version)", - "id": "xDfUBoZE6pE" - }, - { - "title": "Imagine Dragons - Radioactive (Karaoke Version)", - "id": "eGpM33XHyoE" - }, - { - "title": "P!nk - Try (Karaoke Version)", - "id": "wYIx_2s1qhc" - }, - { - "title": "Joel Adams - Please Don't Go (Karaoke Version)", - "id": "VBo85-_9rL0" - }, - { - "title": "Britney Spears - Everytime (Karaoke Version)", - "id": "2EaDDg5tVUg" - }, - { - "title": "Ruth B - 2 Poor Kids (Karaoke Version)", - "id": "3WyuNHA0ibg" - }, - { - "title": "Jess Glynne - Hold My Hand (Karaoke Version)", - "id": "iR2Zo-q-c7M" - }, - { - "title": "Pink - Just Like Fire (Karaoke Version)", - "id": "dLYuZC6Czfw" - }, - { - "title": "Hailee Steinfeld ft. DNCE - Rock Bottom (Karaoke Version)", - "id": "RRTUHx95HEg" - }, - { - "title": "Sofia Carson - Love Is The Name (Karaoke Version)", - "id": "QA2BRqXroEg" - }, - { - "title": "Owl City - Fireflies (Karaoke Version)", - "id": "gfVKv3NEAQ4" - }, - { - "title": "Drake ft. Wizkid & Kyla - One Dance (Karaoke Version)", - "id": "HoKBVMIi2IY" - }, - { - "title": "Fetty Wap - Again (Karaoke Version)", - "id": "Xf01s-uyIU4" - }, - { - "title": "Jessie J - Sweet Talker (Karaoke Version)", - "id": "8LV0EYgHhTg" - }, - { - "title": "Sia - Bird Set Free (Karaoke Version)", - "id": "QPUh2yRv5mM" - }, - { - "title": "One Direction - End Of The Day (Karaoke Version)", - "id": "gqaXhaKtEAQ" - }, - { - "title": "Melanie Martinez - Tag You're It (Karaoke Version)", - "id": "FiofhisfDqo" - }, - { - "title": "twenty one pilots - Tear In My Heart (Karaoke Version)", - "id": "F4EHViOQ8Cw" - }, - { - "title": "Ariana Grande ft. Lil Wayne - Let Me Love You (Karaoke Version)", - "id": "QDgmAFpOUIg" - }, - { - "title": "Tinie Tempah ft. Zara Larsson - Girls Like (Karaoke Version)", - "id": "zfKgUKBnWmw" - }, - { - "title": "Little Mix - DNA (Karaoke Version)", - "id": "MpS5i1pCwZE" - }, - { - "title": "Birdy - Not About Angels (Karaoke Version)", - "id": "ltMOo1u_-bI" - }, - { - "title": "Bebe Rexha - I'm Gonna Show You Crazy (Karaoke Version)", - "id": "YZUCpWQO2-Y" - }, - { - "title": "Anna Kendrick - Cups (Pitch Perfect's \"When I'm Gone) (Karaoke Version)", - "id": "mNL7iE-CxXA" - }, - { - "title": "Little Mix - Towers (Karaoke Version)", - "id": "dsp6TjJdT9M" - }, - { - "title": "Sia - You're Never Fully Dressed Without A Smile (Karaoke Version)", - "id": "oq5cBDKnzkw" - }, - { - "title": "Daya - Sit Still, Look Pretty (Karaoke Version)", - "id": "wXvtiVypqu0" - }, - { - "title": "Charlie Puth - I Won't Tell A Soul (Karaoke Version)", - "id": "KAlO0CHZkAo" - }, - { - "title": "Justin Bieber - Life Is Worth Living (Karaoke Version)", - "id": "DQzdMorZe04" - }, - { - "title": "Plain White T's - Hey There Delilah (Karaoke Version)", - "id": "ZakEbWobIj0" - }, - { - "title": "Taylor Swift - Our Song (Karaoke Version)", - "id": "ZNeW05ELGhE" - }, - { - "title": "Wicked - Defying Gravity (Karaoke Version)", - "id": "_ce778S_3iI" - }, - { - "title": "Little Mix - Grown (Karaoke Version)", - "id": "rAdXeUbC8Ac" - }, - { - "title": "Shawn Mendes - Aftertaste (Karaoke Version)", - "id": "RCEThvfFhOE" - }, - { - "title": "Adam Lambert ft. Laleh - Welcome To The Show (Karaoke Version)", - "id": "62dT3H0TcEQ" - }, - { - "title": "Kelly Clarkson - Invincible (Karaoke Version)", - "id": "a03arXvEC7c" - }, - { - "title": "Lady Gaga - Til It Happens To You (Karaoke Version)", - "id": "FaQUZdvmKlU" - }, - { - "title": "Nick Jonas ft. Tove Lo - Close (Karaoke Version)", - "id": "tCmltWCah6s" - }, - { - "title": "Katy Perry - Unconditionally (Karaoke Version)", - "id": "-rCIyA3RAjk" - }, - { - "title": "Selena Gomez - Kill Em With Kindness (Karaoke Version)", - "id": "h1_H_k9tUAg" - }, - { - "title": "Post Malone - White Iverson (Karaoke Version)", - "id": "bacP3MBLgBw" - }, - { - "title": "Kat Dahlia - I Think I'm In Love (Karaoke Version)", - "id": "j52kpEn5roY" - }, - { - "title": "Bebe Rexha ft. Nicki Minaj - No Broken Hearts (Karaoke Version)", - "id": "FXYEuxna-SI" - }, - { - "title": "Dove Cameron - Genie In A Bottle (Karaoke Version)", - "id": "ufWLRZ-r4xY" - }, - { - "title": "ZAYN - BeFoUr (Karaoke Version)", - "id": "QBrDvR0EE1E" - }, - { - "title": "Ariana Grande - Be Alright (Karaoke Version)", - "id": "tdvAUAHlE-4" - }, - { - "title": "Iggy Azalea - Team (Karaoke Version)", - "id": "8bwDkgcw0z8" - }, - { - "title": "Melanie Martinez - Cry Baby (Karaoke Version)", - "id": "Ax0IkqNBSoU" - }, - { - "title": "Kelly Clarkson - Piece By Piece (Karaoke Version)", - "id": "E7tMc-vrxTw" - }, - { - "title": "Alessia Cara - Wild Things (Karaoke Version)", - "id": "W-TlyOS38gs" - }, - { - "title": "The Weeknd - Often (Karaoke Version)", - "id": "2P7wedbhYAU" - }, - { - "title": "Sia - Cheap Thrills (Karaoke Version)", - "id": "LqrqgALM1Ug" - }, - { - "title": "ZAYN - LIKE I WOULD (Karaoke Version)", - "id": "oAFTlrdr9RI" - }, - { - "title": "DJ Snake ft. Bipolar Sunshine - Middle (Karaoke Version)", - "id": "fuhYxD5knq0" - }, - { - "title": "Bars and Melody - Shining Star (Karaoke Version)", - "id": "jJ2Wc6oWb2A" - }, - { - "title": "Meghan Trainor - NO (Karaoke Version)", - "id": "Qcc9zdXowPQ" - }, - { - "title": "Ariana Grande - Dangerous Woman (Karaoke Version)", - "id": "jppqAygqVTc" - }, - { - "title": "Ed Sheeran - One (Karaoke Version)", - "id": "PNkvcuj7m2E" - }, - { - "title": "Alicia Keys - If I Ain't Got You (Karaoke Version)", - "id": "M5Q0eiMzup0" - }, - { - "title": "twenty one pilots - Car Radio (Karaoke Version)", - "id": "w0ZoSRQ5xSg" - }, - { - "title": "Dove Cameron - Better In Stereo (Karaoke Version)", - "id": "Hq9ea4O6ODM" - }, - { - "title": "Fountains Of Wayne - Stacy's Mom (Karaoke Version)", - "id": "ddi4V-MS6GA" - }, - { - "title": "Lana Del Rey - Ultraviolence (Karaoke Version)", - "id": "xyzwVdyqonc" - }, - { - "title": "Tory Lanez - Say It (Karaoke Version)", - "id": "jIi_6LxcEsk" - }, - { - "title": "Zella Day - East Of Eden (Karaoke Version)", - "id": "vc0rxHPxuek" - }, - { - "title": "Ruth B - Superficial Love (Karaoke Version)", - "id": "mytwQTeWQOc" - }, - { - "title": "Years & Years ft. Tove Lo - Desire (Karaoke Version)", - "id": "rMHGzmw3fSc" - }, - { - "title": "Halsey - Colors (Karaoke Version)", - "id": "pYlFRLTwC8w" - }, - { - "title": "Celine Dion - My Heart Will Go On (Karaoke Version)", - "id": "cdgU8YmD3Kc" - }, - { - "title": "Halsey - New Americana (Karaoke Version)", - "id": "EtD7zSgSeWQ" - }, - { - "title": "The Chainsmokers feat. Daya - Don't Let Me Down (Karaoke Version)", - "id": "5FHDnD-VcHI" - }, - { - "title": "The 1975 - The Sound (Karaoke Version)", - "id": "oh5WsfZVVrE" - }, - { - "title": "Fifth Harmony ft. Ty Dolla Sign - Work From Home (Karaoke Version)", - "id": "CL4iT3AXbiQ" - }, - { - "title": "ZAYN - iT's YoU (Karaoke Version)", - "id": "ImAt_CFLcgc" - }, - { - "title": "Demi Lovato - Stone Cold (Karaoke Version)", - "id": "yFOxf2Y0H1g" - }, - { - "title": "Little Mix - Love Me Or Leave Me (Karaoke Version)", - "id": "Nn0RrIffVoI" - }, - { - "title": "Alan Walker - Faded (Karaoke Version)", - "id": "xf5rgfur4gw" - }, - { - "title": "Trevor Moran - I Wanna Fly (Karaoke Version)", - "id": "9vL1HBADzmU" - }, - { - "title": "Jason Derulo - Get Ugly (Karaoke Version)", - "id": "I1i9FIue6vk" - }, - { - "title": "Hailee Steinfeld - You're Such A (Karaoke Version)", - "id": "OmtagUirS1c" - }, - { - "title": "MAX - Gibberish (Karaoke Version)", - "id": "ltaCXPrmSO8" - }, - { - "title": "Sabrina Carpenter - Smoke And Fire (Karaoke Version)", - "id": "hfimYKn2qDQ" - }, - { - "title": "Mike Posner - I Took A Pill In Ibiza (SeeB Remix) (Karaoke Version)", - "id": "zPgyip8Hakg" - }, - { - "title": "Troye Sivan - Youth (Karaoke Version)", - "id": "csI7n4NKpmE" - }, - { - "title": "gnash - i hate u, i love u (feat. Olivia O'Brien) (Karaoke Version)", - "id": "_Bti9H8Y24U" - }, - { - "title": "Sophia Grace - Best Friends (Karaoke Version)", - "id": "3xi_rU1lshU" - }, - { - "title": "Demi Lovato - Without The Love (Karaoke Version)", - "id": "t0mMztpGBO0" - }, - { - "title": "WSTRN - In2 (Karaoke Version)", - "id": "zj2vI9EASdo" - }, - { - "title": "Little Mix - Secret Love Song, Pt. II (Karaoke Version)", - "id": "z_fs3a7_VYU" - }, - { - "title": "Justin Bieber - Purpose (Karaoke Version)", - "id": "t0-3FjSIKJY" - }, - { - "title": "Panic! At The Disco - Death Of A Bachelor (Karaoke Version)", - "id": "7MPe5t0o48c" - }, - { - "title": "Bryson Tiller - Don't (Karaoke Version)", - "id": "cSPGlDnzUYE" - }, - { - "title": "Lukas Graham - 7 Years (Karaoke Version)", - "id": "ALq8ihw4pwU" - }, - { - "title": "X Ambassadors - Renegades (Karaoke Version)", - "id": "e314BoqPb0c" - }, - { - "title": "Marvin Gaye - Sexual Healing (Karaoke Version)", - "id": "BAxsoTBR2HA" - }, - { - "title": "Zara Larsson - She's Not Me (Pt. 1 and 2) (Karaoke Version)", - "id": "ypOsRYE66FM" - }, - { - "title": "Fall Out Boy ft. Demi Lovato - Irresistible (Karaoke Version)", - "id": "r2U4YL-f91c" - }, - { - "title": "Flo Rida - My House (Karaoke Version)", - "id": "Bdu9nAVsd6I" - }, - { - "title": "Percy Sledge - When A Man Loves A Woman (Karaoke Version)", - "id": "Ep_HyhQo2iY" - }, - { - "title": "George Michael - Careless Whisper (Karaoke Version)", - "id": "1TIeDbnzp9M" - }, - { - "title": "Charlie Puth ft. Selena Gomez - We Don't Talk Anymore (Karaoke Version)", - "id": "IUmIIBeYr1I" - }, - { - "title": "The Jackson 5 - I Want You Back (Karaoke Version)", - "id": "auaqyVYmpP8" - }, - { - "title": "Lana Del Rey - Video Games (Karaoke Version)", - "id": "AOVyQC67Q4g" - }, - { - "title": "ZAYN - PILLOWTALK (Karaoke Version)", - "id": "rFsxIsoN23w" - }, - { - "title": "One Direction - Little Things (Karaoke Version)", - "id": "JShoho_WYIQ" - }, - { - "title": "A Great Big World, Christina Aguilera - Say Something (Karaoke Version, No Backing Vocals)", - "id": "DhQ46uh2vBU" - }, - { - "title": "Elvis Presley - Can't Help Falling In Love (Karaoke Version)", - "id": "gd4mB-zUcO8" - }, - { - "title": "Stevie Wonder - I Just Called To Say I Love You (Karaoke Version)", - "id": "x-ufoMYaVYE" - }, - { - "title": "Savage Garden - Truly Madly Deeply (Karaoke Version)", - "id": "DDMdkRDZVmI" - }, - { - "title": "Christina Aguilera - Beautiful (Karaoke Version)", - "id": "bkkkbniDtHA" - }, - { - "title": "Boyz II Men - End Of The Road (Karaoke Version)", - "id": "rjPg9JqTxkY" - }, - { - "title": "Whitney Houston - My Love Is Your Love (Karaoke Version)", - "id": "bZm-Aza8fN4" - }, - { - "title": "Frankie Goes To Hollywood - The Power Of Love (Karaoke Version)", - "id": "UA_JT3dg6zY" - }, - { - "title": "Sigala - Sweet Lovin' (Karaoke Version)", - "id": "3BHRfD4RU8E" - }, - { - "title": "Fleur East - Sax (Karaoke Version)", - "id": "qQ1fO2NwLt8" - }, - { - "title": "DNCE - Cake By The Ocean (Karaoke Version)", - "id": "dWm4HGEf2u0" - }, - { - "title": "G-Eazy x Bebe Rexha - Me, Myself & I (Karaoke Version)", - "id": "xXbk3InFCxY" - }, - { - "title": "The Weeknd - In The Night (Karaoke Version)", - "id": "kV5dLKnQ90I" - }, - { - "title": "Justin Bieber - Company (Karaoke Version)", - "id": "hYSNz4uJh9k" - }, - { - "title": "Auburn - The Perfect Two (Karaoke Version)", - "id": "Qnw4FAxd3fc" - }, - { - "title": "The Chainsmokers ft. Rozes - Roses (Karaoke Version)", - "id": "EUdNpznNKcc" - }, - { - "title": "One Direction - Love You Goodbye (Karaoke Version)", - "id": "G-5BbdBqT8I" - }, - { - "title": "Fleetwood Mac - Everywhere (Karaoke Version)", - "id": "A0lUjkzeq5o" - }, - { - "title": "Cyndi Lauper - Time After Time (Karaoke Version)", - "id": "zmrme4ulxIY" - }, - { - "title": "Backstreet Boys - I Want It That Way (Karaoke Version)", - "id": "NxilU56kPu0" - }, - { - "title": "Travis Scott - Antidote (Karaoke Version)", - "id": "3s7kBlAiNK4" - }, - { - "title": "The Calling - Wherever You Will Go (Karaoke Version)", - "id": "sTGFkbjK3IU" - }, - { - "title": "Melanie Martinez - Mad Hatter (Karaoke Version)", - "id": "XZgmgnaYVl8" - }, - { - "title": "Selena Gomez - Hands To Myself (Karaoke Version)", - "id": "QlJG_GmdQB0" - }, - { - "title": "Wheatus - Teenage Dirtbag (Karaoke Version)", - "id": "jbK7Ps-7Gfc" - }, - { - "title": "Disney Descendants - Set It Off (Karaoke Version)", - "id": "Ct9fhfcg5UA" - }, - { - "title": "Meghan Trainor - 3AM (Karaoke Version)", - "id": "Q80cDvj2L3o" - }, - { - "title": "JoJo - Leave (Get Out) (Karaoke Version)", - "id": "Vs20pLrCJXA" - }, - { - "title": "Sigala - Easy Love (Karaoke Version)", - "id": "i3yf7f98MRM" - }, - { - "title": "5 Seconds Of Summer - Jet Black Heart (Karaoke Version)", - "id": "FNCc9ppGgcg" - }, - { - "title": "One Direction - History (Karaoke Version)", - "id": "6abAeLt6Hvw" - }, - { - "title": "Whitney Houston - I Wanna Dance With Somebody (Who Loves Me) (Karaoke Version)", - "id": "st-yPBxRVPM" - }, - { - "title": "Taylor Swift - Back To December (Karaoke Version)", - "id": "VHpK1i6XnkY" - }, - { - "title": "Sam Smith - Drowning Shadows (Karaoke Version)", - "id": "D5qBdppqOAc" - }, - { - "title": "Miley Cyrus - Party In The USA (Karaoke Version)", - "id": "kfa-26JfdDA" - }, - { - "title": "Grace ft. G-Eazy - You Don't Own Me (Karaoke Version)", - "id": "-NRcXi3h25s" - }, - { - "title": "Who Is Fancy ft. Ariana Grande & Meghan Trainor - Boys Like You (Karaoke Version)", - "id": "ZpK5dZgoC14" - }, - { - "title": "Panic! At The Disco - Victorious (Karaoke Version)", - "id": "032UtZ26LPs" - }, - { - "title": "Little Mix ft. Jason Derulo - Secret Love Song (Karaoke Version)", - "id": "FWJtQj_Okpc" - }, - { - "title": "Justin Bieber ft. Halsey - The Feeling (Karaoke Version)", - "id": "NYiZ0LBe8Sk" - }, - { - "title": "Justin Bieber - I'll Show You (Karaoke Version)", - "id": "LmaRqEuusXI" - }, - { - "title": "One Direction - If I Could Fly (Karaoke Version)", - "id": "vaWw6qZa6BI" - }, - { - "title": "Empire Cast - Conqueror ft. Estelle and Jussie Smollett (Karaoke Version)", - "id": "9b-6gEkpr5Q" - }, - { - "title": "Shawn Mendes & Camila Cabello - I Know What You Did Last Summer (Karaoke Version)", - "id": "CZCfGmLUn9s" - }, - { - "title": "Meghan Trainor - I'll Be Home (Karaoke Version)", - "id": "yQAuGCd1PmU" - }, - { - "title": "East 17 - Stay Another Day (Karaoke Version)", - "id": "LnsPMGGcCPk" - }, - { - "title": "Coldplay - Adventure Of A Lifetime (Karaoke Version)", - "id": "svN1O_9vYVs" - }, - { - "title": "Robin Schulz ft. Francesco Yates - Sugar (Karaoke Version)", - "id": "6JJ5kls77K4" - }, - { - "title": "Demi Lovato - Let It Go (Karaoke Version)", - "id": "1enflc905ME" - }, - { - "title": "Carly Rae Jepsen - Last Christmas (Karaoke Version)", - "id": "aQURjOPL4Xg" - }, - { - "title": "Perry Como - It's Beginning To Look A Lot Like Christmas (Karaoke Version)", - "id": "rAPyxGGjNbk" - }, - { - "title": "Sabrina Carpenter - Christmas The Whole Year Round (Karaoke Version)", - "id": "yTbB0rBfF7Q" - }, - { - "title": "The Pogues & Kirsty McColl - Fairytale Of New York (Karaoke Version)", - "id": "JkGkodCBNWs" - }, - { - "title": "Dean Martin - Let It Snow! Let It Snow! Let It Snow! (Karaoke Version)", - "id": "wsB1_UGiVoU" - }, - { - "title": "Aerosmith - I Don't Want To Miss A Thing (Karaoke Version)", - "id": "s9Qc54Jp-6M" - }, - { - "title": "Nathan Sykes - Over And Over Again (Karaoke Version)", - "id": "vnxbblBBVpk" - }, - { - "title": "Troye Sivan - Talk Me Down (Karaoke Version)", - "id": "DQvpQN7bnJY" - }, - { - "title": "Little Mix - Lightning (Karaoke Version)", - "id": "jRMHxHbH1fk" - }, - { - "title": "Kelly Clarkson - Underneath The Tree (Karaoke Version)", - "id": "6qgtHXOJX9s" - }, - { - "title": "All Time Low - Time-Bomb (Karaoke Version)", - "id": "LWWpBTaLBf8" - }, - { - "title": "Sofia Carson - Rotten To The Core (Karaoke Version)", - "id": "WIwsFQxvwOY" - }, - { - "title": "Tove Lo - Moments (Karaoke Version)", - "id": "kOHgVuDnknw" - }, - { - "title": "Eartha Kitt - Santa Baby (Karaoke Version)", - "id": "VIgsBLfcnZQ" - }, - { - "title": "Tori Kelly - Hollow (Karaoke Version)", - "id": "GzG3Np1DdSY" - }, - { - "title": "Ellie Goulding - Army (Karaoke Version)", - "id": "PFz-skg72zc" - }, - { - "title": "Ariana Grande - Snow In California (Karaoke Version)", - "id": "9_XR3VFabtY" - }, - { - "title": "CHVRCHES - The Mother We Share (Karaoke Version)", - "id": "sJNtB1jRQog" - }, - { - "title": "Disclosure ft. Lorde - Magnets (Karaoke Version)", - "id": "ejYXswDqghM" - }, - { - "title": "Pia Mia - Touch (Karaoke Version)", - "id": "slA9cFKEAYg" - }, - { - "title": "Madison Beer ft. Jack & Jack - All For Love (Karaoke Version)", - "id": "zUMmlyfJHIk" - }, - { - "title": "Aurora - Half The World Away (Karaoke Version)", - "id": "yCRPlMr9v2c" - }, - { - "title": "Miley Cyrus - Hands Of Love (Karaoke Version)", - "id": "jMWXbOjfRxA" - }, - { - "title": "Bethany Mota feat. Mike Tompkins - Need You Right Now (Karaoke Version)", - "id": "P1OgjSlXzK8" - }, - { - "title": "Michael Bublรฉ - Have Yourself A Merry Little Christmas (Karaoke Version)", - "id": "-NEfq3FKkyM" - }, - { - "title": "Omi - Hula Hoop (Karaoke Version)", - "id": "KlEimTUMaWU" - }, - { - "title": "JoJo - Too Little, Too Late (Karaoke Version)", - "id": "gymyKFgAF4E" - }, - { - "title": "Tinashe ft. Chris Brown - Player (Karaoke Version)", - "id": "zEloQsYRofI" - }, - { - "title": "Miley Cyrus - Adore You (Karaoke Version)", - "id": "WFJQQbHKTVQ" - }, - { - "title": "Panic! At The Disco - The Ballad Of Mona Lisa (Karaoke Version)", - "id": "Fi-_5FyZ2ag" - }, - { - "title": "Melanie Martinez - Mrs. Potato Head (Karaoke Version)", - "id": "lB2RHp40X_8" - }, - { - "title": "Olly Murs - Kiss Me (Karaoke Version)", - "id": "yFfOIB6BilA" - }, - { - "title": "A Great Big World ft. Futuristic - Hold Each Other (Karaoke Version)", - "id": "0qZwcoO-zEM" - }, - { - "title": "MyLifeAsEva - Literally My Life (Karaoke Version)", - "id": "mMEdoCG1MH0" - }, - { - "title": "Meghan Trainor - Better When I'm Dancin' (Karaoke Version)", - "id": "ToBGhfZTiGA" - }, - { - "title": "Panic! At The Disco - Emperor's New Clothes (Karaoke Version)", - "id": "CgRGvclVmT0" - }, - { - "title": "Dove Cameron - If Only (from Disney \"Descendants\") (Karaoke Version)", - "id": "fTRa0BuPlwA" - }, - { - "title": "Adele - Chasing Pavements (Karaoke Version)", - "id": "3ovRDVtkmn8" - }, - { - "title": "5 Seconds Of Summer - Hey Everybody! (Karaoke Version)", - "id": "xcfNqmchwdE" - }, - { - "title": "Katy Perry - Teenage Dream (Karaoke Version)", - "id": "kUyhDgryS3g" - }, - { - "title": "Carly Rae Jepsen - Run Away With Me (Karaoke Version)", - "id": "AOp9-5lHL8o" - }, - { - "title": "ZHU x AlunaGeorge - Automatic (Karaoke Version)", - "id": "07z6eOSpWp8" - }, - { - "title": "Demi Lovato - Confident (Karaoke Version)", - "id": "fTfT1JwAy3Q" - }, - { - "title": "Lana Del Rey - National Anthem (Karaoke Version)", - "id": "0CjMoMG-Pwc" - }, - { - "title": "Charlie Puth - One Call Away (Karaoke Version)", - "id": "1hx2ynaUaHY" - }, - { - "title": "One Direction - Home (Karaoke Version)", - "id": "IzL4eMcMjZQ" - }, - { - "title": "Justin Bieber - Sorry (Karaoke Version)", - "id": "9CLvFIsp9oo" - }, - { - "title": "Ariana Grande - Focus (Karaoke Version)", - "id": "rDDz2tIoxKI" - }, - { - "title": "Galantis - Peanut Butter Jelly (Karaoke Version)", - "id": "TPVnV0q_Gm8" - }, - { - "title": "Troye Sivan - FOOLS (Karaoke Version) (Blue Neighbourhood Part 2/3)", - "id": "6_knW5drAPw" - }, - { - "title": "Zara Larsson, MNEK - Never Forget You (Karaoke Version)", - "id": "Xs0w3TstJZg" - }, - { - "title": "Years & Years - Eyes Shut (Karaoke Version)", - "id": "_xCwAIeKtX4" - }, - { - "title": "Selena Gomez - Me & The Rhythm (Karaoke Version)", - "id": "6tjI8HbZHlM" - }, - { - "title": "Zara Larsson - Lush Life (Karaoke Version)", - "id": "Zj3dMCkEni4" - }, - { - "title": "Sia - Alive (Karaoke Version)", - "id": "H0QBqsJF3aA" - }, - { - "title": "Adele - Hello (Karaoke Version)", - "id": "Ipq2geYz6xw" - }, - { - "title": "The Weeknd ft. Lana Del Rey - Prisoner (Karaoke Version)", - "id": "HMFqge5jiaU" - }, - { - "title": "One Direction - Perfect (Karaoke Version)", - "id": "1JWWkuLrtro" - }, - { - "title": "The Vamps - Wake Up (Karaoke Version)", - "id": "e6ISjJiX92I" - }, - { - "title": "Maroon 5 - This Love (Karaoke Version)", - "id": "BXvaGeVKNIw" - }, - { - "title": "Rihanna - Disturbia (Karaoke Version)", - "id": "vDfV_n-HiNA" - }, - { - "title": "Rachel Platten - Stand By You (Karaoke Version)", - "id": "TG4Vs02sqx8" - }, - { - "title": "Sam Smith - Writing's On The Wall (Karaoke Version)", - "id": "h7vILHaFTiE" - }, - { - "title": "Whitney Houston - I Have Nothing (Karaoke Version)", - "id": "CS1Xf9hfUCk" - }, - { - "title": "P!nk - Today's The Day (Karaoke Version)", - "id": "kcK7z-E8Bp4" - }, - { - "title": "Backstreet Boys - Everybody (Backstreet's Back) (Karaoke Version)", - "id": "keejy6-6xt4" - }, - { - "title": "Panic! At The Disco - I Write Sins Not Tragedies (Karaoke Version)", - "id": "q4-j_-CHAJk" - }, - { - "title": "Halsey - Hold Me Down (Karaoke Version)", - "id": "nBjNC--brTw" - }, - { - "title": "Taylor Swift - Teardrops On My Guitar (Pop Version - Karaoke)", - "id": "U6eDFyoGNdA" - }, - { - "title": "The Nightmare Before Christmas - This Is Halloween (Karaoke Version)", - "id": "jAXwHoRExSM" - }, - { - "title": "Little Mix - Love Me Like You (Karaoke Version)", - "id": "I7HRrjPWLbI" - }, - { - "title": "Taylor Swift - Mean (Karaoke Version)", - "id": "qHHkdKlKhfo" - }, - { - "title": "One Direction - Infinity (Karaoke Version)", - "id": "vQaOmtjsXBc" - }, - { - "title": "The Rocky Horror Picture Show - Time Warp (Karaoke Version)", - "id": "pE4dBVpr_Io" - }, - { - "title": "Evanescence - My Immortal (Karaoke Version)", - "id": "Dv4s4KFptCE" - }, - { - "title": "Daya - Hide Away (Karaoke Version)", - "id": "-iWvqnq4H0s" - }, - { - "title": "twenty one pilots - Stressed Out (Karaoke Version)", - "id": "QNVtVvAJhDI" - }, - { - "title": "Fall Out Boy - Sugar, We're Going Down (Karaoke Version)", - "id": "d5lOB7Ibjhg" - }, - { - "title": "Paramore - Monster (Karaoke Version)", - "id": "8o3P3jwgtjY" - }, - { - "title": "Elle King - Ex's & Oh's (Karaoke Version)", - "id": "odO7rH5vmaI" - }, - { - "title": "Troye Sivan - WILD (Karaoke Version)", - "id": "ch_z7_hd5FY" - }, - { - "title": "Fall Out Boy - Uma Thurman (Karaoke Version)", - "id": "qw-E5IqQ4MU" - }, - { - "title": "Meghan Trainor - No Good For You (Karaoke Version)", - "id": "3-jf58-XDYs" - }, - { - "title": "Five Nights At Freddy's 3 Song - Die In A Fire - The Living Tombstone (Karaoke Version)", - "id": "wYRncDCwCoE" - }, - { - "title": "Nick Jonas - Levels (Karaoke Version)", - "id": "7kKPkJQ9yc0" - }, - { - "title": "Ellie Goulding - On My Mind (Karaoke Version)", - "id": "KlrXzBroM3s" - }, - { - "title": "Evanescence - Bring Me To Life (Karaoke Version)", - "id": "frpfRwGv6KU" - }, - { - "title": "Tori Kelly - Should've Been Us (Karaoke Version)", - "id": "ORtbESA3GqQ" - }, - { - "title": "Little Mix - Hair (Karaoke Version)", - "id": "2PYU-D4bVEk" - }, - { - "title": "Lana Del Rey - High By The Beach (Karaoke Version)", - "id": "rx3YgEf4mIQ" - }, - { - "title": "Becky G - Break A Sweat (Karaoke Version)", - "id": "BfxdKqJyPhc" - }, - { - "title": "Macklemore & Ryan Lewis - Downtown (Karaoke Version)", - "id": "V8TGcqNkNOY" - }, - { - "title": "Calvin Harris & Disciples - How Deep Is Your Love (Karaoke Version)", - "id": "DE7Ve7N49Is" - }, - { - "title": "5 Seconds Of Summer - She's Kinda Hot (Karaoke Version)", - "id": "Zl_we3nzBPY" - }, - { - "title": "Sabrina Carpenter - Too Young (Karaoke Version)", - "id": "jFS32d6mcvw" - }, - { - "title": "Fifth Harmony - I'm In Love With A Monster (Karaoke Version)", - "id": "e5535hgdIlk" - }, - { - "title": "Beyonce - If I Were A Boy (Karaoke Version)", - "id": "56kZ5BYfO6E" - }, - { - "title": "Hayley Kiyoko - Girls Like Girls (Karaoke Version)", - "id": "BVWUB8VMuiI" - }, - { - "title": "Hailee Steinfeld - Love Myself (Karaoke Version)", - "id": "-9U2X886A0E" - }, - { - "title": "Bea Miller - Fire N Gold (Karaoke Version)", - "id": "uH2VK4yDCLg" - }, - { - "title": "Nicki Minaj - Super Bass (Karaoke Version)", - "id": "20GjgF_3faw" - }, - { - "title": "Disclosure ft. Sam Smith - Omen (Karaoke Version)", - "id": "_JmfQjsT13c" - }, - { - "title": "Selena Gomez - Same Old Love (Karaoke Version)", - "id": "YIg0xU_A5-8" - }, - { - "title": "Disney Descendants - Rotten To The Core (Karaoke Version)", - "id": "itoF8gggLhY" - }, - { - "title": "R. City ft. Adam Levine - Locked Away (Karaoke Version)", - "id": "w7KHcWe5ACw" - }, - { - "title": "Maroon 5 - Sunday Morning (Karaoke Version)", - "id": "dZlowemJbj4" - }, - { - "title": "Meek Mill ft. Nicki Minaj & Chris Brown - All Eyes On You (Karaoke Version)", - "id": "RMF7mRTrBQ4" - }, - { - "title": "Melanie Martinez - Sippy Cup (Karaoke Version)", - "id": "a0I1h4UyZOU" - }, - { - "title": "Justin Bieber - What Do You Mean (Karaoke Version)", - "id": "kKKXhrS_my4" - }, - { - "title": "Kygo ft. Parson James - Stole The Show (Karaoke Version)", - "id": "tZKBzoBcytQ" - }, - { - "title": "Adele - Make You Feel My Love (Karaoke Version)", - "id": "x8SpSPBeeUE" - }, - { - "title": "One Direction - Midnight Memories (Karaoke Version)", - "id": "J-cx31kkMUA" - }, - { - "title": "Alessia Cara - Here (Karaoke Version)", - "id": "_PDhqm1PYtk" - }, - { - "title": "One Direction - Change Your Ticket (Karaoke Version)", - "id": "C7eH7W5ASlw" - }, - { - "title": "Austin Mahone - Dirty Work (Karaoke Version)", - "id": "O2vhF-rARYc" - }, - { - "title": "Miley Cyrus - The Climb (Karaoke Version)", - "id": "FL9Hcz85CGw" - }, - { - "title": "Rihanna, Drake - What's My Name? (Karaoke Version)", - "id": "OaNREHFxzTA" - }, - { - "title": "Kelly Clarkson - Because Of You (Karaoke Version)", - "id": "WWJyJGY1T2M" - }, - { - "title": "Selena Gomez & The Scene - Who Says (Karaoke Version)", - "id": "WfCz7hV-bJk" - }, - { - "title": "Lana Del Rey - Honeymoon (Karaoke Version)", - "id": "Q3WYYXb4IpE" - }, - { - "title": "Michael Jackson - The Way You Make Me Feel (Karaoke Version)", - "id": "G5Fiuz7Xnio" - }, - { - "title": "Swedish House Mafia ft. Tinie Tempah - Miami 2 Ibiza (Karaoke Version)", - "id": "9JZi1XSvTdU" - }, - { - "title": "Jess Glynne - Don't Be So Hard On Yourself (Karaoke Version)", - "id": "NYAHyU_hpPo" - }, - { - "title": "Travie McCoy ft. Sia - Golden (Karaoke Version)", - "id": "oo96H1OG5VY" - }, - { - "title": "Mark Ronson ft. Amy Winehouse - Valerie (Karaoke Version)", - "id": "yH2mILMKC-0" - }, - { - "title": "My Chemical Romance - Teenagers (Karaoke Version)", - "id": "ixGt1ajjOyA" - }, - { - "title": "Lady Antebellum - Need You Now (Karaoke Version)", - "id": "U4j8UroIWqU" - }, - { - "title": "Ariana Grande - Why Try (Karaoke Version)", - "id": "cvHD1nXh0a0" - }, - { - "title": "Ruth B - Lost Boy (Karaoke Version)", - "id": "8R1xIYOwxRA" - }, - { - "title": "Jidenna ft. Roman GianArthur - Classic Man (Karaoke Version)", - "id": "VXv9TQSblJk" - }, - { - "title": "Ed Sheeran - Give Me Love (Karaoke Version)", - "id": "EjM8WQ-rXnI" - }, - { - "title": "Ella Henderson - Missed (Karaoke Version)", - "id": "R7doV2gITnk" - }, - { - "title": "Taylor Swift - You Belong With Me (Backing Track)", - "id": "5B_dHpwfBXE" - }, - { - "title": "Cher Lloyd - Want U Back (Karaoke Version)", - "id": "QEZjzH4zEd4" - }, - { - "title": "Sage The Gemini ft. Nick Jonas - Good Thing (Karaoke Version)", - "id": "1gfFImcYgAE" - }, - { - "title": "Pia Mia ft. Chris Brown & Tyga - Do It Again (Karaoke Version)", - "id": "kSRgkOPBPPc" - }, - { - "title": "Jason Mraz - I'm Yours (Karaoke Version)", - "id": "kn8YiDSYcq4" - }, - { - "title": "Natalie La Rose ft. Fetty Wap - Around The World (Karaoke Version)", - "id": "DI8TM2fDG2k" - }, - { - "title": "Sabrina Carpenter - Eyes Wide Open (Karaoke Version)", - "id": "8SBsvvQPsgg" - }, - { - "title": "Melanie Martinez - Soap (Karaoke Version)", - "id": "klzWPpowZcQ" - }, - { - "title": "Tinashe - All Hands On Deck (Karaoke Version)", - "id": "wYDW1JfnA_w" - }, - { - "title": "Katy Perry ft. Snoop Dogg - California Gurls (Karaoke Version)", - "id": "aUoeErKrMEs" - }, - { - "title": "One Direction - Drag Me Down (Karaoke Version)", - "id": "WHLKZDMUR6o" - }, - { - "title": "Felix Jaehn ft. Jasmine Thompson - Ain't Nobody (Loves Me Better) (Karaoke Version)", - "id": "9S-B99Dd7d4" - }, - { - "title": "Paramore - The Only Exception (Karaoke Version)", - "id": "yCXcs2B8du0" - }, - { - "title": "Pharrell Williams - Freedom (Karaoke Version)", - "id": "_gP1MePb1Gk" - }, - { - "title": "Fetty Wap ft. Remy Boyz - 679 (Karaoke Version)", - "id": "v6FuK3w3iBk" - }, - { - "title": "Major Lazer ft. Ellie Goulding & Tarrus Riley - Powerful (Karaoke Version)", - "id": "vCkDSb6iotQ" - }, - { - "title": "Cimorelli - You're Worth It (Karaoke Version)", - "id": "QblwTAiq86c" - }, - { - "title": "Jason Derulo - Cheyenne (Karaoke Version)", - "id": "2w1EjRaTNuo" - }, - { - "title": "Zara Larsson - Uncover (Karaoke Version)", - "id": "O0RZc6k_eLw" - }, - { - "title": "Taylor Swift ft. Gary Lightbody - The Last Time (Karaoke Version)", - "id": "g82LqBoJWFA" - }, - { - "title": "Megan Nicole - Electrified (Karaoke Version)", - "id": "1OOuQ5CMQTw" - }, - { - "title": "Glee - Singing In The Rain/Umbrella (Karaoke Version)", - "id": "eHNM7ebjcqI" - }, - { - "title": "Jessie J ft. B.o.B - Price Tag (Karaoke Version)", - "id": "hyB4iyq2tmw" - }, - { - "title": "Adele - Set Fire To The Rain (Karaoke Version)", - "id": "C02apNNsmeI" - }, - { - "title": "Sia - Fire Meet Gasoline (Karaoke Version)", - "id": "uhMvKj4bOU8" - }, - { - "title": "Zedd ft. Foxes - Clarity (Karaoke Version)", - "id": "Sq2FkmVnFcc" - }, - { - "title": "Meghan Trainor - Close Your Eyes (Karaoke Version)", - "id": "WBKKj3KCScg" - }, - { - "title": "Imagine Dragons - Demons (Karaoke Version)", - "id": "TsCPrboDunw" - }, - { - "title": "Taylor Swift - I Knew You Were Trouble (Karaoke Version)", - "id": "Ut8qAfWUW24" - }, - { - "title": "Joey Graceffa - Don't Wait (Karaoke Version)", - "id": "WpBqBOsYGNc" - }, - { - "title": "Fifth Harmony - Going Nowhere (Karaoke Version)", - "id": "EflCttRgdr4" - }, - { - "title": "Demi Lovato - Cool For The Summer (Karaoke Version)", - "id": "BqiBmont1ZQ" - }, - { - "title": "Rita Ora - Poison (Karaoke Version)", - "id": "ILIY1Fvh-Qw" - }, - { - "title": "James Bay - Let It Go (Karaoke Version)", - "id": "nhv788BMisk" - }, - { - "title": "Avicii - Waiting For Love (Karaoke Version)", - "id": "Pc-cdGfXmp4" - }, - { - "title": "John Newman - Come And Get It (Karaoke Version)", - "id": "vGyJHrQhCEA" - }, - { - "title": "Tori Kelly - Unbreakable Smile (Karaoke Version)", - "id": "i86mx3z3Hck" - }, - { - "title": "Tove Lo - Not On Drugs (Karaoke Version)", - "id": "ehH4gnzN0Kc" - }, - { - "title": "One Direction - Clouds (Karaoke Version)", - "id": "bRSQsgPzU4g" - }, - { - "title": "Justin Bieber ft. Ludacris - Baby (Karaoke Version)", - "id": "1a5SWpp9Wfg" - }, - { - "title": "Jack and Jack - Like That (Karaoke Version)", - "id": "Hfw55F2Qg9c" - }, - { - "title": "Lana Del Rey - Blue Jeans (Karaoke Version)", - "id": "q6eA_-2DT9o" - }, - { - "title": "Rich Homie Quan - Flex (Ooh, Ooh, Ooh) (Karaoke Version)", - "id": "N6c6ayaZs9g" - }, - { - "title": "Halsey - Ghost (Karaoke Version)", - "id": "nHGyE7LaRbw" - }, - { - "title": "Taylor Swift feat. The Civil Wars - Safe & Sound (Karaoke Version)", - "id": "7h2eqd0Kx4g" - }, - { - "title": "Ed Sheeran - All Of The Stars (Karaoke Version)", - "id": "BSuZ4ztkmPA" - }, - { - "title": "Ciara - I Bet (Karaoke Version)", - "id": "9_mZCO9WQZM" - }, - { - "title": "Selena Gomez ft. A$AP Rocky - Good For You (Karaoke Version)", - "id": "WggYVunMNTA" - }, - { - "title": "Hozier - Someone New (Karaoke Version)", - "id": "9lXGUYe4osQ" - }, - { - "title": "The Weeknd - Can't Feel My Face (Karaoke Version)", - "id": "blAk0Zr9UAk" - }, - { - "title": "Colbie Caillat - Bubbly (Karaoke Version)", - "id": "X_fmt_y2AzM" - }, - { - "title": "Fetty Wap ft. Monty - My Way (Karaoke Version)", - "id": "_2DQti03fQ0" - }, - { - "title": "Nicki Minaj - The Night Is Still Young (Karaoke Version)", - "id": "vwhNzQRPs9g" - }, - { - "title": "Maroon 5 - This Summer's Gonna Hurt Like A Motherf****r (Karaoke Version)", - "id": "cmqlDASPG_w" - }, - { - "title": "The Weeknd - The Hills (Karaoke Version)", - "id": "ZEt5qkoL6iE" - }, - { - "title": "Little Mix - Move (Karaoke Version)", - "id": "YMbxFZYOhig" - }, - { - "title": "Vance Joy - Riptide (Karaoke Version)", - "id": "XWq1hK6XtjU" - }, - { - "title": "Charlie Puth ft. Meghan Trainor - Marvin Gaye (Karaoke Version)", - "id": "fQcKB3IEK9k" - }, - { - "title": "Major Lazer & DJ Snake (feat. Mร˜) - Lean On (Karaoke Version)", - "id": "9X8Bsgz8DfQ" - }, - { - "title": "Little Mix - Black Magic (Karaoke Version)", - "id": "JsoxO3vWok0" - }, - { - "title": "DJ Snake & AlunaGeorge - You Know You Like It (Karaoke Version)", - "id": "m4RJ3OZdAVk" - }, - { - "title": "Melanie Martinez - Pity Party (Karaoke Version)", - "id": "fOWLajLvqXg" - }, - { - "title": "Whitney Houston - I Will Always Love You (Karaoke Version)", - "id": "8kotNQ07ZEw" - }, - { - "title": "Silento - Watch Me (Whip / Nae Nae) (Karaoke Version)", - "id": "HEv6E4hz8cM" - }, - { - "title": "Rebecca Ferguson - Nothing's Real But Love (Karaoke Version)", - "id": "Ty_Su_hw6nI" - }, - { - "title": "Enrique Iglesias ft. Ludacris - Tonight (I'm Loving You) (Karaoke Version)", - "id": "FuVWi76sMMw" - }, - { - "title": "Gym Class Heroes ft. Adam Levine - Stereo Hearts (Karaoke Version)", - "id": "C8lCwQsE2Oc" - }, - { - "title": "Sabrina Carpenter - We'll Be The Stars (Karaoke Version)", - "id": "qnJCMNQQHbY" - }, - { - "title": "Jessie J - Flashlight (Karaoke Version)", - "id": "pdheWX4oO1A" - }, - { - "title": "T-Wayne - Nasty Freestyle (Karaoke Version)", - "id": "ZWYBkg2vOwM" - }, - { - "title": "Leona Lewis - Fire Under My Feet (Karaoke Version)", - "id": "mAH8lsmDEB8" - }, - { - "title": "Years & Years - Shine (Karaoke Version)", - "id": "dKQW7Bsz_R0" - }, - { - "title": "Emeli Sande - Next To Me (Karaoke Version)", - "id": "TUk3c65izW8" - }, - { - "title": "Britney Spears, Iggy Azalea - Pretty Girls (Karaoke Version)", - "id": "nED-QSN2BxU" - }, - { - "title": "Taylor Swift ft. Kendrick Lamar - Bad Blood (Karaoke Version)", - "id": "Nxu9-X0lmfE" - }, - { - "title": "Meghan Trainor - Walkashame (Karaoke Version)", - "id": "bRlAA1CpaIA" - }, - { - "title": "Marina and the Diamonds - I'm A Ruin (Karaoke Version)", - "id": "coU-gIpBeNo" - }, - { - "title": "Katy Perry - Birthday (Karaoke Version)", - "id": "IzyvJ6XwPN0" - }, - { - "title": "Demi Lovato - Give Your Heart A Break (Karaoke Version)", - "id": "8P0feGFmRyU" - }, - { - "title": "Skrillex and Diplo (with Justin Bieber) - Where Are U Now (Karaoke Version)", - "id": "LTobEt2EF5s" - }, - { - "title": "Andy Grammer - Honey, I'm Good (Karaoke Version)", - "id": "nevamPafdFA" - }, - { - "title": "Lunchmoney Lewis - Bills (Karaoke Version)", - "id": "-94zx7u26Ac" - }, - { - "title": "Stereo Kicks - Love Me So (Karaoke Version)", - "id": "DZa2NOnahTM" - }, - { - "title": "The Living Tombstone - It's Been So Long (FNAF 2 - Karaoke Version)", - "id": "Tz7SS5LUKT0" - }, - { - "title": "We The Kings ft. Elena Coats - Sad Song (Karaoke Version)", - "id": "g94DBEV1kVA" - }, - { - "title": "Ellie Goulding - Lights (Karaoke Version)", - "id": "FEmEJ-N4QV4" - }, - { - "title": "Becky G - Lovin' So Hard (Karaoke Version)", - "id": "8ogSqVTkDZ8" - }, - { - "title": "MisterWives - Reflections (Karaoke Version)", - "id": "a5tViY-GsaQ" - }, - { - "title": "Tinashe ft. SchoolBoy Q - 2 On (Karaoke Version)", - "id": "Rizd4rFR6z0" - }, - { - "title": "Omarion ft. Chris Brown & Jhene Aiko - Post To Be (Karaoke Version)", - "id": "beQuJaiWd78" - }, - { - "title": "Martin Garrix ft. Usher - Don't Look Down (Karaoke Version)", - "id": "oJpv6OzBvno" - }, - { - "title": "Walk The Moon - Shut Up And Dance (Karaoke Version)", - "id": "71qqtDWFVl4" - }, - { - "title": "Taylor Swift - You Are In Love (Karaoke Version)", - "id": "lNVeD7CdYQY" - }, - { - "title": "Taylor Swift - This Love (Karaoke Version)", - "id": "dyygwFpsY7E" - }, - { - "title": "Echosmith - Bright (Karaoke Version)", - "id": "a-vN72B0784" - }, - { - "title": "Little Big Town - Girl Crush (Karaoke Version)", - "id": "dK0jVG8BPVA" - }, - { - "title": "Charlie Puth - See You Again (Piano Demo - Karaoke Version)", - "id": "T7Jc_2RAvH4" - }, - { - "title": "Taylor Swift - Begin Again (Karaoke Version)", - "id": "EubeUnrZr_I" - }, - { - "title": "Labrinth ft. Emeli Sande - Beneath Your Beautiful (Karaoke Version)", - "id": "C233y8-aY14" - }, - { - "title": "Ed Sheeran - Drunk (Karaoke Version)", - "id": "_TQN3uV0P6o" - }, - { - "title": "Fifth Harmony ft. Meghan Trainor - Brave Honest Beautiful (Karaoke Version)", - "id": "ER9agIoexhI" - }, - { - "title": "Taylor Swift - I Wish You Would (Karaoke Version)", - "id": "kyAxRFUGZek" - }, - { - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version)", - "id": "iN7jQEpv92I" - }, - { - "title": "Fetty Wap - Trap Queen (Karaoke Version)", - "id": "T5-pnoHEpjE" - }, - { - "title": "Gabrielle Aplin - The Power Of Love (Karaoke Version)", - "id": "xGPnOpljFHs" - }, - { - "title": "Kesha - C'mon (Karaoke Version)", - "id": "eFcb5ZbNOWA" - }, - { - "title": "Christina Perri - The Words (Karaoke Version)", - "id": "bKbBTVSr4ic" - }, - { - "title": "Tori Kelly - Nobody Love (Karaoke Version)", - "id": "50LjlebTog4" - }, - { - "title": "Justin Bieber - Catching Feelings (Karaoke Version)", - "id": "1saC8_UNvyw" - }, - { - "title": "Sia - Big Girls Cry (Karaoke Version)", - "id": "AS6miOz7xO0" - }, - { - "title": "Nicki Minaj ft. Drake - Truffle Butter (Karaoke Version)", - "id": "grOUdKT0WxM" - }, - { - "title": "Trevor Moran - Echo (Karaoke Version)", - "id": "eHMdPOANY2k" - }, - { - "title": "Taylor Swift - Stay Stay Stay (Karaoke Version)", - "id": "kwt6kooMFj0" - }, - { - "title": "Tove Lo - Talking Body (Karaoke Version)", - "id": "zQbJoIuPUHE" - }, - { - "title": "James Bay - Hold Back The River (Karaoke Version)", - "id": "Ral1tVPTNBA" - }, - { - "title": "Chris Brown ft. Benny Benassi - Beautiful People (Karaoke Version)", - "id": "3ZhUDuqg3rY" - }, - { - "title": "One Direction - No Control (Karaoke Version)", - "id": "Qzq2qLUWQ9M" - }, - { - "title": "MKTO - American Dream (Karaoke Version)", - "id": "L7glEAQPKwY" - }, - { - "title": "Omi - Cheerleader (Felix Jaehn Edit) (Karaoke Version)", - "id": "Gart4SIWnX0" - }, - { - "title": "Karmin - Hello (Karaoke Version)", - "id": "YSSBHGJJsUM" - }, - { - "title": "Neon Trees - Animal (Karaoke Version)", - "id": "TuJiMlvWXiA" - }, - { - "title": "Of Monsters And Men - Mountain Sound (Karaoke Version)", - "id": "UUIQT4zhylo" - }, - { - "title": "Nicki Minaj ft. Lil Wayne - High School (Karaoke Version)", - "id": "o-ZkwckHNbY" - }, - { - "title": "Lana Del Rey - Ride (Karaoke Version)", - "id": "4Upnkdnzm00" - }, - { - "title": "Iggy Azalea ft. Jennifer Hudson - Trouble (Karaoke Version)", - "id": "wTUoMxzZfh0" - }, - { - "title": "Charlene Soraia - Wherever You Will Go (Karaoke Version)", - "id": "lhy2ej-ccKw" - }, - { - "title": "Jessie J - Who You Are (Karaoke Version)", - "id": "UC28wPomKU4" - }, - { - "title": "Katy Perry - Part Of Me (Karaoke Version)", - "id": "da1K-sP_Nys" - }, - { - "title": "Pitbull ft. Ne-Yo - Time Of Our Lives (Karaoke Version)", - "id": "mWaO4gvjG0E" - }, - { - "title": "Adele - Rolling In The Deep (Karaoke Version)", - "id": "LOd3u6FtkAk" - }, - { - "title": "Nick Jonas - Chains (Karaoke Version)", - "id": "_DomMYVDEP0" - }, - { - "title": "Cashmere Cat ft. Ariana Grande - Adore (Karaoke Version)", - "id": "7O0aHoVMVMI" - }, - { - "title": "Taylor Swift - All You Had To Do Was Stay (Karaoke Version)", - "id": "52ejQRox9l4" - }, - { - "title": "Meghan Trainor ft. John Legend - Like I'm Gonna Lose You (Karaoke Version)", - "id": "mawPX4US1l4" - }, - { - "title": "Conor Maynard - Talking About (Karaoke Version)", - "id": "pMfSc5VSp6o" - }, - { - "title": "The Living Tombstone - Five Nights At Freddy's (Karaoke Version)", - "id": "8rUxhnPcbZ8" - }, - { - "title": "Jason Derulo - Want To Want Me (Karaoke Version)", - "id": "USdZX_vdP4g" - }, - { - "title": "The Weeknd - Wicked Games (Karaoke Version)", - "id": "qBmP6oM1iMg" - }, - { - "title": "Little Mix - Wings (Karaoke Version)", - "id": "nfH5F0vqzuQ" - }, - { - "title": "Fifth Harmony - Reflection (Karaoke Version)", - "id": "yKHSriEb1YI" - }, - { - "title": "Shawn Mendes - A Little Too Much (Karaoke Version)", - "id": "xqfxOGv8bFQ" - }, - { - "title": "Ed Sheeran - Nina (Karaoke Version)", - "id": "7T3FkcLgTzU" - }, - { - "title": "Karmin - Brokenhearted (Karaoke Version)", - "id": "bWq04YH6-mU" - }, - { - "title": "David Guetta ft. Chris Brown and Lil Wayne - I Can Only Imagine (Karaoke Version)", - "id": "-VxukGeyqGQ" - }, - { - "title": "Chris Brown - Don't Wake Me Up (Karaoke Version)", - "id": "NfJXKVq3bTo" - }, - { - "title": "Carly Rae Jepsen - I Really Like You (Karaoke Version)", - "id": "VILLFThUZko" - }, - { - "title": "Taylor Swift - New Romantics (Karaoke Version)", - "id": "GUC5suaH3Gk" - }, - { - "title": "Marina And The Diamonds - How To Be A Heartbreaker (Karaoke Version)", - "id": "6SyizvBTUvs" - }, - { - "title": "Of Monsters And Men - Little Talks (Karaoke Version)", - "id": "XTy69A8XNeM" - }, - { - "title": "David Guetta ft. Nicki Minaj - Turn Me On (Karaoke Version)", - "id": "RN-9g7OISl4" - }, - { - "title": "One Direction - Ready To Run (Karaoke Version)", - "id": "fwgqfgxQoY0" - }, - { - "title": "Usher - I Don't Mind ft. Juicy J (Karaoke Version)", - "id": "7DumTG7688U" - }, - { - "title": "Skylar Grey - I Know You (from 'Fifty Shades Of Grey) (Karaoke Version)", - "id": "ft6c9v-_SsM" - }, - { - "title": "Sam Smith - Lay Me Down (Karaoke Version)", - "id": "UuGannvDvQk" - }, - { - "title": "The Wanted - Chasing The Sun (Karaoke Version)", - "id": "WQTTfkzWvGI" - }, - { - "title": "One Direction - Girl Almighty (Karaoke Version)", - "id": "lMqvq9RbxPs" - }, - { - "title": "One Direction - Act My Age (Karaoke Version)", - "id": "qvh7rnqx-VI" - }, - { - "title": "Ed Sheeran - Tenerife Sea (Karaoke Version)", - "id": "57DTPfV3DPI" - }, - { - "title": "Emeli Sande ft. Naughty Boy - Daddy (Karaoke Version)", - "id": "rz9awqNMlBM" - }, - { - "title": "Big Sean and E-40 - I Don't F**k With You (Karaoke Version)", - "id": "n00SsD-7iZw" - }, - { - "title": "Flo Rida - GDFR ft. Sage The Gemini and Lookas (Karaoke Version)", - "id": "yCYin3gFFCE" - }, - { - "title": "Glee Cast - Teenage Dream (Karaoke Version)", - "id": "5_iMzBnR3tE" - }, - { - "title": "The Weeknd - Where You Belong (from 'Fifty Shades of Grey' Soundtrack) (Karaoke Version)", - "id": "HOfKC4FGM7I" - }, - { - "title": "Fifth Harmony - Worth It (Karaoke Version)", - "id": "fMGenDZUjdo" - }, - { - "title": "Taylor Swift - I Know Places (Karaoke Version)", - "id": "1CR59qSi7Ic" - }, - { - "title": "Maroon 5 ft. Christina Aguilera - Moves Like Jagger (Karaoke Version)", - "id": "hAwR8Mx8W44" - }, - { - "title": "Rihanna - Only Girl (In The World) (Karaoke Version)", - "id": "ZGoB5KmzMhs" - }, - { - "title": "Marlon Roudette - When The Beat Drops Out (Karaoke Version)", - "id": "UEIUWpmXqQY" - }, - { - "title": "Hercules - I Won't Say (I'm In Love) (Karaoke Version)", - "id": "QJmL664nLhA" - }, - { - "title": "Hercules - Go The Distance (Karaoke Version)", - "id": "xswH-FZvwBQ" - }, - { - "title": "Years & Years - King (Karaoke Version)", - "id": "IofYeQY1Ixk" - }, - { - "title": "One Direction - Where Do Broken Hearts Go (Karaoke Version)", - "id": "i8_pkJv6pzs" - }, - { - "title": "Iggy Azalea - Iggy Szn (Karaoke Version)", - "id": "2OfWJZPK3X8" - }, - { - "title": "Taylor Swift - How You Get The Girl (Karaoke Version)", - "id": "Sj50cDz-SLo" - }, - { - "title": "Adele - Someone Like You (Karaoke Version)", - "id": "BPRoNqB2XK8" - }, - { - "title": "Avicii - The Nights (Karaoke Version)", - "id": "n_h8y2mzpns" - }, - { - "title": "Little Mix - About The Boy (Karaoke Version)", - "id": "2lxEzF2pLa0" - }, - { - "title": "Leona Lewis - Bleeding Love (Valentine's Day Karaoke)", - "id": "BsjLCISj4kU" - }, - { - "title": "Taylor Swift - Love Story (Backing Track)", - "id": "ZqY3eONjX5k" - }, - { - "title": "Jason Derulo - It Girl (Karaoke Version)", - "id": "e_M7OqVox5g" - }, - { - "title": "One Direction - Live While We're Young (Karaoke Version)", - "id": "rKrWfymxj5o" - }, - { - "title": "Nicki Minaj - Grand Piano (Karaoke Version)", - "id": "a-czxmb-rk8" - }, - { - "title": "Taylor Swift - Clean (Karaoke Version)", - "id": "_CXLHLs1NBs" - }, - { - "title": "Tangled - I See The Light (Karaoke Version)", - "id": "FLgWioSXAQU" - }, - { - "title": "Fall Out Boy - Immortals (Karaoke Version)", - "id": "24F76gV_F8c" - }, - { - "title": "Madison Beer - Unbreakable (Karaoke Version)", - "id": "HemnO1qL1xA" - }, - { - "title": "Ne-Yo - Coming With You (Karaoke Version)", - "id": "Z0iCPfzgPqA" - }, - { - "title": "DJ Fresh ft. Ella Eyre - Gravity (Karaoke Version)", - "id": "7_h4ZHgURAA" - }, - { - "title": "The Weeknd - Earned It (Karaoke Version)", - "id": "nxjtaaYWtQE" - }, - { - "title": "Maroon 5 - Sugar (Karaoke Version)", - "id": "PqX8aA6w4bM" - }, - { - "title": "Taylor Swift - Wildest Dreams (Karaoke Version)", - "id": "A7X9_O35rfs" - }, - { - "title": "Kelly Clarkson - Heartbeat Song (Karaoke Version)", - "id": "yLtefnGc2Pc" - }, - { - "title": "Lorde - Team (Karaoke Version)", - "id": "cDIXDomrK08" - }, - { - "title": "Rixton - Hotel Ceiling (Karaoke Version)", - "id": "qoAsOuG4nW4" - }, - { - "title": "Ella Henderson - Yours (Valentine's Day Karaoke)", - "id": "IOowGOU1BXc" - }, - { - "title": "Charli XCX ft. Rita Ora - Doing It (Karaoke Version)", - "id": "YvzTGjEvFW0" - }, - { - "title": "Chris Brown ft. Tyga - Ayo (Karaoke Version)", - "id": "y0JtrETzs0w" - }, - { - "title": "5 Seconds Of Summer - What I Like About You (Karaoke Version)", - "id": "FOi-1F4jg5o" - }, - { - "title": "Bea Miller - Young Blood (Karaoke Version)", - "id": "wD88yyVSdZU" - }, - { - "title": "Sia - Elastic Heart (Karaoke Version)", - "id": "mIqMMATs3R4" - }, - { - "title": "Ed Sheeran - I'm A Mess (Karaoke Version)", - "id": "g_SdqrUolO4" - }, - { - "title": "Fifth Harmony - Miss Movin' On (Karaoke Version)", - "id": "d-8UGc7I3Uo" - }, - { - "title": "R5 - (I Can't) Forget About You (Karaoke Version)", - "id": "dxE-FrLAMuI" - }, - { - "title": "Gwen Stefani - Baby Don't Lie (Karaoke Version)", - "id": "yxFlo4VoaTI" - }, - { - "title": "Ellie Goulding - Love Me Like You Do (Karaoke Version)", - "id": "tW0UjwMOQz8" - }, - { - "title": "Demi Lovato - Nightingale (Karaoke Version)", - "id": "KrvDbVwk9Ug" - }, - { - "title": "Taylor Swift - Style (Karaoke Version)", - "id": "hjpfQQwlznA" - }, - { - "title": "Jessie J - Masterpiece (Karaoke Version)", - "id": "AYlWJ1TZwlM" - }, - { - "title": "Colbie Caillat - Try (Karaoke Version)", - "id": "9_5dpfd0ASI" - }, - { - "title": "Demi Lovato - Neon Lights (Karaoke Version)", - "id": "5p63JJ7uH6k" - }, - { - "title": "James Newton Howard and Jennifer Lawrence - The Hanging Tree (Karaoke Version)", - "id": "o_sbV5vH4aM" - }, - { - "title": "One Direction - Fool's Gold (Karaoke Version)", - "id": "Xj5vxhFRR2Q" - }, - { - "title": "Christina Perri - Human (Karaoke Version)", - "id": "yqubSu9RbSM" - }, - { - "title": "Olly Murs ft. Demi Lovato - Up (Karaoke Version)", - "id": "7FJQCZ8W7zE" - }, - { - "title": "Ben Haenow - Something I Need (Karaoke Version)", - "id": "jv4tOx4btE8" - }, - { - "title": "Taylor Swift - Wonderland (Karaoke Version)", - "id": "AvSdV7nh4J4" - }, - { - "title": "Taylor Swift - Bad Blood (1989 Karaoke Version)", - "id": "cT-oxsG9fWE" - }, - { - "title": "One Direction - Through The Dark (Karaoke Version)", - "id": "MMIb5xQHO8s" - }, - { - "title": "Imagine Dragons - On Top Of The World (Karaoke Version)", - "id": "Rvo_tZPcC1A" - }, - { - "title": "Meghan Trainor - Title (Karaoke Version)", - "id": "7EiHLU8v4mc" - }, - { - "title": "DJ Fresh ft. Rita Ora - Hot Right Now (Karaoke Version)", - "id": "0Qn0loeMRQs" - }, - { - "title": "Nicki Minaj ft. Rihanna - Fly (Karaoke Version)", - "id": "hlhCJAmumc0" - }, - { - "title": "Ariana Grande ft. Big Sean - Right There (Karaoke Version)", - "id": "Im0f_dRnYVU" - }, - { - "title": "One Direction - 18 (Karaoke Version)", - "id": "rBg_nhOrE4I" - }, - { - "title": "Nick Jonas - Jealous (Karaoke Version)", - "id": "Y1DrSBG50NY" - }, - { - "title": "P!nk ft. Nate Ruess - Just Give Me A Reason (Karaoke Version)", - "id": "SJVH11MFY7I" - }, - { - "title": "High School Musical 3 - Right Here, Right Now (Karaoke Version)", - "id": "3y0-7ykbzKU" - }, - { - "title": "Fifth Harmony - Sledgehammer (Karaoke Version)", - "id": "iFPPmwJ_SAc" - }, - { - "title": "One Direction - Stockholm Syndrome (Karaoke Version)", - "id": "LcBlxXqFUJk" - }, - { - "title": "High School Musical - Stick To The Status Quo (Karaoke Version)", - "id": "umsh3W514-c" - }, - { - "title": "Nicki Minaj ft. Skylar Grey - Bed Of Lies (Karaoke Version)", - "id": "oH9M-ZgctGk" - }, - { - "title": "Pink - F**kin' Perfect (Karaoke Version)", - "id": "f3vmxzaH6yI" - }, - { - "title": "Coldplay - Christmas Lights (Karaoke Version)", - "id": "13Tho7I-5y8" - }, - { - "title": "Pink - Raise Your Glass (Karaoke Version)", - "id": "Noenqxgd7T0" - }, - { - "title": "High School Musical 3 - Can I Have This Dance (Karaoke Version)", - "id": "gS34vxm-Q8g" - }, - { - "title": "Band Aid - Do They Know It's Christmas? (Karaoke Version)", - "id": "FEZ5GOCcC0k" - }, - { - "title": "Mariah Carey - Santa Claus Is Comin' To Town (Karaoke Version)", - "id": "yIeef8WNQ6U" - }, - { - "title": "Bobby Helms - Jingle Bell Rock (Karaoke Version)", - "id": "u0yAWWpqFHQ" - }, - { - "title": "Chris Rea - Driving Home For Christmas (Karaoke Version)", - "id": "Y3-YxV_7SeY" - }, - { - "title": "Brenda Lee - Rockin' Around The Christmas Tree (Karaoke Version)", - "id": "dETgVcucAxo" - }, - { - "title": "Sabrina Carpenter - Silver Nights (Karaoke Version)", - "id": "X9Tzv0fiZnk" - }, - { - "title": "Tom Odell - Real Love (Karaoke Version)", - "id": "bGEOuQHv6Ic" - }, - { - "title": "Wham! - Last Christmas (Pudding Mix Karaoke Version)", - "id": "aTrT5xfQILM" - }, - { - "title": "Enrique Iglesias ft. Nicole Scherzinger - Heartbeat (Karaoke Version)", - "id": "MOmHq7yHF1Q" - }, - { - "title": "High School Musical - We're All In This Together (Karaoke Version)", - "id": "t0q4bUW45zM" - }, - { - "title": "High School Musical - Start Of Something New (Karaoke Version)", - "id": "vjSQ-10eRD4" - }, - { - "title": "Kelly Clarkson - People Like Us (Karaoke Version)", - "id": "e-ChngqFCe0" - }, - { - "title": "Shakin' Stevens - Merry Christmas Everyone (Karaoke Version)", - "id": "1HvR0ZAB_Xs" - }, - { - "title": "Shawn Mendes - Show You (Karaoke Version)", - "id": "1xXRWbS4QlU" - }, - { - "title": "Swedish House Mafia - Don't You Worry Child (Karaoke Version)", - "id": "nprRe7SH8U0" - }, - { - "title": "The Little Mermaid - Part Of Your World (Karaoke Version)", - "id": "wnWKoEATxh8" - }, - { - "title": "Beauty And The Beast - Tale As Old As Time (Karaoke Version)", - "id": "dWoGvNofjbM" - }, - { - "title": "Becky G - Can't Stop Dancing (Karaoke Version)", - "id": "X6RQy_6q_Wc" - }, - { - "title": "Sam Smith - Like I Can (Karaoke Version)", - "id": "IQs4p65sgLQ" - }, - { - "title": "Trey Songz - Simply Amazing (Karaoke Version)", - "id": "l0Gr35DNFeA" - }, - { - "title": "Taylor Swift - Blank Space (Backing Track)", - "id": "EuOp_2Zcr8E" - }, - { - "title": "Tangled - When Will My Life Begin (Karaoke Version)", - "id": "aoVtLhhPtSc" - }, - { - "title": "Nicki Minaj - Only ft. Drake, Lil Wayne, Chris Brown (Karaoke Version)", - "id": "npavbyUY-iQ" - }, - { - "title": "Selena Gomez - The Heart Wants What It Wants (Karaoke Version)", - "id": "RdhyabRpbxQ" - }, - { - "title": "Meghan Trainor - Lips Are Movin (Karaoke Version)", - "id": "sWeQn4uBEyQ" - }, - { - "title": "Little Mix - Cannonball (Karaoke Version)", - "id": "n6MGWXqPGLI" - }, - { - "title": "Iggy Azalea ft. MO - Beg For It (Karaoke Version)", - "id": "WDOjTDQPOTA" - }, - { - "title": "Tove Lo - Habits (Stay High) (Karaoke Version)", - "id": "dkFprYzkj-c" - }, - { - "title": "Taylor Swift - Speak Now (Karaoke Version)", - "id": "R4ugqhEZfcI" - }, - { - "title": "Imagine Dragons - I Bet My Life (Karaoke Version)", - "id": "CSB0qayOf00" - }, - { - "title": "Ariana Grande ft. The Weeknd - Love Me Harder (Karaoke Version)", - "id": "exr4TFXsKeY" - }, - { - "title": "Take That - These Days (Karaoke Version)", - "id": "qW34tGhKCd4" - }, - { - "title": "Melanie Martinez - Carousel (Karaoke Version)", - "id": "JIDBnlp2AIw" - }, - { - "title": "Calvin Harris ft. Ellie Goulding - Outside (Karaoke Version)", - "id": "fDpms3alF5o" - }, - { - "title": "Tulisa - Living Without You (Karaoke Version)", - "id": "6QSsqDgUn20" - }, - { - "title": "Union J - You Got It All (Karaoke Version)", - "id": "JYHtUJ8IRss" - }, - { - "title": "Bring Me The Horizon - Drown (Karaoke Version)", - "id": "oXQkmMzwE8M" - }, - { - "title": "Bastille - Torn Apart (Bastille VS. Grades) (Karaoke Version)", - "id": "w8m7vg9BCaM" - }, - { - "title": "Taylor Swift - Welcome To New York (Karaoke Version)", - "id": "-VaK3fA0MLk" - }, - { - "title": "Ariana Grande - Just A Little Bit Of Your Heart (Valentine's Day Karaoke)", - "id": "GhkyN4wn0pQ" - }, - { - "title": "Oliver Heldens ft. KStewart - Last All Night (Koala) (Karaoke Version)", - "id": "rFfsmRca5SA" - }, - { - "title": "Taylor Swift - Out Of The Woods (Karaoke Version)", - "id": "GQ6URuvL8R8" - }, - { - "title": "Olly Murs ft. Travie McCoy - Wrapped Up (Karaoke Version)", - "id": "vBm8NMIxjWY" - }, - { - "title": "Kendrick Lamar - i (Karaoke Version)", - "id": "nL9fXL1K2X8" - }, - { - "title": "Pink - Blow Me (One Last Kiss) (Karaoke Version)", - "id": "HiNNU1yNmZ0" - }, - { - "title": "McBusted - Air Guitar (Karaoke Version)", - "id": "UvyKFvSlYjk" - }, - { - "title": "Avicii ft. Robbie Williams - The Days (Karaoke Version)", - "id": "lGCvdDoby2w" - }, - { - "title": "The Script ft. Will.I.Am - Hall Of Fame (Karaoke Version)", - "id": "t618KFLRzo8" - }, - { - "title": "High School Musical - Breaking Free (Karaoke Version)", - "id": "YwP9YSnOayk" - }, - { - "title": "The Addams Family Theme Song (Karaoke Version)", - "id": "i4Rxx_W34aM" - }, - { - "title": "Drake ft. Rihanna - Take Care (Karaoke Version)", - "id": "ZdJ88cvxyb0" - }, - { - "title": "Jessie J - Who's Laughing Now (Karaoke Version)", - "id": "HH0GvxqzZXE" - }, - { - "title": "Clean Bandit - Real Love (Karaoke Version)", - "id": "hwjzQ25cOdM" - }, - { - "title": "Taylor Swift - Red (Karaoke Version)", - "id": "vq9GUJnBJRc" - }, - { - "title": "Cheryl Cole - Call My Name (Karaoke Version)", - "id": "DIdYR6XUj0o" - }, - { - "title": "Sabrina Carpenter - Can't Blame A Girl For Trying (Karaoke Version)", - "id": "s4zdE6vw8dc" - }, - { - "title": "Jessie J and 2 Chainz - Burnin' Up (Karaoke Version)", - "id": "YPANAPBjP0c" - }, - { - "title": "Taylor Swift - State Of Grace (Karaoke Version)", - "id": "euAnSu99z1c" - }, - { - "title": "Cheryl - I Don't Care (Karaoke Version)", - "id": "50qQwM_JcPE" - }, - { - "title": "Emeli Sandรฉ - Read All About It Pt. III (Karaoke Version)", - "id": "KDbafD4FQRk" - }, - { - "title": "Maroon 5 ft. Wiz Khalifa - Payphone (Karaoke Version)", - "id": "NAOwdpLvJPU" - }, - { - "title": "The Veronicas - You Ruin Me (Karaoke Version)", - "id": "4i_EpEJqbRw" - }, - { - "title": "Wretch 32 - 6 Words (Karaoke Version)", - "id": "s2GEl7Ple9U" - }, - { - "title": "Curtis Stigers and The Forest Rangers - This Life (Sons Of Anarchy Theme) (Karaoke Version)", - "id": "OFrRFmfq0l4" - }, - { - "title": "One Direction - Steal My Girl (Karaoke Version)", - "id": "t4p3nvGWOB4" - }, - { - "title": "Lorde - Yellow Flicker Beat (Karaoke Version)", - "id": "IhSQJ-yJYI8" - }, - { - "title": "One Direction - You and I (Karaoke Version)", - "id": "13yP4A2WE-M" - }, - { - "title": "Meghan Trainor - Dear Future Husband (Karaoke Version)", - "id": "Ny2EbG0ddx4" - }, - { - "title": "Alicia Keys - Girl On Fire (Karaoke Version)", - "id": "rSWHCZoX2mE" - }, - { - "title": "Alesso and Tove Lo - Heroes (Karaoke Version)", - "id": "3X9bDL8hHR0" - }, - { - "title": "The Vamps - Hurricane (Karaoke Version)", - "id": "HZEIK--lDkc" - }, - { - "title": "Jennifer Lopez and Iggy Azalea - Booty (Remix) (Karaoke Version)", - "id": "pnHEAUuvVoE" - }, - { - "title": "Troye Sivan - Happy Little Pill (Karaoke Version)", - "id": "QA0aJNsAq8A" - }, - { - "title": "Echosmith - Cool Kids (Karaoke Version)", - "id": "Y53kOdnjWec" - }, - { - "title": "Cher Lloyd - Swagger Jagger (Karaoke Version)", - "id": "6-cSmlY1t60" - }, - { - "title": "The Police - Every Breath You Take (Karaoke Version)", - "id": "gKjIiaAXfDs" - }, - { - "title": "Fall Out Boy - Centuries (Karaoke Version)", - "id": "1EFhj_ofcnw" - }, - { - "title": "George Ezra - Blame It On Me (Karaoke Version)", - "id": "YsDNmRF-E1c" - }, - { - "title": "Nelly Furtado - Try (Karaoke Version)", - "id": "Bx1nxiMV5Zc" - }, - { - "title": "Shawn Mendes - Life Of The Party (Karaoke Version)", - "id": "3xtbMy_hcY4" - }, - { - "title": "Fifth Harmony - BO$$ (Karaoke Version)", - "id": "T8NQAl6fFmQ" - }, - { - "title": "Gotye and Kimbra - Somebody That I Used To Know (Karaoke Version)", - "id": "toHUpXZRgTQ" - }, - { - "title": "Pitbull and John Ryan - Fireball (Karaoke Version)", - "id": "sd3UJLIxyas" - }, - { - "title": "Calvin Harris and John Newman - Blame (Karaoke Version)", - "id": "SI2E05Dad9M" - }, - { - "title": "Melanie Martinez - Dollhouse (Karaoke Version)", - "id": "Ic76QuFskME" - }, - { - "title": "Jeremih and YG - Don't Tell Em (Karaoke Version)", - "id": "XWriQS9yEug" - }, - { - "title": "Chris Brown - X (Karaoke Version)", - "id": "DV9RYBcnr7s" - }, - { - "title": "Zendaya - Replay (Karaoke Version)", - "id": "XZzfLl7M1oE" - }, - { - "title": "Sam Smith - I'm Not The Only One (Classic Karaoke Version)", - "id": "XcZX89Z0nVA" - }, - { - "title": "Maroon 5 - Animals (Karaoke Version)", - "id": "R1ug4G9JHOA" - }, - { - "title": "Charli XCX - Break The Rules (Karaoke Version)", - "id": "CYrZ6QOrrsg" - }, - { - "title": "Iggy Azalea and T.I. - Change Your Life (Karaoke Version)", - "id": "u2zxuW5nN5E" - }, - { - "title": "Cee Lo Green - Forget You (Karaoke Version)", - "id": "l-hN9wzbPJE" - }, - { - "title": "Taylor Swift - Shake It Off (Karaoke Version)", - "id": "-i5MU14JLdw" - }, - { - "title": "Professor Green and Tori Kelly - Lullaby (Karaoke Version)", - "id": "77P-hroYzLE" - }, - { - "title": "Damien Rice - Cannonball (Karaoke Version)", - "id": "0ZZL5nj8fVo" - }, - { - "title": "Katy Perry - This Is How We Do (Karaoke Version)", - "id": "vLMMYprCNVk" - }, - { - "title": "Ella Eyre - Comeback (Karaoke Version)", - "id": "EpAo04PEshQ" - }, - { - "title": "Ella Henderson - Glow (Karaoke Version)", - "id": "6cjnk0r_63k" - }, - { - "title": "Becky G - Shower (Karaoke Version)", - "id": "RLSxxKyw4Tk" - }, - { - "title": "Ariana Grande and Big Sean - Best Mistake (Karaoke Version)", - "id": "xpo4FUydnMM" - }, - { - "title": "Nicki Minaj - Anaconda (Karaoke Version)", - "id": "Del8tBjZm5I" - }, - { - "title": "Taylor Swift and Ed Sheeran - Everything Has Changed (Karaoke Version)", - "id": "j3zBJPk0Jtk" - }, - { - "title": "Iggy Azalea - Bounce (Karaoke Version)", - "id": "Z5la7qf4EbI" - }, - { - "title": "Ed Sheeran - Thinking Out Loud (Karaoke Version)", - "id": "Dd9W3PthynU" - }, - { - "title": "Fuse ODG and Angel - T.I.N.A. (Karaoke Version)", - "id": "wn1I-FXlkuo" - }, - { - "title": "5 Seconds Of Summer - Voodoo Doll (Karaoke Version)", - "id": "fOMmJWmKkBk" - }, - { - "title": "Iggy Azalea and Rita Ora - Black Widow (Karaoke Version)", - "id": "zjEuYztBbBo" - }, - { - "title": "David Guetta ft. Sia - Titanium (Karaoke Version)", - "id": "32LB2DR_JM0" - }, - { - "title": "Corinne Bailey Rae - Like A Star (Karaoke Version)", - "id": "UxVpPdd7TVQ" - }, - { - "title": "Juicy J, Wiz Khalifa, Ty Dolla $ign - Shell Shocked (TMNT Theme) (Karaoke Version)", - "id": "KJf5S46Jv8A" - }, - { - "title": "Lilly Wood and Robin Schulz - Prayer In C (Karaoke Version)", - "id": "K-riKCPdhVc" - }, - { - "title": "G.R.L. - Ugly Heart (Karaoke Version)", - "id": "jlui69ARZEE" - }, - { - "title": "Coldplay - The Scientist (Karaoke Version)", - "id": "0ycVgd7YleI" - }, - { - "title": "Frozen - For The First Time In Forever (Idina Menzel and Kristen Bell) (Karaoke Version)", - "id": "rmQ_n0rJ7JE" - }, - { - "title": "Jessie J, Ariana Grande and Nicki Minaj - Bang Bang (Karaoke Version)", - "id": "u1OG4gBcPaA" - }, - { - "title": "Meghan Trainor - All About That Bass (Karaoke Version)", - "id": "m3dSO95AALI" - }, - { - "title": "They Might Be Giants - Boss Of Me (Karaoke Version)", - "id": "QoASq_f-SSs" - }, - { - "title": "Lucy Spraggan - Someone (Karaoke Version)", - "id": "LRcXnBQ_nsk" - }, - { - "title": "DJ Fresh and Ellie Goulding - Flashlight (Karaoke Version)", - "id": "jhNLW2_Oejg" - }, - { - "title": "Rixton - Wait On Me (Karaoke Version)", - "id": "EQ2TjiP6ZcA" - }, - { - "title": "The Script - Superheroes (Karaoke Version)", - "id": "_4KETuTveLA" - }, - { - "title": "Bars and Melody - Hopeful (Karaoke Version)", - "id": "o68oHN_opVQ" - }, - { - "title": "Maverick Sabre - Emotion (Ain't Nobody) (Karaoke Version)", - "id": "7SadKnEYzMI" - }, - { - "title": "Ed Sheeran - Photograph (Karaoke Version)", - "id": "XpXe2mXmhp0" - }, - { - "title": "Melissa Steel and Popcaan - Kisses For Breakfast (Karaoke Version)", - "id": "Z2jPqqpNq0A" - }, - { - "title": "Naughty Boy and Sam Romans - Home (Karaoke Version)", - "id": "2v-PoJdMsfg" - }, - { - "title": "Chris Brown and Usher and Rick Ross - New Flame (Karaoke Version)", - "id": "wo5pP2x5sh4" - }, - { - "title": "Ed Sheeran - Don't (Karaoke Version)", - "id": "MwAY-Cx4VAI" - }, - { - "title": "Frozen - Let It Go (Idina Menzel) (Karaoke Version)", - "id": "ifCAfAzOBJM" - }, - { - "title": "5 Seconds Of Summer - Heartbreak Girl (Karaoke Version)", - "id": "uIJUBnf3sRU" - }, - { - "title": "5 Seconds Of Summer - Beside You (Karaoke Version)", - "id": "O0Jq_xygFS0" - }, - { - "title": "Union J - Tonight (We Live Forever) (Karaoke Version)", - "id": "Z-mdz2aKPgE" - }, - { - "title": "Cher Lloyd - Bind Your Love (Karaoke Version)", - "id": "EevP04l97PA" - }, - { - "title": "Ariana Grande and Zedd - Break Free (Karaoke Version)", - "id": "L2YJD9urLdA" - }, - { - "title": "5 Seconds Of Summer - Amnesia (Karaoke Version)", - "id": "0QA5RuYP22Y" - }, - { - "title": "Ella Eyre - If I Go (Karaoke Version)", - "id": "7mQS9bI1640" - }, - { - "title": "Charli XCX - Boom Clap (From 'The Fault In Our Stars') (Karaoke Version)", - "id": "zrcywPrIr9k" - }, - { - "title": "Maroon 5 - Maps (Karaoke Version)", - "id": "lumFjOzdh0E" - }, - { - "title": "T.I. and Iggy Azalea - No Mediocre (Karaoke Version)", - "id": "ABBGBCGKDm4" - }, - { - "title": "Jess Glynne - Right Here (Karaoke Version)", - "id": "T3LzwxVpm7o" - }, - { - "title": "Matrix & Futurebound and Tanya Lacey - Don't Look Back (Karaoke Version)", - "id": "kt0Bv3RSAL8" - }, - { - "title": "Little Mix - Salute (Karaoke Version)", - "id": "P2C0fZLGYSo" - }, - { - "title": "Ed Sheeran - The Man (Karaoke Version)", - "id": "TLHJWLJ6kE0" - }, - { - "title": "MKTO - Classic (Karaoke Version)", - "id": "nWR9KwCCdok" - }, - { - "title": "2 Chainz and Wiz Khalifa - We Own It (Karaoke Version)", - "id": "ZpyYGysTGHI" - }, - { - "title": "Armin Van Buuren - This Is What It Feels Like (Karaoke Version)", - "id": "pRWW6FENG7o" - }, - { - "title": "Cheryl Cole and Tinie Tempah - Crazy Stupid Love (Karaoke Version)", - "id": "Df0E9H2PUCA" - }, - { - "title": "Jason Derulo and Snoop Dogg - Wiggle (Karaoke Version)", - "id": "s2gD1jwjU_M" - }, - { - "title": "Lana Del Rey - Born To Die (Karaoke Version)", - "id": "nuA_oDeq-i0" - }, - { - "title": "Magic! - Rude (Karaoke Version)", - "id": "QQre5RbiyGM" - }, - { - "title": "Iggy Azalea - Work (Karaoke Version)", - "id": "MaoUGscvHOU" - }, - { - "title": "David Guetta and Ne-Yo and Akon - Play Hard (Karaoke Version)", - "id": "Ly9ot1bTEhE" - }, - { - "title": "Pixie Lott - Lay Me Down (Karaoke Version)", - "id": "lfm5wEn08h0" - }, - { - "title": "Neon Jungle - Louder (Karaoke Version)", - "id": "LkuqdAAG8JM" - }, - { - "title": "The Vamps and Demi Lovato - Somebody To You (Karaoke Version)", - "id": "0vjO6_uc__A" - }, - { - "title": "Cher Lloyd - Human (Karaoke Version)", - "id": "1wWwSJ8tUyE" - }, - { - "title": "5 Seconds Of Summer and Scott Mills - Hearts Upon Our Sleeve (World Cup 2014 Karaoke Version)", - "id": "Ohg5_yH0fQ8" - }, - { - "title": "Jennifer Lopez - First Love (Karaoke Version)", - "id": "2Uy1smeoEZo" - }, - { - "title": "The Common Linnets - Calm After The Storm (Karaoke Version)", - "id": "NK7Prd-tJUk" - }, - { - "title": "Nicki Minaj - Pills N Potions (Karaoke Version)", - "id": "3eWhaHn_6hE" - }, - { - "title": "Will.I.Am and Cody Wise - It's My Birthday (Karaoke Version)", - "id": "ZXiunLg67Dw" - }, - { - "title": "DJ Snake and Lil Jon - Turn Down For What (Karaoke Version)", - "id": "ZnjXy97P7lY" - }, - { - "title": "Nicole Scherzinger - Your Love (Karaoke Version)", - "id": "2jcPA9-BNmQ" - }, - { - "title": "Shakira and Carlinhos Brown - La La La (Karaoke Version)", - "id": "eO3m7GK9DKU" - }, - { - "title": "Little Mix - Change Your Life (Karaoke Version)", - "id": "zepWe58eKVE" - }, - { - "title": "Tiesto and Matthew Koma - Wasted (Karaoke Version)", - "id": "qXLbMCaW8AU" - }, - { - "title": "Paloma Faith - Only Love Can Hurt Like This (Karaoke Version)", - "id": "sNuLpPuWM68" - }, - { - "title": "5 Seconds Of Summer - Good Girls (Karaoke Version)", - "id": "X3k7kLJ9p_I" - }, - { - "title": "Birdy - Skinny Love (Karaoke Version)", - "id": "sndK-GAOLPM" - }, - { - "title": "George Ezra - Budapest (Karaoke Version)", - "id": "CioqlHi-2b4" - }, - { - "title": "JLS - Love You More (Karaoke Version)", - "id": "Z1Uh8Gxxci4" - }, - { - "title": "Ed Sheeran - Lego House (Karaoke Version)", - "id": "WPRJlC9h8D0" - }, - { - "title": "Coldplay - A Sky Full Of Stars (Karaoke Version)", - "id": "mHT7qO-cZbo" - }, - { - "title": "Ariana Grande and Iggy Azalea - Problem (Karaoke Version)", - "id": "YXVxusIRT5A" - }, - { - "title": "Ben Howard - Only Love (Karaoke Version)", - "id": "7216Gq7Gk8o" - }, - { - "title": "5 Seconds Of Summer - Don't Stop (Karaoke Version)", - "id": "fyRdIzoUiqg" - }, - { - "title": "Chris Brown and Justin Bieber - Next To You (Karaoke Version)", - "id": "NEH_jPXDOMA" - }, - { - "title": "Lil Twist and Justin Bieber and Miley Cyrus - Twerk (Karaoke Version)", - "id": "rR_tkAIIFXE" - }, - { - "title": "Tove Lo and Hippie Sabotage - Stay High (Karaoke Version)", - "id": "s2YDvHj4rEE" - }, - { - "title": "Regina Spektor - You've Got Time (Karaoke Version) (OITNB Theme)", - "id": "7e0P-3OC5jM" - }, - { - "title": "Rixton - Me And My Broken Heart (Karaoke Version)", - "id": "Ey6wngxuWcM" - }, - { - "title": "Union J - Carry You (Karaoke Version)", - "id": "hET7cow11KQ" - }, - { - "title": "Lana Del Rey - West Coast (Karaoke Version)", - "id": "ZIduCDtNICU" - }, - { - "title": "Ella Henderson - Ghost (Karaoke Version)", - "id": "PAv5xhWR2NU" - }, - { - "title": "OneRepublic - Love Runs Out (Karaoke Version)", - "id": "Oo1qfMufvx4" - }, - { - "title": "Nelly - Hey Porsche (Karaoke Version)", - "id": "xMuNX6Za6F4" - }, - { - "title": "Alicia Keys and Kendrick Lamar - It's On Again (Karaoke Version) from 'The Amazing Spider-Man 2'", - "id": "LOtANEwl_74" - }, - { - "title": "Jason Mraz - I Won't Give Up (Karaoke Version)", - "id": "UdxPKQ0_PdE" - }, - { - "title": "Ed Sheeran - SING (Karaoke Version)", - "id": "ASCRuBkjvGY" - }, - { - "title": "Fall Out Boy - My Songs Know What You Did In The Dark (Light Em Up) [Karaoke Version]", - "id": "5Fm8Wi9sYAU" - }, - { - "title": "Kelly Clarkson - Catch My Breath (Karaoke Version)", - "id": "Hh_9KtUL3hU" - }, - { - "title": "The 1975 - Chocolate (Karaoke Version)", - "id": "WMcNsTdCqwk" - }, - { - "title": "Nicole Scherzinger - Don't Hold Your Breath (Karaoke Version)", - "id": "yox8cYUa8ks" - }, - { - "title": "Klangkarussell and Will Heard - Sonnentanz (Sun Don't Shine) (Karaoke Version)", - "id": "4mBsRpC1Ajc" - }, - { - "title": "Kelly Clarkson - Mr Know It All (Karaoke Version)", - "id": "DvBvNnzwdzU" - }, - { - "title": "Clean Bandit and Sharna Bass - Extraordinary (Karaoke Version)", - "id": "3dD3hI6cw18" - }, - { - "title": "Rudimental and Ella Eyre - Waiting All Night (Karaoke Version)", - "id": "QbpxigTbPaw" - }, - { - "title": "Will.I.Am and Justin Bieber - #thatPOWER (Karaoke Version)", - "id": "ThDF47voqJs" - }, - { - "title": "Justin Bieber and Nicki Minaj - Beauty And A Beat (Karaoke Version)", - "id": "xO3u3T8ztsA" - }, - { - "title": "Ed Sheeran - The A Team (Karaoke Version)", - "id": "t4ePY7LqFV4" - }, - { - "title": "Mr. Probz and Robin Schulz - Waves (Karaoke Version)", - "id": "bTRwtUrggKs" - }, - { - "title": "Rita Ora and Tinie Tempah - R.I.P. (Karaoke Version)", - "id": "I2rvzgyMDPI" - }, - { - "title": "Justin Bieber and Big Sean - As Long as You Love Me (Karaoke Version)", - "id": "NAukkfuuCu4" - }, - { - "title": "Sam Smith - Stay With Me (Karaoke Version)", - "id": "7C8034DlmIM" - }, - { - "title": "Jessie J - Domino (Karaoke Version)", - "id": "GZ_ROLrdvPI" - }, - { - "title": "John Legend - All of Me (Karaoke With Backing Vocals)", - "id": "kr8wPkdHFA0" - }, - { - "title": "Cash Cash and Bebe Rexha - Take Me Home (Karaoke Version)", - "id": "5rCYIi0-NEo" - }, - { - "title": "Little Mix - Word Up (Karaoke Version)", - "id": "D-NwmaRLAnc" - }, - { - "title": "Foxes - Holding Onto Heaven (Karaoke Version)", - "id": "RxXWFl8Fmk4" - }, - { - "title": "Christina Perri - A Thousand Years (Karaoke With Backing Vocals)", - "id": "j1V33b2ZEIo" - }, - { - "title": "Calvin Harris - Summer (Karaoke Version)", - "id": "M355EDbE-oE" - }, - { - "title": "Sia - Chandelier (Karaoke Version)", - "id": "b3iox_qUaUE" - }, - { - "title": "Justin Bieber - Boyfriend (Karaoke Version)", - "id": "LYI2Gwxqiag" - }, - { - "title": "Rihanna - Diamonds (Karaoke Version)", - "id": "7DzQs7dpNL8" - }, - { - "title": "Fuse ODG and Sean Paul - Dangerous Love (Karaoke Version)", - "id": "dFGokH0hG_8" - }, - { - "title": "Chris Brown and Aaliyah - Don't Think They Know (Karaoke Version)", - "id": "e76TSYl5T1A" - }, - { - "title": "Pitbull and G. R.L. - Wild Wild Love (Karaoke Version)", - "id": "QW48JauNXww" - }, - { - "title": "Usher - Scream (Karaoke Version)", - "id": "v1u9cPBBiKI" - }, - { - "title": "Taylor Swift - 22 (Karaoke Version)", - "id": "Ia8kqGdYmKw" - }, - { - "title": "Goo Goo Dolls - Iris (Karaoke Version)", - "id": "bi0hyLXusjo" - }, - { - "title": "Usher - Climax (Karaoke Version)", - "id": "zzpeqH9wzeo" - }, - { - "title": "Elyar Fox - A Billion Girls (Karaoke Version)", - "id": "yVu-4OAcMI0" - }, - { - "title": "Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version)", - "id": "IW0EU6Ge5SE" - }, - { - "title": "Rita Ora - How We Do (Party)", - "id": "pbPV7a-u3wM" - }, - { - "title": "Paramore - Now (Karaoke Version)", - "id": "FbKx9g6oyvw" - }, - { - "title": "Rita Ora - Shine Ya Light (Karaoke Version)", - "id": "L0u8R04l4Mk" - }, - { - "title": "Olly Murs - Dear Darlin' (Karaoke Version)", - "id": "_xncUDtPA_8" - }, - { - "title": "Let Her Go - Passenger (Karaoke Version)", - "id": "Ug_OM0WzVmA" - }, - { - "title": "Iggy Azalea and Charli Xcx - Fancy (Karaoke Version)", - "id": "nrV7e6ASomM" - }, - { - "title": "Meridian Dan and Big H and Jme- German Whip (Karaoke Version)", - "id": "_AN2wQ4Bjao" - }, - { - "title": "The Vamps - Last Night (Karaoke Version)", - "id": "HyI18YcqCg8" - }, - { - "title": "Afrojack and Wrabel - Ten Feet Tall (Karaoke Version)", - "id": "yVcQMZcXvLQ" - }, - { - "title": "Britney Spears - Work B***h (Karaoke Version)", - "id": "qLkddAcYk_o" - }, - { - "title": "Ellie Goulding - Beating Heart (Karaoke Version)", - "id": "pfi5VycP0ug" - }, - { - "title": "Birdy - Wings (Karaoke Version)", - "id": "eWJAA6VnN4U" - }, - { - "title": "Kiesza - Hideaway (Karaoke Version)", - "id": "YJehZXL35lE" - }, - { - "title": "Union J - Beautiful Life (Karaoke Version)", - "id": "7IM-A_tLqq0" - }, - { - "title": "Avicii - You Make Me (Karaoke Version)", - "id": "6yh1KrT_zEM" - }, - { - "title": "Lucy Spraggan - Tea and Toast (Karaoke Version)", - "id": "vejuDZqIwKg" - }, - { - "title": "Pharrell Williams - Happy (Karaoke Version)", - "id": "jwH1hD0-DoQ" - }, - { - "title": "Lucy Spraggan - Last Night (Beer Fear) (Karaoke Version)", - "id": "fNOywuJ_5KI" - }, - { - "title": "Kylie Minogue - Into the Blue (Karaoke Version)", - "id": "eGa2T3ilPdU" - }, - { - "title": "John Martin - Anywhere for You (Karaoke Version)", - "id": "3KbcNzvOEj8" - }, - { - "title": "The Wanted - We Own The Night (Karaoke Version)", - "id": "lyeHjTwkI-k" - }, - { - "title": "Enrique Iglesias and Pitbull - I'm A Freak (Karaoke Version)", - "id": "-Qh5-CtdqAI" - }, - { - "title": "Alesso vs OneRepublic - If I Lose Myself (Karaoke Version)", - "id": "vnONN4Lv3t8" - }, - { - "title": "Demi Lovato - Skyscraper (Karaoke Version)", - "id": "PHfZnrXNyiA" - }, - { - "title": "The Vamps - Can We Dance (Karaoke Version)", - "id": "GB2q8fg-ZtI" - }, - { - "title": "Haim - The Wire (Karaoke Version)", - "id": "1j1ks3ZQrzw" - }, - { - "title": "Macklemore & Ryan Lewis and Mary Lambert - Same Love (Karaoke Version)", - "id": "l1znKeghAXk" - }, - { - "title": "Duke Dumont and Jax Jones - I Got U (Karaoke Version)", - "id": "vJA-pglQTP0" - }, - { - "title": "Zedd and Hayley Williams - Stay the Night (Karaoke Version)", - "id": "WxMEiEhUwjU" - }, - { - "title": "Taylor Swift - All Too Well (Karaoke Version)", - "id": "JgTU2aoHigU" - }, - { - "title": "Tiรซsto - Red Lights (Karaoke Version)", - "id": "483Su5V0wGA" - }, - { - "title": "Lily Allen - Air Balloon (Karaoke Version)", - "id": "oLc24dxIU_w" - }, - { - "title": "Fuse ODG - Million Pound Girl (Badder Than Bad) (Karaoke Version)", - "id": "MfL3EQaytvs" - }, - { - "title": "Justin Bieber - Heartbreaker (Karaoke Version)", - "id": "3l0ro3uYvSs" - }, - { - "title": "Matrix & Futurebound and Max Marshall - Control (Karaoke Version)", - "id": "Rt2vt7U-6jU" - }, - { - "title": "Miley Cyrus - Wrecking Ball (Karaoke Version)", - "id": "S78RmvtH79Y" - }, - { - "title": "Calvin Harris and Ellie Goulding - I Need Your Love (Karaoke Version)", - "id": "z1aF-nGMLc0" - }, - { - "title": "Drake - Trophies (Karaoke Version)", - "id": "b9YPBnVx3B0" - }, - { - "title": "Foxes - Let Go For Tonight (Karaoke Version)", - "id": "_ukBxzYp6DA" - }, - { - "title": "Katy B - Crying For No Reason (Karaoke Version)", - "id": "QzveqpX655M" - }, - { - "title": "Lea Michele - Cannonball (Karaoke Version)", - "id": "0_I0dpYtZ6Q" - }, - { - "title": "Neon Jungle - Braveheart (Karaoke Version)", - "id": "ORc-j7Kxvr8" - }, - { - "title": "Jason Derulo - Trumpets (Karaoke Version)", - "id": "OQVBlJEW2lU" - }, - { - "title": "Pitbull and Ke$ha - Timber (Karaoke Version)", - "id": "Cnz3ayX8dyg" - }, - { - "title": "Avicii - Hey Brother (Karaoke Version)", - "id": "7fjomuUR2kM" - }, - { - "title": "Will.I.Am and Miley Cyrus, French Montana, Wiz Khalifa - Feelin' Myself (Karaoke Version)", - "id": "7GcLZz-jdAE" - }, - { - "title": "Future & Miley Cyrus and Mr Hudson - Real and True (Karaoke Version)", - "id": "vBd0vSqjkuA" - }, - { - "title": "The Vamps - Wild Heart (Karaoke Version)", - "id": "3Jyg6SD-UVo" - }, - { - "title": "Icona Pop and Charli XCX - I Love It (Karaoke Version)", - "id": "7NhxGVOC4Ww" - }, - { - "title": "Pink and Lily Allen - True Love (Karaoke Version)", - "id": "z-5-vOEXc40" - }, - { - "title": "Jason Derulo - The Other Side (Karaoke Version)", - "id": "w_Bp1T32EUk" - }, - { - "title": "DJ Fresh VS Diplo and Dominique Young Unique - Earthquake (Karaoke Version)", - "id": "wM-C3Z8Nem8" - }, - { - "title": "Calvin Harris and Ayah Marah - Thinking About You (Karaoke Version)", - "id": "uj6QnzPxEbo" - }, - { - "title": "Jason Derulo - Talk Dirty (Karaoke Version)", - "id": "TwF4DJDKkjU" - }, - { - "title": "Matt Cardle and Melanie C - Loving You (Karaoke Version)", - "id": "Q35XY69y4v0" - }, - { - "title": "Miley Cyrus - We Can't Stop (Karaoke Version)", - "id": "M-hN4k999b8" - }, - { - "title": "Naughty Boy and Emeli Sandรฉ - Lifted (Karaoke Version)", - "id": "FH4XRaC9Ze0" - }, - { - "title": "Gabz - Lighters (The One) (Karaoke Version)", - "id": "D2CA3imf9Vw" - }, - { - "title": "Selena Gomez - Come And Get It (Karaoke Version)", - "id": "6wv_7xyQj2c" - }, - { - "title": "Icona Pop - All Night (Karaoke Version)", - "id": "1tYTP-uXPlo" - }, - { - "title": "Britney Spears - Ooh La La (Karaoke Version)", - "id": "nNcTFDHEyes" - }, - { - "title": "Lana Del Rey vs Cedric Gervais - Summertime Sadness (Karaoke Version)", - "id": "htDFR5LMfqg" - }, - { - "title": "Jessie J - It's My Party (Karaoke Version)", - "id": "b6wXoujOMGw" - }, - { - "title": "Neon Jungle - Trouble (Karaoke Version)", - "id": "yCanOK-R6sw" - }, - { - "title": "Drake and Majid Jordan - Hold On, We're Going Home (Karaoke Version)", - "id": "mdizaRgRTXQ" - }, - { - "title": "Ellie Goulding - Burn (Karaoke Version)", - "id": "doarFqjcTfg" - }, - { - "title": "One Direction - Best Song Ever (Karaoke Version)", - "id": "ReUUpDpLlhA" - }, - { - "title": "Alunageorge - You Know You Like It (Karaoke Version)", - "id": "TCVRimsdsyI" - }, - { - "title": "Leah McFall - I Will Survive (Karaoke Version)", - "id": "4_EQ0rs6Vqg" - }, - { - "title": "Britney Spears - Perfume (Karaoke Version)", - "id": "vh32e2knTF8" - }, - { - "title": "Jessie J and Becky G - Excuse My Rude (Karaoke Version)", - "id": "rFzx3VH4vPU" - }, - { - "title": "Lily Allen - Somewhere Only We Know (Karaoke Version)", - "id": "mBkc7uKrczQ" - }, - { - "title": "Lucy Spraggan - Lighthouse (Karaoke Version)", - "id": "kF1JFT96oWk" - }, - { - "title": "Afrojack and Spree - The Spark (Karaoke Version)", - "id": "gKXuYKQNA08" - }, - { - "title": "Rudimental and Foxes - Right Here (Karaoke Version)", - "id": "d20XBaOnzOY" - }, - { - "title": "Cher Lloyd and T.I. - I Wish (Karaoke Version)", - "id": "_A-zr1NqOKs" - }, - { - "title": "John Newman - Cheating (Karaoke Version)", - "id": "QseRWDhVHsg" - }, - { - "title": "Disclosure - F for You (Karaoke Version)", - "id": "Jv7hnWeUmIM" - }, - { - "title": "James Blunt - Bonfire Heart (Karaoke Version)", - "id": "JsPFdlBTSx0" - }, - { - "title": "London Grammar - Strong (Karaoke Version)", - "id": "BP-LutXnC24" - }, - { - "title": "Lady Gaga - Applause (Karaoke Version)", - "id": "7_TY6EGoozE" - }, - { - "title": "Calvin Harris & Alesso and Hurts - Under Control (Karaoke Version)", - "id": "RfGCROLwibw" - }, - { - "title": "Rixton - Make Out (Karaoke Version)", - "id": "NWWXvzat7lk" - }, - { - "title": "Enrique Iglesias - Heart Attack (Karaoke Version)", - "id": "GGgQgeSx2jg" - }, - { - "title": "Lily Allen - Hard Out Here (Karaoke Version)", - "id": "EhnEONnS2-M" - }, - { - "title": "Lawson - Juliet (Karaoke Version)", - "id": "Fe2BkM4Ie5o" - }, - { - "title": "OneRepublic - Counting Stars (Karaoke Version)", - "id": "3EG3CfTv4lQ" - }, - { - "title": "Conor Maynard - R U Crazy? (Karaoke Version)", - "id": "ejDCjhhWQYo" - }, - { - "title": "Shane Filan - Everything To Me (Karaoke Version)", - "id": "SkwcAhRaEIg" - }, - { - "title": "Lana Del Rey - Young And Beautiful (Karaoke Version)", - "id": "w54NfoUuhXo" - }, - { - "title": "The 1975 - The City (Karaoke Version)", - "id": "pNr5LSMXG94" - }, - { - "title": "Owl City - Good Time (Karaoke Version)", - "id": "_W3uKctm9v0" - }, - { - "title": "Sia - Kill And Run (Karaoke Version)", - "id": "RXYFMzmOFiY" - }, - { - "title": "Ne-Yo - Let Me Love You (Until You Learn to Love Yourself) (Karaoke Version)", - "id": "4Xi6V-aT1nA" - }, - { - "title": "Beyoncรฉ and Andre 3000 - Back To Black (Karaoke Version)", - "id": "3fXvkCYp-qc" - }, - { - "title": "The Gaslight Anthem - 45 (Karaoke Version)", - "id": "o83nHAszSrQ" - }, - { - "title": "Macklemore & Ryan Lewis and Ray Dalton - Can't Hold Us (Karaoke Version)", - "id": "CZ5WFGTjQ8A" - }, - { - "title": "Gabrielle Aplin - Please Don't Say You Love Me (Karaoke Version)", - "id": "0txJDr9G1dk" - }, - { - "title": "Afrojack and Chris Brown - As Your Friend (Karaoke Version)", - "id": "yjxk2DrFSgI" - }, - { - "title": "Drake - Started From The Bottom (Karaoke Version)", - "id": "tS91oZiNaN8" - }, - { - "title": "One Direction - One Way or Another (Teenage Kicks) (Karaoke Version)", - "id": "lt7mkYREVEg" - }, - { - "title": "Chris Brown - Home (Karaoke Version)", - "id": "izr_9HpTZaU" - }, - { - "title": "Macklemore & Ryan Lewis and Wanz - Thrift Shop (Karaoke Version)", - "id": "qx668eVJKeo" - }, - { - "title": "Rita Ora - Radioactive (Karaoke Version)", - "id": "Nv5boiav3ek" - }, - { - "title": "White Noise (in the Style of Disclosure and Alunageorge)", - "id": "gt-psBCXsWo" - }, - { - "title": "I Could Be The One (in the Style of Avicii and Nicky Romero)", - "id": "uqbJDWEAfNo" - }, - { - "title": "Nicole Scherzinger - Boomerang (Karaoke Version)", - "id": "3u7dyorgyBU" - }, - { - "title": "Bingo Players and Far East Movement - Get Up (Rattle) (Karaoke Version)", - "id": "8czby-7FXsc" - }, - { - "title": "Sing King Karaoke - Kisses Down Low (in the Style of Kelly Rowland)", - "id": "o32l2OpcVzM" - }, - { - "title": "Pompeii (in the Style of Bastille)", - "id": "x7oWjR-4aM4" - }, - { - "title": "Biffy Clyro - Black Chandelier (Karaoke Version)", - "id": "16ngyFp4QdY" - }, - { - "title": "Don't Make Em Like You (in the Style of Ne-Yo and Wiz Khalifa)", - "id": "cQe6D8bwNHA" - }, - { - "title": "Your Drums, Your Love (in the Style of Alunageorge)", - "id": "PadpNCw5EFA" - }, - { - "title": "Rudimental, John Newman and Alex Clare - Not Giving In (Karaoke Version)", - "id": "zZEy5v8lmcY" - }, - { - "title": "Rudimental and John Newman - Feel The Love (Karaoke Version)", - "id": "iPt5vUHVROI" - } - ], - "@karafun": [ - { - "title": "Time to Say Goodbye - Andrea Bocelli & Sarah Brightman", - "id": "Karaoke Version" - }, - { - "title": "Mad World - Michael Andrews (Donnie Darko)", - "id": "Karaoke Version" - }, - { - "title": "Someday - Z-O-M-B-I-E-S (Milo Manheim & Meg Donnelly)", - "id": "Karaoke Version" - }, - { - "title": "Killeagh - Kingfishr", - "id": "Karaoke Version" - }, - { - "title": "Too Cold at Home - Mark Chesnutt", - "id": "Karaoke Version" - }, - { - "title": "Burning Love / Proud Mary (live) - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "The Letter - The Box Tops", - "id": "Karaoke Version" - }, - { - "title": "Dirty Deeds Done Dirt Cheap - AC/DC", - "id": "Karaoke Version" - }, - { - "title": "All My Life - K-Ci And JoJo", - "id": "Karaoke Version" - }, - { - "title": "You Don't Know How It Feels - Tom Petty", - "id": "Karaoke Version" - }, - { - "title": "She Had Me at Heads Carolina - Cole Swindell", - "id": "Karaoke Version" - }, - { - "title": "Quit Playing Games (With My Heart) - Backstreet Boys", - "id": "Karaoke Version" - }, - { - "title": "Queen of Hearts - Juice Newton", - "id": "Karaoke Version" - }, - { - "title": "My Prerogative - Bobby Brown", - "id": "Karaoke Version" - }, - { - "title": "Let 'Er Rip - The Chicks", - "id": "Karaoke Version" - }, - { - "title": "Headlines - Drake", - "id": "Karaoke Version" - }, - { - "title": "Supersonic - Oasis", - "id": "Karaoke Version" - }, - { - "title": "Shake the Frost (live) - Tyler Childers", - "id": "Karaoke Version" - }, - { - "title": "Confessions Part II - Usher", - "id": "Karaoke Version" - }, - { - "title": "If I Ever Fall in Love - Shai", - "id": "Karaoke Version" - }, - { - "title": "Comedown - Bush", - "id": "Karaoke Version" - }, - { - "title": "Crystal Chandeliers - Charley Pride", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Sunday - Daniel Boone", - "id": "Karaoke Version" - }, - { - "title": "I Need More of You - The Bellamy Brothers", - "id": "Karaoke Version" - }, - { - "title": "Pocketful Of Sunshine - Natasha Bedingfield", - "id": "Karaoke Version" - }, - { - "title": "If I Die Young - The Band Perry", - "id": "Karaoke Version" - }, - { - "title": "Don't - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Bedrock - Young Money Entertainment", - "id": "Karaoke Version" - }, - { - "title": "Give Me Everything Tonight - Pitbull", - "id": "Karaoke Version" - }, - { - "title": "To All The Girls I've Loved Before - Willie Nelson & Julio Iglesias", - "id": "Karaoke Version" - }, - { - "title": "Choices - George Jones", - "id": "Karaoke Version" - }, - { - "title": "Hard Fought Hallelujah - Brandon Lake", - "id": "Karaoke Version" - }, - { - "title": "NUEVAYoL - Bad Bunny", - "id": "Karaoke Version" - }, - { - "title": "One Kiss - Calvin Harris & Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "California Blue - Roy Orbison", - "id": "Karaoke Version" - }, - { - "title": "I'll Have to Say I Love You in a Song - Jim Croce", - "id": "Karaoke Version" - }, - { - "title": "Love Me Not - Ravyn Lenae", - "id": "Karaoke Version" - }, - { - "title": "Sorry I'm Here for Someone Else - Benson Boone", - "id": "Karaoke Version" - }, - { - "title": "My Favorite Memory - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "The Night We Met - Lord Huron", - "id": "Karaoke Version" - }, - { - "title": "Bruises - Lewis Capaldi", - "id": "Karaoke Version" - }, - { - "title": "รŠtre une femme - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Wrong Way - Sublime", - "id": "Karaoke Version" - }, - { - "title": "Everybody's Talkin' - Harry Nilsson", - "id": "Karaoke Version" - }, - { - "title": "Show Me Love - Robin S.", - "id": "Karaoke Version" - }, - { - "title": "Bang Bang (My Baby Shot Me Down) - Nancy Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Live Forever - Oasis", - "id": "Karaoke Version" - }, - { - "title": "Baile inolvidable - Bad Bunny", - "id": "Karaoke Version" - }, - { - "title": "Weatherman - Hank Williams, Jr.", - "id": "Karaoke Version" - }, - { - "title": "It's Tricky - Run-DMC", - "id": "Karaoke Version" - }, - { - "title": "Head Over Boots - Jon Pardi", - "id": "Karaoke Version" - }, - { - "title": "Where The Stars And Stripes And The Eagle Fly - Aaron Tippin", - "id": "Karaoke Version" - }, - { - "title": "A Symptom of Being Human - Shinedown", - "id": "Karaoke Version" - }, - { - "title": "She's Electric - Oasis", - "id": "Karaoke Version" - }, - { - "title": "America, F**k Yeah - Team America: World Police (Trey Parker)", - "id": "Karaoke Version" - }, - { - "title": "Some Gave All - Billy Ray Cyrus", - "id": "Karaoke Version" - }, - { - "title": "How Will I Know - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Ex-Factor - Lauryn Hill", - "id": "Karaoke Version" - }, - { - "title": "ร‰teins la lumiรจre - Axel Bauer", - "id": "Karaoke Version" - }, - { - "title": "Wasted on You - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "Name - Goo Goo Dolls", - "id": "Karaoke Version" - }, - { - "title": "In the Summertime - Mungo Jerry", - "id": "Karaoke Version" - }, - { - "title": "Sober - Tool", - "id": "Karaoke Version" - }, - { - "title": "Love Potion No. 9 - The Searchers", - "id": "Karaoke Version" - }, - { - "title": "Nunca es suficiente - Los รngeles Azules & Natalia Lafourcade", - "id": "Karaoke Version" - }, - { - "title": "Half the World Away - Oasis", - "id": "Karaoke Version" - }, - { - "title": "Thnks Fr Th Mmrs - Fall Out Boy", - "id": "Karaoke Version" - }, - { - "title": "Let Me Down Easy - Billy Currington", - "id": "Karaoke Version" - }, - { - "title": "The Distance - CAKE", - "id": "Karaoke Version" - }, - { - "title": "Simple Man (rock version) - Shinedown", - "id": "Karaoke Version" - }, - { - "title": "Santa Monica (Watch The World Die) - Everclear", - "id": "Karaoke Version" - }, - { - "title": "My Maria - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Operator (That's Not The Way It Feels) - Jim Croce", - "id": "Karaoke Version" - }, - { - "title": "Pretty Little Baby - Connie Francis", - "id": "Karaoke Version" - }, - { - "title": "Have Mercy - The Judds", - "id": "Karaoke Version" - }, - { - "title": "Sweet Dreams - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "I'd Love You to Want Me - Lobo", - "id": "Karaoke Version" - }, - { - "title": "The End of the World - Skeeter Davis", - "id": "Karaoke Version" - }, - { - "title": "Moment 4 Life - Nicki Minaj & Drake", - "id": "Karaoke Version" - }, - { - "title": "Nothin' on You - Cody Johnson", - "id": "Karaoke Version" - }, - { - "title": "Little Talks - Of Monsters and Men", - "id": "Karaoke Version" - }, - { - "title": "The Man Who Sold the World - Nirvana", - "id": "Karaoke Version" - }, - { - "title": "Mystical Magical - Benson Boone", - "id": "Karaoke Version" - }, - { - "title": "La vie par procuration - Jean-Jacques Goldman", - "id": "Karaoke Version" - }, - { - "title": "Cooler Than Me - Mike Posner & Big Sean & Eric Holljes", - "id": "Karaoke Version" - }, - { - "title": "Blue Strips - Jessie Murph", - "id": "Karaoke Version" - }, - { - "title": "Canciรณn del mariachi - Antonio Banderas & Los Lobos", - "id": "Karaoke Version" - }, - { - "title": "I'll Never Love Again - A Star is Born (Lady Gaga)", - "id": "Karaoke Version" - }, - { - "title": "Decode - Paramore (The Twilight Saga)", - "id": "Karaoke Version" - }, - { - "title": "Int'l Players Anthem (I Choose You) - UGK & OutKast", - "id": "Karaoke Version" - }, - { - "title": "You Can Call Me Al - Paul Simon", - "id": "Karaoke Version" - }, - { - "title": "Are You Lonesome Tonight - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Unfaithful - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Runaway - Del Shannon", - "id": "Karaoke Version" - }, - { - "title": "I'm a Little Crazy - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "NOKIA - Drake", - "id": "Karaoke Version" - }, - { - "title": "Sunflower - Spider-Man: Into the Spider-Verse & Post Malone & Swae Lee", - "id": "Karaoke Version" - }, - { - "title": "Ordinary - Alex Warren", - "id": "Karaoke Version" - }, - { - "title": "Time in a Bottle - Jim Croce", - "id": "Karaoke Version" - }, - { - "title": "Love Will Keep Us Alive - Eagles", - "id": "Karaoke Version" - }, - { - "title": "God Only Knows - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Only You - Yazoo", - "id": "Karaoke Version" - }, - { - "title": "The Boy Is Mine - Brandy & Monica", - "id": "Karaoke Version" - }, - { - "title": "Big Balls - AC/DC", - "id": "Karaoke Version" - }, - { - "title": "Truly Madly Deeply - Savage Garden", - "id": "Karaoke Version" - }, - { - "title": "Bad Case of Loving You (Doctor, Doctor) - Robert Palmer", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah (live Notre-Dame de Paris 2024) - Vianney", - "id": "Karaoke Version" - }, - { - "title": "Castle on the Hill - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Angel Eyes - The Jeff Healey Band", - "id": "Karaoke Version" - }, - { - "title": "Up Where We Belong - Joe Cocker & Jennifer Warnes", - "id": "Karaoke Version" - }, - { - "title": "Anaconda - Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "Almost Home - Craig Morgan", - "id": "Karaoke Version" - }, - { - "title": "Big Girls Don't Cry - Fergie", - "id": "Karaoke Version" - }, - { - "title": "Foolish Games - Jewel", - "id": "Karaoke Version" - }, - { - "title": "Tin Man - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Wide Open Spaces - The Chicks", - "id": "Karaoke Version" - }, - { - "title": "Waterfalls - TLC", - "id": "Karaoke Version" - }, - { - "title": "Alors on danse - Stromae", - "id": "Karaoke Version" - }, - { - "title": "The Giver - Chappell Roan", - "id": "Karaoke Version" - }, - { - "title": "Glycerine - Bush", - "id": "Karaoke Version" - }, - { - "title": "Love in the Dark - Adele", - "id": "Karaoke Version" - }, - { - "title": "I'd Rather Go Blind - Etta James", - "id": "Karaoke Version" - }, - { - "title": "Ordinary People - John Legend", - "id": "Karaoke Version" - }, - { - "title": "Bless The Broken Road - Rascal Flatts", - "id": "Karaoke Version" - }, - { - "title": "Are You Gonna Be My Girl - Jet", - "id": "Karaoke Version" - }, - { - "title": "Budapest - George Ezra", - "id": "Karaoke Version" - }, - { - "title": "S.O.B. - Nathaniel Rateliff & The Night Sweats", - "id": "Karaoke Version" - }, - { - "title": "I'm the Problem - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "You Were Meant for Me - Jewel", - "id": "Karaoke Version" - }, - { - "title": "Gold - Spandau Ballet", - "id": "Karaoke Version" - }, - { - "title": "maman (Eurovision 2025) - Louane", - "id": "Karaoke Version" - }, - { - "title": "Vanish into You - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Heart of Glass - Blondie", - "id": "Karaoke Version" - }, - { - "title": "Today I Started Loving You Again - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Irreplaceable - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "ANXIETY - Doechii", - "id": "Karaoke Version" - }, - { - "title": "So Sick - Ne-Yo", - "id": "Karaoke Version" - }, - { - "title": "Flagpole Sitta - Harvey Danger", - "id": "Karaoke Version" - }, - { - "title": "Azizam - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "T.N.T - AC/DC", - "id": "Karaoke Version" - }, - { - "title": "Listen - Dreamgirls (2006 film) (Beyoncรฉ)", - "id": "Karaoke Version" - }, - { - "title": "The Lady in Red - Chris De Burgh", - "id": "Karaoke Version" - }, - { - "title": "Salut les amoureux (On s'est aimรฉ comme on se quitte) - Joe Dassin", - "id": "Karaoke Version" - }, - { - "title": "A Sky Full of Stars - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Steve's Lava Chicken - A Minecraft Movie (Jack Black)", - "id": "Karaoke Version" - }, - { - "title": "I'm Outta Love - Anastacia", - "id": "Karaoke Version" - }, - { - "title": "Penny Arcade - Roy Orbison", - "id": "Karaoke Version" - }, - { - "title": "Thunderstruck - AC/DC", - "id": "Karaoke Version" - }, - { - "title": "Last Dance (Single Version) - Donna Summer", - "id": "Karaoke Version" - }, - { - "title": "She Used to Be Mine - Sara Bareilles (Waitress musical)", - "id": "Karaoke Version" - }, - { - "title": "Best Part - Daniel Caesar & H.E.R.", - "id": "Karaoke Version" - }, - { - "title": "Love Is in the Air - John Paul Young", - "id": "Karaoke Version" - }, - { - "title": "Come To My Window - Melissa Etheridge", - "id": "Karaoke Version" - }, - { - "title": "Walk Softly On This Heart Of Mine - The Kentucky Headhunters", - "id": "Karaoke Version" - }, - { - "title": "Bust Your Windows - Jazmine Sullivan", - "id": "Karaoke Version" - }, - { - "title": "It Must Be Love - Madness & Labi Siffre", - "id": "Karaoke Version" - }, - { - "title": "Return of the Mack - Mark Morrison", - "id": "Karaoke Version" - }, - { - "title": "F**k You - Cee Lo Green", - "id": "Karaoke Version" - }, - { - "title": "ร€ nos souvenirs - Trois Cafรฉs Gourmands", - "id": "Karaoke Version" - }, - { - "title": "American Girl - Tom Petty", - "id": "Karaoke Version" - }, - { - "title": "Nose on the Grindstone - Tyler Childers", - "id": "Karaoke Version" - }, - { - "title": "Poison - Bell Biv DeVoe", - "id": "Karaoke Version" - }, - { - "title": "Freak on a Leash - Korn", - "id": "Karaoke Version" - }, - { - "title": "El rey - Vicente Fernรกndez", - "id": "Karaoke Version" - }, - { - "title": "Voodoo - Godsmack", - "id": "Karaoke Version" - }, - { - "title": "DtMF - Bad Bunny", - "id": "Karaoke Version" - }, - { - "title": "Sur ma route - Black M", - "id": "Karaoke Version" - }, - { - "title": "Sixteen Tons - Tennessee Ernie Ford", - "id": "Karaoke Version" - }, - { - "title": "All Your'n - Tyler Childers", - "id": "Karaoke Version" - }, - { - "title": "The Way - Jill Scott", - "id": "Karaoke Version" - }, - { - "title": "Just a Gigolo / I Ain't Got Nobody - David Lee Roth", - "id": "Karaoke Version" - }, - { - "title": "Possum Kingdom - The Toadies", - "id": "Karaoke Version" - }, - { - "title": "Garden of Eden - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Wine, Beer, Whiskey - Little Big Town", - "id": "Karaoke Version" - }, - { - "title": "Still Into You - Paramore", - "id": "Karaoke Version" - }, - { - "title": "River - Bishop Briggs", - "id": "Karaoke Version" - }, - { - "title": "Aerials - System of a Down", - "id": "Karaoke Version" - }, - { - "title": "Stop Draggin' My Heart Around - Stevie Nicks & Tom Petty", - "id": "Karaoke Version" - }, - { - "title": "Whitehouse Road - Tyler Childers", - "id": "Karaoke Version" - }, - { - "title": "I'm Alive - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Cocaine Blues - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Confessions nocturnes - Diam's & Vitaa", - "id": "Karaoke Version" - }, - { - "title": "Smile - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "Mother - Danzig", - "id": "Karaoke Version" - }, - { - "title": "Talk Dirty to Me - Poison", - "id": "Karaoke Version" - }, - { - "title": "Luckenbach, Texas - Waylon Jennings & Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Whiskey in the Jar - Metallica", - "id": "Karaoke Version" - }, - { - "title": "ร€ ma place - Axel Bauer & Zazie", - "id": "Karaoke Version" - }, - { - "title": "Casser la voix - Patrick Bruel", - "id": "Karaoke Version" - }, - { - "title": "Young Hearts Run Free - Candi Staton", - "id": "Karaoke Version" - }, - { - "title": "Badfish - Sublime", - "id": "Karaoke Version" - }, - { - "title": "Abracadabra - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Kiss From a Rose - Seal", - "id": "Karaoke Version" - }, - { - "title": "After the Lovin' - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "I'm the Only One - Melissa Etheridge", - "id": "Karaoke Version" - }, - { - "title": "Bartender Song (Sittin' at a Bar) - Rehab", - "id": "Karaoke Version" - }, - { - "title": "Griechischer Wein - Udo Jรผrgens", - "id": "Karaoke Version" - }, - { - "title": "Live Is Life - Opus", - "id": "Karaoke Version" - }, - { - "title": "It's a Heartache - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "Unsteady - X Ambassadors", - "id": "Karaoke Version" - }, - { - "title": "Laura - David Hallyday", - "id": "Karaoke Version" - }, - { - "title": "Birthday Sex - Jeremih", - "id": "Karaoke Version" - }, - { - "title": "You're No Good - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Denial Is a River - Doechii", - "id": "Karaoke Version" - }, - { - "title": "It's a Heartache - Bonnie Tyler", - "id": "Karaoke Version" - }, - { - "title": "Mamma Marรญa - Ricchi e Poveri", - "id": "Karaoke Version" - }, - { - "title": "On va s'aimer (version Stars 80) - Gilbert Montagnรฉ", - "id": "Karaoke Version" - }, - { - "title": "We Are! - One Piece", - "id": "Karaoke Version" - }, - { - "title": "Sun to Me - Zach Bryan", - "id": "Karaoke Version" - }, - { - "title": "Vampire (clean) - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "What I've Been Looking For - High School Musical", - "id": "Karaoke Version" - }, - { - "title": "Breakin' Dishes - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Can You Feel the Love Tonight - Boyce Avenue & Connie Talbot", - "id": "Karaoke Version" - }, - { - "title": "Labour - Paris Paloma", - "id": "Karaoke Version" - }, - { - "title": "Tommi (live) - AnnenMayKantereit", - "id": "Karaoke Version" - }, - { - "title": "Besoin d'amour - Starmania", - "id": "Karaoke Version" - }, - { - "title": "A Cigarette - Gavin Adcock", - "id": "Karaoke Version" - }, - { - "title": "Busted - The Isley Brothers & JS", - "id": "Karaoke Version" - }, - { - "title": "Lady (Hear Me Tonight) - Modjo", - "id": "Karaoke Version" - }, - { - "title": "Toxic Till the End - Rosรฉ ()", - "id": "Karaoke Version" - }, - { - "title": "She's So High - Tal Bachman", - "id": "Karaoke Version" - }, - { - "title": "Just Another Woman In Love - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "Zoo - Kaaris", - "id": "Karaoke Version" - }, - { - "title": "Given Up - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "Dans les yeux d'Emilie - Collectif Mรฉtissรฉ", - "id": "Karaoke Version" - }, - { - "title": "Defying Gravity (edit) - Wicked (film) (Cynthia Erivo & Ariana Grande)", - "id": "Karaoke Version" - }, - { - "title": "This Is Me - The Greatest Showman", - "id": "Karaoke Version" - }, - { - "title": "I Am Not Okay - Jelly Roll", - "id": "Karaoke Version" - }, - { - "title": "Stick Season - Noah Kahan", - "id": "Karaoke Version" - }, - { - "title": "You Look Like You Love Me - Ella Langley & Riley Green", - "id": "Karaoke Version" - }, - { - "title": "Dear Maria, Count Me in - All Time Low", - "id": "Karaoke Version" - }, - { - "title": "Monopolis - Starmania", - "id": "Karaoke Version" - }, - { - "title": "Have You Ever Seen the Rain - Smokie", - "id": "Karaoke Version" - }, - { - "title": "Animal I Have Become - Three Days Grace", - "id": "Karaoke Version" - }, - { - "title": "Defying Gravity - Wicked (film) (Cynthia Erivo & Ariana Grande)", - "id": "Karaoke Version" - }, - { - "title": "Honey, Honey - Mamma Mia! (film) (Amanda Seyfried)", - "id": "Karaoke Version" - }, - { - "title": "L'amour existe encore - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Born To Die - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "Everything She Wants (Short version) - Wham!", - "id": "Karaoke Version" - }, - { - "title": "Straight and Narrow - Sam Barber", - "id": "Karaoke Version" - }, - { - "title": "Sleeping on the Blacktop - Colter Wall", - "id": "Karaoke Version" - }, - { - "title": "I Just Called to Say I Love You - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Oscar Winning Tears. - Raye", - "id": "Karaoke Version" - }, - { - "title": "Ohio Is for Lovers - Hawthorne Heights", - "id": "Karaoke Version" - }, - { - "title": "On Bended Knee - Boyz II Men", - "id": "Karaoke Version" - }, - { - "title": "The Devil Wears a Suit and Tie - Colter Wall", - "id": "Karaoke Version" - }, - { - "title": "Rosie - Francis Cabrel", - "id": "Karaoke Version" - }, - { - "title": "No One Mourns the Wicked - Wicked (musical)", - "id": "Karaoke Version" - }, - { - "title": "Do You Want to Build a Snowman - Disney Channel Circle of Stars", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas (acoustic) - DisCovers (Wham!)", - "id": "Karaoke Version" - }, - { - "title": "Have You Ever Seen The Rain - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Mon amour (live Eurovision 2024) - Slimane", - "id": "Karaoke Version" - }, - { - "title": "Nonsense - Sabrina Carpenter", - "id": "Karaoke Version" - }, - { - "title": "Petit Papa Noรซl - La Compagnie Crรฉole", - "id": "Karaoke Version" - }, - { - "title": "That's So True - Gracie Abrams", - "id": "Karaoke Version" - }, - { - "title": "Brain Stew - Green Day", - "id": "Karaoke Version" - }, - { - "title": "A Hallelujah Christmas - Cloverton", - "id": "Karaoke Version" - }, - { - "title": "Ah les crocodiles - Julien Dorรฉ", - "id": "Karaoke Version" - }, - { - "title": "Have You Ever Seen the Rain - John Fogerty & Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Come Fly with Me - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Get Lucky - Daft Punk & Pharrell Williams", - "id": "Karaoke Version" - }, - { - "title": "Unwritten - Natasha Bedingfield", - "id": "Karaoke Version" - }, - { - "title": "Juno - Sabrina Carpenter", - "id": "Karaoke Version" - }, - { - "title": "Rudolph the Red Nosed Reindeer - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "We Are the World - USA For Africa", - "id": "Karaoke Version" - }, - { - "title": "Time After Time - Cyndi Lauper", - "id": "Karaoke Version" - }, - { - "title": "Too Sweet - Hozier", - "id": "Karaoke Version" - }, - { - "title": "Espresso - Sabrina Carpenter", - "id": "Karaoke Version" - }, - { - "title": "APT. - Rosรฉ () & Bruno Mars", - "id": "Karaoke Version" - }, - { - "title": "Hot to Go! - Chappell Roan", - "id": "Karaoke Version" - }, - { - "title": "Mon amour (Eurovision France) - Slimane", - "id": "Karaoke Version" - }, - { - "title": "Have You Ever Seen the Rain - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas - Meghan Trainor", - "id": "Karaoke Version" - }, - { - "title": "(Everybody's Waitin' for) The Man with the Bag - Kay Starr", - "id": "Karaoke Version" - }, - { - "title": "Lose Control - Teddy Swims", - "id": "Karaoke Version" - }, - { - "title": "Lose Control (piano version) - Teddy Swims", - "id": "Karaoke Version" - }, - { - "title": "The Greatest Gift of All - Dolly Parton & Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Morning Has Broken - Cat Stevens", - "id": "Karaoke Version" - }, - { - "title": "Mon beau sapin - Roch Voisine", - "id": "Karaoke Version" - }, - { - "title": "Noรซl blanc - Frank Michael", - "id": "Karaoke Version" - }, - { - "title": "Axel F - Crazy Frog", - "id": "Karaoke Version" - }, - { - "title": "Noรซl blanc - Eddy Mitchell", - "id": "Karaoke Version" - }, - { - "title": "Le temps de l'amour - Franรงoise Hardy", - "id": "Karaoke Version" - }, - { - "title": "A Bar Song (Tipsy) (remix) - Shaboozey & David Guetta", - "id": "Karaoke Version" - }, - { - "title": "Pourvu qu'elles soient douces - Julien Dorรฉ", - "id": "Karaoke Version" - }, - { - "title": "Defying Gravity - Glee", - "id": "Karaoke Version" - }, - { - "title": "I Love You, I'm Sorry - Gracie Abrams", - "id": "Karaoke Version" - }, - { - "title": "Est-ce que tu m'aimes ? - Gims", - "id": "Karaoke Version" - }, - { - "title": "I'm Still Fine - The Red Clay Strays", - "id": "Karaoke Version" - }, - { - "title": "Defying Gravity - Idina Menzel", - "id": "Karaoke Version" - }, - { - "title": "For Good - Wicked (musical) (Idina Menzel & Kristin Chenoweth)", - "id": "Karaoke Version" - }, - { - "title": "Defying Gravity - Wicked (musical)", - "id": "Karaoke Version" - }, - { - "title": "BIRDS OF A FEATHER - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Stop - Spice Girls", - "id": "Karaoke Version" - }, - { - "title": "Can You Feel the Love Tonight - The Lion King", - "id": "Karaoke Version" - }, - { - "title": "Oh What a Beautiful Morning - Oklahoma! (musical)", - "id": "Karaoke Version" - }, - { - "title": "Heavy is the Crown - Linkin Park (League of Legends)", - "id": "Karaoke Version" - }, - { - "title": "Life Is Sweeter - Descendants: The Rise of Red", - "id": "Karaoke Version" - }, - { - "title": "Without You - Harry Nilsson", - "id": "Karaoke Version" - }, - { - "title": "I Want Candy - Bow Wow Wow", - "id": "Karaoke Version" - }, - { - "title": "Seul - Garou", - "id": "Karaoke Version" - }, - { - "title": "See You Again - Tyler, The Creator & Kali Uchis", - "id": "Karaoke Version" - }, - { - "title": "Blame It on the Rain - Milli Vanilli", - "id": "Karaoke Version" - }, - { - "title": "Dead Man's Party - Oingo Boingo", - "id": "Karaoke Version" - }, - { - "title": "The Air That I Breathe - The Hollies", - "id": "Karaoke Version" - }, - { - "title": "Dancing in the Flames - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "Without You - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Apple - Charli XCX", - "id": "Karaoke Version" - }, - { - "title": "Je te cherche - Frozen 2 (Charlotte Hervieux)", - "id": "Karaoke Version" - }, - { - "title": "Sexy - Mean Girls (musical)", - "id": "Karaoke Version" - }, - { - "title": "Twisted - Keith Sweat & Kut Klose", - "id": "Karaoke Version" - }, - { - "title": "Animals - Nickelback", - "id": "Karaoke Version" - }, - { - "title": "Flowers (remix) - Max Oazo & Miley Cyrus & Bonzana", - "id": "Karaoke Version" - }, - { - "title": "Psycho Killer - Talking Heads", - "id": "Karaoke Version" - }, - { - "title": "Magic Dance - Labyrinth (David Bowie)", - "id": "Karaoke Version" - }, - { - "title": "Pet Sematary - Ramones", - "id": "Karaoke Version" - }, - { - "title": "Guess (feat. Billie Eilish) - Charli XCX", - "id": "Karaoke Version" - }, - { - "title": "I Love It - Icona Pop & Charli XCX", - "id": "Karaoke Version" - }, - { - "title": "Paper Planes - M.I.A.", - "id": "Karaoke Version" - }, - { - "title": "Hey There Delilah (single version) - Plain White T's", - "id": "Karaoke Version" - }, - { - "title": "Truck Bed - HARDY", - "id": "Karaoke Version" - }, - { - "title": "Nothin' but a Good Time - Poison", - "id": "Karaoke Version" - }, - { - "title": "What I've Done - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "Hakuna Matata (version franรงaise) - The Lion King (2019 film)", - "id": "Karaoke Version" - }, - { - "title": "The Fresh Prince of Bel Air - Will Smith", - "id": "Karaoke Version" - }, - { - "title": "Bad Moon Rising - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "Santiano (version 1961) - Hugues Aufray", - "id": "Karaoke Version" - }, - { - "title": "Y.M.C.A. - Ross Antony", - "id": "Karaoke Version" - }, - { - "title": "ร€ fleur de toi (duo) - Vitaa & Slimane", - "id": "Karaoke Version" - }, - { - "title": "Edelweiss - The Sound of Music (musical) (Theodore Bickel)", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Know - Joe", - "id": "Karaoke Version" - }, - { - "title": "Everybody Talks - Neon Trees", - "id": "Karaoke Version" - }, - { - "title": "Cotton Eye Joe - Rednex", - "id": "Karaoke Version" - }, - { - "title": "Die with a Smile - Lady Gaga & Bruno Mars", - "id": "Karaoke Version" - }, - { - "title": "Liar - Jelly Roll", - "id": "Karaoke Version" - }, - { - "title": "ร€ fleur de toi - Slimane", - "id": "Karaoke Version" - }, - { - "title": "L'hymne ร  l'amour (Paris 2024 - live) - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Taste - Sabrina Carpenter", - "id": "Karaoke Version" - }, - { - "title": "The Emptiness Machine - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "For the Good Times - Kris Kristofferson", - "id": "Karaoke Version" - }, - { - "title": "Bakit ngayon ka lang - Ogie Alcasid", - "id": "Karaoke Version" - }, - { - "title": "Sledgehammer - Peter Gabriel", - "id": "Karaoke Version" - }, - { - "title": "Happier Than Ever (edit) - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "ร€ fleur de toi - Vitaa", - "id": "Karaoke Version" - }, - { - "title": "Sex Bomb - Tom Jones & Mousse T.", - "id": "Karaoke Version" - }, - { - "title": "Good Hearted Woman - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "Revival - Zach Bryan", - "id": "Karaoke Version" - }, - { - "title": "We Are One - Maze", - "id": "Karaoke Version" - }, - { - "title": "La rose et l'armure - Antoine Elie", - "id": "Karaoke Version" - }, - { - "title": "Love Shack (single edit) - The B-52's", - "id": "Karaoke Version" - }, - { - "title": "Red Red Wine - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "The Thrill Is Gone - B.B. King", - "id": "Karaoke Version" - }, - { - "title": "Three Drinks Behind - George Strait", - "id": "Karaoke Version" - }, - { - "title": "A Bar Song (Tipsy) - Shaboozey", - "id": "Karaoke Version" - }, - { - "title": "Mi ex tenia razon - Karol G", - "id": "Karaoke Version" - }, - { - "title": "Red - Descendants: The Rise of Red (Kylie Cantrall)", - "id": "Karaoke Version" - }, - { - "title": "Ramenez la coupe ร  la maison - Vegedream", - "id": "Karaoke Version" - }, - { - "title": "Alexandrie Alexandra - Claude Franรงois", - "id": "Karaoke Version" - }, - { - "title": "Please Please Please - Sabrina Carpenter", - "id": "Karaoke Version" - }, - { - "title": "Houdini - Eminem", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Sunshine (deep house) - DisCovers (Bill Withers)", - "id": "Karaoke Version" - }, - { - "title": "Wish I Didn't Know Now - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "28 - Zach Bryan", - "id": "Karaoke Version" - }, - { - "title": "Buwan - Juan Karlos", - "id": "Karaoke Version" - }, - { - "title": "Summertime - Billie Holiday", - "id": "Karaoke Version" - }, - { - "title": "Raining in Manila - Lola Amour", - "id": "Karaoke Version" - }, - { - "title": "Folsom Prison Blues (live at Folsom State Prison) - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "I Like to Move It - Madagascar (Sacha Baron Cohen)", - "id": "Karaoke Version" - }, - { - "title": "Lovin on Me - Jack Harlow", - "id": "Karaoke Version" - }, - { - "title": "Blinding Lights (country version) - Tebey", - "id": "Karaoke Version" - }, - { - "title": "Rosas - La oreja de Van Gogh", - "id": "Karaoke Version" - }, - { - "title": "Voilร  - Slimane", - "id": "Karaoke Version" - }, - { - "title": "Nine Ball - Zach Bryan", - "id": "Karaoke Version" - }, - { - "title": "Voilร  - Andrรฉ Rieu & Emma Kok", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Love in Oklahoma - Twisters (2024 film) (Luke Combs)", - "id": "Karaoke Version" - }, - { - "title": "Chevrolet - Dustin Lynch & Jelly Roll", - "id": "Karaoke Version" - }, - { - "title": "Picture You - Chappell Roan", - "id": "Karaoke Version" - }, - { - "title": "I Hate Myself for Loving You - Joan Jett", - "id": "Karaoke Version" - }, - { - "title": "Three Little Birds - Bob Marley: One Love (2024 film) (Kacey Musgraves)", - "id": "Karaoke Version" - }, - { - "title": "Au bout de mes rรชves (2023) - Star Academy", - "id": "Karaoke Version" - }, - { - "title": "Jamming - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me (remix) - Ivan Jack (45 Stars)", - "id": "Karaoke Version" - }, - { - "title": "Some Things I'll Never Know - Teddy Swims", - "id": "Karaoke Version" - }, - { - "title": "The Sound of Silence (Cyril remix) - Disturbed", - "id": "Karaoke Version" - }, - { - "title": "In-A-Gadda-Da-Vida (album version) - Iron Butterfly", - "id": "Karaoke Version" - }, - { - "title": "Stumblin' In - Cyril Riley", - "id": "Karaoke Version" - }, - { - "title": "Femininomenon - Chappell Roan", - "id": "Karaoke Version" - }, - { - "title": "For Whom the Bell Tolls - Metallica", - "id": "Karaoke Version" - }, - { - "title": "Happy Birthday Mr. President - Marilyn Monroe", - "id": "Karaoke Version" - }, - { - "title": "An American Trilogy (live in Las Vegas) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Proud Mary - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "Panama - Van Halen", - "id": "Karaoke Version" - }, - { - "title": "Day After Day - Badfinger", - "id": "Karaoke Version" - }, - { - "title": "Moon River - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Training Season - Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "Lunch - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Good Luck, Babe! - Chappell Roan", - "id": "Karaoke Version" - }, - { - "title": "Bed of Roses (acoustic) - Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "I Had Some Help - Morgan Wallen & Post Malone", - "id": "Karaoke Version" - }, - { - "title": "Tennessee Whiskey (reggae) - DisCovers", - "id": "Karaoke Version" - }, - { - "title": "Zombie (dark epic orchestral trailer) - DisCovers (The Cranberries)", - "id": "Karaoke Version" - }, - { - "title": "Do You Feel Like I Do (live) - Peter Frampton", - "id": "Karaoke Version" - }, - { - "title": "I've Always Been Crazy - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "Breath - Breaking Benjamin", - "id": "Karaoke Version" - }, - { - "title": "Happier Than Ever - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "I Don't Love You - My Chemical Romance", - "id": "Karaoke Version" - }, - { - "title": "Sara - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Reviens - Hervรฉ Vilard", - "id": "Karaoke Version" - }, - { - "title": "Wish You Were Gay - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Flowers (metal) - DisCovers (Miley Cyrus)", - "id": "Karaoke Version" - }, - { - "title": "New Orleans Ladies - Le Roux", - "id": "Karaoke Version" - }, - { - "title": "Santa Fe - Newsies (musical)", - "id": "Karaoke Version" - }, - { - "title": "Killing Me Softly with His Song - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "I Love You - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Believe (live) - Adam Lambert", - "id": "Karaoke Version" - }, - { - "title": "Fool Hearted Memory - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Girls - Sean Kingston", - "id": "Karaoke Version" - }, - { - "title": "Broadway Girls - Lil Durk & Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "One More Last Chance - Vince Gill", - "id": "Karaoke Version" - }, - { - "title": "Sorry - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Not Like Us - Kendrick Lamar", - "id": "Karaoke Version" - }, - { - "title": "Stand Out - A Goofy Movie (Tevin Campbell)", - "id": "Karaoke Version" - }, - { - "title": "Tennessee Whiskey (live) - Chris Stapleton & Justin Timberlake", - "id": "Karaoke Version" - }, - { - "title": "Wij houden van Oranje - Andrรฉ Hazes", - "id": "Karaoke Version" - }, - { - "title": "Turn It Loose - The Judds", - "id": "Karaoke Version" - }, - { - "title": "For Forever - Dear Evan Hansen (musical) (Ben Platt)", - "id": "Karaoke Version" - }, - { - "title": "Aline (Graffiti Project remix) - Christophe", - "id": "Karaoke Version" - }, - { - "title": "Goosebumps - Travis Scott & Kendrick Lamar", - "id": "Karaoke Version" - }, - { - "title": "Parole parole - Mina & Alberto Lupo", - "id": "Karaoke Version" - }, - { - "title": "Aaron Burr, Sir - Hamilton", - "id": "Karaoke Version" - }, - { - "title": "All of Me (reggae) - DisCovers (John Legend)", - "id": "Karaoke Version" - }, - { - "title": "Strong Enough to Bend - Tanya Tucker", - "id": "Karaoke Version" - }, - { - "title": "Missing You - John Waite", - "id": "Karaoke Version" - }, - { - "title": "Always Remember Us This Way - Luke Evans", - "id": "Karaoke Version" - }, - { - "title": "Sway - Daniel Boaventura & Big Band Jazz de Mรฉxico", - "id": "Karaoke Version" - }, - { - "title": "...Baby One More Time - Tenacious D (Kung Fu Panda)", - "id": "Karaoke Version" - }, - { - "title": "Say My Name - Beetlejuice (musical)", - "id": "Karaoke Version" - }, - { - "title": "Rock the Casbah - The Clash", - "id": "Karaoke Version" - }, - { - "title": "L'amitiรฉ - Les Enfoirรฉs", - "id": "Karaoke Version" - }, - { - "title": "Pink Pony Club - Chappell Roan", - "id": "Karaoke Version" - }, - { - "title": "Red Wine Supernova - Chappell Roan", - "id": "Karaoke Version" - }, - { - "title": "Vladimir Ilitch - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "That's My Job - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "Strong Enough - Cher", - "id": "Karaoke Version" - }, - { - "title": "Bole Chudiyan - Bharati", - "id": "Karaoke Version" - }, - { - "title": "Take a Bow - Madonna", - "id": "Karaoke Version" - }, - { - "title": "She - Charles Aznavour", - "id": "Karaoke Version" - }, - { - "title": "Like a Prayer - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Skinny - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Read My Mind - The Killers", - "id": "Karaoke Version" - }, - { - "title": "Pasalubong - Ben&Ben & Moira Dela Torre", - "id": "Karaoke Version" - }, - { - "title": "Lost Without You - Freya Ridings", - "id": "Karaoke Version" - }, - { - "title": "A Little Bit Off - Five Finger Death Punch", - "id": "Karaoke Version" - }, - { - "title": "3005 - Childish Gambino", - "id": "Karaoke Version" - }, - { - "title": "How Long Will I Love You - Ellie Goulding", - "id": "Karaoke Version" - }, - { - "title": "Superman - Goldfinger", - "id": "Karaoke Version" - }, - { - "title": "Break My Heart Again - Finneas", - "id": "Karaoke Version" - }, - { - "title": "Monster - Skillet", - "id": "Karaoke Version" - }, - { - "title": "Behind These Hazel Eyes - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Halfway to Hell - Jelly Roll", - "id": "Karaoke Version" - }, - { - "title": "Ten Guitars - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Flowers on the Wall - The Statler Brothers", - "id": "Karaoke Version" - }, - { - "title": "Il mondo - Il Volo", - "id": "Karaoke Version" - }, - { - "title": "Kabilugan ng Buwan - Apo Hiking Society", - "id": "Karaoke Version" - }, - { - "title": "You've Got a Friend in Me - Toy Story", - "id": "Karaoke Version" - }, - { - "title": "If You're Reading This (live) - Tim McGraw", - "id": "Karaoke Version" - }, - { - "title": "Creep - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "If It Isn't Love - New Edition", - "id": "Karaoke Version" - }, - { - "title": "In the Stars (french version) - Benson Boone & Philippine Lavrey", - "id": "Karaoke Version" - }, - { - "title": "MakeDamnSure - Taking Back Sunday", - "id": "Karaoke Version" - }, - { - "title": "Rue de la Paix - Zazie", - "id": "Karaoke Version" - }, - { - "title": "I Will Always Love You - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Always Remember Us This Way (dance music) - DisCovers (A Star is Born)", - "id": "Karaoke Version" - }, - { - "title": "Shadow of the Day - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "What's Your Mama's Name - Tanya Tucker", - "id": "Karaoke Version" - }, - { - "title": "Diego, libre dans sa tรชte - France Gall", - "id": "Karaoke Version" - }, - { - "title": "I'd Love You To Want Me - John Holt", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - Peggy Lee", - "id": "Karaoke Version" - }, - { - "title": "Hands Down - Dashboard Confessional", - "id": "Karaoke Version" - }, - { - "title": "Upside Down - Jack Johnson", - "id": "Karaoke Version" - }, - { - "title": "Lush Life - Zara Larsson", - "id": "Karaoke Version" - }, - { - "title": "Kiss Off - The Violent Femmes", - "id": "Karaoke Version" - }, - { - "title": "Lovesick Blues - Hank Williams, Sr.", - "id": "Karaoke Version" - }, - { - "title": "Love Calls - Kem", - "id": "Karaoke Version" - }, - { - "title": "Bop to the Top - High School Musical", - "id": "Karaoke Version" - }, - { - "title": "Livin' on a Prayer (Unplugged) - Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "Un poco loco - Coco", - "id": "Karaoke Version" - }, - { - "title": "Then You Can Tell Me Goodbye - Neal McCoy", - "id": "Karaoke Version" - }, - { - "title": "ร‡a va รงa vient - Slimane & Vitaa", - "id": "Karaoke Version" - }, - { - "title": "Am I That Easy to Forget - Jim Reeves", - "id": "Karaoke Version" - }, - { - "title": "Proud Mary (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Rotterdam (or Anywhere) - The Beautiful South", - "id": "Karaoke Version" - }, - { - "title": "Je reviens chez nous - Jean-Pierre Ferland", - "id": "Karaoke Version" - }, - { - "title": "He Walked On Water - Randy Travis", - "id": "Karaoke Version" - }, - { - "title": "Father and Son - Ronan Keating & Cat Stevens", - "id": "Karaoke Version" - }, - { - "title": "Fucked by a Country Boy - Wheeler Walker, Jr.", - "id": "Karaoke Version" - }, - { - "title": "Think I'm in Love with You - Chris Stapleton", - "id": "Karaoke Version" - }, - { - "title": "Far Away - Nickelback", - "id": "Karaoke Version" - }, - { - "title": "Song of the South - Alabama", - "id": "Karaoke Version" - }, - { - "title": "The Next Episode - Dr. Dre & Snoop Dogg, Nate Dogg & Kurupt", - "id": "Karaoke Version" - }, - { - "title": "Fluorescent Adolescent - Arctic Monkeys", - "id": "Karaoke Version" - }, - { - "title": "Baby Love - The Supremes", - "id": "Karaoke Version" - }, - { - "title": "Slow Dancing in a Burning Room - John Mayer", - "id": "Karaoke Version" - }, - { - "title": "Salut (live Bercy 98) - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Live to Tell - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Set 'Em Up Joe - Vern Gosdin", - "id": "Karaoke Version" - }, - { - "title": "Me and Julio Down by the Schoolyard - Paul Simon", - "id": "Karaoke Version" - }, - { - "title": "Despacito - Sara'h", - "id": "Karaoke Version" - }, - { - "title": "Breakin' My Heart (Pretty Brown Eyes) - Mint Condition", - "id": "Karaoke Version" - }, - { - "title": "Summer Holiday - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Broken Stones - Paul Weller", - "id": "Karaoke Version" - }, - { - "title": "Rhiannon - Stevie Nicks", - "id": "Karaoke Version" - }, - { - "title": "Parklife - Blur", - "id": "Karaoke Version" - }, - { - "title": "Perce les nuages - Patrick Norman", - "id": "Karaoke Version" - }, - { - "title": "Nous - Hervรฉ Vilard", - "id": "Karaoke Version" - }, - { - "title": "The Ketchup Song (Aserejรฉ) (spanish) - Las Ketchup", - "id": "Karaoke Version" - }, - { - "title": "Because the Night (live) - 10,000 Maniacs", - "id": "Karaoke Version" - }, - { - "title": "The Red - Chevelle", - "id": "Karaoke Version" - }, - { - "title": "Shadows of the Night - Pat Benatar", - "id": "Karaoke Version" - }, - { - "title": "Pendant que les champs brรปlent - Niagara", - "id": "Karaoke Version" - }, - { - "title": "Made for Me - Muni Long", - "id": "Karaoke Version" - }, - { - "title": "Angel of Mine - Monica", - "id": "Karaoke Version" - }, - { - "title": "Cryin' in the Rain - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "Avant toi - Slimane & Vitaa", - "id": "Karaoke Version" - }, - { - "title": "The Woman in Me (Needs the Man in You) - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Kodachrome - Paul Simon", - "id": "Karaoke Version" - }, - { - "title": "Les amants d'un jour - Edith Piaf", - "id": "Karaoke Version" - }, - { - "title": "Cover Me Up - Jason Isbell", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Calendar Girl - Neil Sedaka", - "id": "Karaoke Version" - }, - { - "title": "North to Alaska - Johnny Horton", - "id": "Karaoke Version" - }, - { - "title": "Mountain of Love - Johnny Rivers", - "id": "Karaoke Version" - }, - { - "title": "Nobody in His Right Mind Would've Left Her - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Come out Ye Black and Tans - The Wolfe Tones", - "id": "Karaoke Version" - }, - { - "title": "Marvin's Room - Drake", - "id": "Karaoke Version" - }, - { - "title": "Faint - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "Luka - Suzanne Vega", - "id": "Karaoke Version" - }, - { - "title": "Caledonia - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Viens je t'emmรจne - France Gall", - "id": "Karaoke Version" - }, - { - "title": "Hell's Comin' with Me - Poor Man's Poison", - "id": "Karaoke Version" - }, - { - "title": "Understanding - Xscape", - "id": "Karaoke Version" - }, - { - "title": "I Can't Make You Love Me - Teddy Swims", - "id": "Karaoke Version" - }, - { - "title": "J'aime les filles - Jacques Dutronc", - "id": "Karaoke Version" - }, - { - "title": "Rhiannon (Will You Ever Win) - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Tomorrow - Silverchair", - "id": "Karaoke Version" - }, - { - "title": "Smoke Rings in the Dark - Gary Allan", - "id": "Karaoke Version" - }, - { - "title": "Toxic - Postmodern Jukebox & Melinda Doolittle", - "id": "Karaoke Version" - }, - { - "title": "You Don't Have to Say You Love Me (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Cruisin' - Smokey Robinson", - "id": "Karaoke Version" - }, - { - "title": "Don't Be Cruel - The Judds", - "id": "Karaoke Version" - }, - { - "title": "Bonfire - Childish Gambino", - "id": "Karaoke Version" - }, - { - "title": "The Fox (What Does the Fox Say?) - Kidz Bop Kids", - "id": "Karaoke Version" - }, - { - "title": "Whatever You Like - T.I.", - "id": "Karaoke Version" - }, - { - "title": "L'envie (Bercy 1987) - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "It's a Sin - Pet Shop Boys", - "id": "Karaoke Version" - }, - { - "title": "Comme d'habitude (live) - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "I 2 I (Eye to Eye) - A Goofy Movie (Tevin Campbell)", - "id": "Karaoke Version" - }, - { - "title": "Ninja Rap - Vanilla Ice (Teenage Mutant Ninja Turtles)", - "id": "Karaoke Version" - }, - { - "title": "I Shot the Sheriff - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "Love Me Tender - Norah Jones", - "id": "Karaoke Version" - }, - { - "title": "DJ Got Us Fallin' In Love - Usher & Pitbull", - "id": "Karaoke Version" - }, - { - "title": "Get Him Back! - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "Tattoo - Loreen (Eurovision Sweden)", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Be Yours - Arctic Monkeys", - "id": "Karaoke Version" - }, - { - "title": "My Boo - Usher & Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "U Don't Have to Call - Usher", - "id": "Karaoke Version" - }, - { - "title": "Fabulous - High School Musical 2", - "id": "Karaoke Version" - }, - { - "title": "Straight Up - Paula Abdul", - "id": "Karaoke Version" - }, - { - "title": "Fly Me to the Moon (live) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Who's That Man - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "Disarm - The Smashing Pumpkins", - "id": "Karaoke Version" - }, - { - "title": "One Piece at a Time - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Burn, Burn, Burn - Zach Bryan", - "id": "Karaoke Version" - }, - { - "title": "West End Girls - Pet Shop Boys", - "id": "Karaoke Version" - }, - { - "title": "We Don't Fight Anymore - Carly Pearce & Chris Stapleton", - "id": "Karaoke Version" - }, - { - "title": "Go the Distance (Michael Bolton) - Hercules (1997 film)", - "id": "Karaoke Version" - }, - { - "title": "Cigarette Daydreams - Cage the Elephant", - "id": "Karaoke Version" - }, - { - "title": "Chanter pour ceux qui sont loin de chez eux - Michel Berger", - "id": "Karaoke Version" - }, - { - "title": "For the Good Times - Perry Como", - "id": "Karaoke Version" - }, - { - "title": "Waka Waka (Esto es Africa) - Shakira", - "id": "Karaoke Version" - }, - { - "title": "Daylight in Your Eyes - No Angels", - "id": "Karaoke Version" - }, - { - "title": "Indรฉlรฉbile - Yseult", - "id": "Karaoke Version" - }, - { - "title": "Seras-tu lร  ? - Michel Berger", - "id": "Karaoke Version" - }, - { - "title": "Good Lookin' - Dixon Dallas", - "id": "Karaoke Version" - }, - { - "title": "Como camarรณn - Estopa", - "id": "Karaoke Version" - }, - { - "title": "Lay All Your Love on Me - Mamma Mia! (musical)", - "id": "Karaoke Version" - }, - { - "title": "Until I Found You (Em Beihold version) - Stephen Sanchez", - "id": "Karaoke Version" - }, - { - "title": "World Burn - Mean Girls (musical)", - "id": "Karaoke Version" - }, - { - "title": "Un peu plus haut, un peu plus loin - Ginette Reno", - "id": "Karaoke Version" - }, - { - "title": "ร‡a va pas changer le monde - Joe Dassin", - "id": "Karaoke Version" - }, - { - "title": "Sous les apparences - Encanto (film) (Ana Ka)", - "id": "Karaoke Version" - }, - { - "title": "Un garรงon pas comme les autres (Ziggy) - Starmania", - "id": "Karaoke Version" - }, - { - "title": "3D - Jungkook () & Jack Harlow", - "id": "Karaoke Version" - }, - { - "title": "L'amitiรฉ - Franรงoise Hardy", - "id": "Karaoke Version" - }, - { - "title": "Photograph - Nickelback", - "id": "Karaoke Version" - }, - { - "title": "Zeg maar niets meer - Andrรฉ Hazes", - "id": "Karaoke Version" - }, - { - "title": "Couleur menthe ร  l'eau (duo live) - Eddy Mitchell & Olivia Ruiz", - "id": "Karaoke Version" - }, - { - "title": "Je suis ton meilleur ami - Aladdin (1992 film) (Richard Darbois)", - "id": "Karaoke Version" - }, - { - "title": "Prince Ali - Alex Beaupain (We Love Disney)", - "id": "Karaoke Version" - }, - { - "title": "La dame en bleu - Michel Louvain", - "id": "Karaoke Version" - }, - { - "title": "Holding Out for a Hero - Shrek (film) (Jennifer Saunders)", - "id": "Karaoke Version" - }, - { - "title": "Bad Idea Right? - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "Auld Lang Syne - Susan Boyle", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow (Alone in IZ World) - Israel Kamakawiwo'ole", - "id": "Karaoke Version" - }, - { - "title": "The Painter - Cody Johnson", - "id": "Karaoke Version" - }, - { - "title": "What Are You Doing New Year's Eve? - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Etoile des neiges - Line Renaud", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bell Rock - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "Hey Driver - Zach Bryan & The War and Treaty", - "id": "Karaoke Version" - }, - { - "title": "El Burrito de Belรฉn - Juanes", - "id": "Karaoke Version" - }, - { - "title": "Silver Bells (with Rosemary Clooney) - Bing Crosby", - "id": "Karaoke Version" - }, - { - "title": "Christmas Is All Around - Love Actually (Bill Nighy)", - "id": "Karaoke Version" - }, - { - "title": "Corps - Yseult", - "id": "Karaoke Version" - }, - { - "title": "You're A Mean One, Mr. Grinch - Small Town Titans", - "id": "Karaoke Version" - }, - { - "title": "Santa Baby - Ariana Grande & Liz Gillies", - "id": "Karaoke Version" - }, - { - "title": "TiK ToK - Kesha", - "id": "Karaoke Version" - }, - { - "title": "Firework - Katy Perry", - "id": "Karaoke Version" - }, - { - "title": "Wrecking Ball - Dolly Parton & Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Skeeyee - Sexyy Red", - "id": "Karaoke Version" - }, - { - "title": "Little Drummer Boy - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "Rudolph the Red-Nosed Reindeer - Rudolph the Red-Nosed Reindeer", - "id": "Karaoke Version" - }, - { - "title": "Blue Christmas - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "Barbie World - Barbie (2023 film) (Nicki Minaj, Ice Spice & Aqua)", - "id": "Karaoke Version" - }, - { - "title": "Holding Out for a Hero - Footloose (1984 film)", - "id": "Karaoke Version" - }, - { - "title": "Houdini - Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas from the Family (live) - Robert Earl Keen", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bell Rock (live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Now and Then - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "A Rainy Night in Soho - The Pogues", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Perry Como", - "id": "Karaoke Version" - }, - { - "title": "C-H-R-I-S-T-M-A-S - Jim Reeves", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow! Let It Snow! Let It Snow! - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Santa Looked a Lot Like Daddy - Buck Owens", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow! Let It Snow! Let It Snow! - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Around the Christmas Tree - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Grown-Up Christmas List - Amy Grant", - "id": "Karaoke Version" - }, - { - "title": "Ave Maria - Andrea Bocelli (Franz Schubert)", - "id": "Karaoke Version" - }, - { - "title": "You Were Mine - The Chicks", - "id": "Karaoke Version" - }, - { - "title": "Love Really Hurts Without You - Billy Ocean", - "id": "Karaoke Version" - }, - { - "title": "Love Really Hurts Without You - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Crowded Table - The Highwomen", - "id": "Karaoke Version" - }, - { - "title": "Home - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Il ne rentre pas ce soir - Eddy Mitchell", - "id": "Karaoke Version" - }, - { - "title": "La fille du Pรจre Noรซl - Jacques Dutronc", - "id": "Karaoke Version" - }, - { - "title": "Heaven Knows I'm Miserable Now - The Smiths", - "id": "Karaoke Version" - }, - { - "title": "Only Happy When It Rains - Garbage", - "id": "Karaoke Version" - }, - { - "title": "I Remember Everything - Zach Bryan & Kacey Musgraves", - "id": "Karaoke Version" - }, - { - "title": "Homeward Bound - Simon & Garfunkel", - "id": "Karaoke Version" - }, - { - "title": "Perhaps, Perhaps, Perhaps - Daniel Boaventura & Carlos Rivera", - "id": "Karaoke Version" - }, - { - "title": "The Drugs Don't Work - The Verve", - "id": "Karaoke Version" - }, - { - "title": "Pardon Me - Incubus", - "id": "Karaoke Version" - }, - { - "title": "SOS d'un terrien en dรฉtresse - Starmania (Mogador 94) (Bruno Pelletier)", - "id": "Karaoke Version" - }, - { - "title": "Rollin' with the Flow - Charlie Rich", - "id": "Karaoke Version" - }, - { - "title": "Blue Jeans - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "Wicked Game - HIM", - "id": "Karaoke Version" - }, - { - "title": "Dix ans plus tรดt - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Voici les clรฉs - Gรฉrard Lenorman", - "id": "Karaoke Version" - }, - { - "title": "Angels Among Us - Alabama", - "id": "Karaoke Version" - }, - { - "title": "Paris Latino - Star Academy", - "id": "Karaoke Version" - }, - { - "title": "Bienvenue ร  Halloween - The Nightmare Before Christmas", - "id": "Karaoke Version" - }, - { - "title": "Zij gelooft in mij - Andrรฉ Hazes", - "id": "Karaoke Version" - }, - { - "title": "Scream & Shout - will.i.am & Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "Them Bones - Alice in Chains", - "id": "Karaoke Version" - }, - { - "title": "Bloodletting (The Vampire Song) - Concrete Blonde", - "id": "Karaoke Version" - }, - { - "title": "Et un jour une femme (feat. Christophe Maรฉ) - Florent Pagny", - "id": "Karaoke Version" - }, - { - "title": "Feed My Frankenstein - Alice Cooper", - "id": "Karaoke Version" - }, - { - "title": "What's New, Scooby-Doo? - Scooby-Doo (Simple Plan)", - "id": "Karaoke Version" - }, - { - "title": "My Boy - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Harden My Heart - Quarterflash", - "id": "Karaoke Version" - }, - { - "title": "Sweet But Psycho - Ava Max", - "id": "Karaoke Version" - }, - { - "title": "Travelin' Soldier (acoustic) - Cody Johnson", - "id": "Karaoke Version" - }, - { - "title": "Call Me - Blondie", - "id": "Karaoke Version" - }, - { - "title": "The Grudge - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "Promiscuous - Nelly Furtado & Timbaland", - "id": "Karaoke Version" - }, - { - "title": "Angels Like You - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Grandpa (Tell Me 'Bout the Good Old Days) - Dave Fenley", - "id": "Karaoke Version" - }, - { - "title": "Spooky, Scary Skeletons - Andrew Gold", - "id": "Karaoke Version" - }, - { - "title": "Seven - Jungkook () & Latto", - "id": "Karaoke Version" - }, - { - "title": "Vampire - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "Hotline Bling - Drake", - "id": "Karaoke Version" - }, - { - "title": "Can't Help Falling in Love (duet) - Andrea Bocelli & Katharine McPhee", - "id": "Karaoke Version" - }, - { - "title": "Hung Up - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Une fille aux yeux clairs - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Used to Be Young - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "I'm Just Ken - Barbie (2023 film) (Ryan Gosling)", - "id": "Karaoke Version" - }, - { - "title": "Free Fallin' (Where the Light Is) - John Mayer", - "id": "Karaoke Version" - }, - { - "title": "Bravo, tu as gagnรฉ - Mireille Mathieu", - "id": "Karaoke Version" - }, - { - "title": "Leb deinen Traum - Frank Schindel (Digimon Adventure)", - "id": "Karaoke Version" - }, - { - "title": "All I Want - Kodaline", - "id": "Karaoke Version" - }, - { - "title": "Boss B*tch - Doja Cat (Birds of Prey)", - "id": "Karaoke Version" - }, - { - "title": "Paint the Town Red - Doja Cat", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Talk About Me - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "Pretty Little Poison - Warren Zeiders", - "id": "Karaoke Version" - }, - { - "title": "I Shot the Sheriff - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Jamais je n'avouerai - Hercules (1997 film)", - "id": "Karaoke Version" - }, - { - "title": "Dangerously in Love - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Don't Cry for Me Argentina - Evita (film) (Madonna)", - "id": "Karaoke Version" - }, - { - "title": "Wait For It - Hamilton", - "id": "Karaoke Version" - }, - { - "title": "Gravity - John Mayer", - "id": "Karaoke Version" - }, - { - "title": "Vole - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Wake Up Older - Julie Roberts", - "id": "Karaoke Version" - }, - { - "title": "When I Look at You - Miley Cyrus (The Last Song)", - "id": "Karaoke Version" - }, - { - "title": "Fly Me to the Moon - 1950s Standards", - "id": "Karaoke Version" - }, - { - "title": "Price Tag - Jessie J & B.o.B", - "id": "Karaoke Version" - }, - { - "title": "That's Amore - 1950s Standards", - "id": "Karaoke Version" - }, - { - "title": "No Surprises - Radiohead", - "id": "Karaoke Version" - }, - { - "title": "Thought You Should Know - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "Crawling - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "Take Me Home, Country Roads - Roch Voisine", - "id": "Karaoke Version" - }, - { - "title": "Miami, My Amy - Keith Whitley", - "id": "Karaoke Version" - }, - { - "title": "Rich Men North of Richmond - Oliver Anthony", - "id": "Karaoke Version" - }, - { - "title": "The Ballad of Chasey Lain - Bloodhound Gang", - "id": "Karaoke Version" - }, - { - "title": "Wildfire - Michael Martin Murphey", - "id": "Karaoke Version" - }, - { - "title": "I'll Be There for You - Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "Pour les hommes - Moana (Anthony Kavanagh)", - "id": "Karaoke Version" - }, - { - "title": "Paper Rosie - Gene Watson", - "id": "Karaoke Version" - }, - { - "title": "Everywhere I Go - Hollywood Undead", - "id": "Karaoke Version" - }, - { - "title": "Si veo a tu mamรก - Bad Bunny", - "id": "Karaoke Version" - }, - { - "title": "Scarborough Fair / Canticle - Simon & Garfunkel", - "id": "Karaoke Version" - }, - { - "title": "We Didn't Start the Fire - Fall Out Boy", - "id": "Karaoke Version" - }, - { - "title": "Call Out My Name - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "What Was I Made For? - Barbie (2023 film) (Billie Eilish)", - "id": "Karaoke Version" - }, - { - "title": "Kiss Me Thru the Phone - Soulja Boy & Sammie", - "id": "Karaoke Version" - }, - { - "title": "Walking on Sunshine - Jimmy Buckley", - "id": "Karaoke Version" - }, - { - "title": "Hero (Metro Mix) - Enrique Iglesias", - "id": "Karaoke Version" - }, - { - "title": "Don't Cry Joni - Conway Twitty & Joni", - "id": "Karaoke Version" - }, - { - "title": "You Don't Even Know Who I Am - Patty Loveless", - "id": "Karaoke Version" - }, - { - "title": "Sherry - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "Diary - Alicia Keys & Tony! Toni! Tonรฉ!", - "id": "Karaoke Version" - }, - { - "title": "Ex-fan des sixties - Jane Birkin", - "id": "Karaoke Version" - }, - { - "title": "Baby Don't Hurt Me - David Guetta & Anne-Marie & Coi Leray", - "id": "Karaoke Version" - }, - { - "title": "You Raise Me Up - Westlife", - "id": "Karaoke Version" - }, - { - "title": "Daylight - David Kushner", - "id": "Karaoke Version" - }, - { - "title": "Padam Padam - Kylie Minogue", - "id": "Karaoke Version" - }, - { - "title": "Cupid (twin version) - FIFTY FIFTY ()", - "id": "Karaoke Version" - }, - { - "title": "Push - Matchbox Twenty", - "id": "Karaoke Version" - }, - { - "title": "You Raise Me Up - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "All Night Long (All Night) - Lionel Richie", - "id": "Karaoke Version" - }, - { - "title": "You Give Love a Bad Name - Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "Never Enough - The Greatest Showman", - "id": "Karaoke Version" - }, - { - "title": "Whiskey Lullaby - Brad Paisley & Alison Krauss", - "id": "Karaoke Version" - }, - { - "title": "Super Bass - Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Crazy - Luke Combs", - "id": "Karaoke Version" - }, - { - "title": "In Color - Jamey Johnson", - "id": "Karaoke Version" - }, - { - "title": "Un x100to - Grupo Frontera & Bad Bunny", - "id": "Karaoke Version" - }, - { - "title": "Wish You the Best - Lewis Capaldi", - "id": "Karaoke Version" - }, - { - "title": "Save Me (with Lainey Wilson) - Jelly Roll", - "id": "Karaoke Version" - }, - { - "title": "Say You'll Be There - Spice Girls", - "id": "Karaoke Version" - }, - { - "title": "Sous l'ocรฉan - The Little Mermaid (2023 film) (Jean-Michel Vaubien)", - "id": "Karaoke Version" - }, - { - "title": "Belle - Beauty and the Beast (1991 film)", - "id": "Karaoke Version" - }, - { - "title": "Closer to Fine - Indigo Girls", - "id": "Karaoke Version" - }, - { - "title": "Je t'aimeโ€ฆ moi non plus - Serge Gainsbourg & Jane Birkin", - "id": "Karaoke Version" - }, - { - "title": "Dance the Night - Barbie (2023 film) (Dua Lipa)", - "id": "Karaoke Version" - }, - { - "title": "Bills, Bills, Bills - Destiny's Child", - "id": "Karaoke Version" - }, - { - "title": "Light on in the Kitchen - Ashley McBryde", - "id": "Karaoke Version" - }, - { - "title": "Wet Dreamz - J. Cole", - "id": "Karaoke Version" - }, - { - "title": "Quoi - Jane Birkin", - "id": "Karaoke Version" - }, - { - "title": "Footloose - Blake Shelton", - "id": "Karaoke Version" - }, - { - "title": "Smoky Mountain Rain - Ronnie Milsap", - "id": "Karaoke Version" - }, - { - "title": "Charleston Girl (live) - Tyler Childers", - "id": "Karaoke Version" - }, - { - "title": "Seventeen Going Under - Sam Fender", - "id": "Karaoke Version" - }, - { - "title": "Thinkin' Bout Me - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "River Deep, Mountain High - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Le cimetiรจre des รฉlรฉphants - Eddy Mitchell", - "id": "Karaoke Version" - }, - { - "title": "Under the Sea - The Little Mermaid (2023 film) (Daveed Diggs)", - "id": "Karaoke Version" - }, - { - "title": "Le France - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Hanging by a Moment - Lifehouse", - "id": "Karaoke Version" - }, - { - "title": "Oh What It Did to Me - Tanya Tucker", - "id": "Karaoke Version" - }, - { - "title": "House of Memories - Panic! At the Disco", - "id": "Karaoke Version" - }, - { - "title": "El merengue - Marshmello & Manuel Turizo", - "id": "Karaoke Version" - }, - { - "title": "Take Me Home Country Roads - Lee Towers", - "id": "Karaoke Version" - }, - { - "title": "Wonderboy - Tenacious D", - "id": "Karaoke Version" - }, - { - "title": "Moondance - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Poor Unfortunate Souls - The Little Mermaid", - "id": "Karaoke Version" - }, - { - "title": "Part of Your World - The Little Mermaid (2023 film) (Halle Bailey)", - "id": "Karaoke Version" - }, - { - "title": "The One I Loved Back Then (The Corvette Song) - George Jones", - "id": "Karaoke Version" - }, - { - "title": "Lady - Lionel Richie", - "id": "Karaoke Version" - }, - { - "title": "Dawns - Zach Bryan & Maggie Rogers", - "id": "Karaoke Version" - }, - { - "title": "Nel blu dipinto di blu (volare) - Domenico Modugno", - "id": "Karaoke Version" - }, - { - "title": "Waymore's Blues - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "I'm Alright - Jo Dee Messina", - "id": "Karaoke Version" - }, - { - "title": "Everlong (acoustic) - Foo Fighters", - "id": "Karaoke Version" - }, - { - "title": "Je ne t'รฉcrirai plus - Claude Barzotti", - "id": "Karaoke Version" - }, - { - "title": "Session 32 - Summer Walker", - "id": "Karaoke Version" - }, - { - "title": "Il est cinq heures, Paris s'รฉveille - Jacques Dutronc", - "id": "Karaoke Version" - }, - { - "title": "Faire un pont (Country Roads) - Dick Rivers", - "id": "Karaoke Version" - }, - { - "title": "Snooze - SZA", - "id": "Karaoke Version" - }, - { - "title": "Kiss Me - Dermot Kennedy", - "id": "Karaoke Version" - }, - { - "title": "I Just Can't Help Believing - B. J. Thomas", - "id": "Karaoke Version" - }, - { - "title": "HYFR (Hell Ya Fucking Right) - Drake & Lil Wayne", - "id": "Karaoke Version" - }, - { - "title": "Sunny - Bobby Hebb", - "id": "Karaoke Version" - }, - { - "title": "Feel It Still - Portugal. The Man", - "id": "Karaoke Version" - }, - { - "title": "Doses And Mimosas - Cherub", - "id": "Karaoke Version" - }, - { - "title": "Children's Story - Slick Rick", - "id": "Karaoke Version" - }, - { - "title": "Gummibรคrenbande Titellied - Adventures of Gummi Bears", - "id": "Karaoke Version" - }, - { - "title": "Hook - Blues Traveler", - "id": "Karaoke Version" - }, - { - "title": "Mรฉditerranรฉenne - Hervรฉ Vilard", - "id": "Karaoke Version" - }, - { - "title": "Les cactus - Jacques Dutronc", - "id": "Karaoke Version" - }, - { - "title": "Watermelon Moonshine - Lainey Wilson", - "id": "Karaoke Version" - }, - { - "title": "Cose della vita - Eros Ramazzotti & Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Sarah Menescal", - "id": "Karaoke Version" - }, - { - "title": "Bella ciao - Marco Calliari", - "id": "Karaoke Version" - }, - { - "title": "Miracle - Calvin Harris & Ellie Goulding", - "id": "Karaoke Version" - }, - { - "title": "Mon amie la rose - Franรงoise Hardy", - "id": "Karaoke Version" - }, - { - "title": "Tous les garรงons et les filles - Franรงoise Hardy", - "id": "Karaoke Version" - }, - { - "title": "Jaded - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Proud Mary (Divas Live '99) - Tina Turner & Cher & Elton John", - "id": "Karaoke Version" - }, - { - "title": "Cupid - FIFTY FIFTY ()", - "id": "Karaoke Version" - }, - { - "title": "Simply the Best - Schitt's Creek (Noah Reid)", - "id": "Karaoke Version" - }, - { - "title": "River Deep, Mountain High - Tina Turner & Ike Turner", - "id": "Karaoke Version" - }, - { - "title": "Proud Mary (live in Arnhem) - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Proud Mary - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "Proud Mary - Tina Turner & Ike Turner", - "id": "Karaoke Version" - }, - { - "title": "We Don't Need Another Hero (Thunderdome) - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Flowers - Postmodern Jukebox & Stella Katherine Cole", - "id": "Karaoke Version" - }, - { - "title": "TQG - Karol G & Shakira", - "id": "Karaoke Version" - }, - { - "title": "Je vais t'aimer - Louane", - "id": "Karaoke Version" - }, - { - "title": "Boombastic - Shaggy", - "id": "Karaoke Version" - }, - { - "title": "Bring Him Home - Les Misรฉrables (musical)", - "id": "Karaoke Version" - }, - { - "title": "Love You Anyway - Luke Combs", - "id": "Karaoke Version" - }, - { - "title": "How Do I Say Goodbye - Dean Lewis", - "id": "Karaoke Version" - }, - { - "title": "Les uns contre les autres - Starmania", - "id": "Karaoke Version" - }, - { - "title": "Fly Me to the Moon (In Other Words) - Doris Day", - "id": "Karaoke Version" - }, - { - "title": "Just Wanna Rock - Lil Uzi Vert", - "id": "Karaoke Version" - }, - { - "title": "Creep - Tom Ball", - "id": "Karaoke Version" - }, - { - "title": "Bottoms Up - Trey Songz & Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "5 Leaf Clover - Luke Combs", - "id": "Karaoke Version" - }, - { - "title": "Tennessee Orange - Megan Moroney", - "id": "Karaoke Version" - }, - { - "title": "Mamy Blue - Nicoletta", - "id": "Karaoke Version" - }, - { - "title": "Need a Favor - Jelly Roll", - "id": "Karaoke Version" - }, - { - "title": "Perfect - Simple Plan", - "id": "Karaoke Version" - }, - { - "title": "Flamme - Slaรฏ", - "id": "Karaoke Version" - }, - { - "title": "Crying My Heart Out Over You - Ricky Skaggs", - "id": "Karaoke Version" - }, - { - "title": "You Don't Have To Say You Love Me - Dusty Springfield", - "id": "Karaoke Version" - }, - { - "title": "Complainte de la serveuse automate - Starmania", - "id": "Karaoke Version" - }, - { - "title": "Walk Through This World with Me - George Jones", - "id": "Karaoke Version" - }, - { - "title": "In Too Deep - Sum 41", - "id": "Karaoke Version" - }, - { - "title": "Ta mariniรจre - Hoshi", - "id": "Karaoke Version" - }, - { - "title": "Flowers (demo) - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "If You Go Down (I'm Goin' Down Too) - Kelsea Ballerini", - "id": "Karaoke Version" - }, - { - "title": "Peaches - The Super Mario Bros. Movie (Jack Black)", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Waiting - Cian Ducrot", - "id": "Karaoke Version" - }, - { - "title": "Rainbow - Kacey Musgraves", - "id": "Karaoke Version" - }, - { - "title": "The Edge of Glory - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Louisiana Saturday Night - Mel McDaniel", - "id": "Karaoke Version" - }, - { - "title": "Look at Us Now (Honeycomb) - Daisy Jones & The Six", - "id": "Karaoke Version" - }, - { - "title": "Secret - Louane", - "id": "Karaoke Version" - }, - { - "title": "What's Your Fantasy - Ludacris & Shawnna", - "id": "Karaoke Version" - }, - { - "title": "Un garรงon pas comme les autres (Ziggy) - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Fast Car - Luke Combs", - "id": "Karaoke Version" - }, - { - "title": "Boy's a Liar Pt. 2 - PinkPantheress & Ice Spice", - "id": "Karaoke Version" - }, - { - "title": "Sunday Morning - No Doubt", - "id": "Karaoke Version" - }, - { - "title": "Le monde est stone - Starmania", - "id": "Karaoke Version" - }, - { - "title": "SOS d'un terrien en dรฉtresse - Grรฉgory Lemarchal", - "id": "Karaoke Version" - }, - { - "title": "Every Light in the House - Trace Adkins", - "id": "Karaoke Version" - }, - { - "title": "Centerfield - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "De zรฉro en hรฉros - Hercules (1997 film)", - "id": "Karaoke Version" - }, - { - "title": "Vogue - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Do Ya' - K.T. Oslin", - "id": "Karaoke Version" - }, - { - "title": "SOS d'un terrien en dรฉtresse - Starmania", - "id": "Karaoke Version" - }, - { - "title": "Madness - Muse", - "id": "Karaoke Version" - }, - { - "title": "Jolene - Olivia Newton-John & Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "Quand on arrive en ville - Starmania", - "id": "Karaoke Version" - }, - { - "title": "Le blues du businessman - Starmania", - "id": "Karaoke Version" - }, - { - "title": "All My Rowdy Friends Are Coming Over Tonight - Hank Williams, Jr.", - "id": "Karaoke Version" - }, - { - "title": "Hit 'Em Up - 2Pac & Outlawz", - "id": "Karaoke Version" - }, - { - "title": "Titanium (acoustic) - David Guetta (Madilyn Bailey)", - "id": "Karaoke Version" - }, - { - "title": "Perfect (acoustic) - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Pump Up the Jam - Technotronic", - "id": "Karaoke Version" - }, - { - "title": "Sweet Thing - Mary J. Blige", - "id": "Karaoke Version" - }, - { - "title": "Players - Coi Leray", - "id": "Karaoke Version" - }, - { - "title": "Le temps des cathรฉdrales - Notre-Dame de Paris", - "id": "Karaoke Version" - }, - { - "title": "Belle - Notre-Dame de Paris", - "id": "Karaoke Version" - }, - { - "title": "I Told You So - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "That Lonesome Song - Jamey Johnson", - "id": "Karaoke Version" - }, - { - "title": "1979 - The Smashing Pumpkins", - "id": "Karaoke Version" - }, - { - "title": "My Baby Loves Me - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "The Spins - Mac Miller", - "id": "Karaoke Version" - }, - { - "title": "Itty Bitty Piggy - Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "Lost - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "Je l'aime ร  mourir (la quiero a morir) - Shakira", - "id": "Karaoke Version" - }, - { - "title": "Everything I Love - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "Giddy Up! - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Trustfall - Pink", - "id": "Karaoke Version" - }, - { - "title": "Save the Last Dance for Me - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Last Night - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "Who We Love - Sam Smith & Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Blaze of Glory - Jon Bon Jovi (Young Guns II)", - "id": "Karaoke Version" - }, - { - "title": "Cecilia - Simon & Garfunkel", - "id": "Karaoke Version" - }, - { - "title": "Si demain... (Turn Around) - Bonnie Tyler & Kareen Antonn", - "id": "Karaoke Version" - }, - { - "title": "Old Flame - Alabama", - "id": "Karaoke Version" - }, - { - "title": "The One That Got Away - Katy Perry", - "id": "Karaoke Version" - }, - { - "title": "Bravo, tu as gagnรฉ (live) - Clara Luciani", - "id": "Karaoke Version" - }, - { - "title": "At the Hop - Danny And The Juniors", - "id": "Karaoke Version" - }, - { - "title": "Creep - Brian Justin Crum", - "id": "Karaoke Version" - }, - { - "title": "Smell Like Smoke - Lainey Wilson", - "id": "Karaoke Version" - }, - { - "title": "Am I the Only One - Aaron Lewis", - "id": "Karaoke Version" - }, - { - "title": "C'est chelou - Zaho", - "id": "Karaoke Version" - }, - { - "title": "All I Wanted - Paramore", - "id": "Karaoke Version" - }, - { - "title": "Dans les yeux d'Emilie - La Petite Culotte", - "id": "Karaoke Version" - }, - { - "title": "Escapism. - Raye & 070 Shake", - "id": "Karaoke Version" - }, - { - "title": "Night Changes - One Direction", - "id": "Karaoke Version" - }, - { - "title": "Derriรจre l'amour - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "Almost There - The Princess and the Frog", - "id": "Karaoke Version" - }, - { - "title": "Moondance - Van Morrison", - "id": "Karaoke Version" - }, - { - "title": "Go the Distance - Hercules (1997 film)", - "id": "Karaoke Version" - }, - { - "title": "Honesty - Billy Joel", - "id": "Karaoke Version" - }, - { - "title": "What the World Needs Now Is Love - Dionne Warwick", - "id": "Karaoke Version" - }, - { - "title": "One Headlight - The Wallflowers", - "id": "Karaoke Version" - }, - { - "title": "Bella Ciao - Money Heist (Manu Pilas)", - "id": "Karaoke Version" - }, - { - "title": "Il me dit que je suis belle - Patricia Kaas", - "id": "Karaoke Version" - }, - { - "title": "Separate Ways (Worlds Apart) - Daughtry & Lzzy Hale", - "id": "Karaoke Version" - }, - { - "title": "Mais je t'aime - Grand Corps Malade & Camille Lellouche", - "id": "Karaoke Version" - }, - { - "title": "Shakira: Bzrp Music Sessions, Vol. 53 - Bizarrap & Shakira", - "id": "Karaoke Version" - }, - { - "title": "You Can Leave Your Hat On - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "All These Things That I've Done - The Killers", - "id": "Karaoke Version" - }, - { - "title": "The Keeper of the Stars - Tracy Byrd", - "id": "Karaoke Version" - }, - { - "title": "L'assasymphonie - Mozart l'opรฉra rock", - "id": "Karaoke Version" - }, - { - "title": "Misery Business - Paramore", - "id": "Karaoke Version" - }, - { - "title": "Rockstar - Nickelback", - "id": "Karaoke Version" - }, - { - "title": "Naughty - Matilda The Musical", - "id": "Karaoke Version" - }, - { - "title": "Flowers - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Les murs de poussiรจre - Francis Cabrel", - "id": "Karaoke Version" - }, - { - "title": "Oklahoma Smokeshow - Zach Bryan", - "id": "Karaoke Version" - }, - { - "title": "One Night Standards - Ashley McBryde", - "id": "Karaoke Version" - }, - { - "title": "Sure Thing - Miguel", - "id": "Karaoke Version" - }, - { - "title": "Ne me quitte pas - Jacques Brel", - "id": "Karaoke Version" - }, - { - "title": "In the Ghetto (duet) - Elvis Presley & Lisa Marie Presley", - "id": "Karaoke Version" - }, - { - "title": "Pointless - Lewis Capaldi", - "id": "Karaoke Version" - }, - { - "title": "Rock and a Hard Place - Bailey Zimmerman", - "id": "Karaoke Version" - }, - { - "title": "Amsterdam (live) - Jacques Brel", - "id": "Karaoke Version" - }, - { - "title": "Kill Bill - SZA", - "id": "Karaoke Version" - }, - { - "title": "Under the Influence - Chris Brown", - "id": "Karaoke Version" - }, - { - "title": "Victoria's Secret - Jax", - "id": "Karaoke Version" - }, - { - "title": "You Proof - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "Cuff It - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Wrecking Ball - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Made You Look - Meghan Trainor", - "id": "Karaoke Version" - }, - { - "title": "Can't Help Falling In Love - DJ ร–tzi", - "id": "Karaoke Version" - }, - { - "title": "One Thing at a Time - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "ร€ toi - Matthieu Chedid (-M-) & Gail Ann Dorsey", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Dance With Somebody - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "ร€ toi - ร€ toi, Joe Dassin (Ycare & Axelle Red)", - "id": "Karaoke Version" - }, - { - "title": "Evermore (Dan Stevens) - Beauty and the Beast (2017 film)", - "id": "Karaoke Version" - }, - { - "title": "Cry to Me (acoustic) - Marc Broussard", - "id": "Karaoke Version" - }, - { - "title": "Ocean Avenue - Yellowcard", - "id": "Karaoke Version" - }, - { - "title": "The Schuyler Sisters - Hamilton", - "id": "Karaoke Version" - }, - { - "title": "Calm Down - Rema", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bell Rock - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Goo Goo Muck - The Cramps", - "id": "Karaoke Version" - }, - { - "title": "Le rire du sergent - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Auld Lang Syne - Boney M.", - "id": "Karaoke Version" - }, - { - "title": "Auld Lang Syne - Lea Michele (New Year's Eve)", - "id": "Karaoke Version" - }, - { - "title": "Auld Lang Syne (The New Year's Anthem) - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Lass jetzt los - Frozen (2013 film)", - "id": "Karaoke Version" - }, - { - "title": "Never Gonna Not Dance Again - Pink", - "id": "Karaoke Version" - }, - { - "title": "Christmas Medley - Engelbert Humperdinck & Renรฉ Froger (live)", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas from the Family - Montgomery Gentry", - "id": "Karaoke Version" - }, - { - "title": "Monotonรญa - Shakira & Ozuna", - "id": "Karaoke Version" - }, - { - "title": "Rudolph the Red Nosed Reindeer - The Crystals", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bell Rock - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "Sweet Caroline - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Unholy - Sam Smith & Kim Petras", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Around the Christmas Tree - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Christmas In Hollis - Run-DMC", - "id": "Karaoke Version" - }, - { - "title": "Santa Looked a Lot Like Daddy - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas, Happy Holidays - NSYNC", - "id": "Karaoke Version" - }, - { - "title": "Blue Christmas - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Il est nรฉ le divin enfant (version dance) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Snap (Eurovision Armenia) - Rosa Linn", - "id": "Karaoke Version" - }, - { - "title": "Baby It's Cold Outside - Leon Redbone & Zooey Deschanel", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Blue Christmas - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Man with the Bag - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bell Rock - Hall & Oates", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Bing Crosby", - "id": "Karaoke Version" - }, - { - "title": "Away in a Manger - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Silver Bells - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Going, Going, Gone - Luke Combs", - "id": "Karaoke Version" - }, - { - "title": "Blue Christmas (With the Royal Philharmonic Orchestra) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow (2012 Christmas Special - live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Rudolph, the Red-Nosed Reindeer - Gene Autry", - "id": "Karaoke Version" - }, - { - "title": "Calm Down (remix) - Rema & Selena Gomez", - "id": "Karaoke Version" - }, - { - "title": "Thank God - Kane Brown & Katelyn Brown", - "id": "Karaoke Version" - }, - { - "title": "Lift Me Up - Rihanna (Black Panther)", - "id": "Karaoke Version" - }, - { - "title": "The Loneliest - Mรฅneskin", - "id": "Karaoke Version" - }, - { - "title": "Call on Me - Vianney & Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Last Last - Burna Boy", - "id": "Karaoke Version" - }, - { - "title": "Unchained Melody - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "What a Wonderful World - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Amazing Grace - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "The One I Love - R.E.M.", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bell Rock - Glee", - "id": "Karaoke Version" - }, - { - "title": "Si, maman si - France Gall", - "id": "Karaoke Version" - }, - { - "title": "Bim bam toi - Carla Lazzari", - "id": "Karaoke Version" - }, - { - "title": "Dreams and Nightmares - Meek Mill", - "id": "Karaoke Version" - }, - { - "title": "Turn Your Lights Down Low (with Lauryn Hill) - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "Alles Neu - Peter Fox", - "id": "Karaoke Version" - }, - { - "title": "Oรน est la vraie vie ? - Tangled", - "id": "Karaoke Version" - }, - { - "title": "(Without You) What Do I Do with Me - Tanya Tucker", - "id": "Karaoke Version" - }, - { - "title": "Unchained Melody - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "5 Foot 9 - Tyler Hubbard", - "id": "Karaoke Version" - }, - { - "title": "Diego, libre dans sa tรชte - Michel Berger", - "id": "Karaoke Version" - }, - { - "title": "Friends on the Other Side - The Princess and the Frog", - "id": "Karaoke Version" - }, - { - "title": "Where I Find God - Larry Fleet", - "id": "Karaoke Version" - }, - { - "title": "Laissez-moi danser (Monday, Tuesday) - Dalida", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "I Put a Spell on You - Screamin' Jay Hawkins", - "id": "Karaoke Version" - }, - { - "title": "Sarah's Theme - Hocus Pocus", - "id": "Karaoke Version" - }, - { - "title": "Dead Man's Party (Boingo Alive Version) - Oingo Boingo", - "id": "Karaoke Version" - }, - { - "title": "Heart Like a Truck - Lainey Wilson", - "id": "Karaoke Version" - }, - { - "title": "Golden Hour - Jvke", - "id": "Karaoke Version" - }, - { - "title": "You Make Me Feel Like It's Halloween - Muse", - "id": "Karaoke Version" - }, - { - "title": "This Is Halloween - Marilyn Manson", - "id": "Karaoke Version" - }, - { - "title": "Pink Venom - Blackpink ()", - "id": "Karaoke Version" - }, - { - "title": "La bachata - Manuel Turizo", - "id": "Karaoke Version" - }, - { - "title": "Love On Top - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Crazy in Love - Beyoncรฉ & Jay-Z", - "id": "Karaoke Version" - }, - { - "title": "Forget Me - Lewis Capaldi", - "id": "Karaoke Version" - }, - { - "title": "Louisiana Woman, Mississippi Man - Conway Twitty & Loretta Lynn", - "id": "Karaoke Version" - }, - { - "title": "Macarena - Damso", - "id": "Karaoke Version" - }, - { - "title": "Bad Habit - Steve Lacy", - "id": "Karaoke Version" - }, - { - "title": "Always - Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "Super Freaky Girl (Roman remix) - Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "Super Freaky Girl - Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "The Sound of Silence - Simon & Garfunkel", - "id": "Karaoke Version" - }, - { - "title": "Hold Me Closer - Elton John & Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "That's Amore - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Follow Me - Uncle Kracker", - "id": "Karaoke Version" - }, - { - "title": "Toutes les femmes de ta vie - L5", - "id": "Karaoke Version" - }, - { - "title": "Thinking Out Loud - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Need You Now - Lady A", - "id": "Karaoke Version" - }, - { - "title": "The Sound of Silence - Disturbed", - "id": "Karaoke Version" - }, - { - "title": "Cry to Me - Solomon Burke", - "id": "Karaoke Version" - }, - { - "title": "Mary on a Cross - Ghost (band)", - "id": "Karaoke Version" - }, - { - "title": "I Drink Alone - George Thorogood", - "id": "Karaoke Version" - }, - { - "title": "505 - Arctic Monkeys", - "id": "Karaoke Version" - }, - { - "title": "World's Smallest Violin - AJR", - "id": "Karaoke Version" - }, - { - "title": "2 Be Loved (Am I Ready) - Lizzo", - "id": "Karaoke Version" - }, - { - "title": "The Blues Man - Hank Williams, Jr.", - "id": "Karaoke Version" - }, - { - "title": "Canter - Gerry Cinnamon", - "id": "Karaoke Version" - }, - { - "title": "50 Ways to Leave Your Lover - Paul Simon", - "id": "Karaoke Version" - }, - { - "title": "Add It Up - The Violent Femmes", - "id": "Karaoke Version" - }, - { - "title": "The Winner Takes It All - Mamma Mia! (film) (Meryl Streep)", - "id": "Karaoke Version" - }, - { - "title": "You're Still the One (live) - Teddy Swims", - "id": "Karaoke Version" - }, - { - "title": "Like My Father - Jax", - "id": "Karaoke Version" - }, - { - "title": "I Will Wait - Mumford & Sons", - "id": "Karaoke Version" - }, - { - "title": "Waiting in Vain - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Rest for the Wicked - Cage the Elephant", - "id": "Karaoke Version" - }, - { - "title": "Good as I Was to You - Lorrie Morgan", - "id": "Karaoke Version" - }, - { - "title": "Angels (XXV) - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Release Me - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "In the Ghetto - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "No Body - Blake Shelton", - "id": "Karaoke Version" - }, - { - "title": "Despechรก - Rosalรญa", - "id": "Karaoke Version" - }, - { - "title": "Human - The Killers", - "id": "Karaoke Version" - }, - { - "title": "Every Rose Has Its Thorn - Poison", - "id": "Karaoke Version" - }, - { - "title": "Baby Shark - Pinkfong", - "id": "Karaoke Version" - }, - { - "title": "Feathered Indians - Tyler Childers", - "id": "Karaoke Version" - }, - { - "title": "Don't Be Cruel - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Et bam - Mentissa", - "id": "Karaoke Version" - }, - { - "title": "Vegas - Elvis (film) (Doja Cat)", - "id": "Karaoke Version" - }, - { - "title": "You Never Even Called Me by My Name - David Allan Coe", - "id": "Karaoke Version" - }, - { - "title": "No Hands - Waka Flocka Flame & Roscoe Dash & Wale", - "id": "Karaoke Version" - }, - { - "title": "Something in the Orange (Z&E's Version) - Zach Bryan", - "id": "Karaoke Version" - }, - { - "title": "Best I Ever Had - Drake", - "id": "Karaoke Version" - }, - { - "title": "Here Comes the Rain Again - Eurythmics", - "id": "Karaoke Version" - }, - { - "title": "If I Can Dream (Mรฅneskin) - Elvis (film)", - "id": "Karaoke Version" - }, - { - "title": "Mrs. Robinson - Simon & Garfunkel", - "id": "Karaoke Version" - }, - { - "title": "Fall in Love - Bailey Zimmerman", - "id": "Karaoke Version" - }, - { - "title": "The Boxer - Simon & Garfunkel", - "id": "Karaoke Version" - }, - { - "title": "Heading South (Single Version) - Zach Bryan", - "id": "Karaoke Version" - }, - { - "title": "Left and Right - Charlie Puth & Jungkook", - "id": "Karaoke Version" - }, - { - "title": "Supermodel - Mรฅneskin", - "id": "Karaoke Version" - }, - { - "title": "Fly Me to the Moon (slow version) - Jazz Standards", - "id": "Karaoke Version" - }, - { - "title": "Rouge - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Baker Street - Gerry Rafferty", - "id": "Karaoke Version" - }, - { - "title": "Sharks - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Until I Found You - Stephen Sanchez", - "id": "Karaoke Version" - }, - { - "title": "Suspicious Minds - Elvis (film) (Paravi)", - "id": "Karaoke Version" - }, - { - "title": "Crazy What Love Can Do - David Guetta & Becky Hill & Ella Henderson", - "id": "Karaoke Version" - }, - { - "title": "Hopelessly Devoted to You - Glee", - "id": "Karaoke Version" - }, - { - "title": "L'envie d'aimer (live) - Cรฉline Dion & Daniel Lรฉvi", - "id": "Karaoke Version" - }, - { - "title": "Don't Come Lookin' - Jackson Dean", - "id": "Karaoke Version" - }, - { - "title": "Country on - Luke Bryan", - "id": "Karaoke Version" - }, - { - "title": "Burning Love - Elvis (film)", - "id": "Karaoke Version" - }, - { - "title": "Toxic - Melanie Martinez", - "id": "Karaoke Version" - }, - { - "title": "Take Me Home, Country Roads - Olivia Newton-John", - "id": "Karaoke Version" - }, - { - "title": "Me porto bonito - Bad Bunny & Chencho Corleone", - "id": "Karaoke Version" - }, - { - "title": "Quelques mots d'amour - Michel Berger", - "id": "Karaoke Version" - }, - { - "title": "Wagon Wheel - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "All Right Now - Free", - "id": "Karaoke Version" - }, - { - "title": "No Role Modelz - J. Cole", - "id": "Karaoke Version" - }, - { - "title": "In the Stars - Benson Boone", - "id": "Karaoke Version" - }, - { - "title": "Big Iron - Marty Robbins", - "id": "Karaoke Version" - }, - { - "title": "Trouble - Elvis (film)", - "id": "Karaoke Version" - }, - { - "title": "If I Can Dream - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River - Justin Timberlake", - "id": "Karaoke Version" - }, - { - "title": "Should I Stay or Should I Go - The Clash", - "id": "Karaoke Version" - }, - { - "title": "Can't Help Falling in Love (Kacey Musgraves) - Elvis (film)", - "id": "Karaoke Version" - }, - { - "title": "Numb - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "Can't Help Falling in Love (Mark Ronson remix) - Elvis (film)", - "id": "Karaoke Version" - }, - { - "title": "Break My Soul - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Can't Stop the Feeling - Trolls (Justin Timberlake)", - "id": "Karaoke Version" - }, - { - "title": "Provenza - Karol G", - "id": "Karaoke Version" - }, - { - "title": "Glimpse of Us - Joji", - "id": "Karaoke Version" - }, - { - "title": "Landslide (Album Version) - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "In the End - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "Dandelions - Ruth B.", - "id": "Karaoke Version" - }, - { - "title": "Master of Puppets - Metallica", - "id": "Karaoke Version" - }, - { - "title": "Big Energy - Latto", - "id": "Karaoke Version" - }, - { - "title": "Geraldene - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Green, Green Grass of Home - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "The Kind of Love We Make - Luke Combs", - "id": "Karaoke Version" - }, - { - "title": "Mourir sur scรจne (nouvelle version 2022) - Dalida", - "id": "Karaoke Version" - }, - { - "title": "Le dernier jour du disco - Juliette Armanet", - "id": "Karaoke Version" - }, - { - "title": "Flowers - Lauren Spencer-Smith", - "id": "Karaoke Version" - }, - { - "title": "Alexander Hamilton - Hamilton", - "id": "Karaoke Version" - }, - { - "title": "The Promise - When in Rome", - "id": "Karaoke Version" - }, - { - "title": "When You're Good to Mama - Chicago (film)", - "id": "Karaoke Version" - }, - { - "title": "Starlight - Muse", - "id": "Karaoke Version" - }, - { - "title": "I'd Do Anything for Love - Meat Loaf & Lorraine Crosby", - "id": "Karaoke Version" - }, - { - "title": "America the Beautiful - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "La derniรจre sรฉance - Eddy Mitchell", - "id": "Karaoke Version" - }, - { - "title": "O Canada - Anthem", - "id": "Karaoke Version" - }, - { - "title": "Burn - Hamilton (Phillipa Soo)", - "id": "Karaoke Version" - }, - { - "title": "Trouble - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Titรญ me preguntรณ - Bad Bunny", - "id": "Karaoke Version" - }, - { - "title": "Colors of the Wind - Pocahontas (1995 film)", - "id": "Karaoke Version" - }, - { - "title": "Te felicito - Shakira & Rauw Alejandro", - "id": "Karaoke Version" - }, - { - "title": "Welcome to the Internet - Bo Burnham", - "id": "Karaoke Version" - }, - { - "title": "Enemy (solo version) - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Moon River - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "L'รฉtรฉ indien - Joe Dassin", - "id": "Karaoke Version" - }, - { - "title": "I Can't Help Falling in Love (movie version) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Baby Can I Hold You - Tracy Chapman", - "id": "Karaoke Version" - }, - { - "title": "Je viens du Sud - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Amish Paradise - Weird Al Yankovic", - "id": "Karaoke Version" - }, - { - "title": "Broken Window Serenade - Whiskey Myers", - "id": "Karaoke Version" - }, - { - "title": "Late Night Talking - Harry Styles", - "id": "Karaoke Version" - }, - { - "title": "That's What Makes the Jukebox Play - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Space Man (Eurovision United Kingdom) - Sam Ryder", - "id": "Karaoke Version" - }, - { - "title": "Oรน sont les femmes ? (live) - Clara Luciani (Victoires de la musique)", - "id": "Karaoke Version" - }, - { - "title": "ร‰videmment - France Gall", - "id": "Karaoke Version" - }, - { - "title": "Champagne Supernova - Oasis", - "id": "Karaoke Version" - }, - { - "title": "Something in the Orange - Zach Bryan", - "id": "Karaoke Version" - }, - { - "title": "1985 - Bowling for Soup", - "id": "Karaoke Version" - }, - { - "title": "Stay - Rihanna & Mikky Ekko", - "id": "Karaoke Version" - }, - { - "title": "Give Me One Reason - Tracy Chapman", - "id": "Karaoke Version" - }, - { - "title": "Sensualitรฉ - Axelle Red", - "id": "Karaoke Version" - }, - { - "title": "La Isla Bonita - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Belter - Gerry Cinnamon", - "id": "Karaoke Version" - }, - { - "title": "Mamiii - Karol G & Becky G", - "id": "Karaoke Version" - }, - { - "title": "Like I Love Country Music - Kane Brown", - "id": "Karaoke Version" - }, - { - "title": "A White Sport Coat (And A Pink Carnation) - Marty Robbins", - "id": "Karaoke Version" - }, - { - "title": "Hold My Hand - Lady Gaga (Top Gun: Maverick)", - "id": "Karaoke Version" - }, - { - "title": "ร€ quoi รงa sert l'amour ? - Edith Piaf & Thรฉo Sarapo", - "id": "Karaoke Version" - }, - { - "title": "Les vieux mariรฉs - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Love - Keyshia Cole", - "id": "Karaoke Version" - }, - { - "title": "Bones - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Fly Me to the Moon (acoustic) - Angelina Jordan", - "id": "Karaoke Version" - }, - { - "title": "(I Can't Help) Falling in Love with You - UB40", - "id": "Karaoke Version" - }, - { - "title": "Green Green Grass - George Ezra", - "id": "Karaoke Version" - }, - { - "title": "Je sais pas - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Diego libre dans sa tรชte (album Johnny) - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "Despacito (remix) - Luis Fonsi & Daddy Yankee & Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Actin' Up - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Burn - Usher", - "id": "Karaoke Version" - }, - { - "title": "La fama - Rosalรญa & The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "Get the Party Started - Pink", - "id": "Karaoke Version" - }, - { - "title": "About Damn Time - Lizzo", - "id": "Karaoke Version" - }, - { - "title": "Love is Alive - The Judds", - "id": "Karaoke Version" - }, - { - "title": "The Motto - Drake & Lil Wayne", - "id": "Karaoke Version" - }, - { - "title": "Back Home Again - John Denver", - "id": "Karaoke Version" - }, - { - "title": "Boyfriend - Dove Cameron", - "id": "Karaoke Version" - }, - { - "title": "Je vais t'aimer - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Ho Hey - The Lumineers", - "id": "Karaoke Version" - }, - { - "title": "Nobody Like U - Turning Red (film) (4*TOWN)", - "id": "Karaoke Version" - }, - { - "title": "La Marseillaise - Anthem", - "id": "Karaoke Version" - }, - { - "title": "Joy of My Life - Chris Stapleton", - "id": "Karaoke Version" - }, - { - "title": "Crazy - Michael Bublรฉ & Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "God Save the Queen - Anthem", - "id": "Karaoke Version" - }, - { - "title": "Little Lion Man - Mumford & Sons", - "id": "Karaoke Version" - }, - { - "title": "Spiderwebs - No Doubt", - "id": "Karaoke Version" - }, - { - "title": "If I Didn't Love You - Jason Aldean & Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Contagious - The Isley Brothers & R. Kelly & Chantรฉ Moore", - "id": "Karaoke Version" - }, - { - "title": "Heard it All Before - Sunshine Anderson", - "id": "Karaoke Version" - }, - { - "title": "You're My First, My Last, My Everything - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "As It Was - Harry Styles", - "id": "Karaoke Version" - }, - { - "title": "Make You Feel My Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Love Me Like You Do - Ellie Goulding", - "id": "Karaoke Version" - }, - { - "title": "Good As Hell - Lizzo", - "id": "Karaoke Version" - }, - { - "title": "Sweet Dreams (Are Made of This) - Eurythmics", - "id": "Karaoke Version" - }, - { - "title": "Dicked Down in Dallas - Trey Lewis", - "id": "Karaoke Version" - }, - { - "title": "If I Was a Cowboy - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Out of Time - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "Shivers (remix Ofenbach) - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Sweet Dreams (Are Made of This) - Marilyn Manson", - "id": "Karaoke Version" - }, - { - "title": "Dos oruguitas - Encanto (film) (Sebastiรกn Yatra)", - "id": "Karaoke Version" - }, - { - "title": "Angela - Hatik", - "id": "Karaoke Version" - }, - { - "title": "I Told You So - Randy Travis", - "id": "Karaoke Version" - }, - { - "title": "Fuck You Bitch - Wheeler Walker, Jr.", - "id": "Karaoke Version" - }, - { - "title": "Laura - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "Bam Bam - Camila Cabello & Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "To Be Loved by You - Parker McCollum", - "id": "Karaoke Version" - }, - { - "title": "Something in the Way - Nirvana", - "id": "Karaoke Version" - }, - { - "title": "AA - Walker Hayes", - "id": "Karaoke Version" - }, - { - "title": "All of You - Encanto (film)", - "id": "Karaoke Version" - }, - { - "title": "Gypsy - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "La groupie du pianiste - Michel Berger", - "id": "Karaoke Version" - }, - { - "title": "Light Switch - Charlie Puth", - "id": "Karaoke Version" - }, - { - "title": "Vienna - Billy Joel", - "id": "Karaoke Version" - }, - { - "title": "(Simply) The Best (with Jimmy Barnes) - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Ne parlons pas de Bruno - Encanto (film)", - "id": "Karaoke Version" - }, - { - "title": "Just the Way You Are - Billy Joel", - "id": "Karaoke Version" - }, - { - "title": "Sweet Dreams (Are Made of This) (long version) - Eurythmics", - "id": "Karaoke Version" - }, - { - "title": "Piano Man - Billy Joel", - "id": "Karaoke Version" - }, - { - "title": "Too-Ra-Loo-Ra-Loo-Ral (That's an Irish Lullaby) - Bing Crosby", - "id": "Karaoke Version" - }, - { - "title": "Downtown - Petula Clark", - "id": "Karaoke Version" - }, - { - "title": "Stone - Whiskey Myers", - "id": "Karaoke Version" - }, - { - "title": "Bad Habits (acoustic) - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "The Black Velvet Band - The Dubliners", - "id": "Karaoke Version" - }, - { - "title": "Satisfied - Hamilton", - "id": "Karaoke Version" - }, - { - "title": "I Will Survive (ao vivo) - Daniel Boaventura", - "id": "Karaoke Version" - }, - { - "title": "Go Rest High On That Mountain - Vince Gill", - "id": "Karaoke Version" - }, - { - "title": "Creep (feat. Haley Reinhart) - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "The Joker and the Queen (feat. Taylor Swift) - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Edge of Seventeen - Stevie Nicks", - "id": "Karaoke Version" - }, - { - "title": "Walkin' after Midnight (1959) - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Le bleu lumiรจre - Moana (Cerise Calixte)", - "id": "Karaoke Version" - }, - { - "title": "Perfect Duet - Ed Sheeran & Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Parce que c'est toi - Vianney & Mentissa", - "id": "Karaoke Version" - }, - { - "title": "You Should Probably Leave - Chris Stapleton", - "id": "Karaoke Version" - }, - { - "title": "Umbrella - Rihanna & Jay-Z", - "id": "Karaoke Version" - }, - { - "title": "Y.M.C.A. - Village People", - "id": "Karaoke Version" - }, - { - "title": "Don't Cha (Without the vocal rap part) - The Pussycat Dolls", - "id": "Karaoke Version" - }, - { - "title": "Never Wanted to Be That Girl - Carly Pearce & Ashley McBryde", - "id": "Karaoke Version" - }, - { - "title": "Wicked Game (acoustic) - Stone Sour & Corey Taylor", - "id": "Karaoke Version" - }, - { - "title": "I Just Can't Wait to Be King - The Lion King (1994 film)", - "id": "Karaoke Version" - }, - { - "title": "Quelque chose de Tennessee - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "Abcdefu (angrier) - Gayle", - "id": "Karaoke Version" - }, - { - "title": "Laissez-moi danser (remix 2004) - Dalida", - "id": "Karaoke Version" - }, - { - "title": "L'Italiano - Toto Cutugno", - "id": "Karaoke Version" - }, - { - "title": "In Da Club - 50 Cent", - "id": "Karaoke Version" - }, - { - "title": "Flower Shops - Morgan Wallen & Ernest", - "id": "Karaoke Version" - }, - { - "title": "Can't Help Falling in Love - Haley Reinhart", - "id": "Karaoke Version" - }, - { - "title": "My Way (live Elvis In Concert) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "The Joker and the Queen - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Fingers Crossed - Lauren Spencer-Smith", - "id": "Karaoke Version" - }, - { - "title": "We Don't Talk About Bruno - Encanto (film)", - "id": "Karaoke Version" - }, - { - "title": "Sacrifice - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "The Family Madrigal - Encanto (film)", - "id": "Karaoke Version" - }, - { - "title": "Save Me - Jelly Roll", - "id": "Karaoke Version" - }, - { - "title": "Gold Dust Woman - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Neon Moon - DJ Noiz & Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Easy On Me (with Chris Stapleton) - Adele", - "id": "Karaoke Version" - }, - { - "title": "Waving Through a Window - Dear Evan Hansen (musical)", - "id": "Karaoke Version" - }, - { - "title": "Surface Pressure - Encanto (film)", - "id": "Karaoke Version" - }, - { - "title": "I'm Not the Only One - Sam Smith", - "id": "Karaoke Version" - }, - { - "title": "You Broke Up With Me - Walker Hayes", - "id": "Karaoke Version" - }, - { - "title": "Can't Help Falling in Love - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "What Else Can I Do? - Encanto", - "id": "Karaoke Version" - }, - { - "title": "Photograph - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Doin' This - Luke Combs", - "id": "Karaoke Version" - }, - { - "title": "Waiting on a Miracle - Encanto (film) (Stephanie Beatriz)", - "id": "Karaoke Version" - }, - { - "title": "Golden Girls (Thank You for Being a Friend) - Cynthia Fee", - "id": "Karaoke Version" - }, - { - "title": "Just A Girl - No Doubt", - "id": "Karaoke Version" - }, - { - "title": "Que je t'aime - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "The Middle - Jimmy Eat World", - "id": "Karaoke Version" - }, - { - "title": "Pokรฉmon (Attrapez-les tous !) - Pokรฉmon", - "id": "Karaoke Version" - }, - { - "title": "Wagon Wheel - Old Crow Medicine Show", - "id": "Karaoke Version" - }, - { - "title": "Black Velvet - Alannah Myles", - "id": "Karaoke Version" - }, - { - "title": "I Drink Wine - Adele", - "id": "Karaoke Version" - }, - { - "title": "Kiss an Angel Good Mornin' - Charley Pride", - "id": "Karaoke Version" - }, - { - "title": "Il avait les mots - Sheryfa Luna", - "id": "Karaoke Version" - }, - { - "title": "To Make You Feel My Love - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "Tequila Little Time - Jon Pardi", - "id": "Karaoke Version" - }, - { - "title": "Fancy Like (feat. Kesha) - Walker Hayes", - "id": "Karaoke Version" - }, - { - "title": "Oh My God - Adele", - "id": "Karaoke Version" - }, - { - "title": "La maladie d'amour - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Je vole - Louane", - "id": "Karaoke Version" - }, - { - "title": "Et si tu n'existais pas - Joe Dassin", - "id": "Karaoke Version" - }, - { - "title": "Ghost - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Abcdefu - Gayle", - "id": "Karaoke Version" - }, - { - "title": "Heartbreak Anniversary - GIVON", - "id": "Karaoke Version" - }, - { - "title": "Comme d'habitude - Claude Franรงois", - "id": "Karaoke Version" - }, - { - "title": "Diego libre dans sa tรชte (live) - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "Couleur menthe ร  l'eau - Eddy Mitchell", - "id": "Karaoke Version" - }, - { - "title": "Ella, elle l'a - France Gall", - "id": "Karaoke Version" - }, - { - "title": "New Rules - Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "Enemy - Arcane & Imagine Dragons & JID", - "id": "Karaoke Version" - }, - { - "title": "Pepas - Farruko", - "id": "Karaoke Version" - }, - { - "title": "Daddy Cool - Boney M.", - "id": "Karaoke Version" - }, - { - "title": "Hips Don't Lie - Shakira & Wyclef Jean", - "id": "Karaoke Version" - }, - { - "title": "Il jouait du piano debout - France Gall", - "id": "Karaoke Version" - }, - { - "title": "Halo - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bell Rock - Brenda Lee", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bell Rock - Bobby Helms", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow! Let It Snow! Let It Snow! - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas - Ed Sheeran & Elton John", - "id": "Karaoke Version" - }, - { - "title": "Navidad, Navidad - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Stille Nacht, Heilige Nacht - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Petite Marie - Francis Cabrel", - "id": "Karaoke Version" - }, - { - "title": "Little Drummer Boy - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Rudolph The Red-Nosed Reindeer (live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Silver Bells - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Blue Christmas - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Overpass Graffiti - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Je l'aime ร  mourir - Francis Cabrel", - "id": "Karaoke Version" - }, - { - "title": "Industry Baby - Lil Nas X & Jack Harlow", - "id": "Karaoke Version" - }, - { - "title": "Woman - Doja Cat", - "id": "Karaoke Version" - }, - { - "title": "La java de Broadway - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "Fuck Her Gently - Tenacious D", - "id": "Karaoke Version" - }, - { - "title": "Aรฏcha - Khaled", - "id": "Karaoke Version" - }, - { - "title": "Les lacs du Connemara - Michel Sardou", - "id": "Karaoke Version" - }, - { - "title": "A Holly Jolly Christmas - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Haven't Met You Yet - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Silver Bells - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "O Tannenbaum - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Bing Crosby", - "id": "Karaoke Version" - }, - { - "title": "Creep (acoustic) - Radiohead", - "id": "Karaoke Version" - }, - { - "title": "Rudolph The Red-Nosed Reindeer - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "I Want a Hippopotamus for Christmas - Joanie Bartels", - "id": "Karaoke Version" - }, - { - "title": "Landslide - The Chicks", - "id": "Karaoke Version" - }, - { - "title": "Leather And Lace - Stevie Nicks & Don Henley", - "id": "Karaoke Version" - }, - { - "title": "Rudolph the Red-nosed Reindeer - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Comme un homme - Mulan", - "id": "Karaoke Version" - }, - { - "title": "Country Roads (Take Me Home) - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "Paroles, paroles - Dalida & Alain Delon", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Thank You for Being a Friend - Andrew Gold", - "id": "Karaoke Version" - }, - { - "title": "Thank You - Dido", - "id": "Karaoke Version" - }, - { - "title": "This Must Be The Place (Naive Melody) - Talking Heads", - "id": "Karaoke Version" - }, - { - "title": "Thank U, Next - Ariana Grande", - "id": "Karaoke Version" - }, - { - "title": "Biscuits - Kacey Musgraves", - "id": "Karaoke Version" - }, - { - "title": "Uprising - Muse", - "id": "Karaoke Version" - }, - { - "title": "After All - Elton John & Charlie Puth", - "id": "Karaoke Version" - }, - { - "title": "Buy Dirt - Jordan Davis & Luke Bryan", - "id": "Karaoke Version" - }, - { - "title": "When I Grow Up - The Pussycat Dolls", - "id": "Karaoke Version" - }, - { - "title": "You Are the Reason (Duet with Leona Lewis) - Calum Scott", - "id": "Karaoke Version" - }, - { - "title": "Need to Know - Doja Cat", - "id": "Karaoke Version" - }, - { - "title": "Duality - Slipknot", - "id": "Karaoke Version" - }, - { - "title": "Lost in the Woods - Frozen 2 (Jonathan Groff)", - "id": "Karaoke Version" - }, - { - "title": "I Look to You - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Could You Be Loved - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "Lalisa - Lisa (Lalisa Manobal, )", - "id": "Karaoke Version" - }, - { - "title": "Lucky - Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "Donโ€™t Shut Me Down - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Before He Cheats - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Stuck in the Middle with You - Stealers Wheel", - "id": "Karaoke Version" - }, - { - "title": "Memories - David Guetta & Kid Cudi", - "id": "Karaoke Version" - }, - { - "title": "Love Is Wicked - Brick & Lace", - "id": "Karaoke Version" - }, - { - "title": "My Universe - Coldplay & BTS", - "id": "Karaoke Version" - }, - { - "title": "Wicked Game - Chris Isaak", - "id": "Karaoke Version" - }, - { - "title": "The Banana Boat Song (Day-O) - Harry Belafonte", - "id": "Karaoke Version" - }, - { - "title": "Evil Ways - Santana", - "id": "Karaoke Version" - }, - { - "title": "Disturbia - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Dragula - Rob Zombie", - "id": "Karaoke Version" - }, - { - "title": "As Long as You Love Me - Backstreet Boys", - "id": "Karaoke Version" - }, - { - "title": "Redemption Song - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "Easy on Me - Adele", - "id": "Karaoke Version" - }, - { - "title": "Halley's Comet - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "All I Know So Far - Pink", - "id": "Karaoke Version" - }, - { - "title": "Since U Been Gone - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Annie's Song - John Denver", - "id": "Karaoke Version" - }, - { - "title": "Peaches - Justin Bieber & Daniel Caesar & Giveon", - "id": "Karaoke Version" - }, - { - "title": "Am I That Easy to Forget - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Boombayah () - Blackpink ()", - "id": "Karaoke Version" - }, - { - "title": "I Still Have Faith in You - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Shivers - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Ashes - Cรฉline Dion (Deapool 2)", - "id": "Karaoke Version" - }, - { - "title": "Jealousy, Jealousy - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "Delilah - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "Glory Box - Portishead", - "id": "Karaoke Version" - }, - { - "title": "Whiskey Glasses - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "Butter - BTS ()", - "id": "Karaoke Version" - }, - { - "title": "Tribute - Tenacious D", - "id": "Karaoke Version" - }, - { - "title": "Happier Than Ever - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Bed of Roses - Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "Cold Heart (PNAU remix) - Dua Lipa & Elton John", - "id": "Karaoke Version" - }, - { - "title": "Everybody (Backstreet's Back) - Backstreet Boys", - "id": "Karaoke Version" - }, - { - "title": "Can't Feel My Face - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "Die From a Broken Heart - Maddie & Tae", - "id": "Karaoke Version" - }, - { - "title": "Attention - Charlie Puth", - "id": "Karaoke Version" - }, - { - "title": "When You Were Young - The Killers", - "id": "Karaoke Version" - }, - { - "title": "Fancy Like - Walker Hayes", - "id": "Karaoke Version" - }, - { - "title": "Crazy - Gnarls Barkley", - "id": "Karaoke Version" - }, - { - "title": "Take My Breath - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "Permission to Dance - BTS ()", - "id": "Karaoke Version" - }, - { - "title": "Footsteps in the Dark (part 1 & 2) - The Isley Brothers", - "id": "Karaoke Version" - }, - { - "title": "Visiting Hours (live) - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Lost Boy - Ruth B.", - "id": "Karaoke Version" - }, - { - "title": "Side to Side - Ariana Grande & Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "Heaven - Kane Brown", - "id": "Karaoke Version" - }, - { - "title": "Favorite Crime - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "Feel Good Inc. - Gorillaz", - "id": "Karaoke Version" - }, - { - "title": "Three Little Birds - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "As the World Caves in - Sarah Cothran", - "id": "Karaoke Version" - }, - { - "title": "Flashlight - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "Party Rock Anthem - LMFAO & Lauren Bennett & Goon Rock", - "id": "Karaoke Version" - }, - { - "title": "Kiss Me More - Doja Cat & SZA", - "id": "Karaoke Version" - }, - { - "title": "Summer - Calvin Harris", - "id": "Karaoke Version" - }, - { - "title": "Stay - The Kid Laroi & Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Is This Love - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "Bad Habits - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Sexy And I Know It - LMFAO", - "id": "Karaoke Version" - }, - { - "title": "Happier - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "Beggin' - Mรฅneskin", - "id": "Karaoke Version" - }, - { - "title": "Somebody Told Me - The Killers", - "id": "Karaoke Version" - }, - { - "title": "Livin' on Love - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Mr. Brightside - The Killers", - "id": "Karaoke Version" - }, - { - "title": "Traitor - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "Come Undone - Duran Duran", - "id": "Karaoke Version" - }, - { - "title": "All Along the Watchtower - Jimi Hendrix", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Be Your Slave - Mรฅneskin", - "id": "Karaoke Version" - }, - { - "title": "Hey Brother - Avicii", - "id": "Karaoke Version" - }, - { - "title": "Thank God I'm a Country Boy - John Denver", - "id": "Karaoke Version" - }, - { - "title": "Good 4 U - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "On My Way - Brother Bear (Phil Collins)", - "id": "Karaoke Version" - }, - { - "title": "Astronaut in the Ocean - Masked Wolf", - "id": "Karaoke Version" - }, - { - "title": "She Loves You - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "POV - Ariana Grande", - "id": "Karaoke Version" - }, - { - "title": "One Call Away - Charlie Puth", - "id": "Karaoke Version" - }, - { - "title": "Anywhere Away from Here - Rag'n'Bone Man & Pink", - "id": "Karaoke Version" - }, - { - "title": "Leave a Light On - Tom Walker", - "id": "Karaoke Version" - }, - { - "title": "Shy Away - Twenty One Pilots", - "id": "Karaoke Version" - }, - { - "title": "Thunder - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "She Wolf (Falling to Pieces) - David Guetta & Sia", - "id": "Karaoke Version" - }, - { - "title": "Hold the Line - Toto", - "id": "Karaoke Version" - }, - { - "title": "Famous Friends - Chris Young & Kane Brown", - "id": "Karaoke Version" - }, - { - "title": "Your Love - The Outfield", - "id": "Karaoke Version" - }, - { - "title": "Save Your Tears (remix) - The Weeknd & Ariana Grande", - "id": "Karaoke Version" - }, - { - "title": "Love Again - Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "You Are Not Alone - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Follow You - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Higher Power - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "In My Life - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Voilร  - Barbara Pravi", - "id": "Karaoke Version" - }, - { - "title": "Picture - Kid Rock & Sheryl Crow", - "id": "Karaoke Version" - }, - { - "title": "Up - Cardi B", - "id": "Karaoke Version" - }, - { - "title": "Beautiful - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "Your Power - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Livin' La Vida Loca - Ricky Martin", - "id": "Karaoke Version" - }, - { - "title": "Something Just Like This - The Chainsmokers & Coldplay", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Seeing You - Billie Holiday", - "id": "Karaoke Version" - }, - { - "title": "The Pretender - Foo Fighters", - "id": "Karaoke Version" - }, - { - "title": "Hey Ya! (Radio Mix - Club Mix) - OutKast", - "id": "Karaoke Version" - }, - { - "title": "Loyal Brave True - Mulan (2020 film) (Christina Aguilera)", - "id": "Karaoke Version" - }, - { - "title": "The Scientist - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Mistakes - Maroon 5 & Megan Thee Stallion", - "id": "Karaoke Version" - }, - { - "title": "The Unforgiven - Metallica", - "id": "Karaoke Version" - }, - { - "title": "How You Like That - Blackpink ()", - "id": "Karaoke Version" - }, - { - "title": "No One - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "Paradise - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Liar - Beyoncรฉ & Shakira", - "id": "Karaoke Version" - }, - { - "title": "Deja Vu - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "The Good Ones - Gabby Barrett", - "id": "Karaoke Version" - }, - { - "title": "Black Magic - Little Mix", - "id": "Karaoke Version" - }, - { - "title": "Bury a Friend - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Some Things Never Change - Frozen 2", - "id": "Karaoke Version" - }, - { - "title": "Cover Me Up - Morgan Wallen", - "id": "Karaoke Version" - }, - { - "title": "Waka Waka (This Time for Africa) - Shakira & Freshlyground", - "id": "Karaoke Version" - }, - { - "title": "Moon River - Audrey Hepburn (Breakfast at Tiffany's)", - "id": "Karaoke Version" - }, - { - "title": "All the Things She Said - t.A.T.u.", - "id": "Karaoke Version" - }, - { - "title": "La Bicicleta - Carlos Vives & Shakira", - "id": "Karaoke Version" - }, - { - "title": "Without You - The Kid Laroi", - "id": "Karaoke Version" - }, - { - "title": "Montero (Call Me By Your Name) (Satan's Extended Version) - Lil Nas X", - "id": "Karaoke Version" - }, - { - "title": "Cover Me in Sunshine - Pink & Willow Sage Hart", - "id": "Karaoke Version" - }, - { - "title": "Born This Way - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Vida de Rico - Camilo", - "id": "Karaoke Version" - }, - { - "title": "Lose Yourself - Eminem (8 Mile)", - "id": "Karaoke Version" - }, - { - "title": "One - Metallica", - "id": "Karaoke Version" - }, - { - "title": "Video Games - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "Whenever, Wherever - Shakira", - "id": "Karaoke Version" - }, - { - "title": "Comment est ta peine ? - Benjamin Biolay", - "id": "Karaoke Version" - }, - { - "title": "Good Time - Niko Moon", - "id": "Karaoke Version" - }, - { - "title": "Evermore - Beauty and the Beast (2017 film) (Josh Groban)", - "id": "Karaoke Version" - }, - { - "title": "Enter Sandman - Metallica", - "id": "Karaoke Version" - }, - { - "title": "Fly Away - Tones and I", - "id": "Karaoke Version" - }, - { - "title": "Long Tall Sally - Little Richard", - "id": "Karaoke Version" - }, - { - "title": "Stand By Me - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Nothing Else Matters - Metallica", - "id": "Karaoke Version" - }, - { - "title": "Wonderwall - Oasis", - "id": "Karaoke Version" - }, - { - "title": "What's Up? - 4 Non Blondes", - "id": "Karaoke Version" - }, - { - "title": "My Way - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "City of Stars - La La Land", - "id": "Karaoke Version" - }, - { - "title": "HUMBLE. - Kendrick Lamar", - "id": "Karaoke Version" - }, - { - "title": "Lonely - Justin Bieber & benny blanco", - "id": "Karaoke Version" - }, - { - "title": "The Power of Prayer - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Drunk (And I Don't Wanna to Go Home) - Elle King & Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "If I Were a Boy - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Ddu-Du Ddu-Du () - Blackpink ()", - "id": "Karaoke Version" - }, - { - "title": "Rรฉsiste - France Gall", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop the Music - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Try - Pink", - "id": "Karaoke Version" - }, - { - "title": "Remember the Time - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Shiny - Moana (Jemaine Clement)", - "id": "Karaoke Version" - }, - { - "title": "Mood - 24kGoldn & Iann Dior", - "id": "Karaoke Version" - }, - { - "title": "One Drop - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "Sunny - Boney M.", - "id": "Karaoke Version" - }, - { - "title": "I Should Probably Go to Bed - Dan + Shay", - "id": "Karaoke Version" - }, - { - "title": "Rasputin - Boney M.", - "id": "Karaoke Version" - }, - { - "title": "Minimum Wage - Blake Shelton", - "id": "Karaoke Version" - }, - { - "title": "Shotgun - George Ezra", - "id": "Karaoke Version" - }, - { - "title": "Love on the Brain - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Somebody That I Used to Know - Gotye & Kimbra", - "id": "Karaoke Version" - }, - { - "title": "What's Love Got to Do with It - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "It's My Life - Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "Landslide - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Undivided - Tim McGraw & Tyler Hubbard", - "id": "Karaoke Version" - }, - { - "title": "Drivers License - Olivia Rodrigo", - "id": "Karaoke Version" - }, - { - "title": "Supalonely - Benee & Gus Dapperton", - "id": "Karaoke Version" - }, - { - "title": "Gravity - Sara Bareilles", - "id": "Karaoke Version" - }, - { - "title": "Fever - Dua Lipa & Angรจle", - "id": "Karaoke Version" - }, - { - "title": "Oops!... I Did It Again - Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "Addicted to You - Avicii & Audra Mae", - "id": "Karaoke Version" - }, - { - "title": "All I Want - High School Musical: The Musical: The Series", - "id": "Karaoke Version" - }, - { - "title": "Bye, Bye, Bye - NSYNC", - "id": "Karaoke Version" - }, - { - "title": "Show Me Around - Carly Pearce", - "id": "Karaoke Version" - }, - { - "title": "Zero to Hero - Hercules (1997 film)", - "id": "Karaoke Version" - }, - { - "title": "Bluebird - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Afterglow - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Save Your Tears - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "Try Everything - Zootopia (Shakira)", - "id": "Karaoke Version" - }, - { - "title": "Put Your Head on My Shoulder - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "WAP - Cardi B & Megan Thee Stallion", - "id": "Karaoke Version" - }, - { - "title": "Lady - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Prisoner - Miley Cyrus & Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "In Your Eyes - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "Titanium - David Guetta & Sia", - "id": "Karaoke Version" - }, - { - "title": "Take My Breath Away - Top Gun (Berlin)", - "id": "Karaoke Version" - }, - { - "title": "7 Years - Lukas Graham", - "id": "Karaoke Version" - }, - { - "title": "I Saw Her Standing There - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Faithfully - Journey", - "id": "Karaoke Version" - }, - { - "title": "Speechless (Full) - Aladdin (2019 film) (Naomi Scott)", - "id": "Karaoke Version" - }, - { - "title": "You've Got a Friend in Me - Toy Story (Randy Newman)", - "id": "Karaoke Version" - }, - { - "title": "Falling - Harry Styles", - "id": "Karaoke Version" - }, - { - "title": "Bang! - AJR", - "id": "Karaoke Version" - }, - { - "title": "10,000 Hours - Dan + Shay & Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Closer - The Chainsmokers & Halsey", - "id": "Karaoke Version" - }, - { - "title": "Monster - Shawn Mendes & Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Be Prepared - The Lion King (1994 film)", - "id": "Karaoke Version" - }, - { - "title": "Dynamite - BTS ()", - "id": "Karaoke Version" - }, - { - "title": "I Hope - Gabby Barrett", - "id": "Karaoke Version" - }, - { - "title": "Pour que tu m'aimes encore - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Idontwannabeyouanymore - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "I Kissed a Girl - Katy Perry", - "id": "Karaoke Version" - }, - { - "title": "I Don't Care - Ed Sheeran & Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Can't Hold Us - Macklemore & Ryan Lewis & Ray Dalton", - "id": "Karaoke Version" - }, - { - "title": "24K Magic - Bruno Mars", - "id": "Karaoke Version" - }, - { - "title": "Miss You Most (At Christmas Time) - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Snowman - Sia", - "id": "Karaoke Version" - }, - { - "title": "You Make It Feel Like Christmas - Gwen Stefani & Blake Shelton", - "id": "Karaoke Version" - }, - { - "title": "Silver Bells - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Fairytale of New York - The Pogues & Kirsty MacColl", - "id": "Karaoke Version" - }, - { - "title": "Santa Tell Me - Ariana Grande", - "id": "Karaoke Version" - }, - { - "title": "A Holly Jolly Christmas - Rudolph the Red-Nosed Reindeer", - "id": "Karaoke Version" - }, - { - "title": "Underneath the Tree - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Forever After All - Luke Combs", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Carrie Underwood & John Legend", - "id": "Karaoke Version" - }, - { - "title": "Hot for Teacher - Van Halen", - "id": "Karaoke Version" - }, - { - "title": "Rudolph the Red-nosed Reindeer - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Levitating - Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "Holly Jolly Christmas - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Into the Unknown (Panic! at the Disco) - Frozen 2", - "id": "Karaoke Version" - }, - { - "title": "Heart-Shaped Box - Nirvana", - "id": "Karaoke Version" - }, - { - "title": "One and Only - Adele", - "id": "Karaoke Version" - }, - { - "title": "My Future - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Country Bumpkin - Cal Smith", - "id": "Karaoke Version" - }, - { - "title": "Give A Little Bit - Goo Goo Dolls", - "id": "Karaoke Version" - }, - { - "title": "Sweet Seasons - Carole King", - "id": "Karaoke Version" - }, - { - "title": "Thankful - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Coat of Many Colors - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "Dream On - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "Hot N Cold - Katy Perry", - "id": "Karaoke Version" - }, - { - "title": "Footloose - Footloose (1984 film)", - "id": "Karaoke Version" - }, - { - "title": "Sugar - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Never Let Me Down Again - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Wanted Dead or Alive - Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "You're Welcome - Moana", - "id": "Karaoke Version" - }, - { - "title": "L'homme pressรฉ - Noir Dรฉsir", - "id": "Karaoke Version" - }, - { - "title": "Losing My Religion - R.E.M.", - "id": "Karaoke Version" - }, - { - "title": "Sex on Fire - Kings of Leon", - "id": "Karaoke Version" - }, - { - "title": "Break of Dawn - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Hopelessly Devoted to You - Grease (film)", - "id": "Karaoke Version" - }, - { - "title": "Dreams - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Savage - Megan Thee Stallion", - "id": "Karaoke Version" - }, - { - "title": "The World We Knew (Over and Over) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "She Wolf - Shakira", - "id": "Karaoke Version" - }, - { - "title": "Addams Groove - MC Hammer", - "id": "Karaoke Version" - }, - { - "title": "The Witch Queen of New Orleans - Redbone", - "id": "Karaoke Version" - }, - { - "title": "Feed Me (Git It) - Little Shop of Horrors (film)", - "id": "Karaoke Version" - }, - { - "title": "Misled - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "It's a Jungle Out There! - Randy Newman (Monk)", - "id": "Karaoke Version" - }, - { - "title": "Inner City Blues (Make Me Wanna Holler) - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Our Paths May Never Cross - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Bruxelles - Boulevard Des Airs", - "id": "Karaoke Version" - }, - { - "title": "You'll be Back - Hamilton", - "id": "Karaoke Version" - }, - { - "title": "Jerusalema - Master KG feat. Nomcebo Zikode", - "id": "Karaoke Version" - }, - { - "title": "One Moment In Time - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "My Boy - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Spirit - The Lion King (2019 film) (Beyoncรฉ)", - "id": "Karaoke Version" - }, - { - "title": "Born Here Live Here Die Here - Luke Bryan", - "id": "Karaoke Version" - }, - { - "title": "Started From The Bottom - Drake", - "id": "Karaoke Version" - }, - { - "title": "Chop Suey! - System of a Down", - "id": "Karaoke Version" - }, - { - "title": "Hero - Enrique Iglesias", - "id": "Karaoke Version" - }, - { - "title": "Call Me Maybe - Carly Rae Jepsen", - "id": "Karaoke Version" - }, - { - "title": "La grenade - Clara Luciani", - "id": "Karaoke Version" - }, - { - "title": "You're the One That I Want - Grease (film)", - "id": "Karaoke Version" - }, - { - "title": "Hurt - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "You Are the Reason - Calum Scott", - "id": "Karaoke Version" - }, - { - "title": "Savage Love (Laxed โ€“ Siren Beat) - Jason Derulo & Jawsh 685", - "id": "Karaoke Version" - }, - { - "title": "Angels - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Believer - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "I Want It That Way - Backstreet Boys", - "id": "Karaoke Version" - }, - { - "title": "Rockstar - DaBaby & Roddy Ricch", - "id": "Karaoke Version" - }, - { - "title": "Kid - Eddy de Pretto", - "id": "Karaoke Version" - }, - { - "title": "Livin' on a Prayer - Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "Glory - John Legend & Common", - "id": "Karaoke Version" - }, - { - "title": "Girl Crush - Little Big Town", - "id": "Karaoke Version" - }, - { - "title": "Conmigo - Kendji Girac", - "id": "Karaoke Version" - }, - { - "title": "Say So - Doja Cat", - "id": "Karaoke Version" - }, - { - "title": "In Case You Didn't Know - Brett Young", - "id": "Karaoke Version" - }, - { - "title": "Believe - Cher", - "id": "Karaoke Version" - }, - { - "title": "You Say - Lauren Daigle", - "id": "Karaoke Version" - }, - { - "title": "Ain't Got No, I Got Life - Nina Simone", - "id": "Karaoke Version" - }, - { - "title": "Rebel Yell - Billy Idol", - "id": "Karaoke Version" - }, - { - "title": "Take Me to Church - Hozier", - "id": "Karaoke Version" - }, - { - "title": "Jackson - Johnny Cash & June Carter Cash", - "id": "Karaoke Version" - }, - { - "title": "The Real Slim Shady - Eminem", - "id": "Karaoke Version" - }, - { - "title": "Toxic - Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "Make You Feel My Love - Adele", - "id": "Karaoke Version" - }, - { - "title": "Freedom - Beyoncรฉ & Kendrick Lamar", - "id": "Karaoke Version" - }, - { - "title": "I'm Yours - Jason Mraz", - "id": "Karaoke Version" - }, - { - "title": "Before You Go - Lewis Capaldi", - "id": "Karaoke Version" - }, - { - "title": "Young, Dumb & Broke - Khalid", - "id": "Karaoke Version" - }, - { - "title": "Cocaine - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "All of Me - John Legend", - "id": "Karaoke Version" - }, - { - "title": "Shape of You - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "La baie - Clara Luciani", - "id": "Karaoke Version" - }, - { - "title": "I'll Make a Man Out of You - Mulan (Donny Osmond)", - "id": "Karaoke Version" - }, - { - "title": "Walking on a Dream - Empire of the Sun", - "id": "Karaoke Version" - }, - { - "title": "Love Me Tender - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "...Baby One More Time - Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "The Best - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Balance ton quoi - Angรจle", - "id": "Karaoke Version" - }, - { - "title": "Wagon Wheel - Darius Rucker", - "id": "Karaoke Version" - }, - { - "title": "That's The Way It Is - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Alice - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Show Yourself - Frozen 2", - "id": "Karaoke Version" - }, - { - "title": "X - Jonas Brothers & Karol G", - "id": "Karaoke Version" - }, - { - "title": "This is America - Childish Gambino", - "id": "Karaoke Version" - }, - { - "title": "Never Worn White - Katy Perry", - "id": "Karaoke Version" - }, - { - "title": "Despacito - Luis Fonsi & Daddy Yankee", - "id": "Karaoke Version" - }, - { - "title": "Creep - Radiohead", - "id": "Karaoke Version" - }, - { - "title": "Champagne Night - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Thrift Shop - Macklemore & Ryan Lewis & Wanz", - "id": "Karaoke Version" - }, - { - "title": "Easy Lover - Phil Collins & Philip Bailey", - "id": "Karaoke Version" - }, - { - "title": "Rien ร  jeter - Georges Brassens", - "id": "Karaoke Version" - }, - { - "title": "A Million Dreams - The Greatest Showman: Reimagined (Pink)", - "id": "Karaoke Version" - }, - { - "title": "Hello - Lionel Richie", - "id": "Karaoke Version" - }, - { - "title": "Always Remember Us This Way - A Star is Born (Lady Gaga)", - "id": "Karaoke Version" - }, - { - "title": "Party in the U.S.A. - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Djadja - Aya Nakamura", - "id": "Karaoke Version" - }, - { - "title": "How Far I'll Go - Moana (Alessia Cara)", - "id": "Karaoke Version" - }, - { - "title": "What a Wonderful World - Louis Armstrong", - "id": "Karaoke Version" - }, - { - "title": "The Star-Spangled Banner - Anthem", - "id": "Karaoke Version" - }, - { - "title": "Old Town Road (Single Version) - Lil Nas X", - "id": "Karaoke Version" - }, - { - "title": "La tribu de Dana - Manau", - "id": "Karaoke Version" - }, - { - "title": "Juicy - The Notorious B.I.G.", - "id": "Karaoke Version" - }, - { - "title": "Smells Like Teen Spirit - Nirvana", - "id": "Karaoke Version" - }, - { - "title": "Kill This Love - Blackpink ()", - "id": "Karaoke Version" - }, - { - "title": "Rain on Me - Lady Gaga & Ariana Grande", - "id": "Karaoke Version" - }, - { - "title": "Truth Hurts - Lizzo", - "id": "Karaoke Version" - }, - { - "title": "Send Me Some Lovin' - Little Richard", - "id": "Karaoke Version" - }, - { - "title": "A Million Dreams - The Greatest Showman", - "id": "Karaoke Version" - }, - { - "title": "Six Feet Apart - Luke Combs", - "id": "Karaoke Version" - }, - { - "title": "Boy With Luv - BTS & Halsey", - "id": "Karaoke Version" - }, - { - "title": "Stuck With U - Ariana Grande & Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Someone Like You - Adele", - "id": "Karaoke Version" - }, - { - "title": "On va s'aimer - Gilbert Montagnรฉ", - "id": "Karaoke Version" - }, - { - "title": "Africa - Toto", - "id": "Karaoke Version" - }, - { - "title": "The Time of My Life - Dirty Dancing", - "id": "Karaoke Version" - }, - { - "title": "God's Plan - Drake", - "id": "Karaoke Version" - }, - { - "title": "Physical - Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "Fly Me to the Moon (Uptempo) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Highway to Hell - AC/DC", - "id": "Karaoke Version" - }, - { - "title": "Uptown Funk - Bruno Mars & Mark Ronson", - "id": "Karaoke Version" - }, - { - "title": "How Far I'll Go (Auli'i Cravalho) - Moana", - "id": "Karaoke Version" - }, - { - "title": "Seรฑorita - Shawn Mendes & Camila Cabello", - "id": "Karaoke Version" - }, - { - "title": "Can't Help Falling in Love - Elvis Presley (Blue Hawaii)", - "id": "Karaoke Version" - }, - { - "title": "We'll Meet Again - Vera Lynn & Roland Shaw And His Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Godzilla - Eminem & Juice WRLD", - "id": "Karaoke Version" - }, - { - "title": "Yummy - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Perfect - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Nobody But You - Blake Shelton & Gwen Stefani", - "id": "Karaoke Version" - }, - { - "title": "Goodbye - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Into the Unknown - Frozen 2 (Idina Menzel & AURORA)", - "id": "Karaoke Version" - }, - { - "title": "Main dans la main - Christophe", - "id": "Karaoke Version" - }, - { - "title": "Take Me Home, Country Roads - John Denver", - "id": "Karaoke Version" - }, - { - "title": "Taki Taki - DJ Snake & Selena Gomez, Ozuna & Cardi B", - "id": "Karaoke Version" - }, - { - "title": "Someone You Loved - Lewis Capaldi", - "id": "Karaoke Version" - }, - { - "title": "Don't Start Now - Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "ร€ nos hรฉros du quotidien - Soprano", - "id": "Karaoke Version" - }, - { - "title": "Ocean Eyes - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Everything I Wanted - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Dance Monkey - Tones and I", - "id": "Karaoke Version" - }, - { - "title": "When the Party's Over - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "No Time to Die - James Bond (Billie Eilish)", - "id": "Karaoke Version" - }, - { - "title": "Circles - Post Malone", - "id": "Karaoke Version" - }, - { - "title": "Blinding Lights - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "Lovely - Billie Eilish & Khalid", - "id": "Karaoke Version" - }, - { - "title": "Old Town Road (remix) - Lil Nas X & Billy Ray Cyrus", - "id": "Karaoke Version" - }, - { - "title": "A Picture of Me (Without You) - Lorrie Morgan", - "id": "Karaoke Version" - }, - { - "title": "He's Got the Whole World in His Hands - The Tennessee Gospel Society", - "id": "Karaoke Version" - }, - { - "title": "Banana Pancakes - Jack Johnson", - "id": "Karaoke Version" - }, - { - "title": "Chasing Cars (live acoustic) - Snow Patrol", - "id": "Karaoke Version" - }, - { - "title": "Que reste-t-il de nos amours ? - Patrick Bruel & Laurent Voulzy (live)", - "id": "Karaoke Version" - }, - { - "title": "You're So Vain - Smokie", - "id": "Karaoke Version" - }, - { - "title": "On the Road Again - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Walking After Midnight - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "Mockingbird - Eminem", - "id": "Karaoke Version" - }, - { - "title": "John Deere Green - Joe Diffie", - "id": "Karaoke Version" - }, - { - "title": "Come Together - Across The Universe (film) (Joe Cocker)", - "id": "Karaoke Version" - }, - { - "title": "I Heard It Through the Grapevine - Michael McDonald", - "id": "Karaoke Version" - }, - { - "title": "Hello Dolly - Frank Sinatra & Count Basie Orchestra", - "id": "Karaoke Version" - }, - { - "title": "I'm in the Mood for Love - The Dualers", - "id": "Karaoke Version" - }, - { - "title": "Daddy Sang Bass - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Danny's Song - Kenny Loggins", - "id": "Karaoke Version" - }, - { - "title": "Bรฉsame Mucho - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "All of Me - Eric Clapton & Paul McCartney", - "id": "Karaoke Version" - }, - { - "title": "Memories - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Just Dropped in - Kenny Rogers & The First Edition", - "id": "Karaoke Version" - }, - { - "title": "Let it Be Me - Collin Raye", - "id": "Karaoke Version" - }, - { - "title": "Solamente una vez - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "All I Do Is Dream of You - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "I'm Still Standing (live at Madison Square Garden) - Elton John", - "id": "Karaoke Version" - }, - { - "title": "It's the End of the World as We Know It (And I Feel Fine) - R.E.M.", - "id": "Karaoke Version" - }, - { - "title": "Celebration - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Mourir sur scรจne (live) - Les Enfoirรฉs", - "id": "Karaoke Version" - }, - { - "title": "Femmes... je vous aime (avec Vianney) - Julien Clerc", - "id": "Karaoke Version" - }, - { - "title": "Angel From Montgomery - John Prine", - "id": "Karaoke Version" - }, - { - "title": "La Bamba (live) - Belle Pรฉrez", - "id": "Karaoke Version" - }, - { - "title": "On the Street Where You Live - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Dance the Night Away (live) - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Queen Medley - Michael Ball & Alfie Boe", - "id": "Karaoke Version" - }, - { - "title": "Pickup Man - Joe Diffie", - "id": "Karaoke Version" - }, - { - "title": "Bring Him Home - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "The Power of Love - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Brown Eyed Girl - Billy Ray Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Third Rate Romance - Sammy Kershaw", - "id": "Karaoke Version" - }, - { - "title": "On a Slow Boat to China - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "The Wild Rover - Dropkick Murphys", - "id": "Karaoke Version" - }, - { - "title": "C'est magnifique - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Never Gonna Give You Up (pianoforte) - Rick Astley", - "id": "Karaoke Version" - }, - { - "title": "If I Could Turn Back Time - Luke Evans", - "id": "Karaoke Version" - }, - { - "title": "Chรจre amie (live La chanson secrรจte) - Clara Luciani", - "id": "Karaoke Version" - }, - { - "title": "Father Figure (MTV unplugged) - George Michael", - "id": "Karaoke Version" - }, - { - "title": "He Lives in You - The Lion King 2 (Lebo M.)", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good (live at the BBC) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "All I Have to Do is Dream - Bobby Darin & Petula Clark", - "id": "Karaoke Version" - }, - { - "title": "Me and Bobby McGee - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Shallow - Scary Pockets (Chris Mann & Alisan Porter)", - "id": "Karaoke Version" - }, - { - "title": "Halfway to Paradise - Ben E. King & Mark Knopfler", - "id": "Karaoke Version" - }, - { - "title": "Blame It on Your Heart - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Chandelier - Moulin Rouge! (musical)", - "id": "Karaoke Version" - }, - { - "title": "Lovers and Friends - Lil' Jon", - "id": "Karaoke Version" - }, - { - "title": "Woolly Bully - Bad Manners", - "id": "Karaoke Version" - }, - { - "title": "When I Come Around - Green Day", - "id": "Karaoke Version" - }, - { - "title": "I Won't Say (I'm in Love) (Movie Version) - Hercules (1997 film)", - "id": "Karaoke Version" - }, - { - "title": "Ooh Baby Baby - Smokey Robinson", - "id": "Karaoke Version" - }, - { - "title": "Love is All Around - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - The Kingdom Choir", - "id": "Karaoke Version" - }, - { - "title": "Rhinestone Cowboy - Bruce Springsteen (Western Stars)", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Father Figure (MTV Unplugged) - George Michael *", - "id": "uJzsPBMc8zY" - }, - { - "title": "Karaoke Lovers and Friends - Lil' Jon *", - "id": "tw2wAdt5IWw" - }, - { - "title": "Karaoke Stand By Me - The Kingdom Choir *", - "id": "1y7sTK-ETyo" - }, - { - "title": "Karaoke Love is All Around - Mike Denver *", - "id": "ZXqL5im-pVg" - }, - { - "title": "Karaoke If I Could Turn Back Time - Luke Evans *", - "id": "O7kJen1gJnc" - }, - { - "title": "Karaoke Rhinestone Cowboy - Bruce Springsteen (Western Stars) *", - "id": "K43BlOOdIn0" - }, - { - "title": "Karaoke When I Come Around - Green Day *", - "id": "FaHWwW0sjnc" - }, - { - "title": "Karaoke Blame it on Your Heart - The Mavericks *", - "id": "vdHMHTdasLo" - }, - { - "title": "Karaoke I Won't Say (I'm in Love) (Movie Version) - *", - "id": "6ySRyFMikY4" - }, - { - "title": "Killing Me Softly - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "Femme Like U - Back dans les bacs (Cล“ur de pirate)", - "id": "Karaoke Version" - }, - { - "title": "I Heard it Through the Grapevine - Amy Winehouse & Paul Weller (live)", - "id": "Karaoke Version" - }, - { - "title": "Me and Bobby McGee - Gordon Lightfoot", - "id": "Karaoke Version" - }, - { - "title": "Basique - Orelsan", - "id": "Karaoke Version" - }, - { - "title": "American Pie (live) - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "My Girl Lollipop (My Boy Lollipop) - Bad Manners", - "id": "Karaoke Version" - }, - { - "title": "Sad Lisa - Cat Stevens", - "id": "Karaoke Version" - }, - { - "title": "There's a Kind of Hush - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Requiem pour un fou (album Johnny) - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "You Can't Hurry Love - Garou", - "id": "Karaoke Version" - }, - { - "title": "It Takes Two - Robbie Williams & Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Je voudrais un bonhomme de neige - Frozen (2013 film)", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Scary Pockets & Charles Jones", - "id": "Karaoke Version" - }, - { - "title": "L'envie (album Johnny) - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "Bad Guy (with Justin Bieber) - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Old Flames Can't Hold a Candle to You - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Save the Last Dance for Me - The Cats", - "id": "Karaoke Version" - }, - { - "title": "Sleigh Ride - Idina Menzel", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Aaron Neville", - "id": "Karaoke Version" - }, - { - "title": "White Christmas (with London Symphony Orchestra) - Bing Crosby", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells (1957) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Sleigh Ride - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "It Goes Like It Goes - Jennifer Warnes", - "id": "Karaoke Version" - }, - { - "title": "Mr. Mysterious - Vanessa Amorosi & Seany B", - "id": "Karaoke Version" - }, - { - "title": "Llego a mi medianoche - Jazzy Christmas", - "id": "Karaoke Version" - }, - { - "title": "We Wish You a Merry Christmas - Pat Boone", - "id": "Karaoke Version" - }, - { - "title": "Silent Night (Give Love at Christmas) - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Oh Holy Night - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Ils s'aiment - Les Enfants du Top 50 (Brice Conrad)", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas (live) - Tom Gaebel & WDR Funkhausorchester", - "id": "Karaoke Version" - }, - { - "title": "We Need a Little Christmas - Johnny Mathis", - "id": "Karaoke Version" - }, - { - "title": "Fooled Around and Fell in Love - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Samyi luchshiy drug Russian version - Aladdin", - "id": "Karaoke Version" - }, - { - "title": "Drive - Casey James", - "id": "Karaoke Version" - }, - { - "title": "You've Got Your Troubles (I've Got Mine) - Jack Blanchard & Misty Morgan", - "id": "Karaoke Version" - }, - { - "title": "Breakin' Up - The Violent Femmes", - "id": "Karaoke Version" - }, - { - "title": "Lean On Me - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Monster - Paramore", - "id": "Karaoke Version" - }, - { - "title": "Lindo Arbol De Navidad - Jazzy Christmas", - "id": "Karaoke Version" - }, - { - "title": "All We Ever Find - Tim McGraw", - "id": "Karaoke Version" - }, - { - "title": "Aie confiance - The Jungle Book (1967 film) (Roger Carel)", - "id": "Karaoke Version" - }, - { - "title": "I Found a Million Dollar Baby - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Meet Me in St. Louis", - "id": "Karaoke Version" - }, - { - "title": "All I Want for Christmas Is You - Tom Gaebel", - "id": "Karaoke Version" - }, - { - "title": "All or Nothing at All - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Parce que c'est toi - Axelle Red", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Survival - Muse", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Feliz Navidad - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "In the Country - Cliff Richard & The Shadows", - "id": "Karaoke Version" - }, - { - "title": "Supercalifragilisticoespialidoso - Mary Poppins (film)", - "id": "Karaoke Version" - }, - { - "title": "Along Came Jones - Ray Stevens", - "id": "Karaoke Version" - }, - { - "title": "Little Drummer Boy - Susan Boyle & The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Hurts so Good - Nathan Carter & Lisa McHugh (live)", - "id": "Karaoke Version" - }, - { - "title": "Dreamin' - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "What You're Proposing - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "I Will Survive - Scary Pockets & Mario Jose", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Je voudrais dรฉjร  รชtre roi - The Lion King (2019 film)", - "id": "Karaoke Version" - }, - { - "title": "White Christmas (live 3rd Annual Christmas Special) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town (live) - Michael Bublรฉ & Ariana Grande", - "id": "Karaoke Version" - }, - { - "title": "Always - Harry Nilsson", - "id": "Karaoke Version" - }, - { - "title": "Angels We Have Heard on High - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "My Love (Acoustic) - Jess Glynne", - "id": "Karaoke Version" - }, - { - "title": "Hands to Heaven - Breathe", - "id": "Karaoke Version" - }, - { - "title": "Rolling in the Deep (live - at The Royal Albert Hall) - Adele", - "id": "Karaoke Version" - }, - { - "title": "You Were On My Mind - Crispian St. Peters", - "id": "Karaoke Version" - }, - { - "title": "Joy to the World - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Ciclo Sin Fin / Nants' Ingonyama - The Lion King (2019 film)", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Gwen Stefani", - "id": "Karaoke Version" - }, - { - "title": "I've Got My Love to Keep Me Warm - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Glorious - Andreas Johnson", - "id": "Karaoke Version" - }, - { - "title": "Some of These Days - Sophie Tucker", - "id": "Karaoke Version" - }, - { - "title": "Killing Me Softly (The Singer Live) - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "Yellow - Jodie Whittaker", - "id": "Karaoke Version" - }, - { - "title": "Carol of the Bells - Pentatonix", - "id": "Karaoke Version" - }, - { - "title": "My Immortal - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Better Together - Jack Johnson", - "id": "Karaoke Version" - }, - { - "title": "Ruby (Don't Take Your Love to Town) - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Baby, It's Cold Outside - Ella Fitzgerald & Louis Jordan", - "id": "Karaoke Version" - }, - { - "title": "Forever in Blue Jeans - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Fiesta Mexicana - Ross Antony", - "id": "Karaoke Version" - }, - { - "title": "Jump in the Line - Beetlejuice (musical)", - "id": "Karaoke Version" - }, - { - "title": "So Young - The Corrs", - "id": "Karaoke Version" - }, - { - "title": "Rico Suave - Gerardo", - "id": "Karaoke Version" - }, - { - "title": "Little Drummer Boy - Salsoul Orchestra", - "id": "Karaoke Version" - }, - { - "title": "You're Number One (In My Book) - Gladys Knight & The Pips", - "id": "Karaoke Version" - }, - { - "title": "Miss You Nights - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Denis (Denee) - Blondie", - "id": "Karaoke Version" - }, - { - "title": "Sleigh Ride - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Crawling Back to You - Daughtry", - "id": "Karaoke Version" - }, - { - "title": "Allegheny Moon - Patti Page", - "id": "Karaoke Version" - }, - { - "title": "Mother of Mine - Jimmy Osmond", - "id": "Karaoke Version" - }, - { - "title": "That's All - Jazz Standards", - "id": "Karaoke Version" - }, - { - "title": "I Had the Craziest Dream - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Creatures of the Night - Kiss", - "id": "Karaoke Version" - }, - { - "title": "Ich fange nie mehr was an einem Sonntag an - Oliver Haidt", - "id": "Karaoke Version" - }, - { - "title": "At Last - Ray Anthony", - "id": "Karaoke Version" - }, - { - "title": "September - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Fantastic Voyage - Coolio", - "id": "Karaoke Version" - }, - { - "title": "Dreams of the Everyday Housewife - Glen Campbell", - "id": "Karaoke Version" - }, - { - "title": "Kiss Me Goodbye - Petula Clark", - "id": "Karaoke Version" - }, - { - "title": "Shallow (live) - Lady Gaga (Grammy Awards)", - "id": "Karaoke Version" - }, - { - "title": "Shallow (Nesco Remix) - A Star is Born", - "id": "Karaoke Version" - }, - { - "title": "Shallow - A Star is Born (Lady Gaga & Bradley Cooper)", - "id": "Karaoke Version" - }, - { - "title": "Seasons of Love - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "C'est la fรชte - Beauty and the Beast (2017 film)", - "id": "Karaoke Version" - }, - { - "title": "Qu'est-ce qu'on attend pour รชtre heureux ? - Ray Ventura", - "id": "Karaoke Version" - }, - { - "title": "Esta noche es para amar - The Lion King", - "id": "Karaoke Version" - }, - { - "title": "Shallow - Sara'h", - "id": "Karaoke Version" - }, - { - "title": "It Don't Mean a Thing (If It Ain't Got That Swing) - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Sit Right Down and Write Myself a Letter - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Skip A Rope - Henson Cargill", - "id": "Karaoke Version" - }, - { - "title": "Fantastic Voyage - Lakeside", - "id": "Karaoke Version" - }, - { - "title": "You've Got a Friend - The Brand New Heavies", - "id": "Karaoke Version" - }, - { - "title": "Who Loves You - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "Ich Bin Verliebt In Die Liebe - Chris Roberts", - "id": "Karaoke Version" - }, - { - "title": "You and I (We Can Conquer the World) - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Baby Come Back - Pato Banton & UB40", - "id": "Karaoke Version" - }, - { - "title": "Love Hangover - Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "Nowhere to Run - Martha and the Vandellas", - "id": "Karaoke Version" - }, - { - "title": "Heart Full of Soul - The Yardbirds", - "id": "Karaoke Version" - }, - { - "title": "Mockingbird - Inez & Charlie Foxx", - "id": "Karaoke Version" - }, - { - "title": "It's All Coming Back to Me Now (45 edit) - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Hurricane - Bob Dylan", - "id": "Karaoke Version" - }, - { - "title": "Kayleigh - Marillion", - "id": "Karaoke Version" - }, - { - "title": "Papa Was A Rolling Stone (45 edit) - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "I Wonder Why - Curtis Stigers", - "id": "Karaoke Version" - }, - { - "title": "Rainy Day Woman - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "The Man with the Child in His Eyes - Kate Bush", - "id": "Karaoke Version" - }, - { - "title": "Le marchand de bonheur - Dario Moreno", - "id": "Karaoke Version" - }, - { - "title": "I'd Like to Teach the World to Sing - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Ich liebe das Leben (25 Jahre Remix) - Andrea Berg", - "id": "Karaoke Version" - }, - { - "title": "2000 Miles - The Pretenders", - "id": "Karaoke Version" - }, - { - "title": "Fading Like a Flower - Roxette", - "id": "Karaoke Version" - }, - { - "title": "Gotta Serve Somebody - Bob Dylan", - "id": "Karaoke Version" - }, - { - "title": "There's a Rainbow 'round My Shoulder - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Sleeping In My Car - Roxette", - "id": "Karaoke Version" - }, - { - "title": "Golden Brown - The Stranglers", - "id": "Karaoke Version" - }, - { - "title": "Auld Lang Syne - Mitch Miller", - "id": "Karaoke Version" - }, - { - "title": "Travellin' Light - Cliff Richard & The Shadows", - "id": "Karaoke Version" - }, - { - "title": "Waltzing Matilda - Slim Dusty", - "id": "Karaoke Version" - }, - { - "title": "When Johnny Comes Marching Home - American Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Lร -bas - Gรฉnรฉration Goldman (Marie-Mai & Baptiste Giabiconi)", - "id": "Karaoke Version" - }, - { - "title": "We Don't Have to Take Our Clothes Off - Jermaine Stewart", - "id": "Karaoke Version" - }, - { - "title": "Layla - Derek and the Dominos", - "id": "Karaoke Version" - }, - { - "title": "Tie Your Mother Down - Queen", - "id": "Karaoke Version" - }, - { - "title": "Life in a Northern Town - Sugarland", - "id": "Karaoke Version" - }, - { - "title": "Awesome God - Rich Mullins", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off of You - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Jazz Standards", - "id": "Karaoke Version" - }, - { - "title": "Love Foolosophy - Jamiroquai", - "id": "Karaoke Version" - }, - { - "title": "The One - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Hillbilly Rock - Marty Stuart", - "id": "Karaoke Version" - }, - { - "title": "Devil Gate Drive - Suzi Quatro", - "id": "Karaoke Version" - }, - { - "title": "Bad Love - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Karaoke I'll Be There For You You're All I Need To Get By - Method Man & Mary J. Blige *", - "id": "pqUSUdYHeUM" - }, - { - "title": "Fox on the Run - Sweet (band)", - "id": "Karaoke Version" - }, - { - "title": "Is She Really Going Out With Him? - Joe Jackson", - "id": "Karaoke Version" - }, - { - "title": "Hold Back the Night - The Trammps", - "id": "Karaoke Version" - }, - { - "title": "Talk to Me - Mickey Gilley", - "id": "Karaoke Version" - }, - { - "title": "With You I'm Born Again - Billy Preston & Syreeta Wright", - "id": "Karaoke Version" - }, - { - "title": "Some Girls - Racey", - "id": "Karaoke Version" - }, - { - "title": "It Don't Come Easy - Ringo Starr", - "id": "Karaoke Version" - }, - { - "title": "Pourvu qu'elles soient douces - Mylรจne Farmer", - "id": "Karaoke Version" - }, - { - "title": "All The Gold In California - Gatlin Brothers", - "id": "Karaoke Version" - }, - { - "title": "Herzilein - Die Wildecker Herzbuben", - "id": "Karaoke Version" - }, - { - "title": "Come On Over To My Place - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "There Goes My First Love - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Wake Up Alone - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Mr. Sandman - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Bachelor Boy - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "December - Collective Soul", - "id": "Karaoke Version" - }, - { - "title": "Paris Latino - Bandolero", - "id": "Karaoke Version" - }, - { - "title": "Can't Get Enough - Bad Company", - "id": "Karaoke Version" - }, - { - "title": "Just Fine - Mary J. Blige", - "id": "Karaoke Version" - }, - { - "title": "Fuck Me Pumps - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Rock Steady - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Rave On - Buddy Holly", - "id": "Karaoke Version" - }, - { - "title": "Elle a les yeux revolver - Les Enfants du Top 50 (John Mamann)", - "id": "Karaoke Version" - }, - { - "title": "Cry! Cry! Cry! - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Happiness - Ken Dodd", - "id": "Karaoke Version" - }, - { - "title": "Ascension (Don't Ever Wonder) - Maxwell", - "id": "Karaoke Version" - }, - { - "title": "A Different Corner - George Michael", - "id": "Karaoke Version" - }, - { - "title": "The Things We Do For Love - 10cc", - "id": "Karaoke Version" - }, - { - "title": "How Soon Is Now? - The Smiths", - "id": "Karaoke Version" - }, - { - "title": "Bye Bye Baby (Baby Goodbye) - Bay City Rollers", - "id": "Karaoke Version" - }, - { - "title": "We're All Alone - Rita Coolidge", - "id": "Karaoke Version" - }, - { - "title": "The Girl from Ipanema - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Crimson and Clover - Tommy James and The Shondells", - "id": "Karaoke Version" - }, - { - "title": "True Love - Bing Crosby & Grace Kelly", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Perry Como", - "id": "Karaoke Version" - }, - { - "title": "Paradise by the Dashboard Light - Meat Loaf & Ellen Foley", - "id": "Karaoke Version" - }, - { - "title": "The Look of Love - Dusty Springfield", - "id": "Karaoke Version" - }, - { - "title": "Your Heart Is as Black as Night - Joe Bonamassa & Beth Hart", - "id": "Karaoke Version" - }, - { - "title": "Swingin' - John Anderson", - "id": "Karaoke Version" - }, - { - "title": "Sur le pont d'Avignon - Comptine", - "id": "Karaoke Version" - }, - { - "title": "Do You Wanna Dance - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Shang-A-Lang - Bay City Rollers", - "id": "Karaoke Version" - }, - { - "title": "Donna - Ritchie Valens", - "id": "Karaoke Version" - }, - { - "title": "Rock and Roll Part Two (The Hey Song) - Gary Glitter", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - The Crystals", - "id": "Karaoke Version" - }, - { - "title": "Fool (If You Think It's Over) - Chris Rea", - "id": "Karaoke Version" - }, - { - "title": "Tougher Than the Rest - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "I Wish You Love - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Angela - Saian Supa Crew", - "id": "Karaoke Version" - }, - { - "title": "High - Lighthouse Family", - "id": "Karaoke Version" - }, - { - "title": "Back on the Chain Gang - The Pretenders", - "id": "Karaoke Version" - }, - { - "title": "The Last Farewell - Roger Whittaker", - "id": "Karaoke Version" - }, - { - "title": "It's So Hard To Say Goodbye To Yesterday - Boyz II Men", - "id": "Karaoke Version" - }, - { - "title": "Guess That's Why They Call It the Blues - Alessia Cara", - "id": "Karaoke Version" - }, - { - "title": "Don't Worry, Be Happy - Bobby McFerrin", - "id": "Karaoke Version" - }, - { - "title": "Dilemma - Nelly & Kelly Rowland", - "id": "Karaoke Version" - }, - { - "title": "Layla - Scary Pockets & Jacob Luttrell", - "id": "Karaoke Version" - }, - { - "title": "Bohemian Rhapsody (45 edit) - Queen", - "id": "Karaoke Version" - }, - { - "title": "Tulsa Time - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Karaoke L'hymne ร  l'amour / Non, je ne regrette rien - Johnny Hallyday & Sylvie Vartan *", - "id": "KiStnNszyL4" - }, - { - "title": "Ace In The Hole - George Strait", - "id": "Karaoke Version" - }, - { - "title": "You're My World - Cilla Black", - "id": "Karaoke Version" - }, - { - "title": "Step into Christmas - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Rooster - Alice in Chains", - "id": "Karaoke Version" - }, - { - "title": "Circle of Life - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Mele Kalikimaka - Bing Crosby & The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "Take a Bow - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Amazing Grace - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "I Wish It Could Be Christmas Everyday - Wizzard", - "id": "Karaoke Version" - }, - { - "title": "American Pie (45 version) - Don McLean", - "id": "Karaoke Version" - }, - { - "title": "Amarillo by Morning - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Hier encore - Charles Aznavour", - "id": "Karaoke Version" - }, - { - "title": "My Girl - Michael Bolton", - "id": "Karaoke Version" - }, - { - "title": "Timber - Pitbull & Kesha", - "id": "Karaoke Version" - }, - { - "title": "When October Goes - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Spooky - Dusty Springfield", - "id": "Karaoke Version" - }, - { - "title": "You Make Me Wanna - Usher", - "id": "Karaoke Version" - }, - { - "title": "Laura non c'รจ - Nek", - "id": "Karaoke Version" - }, - { - "title": "I Just Can't Wait to Be King - The Lion King (2019 film)", - "id": "Karaoke Version" - }, - { - "title": "Ci Sarร  - Al Bano & Romina Power", - "id": "Karaoke Version" - }, - { - "title": "I Can't Let Go - Smash (Jennifer Hudson)", - "id": "Karaoke Version" - }, - { - "title": "Insieme: 1992 - Toto Cutugno", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus is Back in Town (Kurt Russell) - The Christmas Chronicles", - "id": "Karaoke Version" - }, - { - "title": "Bad Guy - Postmodern Jukebox & Ariana Savalas", - "id": "Karaoke Version" - }, - { - "title": "J'irai oรน tu iras - Cรฉline Dion & Jean-Jacques Goldman", - "id": "Karaoke Version" - }, - { - "title": "Bad Guy - Billie Eilish", - "id": "Karaoke Version" - }, - { - "title": "Climbing Up the Walls - Radiohead", - "id": "Karaoke Version" - }, - { - "title": "Kids - MGMT", - "id": "Karaoke Version" - }, - { - "title": "The Tourist - Radiohead", - "id": "Karaoke Version" - }, - { - "title": "Lucky - Radiohead", - "id": "Karaoke Version" - }, - { - "title": "Subterranean Homesick Alien - Radiohead", - "id": "Karaoke Version" - }, - { - "title": "Electioneering - Radiohead", - "id": "Karaoke Version" - }, - { - "title": "Fitter Happier - Radiohead", - "id": "Karaoke Version" - }, - { - "title": "Swingin' - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Do You Wanna Dance (Reunited) - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Don't Panic - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Things - Robbie Williams & Jane Horrocks", - "id": "Karaoke Version" - }, - { - "title": "Crazy Little Thing Called Love (Live Aid) - Queen", - "id": "Karaoke Version" - }, - { - "title": "Jef - Jacques Brel", - "id": "Karaoke Version" - }, - { - "title": "How Do I Live - Trisha Yearwood", - "id": "Karaoke Version" - }, - { - "title": "Eternal Flame - Atomic Kitten", - "id": "Karaoke Version" - }, - { - "title": "I Hate Everything About You - Three Days Grace", - "id": "Karaoke Version" - }, - { - "title": "You Are the Music in Me - High School Musical 2", - "id": "Karaoke Version" - }, - { - "title": "L'histoire de la vie / Nants' Ingonyama - The Lion King", - "id": "Karaoke Version" - }, - { - "title": "Everybody Loves Somebody (uptempo) - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Warning Sign - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "So Much Better - Legally Blonde (musical)", - "id": "Karaoke Version" - }, - { - "title": "Puisque vous partez en voyage - Franรงoise Hardy & Jacques Dutronc", - "id": "Karaoke Version" - }, - { - "title": "Soleil brรปlant - Brave (Maรฉva Mรฉline)", - "id": "Karaoke Version" - }, - { - "title": "Something Worth Leaving Behind - Lee Ann Womack", - "id": "Karaoke Version" - }, - { - "title": "Cowboys and Angels - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Love It When You Call - The Feeling", - "id": "Karaoke Version" - }, - { - "title": "Blues Before Sunrise - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Un jour la troupe campa (L'alphabet scout) - Comptine", - "id": "Karaoke Version" - }, - { - "title": "How Great Thou Art (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Le feu - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "I Could Not Ask For More - Edwin McCain", - "id": "Karaoke Version" - }, - { - "title": "Mรฉfiez-vous des apparences - Mary Poppins Returns", - "id": "Karaoke Version" - }, - { - "title": "Love at First Sight - Kylie Minogue", - "id": "Karaoke Version" - }, - { - "title": "Pile ou face - Corynne Charby", - "id": "Karaoke Version" - }, - { - "title": "La gadoue - Jane Birkin", - "id": "Karaoke Version" - }, - { - "title": "Crippled Inside - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "Liebe triumphiert - The Lion King 2", - "id": "Karaoke Version" - }, - { - "title": "Un amico come me - Aladdin (2019 film) (Marco Manca)", - "id": "Karaoke Version" - }, - { - "title": "Don't Look Back - Boston", - "id": "Karaoke Version" - }, - { - "title": "Le Lac Majeur - Mort Shuman", - "id": "Karaoke Version" - }, - { - "title": "Automatic - The Pointer Sisters", - "id": "Karaoke Version" - }, - { - "title": "Leave me Alone - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "That I Would Be Good (Unplugged) - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "I Feel You - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "L'amour brille sous les รฉtoiles - The Lion King (2019 film)", - "id": "Karaoke Version" - }, - { - "title": "Jazzman - Carole King", - "id": "Karaoke Version" - }, - { - "title": "Baby's in Black - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Sur la route de Louviers - Comptine", - "id": "Karaoke Version" - }, - { - "title": "Falling into You - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Hammer to Fall (Live Aid) - Queen", - "id": "Karaoke Version" - }, - { - "title": "No More Drama - Mary J. Blige", - "id": "Karaoke Version" - }, - { - "title": "Tiny Dancer - Rocketman (Taron Egerton)", - "id": "Karaoke Version" - }, - { - "title": "Don't Marry Her - The Beautiful South", - "id": "Karaoke Version" - }, - { - "title": "Alone - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Personal Jesus - Marilyn Manson", - "id": "Karaoke Version" - }, - { - "title": "Corner of the Sky - Pippin", - "id": "Karaoke Version" - }, - { - "title": "Pitbull - Booba", - "id": "Karaoke Version" - }, - { - "title": "The Bitch is Back - Rocketman (Taron Egerton & Sebastian Rich)", - "id": "Karaoke Version" - }, - { - "title": "When a Man Loves a Woman (live) - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Wasted Days and Wasted Nights - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "The Power of Love - Jason Owen", - "id": "Karaoke Version" - }, - { - "title": "Life on Mars? - Postmodern Jukebox & Olivia Kuper Harris", - "id": "Karaoke Version" - }, - { - "title": "American Pie - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Don't Look Any Further - Dennis Edwards & Siedah Garrett", - "id": "Karaoke Version" - }, - { - "title": "Copacabana (At the Copa) - Shirley Bassey", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Sit Right Down (And Write Myself a Letter) - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Bennie and the Jets - Rocketman", - "id": "Karaoke Version" - }, - { - "title": "Prince Ali (version franรงaise) - Aladdin (2019 film) (Anthony Kavanagh)", - "id": "Karaoke Version" - }, - { - "title": "Sorry Seems to Be the Hardest Word - Rocketman (Taron Egerton)", - "id": "Karaoke Version" - }, - { - "title": "(Mucho Mambo) Sway - Shaft", - "id": "Karaoke Version" - }, - { - "title": "Colors of the Wind - Tori Kelly (We Love Disney)", - "id": "Karaoke Version" - }, - { - "title": "Il cerchio della vita / Nants' Ingonyama - The Lion King", - "id": "Karaoke Version" - }, - { - "title": "Kann es wirklich Liebe sein - The Lion King", - "id": "Karaoke Version" - }, - { - "title": "I Knew I Loved You - Savage Garden", - "id": "Karaoke Version" - }, - { - "title": "I Love How You Love Me - Bobby Vinton", - "id": "Karaoke Version" - }, - { - "title": "Don't Let the Sun Go Down on Me - Rocketman", - "id": "Karaoke Version" - }, - { - "title": "I've Got You Under My Skin - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Saturday Night's Alright - Rocketman", - "id": "Karaoke Version" - }, - { - "title": "Goodbye Yellow Brick Road - Rocketman (Taron Egerton & Jamie Bell)", - "id": "Karaoke Version" - }, - { - "title": "Blowing in the Wind - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Angel Flying Too Close to the Ground - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Mamma Mia - Mamma Mia! (film) (Meryl Streep)", - "id": "Karaoke Version" - }, - { - "title": "Narcotic - YouNotUs & Janieck Devy & Senex", - "id": "Karaoke Version" - }, - { - "title": "Prince Ali - Aladdin (2019 film) (Will Smith)", - "id": "Karaoke Version" - }, - { - "title": "Arabian Nights - Aladdin (2019 film)", - "id": "Karaoke Version" - }, - { - "title": "Here's a Quarter (Call Someone Who Cares) - Travis Tritt", - "id": "Karaoke Version" - }, - { - "title": "Come On, Let's Go - Los Lobos", - "id": "Karaoke Version" - }, - { - "title": "Blue Suede Shoes (1968 Comeback Special - live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I'm So Excited (single version) - The Pointer Sisters", - "id": "Karaoke Version" - }, - { - "title": "On the Beach - Jubรซl", - "id": "Karaoke Version" - }, - { - "title": "Circle of Life / Nants' Ingonyama - The Lion King (2019 film)", - "id": "Karaoke Version" - }, - { - "title": "Boot Scootin' Boogie (feat. Midland) - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "I'm Goin' Down - Mary J. Blige", - "id": "Karaoke Version" - }, - { - "title": "Can You Feel the Love Tonight? - The Lion King", - "id": "Karaoke Version" - }, - { - "title": "Libre soy - Frozen (2013 film) (Carmen Sarahรญ)", - "id": "Karaoke Version" - }, - { - "title": "Rave On - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "I Want to Break Free (live Wembley 1986) - Queen", - "id": "Karaoke Version" - }, - { - "title": "Let It Go - Frozen (musical)", - "id": "Karaoke Version" - }, - { - "title": "Liberta - Al Bano & Romina Power", - "id": "Karaoke Version" - }, - { - "title": "Six Days on the Road - Sawyer Brown", - "id": "Karaoke Version" - }, - { - "title": "On the Road Again - Lisa McHugh", - "id": "Karaoke Version" - }, - { - "title": "Here We Are - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Liberta - Al Bano & Romina Power *", - "id": "v1a1RsTaAIk" - }, - { - "title": "Your Song - Rocketman (Taron Egerton)", - "id": "Karaoke Version" - }, - { - "title": "I'm Still Standing - Rocketman (Taron Egerton)", - "id": "Karaoke Version" - }, - { - "title": "Felicitร  - Al Bano & Romina Power", - "id": "Karaoke Version" - }, - { - "title": "Cheek to Cheek - Doris Day", - "id": "Karaoke Version" - }, - { - "title": "Crocodile Rock - Rocketman", - "id": "Karaoke Version" - }, - { - "title": "Your Good Girl's Gonna Go Bad - Tammy Wynette", - "id": "Karaoke Version" - }, - { - "title": "Allumer le feu - Johnny Hallyday", - "id": "Karaoke Version" - }, - { - "title": "Two Princes - Spin Doctors", - "id": "Karaoke Version" - }, - { - "title": "Knock on Wood - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "O mio babbino caro - Renรฉe Fleming", - "id": "Karaoke Version" - }, - { - "title": "Only Wanna Be with You - Hootie & the Blowfish", - "id": "Karaoke Version" - }, - { - "title": "You Are Everything - The Stylistics", - "id": "Karaoke Version" - }, - { - "title": "Caruso - Lucio Dalla", - "id": "Karaoke Version" - }, - { - "title": "'O sole mio - Luciano Pavarotti", - "id": "Karaoke Version" - }, - { - "title": "Friend Like Me - Aladdin (2019 film) (Will Smith)", - "id": "Karaoke Version" - }, - { - "title": "From This Moment On - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Amor, Amor, Amor - Julio Iglesias", - "id": "Karaoke Version" - }, - { - "title": "Moody Blue (live 1977) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Goodbye to You - Michelle Branch", - "id": "Karaoke Version" - }, - { - "title": "On a Slow Boat to China - Bette Midler & Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "A Whole New World - Aladdin", - "id": "Karaoke Version" - }, - { - "title": "All Out of Love - John Barrowman", - "id": "Karaoke Version" - }, - { - "title": "A Whole New World - Aladdin (2019 film) (Mena Massoud & Naomi Scott)", - "id": "Karaoke Version" - }, - { - "title": "Friend Like Me - Aladdin (1992 film) (Robin Williams)", - "id": "Karaoke Version" - }, - { - "title": "Rocket Man - Rocketman (Taron Egerton)", - "id": "Karaoke Version" - }, - { - "title": "Hunter - Dido", - "id": "Karaoke Version" - }, - { - "title": "Before I Let Go - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Love Is - Vanessa Williams & Brian McKnight", - "id": "Karaoke Version" - }, - { - "title": "Kids In America - No Secrets", - "id": "Karaoke Version" - }, - { - "title": "Love Changes Everything - Aspects Of Love", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells (Swing Version) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Nourrir les p'tits oiseaux - Mary Poppins (film)", - "id": "Karaoke Version" - }, - { - "title": "Hurt - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Ce rรชve bleu - Aladdin (2019 film) (Julien Alluguette & Hiba Tawaji)", - "id": "Karaoke Version" - }, - { - "title": "Running Bear - Mud", - "id": "Karaoke Version" - }, - { - "title": "Sorry Seems to Be the Hardest Word (duet with Ray Charles) - Elton John", - "id": "Karaoke Version" - }, - { - "title": "La gasolina - Daddy Yankee", - "id": "Karaoke Version" - }, - { - "title": "Stupid Girls - Pink", - "id": "Karaoke Version" - }, - { - "title": "I Guess That's Why They Call It the Blues - Elton John & Mary J. Blige", - "id": "Karaoke Version" - }, - { - "title": "Darlin' (I Think About You) - Delegation", - "id": "Karaoke Version" - }, - { - "title": "Make It Happen - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Hands Clean - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "California Girls - David Lee Roth", - "id": "Karaoke Version" - }, - { - "title": "Mockingbird - Toby Keith & Krystal", - "id": "Karaoke Version" - }, - { - "title": "The Show Must Go On - Elton John & Queen & Tony Iommi", - "id": "Karaoke Version" - }, - { - "title": "Neon Moon (feat. Kacey Musgraves) - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Brand New Man (with Luke Combs) - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Just One Look - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "Everything - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "A Real Fine Place to Start - Sara Evans", - "id": "Karaoke Version" - }, - { - "title": "Move Along - The All-American Rejects", - "id": "Karaoke Version" - }, - { - "title": "Our Lips Are Sealed - The Go-Go's", - "id": "Karaoke Version" - }, - { - "title": "Work This Out - High School Musical 2", - "id": "Karaoke Version" - }, - { - "title": "Pigs (Three Different Ones) - Pink Floyd", - "id": "Karaoke Version" - }, - { - "title": "Cry - Faith Hill", - "id": "Karaoke Version" - }, - { - "title": "Look After You - The Fray", - "id": "Karaoke Version" - }, - { - "title": "We Just Disagree - Dave Mason", - "id": "Karaoke Version" - }, - { - "title": "Home (Michael Bublรฉ cover) - Westlife", - "id": "Karaoke Version" - }, - { - "title": "I Just Don't Know What to Do with Myself - Dusty Springfield", - "id": "Karaoke Version" - }, - { - "title": "You Are My Sunshine - Jerry Lee Lewis", - "id": "Karaoke Version" - }, - { - "title": "Probably Wouldn't Be This Way - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "Empty Chairs At Empty Tables - Les Misรฉrables (musical) (Michael Ball)", - "id": "Karaoke Version" - }, - { - "title": "Shine - Aswad", - "id": "Karaoke Version" - }, - { - "title": "Jump - Glee", - "id": "Karaoke Version" - }, - { - "title": "It's Only Love - Simply Red", - "id": "Karaoke Version" - }, - { - "title": "Chains - Tina Arena", - "id": "Karaoke Version" - }, - { - "title": "I Will Love Again - Lara Fabian", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Video Killed the Radio Star - The Presidents Of The United States Of America *", - "id": "g0UhxY2zpbs" - }, - { - "title": "Tusk - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Independent - Webbie & Lil' Boosie & Lil' Phat", - "id": "Karaoke Version" - }, - { - "title": "Man on the Moon - R.E.M.", - "id": "Karaoke Version" - }, - { - "title": "Hello - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "So Emotional - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Neutron Star Collision (Love Is Forever) - Muse", - "id": "Karaoke Version" - }, - { - "title": "My Oh My - Aqua", - "id": "Karaoke Version" - }, - { - "title": "Money - Pink Floyd", - "id": "Karaoke Version" - }, - { - "title": "Tears in Heaven (Unplugged Version) - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Jump - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "You Give Good Love - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Such A Night (Bublรฉ! NBC Special - live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Tell It Like It Is - Don Johnson", - "id": "Karaoke Version" - }, - { - "title": "I Know There's Something Going On - Frida", - "id": "Karaoke Version" - }, - { - "title": "(Get Your Kicks On) Route 66 - Dr. Feelgood", - "id": "Karaoke Version" - }, - { - "title": "Get Me to the Church on Time - My Fair Lady (musical)", - "id": "Karaoke Version" - }, - { - "title": "Dreams - Van Halen", - "id": "Karaoke Version" - }, - { - "title": "Forever and Ever - Demis Roussos", - "id": "Karaoke Version" - }, - { - "title": "Crazy Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Never Ever - All Saints", - "id": "Karaoke Version" - }, - { - "title": "Holding Her and Loving You - Earl Thomas Conley", - "id": "Karaoke Version" - }, - { - "title": "Seven Spanish Angels - Heidi Hauge", - "id": "Karaoke Version" - }, - { - "title": "Brown Eyed Girl - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "Holiday - Green Day", - "id": "Karaoke Version" - }, - { - "title": "Loving Arms (1981 Version) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "A Song for You (Bublรฉ! NBC Special) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Lady Down on Love - Alabama", - "id": "Karaoke Version" - }, - { - "title": "Into the Mystic - Van Morrison", - "id": "Karaoke Version" - }, - { - "title": "21 Guns - Green Day (Transformers)", - "id": "Karaoke Version" - }, - { - "title": "When I Fall in Love (Bublรฉ! NBC Special - live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Walk a Mile in My Shoes (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "American Idiot - Green Day", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good (Bublรฉ NBC Special - live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Bring Him Home - Les Misรฉrables (film)", - "id": "Karaoke Version" - }, - { - "title": "Jump - Van Halen", - "id": "Karaoke Version" - }, - { - "title": "Wake Me Up When September Ends - Green Day", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Fly Me to the Moon / You're Nobody 'Til Somebody Loves You / Just a gigolo - Michael Bublรฉ *", - "id": "Tjuphn1lsGM" - }, - { - "title": "Chattahoochee (extended mix) - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Good Riddance (Time of Your Life) - Green Day", - "id": "Karaoke Version" - }, - { - "title": "Out There - The Hunchback of Notre Dame (1996 film)", - "id": "Karaoke Version" - }, - { - "title": "Boulevard of Broken Dreams - Green Day", - "id": "Karaoke Version" - }, - { - "title": "Brown Eyed Girl - Van Morrison", - "id": "Karaoke Version" - }, - { - "title": "Basket Case - Green Day", - "id": "Karaoke Version" - }, - { - "title": "I Don't Want to Miss a Thing - Postmodern Jukebox & Sara Niemietz", - "id": "Karaoke Version" - }, - { - "title": "Music Sounds Better with You - Stardust (band)", - "id": "Karaoke Version" - }, - { - "title": "Reflection - Mulan", - "id": "Karaoke Version" - }, - { - "title": "The Impossible Dream (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I Am... I Said - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "I'm Not in Love - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "Bohemian Rhapsody (Live Aid) - Queen", - "id": "Karaoke Version" - }, - { - "title": "In the Air Tonight - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "I Got You (I Feel Good) - Jessie J (Fifty Shades Freed)", - "id": "Karaoke Version" - }, - { - "title": "Send a Message to My Heart - Dwight Yoakam & Patty Loveless", - "id": "Karaoke Version" - }, - { - "title": "Thank U - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "Love Will Find a Way - The Lion King 2 (Liz Callaway & Gene Miller)", - "id": "Karaoke Version" - }, - { - "title": "Shout (Album Version) - Sarah Menescal", - "id": "Karaoke Version" - }, - { - "title": "Valerie - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "When the Sun Goes Down - Arctic Monkeys", - "id": "Karaoke Version" - }, - { - "title": "Still in Love with You - Thin Lizzy", - "id": "Karaoke Version" - }, - { - "title": "Rock Me - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Yellow Submarine - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Have a Little Faith in Me - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "I'll Never Find Another You - Michael English", - "id": "Karaoke Version" - }, - { - "title": "All or Nothing at All (Strangers in the Night Version) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "December 1963 (Oh What a Night) - Jersey Boys (musical)", - "id": "Karaoke Version" - }, - { - "title": "Untitled - Simple Plan", - "id": "Karaoke Version" - }, - { - "title": "Let the River Run - Carly Simon (Working Girl)", - "id": "Karaoke Version" - }, - { - "title": "Take These Chains From My Heart - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Take on Me - Weezer", - "id": "Karaoke Version" - }, - { - "title": "When I First Saw You - Dreamgirls (2006 film)", - "id": "Karaoke Version" - }, - { - "title": "Fallen - Sarah McLachlan", - "id": "Karaoke Version" - }, - { - "title": "What's Left Of Me - Nick Lachey", - "id": "Karaoke Version" - }, - { - "title": "A Cover is Not the Book - Mary Poppins Returns", - "id": "Karaoke Version" - }, - { - "title": "Do What You Do - Jermaine Jackson", - "id": "Karaoke Version" - }, - { - "title": "In Your Eyes - Kylie Minogue", - "id": "Karaoke Version" - }, - { - "title": "This Is My Now - Jordin Sparks", - "id": "Karaoke Version" - }, - { - "title": "I Could Not Ask For More - Sara Evans", - "id": "Karaoke Version" - }, - { - "title": "How Do You Keep the Music Playing - James Ingram & Patti Austin", - "id": "Karaoke Version" - }, - { - "title": "Play My Music - Camp Rock", - "id": "Karaoke Version" - }, - { - "title": "Why Should I Worry? - Oliver & Company (Billy Joel)", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Nobody's Home - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "Light my Candle - Rent (musical)", - "id": "Karaoke Version" - }, - { - "title": "Into the Open Air - Brave (Julie Fowlis)", - "id": "Karaoke Version" - }, - { - "title": "Jolene (Dumplin' remix) - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "Jenny from the Block - Jennifer Lopez", - "id": "Karaoke Version" - }, - { - "title": "A Whole New World - Aladdin (1992 film) (Lea Salonga & Brad Kane)", - "id": "Karaoke Version" - }, - { - "title": "Dance With My Father - Kellie Coffey", - "id": "Karaoke Version" - }, - { - "title": "The Little Drummer Boy - Glee", - "id": "Karaoke Version" - }, - { - "title": "More Than Love - Los Lonely Boys", - "id": "Karaoke Version" - }, - { - "title": "Santa Baby - The Pussycat Dolls", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Feed the Birds (Tuppence a Bag) - Mary Poppins (film)", - "id": "Karaoke Version" - }, - { - "title": "God's Will - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Love You Forever - Jessica Simpson", - "id": "Karaoke Version" - }, - { - "title": "Lovers in Japan - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Stupid - Sarah McLachlan", - "id": "Karaoke Version" - }, - { - "title": "Christmas Lights - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Fast As You Can - Fiona Apple", - "id": "Karaoke Version" - }, - { - "title": "Innocence - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "It Came Upon a Midnight Clear - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "No More I Love You's - Annie Lennox", - "id": "Karaoke Version" - }, - { - "title": "Violet Hill - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Life For Rent - Dido", - "id": "Karaoke Version" - }, - { - "title": "Fall To Pieces - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "Informer - Snow", - "id": "Karaoke Version" - }, - { - "title": "Step by Step - New Kids on the Block", - "id": "Karaoke Version" - }, - { - "title": "Away in a Manger - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Praise You - Fatboy Slim", - "id": "Karaoke Version" - }, - { - "title": "God Put a Smile Upon Your Face - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song (Merry Christmas To You) - Perry Como", - "id": "Karaoke Version" - }, - { - "title": "Frosty the Snowman - Red Foley", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "Have You Ever - Brandy", - "id": "Karaoke Version" - }, - { - "title": "Mele kalikimaka - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "Leave a Light On - Belinda Carlisle", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song (Chestnuts Roasting On An Open Fire) - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "So Far Away - Staind", - "id": "Karaoke Version" - }, - { - "title": "We Will Rock You (Fast Version - live) - Queen", - "id": "Karaoke Version" - }, - { - "title": "For You I Will - Monica", - "id": "Karaoke Version" - }, - { - "title": "The Saints' Rock and Roll - Bill Haley & His Comets", - "id": "Karaoke Version" - }, - { - "title": "Anthem - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "I Need You - 3T", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Sunshine - Paul Carrack", - "id": "Karaoke Version" - }, - { - "title": "Feliz Navidad (live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "It's the Most Wonderful Time of the Year - Amy Grant", - "id": "Karaoke Version" - }, - { - "title": "Because You Love Me - Jo Dee Messina", - "id": "Karaoke Version" - }, - { - "title": "You to Me Are Everything - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Makin' Whoopee! - Dr. John & Rickie Lee Jones", - "id": "Karaoke Version" - }, - { - "title": "Yester-Me, Yester-You, Yesterday - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Buck Rogers - Feeder", - "id": "Karaoke Version" - }, - { - "title": "He Touched Me (Where No One Stands Alone) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Mama - Spice Girls", - "id": "Karaoke Version" - }, - { - "title": "Love of My Life (live) - Queen (At Wembley Stadium)", - "id": "Karaoke Version" - }, - { - "title": "Beautiful In My Eyes - Joshua Kadison", - "id": "Karaoke Version" - }, - { - "title": "Home by the Sea - Genesis", - "id": "Karaoke Version" - }, - { - "title": "It's the Most Wonderful Time of the Year - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Sometimes - Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "Mele Kalikimaka - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "My Happy Ending - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "Tenth Avenue Freeze-Out - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Journey to the Past - Anastasia (1997 film) (Liz Callaway)", - "id": "Karaoke Version" - }, - { - "title": "Trouble - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "I'm a Slave 4 U - Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Sex You Up - Color Me Badd", - "id": "Karaoke Version" - }, - { - "title": "You Must Love Me - Evita (film) (Madonna)", - "id": "Karaoke Version" - }, - { - "title": "True Love Ways (with the Royal Philharmonic Orchestra) - Buddy Holly", - "id": "Karaoke Version" - }, - { - "title": "Chiquitita - Cher", - "id": "Karaoke Version" - }, - { - "title": "In My Place - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Homesick - Dua Lipa", - "id": "Karaoke Version" - }, - { - "title": "At the Beginning - Anastasia (1997 film)", - "id": "Karaoke Version" - }, - { - "title": "Pray - Take That", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Comin' to Town - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "The Mummers' Dance (Single Version) - Loreena McKennitt", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Frosty the Snowman - Gene Autry", - "id": "Karaoke Version" - }, - { - "title": "L.O.V.E. - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "La vie en rose (feat. Cรฉcile McLorin Salvant) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "The Winner Takes It All - Cher", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Around the Christmas Tree - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "Bohemian Rhapsody - Randy Coleman", - "id": "Karaoke Version" - }, - { - "title": "I Say a Little Prayer - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Run - Josh Groban & Sarah McLachlan", - "id": "Karaoke Version" - }, - { - "title": "Helena - My Chemical Romance", - "id": "Karaoke Version" - }, - { - "title": "One of Us - Cher", - "id": "Karaoke Version" - }, - { - "title": "Your Song - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Wake Me Up Before You Go-Go - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Clocks - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Amanda - Chris Stapleton & Morgane Stapleton", - "id": "Karaoke Version" - }, - { - "title": "Mamma Mia - Cher", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night - Michael Bublรฉ & Loren Allred", - "id": "Karaoke Version" - }, - { - "title": "Yellow - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "Fix You - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "I Get a Kick Out of You - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Such a Night - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "I Only Have Eyes for You - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Viva La Vida - Coldplay", - "id": "Karaoke Version" - }, - { - "title": "La vie en rose - A Star is Born (Lady Gaga)", - "id": "Karaoke Version" - }, - { - "title": "Save the Last Dance for Me - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Take Me Home - Cher", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "But I Do Love You - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "Stars - Les Misรฉrables (film)", - "id": "Karaoke Version" - }, - { - "title": "Bet on It - High School Musical 2 (Zac Efron)", - "id": "Karaoke Version" - }, - { - "title": "Dancing Queen - Cher", - "id": "Karaoke Version" - }, - { - "title": "Waterloo - Cher", - "id": "Karaoke Version" - }, - { - "title": "Eyes of Blue - Paul Carrack", - "id": "Karaoke Version" - }, - { - "title": "Sleigh Ride - Amy Grant", - "id": "Karaoke Version" - }, - { - "title": "All That She Wants - Berk & The Virtual Band", - "id": "Karaoke Version" - }, - { - "title": "Higher and Higher - Boyzone", - "id": "Karaoke Version" - }, - { - "title": "When I Fall in Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Sunshine - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "You Got the Love - The Source & Candi Staton", - "id": "Karaoke Version" - }, - { - "title": "When You're Looking Like That - Westlife", - "id": "Karaoke Version" - }, - { - "title": "Wind Beneath My Wings - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "A Different Corner (live - Symphonica Tour) - George Michael", - "id": "Karaoke Version" - }, - { - "title": "SOS - Cher", - "id": "Karaoke Version" - }, - { - "title": "Waiting for a Star to Fall - Boy Meets Girl", - "id": "Karaoke Version" - }, - { - "title": "Never Been to Spain - Three Dog Night", - "id": "Karaoke Version" - }, - { - "title": "Precious - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "This Love (Extended version) - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Making Your Mind Up - Bucks Fizz", - "id": "Karaoke Version" - }, - { - "title": "Rock Your Baby - George McCrae", - "id": "Karaoke Version" - }, - { - "title": "The Way You Make Me Feel - Sarah Menescal", - "id": "Karaoke Version" - }, - { - "title": "She's Like the Wind - Calum Scott (Dirty Dancing 2017)", - "id": "Karaoke Version" - }, - { - "title": "One Fine Day - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Don't Call Me Baby - Madison Avenue", - "id": "Karaoke Version" - }, - { - "title": "Just Pretend - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Waterloo - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "I Can Dream About You - Dan Hartman", - "id": "Karaoke Version" - }, - { - "title": "Gimme! Gimme! Gimme! (A Man After Midnight) - Cher", - "id": "Karaoke Version" - }, - { - "title": "Raise Your Glass - Pink", - "id": "Karaoke Version" - }, - { - "title": "I Have a Dream - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "Mr. Sandman - Emmylou Harris", - "id": "Karaoke Version" - }, - { - "title": "Angel Eyes - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "Dancing Queen - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "The Name of the Game - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "Let It Be - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Tutti Frutti (live) - Little Richard", - "id": "Karaoke Version" - }, - { - "title": "Always Be My Baby - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "My Love, My Life - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "When I Kissed the Teacher - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "Knowing Me, Knowing You - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "This Old Heart of Mine (Is Weak for You) - Rod Stewart & Ronald Isley", - "id": "Karaoke Version" - }, - { - "title": "Freedom '90 (MTV unplugged - live) - George Michael", - "id": "Karaoke Version" - }, - { - "title": "One of Us - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "He Touched Me - The Bill Gaither Trio", - "id": "Karaoke Version" - }, - { - "title": "Fernando - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "Don't Worry - Marty Robbins", - "id": "Karaoke Version" - }, - { - "title": "King of the Road - The Proclaimers", - "id": "Karaoke Version" - }, - { - "title": "Angeleyes - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Something About the Way You Look Tonight - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Another Part of Me - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Superfly - Curtis Mayfield", - "id": "Karaoke Version" - }, - { - "title": "Boom, Boom, Boom, Boom!! - Vengaboys", - "id": "Karaoke Version" - }, - { - "title": "The Way We Were - Perry Como", - "id": "Karaoke Version" - }, - { - "title": "I Fought the Law - The Clash", - "id": "Karaoke Version" - }, - { - "title": "Who's Gonna Fill Their Shoes - George Jones", - "id": "Karaoke Version" - }, - { - "title": "Golden Ring - George Jones & Tammy Wynette", - "id": "Karaoke Version" - }, - { - "title": "Honky Tonk Blues - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "Super Trouper - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "Mamma Mia - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "The Day Before You Came - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "Andante, Andante - Mamma Mia! Here We Go Again", - "id": "Karaoke Version" - }, - { - "title": "Son of a Preacher Man - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Yesterday - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "California Dreamin' - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Summer Moved On - a-ha", - "id": "Karaoke Version" - }, - { - "title": "Tearin' Up My Heart - NSYNC", - "id": "Karaoke Version" - }, - { - "title": "My Friend the Wind - Demis Roussos", - "id": "Karaoke Version" - }, - { - "title": "Sex and Drugs and Rock and Roll - Ian Dury", - "id": "Karaoke Version" - }, - { - "title": "Sweet Child O' Mine - Jasmine Thompson", - "id": "Karaoke Version" - }, - { - "title": "My Love, My Life - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good (live David Foster & Friends) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Andante, Andante - ABBA", - "id": "Karaoke Version" - }, - { - "title": "May It Be - Enya (The Lord of the Rings)", - "id": "Karaoke Version" - }, - { - "title": "When I Fall in Love - Andrea Bocelli & Chris Botti", - "id": "Karaoke Version" - }, - { - "title": "Ex's and Oh's - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "You Might Need Somebody - Shola Ama", - "id": "Karaoke Version" - }, - { - "title": "Good Old-Fashioned Lover Boy - Queen", - "id": "Karaoke Version" - }, - { - "title": "The Gambler - DJ ร–tzi & The Bellamy Brothers", - "id": "Karaoke Version" - }, - { - "title": "Skyfall - James Bond (Adele)", - "id": "Karaoke Version" - }, - { - "title": "You Upset Me Baby - Joe Bonamassa", - "id": "Karaoke Version" - }, - { - "title": "Eagle - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Don't You Know - Kungs & Jamie N Commons", - "id": "Karaoke Version" - }, - { - "title": "Could It Be Magic - Donna Summer", - "id": "Karaoke Version" - }, - { - "title": "Gilligan's Island - Sherwood Schwartz & George Wyle", - "id": "Karaoke Version" - }, - { - "title": "Mary in the Morning - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I Can't Help It (If I'm Still in Love with You) - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "I Want Love - Chris Stapleton", - "id": "Karaoke Version" - }, - { - "title": "When I Kissed the Teacher - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Head over Feet - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "Games People Play - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Jolene - Pentatonix & Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "You Could Be Mine - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Sit Right Down and Write Myself a Letter - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "I've Got You Under My Skin - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "God Help the Outcasts - The Hunchback of Notre Dame", - "id": "Karaoke Version" - }, - { - "title": "The Shoop Shoop Song (It's in His Kiss) - Betty Everett", - "id": "Karaoke Version" - }, - { - "title": "Bullet with Butterfly Wings - The Smashing Pumpkins", - "id": "Karaoke Version" - }, - { - "title": "One Voice - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Zombie - Postmodern Jukebox & Maiya Sykes", - "id": "Karaoke Version" - }, - { - "title": "Car Wash - Christina Aguilera & Missy Elliott", - "id": "Karaoke Version" - }, - { - "title": "Sex Bomb - Berk & The Virtual Band", - "id": "Karaoke Version" - }, - { - "title": "Will You Love Me Tomorrow - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "What is Love - Postmodern Jukebox & Casey Abrams", - "id": "Karaoke Version" - }, - { - "title": "Candle in the Wind (2018 Version) - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Driveway - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Spanish Eyes - Al Martino", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Jazzy Christmas", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas Baby - Sheryl Crow", - "id": "Karaoke Version" - }, - { - "title": "Sure - Take That", - "id": "Karaoke Version" - }, - { - "title": "Wake Up America! - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "I Got It Easy - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Around the Christmas Tree - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "You Light Up My Life - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "Reach Out - Hilary Duff & The Prophet", - "id": "Karaoke Version" - }, - { - "title": "Slow Down Sister - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Physical - Glee", - "id": "Karaoke Version" - }, - { - "title": "Dance For Me - Mary J. Blige & Akhim", - "id": "Karaoke Version" - }, - { - "title": "Last Time - Labrinth", - "id": "Karaoke Version" - }, - { - "title": "Yoรผ and I - Haley Reinhart (American Idol)", - "id": "Karaoke Version" - }, - { - "title": "So Far So Great - Demi Lovato (Sonny With A Chance)", - "id": "Karaoke Version" - }, - { - "title": "Midnight Bottle - Colbie Caillat", - "id": "Karaoke Version" - }, - { - "title": "If It's Love - Train", - "id": "Karaoke Version" - }, - { - "title": "Wonderman - Tinie Tempah & Ellie Goulding", - "id": "Karaoke Version" - }, - { - "title": "Dead Ringer for Love - Meat Loaf & Cher", - "id": "Karaoke Version" - }, - { - "title": "Rainbow - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Don't Upset The Rhythm (Go Baby Go) - Noisettes", - "id": "Karaoke Version" - }, - { - "title": "No Air - Glee", - "id": "Karaoke Version" - }, - { - "title": "Dream a Little Dream of Me - Doris Day", - "id": "Karaoke Version" - }, - { - "title": "Lightning - The Wanted", - "id": "Karaoke Version" - }, - { - "title": "Slow Hand - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "MacArthur Park - The Four Tops", - "id": "Karaoke Version" - }, - { - "title": "For the Good Times - Al Green", - "id": "Karaoke Version" - }, - { - "title": "Reload - Wiley & Chip", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Finish Line - Yasmin", - "id": "Karaoke Version" - }, - { - "title": "Send Me an Angel - Real Life", - "id": "Karaoke Version" - }, - { - "title": "The Fame - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "I'll Take Everything - James Blunt", - "id": "Karaoke Version" - }, - { - "title": "A Change Is Gonna Come - Greta Van Fleet", - "id": "Karaoke Version" - }, - { - "title": "Happy Xmas (War Is Over) - Sarah McLachlan", - "id": "Karaoke Version" - }, - { - "title": "God Rest Ye Merry Gentlemen - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "It's the Most Wonderful Time of the Year - Kylie Minogue", - "id": "Karaoke Version" - }, - { - "title": "All I Want for Christmas Is You - Matt Costa", - "id": "Karaoke Version" - }, - { - "title": "Oh Little Town of Bethlehem - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Righteous Love - Joan Osborne", - "id": "Karaoke Version" - }, - { - "title": "Right Here, Right Now (My Heart Belongs to You) - Raffaรซla", - "id": "Karaoke Version" - }, - { - "title": "Pride - Amy Macdonald", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Be a Wheel Someday - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "Good Times - Roll Deep & Jodie Connor", - "id": "Karaoke Version" - }, - { - "title": "I Stay In Love - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Make Your Own Kind of Music - Paloma Faith", - "id": "Karaoke Version" - }, - { - "title": "My Father's Gun - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Gives You Hell - Glee", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - The Pretenders", - "id": "Karaoke Version" - }, - { - "title": "Santa Baby - Glee", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Make Some Noise - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "God Must Be Busy - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "The King Is Dead, But The Queen Is Alive - Pink", - "id": "Karaoke Version" - }, - { - "title": "Give It Up - Hothouse Flowers", - "id": "Karaoke Version" - }, - { - "title": "The Motion Of Love - Gene Loves Jezebel", - "id": "Karaoke Version" - }, - { - "title": "MacArthur Park - Donna Summer", - "id": "Karaoke Version" - }, - { - "title": "You're A Mean One, Mr. Grinch - Jordan Smith", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Song For Sophie (I Hope She Flies) - Aura Dione", - "id": "Karaoke Version" - }, - { - "title": "Hard - Rihanna & Young Jeezy", - "id": "Karaoke Version" - }, - { - "title": "Sleigh Ride - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Please Come Home for Christmas - Jon Bon Jovi", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Back in Town - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Monarchy of Roses - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Earthquake - Labrinth & Tinie Tempah", - "id": "Karaoke Version" - }, - { - "title": "We Owned The Night - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Goodbye - Kristinia DeBarge", - "id": "Karaoke Version" - }, - { - "title": "Farewell - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Sarah - Thin Lizzy", - "id": "Karaoke Version" - }, - { - "title": "Fly - Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "Cry Baby Cry - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Remember Me - Daley & Jessie J", - "id": "Karaoke Version" - }, - { - "title": "Bounce - Calvin Harris & Kelis", - "id": "Karaoke Version" - }, - { - "title": "Just Can't Get Enough - The Saturdays", - "id": "Karaoke Version" - }, - { - "title": "Sookie Sookie - Steppenwolf", - "id": "Karaoke Version" - }, - { - "title": "Whole Lotta Loving - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "Broken Heels - Alexandra Burke", - "id": "Karaoke Version" - }, - { - "title": "Tryin' to Love Two - William Bell", - "id": "Karaoke Version" - }, - { - "title": "Monster - The Automatic", - "id": "Karaoke Version" - }, - { - "title": "Let's Get Ready to Rhumble - PJ & Duncan", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas Baby - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Grounds for Divorce - Elbow", - "id": "Karaoke Version" - }, - { - "title": "Give Me Just a Little More Time - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Word Up! - Little Mix", - "id": "Karaoke Version" - }, - { - "title": "Jenny Don't Be Hasty - Paolo Nutini", - "id": "Karaoke Version" - }, - { - "title": "Just Can't Get Enough - Black Eyed Peas", - "id": "Karaoke Version" - }, - { - "title": "I'm In Love Again - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "I Saw the Light - Todd Rundgren", - "id": "Karaoke Version" - }, - { - "title": "Outside - George Michael", - "id": "Karaoke Version" - }, - { - "title": "I Know Him So Well - Chess", - "id": "Karaoke Version" - }, - { - "title": "Never Tear Us Apart - Bishop Briggs (Fifty Shades Freed)", - "id": "Karaoke Version" - }, - { - "title": "I Only Have Eyes for You - Art Garfunkel", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "What Is Love - Kiesza", - "id": "Karaoke Version" - }, - { - "title": "Don't Let Me Stop You - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Frosty the Snowman - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Amy Grant", - "id": "Karaoke Version" - }, - { - "title": "Don't Worry Be Happy - Guy Sebastian", - "id": "Karaoke Version" - }, - { - "title": "Whine Up - Kat DeLuna & Elephant Man", - "id": "Karaoke Version" - }, - { - "title": "Black Chandelier - Biffy Clyro", - "id": "Karaoke Version" - }, - { - "title": "Zombie - Bad Wolves", - "id": "Karaoke Version" - }, - { - "title": "Wonder of You - Puddles Pity Party", - "id": "Karaoke Version" - }, - { - "title": "I Was Born to Love You (Short version) - Freddie Mercury", - "id": "Karaoke Version" - }, - { - "title": "Shelter - Birdy", - "id": "Karaoke Version" - }, - { - "title": "O Come All Ye Faithful - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Jailhouse Rock (Live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Who's Lovin' You (Live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Journey to the Past (Aaliyah version) - Anastasia (1997 film)", - "id": "Karaoke Version" - }, - { - "title": "Many of Horror - Biffy Clyro", - "id": "Karaoke Version" - }, - { - "title": "The Trouble With Girls - Scotty McCreery", - "id": "Karaoke Version" - }, - { - "title": "It Won't Be Long - Across The Universe (film)", - "id": "Karaoke Version" - }, - { - "title": "Chasing The Sun - The Wanted", - "id": "Karaoke Version" - }, - { - "title": "Take A Bow - Glee", - "id": "Karaoke Version" - }, - { - "title": "When You're Gone - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "I Want to Walk You Home - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "My Baby Just Cares for Me - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Slow It Down - Amy Macdonald", - "id": "Karaoke Version" - }, - { - "title": "See You Again - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Let It Go - Luba", - "id": "Karaoke Version" - }, - { - "title": "Same Mistake - James Blunt", - "id": "Karaoke Version" - }, - { - "title": "When the Saints Go Marching In (live) - The Kingston Trio", - "id": "Karaoke Version" - }, - { - "title": "True Love - Elton John & Kiki Dee", - "id": "Karaoke Version" - }, - { - "title": "Fallin' For You - Colbie Caillat", - "id": "Karaoke Version" - }, - { - "title": "Hungry Heart - Smokie", - "id": "Karaoke Version" - }, - { - "title": "Crazy Mary - Pearl Jam", - "id": "Karaoke Version" - }, - { - "title": "Foundations - Kate Nash", - "id": "Karaoke Version" - }, - { - "title": "Summertime Sadness (Cedric Gervais Remix) - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "I'd Love to Lay You Down - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "Shut Up And Dance (live) - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Oh! - Micky Green", - "id": "Karaoke Version" - }, - { - "title": "I've Got You Under My Skin - Seal", - "id": "Karaoke Version" - }, - { - "title": "When All Is Said And Done - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Walkin' to New Orleans - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "Rock This Country! - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Back to Black - Beyoncรฉ & Andrรฉ 3000", - "id": "Karaoke Version" - }, - { - "title": "Drive By - Train", - "id": "Karaoke Version" - }, - { - "title": "Flash - Queen", - "id": "Karaoke Version" - }, - { - "title": "Do You Know Where You're Going To - Diana Ross (Mahogany)", - "id": "Karaoke Version" - }, - { - "title": "My Lovin' (You're Never Gonna Get It) - En Vogue", - "id": "Karaoke Version" - }, - { - "title": "You Found Me - The Fray", - "id": "Karaoke Version" - }, - { - "title": "Whole Lotta Shakin' Going On - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Call Me The Breeze - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Russians - Sting", - "id": "Karaoke Version" - }, - { - "title": "Windmills of Your Mind - Sting", - "id": "Karaoke Version" - }, - { - "title": "Te amo - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Just a Dream - Nelly", - "id": "Karaoke Version" - }, - { - "title": "How Far We've Come - Matchbox Twenty", - "id": "Karaoke Version" - }, - { - "title": "The Best of Both Worlds - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Stay Another Day - East 17", - "id": "Karaoke Version" - }, - { - "title": "One More Try (live Symphonica) - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Mardy Bum - Arctic Monkeys", - "id": "Karaoke Version" - }, - { - "title": "Wichita Lineman (Live) - Little Big Town & Jimmy Webb", - "id": "Karaoke Version" - }, - { - "title": "My Oh My - Slade", - "id": "Karaoke Version" - }, - { - "title": "If You Could Read My Mind - Stars On 54", - "id": "Karaoke Version" - }, - { - "title": "Adorn - Miguel", - "id": "Karaoke Version" - }, - { - "title": "Angel of Music - The Phantom of the Opera (musical)", - "id": "Karaoke Version" - }, - { - "title": "Could It Be Magic - Take That", - "id": "Karaoke Version" - }, - { - "title": "Chariot - Gavin DeGraw", - "id": "Karaoke Version" - }, - { - "title": "Dreamer - Supertramp", - "id": "Karaoke Version" - }, - { - "title": "Clair - Gilbert O'Sullivan", - "id": "Karaoke Version" - }, - { - "title": "Voulez-Vous - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Lady Melody - Tom Frager & Gwayav'", - "id": "Karaoke Version" - }, - { - "title": "The Leaving of Liverpool (live) - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Bridge of Light - Happy Feet (Pink)", - "id": "Karaoke Version" - }, - { - "title": "Many Rivers to Cross - Jimmy Cliff", - "id": "Karaoke Version" - }, - { - "title": "Don't Do Me Like That - Tom Petty", - "id": "Karaoke Version" - }, - { - "title": "You Learn - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "Bright Eyes - Art Garfunkel", - "id": "Karaoke Version" - }, - { - "title": "If I Were a Rich Man - Fiddler on the Roof", - "id": "Karaoke Version" - }, - { - "title": "The Last Farewell - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Cosmic Love - Florence + The Machine", - "id": "Karaoke Version" - }, - { - "title": "You Are My Sunshine - Gene Autry", - "id": "Karaoke Version" - }, - { - "title": "Danny Boy - Daniel O'Donnell", - "id": "Karaoke Version" - }, - { - "title": "Baby, It's Cold Outside - Tom Jones & Cerys", - "id": "Karaoke Version" - }, - { - "title": "Luck Be a Lady (live) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "A Change Is Gonna Come - Seal", - "id": "Karaoke Version" - }, - { - "title": "Shake It Out - Florence + The Machine", - "id": "Karaoke Version" - }, - { - "title": "Little Drummer Boy - Helene Fischer", - "id": "Karaoke Version" - }, - { - "title": "Do They Know It's Christmas? - Band Aid", - "id": "Karaoke Version" - }, - { - "title": "Take Me to the King - Tamela Mann", - "id": "Karaoke Version" - }, - { - "title": "The Night They Drove Old Dixie Down - Joan Baez", - "id": "Karaoke Version" - }, - { - "title": "Come Together - Gary Clark, Jr. & Junkie XL", - "id": "Karaoke Version" - }, - { - "title": "One of Us - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Happy New Year - ABBA", - "id": "Karaoke Version" - }, - { - "title": "I Heard It Through the Grapevine - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Gives You Hell - The All-American Rejects", - "id": "Karaoke Version" - }, - { - "title": "Dream Lover - Tanya Tucker & Glen Campbell", - "id": "Karaoke Version" - }, - { - "title": "Dream Lover - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Louisiana Saturday Night - Robert Mizzell", - "id": "Karaoke Version" - }, - { - "title": "Luck Be a Lady - Seal", - "id": "Karaoke Version" - }, - { - "title": "Dream Lover - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "L-O-V-E - Gregory Porter", - "id": "Karaoke Version" - }, - { - "title": "Bubbly - Colbie Caillat", - "id": "Karaoke Version" - }, - { - "title": "As If We Never Said Goodbye - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "The Day Before You Came - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Country Club - Travis Tritt", - "id": "Karaoke Version" - }, - { - "title": "Take These Chains from My Heart - The Kentucky Headhunters", - "id": "Karaoke Version" - }, - { - "title": "Puppet on a String - Sandie Shaw", - "id": "Karaoke Version" - }, - { - "title": "Ring Ring - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Second Chance - Shinedown", - "id": "Karaoke Version" - }, - { - "title": "Cheek to Cheek - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Warwick Avenue - Duffy", - "id": "Karaoke Version" - }, - { - "title": "Early Morning Rain - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "The Winner Takes It All - John Barrowman", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stand the Rain - Seal", - "id": "Karaoke Version" - }, - { - "title": "Dancing Queen (EMO Style) - Puddles Pity Party", - "id": "Karaoke Version" - }, - { - "title": "Come What May - Moulin Rouge! (2001 film)", - "id": "Karaoke Version" - }, - { - "title": "Longer - Dan Fogelberg", - "id": "Karaoke Version" - }, - { - "title": "Ni**as in Paris - Jay-Z & Kanye West", - "id": "Karaoke Version" - }, - { - "title": "Because - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Knock on Wood - Seal", - "id": "Karaoke Version" - }, - { - "title": "Silent Night (with the Royal Philharmonic Orchestra) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Folsom Prison Blues (live) - Chris Stapleton", - "id": "Karaoke Version" - }, - { - "title": "Sing Me Back Home - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Will You Be There - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Burning Bridges - Foster & Allen & Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Last Night A DJ Saved My Life - Indeep", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Thank ABBA For The Music - Steps feat. Tina Cousins, Billie Piper, Cleopatra & B-Witched *", - "id": "2JJLCx1Bz1I" - }, - { - "title": "Hollywood Nights - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "Chasing Pavements - Postmodern Jukebox & Hannah Gill", - "id": "Karaoke Version" - }, - { - "title": "No Air - Jordin Sparks & Chris Brown", - "id": "Karaoke Version" - }, - { - "title": "S.O.S. - ABBA", - "id": "Karaoke Version" - }, - { - "title": "I Do, I Do, I Do, I Do, I Do - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Maria (Un, dos, tres) - Ricky Martin", - "id": "Karaoke Version" - }, - { - "title": "Lay Me Down (acoustic) - Sam Smith", - "id": "Karaoke Version" - }, - { - "title": "Tainted Love - Marilyn Manson", - "id": "Karaoke Version" - }, - { - "title": "Pontoon - Little Big Town", - "id": "Karaoke Version" - }, - { - "title": "Do I Wanna Know? - Arctic Monkeys", - "id": "Karaoke Version" - }, - { - "title": "When You're Gone - The Cranberries", - "id": "Karaoke Version" - }, - { - "title": "Slipping Through My Fingers - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Lay All Your Love On Me - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Knowing Me, Knowing You - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Honey, Honey - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Beneath Your Beautiful - Labrinth & Emeli Sandรฉ", - "id": "Karaoke Version" - }, - { - "title": "Start of Something New - High School Musical", - "id": "Karaoke Version" - }, - { - "title": "Auld Lang Syne - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Da Ya Think I'm Sexy - DNCE & Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "White Christmas (with the Royal Philharmonic Orchestra) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Take a Chance on Me - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Valerie - Amy Winehouse & Mark Ronson", - "id": "Karaoke Version" - }, - { - "title": "Super Trouper - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Dancing Queen - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Fernando - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Does Your Mother Know - ABBA", - "id": "Karaoke Version" - }, - { - "title": "I Have a Dream - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Medley ABBA - Medley Covers", - "id": "Karaoke Version" - }, - { - "title": "Chiquitita - ABBA", - "id": "Karaoke Version" - }, - { - "title": "The Winner Takes It All - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Thank You for the Music - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Money, Money, Money - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Mamma Mia - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Gimme! Gimme! Gimme! (A Man After Midnight) - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Waterloo - ABBA", - "id": "Karaoke Version" - }, - { - "title": "Softly and Tenderly (live) - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Wouldn't It Be Loverly - My Fair Lady (musical) (Julie Andrews)", - "id": "Karaoke Version" - }, - { - "title": "Just When I Needed You Most - Randy Vanwarmer", - "id": "Karaoke Version" - }, - { - "title": "That's All Right - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Gaston - Beauty and the Beast (1991 film)", - "id": "Karaoke Version" - }, - { - "title": "The Rose - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "True Love - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "I Drove All Night - Roy Orbison & Ward Thomas", - "id": "Karaoke Version" - }, - { - "title": "Save the Last Dance for Me (live) - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "The Show Must Go On (live) - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Take on Me (live MTV Unplugged) - a-ha", - "id": "Karaoke Version" - }, - { - "title": "Don't Mess With My Toot Toot - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stop Loving You (live) - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Praise Him - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Every Breath You Take - Postmodern Jukebox & Vonzell Solomon", - "id": "Karaoke Version" - }, - { - "title": "Good Night - Reece Mastin", - "id": "Karaoke Version" - }, - { - "title": "My Blue Heaven - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Promises Promises - Lisa Lois", - "id": "Karaoke Version" - }, - { - "title": "Come Home - Faith Hill", - "id": "Karaoke Version" - }, - { - "title": "All We'd Ever Need - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Happy Pills - Norah Jones", - "id": "Karaoke Version" - }, - { - "title": "Stormy Weather - Stormy Weather (1943 film) (Lena Horne)", - "id": "Karaoke Version" - }, - { - "title": "Again Again - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Stars Tonight - Lady A", - "id": "Karaoke Version" - }, - { - "title": "No Tomorrow - Orson", - "id": "Karaoke Version" - }, - { - "title": "Epic - Faith No More", - "id": "Karaoke Version" - }, - { - "title": "Let It Go - Cavo (Transformers)", - "id": "Karaoke Version" - }, - { - "title": "Hold Me - Anouk & Douwe Bob", - "id": "Karaoke Version" - }, - { - "title": "Put It in a Love Song - Alicia Keys & Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Papa Don't Preach - Glee", - "id": "Karaoke Version" - }, - { - "title": "God Rest Ye Merry, Gentlemen - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Just Can't Get Enough - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Something About The Sunshine - Anna Margaret", - "id": "Karaoke Version" - }, - { - "title": "Falling Over Me - Demi Lovato", - "id": "Karaoke Version" - }, - { - "title": "It's Just That Way - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Heartbeat - The Fray", - "id": "Karaoke Version" - }, - { - "title": "Braveheart - Neon Jungle", - "id": "Karaoke Version" - }, - { - "title": "Love and Understanding - Cher", - "id": "Karaoke Version" - }, - { - "title": "Remember December - Demi Lovato", - "id": "Karaoke Version" - }, - { - "title": "Sorry Seems to Be the Hardest Word - Blue & Elton John", - "id": "Karaoke Version" - }, - { - "title": "I Am What I Am - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "Singing Me Home - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Trainwreck - Demi Lovato", - "id": "Karaoke Version" - }, - { - "title": "It's So Nice to Have a Man Around the House - Toni Tennille", - "id": "Karaoke Version" - }, - { - "title": "Second Wind - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Will You Still Love Me Tomorrow - Lobo", - "id": "Karaoke Version" - }, - { - "title": "Stronger (clean) - Kanye West", - "id": "Karaoke Version" - }, - { - "title": "I Got You - Leona Lewis", - "id": "Karaoke Version" - }, - { - "title": "Stutter - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Can't Buy Me Love - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Don't Wait - Dashboard Confessional", - "id": "Karaoke Version" - }, - { - "title": "That Girl - Noisettes", - "id": "Karaoke Version" - }, - { - "title": "Inseparable - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "I'm So Lonesome I Could Cry (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "C'Mon C'Mon - Olly Murs", - "id": "Karaoke Version" - }, - { - "title": "Awesome - Veruca Salt", - "id": "Karaoke Version" - }, - { - "title": "Be Mine! - Robyn", - "id": "Karaoke Version" - }, - { - "title": "The Sun Died - Vigon Bamy Jay", - "id": "Karaoke Version" - }, - { - "title": "Ten Guitars - Michael English", - "id": "Karaoke Version" - }, - { - "title": "C'mon, C'mon - One Direction", - "id": "Karaoke Version" - }, - { - "title": "That's Where I Belong - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "If We Were a Movie - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Dance with Somebody (Who Loves Me) - These Kids Wear Crowns", - "id": "Karaoke Version" - }, - { - "title": "The More Boys I Meet - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Sea of Heartbreak - Marty Wilde", - "id": "Karaoke Version" - }, - { - "title": "Beauty and the Beast (Emma Thompson) - Beauty and the Beast (2017 film)", - "id": "Karaoke Version" - }, - { - "title": "SOS - Jonas Brothers", - "id": "Karaoke Version" - }, - { - "title": "Let Me Be There (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Coco Jambo - Mr. President", - "id": "Karaoke Version" - }, - { - "title": "We Didn't Know - Whitney Houston & Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Thankful - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Fire Bomb - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "The Gold Diggers' Song (We're in the Money) - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Three Days In A Row - Anouk", - "id": "Karaoke Version" - }, - { - "title": "Night and Day - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Hey Jude - Across The Universe (film) (Joe Anderson)", - "id": "Karaoke Version" - }, - { - "title": "Poker Face - Daughtry", - "id": "Karaoke Version" - }, - { - "title": "Make The World Go Away - Jim Reeves", - "id": "Karaoke Version" - }, - { - "title": "Baby - Glee", - "id": "Karaoke Version" - }, - { - "title": "Breathing - Jason Derulo", - "id": "Karaoke Version" - }, - { - "title": "The Muppet Show Theme - The Muppets (Jim Henson)", - "id": "Karaoke Version" - }, - { - "title": "Trying To Find Atlantis - Jamie O'Neal", - "id": "Karaoke Version" - }, - { - "title": "Let's Get Crazy - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "It's Martini Time - The Reverend Horton Heat", - "id": "Karaoke Version" - }, - { - "title": "Call the Shots - Girls Aloud", - "id": "Karaoke Version" - }, - { - "title": "Doesn't Mean Anything - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "Paparazzi - The Baseballs", - "id": "Karaoke Version" - }, - { - "title": "Tennessee Whiskey - George Jones", - "id": "Karaoke Version" - }, - { - "title": "Bitch - The Baseballs", - "id": "Karaoke Version" - }, - { - "title": "Wild Side of Life - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "Free - Ultra Natรฉ", - "id": "Karaoke Version" - }, - { - "title": "Black Eyed Boy - Texas", - "id": "Karaoke Version" - }, - { - "title": "Red Dirt Road (live) - Sugarland", - "id": "Karaoke Version" - }, - { - "title": "So Happy I Could Die - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Someone Else's Boy - Connie Francis", - "id": "Karaoke Version" - }, - { - "title": "Last Night - Chris Anderson & DJ Robbie", - "id": "Karaoke Version" - }, - { - "title": "Time To Get A Gun - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Born To Be Somebody - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "What I Like About You - Lillix", - "id": "Karaoke Version" - }, - { - "title": "I See You - Leona Lewis (Avatar film)", - "id": "Karaoke Version" - }, - { - "title": "Sweet Home Chicago - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "Beauty and The Beast - Postmodern Jukebox (Aubrey Logan)", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Seal", - "id": "Karaoke Version" - }, - { - "title": "Hot Girls in Love - Loverboy", - "id": "Karaoke Version" - }, - { - "title": "The Girl Can't Help It - Little Richard", - "id": "Karaoke Version" - }, - { - "title": "Timebomb - Pink", - "id": "Karaoke Version" - }, - { - "title": "Funny How Time Slips Away - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "You're So Fine - The Falcons", - "id": "Karaoke Version" - }, - { - "title": "Alejandro (Demo Version) - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "L-O-V-E - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Amalfi - Hooverphonic", - "id": "Karaoke Version" - }, - { - "title": "Didn't You Know How Much I Loved You - Kellie Pickler", - "id": "Karaoke Version" - }, - { - "title": "Hot - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "Following the Feeling - Moe Bandy & Judy Bailey", - "id": "Karaoke Version" - }, - { - "title": "At Last - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "I Think We're Alone Now - The Birthday Massacre", - "id": "Karaoke Version" - }, - { - "title": "Mambo Italiano - Patrizio Buanne", - "id": "Karaoke Version" - }, - { - "title": "No Spill Blood - Oingo Boingo", - "id": "Karaoke Version" - }, - { - "title": "I Want You to Want Me - Puddles Pity Party", - "id": "Karaoke Version" - }, - { - "title": "Be Our Guest - Beauty and the Beast (2017 film)", - "id": "Karaoke Version" - }, - { - "title": "#Beautiful - Mariah Carey & Miguel", - "id": "Karaoke Version" - }, - { - "title": "Don't Say Yes Until I Finish Talking - Smash", - "id": "Karaoke Version" - }, - { - "title": "L-O-V-E - Joss Stone", - "id": "Karaoke Version" - }, - { - "title": "Beautiful, Dirty, Rich - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Live Like We're Dying - Kris Allen", - "id": "Karaoke Version" - }, - { - "title": "When I Looked At Him - Exposรฉ", - "id": "Karaoke Version" - }, - { - "title": "That Ole Devil Called Love - Alison Moyet", - "id": "Karaoke Version" - }, - { - "title": "The Safety Dance - Glee", - "id": "Karaoke Version" - }, - { - "title": "Beautiful World - Paul Carrack", - "id": "Karaoke Version" - }, - { - "title": "Baby You're a Rich Man - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Bodhisattva - Steely Dan", - "id": "Karaoke Version" - }, - { - "title": "Any Which Way - Scissor Sisters & Kylie Minogue", - "id": "Karaoke Version" - }, - { - "title": "Jumper - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Airplanes - B.o.B & Hayley Williams", - "id": "Karaoke Version" - }, - { - "title": "Milkshake - Kelis", - "id": "Karaoke Version" - }, - { - "title": "Long Way to Go - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Save the Last Dance for Me - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Don't Give Up - Shannon Noll & Natalie Bassingthwaite", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Know You - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Don't Stand So Close to Me / Young Girl - Glee", - "id": "Karaoke Version" - }, - { - "title": "The Last Song - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Love Will Never Do (Single Version) - Janet Jackson", - "id": "Karaoke Version" - }, - { - "title": "Telephone - Glee", - "id": "Karaoke Version" - }, - { - "title": "Headache - Frank Black", - "id": "Karaoke Version" - }, - { - "title": "Love Without Tragedy / Mother Mary - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "I Love You Period - Dan Baird", - "id": "Karaoke Version" - }, - { - "title": "Things I'll Never Say - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "Denim and Leather - Saxon", - "id": "Karaoke Version" - }, - { - "title": "Boys Boys Boys - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Nobody's Perfect - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Dangerous - Slash & Fergie", - "id": "Karaoke Version" - }, - { - "title": "Praying for Time - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Lost - Katy Perry", - "id": "Karaoke Version" - }, - { - "title": "Video Phone - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Falls On Me - Fuel", - "id": "Karaoke Version" - }, - { - "title": "Get Off - Foxy", - "id": "Karaoke Version" - }, - { - "title": "Memories - Within Temptation", - "id": "Karaoke Version" - }, - { - "title": "Killer Queen - Queen", - "id": "Karaoke Version" - }, - { - "title": "Poker Face - The Baseballs", - "id": "Karaoke Version" - }, - { - "title": "I Honestly Love You - Olivia Newton-John", - "id": "Karaoke Version" - }, - { - "title": "Shake It Up! (Theme Song) - Selena Gomez", - "id": "Karaoke Version" - }, - { - "title": "Renegade - Daughtry", - "id": "Karaoke Version" - }, - { - "title": "For the Beauty of the Earth - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Slow Slow (Run Run) - Ay", - "id": "Karaoke Version" - }, - { - "title": "Girls Just Want to Have Fun - Glee", - "id": "Karaoke Version" - }, - { - "title": "What Now My Love - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Reach For Me - Smash", - "id": "Karaoke Version" - }, - { - "title": "Original - Smash", - "id": "Karaoke Version" - }, - { - "title": "Long Way To Happy - Pink", - "id": "Karaoke Version" - }, - { - "title": "Long Gone - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Wind Beneath My Wings - Steven Houghton", - "id": "Karaoke Version" - }, - { - "title": "Southern Nights - Glen Campbell", - "id": "Karaoke Version" - }, - { - "title": "It's Only Make Believe - Glen Campbell", - "id": "Karaoke Version" - }, - { - "title": "Whip My Hair - Willow Smith", - "id": "Karaoke Version" - }, - { - "title": "Ordinary Day - Vanessa Carlton", - "id": "Karaoke Version" - }, - { - "title": "Forgiven - Within Temptation", - "id": "Karaoke Version" - }, - { - "title": "No Love No Nothin' - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Runaway Boys - The Stray Cats", - "id": "Karaoke Version" - }, - { - "title": "The Cutter - Echo & The Bunnymen", - "id": "Karaoke Version" - }, - { - "title": "Kingdom Of Rain - The The", - "id": "Karaoke Version" - }, - { - "title": "Thank You - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "State of Shock - Michael Jackson & Mick Jagger", - "id": "Karaoke Version" - }, - { - "title": "Never Gonna Leave This Bed - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "One Day - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Muscles - Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "Chain of Fools - Little Caesar", - "id": "Karaoke Version" - }, - { - "title": "Gotta Find You - Camp Rock", - "id": "Karaoke Version" - }, - { - "title": "Happiness - Alexis Jordan", - "id": "Karaoke Version" - }, - { - "title": "Love for Sale - Billie Holiday", - "id": "Karaoke Version" - }, - { - "title": "Moto Psycho (alternative outro) - Megadeth", - "id": "Karaoke Version" - }, - { - "title": "Pills N Potions - Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "Exactly Where I'm At - Ween", - "id": "Karaoke Version" - }, - { - "title": "Dream All Day - The Posies", - "id": "Karaoke Version" - }, - { - "title": "You're My Better Half - Keith Urban", - "id": "Karaoke Version" - }, - { - "title": "Call My Name - Cheryl Cole", - "id": "Karaoke Version" - }, - { - "title": "When You Believe - Leon Jackson (X Factor)", - "id": "Karaoke Version" - }, - { - "title": "This Is What Makes Us Girls - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "Chasing Pavements (Live) - Adele", - "id": "Karaoke Version" - }, - { - "title": "Takin' Back My Love - Enrique Iglesias & Ciara", - "id": "Karaoke Version" - }, - { - "title": "Anger Never Dies - Hooverphonic", - "id": "Karaoke Version" - }, - { - "title": "Round And Round - Selena Gomez", - "id": "Karaoke Version" - }, - { - "title": "Family Portrait (Live Acoustic) - Pink", - "id": "Karaoke Version" - }, - { - "title": "Winning - Santana", - "id": "Karaoke Version" - }, - { - "title": "Insatiable - Darren Hayes", - "id": "Karaoke Version" - }, - { - "title": "I Dreamed You - Anastacia", - "id": "Karaoke Version" - }, - { - "title": "That's How Strong My Love Is - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "I Can't Make You Love Me - Boyz II Men", - "id": "Karaoke Version" - }, - { - "title": "Never Be Anyone Else but You - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "We Can - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "Behind Closed Doors - Charlie Rich", - "id": "Karaoke Version" - }, - { - "title": "Whatcha Say - Jason Derulo & Imogen Heap", - "id": "Karaoke Version" - }, - { - "title": "Theater - Katja Ebstein", - "id": "Karaoke Version" - }, - { - "title": "Autumn - Paolo Nutini", - "id": "Karaoke Version" - }, - { - "title": "All The Small Things - Postmodern Jukebox & Puddles Pity Party", - "id": "Karaoke Version" - }, - { - "title": "All I Ask of You - The Phantom of the Opera (musical)", - "id": "Karaoke Version" - }, - { - "title": "I'll Be You - The Replacements", - "id": "Karaoke Version" - }, - { - "title": "Rappin' Rodney (I Can't Take it Anymore) - Rodney Dangerfield", - "id": "Karaoke Version" - }, - { - "title": "Georgie - Pussycat", - "id": "Karaoke Version" - }, - { - "title": "Belief - Gavin DeGraw", - "id": "Karaoke Version" - }, - { - "title": "Lay Down Sally - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "This I Promise You - NSYNC", - "id": "Karaoke Version" - }, - { - "title": "I Want You Back - Hoodoo Gurus", - "id": "Karaoke Version" - }, - { - "title": "Dance In The Dark - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop The Party - Black Eyed Peas", - "id": "Karaoke Version" - }, - { - "title": "This Cat's on a Hot Tin Roof - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "Heartbeat - Enrique Iglesias & Nicole Scherzinger", - "id": "Karaoke Version" - }, - { - "title": "Sweet Memory - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Over the Rainbow - Katharine McPhee", - "id": "Karaoke Version" - }, - { - "title": "Just Another Day - Oingo Boingo", - "id": "Karaoke Version" - }, - { - "title": "Different Pulses - Asaf Avidan", - "id": "Karaoke Version" - }, - { - "title": "Wish I Had An Angel - Nightwish", - "id": "Karaoke Version" - }, - { - "title": "Heavy On My Heart - Anastacia", - "id": "Karaoke Version" - }, - { - "title": "Still Fly - Big Tymers", - "id": "Karaoke Version" - }, - { - "title": "Bottom Of The Ocean - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Hawaiian Wedding Song - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Everything Is Everything - Lauryn Hill", - "id": "Karaoke Version" - }, - { - "title": "Mean Mr. Mustard - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Remember Me - Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "Love Me Tomorrow - Chicago (band)", - "id": "Karaoke Version" - }, - { - "title": "Lean on Me - Club Nouveau", - "id": "Karaoke Version" - }, - { - "title": "Love Will Find a Way - Pablo Cruise", - "id": "Karaoke Version" - }, - { - "title": "From This Moment On (duet) - Shania Twain & Bryan White", - "id": "Karaoke Version" - }, - { - "title": "Life Is a Highway - Tom Cochrane", - "id": "Karaoke Version" - }, - { - "title": "Kid - The Pretenders", - "id": "Karaoke Version" - }, - { - "title": "Chug-A-Lug - The Kentucky Headhunters", - "id": "Karaoke Version" - }, - { - "title": "About KaraFun !", - "id": "MXO_U5JT6oE" - }, - { - "title": "Love's Taken Over - Chantรฉ Moore", - "id": "Karaoke Version" - }, - { - "title": "Paparazzi (MTV VMA Version) - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Unfinished Songs - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Torn - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "A Night to Remember - High School Musical 3", - "id": "Karaoke Version" - }, - { - "title": "Stay With Me Tonight - Jeffrey Osborne", - "id": "Karaoke Version" - }, - { - "title": "Every Breath You Take - Gloria Gaynor", - "id": "Karaoke Version" - }, - { - "title": "More Than Anyone - Gavin DeGraw", - "id": "Karaoke Version" - }, - { - "title": "Stop in the Name of Love / Free Your Mind - Glee", - "id": "Karaoke Version" - }, - { - "title": "Love Machine - Girls Aloud", - "id": "Karaoke Version" - }, - { - "title": "Born to Be Wild - Hinder", - "id": "Karaoke Version" - }, - { - "title": "Fool to Cry - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "It's All Coming Back to Me Now - Meat Loaf & Marion Raven", - "id": "Karaoke Version" - }, - { - "title": "Eh, Eh (Nothing Else I Can Say) - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "To Love You More - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Bedbugs And Ballyhoo - Echo & The Bunnymen", - "id": "Karaoke Version" - }, - { - "title": "Crush - David Archuleta", - "id": "Karaoke Version" - }, - { - "title": "Jailhouse Rock ('68 Comeback Special) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "When You Walk in the Room - DJ ร–tzi & The Bellamy Brothers", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Over the Rainbow / What a Wonderful World - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "If This Isn't Love - Jennifer Hudson", - "id": "Karaoke Version" - }, - { - "title": "You're My World - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "Free Me - Uriah Heep", - "id": "Karaoke Version" - }, - { - "title": "My Boyfriend's Back - The Angels", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Cameo Lover - Kimbra", - "id": "Karaoke Version" - }, - { - "title": "Coming Home - Diddy & Skylar Grey", - "id": "Karaoke Version" - }, - { - "title": "Bring It On Home to Me - Martina McBride & Gavin DeGraw", - "id": "Karaoke Version" - }, - { - "title": "Love Is Like Oxygen - Sweet (band)", - "id": "Karaoke Version" - }, - { - "title": "God Bless America - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Put a Little Love in Your Heart - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "Between the Cheats - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Lonely Too - Ilse DeLange", - "id": "Karaoke Version" - }, - { - "title": "No Matter What - Boyzone", - "id": "Karaoke Version" - }, - { - "title": "6, 8, 12 - Brian McKnight", - "id": "Karaoke Version" - }, - { - "title": "Ordinary Girl - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Loomer - My Bloody Valentine", - "id": "Karaoke Version" - }, - { - "title": "Backwards - Rascal Flatts", - "id": "Karaoke Version" - }, - { - "title": "I Woke Up in Love This Morning - The Partridge Family (David Cassidy)", - "id": "Karaoke Version" - }, - { - "title": "Cryin' For Me (Wayman's Song) - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "God Must Really Love Me - Craig Morgan", - "id": "Karaoke Version" - }, - { - "title": "I Want It All - High School Musical 3", - "id": "Karaoke Version" - }, - { - "title": "Pony Time - Chubby Checker", - "id": "Karaoke Version" - }, - { - "title": "Bad Romance - Glee", - "id": "Karaoke Version" - }, - { - "title": "Starstrukk - 3OH!3 & Katy Perry", - "id": "Karaoke Version" - }, - { - "title": "Can I Have This Dance - High School Musical 3", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Your Man - James Blunt", - "id": "Karaoke Version" - }, - { - "title": "I Miss You - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Blow Me (One Last Kiss) - Pink", - "id": "Karaoke Version" - }, - { - "title": "Not As We - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "One in a Million - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "You Lie - The Band Perry", - "id": "Karaoke Version" - }, - { - "title": "Higher - Taio Cruz & Kylie Minogue", - "id": "Karaoke Version" - }, - { - "title": "All The Right Moves - OneRepublic", - "id": "Karaoke Version" - }, - { - "title": "It's Probably Me - Sting & Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Leader of the Pack - The Shangri-Las", - "id": "Karaoke Version" - }, - { - "title": "I Want a Cowboy - Reba McEntire", - "id": "Karaoke Version" - }, - { - "title": "Pencil Full of Lead - Jimmy Buckley", - "id": "Karaoke Version" - }, - { - "title": "Believe - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Gotta Go My Own Way - High School Musical 2", - "id": "Karaoke Version" - }, - { - "title": "House of the Rising Sun - Haley Reinhart (American Idol)", - "id": "Karaoke Version" - }, - { - "title": "Ridin' Solo - Jason Derulo", - "id": "Karaoke Version" - }, - { - "title": "On the Atchison, Topeka and the Santa Fe - The Harvey Girls", - "id": "Karaoke Version" - }, - { - "title": "Written In The Stars - Tinie Tempah & Eric Turner", - "id": "Karaoke Version" - }, - { - "title": "Zou Bisou Bisou (English version) - Jessica Parรฉ", - "id": "Karaoke Version" - }, - { - "title": "Blessed Be the Tie That Binds - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Express Yourself - Labrinth", - "id": "Karaoke Version" - }, - { - "title": "A Woman's Love - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Berlin City Girl - Culcha Candela", - "id": "Karaoke Version" - }, - { - "title": "It's Alright, It's OK - Ashley Tisdale", - "id": "Karaoke Version" - }, - { - "title": "You'll Never Get to Heaven (If You Break My Heart) - Dionne Warwick", - "id": "Karaoke Version" - }, - { - "title": "Never Felt This Way - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "Apologies - Grace Potter and the Nocturnals", - "id": "Karaoke Version" - }, - { - "title": "Rock and Roll Dreams Come Through - Meat Loaf", - "id": "Karaoke Version" - }, - { - "title": "There's No Business Like Show Business - Annie Get Your Gun (film)", - "id": "Karaoke Version" - }, - { - "title": "Heaven Sent - Keyshia Cole", - "id": "Karaoke Version" - }, - { - "title": "Sun Is Up - Inna", - "id": "Karaoke Version" - }, - { - "title": "Misery (Acoustic) - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Life's What You Make It - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Just Like You - Three Days Grace", - "id": "Karaoke Version" - }, - { - "title": "Talk of the Town - The Pretenders", - "id": "Karaoke Version" - }, - { - "title": "When We Swing (Theme Song) - Family Guy", - "id": "Karaoke Version" - }, - { - "title": "Free Nelson Mandela - The Specials", - "id": "Karaoke Version" - }, - { - "title": "Let's Get Loud - The Baseballs", - "id": "Karaoke Version" - }, - { - "title": "It's On - Camp Rock", - "id": "Karaoke Version" - }, - { - "title": "In My Head - Jason Derulo", - "id": "Karaoke Version" - }, - { - "title": "Let's Start a Band - Amy Macdonald", - "id": "Karaoke Version" - }, - { - "title": "All You Wanted - Michelle Branch", - "id": "Karaoke Version" - }, - { - "title": "Don't Say Nothin' Bad (About My Baby) - The Cookies", - "id": "Karaoke Version" - }, - { - "title": "Our Little Secret - Smash", - "id": "Karaoke Version" - }, - { - "title": "Ebb Tide - The Righteous Brothers", - "id": "Karaoke Version" - }, - { - "title": "Bristol Stomp - The Dovells", - "id": "Karaoke Version" - }, - { - "title": "Wanna Be Startin' Somethin' 2008 (Akon remix) - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Tomorrow, Wendy - Concrete Blonde", - "id": "Karaoke Version" - }, - { - "title": "Innuendo - Queen", - "id": "Karaoke Version" - }, - { - "title": "Disappear - INXS", - "id": "Karaoke Version" - }, - { - "title": "Infinity 2008 - Guru Josh", - "id": "Karaoke Version" - }, - { - "title": "Wake Up Call - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Born In East L.A. (Parody of Born in the USA) - Cheech & Chong", - "id": "Karaoke Version" - }, - { - "title": "Sugar on the Floor - Etta James", - "id": "Karaoke Version" - }, - { - "title": "Sick and Tired - Anastacia", - "id": "Karaoke Version" - }, - { - "title": "EN casey jones don t ha ha 37589", - "id": "g8OVWkDWvkY" - }, - { - "title": "Edge of Glory - Glee", - "id": "Karaoke Version" - }, - { - "title": "Ya Ya - Lee Dorsey", - "id": "Karaoke Version" - }, - { - "title": "Rose of Cimarron - Poco", - "id": "Karaoke Version" - }, - { - "title": "Every Time I Hear That Song - Blake Shelton", - "id": "Karaoke Version" - }, - { - "title": "Sympathy - Uriah Heep", - "id": "Karaoke Version" - }, - { - "title": "Higher Than This - Ledisi", - "id": "Karaoke Version" - }, - { - "title": "A Favor House Atlantic - Coheed and Cambria", - "id": "Karaoke Version" - }, - { - "title": "Yellow Rose of Texas - 1950s Standards", - "id": "Karaoke Version" - }, - { - "title": "Surf City - Jan And Dean", - "id": "Karaoke Version" - }, - { - "title": "Dance Dance Dance (Yowsah Yowsah Yowsah) - Chic", - "id": "Karaoke Version" - }, - { - "title": "Get The Funk Out - Extreme", - "id": "Karaoke Version" - }, - { - "title": "Only One (Single Version) - Yellowcard", - "id": "Karaoke Version" - }, - { - "title": "Nancy (With the Laughing Face) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "We're Young And Beautiful - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "I Will Survive - CAKE", - "id": "Karaoke Version" - }, - { - "title": "Whatever U Want - Tony! Toni! Tonรฉ!", - "id": "Karaoke Version" - }, - { - "title": "Yesterday (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Get Down - Gilbert O'Sullivan", - "id": "Karaoke Version" - }, - { - "title": "Take Me in Your Arms (Rock Me a Little While) - The Doobie Brothers", - "id": "Karaoke Version" - }, - { - "title": "Don't Walk Away - Jade (R&B group)", - "id": "Karaoke Version" - }, - { - "title": "Letterbox - They Might Be Giants", - "id": "Karaoke Version" - }, - { - "title": "Ballad Of Davy Crockett - The Kentucky Headhunters", - "id": "Karaoke Version" - }, - { - "title": "Somewhere in the Night - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Fly On The Wall - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Word Up - Gun", - "id": "Karaoke Version" - }, - { - "title": "Speed King (Single Version) - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "Sweat (David Guetta Remix) - Snoop Dogg", - "id": "Karaoke Version" - }, - { - "title": "Stand Up (For The Champions) - Right Said Fred", - "id": "Karaoke Version" - }, - { - "title": "I Still Like Bologna - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Crazy - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Fashion (Confessions of a Shopaholic) - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Embarrassment - Madness", - "id": "Karaoke Version" - }, - { - "title": "Mean - Pink", - "id": "Karaoke Version" - }, - { - "title": "Heartaches by the Number - Ray Price", - "id": "Karaoke Version" - }, - { - "title": "September - Trolls", - "id": "Karaoke Version" - }, - { - "title": "Spoiled - Joss Stone", - "id": "Karaoke Version" - }, - { - "title": "Lambada - Kaoma", - "id": "Karaoke Version" - }, - { - "title": "Didn't We Almost Have It All - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "This Is My Song - Petula Clark", - "id": "Karaoke Version" - }, - { - "title": "Can't Take That Away (Mariah's Theme) - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "It's Impossible - Perry Como", - "id": "Karaoke Version" - }, - { - "title": "Jungle Love - Steve Miller Band", - "id": "Karaoke Version" - }, - { - "title": "You're the Top - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Back For Good - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "When Will I Be Loved - John Fogerty & Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Big Love - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "And I Love You So - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Charmless Man - Blur", - "id": "Karaoke Version" - }, - { - "title": "Living Next Door to Alice (feat. Roy Chubby Brown) - Smokie", - "id": "Karaoke Version" - }, - { - "title": "The More I See You - Chris Montez", - "id": "Karaoke Version" - }, - { - "title": "Me & Mr Jones - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Rhythm of the Rain - Jason Donovan", - "id": "Karaoke Version" - }, - { - "title": "Another Time, Another Place - Sandi Patty & Wayne Watson", - "id": "Karaoke Version" - }, - { - "title": "Like My Mother Does - Lauren Alaina", - "id": "Karaoke Version" - }, - { - "title": "Blue Monday - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "I Look So Good Without You - Jessie James", - "id": "Karaoke Version" - }, - { - "title": "One After 909 - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Scream - High School Musical 3", - "id": "Karaoke Version" - }, - { - "title": "(Listen to The) Flower People - Spinal Tap", - "id": "Karaoke Version" - }, - { - "title": "Follow Through - Gavin DeGraw", - "id": "Karaoke Version" - }, - { - "title": "Set Fire to the Rain (Moto Blanco edit) - Adele", - "id": "Karaoke Version" - }, - { - "title": "Boston - Augustana", - "id": "Karaoke Version" - }, - { - "title": "Damn I Wish I Was Your Lover - Sophie B. Hawkins", - "id": "Karaoke Version" - }, - { - "title": "There She Goes - Taio Cruz & Pitbull", - "id": "Karaoke Version" - }, - { - "title": "A Taste of Honey - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Anytime You Need a Friend - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Suicide Blonde - INXS", - "id": "Karaoke Version" - }, - { - "title": "Set the Night to Music - Roberta Flack & Maxi Priest", - "id": "Karaoke Version" - }, - { - "title": "Everybody's Got Something to Hide Except Me and My Monkey - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "It's My Party - Quincy Jones & Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "If I Had You - Alabama", - "id": "Karaoke Version" - }, - { - "title": "Bang The Drum All Day - Todd Rundgren", - "id": "Karaoke Version" - }, - { - "title": "Under the Bridges of Paris - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "And the Grass Won't Pay No Mind - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Let Me Fall - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Womanizer - Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "Superhuman - Chris Brown & Keri Hilson", - "id": "Karaoke Version" - }, - { - "title": "How Low - Ludacris & Shawnna", - "id": "Karaoke Version" - }, - { - "title": "Art Of Love - Guy Sebastian & Jordin Sparks", - "id": "Karaoke Version" - }, - { - "title": "Desperado Love - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "I'll Remember You - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "If I Never See Your Face Again - Maroon 5 & Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Whiskey River (Live) - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Run - Smash", - "id": "Karaoke Version" - }, - { - "title": "Tomorrow Never Knows - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Be Good Johnny - Men at Work", - "id": "Karaoke Version" - }, - { - "title": "Say What You Want - Texas", - "id": "Karaoke Version" - }, - { - "title": "Earth Angel (Will You Be Mine?) - Back to the Future", - "id": "Karaoke Version" - }, - { - "title": "The Sweetest Love - Robin Thicke", - "id": "Karaoke Version" - }, - { - "title": "Wrong - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "The Change - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "Chances - Five for Fighting", - "id": "Karaoke Version" - }, - { - "title": "In-A-Gadda-Da-Vida (Single Version) - Iron Butterfly", - "id": "Karaoke Version" - }, - { - "title": "Someday You'll Want Me to Want You - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Isle of Capri - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Having a Party - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Atlantis - No Angels & Donovan", - "id": "Karaoke Version" - }, - { - "title": "Beauty and the Beast - Beauty and the Beast (1991 film)", - "id": "Karaoke Version" - }, - { - "title": "Ever Fallen in Love (With Someone You Shouldn't 've) - Buzzcocks", - "id": "Karaoke Version" - }, - { - "title": "Make a Wave - Disney's Friends For Change (Joe Jonas & Demi Lovato)", - "id": "Karaoke Version" - }, - { - "title": "Beat It - Groove Da Praia", - "id": "Karaoke Version" - }, - { - "title": "Wherever I Lay My Hat (That's My Home) - Paul Young", - "id": "Karaoke Version" - }, - { - "title": "Good Morning Heartache - Gretchen Wilson", - "id": "Karaoke Version" - }, - { - "title": "Nation - TiBZ", - "id": "Karaoke Version" - }, - { - "title": "Bรฉsame mucho - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "A Song for You - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Lips of an Angel - Hinder", - "id": "Karaoke Version" - }, - { - "title": "Love Is Gone - David Guetta", - "id": "Karaoke Version" - }, - { - "title": "It's a Sin to Tell a Lie - Pat Boone", - "id": "Karaoke Version" - }, - { - "title": "Beauty and the Beast - Beauty and the Beast", - "id": "Karaoke Version" - }, - { - "title": "Everyday - High School Musical 2", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop Me Now - McFly", - "id": "Karaoke Version" - }, - { - "title": "I've Got Dreams To Remember - Otis Redding", - "id": "Karaoke Version" - }, - { - "title": "That's My Goal - Shayne Ward", - "id": "Karaoke Version" - }, - { - "title": "I'm So Tired - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Pull Up to the Bumper - Grace Jones", - "id": "Karaoke Version" - }, - { - "title": "I Stand Alone - Godsmack", - "id": "Karaoke Version" - }, - { - "title": "Yellow Rose of Texas - Mitch Miller", - "id": "Karaoke Version" - }, - { - "title": "Lollipop (Candyman) - Aqua", - "id": "Karaoke Version" - }, - { - "title": "You're Sensational - Frank Sinatra (High Society)", - "id": "Karaoke Version" - }, - { - "title": "High Energy - Evelyn Thomas", - "id": "Karaoke Version" - }, - { - "title": "I Get The Sweetest Feeling - Jackie Wilson", - "id": "Karaoke Version" - }, - { - "title": "To Be a Lover - Billy Idol", - "id": "Karaoke Version" - }, - { - "title": "Diary - Bread", - "id": "Karaoke Version" - }, - { - "title": "Bleed Red - Ronnie Dunn", - "id": "Karaoke Version" - }, - { - "title": "Super Bon Bon - Soul Coughing", - "id": "Karaoke Version" - }, - { - "title": "Suzanna - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "Pride and Joy - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Les bicyclettes de Belsize - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Let It Be - Gregory Porter", - "id": "Karaoke Version" - }, - { - "title": "Freewill - Rush", - "id": "Karaoke Version" - }, - { - "title": "(You Drive Me) Crazy (Album Version) - Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "Spread Your Wings - Queen", - "id": "Karaoke Version" - }, - { - "title": "Monster - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Blue Suede Shoes - Cliff Richard & Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I Will Always Love You (duet) - Dolly Parton & Vince Gill", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah (duet) - Sing (Tori Kelly & Jennifer Hudson)", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Sing (Tori Kelly)", - "id": "Karaoke Version" - }, - { - "title": "Running Up That Hill - Placebo", - "id": "Karaoke Version" - }, - { - "title": "Spanish Eyes - Willie Nelson & Julio Iglesias", - "id": "Karaoke Version" - }, - { - "title": "Bad Boy - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Goodbye to You - Scandal (Patty Smyth)", - "id": "Karaoke Version" - }, - { - "title": "Selling the Drama - Live", - "id": "Karaoke Version" - }, - { - "title": "One Day at a Time - Don Gibson", - "id": "Karaoke Version" - }, - { - "title": "You've Lost That Lovin' Feelin' (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Sailing - Mike Oldfield & Luke Spiller", - "id": "Karaoke Version" - }, - { - "title": "Bad Company - Five Finger Death Punch", - "id": "Karaoke Version" - }, - { - "title": "Mushaboom - Feist", - "id": "Karaoke Version" - }, - { - "title": "Ask Me Why - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Down On The Beach Tonight - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "If You Wanna Be Happy - Jimmy Soul", - "id": "Karaoke Version" - }, - { - "title": "Walk on Water - Eddie Money", - "id": "Karaoke Version" - }, - { - "title": "Save Me, San Francisco - Train", - "id": "Karaoke Version" - }, - { - "title": "Everybody Plays the Fool - The Main Ingredient", - "id": "Karaoke Version" - }, - { - "title": "Smokin' in the Boys Room - Brownsville Station", - "id": "Karaoke Version" - }, - { - "title": "Someday Never Comes - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "Strip - Adam Ant", - "id": "Karaoke Version" - }, - { - "title": "What A Girl Wants - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "Good Mother (Single Version) - Jann Arden", - "id": "Karaoke Version" - }, - { - "title": "Vanilla Twilight - Owl City", - "id": "Karaoke Version" - }, - { - "title": "Every Time Two Fools Collide - Kenny Rogers & Dottie West", - "id": "Karaoke Version" - }, - { - "title": "Big Train (From Memphis) - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "Me & Mrs. You - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Looks Like We Made It - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Today 4 U - Rent (musical)", - "id": "Karaoke Version" - }, - { - "title": "That's Why (You Go Away) - Michael Learns to Rock", - "id": "Karaoke Version" - }, - { - "title": "Grace Kelly (Acoustic) - Mika", - "id": "Karaoke Version" - }, - { - "title": "I Know Why (And So Do You) - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "For No One - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Baby, Now That I've Found You - Alison Krauss", - "id": "Karaoke Version" - }, - { - "title": "Lea - The Cats", - "id": "Karaoke Version" - }, - { - "title": "Clint Eastwood - Gorillaz", - "id": "Karaoke Version" - }, - { - "title": "For the Good Times - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "True Survivor - David Hasselhoff", - "id": "Karaoke Version" - }, - { - "title": "Dance, Dance - Fall Out Boy", - "id": "Karaoke Version" - }, - { - "title": "I'll Fly with You - Gigi D'Agostino", - "id": "Karaoke Version" - }, - { - "title": "Come on Eileen - Michael English", - "id": "Karaoke Version" - }, - { - "title": "I.L.B.T.'s (I Like Big Tits) - Joe Walsh", - "id": "Karaoke Version" - }, - { - "title": "Judy - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Meet Me in St. Louis, Louis - Meet Me in St. Louis (Judy Garland)", - "id": "Karaoke Version" - }, - { - "title": "Calling All Angels - Train", - "id": "Karaoke Version" - }, - { - "title": "Let's Face the Music and Dance - Sing", - "id": "Karaoke Version" - }, - { - "title": "Weak - SWV", - "id": "Karaoke Version" - }, - { - "title": "Determinate - Lemonade Mouth", - "id": "Karaoke Version" - }, - { - "title": "I've Got You Under My Skin (with Bono) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Popular - Eric Saade", - "id": "Karaoke Version" - }, - { - "title": "Hold Back The Rain - Duran Duran", - "id": "Karaoke Version" - }, - { - "title": "Tonight I'm Getting Over You - Carly Rae Jepsen", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stop Loving You (live Hawaii) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Whiskey River - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Someday - All-4-One", - "id": "Karaoke Version" - }, - { - "title": "Sweet Nothing - Calvin Harris", - "id": "Karaoke Version" - }, - { - "title": "Mississippi Queen - Mountain", - "id": "Karaoke Version" - }, - { - "title": "There Goes - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Two Lovers - Mary Wells", - "id": "Karaoke Version" - }, - { - "title": "If You Really Love Me - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Public Relations - Smash", - "id": "Karaoke Version" - }, - { - "title": "In Too Deep - Genesis", - "id": "Karaoke Version" - }, - { - "title": "Honky Tonk Attitude - Joe Diffie", - "id": "Karaoke Version" - }, - { - "title": "I'll Never Smile Again - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Lonely No More - Rob Thomas", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Life - Ace of Base", - "id": "Karaoke Version" - }, - { - "title": "L-O-V-E - Olivia Ong ()", - "id": "Karaoke Version" - }, - { - "title": "Everybody's Trying to Be My Baby - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Girls Just Want to Have Fun - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Walking On The Moon - Groove Da Praia", - "id": "Karaoke Version" - }, - { - "title": "Karaoke In Too Deep - Genesis *", - "id": "K-CQf35MNOs" - }, - { - "title": "Song for Guy - Elton John", - "id": "Karaoke Version" - }, - { - "title": "I Heard Your Voice in a Dream - Smash", - "id": "Karaoke Version" - }, - { - "title": "Hot Fun in the Summertime - Sly and the Family Stone", - "id": "Karaoke Version" - }, - { - "title": "The Name Game - Shirley Ellis", - "id": "Karaoke Version" - }, - { - "title": "Rose of My Heart - Robert Mizzell", - "id": "Karaoke Version" - }, - { - "title": "Home - Glee", - "id": "Karaoke Version" - }, - { - "title": "Funkytown - Pseudo Echo", - "id": "Karaoke Version" - }, - { - "title": "Hold On - Santana", - "id": "Karaoke Version" - }, - { - "title": "Bohemian Rhapsody (live) - Imany", - "id": "Karaoke Version" - }, - { - "title": "Love - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "We Are the People - Empire of the Sun", - "id": "Karaoke Version" - }, - { - "title": "Hakuna Matata (English version) - The Lion King (1994 film)", - "id": "Karaoke Version" - }, - { - "title": "Jack's Lament - The Nightmare Before Christmas", - "id": "Karaoke Version" - }, - { - "title": "Johnny Come Lately - Steve Earle", - "id": "Karaoke Version" - }, - { - "title": "Superman (It's Not Easy) - Five for Fighting", - "id": "Karaoke Version" - }, - { - "title": "Wake Up Little Susie - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "No Light, No Light - Florence + The Machine", - "id": "Karaoke Version" - }, - { - "title": "Vision of Love - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Why I Love You So Much - Monica", - "id": "Karaoke Version" - }, - { - "title": "Up the Junction - Squeeze", - "id": "Karaoke Version" - }, - { - "title": "Rock the Boat - Aaliyah", - "id": "Karaoke Version" - }, - { - "title": "Little Jeannie - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Get Your Kicks on Route 66 - Bing Crosby & The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "Overnight Male - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Just My Imagination - The Cranberries", - "id": "Karaoke Version" - }, - { - "title": "Waiting Outside The Lines - Greyson Chance", - "id": "Karaoke Version" - }, - { - "title": "The South's Gonna' Do It - The Charlie Daniels Band", - "id": "Karaoke Version" - }, - { - "title": "Lover Man - Renee Olstead", - "id": "Karaoke Version" - }, - { - "title": "Tragedy - Marc Anthony", - "id": "Karaoke Version" - }, - { - "title": "Sweet Lorraine - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "The Leaving of Liverpool - The Young Dubliners", - "id": "Karaoke Version" - }, - { - "title": "Burnin' Up - Jonas Brothers", - "id": "Karaoke Version" - }, - { - "title": "Barely Breathing - Duncan Sheik", - "id": "Karaoke Version" - }, - { - "title": "Notre Dame Victory March - Irish Band", - "id": "Karaoke Version" - }, - { - "title": "Concrete and Clay - Brian Parker & Tommy Moeller", - "id": "Karaoke Version" - }, - { - "title": "Hollywood Swinging - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "For Your Eyes Only - James Bond (Sheena Easton)", - "id": "Karaoke Version" - }, - { - "title": "Since I Fell for You - Lenny Welch", - "id": "Karaoke Version" - }, - { - "title": "The Nicest Kids in Town - Hairspray (2007 film)", - "id": "Karaoke Version" - }, - { - "title": "Always The Last To Know - Del Amitri", - "id": "Karaoke Version" - }, - { - "title": "Show Me Love - Robyn", - "id": "Karaoke Version" - }, - { - "title": "Old Time Rock 'n Roll - Michael Bolton", - "id": "Karaoke Version" - }, - { - "title": "Fallen - Lauren Wood", - "id": "Karaoke Version" - }, - { - "title": "That's All Right (Elvis in Concert 1977) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Fastlove - Adele", - "id": "Karaoke Version" - }, - { - "title": "I Will Remember You - Sarah McLachlan", - "id": "Karaoke Version" - }, - { - "title": "Yes Sir, I Can Boogie - Baccara", - "id": "Karaoke Version" - }, - { - "title": "Land of 1000 Dances - Cannibal and the Headhunters", - "id": "Karaoke Version" - }, - { - "title": "Never Can Say Goodbye - Gloria Gaynor", - "id": "Karaoke Version" - }, - { - "title": "Try to Remember - Harry Belafonte", - "id": "Karaoke Version" - }, - { - "title": "Have You Seen Her - The Chi-Lites", - "id": "Karaoke Version" - }, - { - "title": "Burning Bridges - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "Tell Me the Story of Jesus - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "The Ripper - Judas Priest", - "id": "Karaoke Version" - }, - { - "title": "Now and Forever - Richard Marx", - "id": "Karaoke Version" - }, - { - "title": "Please Send Me Someone to Love - Sade", - "id": "Karaoke Version" - }, - { - "title": "Treat Her Like a Lady - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Dear Diamond - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "La La Land - Demi Lovato", - "id": "Karaoke Version" - }, - { - "title": "No More Mister Nice Guy - Alice Cooper", - "id": "Karaoke Version" - }, - { - "title": "Dirty Little Secret - The All-American Rejects", - "id": "Karaoke Version" - }, - { - "title": "Blue Monday-95 - New Order", - "id": "Karaoke Version" - }, - { - "title": "Stand - Smash", - "id": "Karaoke Version" - }, - { - "title": "Don't Blink - Kenny Chesney", - "id": "Karaoke Version" - }, - { - "title": "You Look Good - Lady A", - "id": "Karaoke Version" - }, - { - "title": "I'm Still Standing - Sing (Taron Egerton)", - "id": "Karaoke Version" - }, - { - "title": "Pennies From Heaven - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Authority Song - John Mellencamp", - "id": "Karaoke Version" - }, - { - "title": "Bakerman - Laid Back & Hanne Boel", - "id": "Karaoke Version" - }, - { - "title": "Amarillo Sky - Jason Aldean", - "id": "Karaoke Version" - }, - { - "title": "Nowadays - Chicago (the musical)", - "id": "Karaoke Version" - }, - { - "title": "Uncharted - Sara Bareilles", - "id": "Karaoke Version" - }, - { - "title": "The Happening - The Supremes", - "id": "Karaoke Version" - }, - { - "title": "Wrapped Up In You - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "I Don't Dance - High School Musical 2", - "id": "Karaoke Version" - }, - { - "title": "Jailbreak - Thin Lizzy", - "id": "Karaoke Version" - }, - { - "title": "Brown Eyes - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "How Blue - Reba McEntire", - "id": "Karaoke Version" - }, - { - "title": "Twentysomething - Jamie Cullum", - "id": "Karaoke Version" - }, - { - "title": "Different Kind Of Fine - Zac Brown Band", - "id": "Karaoke Version" - }, - { - "title": "Stay with Me - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Whose Bed Have Your Boots Been Under? - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "My Boy Lollipop - Millie Small", - "id": "Karaoke Version" - }, - { - "title": "Groove Me - King Floyd", - "id": "Karaoke Version" - }, - { - "title": "Help Yourself - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "All Together Now - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Fidelity - Regina Spektor", - "id": "Karaoke Version" - }, - { - "title": "New York, New York (duet) - Frank Sinatra & Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "This Is Me (acoustic) - Camp Rock", - "id": "Karaoke Version" - }, - { - "title": "Boyz-n-the-Hood - Eazy-E", - "id": "Karaoke Version" - }, - { - "title": "Can't Stop Loving You - Phil Collins", - "id": "Karaoke Version" - }, - { - "title": "Razzle Dazzle - Chicago (the musical) & Jerry Orbach", - "id": "Karaoke Version" - }, - { - "title": "You're My Favorite Song - Camp Rock (Joe Jonas & Demi Lovato)", - "id": "Karaoke Version" - }, - { - "title": "It Don't Mean a Thing (If It Ain't Got That Swing) - Big Time Operator", - "id": "Karaoke Version" - }, - { - "title": "Just Another Day - Jon Secada", - "id": "Karaoke Version" - }, - { - "title": "Hair - The Cowsills", - "id": "Karaoke Version" - }, - { - "title": "These Boots Are Made for Walkin' - Jessica Simpson", - "id": "Karaoke Version" - }, - { - "title": "Theme from Shaft - Isaac Hayes", - "id": "Karaoke Version" - }, - { - "title": "For Your Love - Ed Townsend", - "id": "Karaoke Version" - }, - { - "title": "She's in Love with the Boy - Trisha Yearwood", - "id": "Karaoke Version" - }, - { - "title": "Me and My Shadow - Robbie Williams & Jonathan Wilkes", - "id": "Karaoke Version" - }, - { - "title": "Try Again - Aaliyah", - "id": "Karaoke Version" - }, - { - "title": "The Silence - Alexandra Burke", - "id": "Karaoke Version" - }, - { - "title": "Get Down Saturday Night - Oliver Cheatham", - "id": "Karaoke Version" - }, - { - "title": "A Certain Smile - Johnny Mathis", - "id": "Karaoke Version" - }, - { - "title": "Sovereign Light Cafรฉ - Keane", - "id": "Karaoke Version" - }, - { - "title": "Breaking Free - High School Musical", - "id": "Karaoke Version" - }, - { - "title": "My Blue Heaven - 1920s Standards", - "id": "Karaoke Version" - }, - { - "title": "A Song for You - Herbie Hancock & Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "Don't You Worry 'bout a Thing - Sing (Tori Kelly)", - "id": "Karaoke Version" - }, - { - "title": "You Always Hurt the One You Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Radio Nowhere - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Respect Yourself - Bruce Willis", - "id": "Karaoke Version" - }, - { - "title": "Take Your Time (Do It Right) - The S.O.S. Band", - "id": "Karaoke Version" - }, - { - "title": "My Favourite Game - The Cardigans", - "id": "Karaoke Version" - }, - { - "title": "(Meet) The Flintstones - The B-52's", - "id": "Karaoke Version" - }, - { - "title": "Red, Red Wine - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Tonight, I Celebrate My Love - Peabo Bryson & Roberta Flack", - "id": "Karaoke Version" - }, - { - "title": "The Wall - Kansas", - "id": "Karaoke Version" - }, - { - "title": "Still They Ride - Journey", - "id": "Karaoke Version" - }, - { - "title": "What Now My Love (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I've Got My Love to Keep Me Warm - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "My One And Only Thrill - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Have a Nice Day - Stereophonics", - "id": "Karaoke Version" - }, - { - "title": "Lazy Sunday - Small Faces", - "id": "Karaoke Version" - }, - { - "title": "Instant Karma! (We All Shine On) - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "Beautiful People - Chris Brown & Benny Benassi", - "id": "Karaoke Version" - }, - { - "title": "Against All Odds (Take a Look at Me Now) - Steve Brookstein", - "id": "Karaoke Version" - }, - { - "title": "Hit Me with Your Rhythm Stick - Ian Dury & The Blockheads", - "id": "Karaoke Version" - }, - { - "title": "Take Me to the River - Annie Lennox", - "id": "Karaoke Version" - }, - { - "title": "Follow You Follow Me - Genesis", - "id": "Karaoke Version" - }, - { - "title": "Helter Skelter - Across The Universe (film) (Dana Fuchs)", - "id": "Karaoke Version" - }, - { - "title": "Mack the Knife - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Song Sung Blue (live Hot August Night) - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Abacab (Single Version) - Genesis", - "id": "Karaoke Version" - }, - { - "title": "Clint Eastwood (remix) - Gorillaz", - "id": "Karaoke Version" - }, - { - "title": "Such a Night - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I Haven't Stopped Dancing Yet - Pat & Mick", - "id": "Karaoke Version" - }, - { - "title": "Missing You - Tamia & Gladys Knight, Chaka Khan & Brandy", - "id": "Karaoke Version" - }, - { - "title": "Brother Jukebox - Mark Chesnutt", - "id": "Karaoke Version" - }, - { - "title": "Fame - Fame (2009 film)", - "id": "Karaoke Version" - }, - { - "title": "Weekend in Havana - Carmen Miranda", - "id": "Karaoke Version" - }, - { - "title": "Miracle - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "At Your Feet - Smash", - "id": "Karaoke Version" - }, - { - "title": "Prince Ali - Aladdin (musical)", - "id": "Karaoke Version" - }, - { - "title": "Janie's Got A Gun - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "It's Now or Never (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Never Can Say Goodbye - Jimmy Somerville (The Communards)", - "id": "Karaoke Version" - }, - { - "title": "Storms Never Last (live at the Grand Ole Opry) - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Take That Look Off Your Face - Song & Dance (Marti Webb)", - "id": "Karaoke Version" - }, - { - "title": "Back In The Day (Puff) - Erykah Badu", - "id": "Karaoke Version" - }, - { - "title": "Don't Cry Daddy - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "You've Really Got a Hold on Me - The Miracles & Smokey Robinson", - "id": "Karaoke Version" - }, - { - "title": "Wild World - Mr. Big", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Florence + The Machine", - "id": "Karaoke Version" - }, - { - "title": "Move it (2016 Version) - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Blue Suede Shoes (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "What Is Love - Lost Frequencies", - "id": "Karaoke Version" - }, - { - "title": "Singing The Blues - The Kentucky Headhunters", - "id": "Karaoke Version" - }, - { - "title": "I Just Can't Help Believin' - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I've Got a Thing About You Baby - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Always on My Mind - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "My Baby Just Cares for Me - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Fastlove (Part 1) - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Amazing Grace (with the Royal Philharmonic Orchestra) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Pink Cadillac - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Singing the Blues - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Let Me Love You Baby - Stevie Ray Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Sarah Connor", - "id": "Karaoke Version" - }, - { - "title": "Angel - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "Don't It Make My Brown Eyes Blue - Laura Fygi", - "id": "Karaoke Version" - }, - { - "title": "Shame - Evelyn King", - "id": "Karaoke Version" - }, - { - "title": "I Want to Hold Your Hand - Glee", - "id": "Karaoke Version" - }, - { - "title": "Ode to My Family - The Cranberries", - "id": "Karaoke Version" - }, - { - "title": "The Loco-Motion - Little Eva", - "id": "Karaoke Version" - }, - { - "title": "I Love Rock 'n' Roll - Britney Spears", - "id": "Karaoke Version" - }, - { - "title": "One Jump Ahead - Aladdin (musical)", - "id": "Karaoke Version" - }, - { - "title": "Hey, Good Lookin' - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "Daddy's Hands - Holly Dunn", - "id": "Karaoke Version" - }, - { - "title": "My Resistance Is Low - Hoagy Carmichael & Jane Russell", - "id": "Karaoke Version" - }, - { - "title": "Smackwater Jack - Carole King", - "id": "Karaoke Version" - }, - { - "title": "The Deadwood Stage (Whip-Crack-Away!) - Calamity Jane (film) (Doris Day)", - "id": "Karaoke Version" - }, - { - "title": "I Did What I Did For Maria - Tony Christie", - "id": "Karaoke Version" - }, - { - "title": "I Want a New Drug - Huey Lewis & The News", - "id": "Karaoke Version" - }, - { - "title": "A Woman's Worth - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "This Is the Life - Matt Monro", - "id": "Karaoke Version" - }, - { - "title": "Love Today - Mika", - "id": "Karaoke Version" - }, - { - "title": "Arabian Nights - Aladdin (musical)", - "id": "Karaoke Version" - }, - { - "title": "Stay (I Missed You) - Lisa Loeb & Nine Stories", - "id": "Karaoke Version" - }, - { - "title": "Silhouettes - Herman's Hermits", - "id": "Karaoke Version" - }, - { - "title": "Sweet Caroline (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Whistle for the Choir - The Fratellis", - "id": "Karaoke Version" - }, - { - "title": "St. Elmo's Fire (Man in Motion) - John Parr", - "id": "Karaoke Version" - }, - { - "title": "The Love I Meant To Say - Smash (Jeremy Jordan)", - "id": "Karaoke Version" - }, - { - "title": "All Time High - James Bond (Rita Coolidge)", - "id": "Karaoke Version" - }, - { - "title": "Hole Hearted - Extreme", - "id": "Karaoke Version" - }, - { - "title": "It's Not Right But It's Okay (Thunderpuss Mix) - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Cowboys from Hell - Pantera", - "id": "Karaoke Version" - }, - { - "title": "Dance This Mess Around - The B-52's", - "id": "Karaoke Version" - }, - { - "title": "Love Will Tear Us Apart - Joy Division", - "id": "Karaoke Version" - }, - { - "title": "Smooth Criminal - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Lip Up Fatty - Bad Manners", - "id": "Karaoke Version" - }, - { - "title": "If I Give My Heart to You - Doris Day", - "id": "Karaoke Version" - }, - { - "title": "Rehab - Glee", - "id": "Karaoke Version" - }, - { - "title": "What Is This Thing Called Love? - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "These Words - Natasha Bedingfield", - "id": "Karaoke Version" - }, - { - "title": "Lick It Up - Kiss", - "id": "Karaoke Version" - }, - { - "title": "One and the Same - Demi Lovato & Selena Gomez", - "id": "Karaoke Version" - }, - { - "title": "It's Easy for You - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Designated Drinker - Alan Jackson & George Strait", - "id": "Karaoke Version" - }, - { - "title": "Cupid - 112", - "id": "Karaoke Version" - }, - { - "title": "Hold On My Heart - Genesis", - "id": "Karaoke Version" - }, - { - "title": "One Less Lonely Girl - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Welcome to My World (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "It's Oh So Quiet - Bjรถrk", - "id": "Karaoke Version" - }, - { - "title": "My Same (Album Version) - Adele", - "id": "Karaoke Version" - }, - { - "title": "Meet Virginia - Train", - "id": "Karaoke Version" - }, - { - "title": "What's Your Name - Lynyrd Skynyrd", - "id": "Karaoke Version" - }, - { - "title": "Look Away - Chicago (band)", - "id": "Karaoke Version" - }, - { - "title": "I'm Still a Guy - Brad Paisley", - "id": "Karaoke Version" - }, - { - "title": "Million Dollar Bill - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Easy To Be Hard - Three Dog Night", - "id": "Karaoke Version" - }, - { - "title": "She's Lost Control - Joy Division", - "id": "Karaoke Version" - }, - { - "title": "Girls & Boys - Blur", - "id": "Karaoke Version" - }, - { - "title": "Never Knew I Needed - The Princess and the Frog", - "id": "Karaoke Version" - }, - { - "title": "You Ask Me To - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "A Deeper Love - Aretha Franklin & Lisa Fischer", - "id": "Karaoke Version" - }, - { - "title": "Cruel to Be Kind - Letters To Cleo", - "id": "Karaoke Version" - }, - { - "title": "Should've Gone Home - Mรฅns Zelmerlรถw", - "id": "Karaoke Version" - }, - { - "title": "Kentucky Woman - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "The Most Beautiful Girl (In the World) - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "Everlasting Love - Sandra", - "id": "Karaoke Version" - }, - { - "title": "I Want You - Bob Dylan", - "id": "Karaoke Version" - }, - { - "title": "Cathy's Clown - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Sweat (A La La La La Long) - Mehrzad Marashi & Mark Medlock", - "id": "Karaoke Version" - }, - { - "title": "Forever - Chris Brown", - "id": "Karaoke Version" - }, - { - "title": "These Are the Days of Our Lives - Queen", - "id": "Karaoke Version" - }, - { - "title": "Come Talk to Me - Peter Gabriel", - "id": "Karaoke Version" - }, - { - "title": "Honky Cat - Elton John", - "id": "Karaoke Version" - }, - { - "title": "The Wild Boys - Duran Duran", - "id": "Karaoke Version" - }, - { - "title": "Only a Fool (Breaks His Own Heart) - Mighty Sparrow & Byron Lee", - "id": "Karaoke Version" - }, - { - "title": "Set Fire to the Rain (acoustic) - Adele", - "id": "Karaoke Version" - }, - { - "title": "Praying for Time - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Everything She Wants (unplugged - live) - George Michael", - "id": "Karaoke Version" - }, - { - "title": "'Til Summer Comes Around - Keith Urban", - "id": "Karaoke Version" - }, - { - "title": "People Gotta Move - Gino Vannelli", - "id": "Karaoke Version" - }, - { - "title": "I Don't Wanna Dance - Eddy Grant", - "id": "Karaoke Version" - }, - { - "title": "First Date - Blink-182", - "id": "Karaoke Version" - }, - { - "title": "As Long as I'm Singing - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Always on My Mind - Pet Shop Boys", - "id": "Karaoke Version" - }, - { - "title": "Something's Been Making Me Blue - Smokie", - "id": "Karaoke Version" - }, - { - "title": "Cherish - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "A Song for You - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Good Rockin' Tonight - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Baby, It's Cold Outside - Seth MacFarlane & Sara Bareilles", - "id": "Karaoke Version" - }, - { - "title": "What Are You Doing New Year's Eve - Nancy Wilson", - "id": "Karaoke Version" - }, - { - "title": "Just Pretend (with the Royal Philharmonic Orchestra) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "A Million Love Songs - Take That", - "id": "Karaoke Version" - }, - { - "title": "No Charge - Tammy Wynette", - "id": "Karaoke Version" - }, - { - "title": "Mainstreet - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "Cotton Pickin' Time - Blake Shelton", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Getcha Good! (Country Version) - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Kissing a Fool - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Makin' Whoopee - Rod Stewart & Elton John", - "id": "Karaoke Version" - }, - { - "title": "No Limit - 2 Unlimited", - "id": "Karaoke Version" - }, - { - "title": "Suspicious Minds (with the Royal Philharmonic Orchestra) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Jesus He Knows Me - Genesis", - "id": "Karaoke Version" - }, - { - "title": "Living for the City - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Anything but Mine - Kenny Chesney", - "id": "Karaoke Version" - }, - { - "title": "Cars - Gary Numan", - "id": "Karaoke Version" - }, - { - "title": "Say You Love Me - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Cherry Bomb - John Mellencamp", - "id": "Karaoke Version" - }, - { - "title": "Should've Gone Home (Je ne suis qu'un homme) - Mรฅns Zelmerlรถw", - "id": "Karaoke Version" - }, - { - "title": "Fraulein - Bobby Helms", - "id": "Karaoke Version" - }, - { - "title": "18 Yellow Roses - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Put the Blame on Mame - 1960s Standards", - "id": "Karaoke Version" - }, - { - "title": "Love Generation - Bob Sinclar & Gary Pine", - "id": "Karaoke Version" - }, - { - "title": "Roxanne - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Pentatonix", - "id": "Karaoke Version" - }, - { - "title": "Amazing Grace - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "God Bless The U.S.A. - American Idol", - "id": "Karaoke Version" - }, - { - "title": "Breathe - Midge Ure", - "id": "Karaoke Version" - }, - { - "title": "Baby I Need Your Lovin' - Johnny Rivers", - "id": "Karaoke Version" - }, - { - "title": "When There Was Me and You - High School Musical", - "id": "Karaoke Version" - }, - { - "title": "She's Gone (Single Version) - Hall & Oates", - "id": "Karaoke Version" - }, - { - "title": "True Colors - Phil Collins", - "id": "Karaoke Version" - }, - { - "title": "Pastime Paradise - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "It's My Party - Lesley Gore", - "id": "Karaoke Version" - }, - { - "title": "Can't Fight the Moonlight - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "Hey! Baby - Bruce Channel", - "id": "Karaoke Version" - }, - { - "title": "Sway - Peter Cincotti", - "id": "Karaoke Version" - }, - { - "title": "Face in the Crowd - Lionel Richie & Trijntje Oosterhuis", - "id": "Karaoke Version" - }, - { - "title": "Holiday In Spain - Counting Crows", - "id": "Karaoke Version" - }, - { - "title": "Chillin' It - Cole Swindell", - "id": "Karaoke Version" - }, - { - "title": "The Day I Met Marie - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Here and Now - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "Dance Away - Roxy Music", - "id": "Karaoke Version" - }, - { - "title": "Kiss the Girl - Colbie Caillat", - "id": "Karaoke Version" - }, - { - "title": "Feeling This - Blink-182", - "id": "Karaoke Version" - }, - { - "title": "Talk To The Animals - Anthony Newley", - "id": "Karaoke Version" - }, - { - "title": "Jack and Jill - Ray Parker Jr. & Raydio", - "id": "Karaoke Version" - }, - { - "title": "Lover Man (Oh, Where Can You Be?) - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Separate Lives - Phil Collins & Marilyn Martin", - "id": "Karaoke Version" - }, - { - "title": "LoveGame - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Not Gon' Cry - Mary J. Blige", - "id": "Karaoke Version" - }, - { - "title": "April Love - Pat Boone", - "id": "Karaoke Version" - }, - { - "title": "Christmas Tree - Lady Gaga & Space Cowboy", - "id": "Karaoke Version" - }, - { - "title": "I May Never Get to Heaven - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "Gee Whiz (Look at His Eyes) - Carla Thomas", - "id": "Karaoke Version" - }, - { - "title": "I'm Happy Just to Dance with You - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Send Her My Love - Journey", - "id": "Karaoke Version" - }, - { - "title": "Call My Name - Pietro Lombardi", - "id": "Karaoke Version" - }, - { - "title": "Hard Habit To Break - Chicago (band)", - "id": "Karaoke Version" - }, - { - "title": "It Might as Well Rain Until September - Carole King", - "id": "Karaoke Version" - }, - { - "title": "I'm Not Okay (I Promise) - My Chemical Romance", - "id": "Karaoke Version" - }, - { - "title": "Jessie's Girl - Glee", - "id": "Karaoke Version" - }, - { - "title": "Praise to the Lord, the Almighty - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Across The Universe - Fiona Apple", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Comin' to Town - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Chasing Cars - The Baseballs", - "id": "Karaoke Version" - }, - { - "title": "Hey There Delilah - The Baseballs", - "id": "Karaoke Version" - }, - { - "title": "The Gang That Sang Heart of My Heart - The Four Aces", - "id": "Karaoke Version" - }, - { - "title": "Amanda - Boston", - "id": "Karaoke Version" - }, - { - "title": "I'm Still In Love With You - Al Green", - "id": "Karaoke Version" - }, - { - "title": "Steam - Peter Gabriel", - "id": "Karaoke Version" - }, - { - "title": "Nature Boy - Tony Bennett & Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Mr. Vain - Culture Beat", - "id": "Karaoke Version" - }, - { - "title": "Home - Daughtry", - "id": "Karaoke Version" - }, - { - "title": "Play That Funky Music - Adam Lambert", - "id": "Karaoke Version" - }, - { - "title": "Over My Head (Cable Car) - The Fray", - "id": "Karaoke Version" - }, - { - "title": "The Flame - Cheap Trick", - "id": "Karaoke Version" - }, - { - "title": "Stone Free - Jimi Hendrix", - "id": "Karaoke Version" - }, - { - "title": "When My Blue Moon Turns to Gold Again - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "The Chipmunk Song Remix - Alvin and the Chipmunks", - "id": "Karaoke Version" - }, - { - "title": "Please Remember Me - Tim McGraw", - "id": "Karaoke Version" - }, - { - "title": "I'm Goin' Down - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Water Runs Dry - Boyz II Men", - "id": "Karaoke Version" - }, - { - "title": "(You're My) Soul and Inspiration - The Righteous Brothers", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas, Baby - Rod Stewart & Cee Lo Green & Trombone Shorty", - "id": "Karaoke Version" - }, - { - "title": "True Colors - Trolls (Justin Timberlake & Anna Kendrick)", - "id": "Karaoke Version" - }, - { - "title": "That's All - Genesis", - "id": "Karaoke Version" - }, - { - "title": "Bright Lights Bigger City - Cee Lo Green", - "id": "Karaoke Version" - }, - { - "title": "Ladies Love Outlaws - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "What It Takes - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "Girl, You'll Be a Woman Soon - Urge Overkill", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Getcha Good! (Pop Version) - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "There You'll Be - Faith Hill", - "id": "Karaoke Version" - }, - { - "title": "Love Rollercoaster - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Seeing You - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "When The Night Comes - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Love Gun - Kiss", - "id": "Karaoke Version" - }, - { - "title": "A View to a Kill - James Bond (Duran Duran)", - "id": "Karaoke Version" - }, - { - "title": "I Swear - John Michael Montgomery", - "id": "Karaoke Version" - }, - { - "title": "Today My World Slipped Away - Vern Gosdin", - "id": "Karaoke Version" - }, - { - "title": "Dixie Chicken - Little Feat", - "id": "Karaoke Version" - }, - { - "title": "Dance Me to the End of Love - Leonard Cohen", - "id": "Karaoke Version" - }, - { - "title": "The Wonder of You - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I Think We're Alone Now - Tiffany", - "id": "Karaoke Version" - }, - { - "title": "If I Needed Someone - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Dirty Work - Steely Dan", - "id": "Karaoke Version" - }, - { - "title": "Good Day Sunshine - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Eensy Weensy Spider - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "A Thousand And One Nights - Smash", - "id": "Karaoke Version" - }, - { - "title": "How Am I Supposed to Live Without You - Michael Bolton", - "id": "Karaoke Version" - }, - { - "title": "Little Wonders - Rob Thomas", - "id": "Karaoke Version" - }, - { - "title": "Chanson D'Amour - Manhattan Transfer", - "id": "Karaoke Version" - }, - { - "title": "Beat It - Fall Out Boy & John Mayer", - "id": "Karaoke Version" - }, - { - "title": "Love Me - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Rum Tum Tugger - Cats (musical)", - "id": "Karaoke Version" - }, - { - "title": "I Hear You Knocking - Dave Edmunds", - "id": "Karaoke Version" - }, - { - "title": "One Step Up - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Theme From Rocky (Gonna Fly Now) - Bill Conti", - "id": "Karaoke Version" - }, - { - "title": "Harper Valley P.T.A. - Jeannie C. Riley", - "id": "Karaoke Version" - }, - { - "title": "Radar Love - White Lion", - "id": "Karaoke Version" - }, - { - "title": "Arlington - Trace Adkins", - "id": "Karaoke Version" - }, - { - "title": "Never Ending Song of Love - The New Seekers", - "id": "Karaoke Version" - }, - { - "title": "Bewitched, Bothered and Bewildered - Rod Stewart & Cher", - "id": "Karaoke Version" - }, - { - "title": "It Must Be Love - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "On the Road Again - Canned Heat", - "id": "Karaoke Version" - }, - { - "title": "Caught Up in the Rapture - Anita Baker", - "id": "Karaoke Version" - }, - { - "title": "Country Road - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Crazy - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "I Will Survive (live) - Leah McFall", - "id": "Karaoke Version" - }, - { - "title": "Rescue Me - Fontella Bass", - "id": "Karaoke Version" - }, - { - "title": "The Other Woman - Ray Parker Jr.", - "id": "Karaoke Version" - }, - { - "title": "Chain of Fools - The Commitments", - "id": "Karaoke Version" - }, - { - "title": "Someday at Christmas - Jack Johnson", - "id": "Karaoke Version" - }, - { - "title": "Counting Blue Cars - Dishwalla", - "id": "Karaoke Version" - }, - { - "title": "No One Knows - Queens of the Stone Age", - "id": "Karaoke Version" - }, - { - "title": "As - George Michael & Mary J. Blige", - "id": "Karaoke Version" - }, - { - "title": "Elvira - The Oak Ridge Boys", - "id": "Karaoke Version" - }, - { - "title": "One Tin Soldier - Coven", - "id": "Karaoke Version" - }, - { - "title": "Jukebox in My Mind - Alabama", - "id": "Karaoke Version" - }, - { - "title": "Gone Daddy Gone - The Violent Femmes", - "id": "Karaoke Version" - }, - { - "title": "You Don't Own Me - Lesley Gore", - "id": "Karaoke Version" - }, - { - "title": "Lonely This Christmas - Mud", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Patrizio Buanne", - "id": "Karaoke Version" - }, - { - "title": "Even the Nights Are Better - Air Supply", - "id": "Karaoke Version" - }, - { - "title": "I Will Survive - Postmodern Jukebox & Sara Niemietz", - "id": "Karaoke Version" - }, - { - "title": "A Message to You, Rudy - The Specials", - "id": "Karaoke Version" - }, - { - "title": "Fever - Beyoncรฉ (The Fighting Temptations)", - "id": "Karaoke Version" - }, - { - "title": "Happy Holiday / The Holiday Season - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "Fever - The Pussycat Dolls", - "id": "Karaoke Version" - }, - { - "title": "Think of Me - The Phantom of the Opera (2004 film)", - "id": "Karaoke Version" - }, - { - "title": "Sunny Afternoon - The Kinks", - "id": "Karaoke Version" - }, - { - "title": "All for You - Sister Hazel", - "id": "Karaoke Version" - }, - { - "title": "Dawn (Go Away) - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "The House I Live In - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "All Around the World - Lisa Stansfield", - "id": "Karaoke Version" - }, - { - "title": "Walking in Memphis - Lonestar", - "id": "Karaoke Version" - }, - { - "title": "Only In America - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Hey Paula - Paul & Paula", - "id": "Karaoke Version" - }, - { - "title": "Drummer Boy - Justin Bieber & Busta Rhymes", - "id": "Karaoke Version" - }, - { - "title": "That Lucky Old Sun - Kenny Chesney & Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "As Time Goes By (trio version) - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Never Tear Us Apart - Paloma Faith", - "id": "Karaoke Version" - }, - { - "title": "The Seashores of Old Mexico - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Come A Little Closer - Dierks Bentley", - "id": "Karaoke Version" - }, - { - "title": "The Safety Dance - Men Without Hats", - "id": "Karaoke Version" - }, - { - "title": "For the First Time in Forever - Frozen", - "id": "Karaoke Version" - }, - { - "title": "One Night Only (Disco Version) - Dreamgirls (2006 film)", - "id": "Karaoke Version" - }, - { - "title": "Reflection (pop version) - Mulan (Christina Aguilera)", - "id": "Karaoke Version" - }, - { - "title": "Tired Of Being Alone - Al Green", - "id": "Karaoke Version" - }, - { - "title": "Hard Luck Woman - Kiss", - "id": "Karaoke Version" - }, - { - "title": "This Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Walking in Memphis - Cher", - "id": "Karaoke Version" - }, - { - "title": "Set Fire to the Rain (reggaesta reggae remix) - Adele", - "id": "Karaoke Version" - }, - { - "title": "One Night Only (Highlights Version) - Dreamgirls (2006 film)", - "id": "Karaoke Version" - }, - { - "title": "Talking in Your Sleep - The Romantics", - "id": "Karaoke Version" - }, - { - "title": "Mistletoe - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Bewitched, Bothered and Bewildered - Doris Day & The Mellomen", - "id": "Karaoke Version" - }, - { - "title": "Just Friends - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Heaven's On Fire - Kiss", - "id": "Karaoke Version" - }, - { - "title": "Things We Said Today - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "My Man - Glee", - "id": "Karaoke Version" - }, - { - "title": "Love In An Elevator - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "What a Diff'rence a Day Makes! - Dinah Washington", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "The First Noel - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Beauty Is Only Skin Deep - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Can't Wait Until Tonight - Max Mutzke", - "id": "Karaoke Version" - }, - { - "title": "Alone - Glee", - "id": "Karaoke Version" - }, - { - "title": "Calling All The Monsters (From A.N.T. Farm) - China Anne McClain", - "id": "Karaoke Version" - }, - { - "title": "We Will Rock You - Rock Kids", - "id": "Karaoke Version" - }, - { - "title": "That's Life - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Gold Digger - Kanye West & Jamie Foxx", - "id": "Karaoke Version" - }, - { - "title": "A Little Bitty Tear - Burl Ives", - "id": "Karaoke Version" - }, - { - "title": "Alphabet Song - Nursery Rhyme", - "id": "Karaoke Version" - }, - { - "title": "The First Noel - Josh Groban & Faith Hill", - "id": "Karaoke Version" - }, - { - "title": "Ghost Town - The Specials", - "id": "Karaoke Version" - }, - { - "title": "Sleigh Ride - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "She Came in Through the Bathroom Window - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Family Affair - Sly and the Family Stone", - "id": "Karaoke Version" - }, - { - "title": "Happy Ending - Mika", - "id": "Karaoke Version" - }, - { - "title": "Fever - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Will You Love Me Tomorrow - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Almost Persuaded - David Houston", - "id": "Karaoke Version" - }, - { - "title": "Son of a Preacher Man (live UK Music Hall of Fame) - Joss Stone", - "id": "Karaoke Version" - }, - { - "title": "Fever - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Red Dirt Road - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Nice 'n' Easy - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "I Want to Hold Your Hand - Across The Universe (film)", - "id": "Karaoke Version" - }, - { - "title": "Step Into Christmas - The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "She'll Be Coming 'Round the Mountain - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Desecration Smile - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Mmm, Mmm, Mmm, Mmm - Crash Test Dummies", - "id": "Karaoke Version" - }, - { - "title": "True Love Travels on a Gravel Road - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I Will Survive - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "Bette Davis Eyes (From Duets movie soundtrack) - Gwyneth Paltrow", - "id": "Karaoke Version" - }, - { - "title": "Breakaway - Tracey Ullman", - "id": "Karaoke Version" - }, - { - "title": "Old Shep - Elvis Presley & The Jordanaires", - "id": "Karaoke Version" - }, - { - "title": "You Will Be My Music - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "When The Children Cry - White Lion", - "id": "Karaoke Version" - }, - { - "title": "It Might Be You - Stephen Bishop (Tootsie)", - "id": "Karaoke Version" - }, - { - "title": "Breathless - The Corrs", - "id": "Karaoke Version" - }, - { - "title": "That's All - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Ooh Baby Baby - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Need Your Love So Bad - Eva Cassidy & Chuck Brown", - "id": "Karaoke Version" - }, - { - "title": "Single Ladies (Put a Ring on It) - Postmodern Jukebox & Ariana Savalas", - "id": "Karaoke Version" - }, - { - "title": "Butterfly - Crazy Town", - "id": "Karaoke Version" - }, - { - "title": "We Don't Have to Take Our Clothes Off - Ella Eyre", - "id": "Karaoke Version" - }, - { - "title": "Will You Still Love Me Tomorrow? (2011) - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "To Sir with Love - Chaka Khan", - "id": "Karaoke Version" - }, - { - "title": "Dreaming of You - Selena", - "id": "Karaoke Version" - }, - { - "title": "He's a Rebel - The Crystals", - "id": "Karaoke Version" - }, - { - "title": "Making Believe - Emmylou Harris", - "id": "Karaoke Version" - }, - { - "title": "Come Rain or Come Shine - Diane Schuur", - "id": "Karaoke Version" - }, - { - "title": "Red Light Spells Danger - Billy Ocean", - "id": "Karaoke Version" - }, - { - "title": "Stormy - Santana", - "id": "Karaoke Version" - }, - { - "title": "I'll Give All My Love to You (Single Version) - Keith Sweat", - "id": "Karaoke Version" - }, - { - "title": "Written in the Stars - Elton John & LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "You Are Everything - Marvin Gaye & Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Seeing You - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "The Bitch is Back - Elton John", - "id": "Karaoke Version" - }, - { - "title": "This Will Be - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Sunday Morning Coming Down - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Invisible Touch - Genesis", - "id": "Karaoke Version" - }, - { - "title": "Breath of Life - Florence + The Machine", - "id": "Karaoke Version" - }, - { - "title": "Power of Love - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "Friends in Low Places (live) - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "Club Tropicana - Wham!", - "id": "Karaoke Version" - }, - { - "title": "You Really Got a Hold on Me - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "The Tracks Of My Tears - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Black & Gold - Ellie Goulding", - "id": "Karaoke Version" - }, - { - "title": "Lady D'Arbanville - Cat Stevens", - "id": "Karaoke Version" - }, - { - "title": "Philadelphia Freedom - Elton John", - "id": "Karaoke Version" - }, - { - "title": "My Funny Valentine - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Walking On Sunshine - Jazzystics", - "id": "Karaoke Version" - }, - { - "title": "Cake By The Ocean (clean) - DNCE", - "id": "Karaoke Version" - }, - { - "title": "Straighten Up and Fly Right - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "Detroit City - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Good Morning Heartache - Billie Holiday", - "id": "Karaoke Version" - }, - { - "title": "Let It Be Me - Betty Everett & Jerry Butler", - "id": "Karaoke Version" - }, - { - "title": "Stranger in Paradise (Kismet) - Matt Monro", - "id": "Karaoke Version" - }, - { - "title": "Happy Days Are Here Again (Man Voice) - 1960s Standards", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow - Celtic Woman", - "id": "Karaoke Version" - }, - { - "title": "For Me and My Gal - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Take These Chains from My Heart - Lee Roy Parnell & Ronnie Dunn", - "id": "Karaoke Version" - }, - { - "title": "A Nightingale Sang in Berkeley Square - Harry Connick Jr.", - "id": "Karaoke Version" - }, - { - "title": "Try a Little Tenderness - Otis Redding", - "id": "Karaoke Version" - }, - { - "title": "I've Been Working on the Railroad - 1920s Standards", - "id": "Karaoke Version" - }, - { - "title": "Honey I'm Home - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "You Keep Me Hanging On - Vanilla Fudge", - "id": "Karaoke Version" - }, - { - "title": "Endless Love - Luther Vandross & Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Lovesick Blues - George Strait", - "id": "Karaoke Version" - }, - { - "title": "MMMbop - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Just Like Paradise / Nothin' but a Good Time - Rock of Ages (musical)", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Elmo's Song - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Darktown Strutters Ball - 1910s Standards", - "id": "Karaoke Version" - }, - { - "title": "Golden Lady - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "The Look - The Baseballs", - "id": "Karaoke Version" - }, - { - "title": "Downbound Train - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "A Hundred Pounds Of Clay - Gene McDaniels", - "id": "Karaoke Version" - }, - { - "title": "Someone Loves You Honey - Charley Pride", - "id": "Karaoke Version" - }, - { - "title": "Sway - The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "Club at the End of the Street - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Judas - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "1, 2, 3, 4 - Plain White T's", - "id": "Karaoke Version" - }, - { - "title": "Wild Ones - Flo Rida & Sia", - "id": "Karaoke Version" - }, - { - "title": "Rose In Paradise - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "Bait a Hook - Justin Moore", - "id": "Karaoke Version" - }, - { - "title": "Windy - The Association", - "id": "Karaoke Version" - }, - { - "title": "A Song for You - Leon Russell", - "id": "Karaoke Version" - }, - { - "title": "Tracks of My Tears - Johnny Rivers", - "id": "Karaoke Version" - }, - { - "title": "Georgia Peaches - Lauren Alaina", - "id": "Karaoke Version" - }, - { - "title": "Knock on Wood - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Welcome to My World - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Walk On By (Master S&K Mix) - Seal", - "id": "Karaoke Version" - }, - { - "title": "Hold On - The Secret Garden (musical)", - "id": "Karaoke Version" - }, - { - "title": "Use Somebody (Acoustic version) - Paramore", - "id": "Karaoke Version" - }, - { - "title": "Broken Hearted Melody - Sarah Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Lady Midnight - Leonard Cohen", - "id": "Karaoke Version" - }, - { - "title": "From This Moment On (Dance Remix) - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Love Come Down - Evelyn King", - "id": "Karaoke Version" - }, - { - "title": "(Just Like) Starting Over - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "Young & Beautiful - Lana Del Rey (The Great Gatsby)", - "id": "Karaoke Version" - }, - { - "title": "I'm So Lonesome I Could Cry - B. J. Thomas", - "id": "Karaoke Version" - }, - { - "title": "Alone Again (Naturally) - Berk & The Virtual Band", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good - Randy Crawford & Joe Sample", - "id": "Karaoke Version" - }, - { - "title": "Livin' for the Weekend - The O'Jays", - "id": "Karaoke Version" - }, - { - "title": "Call Your Girlfriend - Robyn", - "id": "Karaoke Version" - }, - { - "title": "Mannish Boy (live) - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "Lollipop - Mika", - "id": "Karaoke Version" - }, - { - "title": "It's All Right - The Impressions", - "id": "Karaoke Version" - }, - { - "title": "Old Country - Mark Chesnutt", - "id": "Karaoke Version" - }, - { - "title": "By My Side - INXS", - "id": "Karaoke Version" - }, - { - "title": "You're Getting to Be a Habit with Me - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "You Give Me Something - Jamiroquai", - "id": "Karaoke Version" - }, - { - "title": "Makin' Whoopee - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Promise Me - Beverley Craven", - "id": "Karaoke Version" - }, - { - "title": "I Don't Care (Just As Long As You Love Me) - Buck Owens", - "id": "Karaoke Version" - }, - { - "title": "Billie Jean - Berk & The Virtual Band", - "id": "Karaoke Version" - }, - { - "title": "Killing Me Softly - Colbie Caillat", - "id": "Karaoke Version" - }, - { - "title": "My Funny Valentine (live) - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "The Devil Comes Back to Georgia - The Charlie Daniels Band", - "id": "Karaoke Version" - }, - { - "title": "You'll Never Know - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Bohemian Rhapsody (live) - Zac Brown Band", - "id": "Karaoke Version" - }, - { - "title": "Victory - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "Second Wind - Maren Morris", - "id": "Karaoke Version" - }, - { - "title": "Dancing On My Own (Tiรซsto Remix) - Calum Scott", - "id": "Karaoke Version" - }, - { - "title": "Me and Bobby Mcgee - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Midnight Blue - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Something That I Want - Tangled", - "id": "Karaoke Version" - }, - { - "title": "Till the Rivers All Run Dry - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Once in a While - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Up to the Mountain (MLK Song) - Crystal Bowersox", - "id": "Karaoke Version" - }, - { - "title": "Love Your Memory - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "It's Not You - Halestorm", - "id": "Karaoke Version" - }, - { - "title": "I Like Beer - Tom T. Hall", - "id": "Karaoke Version" - }, - { - "title": "Walking On Sunshine - Aly & AJ", - "id": "Karaoke Version" - }, - { - "title": "(You're So Square) Baby I Don't Care - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Don't Worry Be Happy - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Hold My Hand - Hootie & the Blowfish", - "id": "Karaoke Version" - }, - { - "title": "Dancing In the Moonlight - King Harvest", - "id": "Karaoke Version" - }, - { - "title": "Traces - Classics IV", - "id": "Karaoke Version" - }, - { - "title": "Satin Sheets - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Run-around - Blues Traveler", - "id": "Karaoke Version" - }, - { - "title": "Where I Come From - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Dream - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "I Can't Help It (If I'm Still In Love With You) - Hank Williams, Sr.", - "id": "Karaoke Version" - }, - { - "title": "Don't You Ever Get Tired (Of Hurting Me) - Ronnie Milsap", - "id": "Karaoke Version" - }, - { - "title": "Under The Boardwalk - Lynn Anderson", - "id": "Karaoke Version" - }, - { - "title": "Teenagers - My Chemical Romance", - "id": "Karaoke Version" - }, - { - "title": "Happy Days Are Here Again - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "A Fool Such As I (Now And Then) - Baillie and the Boys", - "id": "Karaoke Version" - }, - { - "title": "Cadillac Ranch - Nitty Gritty Dirt Band", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Be (500 Miles) - Sleeping at Last", - "id": "Karaoke Version" - }, - { - "title": "You Don't Know Me - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Close My Eyes Forever - Lita Ford & Ozzy Osbourne", - "id": "Karaoke Version" - }, - { - "title": "If You Know What I Mean - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Make Me Wanna Die - The Pretty Reckless", - "id": "Karaoke Version" - }, - { - "title": "Young Blood - The Coasters", - "id": "Karaoke Version" - }, - { - "title": "Brick House - Rob Zombie & Lionel Richie & Trina", - "id": "Karaoke Version" - }, - { - "title": "Too Hot - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "White Rabbit (live) - Pink", - "id": "Karaoke Version" - }, - { - "title": "(Love Is Like a) Heat Wave - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Top of the World - The Chicks", - "id": "Karaoke Version" - }, - { - "title": "When I Close My Eyes (acoustic version) - Kenny Chesney", - "id": "Karaoke Version" - }, - { - "title": "Blowin' in the Wind - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Every Breath You Take - Berk & The Virtual Band", - "id": "Karaoke Version" - }, - { - "title": "Bumming Around - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "When Something Is Wrong with My Baby - Sam & Dave", - "id": "Karaoke Version" - }, - { - "title": "Love Bug - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Almost Like Being in Love - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stop Loving You (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Tell It Like It Is - Aaron Neville", - "id": "Karaoke Version" - }, - { - "title": "Black Hole Sun - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Livin' on the Edge - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "Living After Midnight - Judas Priest", - "id": "Karaoke Version" - }, - { - "title": "My Funny Valentine - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Heartbreak Hotel (with the Royal Philharmonic Orchestra) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Black and Gold (Radio Edit) - Sam Sparro", - "id": "Karaoke Version" - }, - { - "title": "Sway (live from Madison Square Garden) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "House at Pooh Corner - Loggins and Messina", - "id": "Karaoke Version" - }, - { - "title": "Angel Baby - Rosie & The Originals", - "id": "Karaoke Version" - }, - { - "title": "Head, Shoulders, Knees and Toes - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Carrie - Europe", - "id": "Karaoke Version" - }, - { - "title": "Wild Horses - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "A Long December - Counting Crows", - "id": "Karaoke Version" - }, - { - "title": "Route 66 (live) - Ella Fitzgerald & Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Hard Workin' Man - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Angel from Montgomery (live from Austin & TX) - Susan Tedeschi", - "id": "Karaoke Version" - }, - { - "title": "Crystal Blue Persuasion - Tommy James and The Shondells", - "id": "Karaoke Version" - }, - { - "title": "Funky Town - Alvin and the Chipmunks", - "id": "Karaoke Version" - }, - { - "title": "I'm Sorry - The Platters", - "id": "Karaoke Version" - }, - { - "title": "Right Place, Wrong Time - Dr. John", - "id": "Karaoke Version" - }, - { - "title": "I Want Your Sex - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Freedom - Wham!", - "id": "Karaoke Version" - }, - { - "title": "Sacramento - Middle of the Road", - "id": "Karaoke Version" - }, - { - "title": "About a Quarter to Nine - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "I Saw The Light - Hal Ketchum", - "id": "Karaoke Version" - }, - { - "title": "Dressed for Success - Roxette", - "id": "Karaoke Version" - }, - { - "title": "Freek'n You - Jodeci", - "id": "Karaoke Version" - }, - { - "title": "Biggest Part Of Me - Ambrosia", - "id": "Karaoke Version" - }, - { - "title": "He Thinks He'll Keep Her - Mary Chapin Carpenter", - "id": "Karaoke Version" - }, - { - "title": "Use Somebody - Pixie Lott", - "id": "Karaoke Version" - }, - { - "title": "Love Is the Drug - Roxy Music", - "id": "Karaoke Version" - }, - { - "title": "Poison Ivy - The Coasters", - "id": "Karaoke Version" - }, - { - "title": "Little Rock - Collin Raye", - "id": "Karaoke Version" - }, - { - "title": "What a Feeling - Alex Gaudino & Kelly Rowland", - "id": "Karaoke Version" - }, - { - "title": "Rolling in the Deep (remixed) - Adele", - "id": "Karaoke Version" - }, - { - "title": "Ocean Front Property - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Never, Never Gonna Give You Up - Lisa Stansfield", - "id": "Karaoke Version" - }, - { - "title": "Dancing on My Own - Calum Scott", - "id": "Karaoke Version" - }, - { - "title": "It Keeps Rainin' (Tears from My Eyes) - Bitty McLean", - "id": "Karaoke Version" - }, - { - "title": "Dancing Shoes - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Hillbilly Rock Hillbilly Roll (Yee Haw!) - The Woolpackers", - "id": "Karaoke Version" - }, - { - "title": "The Trolley Song - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Bossa Nova Baby - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I'll Be There - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Son of a Preacher Man (live) - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Pink Houses - John Mellencamp", - "id": "Karaoke Version" - }, - { - "title": "Joanna - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "The Show Must Go On - Cรฉline Dion & Lindsey Stirling", - "id": "Karaoke Version" - }, - { - "title": "Land of 1000 Dances - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Dizzy Miss Lizzy - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Baby's Got Her Blue Jeans On - Mel McDaniel", - "id": "Karaoke Version" - }, - { - "title": "Independent Women Part I - Destiny's Child", - "id": "Karaoke Version" - }, - { - "title": "Blues in the Night - Julie London", - "id": "Karaoke Version" - }, - { - "title": "Do You Know the Way to San Josรฉ - Dionne Warwick", - "id": "Karaoke Version" - }, - { - "title": "Ticket to Ride - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Living on My Own - Freddie Mercury", - "id": "Karaoke Version" - }, - { - "title": "Just Like a Woman - Bob Dylan", - "id": "Karaoke Version" - }, - { - "title": "Imagine - A Perfect Circle", - "id": "Karaoke Version" - }, - { - "title": "Another Saturday Night - Cat Stevens", - "id": "Karaoke Version" - }, - { - "title": "Father Figure - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Stones - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Angie Baby - Helen Reddy", - "id": "Karaoke Version" - }, - { - "title": "How Do You Do It? - Gerry & The Pacemakers", - "id": "Karaoke Version" - }, - { - "title": "Houston - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "The Bare Necessities / I Wanna Be Like You - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Creep - TLC", - "id": "Karaoke Version" - }, - { - "title": "Mr. Bojangles - Sammy Davis Jr.", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Berk & The Virtual Band", - "id": "Karaoke Version" - }, - { - "title": "Lifetime - Maxwell", - "id": "Karaoke Version" - }, - { - "title": "Helter Skelter - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "King of the Road - Randy Travis", - "id": "Karaoke Version" - }, - { - "title": "I'm Henery the Eighth, I Am - Herman's Hermits", - "id": "Karaoke Version" - }, - { - "title": "Kaw-Liga - Hank Williams, Sr.", - "id": "Karaoke Version" - }, - { - "title": "Rags to Riches - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Seven Year Ache - Rosanne Cash", - "id": "Karaoke Version" - }, - { - "title": "Break In - Halestorm", - "id": "Karaoke Version" - }, - { - "title": "Sittin' on the Dock of the Bay - Vigon Bamy Jay", - "id": "Karaoke Version" - }, - { - "title": "Love Is a Many-Splendored Thing - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "All My Loving - Matt Monro", - "id": "Karaoke Version" - }, - { - "title": "I Want You - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Midnight Special - Johnny Rivers", - "id": "Karaoke Version" - }, - { - "title": "This Moment in Time - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "It Had to Be You - Harry Connick Jr.", - "id": "Karaoke Version" - }, - { - "title": "When You're Gone - Richard Marx", - "id": "Karaoke Version" - }, - { - "title": "It Had to Be You - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Hoochie Coochie Man - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Sealed with a Kiss - Bobby Vinton", - "id": "Karaoke Version" - }, - { - "title": "Good Morning Heartache - Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "Get Ready - Rare Earth", - "id": "Karaoke Version" - }, - { - "title": "The Warmth - Incubus", - "id": "Karaoke Version" - }, - { - "title": "Seventh Son - Johnny Rivers", - "id": "Karaoke Version" - }, - { - "title": "Where I Wanna Be - Donell Jones", - "id": "Karaoke Version" - }, - { - "title": "Midnight in Montgomery - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Never Gonna Give You Up - Postmodern Jukebox & Clark Beckham", - "id": "Karaoke Version" - }, - { - "title": "Time Marches On - Tracy Lawrence", - "id": "Karaoke Version" - }, - { - "title": "Island of Dreams - The Seekers", - "id": "Karaoke Version" - }, - { - "title": "I'll Cover You - Rent", - "id": "Karaoke Version" - }, - { - "title": "Love The Way You Lie - Eminem & Rihanna", - "id": "Karaoke Version" - }, - { - "title": "So What the Fuss - Stevie Wonder & En Vogue & Prince", - "id": "Karaoke Version" - }, - { - "title": "Every Breath You Take - Tina Arena", - "id": "Karaoke Version" - }, - { - "title": "For Once In My Life - Vonda Shepard", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Love You Just a Little More Baby - Barry White", - "id": "Karaoke Version" - }, - { - "title": "Cold Shoulder - Adele", - "id": "Karaoke Version" - }, - { - "title": "Hold Me Now - Thompson Twins", - "id": "Karaoke Version" - }, - { - "title": "Don't Worry About Me - Frances", - "id": "Karaoke Version" - }, - { - "title": "On My Own - Michael McDonald & Patti LaBelle", - "id": "Karaoke Version" - }, - { - "title": "Till There Was You - Anita Bryant", - "id": "Karaoke Version" - }, - { - "title": "Save the Last Dance for Me - Emmylou Harris", - "id": "Karaoke Version" - }, - { - "title": "The Girl Is Mine - Michael Jackson & Paul McCartney", - "id": "Karaoke Version" - }, - { - "title": "Seventy Six Trombones - The Music Man (1957 musical) (Robert Preston)", - "id": "Karaoke Version" - }, - { - "title": "For Me and My Gal - Dixieland Boys", - "id": "Karaoke Version" - }, - { - "title": "My Babe (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Corrina, Corrina - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Once Bitten, Twice Shy - Great White", - "id": "Karaoke Version" - }, - { - "title": "Fool on the Hill - Sรฉrgio Mendes & Brasil '66", - "id": "Karaoke Version" - }, - { - "title": "On a Slow Boat to China - Renee Olstead & Carol Welsman", - "id": "Karaoke Version" - }, - { - "title": "The Long Black Veil - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "You Are the Love of My Life - George Benson & Roberta Flack", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Lying Is the Most Fun a Girl Can Have Without Taking Her Clothes Off - Panic! At the Disco *", - "id": "g3zPFL0PfrM" - }, - { - "title": "Maybe This Time (live) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Could It Be Magic - Eldissa", - "id": "Karaoke Version" - }, - { - "title": "Hoochie Coochie Man - Muddy Waters", - "id": "Karaoke Version" - }, - { - "title": "Single Ladies (Put a Ring on It) - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Dancing In The Moonlight (It's Caught Me in Its Spotlight) - Thin Lizzy", - "id": "Karaoke Version" - }, - { - "title": "The Impossible Dream - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Here Comes Your Man - Pixies", - "id": "Karaoke Version" - }, - { - "title": "Use Somebody - Laura Jansen", - "id": "Karaoke Version" - }, - { - "title": "Day by Day - Godspell (musical) (Robin Lamont)", - "id": "Karaoke Version" - }, - { - "title": "I Get a Kick Out of You - Jamie Cullum", - "id": "Karaoke Version" - }, - { - "title": "The World I Know - Collective Soul", - "id": "Karaoke Version" - }, - { - "title": "You Can Get It If You Really Want - Jimmy Cliff", - "id": "Karaoke Version" - }, - { - "title": "A Man Without Love - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Don't Take It Away - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "All You Get From Love Is a Love Song - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Only Daddy That'll Walk the Line - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "Heroes - Postmodern Jukebox & Nicole Atkins", - "id": "Karaoke Version" - }, - { - "title": "You Are My Destiny - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "Bleeding Out - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Golden Slumbers / Carry That Weight - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Every Time That You Walk in the Room - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Limbo Rock - Chubby Checker", - "id": "Karaoke Version" - }, - { - "title": "Maybe - Annie (musical)", - "id": "Karaoke Version" - }, - { - "title": "Love Has No Pride - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Firestarter - Samantha Jade", - "id": "Karaoke Version" - }, - { - "title": "(Your Love Keeps Lifting Me) Higher and Higher - Jimmy Barnes", - "id": "Karaoke Version" - }, - { - "title": "Man in the Mirror - Glee", - "id": "Karaoke Version" - }, - { - "title": "Yes Sir, That's My Baby - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Sweet Nothin's - Brenda Lee", - "id": "Karaoke Version" - }, - { - "title": "Do You Love Me? (Now That I Can Dance) - The Tremeloes", - "id": "Karaoke Version" - }, - { - "title": "I Only Have Eyes for You - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Bailamos - Enrique Iglesias (Wild Wild West)", - "id": "Karaoke Version" - }, - { - "title": "Use Somebody - Boyce Avenue & Hannah Trigwell", - "id": "Karaoke Version" - }, - { - "title": "Complicated - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "Dream a Little Dream of Me - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "You Are My Sunshine - Chris Stapleton & Morgane Stapleton", - "id": "Karaoke Version" - }, - { - "title": "All of Me - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Tobacco Road - David Lee Roth", - "id": "Karaoke Version" - }, - { - "title": "All About Tonight - Blake Shelton", - "id": "Karaoke Version" - }, - { - "title": "Man in the Mirror - Keke Palmer (Joyful Noise)", - "id": "Karaoke Version" - }, - { - "title": "Xanadu - Xanadu (film) (Olivia Newton-John & Electric Light Orchestra)", - "id": "Karaoke Version" - }, - { - "title": "Hello - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Never, Never Gonna Give You Up - Barry White", - "id": "Karaoke Version" - }, - { - "title": "Isn't She Lovely? - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "You're the Best Thing That Ever Happened to Me - Ray Price", - "id": "Karaoke Version" - }, - { - "title": "Man in the Mirror - James Morrison", - "id": "Karaoke Version" - }, - { - "title": "Sweat (A La La La La Long) - Inner Circle", - "id": "Karaoke Version" - }, - { - "title": "Hello - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Beauty and the Beast - Cรฉline Dion & Peabo Bryson", - "id": "Karaoke Version" - }, - { - "title": "Stitches - Shawn Mendes", - "id": "Karaoke Version" - }, - { - "title": "I Write Sins Not Tragedies - Panic! At the Disco", - "id": "Karaoke Version" - }, - { - "title": "Cherish - The Association", - "id": "Karaoke Version" - }, - { - "title": "Something's Got a Hold on Me - Beth Hart & Joe Bonamassa", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stop Loving You - Jim Reeves", - "id": "Karaoke Version" - }, - { - "title": "Say My Name - Postmodern Jukebox & Joey Cook", - "id": "Karaoke Version" - }, - { - "title": "U Got It Bad - Usher", - "id": "Karaoke Version" - }, - { - "title": "Take Your Time - Sam Hunt", - "id": "Karaoke Version" - }, - { - "title": "Close - Nick Jonas & Tove Lo", - "id": "Karaoke Version" - }, - { - "title": "Let the Music Play - Barry White", - "id": "Karaoke Version" - }, - { - "title": "The Climb - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Everywhere - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "I Just Want to Make Love to You - Etta James", - "id": "Karaoke Version" - }, - { - "title": "What Now, My Love? - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "When You're Good to Mama - Chicago (the musical)", - "id": "Karaoke Version" - }, - { - "title": "Man in the Mirror - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Two Sparrows in a Hurricane - Tanya Tucker", - "id": "Karaoke Version" - }, - { - "title": "Use Somebody - Kings of Leon", - "id": "Karaoke Version" - }, - { - "title": "Never Be Anyone Else but You - Ricky Nelson", - "id": "Karaoke Version" - }, - { - "title": "Set Fire to the Rain - Adele", - "id": "Karaoke Version" - }, - { - "title": "Rainy Night in Georgia - Conway Twitty & Sam Moore", - "id": "Karaoke Version" - }, - { - "title": "Smokie Megamix - Smokie", - "id": "Karaoke Version" - }, - { - "title": "Promise - Romeo Santos & Usher", - "id": "Karaoke Version" - }, - { - "title": "Take My Hand, Precious Lord - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Honey (I Miss You) - Bobby Goldsboro", - "id": "Karaoke Version" - }, - { - "title": "Whiskey Girl - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "Late to the Party - Kacey Musgraves", - "id": "Karaoke Version" - }, - { - "title": "Let It Be Me (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "If I Should Fall Behind - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Stars Fell on Alabama - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Since I Fell for You - Charlie Rich", - "id": "Karaoke Version" - }, - { - "title": "Torn Between Two Lovers - Mary MacGregor", - "id": "Karaoke Version" - }, - { - "title": "Til I Can Make It on My Own - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Lost Without Your Love - Bread", - "id": "Karaoke Version" - }, - { - "title": "Don't Rain on My Parade - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Why Do You Love Me - Adele", - "id": "Karaoke Version" - }, - { - "title": "My Heroes Have Always Been Cowboys - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Put Your Lights On - Santana & Everlast", - "id": "Karaoke Version" - }, - { - "title": "Hello, Dolly! - Louis Armstrong", - "id": "Karaoke Version" - }, - { - "title": "Cambodia - Kim Wilde", - "id": "Karaoke Version" - }, - { - "title": "Whistle - Flo Rida", - "id": "Karaoke Version" - }, - { - "title": "Let's Face the Music and Dance - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Too Late To Turn Back Now - Cornelius Brothers & Sister Rose", - "id": "Karaoke Version" - }, - { - "title": "Maybe This Time - Cabaret", - "id": "Karaoke Version" - }, - { - "title": "I Won't Stand In Your Way - The Stray Cats", - "id": "Karaoke Version" - }, - { - "title": "We're All in This Together (Graduation Mix) - High School Musical 3", - "id": "Karaoke Version" - }, - { - "title": "Blue Eyes Crying in the Rain - UB40", - "id": "Karaoke Version" - }, - { - "title": "Walk On By - Dionne Warwick", - "id": "Karaoke Version" - }, - { - "title": "Look At Me Now - Chris Brown", - "id": "Karaoke Version" - }, - { - "title": "I Learned From The Best - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Shake, Rattle and Roll (live) - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "I Will Always Love You - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good - Avicii", - "id": "Karaoke Version" - }, - { - "title": "I Say a Little Prayer - Dionne Warwick", - "id": "Karaoke Version" - }, - { - "title": "Blurry - Puddle of Mudd", - "id": "Karaoke Version" - }, - { - "title": "Swords of a Thousand Men - Tenpole Tudor", - "id": "Karaoke Version" - }, - { - "title": "Real World - Matchbox Twenty", - "id": "Karaoke Version" - }, - { - "title": "Silver Threads And Golden Needles - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "The Anthem - Good Charlotte", - "id": "Karaoke Version" - }, - { - "title": "Dance Again - Jennifer Lopez & Pitbull", - "id": "Karaoke Version" - }, - { - "title": "Here Comes the Flood - Peter Gabriel", - "id": "Karaoke Version" - }, - { - "title": "I Should Have Known Better - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Love To Love You Baby - Donna Summer", - "id": "Karaoke Version" - }, - { - "title": "Like We Never Loved At All - Faith Hill & Tim McGraw", - "id": "Karaoke Version" - }, - { - "title": "Falling Slowly - Glen Hansard & Markรฉta Irglovรก", - "id": "Karaoke Version" - }, - { - "title": "Stuck with You - Huey Lewis & The News", - "id": "Karaoke Version" - }, - { - "title": "The Beautiful People - Christina Aguilera (Burlesque)", - "id": "Karaoke Version" - }, - { - "title": "When We Were Young - Adele", - "id": "Karaoke Version" - }, - { - "title": "Brand New Day - Sting", - "id": "Karaoke Version" - }, - { - "title": "Some Guys Have All The Luck - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "On Broadway - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Lifestyles of the Rich and Famous - Good Charlotte", - "id": "Karaoke Version" - }, - { - "title": "River Lea - Adele", - "id": "Karaoke Version" - }, - { - "title": "Words Get In The Way - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "My Happiness - Connie Francis", - "id": "Karaoke Version" - }, - { - "title": "EN adele hometown glory 17498", - "id": "CMYKigatCQs" - }, - { - "title": "Dark Lady - Cher", - "id": "Karaoke Version" - }, - { - "title": "If You See Him, If You See Her - Reba McEntire & Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Billy, Don't Be a Hero - Bo Donaldson & the Heywoods", - "id": "Karaoke Version" - }, - { - "title": "Hush (Live) - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "Hello - Adele", - "id": "Karaoke Version" - }, - { - "title": "365 Days - ZZ Ward", - "id": "Karaoke Version" - }, - { - "title": "Thank the Lord for the Night Time - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Drop The World - Lil Wayne & Eminem", - "id": "Karaoke Version" - }, - { - "title": "You're A Woman - Bad Boys Blue", - "id": "Karaoke Version" - }, - { - "title": "The Black Hills of Dakota - Calamity Jane (film) (Doris Day)", - "id": "Karaoke Version" - }, - { - "title": "Fantasy - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Around the World - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Hawaiian Rollercoaster Ride - Lilo & Stitch", - "id": "Karaoke Version" - }, - { - "title": "Bachelorette - Bjรถrk", - "id": "Karaoke Version" - }, - { - "title": "In My Room - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Johnny B. - The Hooters", - "id": "Karaoke Version" - }, - { - "title": "Heaven - Los Lonely Boys", - "id": "Karaoke Version" - }, - { - "title": "I Can't Give You Anything but Love - Peggy Lee", - "id": "Karaoke Version" - }, - { - "title": "On a Slow Boat to China - Emile Ford", - "id": "Karaoke Version" - }, - { - "title": "I Need a Doctor - Dr. Dre & Eminem & Skylar Grey", - "id": "Karaoke Version" - }, - { - "title": "Cheeseburger in Paradise - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "Mama Liked the Roses - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Crimson and Clover - Joan Jett", - "id": "Karaoke Version" - }, - { - "title": "(You Make Me Feel Like) A Natural Woman - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "The Windmills of Your Mind - Dusty Springfield", - "id": "Karaoke Version" - }, - { - "title": "As Time Goes By - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "The Good Life - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "The Girl's Alright With Me - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "A Nightingale Sang in Berkeley Square - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Believe In Yourself - The Wiz (film)", - "id": "Karaoke Version" - }, - { - "title": "How Sweet It Is to Be Loved by You - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Long Long Time - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Don't Be Stupid (You Know I Love You) - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Blue Jean Bop - Gene Vincent", - "id": "Karaoke Version" - }, - { - "title": "Just in Time - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "What's My Age Again? - Blink-182", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Eldissa", - "id": "Karaoke Version" - }, - { - "title": "Funny How Time Slips Away (Live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "You're Nobody 'Til Somebody Loves You - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "I Fought the Law - Bobby Fuller Four", - "id": "Karaoke Version" - }, - { - "title": "Hello Darlin' - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "Betcha By Golly, Wow - Prince", - "id": "Karaoke Version" - }, - { - "title": "Kansas City (Hey Hey Hey Hey!) - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Hot Child in the City - Nick Gilder", - "id": "Karaoke Version" - }, - { - "title": "Goin' Out of My Head - Little Anthony and the Imperials", - "id": "Karaoke Version" - }, - { - "title": "You're the Only Good Thing (That's Happened to Me) - Jim Reeves", - "id": "Karaoke Version" - }, - { - "title": "Mrs. Brown You've Got a Lovely Daughter - Herman's Hermits", - "id": "Karaoke Version" - }, - { - "title": "Don't Stand So Close to Me - The Police", - "id": "Karaoke Version" - }, - { - "title": "Electric Avenue - Eddy Grant", - "id": "Karaoke Version" - }, - { - "title": "Hemorrhage (In My Hands) - Fuel", - "id": "Karaoke Version" - }, - { - "title": "Act Naturally - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Drive (For Daddy Gene) - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "And I Am Telling You I'm Not Going - Dreamgirls", - "id": "Karaoke Version" - }, - { - "title": "Chocolate - The 1975", - "id": "Karaoke Version" - }, - { - "title": "There's Your Trouble - The Chicks", - "id": "Karaoke Version" - }, - { - "title": "Will You Still Love Me Tomorrow - James Durbin (live American Idol)", - "id": "Karaoke Version" - }, - { - "title": "Weekend In New England - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Maybe It Was Memphis - Pam Tillis", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Maria Of My Soul - The Mambo Kings (Antonio Banderas)", - "id": "Karaoke Version" - }, - { - "title": "Anema E Core - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Chandelier - Madilyn Bailey", - "id": "Karaoke Version" - }, - { - "title": "Singing the Blues - Marty Robbins", - "id": "Karaoke Version" - }, - { - "title": "The Riddle - Five for Fighting", - "id": "Karaoke Version" - }, - { - "title": "A Day in the Life - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Super Duper Love - Joss Stone", - "id": "Karaoke Version" - }, - { - "title": "It's a Hard Knock Life - Annie (1982 film)", - "id": "Karaoke Version" - }, - { - "title": "Do You Wanna Dance? - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Common People - Pulp", - "id": "Karaoke Version" - }, - { - "title": "I Left Something Turned On At Home - Trace Adkins", - "id": "Karaoke Version" - }, - { - "title": "Taxman - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "If I Never Knew You - Pocahontas (1995 film)", - "id": "Karaoke Version" - }, - { - "title": "A Lover's Concerto - The Toys", - "id": "Karaoke Version" - }, - { - "title": "Cruella De Vil - 101 Dalmatians (1996 film) (Dr. John)", - "id": "Karaoke Version" - }, - { - "title": "For You - The Disco Boys & Manfred Mann's Earth Band", - "id": "Karaoke Version" - }, - { - "title": "Shout - The Trammps", - "id": "Karaoke Version" - }, - { - "title": "Copperline - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Sweet Caroline - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "I've Got Love On My Mind - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Da Ya Think I'm Sexy - IMA", - "id": "Karaoke Version" - }, - { - "title": "Rip It Up - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow - Matt Monro", - "id": "Karaoke Version" - }, - { - "title": "Faded Love - Bob Wills and His Texas Playboys", - "id": "Karaoke Version" - }, - { - "title": "What's Going On - Seal", - "id": "Karaoke Version" - }, - { - "title": "Don't Dream It's Over - Sixpence None the Richer", - "id": "Karaoke Version" - }, - { - "title": "When You Walk in the Room - Pam Tillis", - "id": "Karaoke Version" - }, - { - "title": "No One Needs to Know - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Your Mother Should Know - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Any Man of Mine - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Eyes Shut - Years & Years", - "id": "Karaoke Version" - }, - { - "title": "The End - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Those Lazy-Hazy-Crazy Days Of Summer - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "What a Man - Linda Lyndell", - "id": "Karaoke Version" - }, - { - "title": "Jubel - Klingande", - "id": "Karaoke Version" - }, - { - "title": "I'm Outta Here! - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Where Does My Heart Beat Now - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Guess Things Happen That Way - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Song Sung Blue - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Popsicle Toes - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Break Up to Make Up - The Stylistics", - "id": "Karaoke Version" - }, - { - "title": "Take on Me - Reel Big Fish", - "id": "Karaoke Version" - }, - { - "title": "Morning Person - Shrek (musical)", - "id": "Karaoke Version" - }, - { - "title": "The Last Thing on My Mind - Dolly Parton & Porter Wagoner", - "id": "Karaoke Version" - }, - { - "title": "Hitchin' a Ride - Vanity Fare", - "id": "Karaoke Version" - }, - { - "title": "For Your Love - The Yardbirds", - "id": "Karaoke Version" - }, - { - "title": "Dancing Machine - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "It's Going to Take Some Time - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Mess Around - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Hey Rock And Roll - Showaddywaddy", - "id": "Karaoke Version" - }, - { - "title": "How Insensitive - Stacey Kent", - "id": "Karaoke Version" - }, - { - "title": "Heaven Can Wait - Meat Loaf", - "id": "Karaoke Version" - }, - { - "title": "Boom Bang-a-Bang - Lulu", - "id": "Karaoke Version" - }, - { - "title": "Christ The Lord Is Risen Today - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Drunk in the Morning - Lukas Graham", - "id": "Karaoke Version" - }, - { - "title": "We Found Love - Postmodern Jukebox & Robyn Adele Anderson", - "id": "Karaoke Version" - }, - { - "title": "Happy - Kids United", - "id": "Karaoke Version" - }, - { - "title": "Piece By Piece (Live) - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Let's Fall in Love - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "With One Look - Sunset Boulevard (Glenn Close)", - "id": "Karaoke Version" - }, - { - "title": "The Tears of a Clown - Smokey Robinson & The Miracles", - "id": "Karaoke Version" - }, - { - "title": "Slow Down - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "On The Good Ship Lollipop - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Up - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "All I Wanna Do Is Make Love to You - Heart (band)", - "id": "Karaoke Version" - }, - { - "title": "Until It's Time for You to Go - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "People Are People - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Laid Back 'n Low Key - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "(I'm Not Your) Steppin' Stone - The Monkees", - "id": "Karaoke Version" - }, - { - "title": "Silhouettes - The Rays", - "id": "Karaoke Version" - }, - { - "title": "Billie Jean - The Civil Wars", - "id": "Karaoke Version" - }, - { - "title": "Run - Snow Patrol", - "id": "Karaoke Version" - }, - { - "title": "That Don't Impress Me Much - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "My Boo - Ghost Town DJ's", - "id": "Karaoke Version" - }, - { - "title": "Wonderful Life - Hurts", - "id": "Karaoke Version" - }, - { - "title": "The Little Drummer Boy - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "My Coo Ca Choo - Alvin Stardust", - "id": "Karaoke Version" - }, - { - "title": "Dinah - 1920s Standards", - "id": "Karaoke Version" - }, - { - "title": "King Herod's Song (Try It And See) - Jesus Christ Superstar", - "id": "Karaoke Version" - }, - { - "title": "Forever And For Always - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Girls Night Out - The Judds", - "id": "Karaoke Version" - }, - { - "title": "If I Didn't Care - The Platters", - "id": "Karaoke Version" - }, - { - "title": "Titties and Beer (live) - Rodney Carrington", - "id": "Karaoke Version" - }, - { - "title": "You're Still The One - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Run - Leona Lewis", - "id": "Karaoke Version" - }, - { - "title": "Peg O' My Heart - The Four Aces", - "id": "Karaoke Version" - }, - { - "title": "Wake Me Up - Madilyn Bailey", - "id": "Karaoke Version" - }, - { - "title": "After All These Years - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Man! I Feel Like a Woman! - Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Gethsemane (I Only Want to Say) - Jesus Christ Superstar", - "id": "Karaoke Version" - }, - { - "title": "Could It Be Magic (live) - Leona Lewis", - "id": "Karaoke Version" - }, - { - "title": "I Left My Heart in San Francisco - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Loving You (Uptempo Version) - Elvis Presley (Loving You)", - "id": "Karaoke Version" - }, - { - "title": "How Great Thou Art - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "'Round Midnight - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "As Time Goes By - Julie London", - "id": "Karaoke Version" - }, - { - "title": "Corrine, Corrina - Jerry Lee Lewis", - "id": "Karaoke Version" - }, - { - "title": "The Devil Went Down to Georgia (live) - Zac Brown Band", - "id": "Karaoke Version" - }, - { - "title": "For Your Love - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Ain't Got No / I Got Life (Groovefinder Remix) - Nina Simone", - "id": "Karaoke Version" - }, - { - "title": "Blessings - Laura Story", - "id": "Karaoke Version" - }, - { - "title": "Hello Mary Lou - The Statler Brothers", - "id": "Karaoke Version" - }, - { - "title": "Hope Has A Place - Enya", - "id": "Karaoke Version" - }, - { - "title": "Steamroller Blues - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Patsy Fagan - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "We Need a Resolution - Aaliyah & Timbaland", - "id": "Karaoke Version" - }, - { - "title": "Mein Herr - Cabaret", - "id": "Karaoke Version" - }, - { - "title": "Goodbye Earl - The Chicks", - "id": "Karaoke Version" - }, - { - "title": "Friend Like Me - Aladdin (musical)", - "id": "Karaoke Version" - }, - { - "title": "That's When Your Heartaches Begin - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Be True to Your School - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "I'm Looking Over a Four Leaf Clover - Harry M. Woods", - "id": "Karaoke Version" - }, - { - "title": "Blessed Assurance - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "China In Your Hand - T'Pau", - "id": "Karaoke Version" - }, - { - "title": "Hush Hush - The Pussycat Dolls", - "id": "Karaoke Version" - }, - { - "title": "Let's Face the Music and Dance - Tony Bennett & Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Why Don't We Do It in the Road? - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "You Don't Know Me - Elvis Presley & The Jordanaires", - "id": "Karaoke Version" - }, - { - "title": "To Cut a Long Story Short - Spandau Ballet", - "id": "Karaoke Version" - }, - { - "title": "Two of Us - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Easy Love - Sigala", - "id": "Karaoke Version" - }, - { - "title": "I Really Don't Want to Know - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "You Can't Hurry Love - The Chicks", - "id": "Karaoke Version" - }, - { - "title": "Synchronicity II - The Police", - "id": "Karaoke Version" - }, - { - "title": "Come & Talk to Me - Jodeci", - "id": "Karaoke Version" - }, - { - "title": "Carrying Your Love With Me - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Ob-La-Di, Ob-La-Da - Marmalade", - "id": "Karaoke Version" - }, - { - "title": "Five Feet High and Rising - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Johnny And Mary - Robert Palmer", - "id": "Karaoke Version" - }, - { - "title": "Hooray For Hollywood - Hollywood Hotel", - "id": "Karaoke Version" - }, - { - "title": "Shimmer - Fuel", - "id": "Karaoke Version" - }, - { - "title": "I Love The Lord - Mahalia Jackson", - "id": "Karaoke Version" - }, - { - "title": "Since You Been Gone - Rainbow", - "id": "Karaoke Version" - }, - { - "title": "Smooth (Dance Mix) - Rob Thomas & Santana", - "id": "Karaoke Version" - }, - { - "title": "Give It Away - Postmodern Jukebox & Aubrey Logan", - "id": "Karaoke Version" - }, - { - "title": "Don't Let Me Go - Shrek (musical)", - "id": "Karaoke Version" - }, - { - "title": "Teenager in Love - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Geeno Smith", - "id": "Karaoke Version" - }, - { - "title": "Twist in My Sobriety - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "And The Grass Won't Pay No Mind - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Rocks - Primal Scream", - "id": "Karaoke Version" - }, - { - "title": "Good Vibrations - Marky Mark and The Funky Bunch", - "id": "Karaoke Version" - }, - { - "title": "How Sweet It Is (live at the Marquee) - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Goodbye Yellow Brick Road (live) - Sara Bareilles", - "id": "Karaoke Version" - }, - { - "title": "Rednecks, White Socks and Blue Ribbon Beer - Johnny Russell", - "id": "Karaoke Version" - }, - { - "title": "Hip to Be Square - Huey Lewis & The News", - "id": "Karaoke Version" - }, - { - "title": "The Diary of Jane - Breaking Benjamin", - "id": "Karaoke Version" - }, - { - "title": "A Girl Like You - Edwyn Collins", - "id": "Karaoke Version" - }, - { - "title": "Me, Myself and Time - Demi Lovato (Sonny With A Chance)", - "id": "Karaoke Version" - }, - { - "title": "Fairytale - Alexander Rybak", - "id": "Karaoke Version" - }, - { - "title": "We Don't Talk Anymore - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Today I Met The Boy I'm Gonna Marry - Darlene Love", - "id": "Karaoke Version" - }, - { - "title": "Sea of Heartbreak - Joe Brown", - "id": "Karaoke Version" - }, - { - "title": "Make the World Go Away - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Stupid Cupid - Mandy Moore", - "id": "Karaoke Version" - }, - { - "title": "Stressed Out - Twenty One Pilots", - "id": "Karaoke Version" - }, - { - "title": "True - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "You Are Everything - Michael McDonald", - "id": "Karaoke Version" - }, - { - "title": "I Will - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Tenderly - Sarah Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Preacherman - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "My Happiness - Powderfinger", - "id": "Karaoke Version" - }, - { - "title": "Get On Your Feet - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "Stay - Maurice Williams", - "id": "Karaoke Version" - }, - { - "title": "You'd Be So Nice to Come Home to - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "An American Trilogy - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "My Next Broken Heart - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "What I like About You - 5 Seconds of Summer", - "id": "Karaoke Version" - }, - { - "title": "Danny's Song - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "The Coffee Song - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "Endless Love (with Shania Twain) - Lionel Richie & Shania Twain", - "id": "Karaoke Version" - }, - { - "title": "Poor, Poor Pitiful Me - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Black Hole Sun - Soundgarden", - "id": "Karaoke Version" - }, - { - "title": "Love Is a Losing Game - Sam Smith", - "id": "Karaoke Version" - }, - { - "title": "Heartbreak Hotel (The '68 Comeback Special) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Break On Me - Keith Urban", - "id": "Karaoke Version" - }, - { - "title": "When I Fall in Love - Renee Olstead & Chris Botti", - "id": "Karaoke Version" - }, - { - "title": "Falling Slowly - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "You've Lost That Loving Feeling - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Hoedown Throwdown - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Everybody Dance - Chic", - "id": "Karaoke Version" - }, - { - "title": "Electricity - Elton John (Billy Elliot)", - "id": "Karaoke Version" - }, - { - "title": "(You're So Square) Baby I Don't Care - Buddy Holly", - "id": "Karaoke Version" - }, - { - "title": "Les Poissons - The Little Mermaid (1989 film)", - "id": "Karaoke Version" - }, - { - "title": "Seven Seas of Rhye - Queen", - "id": "Karaoke Version" - }, - { - "title": "She's So Gone - Lemonade Mouth", - "id": "Karaoke Version" - }, - { - "title": "Where Is My Mind? - Pixies", - "id": "Karaoke Version" - }, - { - "title": "Move Like U Stole It - ZZ Ward", - "id": "Karaoke Version" - }, - { - "title": "Baby It's You - The Shirelles", - "id": "Karaoke Version" - }, - { - "title": "Clementine - 1960s Standards", - "id": "Karaoke Version" - }, - { - "title": "All I Need - Within Temptation", - "id": "Karaoke Version" - }, - { - "title": "Wake Me Up Before You Go-Go - Wham!", - "id": "Karaoke Version" - }, - { - "title": "Put The Gun Down - ZZ Ward", - "id": "Karaoke Version" - }, - { - "title": "Nice Work If You Can Get It - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Could It Be Magic - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Polk Salad Annie - Tony Joe White", - "id": "Karaoke Version" - }, - { - "title": "Jolene - The BossHoss & The Common Linnets", - "id": "Karaoke Version" - }, - { - "title": "Sour Girl - Stone Temple Pilots", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Sam Smith", - "id": "Karaoke Version" - }, - { - "title": "What's Up, Duloc? - Shrek (musical)", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Every Part Of Me - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "You've Lost That Lovin' Feeling - Hall & Oates", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah (Hope for Haiti Now) - Justin Timberlake & Matt Morris", - "id": "Karaoke Version" - }, - { - "title": "Heroes (live) - David Bowie", - "id": "Karaoke Version" - }, - { - "title": "One Year of Love - Queen (Highlander)", - "id": "Karaoke Version" - }, - { - "title": "Sweet Soul Music - Sam & Dave", - "id": "Karaoke Version" - }, - { - "title": "Hold On Forever - Rob Thomas", - "id": "Karaoke Version" - }, - { - "title": "Ev'ry Time We Say Goodbye - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Love T.K.O. - Teddy Pendergrass", - "id": "Karaoke Version" - }, - { - "title": "Mother - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "What I Like About You - The Romantics", - "id": "Karaoke Version" - }, - { - "title": "I Got You Babe - UB40 & Chrissie Hynde", - "id": "Karaoke Version" - }, - { - "title": "Chim Chim Cheree - The New Christy Minstrels", - "id": "Karaoke Version" - }, - { - "title": "It's Now or Never - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Lost In Your Eyes - Debbie Gibson", - "id": "Karaoke Version" - }, - { - "title": "I Only Have Eyes for You - George Benson", - "id": "Karaoke Version" - }, - { - "title": "Friends - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Say Something - Boyce Avenue & Carly Rose Sonenclar", - "id": "Karaoke Version" - }, - { - "title": "Stranger in Moscow - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Who I'd Be - Shrek (musical)", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas - Ariana Grande", - "id": "Karaoke Version" - }, - { - "title": "Wave On Wave - Pat Green", - "id": "Karaoke Version" - }, - { - "title": "Jukebox Hero / I Love Rock 'n' Roll - Rock of Ages (film)", - "id": "Karaoke Version" - }, - { - "title": "Mud On The Tires - Brad Paisley", - "id": "Karaoke Version" - }, - { - "title": "I Can Hear Your Heartbeat - Chris Rea", - "id": "Karaoke Version" - }, - { - "title": "Breathe Easy - Blue", - "id": "Karaoke Version" - }, - { - "title": "Sway - Glee", - "id": "Karaoke Version" - }, - { - "title": "Listen to the Radio - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Sherry Darling - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Boy (Darling Boy) - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "Am I Blue - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Hand in My Pocket - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "Can't Stand Losing You - The Police", - "id": "Karaoke Version" - }, - { - "title": "Refugee - Tom Petty", - "id": "Karaoke Version" - }, - { - "title": "Video Killed The Radio Star (live) - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Like a Virgin - Texas Lightning", - "id": "Karaoke Version" - }, - { - "title": "Come Along - Titiyo", - "id": "Karaoke Version" - }, - { - "title": "Another Day - Rent (film)", - "id": "Karaoke Version" - }, - { - "title": "Who Will Comfort Me - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Tears in Heaven - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "Goodbye Time - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "Under Your Spell Again - Buck Owens", - "id": "Karaoke Version" - }, - { - "title": "One Day Like This - Elbow", - "id": "Karaoke Version" - }, - { - "title": "Out of Touch - Hall & Oates", - "id": "Karaoke Version" - }, - { - "title": "Goodbye Time - Blake Shelton", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stop Loving You - Kitty Wells", - "id": "Karaoke Version" - }, - { - "title": "Heartaches by the Number - Guy Mitchell", - "id": "Karaoke Version" - }, - { - "title": "Rain - The Cult", - "id": "Karaoke Version" - }, - { - "title": "What Have You Done - Within Temptation & Keith Caputo", - "id": "Karaoke Version" - }, - { - "title": "Just To See You Smile - Tim McGraw", - "id": "Karaoke Version" - }, - { - "title": "Detroit City - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "You Can Fly! - Peter Pan (1953 film)", - "id": "Karaoke Version" - }, - { - "title": "Loving Arms - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "True Love Ways - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Sierra - Maddie & Tae", - "id": "Karaoke Version" - }, - { - "title": "Yesterday - Glee", - "id": "Karaoke Version" - }, - { - "title": "One Day You Will - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Levels - Nick Jonas", - "id": "Karaoke Version" - }, - { - "title": "Say Something - Pentatonix", - "id": "Karaoke Version" - }, - { - "title": "Bad Things - Jace Everett (True Blood)", - "id": "Karaoke Version" - }, - { - "title": "I Like It - Gerry & The Pacemakers", - "id": "Karaoke Version" - }, - { - "title": "Happy Anniversary - Little River Band", - "id": "Karaoke Version" - }, - { - "title": "There Is a Light That Never Goes Out - The Smiths", - "id": "Karaoke Version" - }, - { - "title": "Storms Never Last - Dr. Hook & The Medicine Show", - "id": "Karaoke Version" - }, - { - "title": "Pain Killer - Little Big Town", - "id": "Karaoke Version" - }, - { - "title": "Am I Losing You - Jim Reeves", - "id": "Karaoke Version" - }, - { - "title": "Cake by the Ocean - DNCE", - "id": "Karaoke Version" - }, - { - "title": "Be Our Guest - Beauty and the Beast (1991 film)", - "id": "Karaoke Version" - }, - { - "title": "On My Mind - Ellie Goulding", - "id": "Karaoke Version" - }, - { - "title": "Hero - Chad Kroeger", - "id": "Karaoke Version" - }, - { - "title": "Crying Time - Buck Owens & His Buckaroos", - "id": "Karaoke Version" - }, - { - "title": "Faith of the Heart - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Radioactive - Pentatonix & Lindsey Stirling", - "id": "Karaoke Version" - }, - { - "title": "Teenage Queenie - Pussycat", - "id": "Karaoke Version" - }, - { - "title": "You Don't Have to Be a Star - Marilyn McCoo & Billy Davis Jr.", - "id": "Karaoke Version" - }, - { - "title": "This Charming Man - The Smiths", - "id": "Karaoke Version" - }, - { - "title": "Everything's Alright - Jesus Christ Superstar", - "id": "Karaoke Version" - }, - { - "title": "Heads Carolina, Tails California - Jo Dee Messina", - "id": "Karaoke Version" - }, - { - "title": "Karaoke There's No Business Like Show Business - (Ethel Merman) *", - "id": "NoeuqSRDiJk" - }, - { - "title": "I've Got A Tiger By The Tail - Buck Owens", - "id": "Karaoke Version" - }, - { - "title": "Some of These Days - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Burning Love (with the Royal Philharmonic Orchestra) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Movin' On - Bad Company", - "id": "Karaoke Version" - }, - { - "title": "It's All In The Game - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Chasin' That Neon Rainbow - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Like A Rock - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "Hello Goodbye - Glee", - "id": "Karaoke Version" - }, - { - "title": "Lazy River - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Perfect Storm - Brad Paisley", - "id": "Karaoke Version" - }, - { - "title": "Someday You'll Want Me to Want You - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Dollhouse - Melanie Martinez", - "id": "Karaoke Version" - }, - { - "title": "Money's Too Tight (To Mention) - Simply Red", - "id": "Karaoke Version" - }, - { - "title": "Zabadak - Saragossa Band", - "id": "Karaoke Version" - }, - { - "title": "Crazy Arms - Ray Price", - "id": "Karaoke Version" - }, - { - "title": "Inspector Gadget - Shuki Levy", - "id": "Karaoke Version" - }, - { - "title": "The Last Thing On My Mind - Johnny Brady", - "id": "Karaoke Version" - }, - { - "title": "Shilo - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "True Love Ways - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Eighteen Wheels and a Dozen Roses - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "When I Was a Boy - Jeff Lynne (Electric Light Orchestra)", - "id": "Karaoke Version" - }, - { - "title": "Space Cowboy - Jamiroquai", - "id": "Karaoke Version" - }, - { - "title": "Freeze You Out - Marina Kaye", - "id": "Karaoke Version" - }, - { - "title": "Up On The Roof - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Taking a Chance on Love - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "(Let's Have a) Party - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Drinkin' My Baby Goodbye - The Charlie Daniels Band", - "id": "Karaoke Version" - }, - { - "title": "Exhale (Shoop Shoop) - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Cat's in the Cradle - Ugly Kid Joe", - "id": "Karaoke Version" - }, - { - "title": "I'm a Ramblin' Man - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "All Of My Life - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Twisting the Night Away - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Since I Don't Have You - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "Hello, Dolly! - Petula Clark", - "id": "Karaoke Version" - }, - { - "title": "Brand New Man - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "A Fire I Can't Put Out - George Strait", - "id": "Karaoke Version" - }, - { - "title": "The Zephyr Song - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Freak Flag - Shrek (musical)", - "id": "Karaoke Version" - }, - { - "title": "Help Me, Rhonda - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "None of Your Business - Salt-N-Pepa", - "id": "Karaoke Version" - }, - { - "title": "What Was I Thinkin' - Dierks Bentley", - "id": "Karaoke Version" - }, - { - "title": "Rio - Duran Duran", - "id": "Karaoke Version" - }, - { - "title": "Halleluja (album version) - Peter Maffay", - "id": "Karaoke Version" - }, - { - "title": "Shots - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Brotha - Angie Stone", - "id": "Karaoke Version" - }, - { - "title": "Hot Fudge - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "My Friends - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Just Dance - Lady Gaga & Colby O'Donis", - "id": "Karaoke Version" - }, - { - "title": "Got To Give It Up (Single Version) - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Pretty Girl Rock - Keri Hilson & Kanye West", - "id": "Karaoke Version" - }, - { - "title": "We're All in This Together - High School Musical", - "id": "Karaoke Version" - }, - { - "title": "Little Drummer Boy - Pentatonix", - "id": "Karaoke Version" - }, - { - "title": "You Are - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "Home - Dotan", - "id": "Karaoke Version" - }, - { - "title": "We Like To Party - Vengaboys", - "id": "Karaoke Version" - }, - { - "title": "Changing - Sigma & Paloma Faith", - "id": "Karaoke Version" - }, - { - "title": "Telephone - Lady Gaga & Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Something in the Way She Moves - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "I Couldn't Leave You If I Tried - Rodney Crowell", - "id": "Karaoke Version" - }, - { - "title": "The Power Of The Dream - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "One More Try - George Michael", - "id": "Karaoke Version" - }, - { - "title": "One for My Baby - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "I Won't Tell a Soul - Charlie Puth", - "id": "Karaoke Version" - }, - { - "title": "A Song for You - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Blinded by the Light - Manfred Mann's Earth Band", - "id": "Karaoke Version" - }, - { - "title": "Vasoline - Stone Temple Pilots", - "id": "Karaoke Version" - }, - { - "title": "So Sad (To Watch Good Love Go Bad) - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "If We Make It Through December - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Sky High - Jigsaw", - "id": "Karaoke Version" - }, - { - "title": "Jim and Jack and Hank - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Lost in Love - Air Supply", - "id": "Karaoke Version" - }, - { - "title": "To Know Him Is to Love Him - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "We Have All the Time in the World - James Bond (Louis Armstrong)", - "id": "Karaoke Version" - }, - { - "title": "Wuthering Heights - The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "Gran Torino - Jamie Cullum", - "id": "Karaoke Version" - }, - { - "title": "Blue Eyes Crying in the Rain - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Since I Lost My Baby - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Angels and Alcohol - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Only Yesterday - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "It's Been Awhile - Staind", - "id": "Karaoke Version" - }, - { - "title": "Sunrise - Norah Jones", - "id": "Karaoke Version" - }, - { - "title": "Christmas in Dixie - Kenny Chesney", - "id": "Karaoke Version" - }, - { - "title": "Christmas in Killarney - 1950s Standards", - "id": "Karaoke Version" - }, - { - "title": "Pretty Paper - Kenny Chesney", - "id": "Karaoke Version" - }, - { - "title": "Good For You - Selena Gomez & ASAP Rocky", - "id": "Karaoke Version" - }, - { - "title": "Crying Time - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Pick Me Up On Your Way Down - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Blowin' in the Wind - Peter, Paul and Mary", - "id": "Karaoke Version" - }, - { - "title": "Ex's & Oh's - Elle King", - "id": "Karaoke Version" - }, - { - "title": "Back At One - Brian McKnight", - "id": "Karaoke Version" - }, - { - "title": "Minnie the Moocher - Cab Calloway", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells (Bass) - Basshunter", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Peggy Lee", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Rockn' Around The Christmas Tree / Jingle Bell Rock - Michael Bublรฉ feat. Carly Rae Jepsen *", - "id": "vY68GNu4OK4" - }, - { - "title": "Silent Night (Lord Of My Life) - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Imagine - Glee", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Around the Christmas Tree - Amy Grant", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow! Let It Snow! Let It Snow! - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Stick To The Status Quo - High School Musical", - "id": "Karaoke Version" - }, - { - "title": "The Sky Is Crying - Stevie Ray Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Zing Went The Strings Of My Heart - The Trammps", - "id": "Karaoke Version" - }, - { - "title": "Over the River and Through the Woods (Xmas Version) - 1800s Standards", - "id": "Karaoke Version" - }, - { - "title": "Show And Tell - Al Wilson", - "id": "Karaoke Version" - }, - { - "title": "You Know I'm No Good - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Give It Away - George Strait", - "id": "Karaoke Version" - }, - { - "title": "What Are Words - Chris Medina", - "id": "Karaoke Version" - }, - { - "title": "Hope - Emeli Sandรฉ", - "id": "Karaoke Version" - }, - { - "title": "Now That We Found Love - Third World", - "id": "Karaoke Version" - }, - { - "title": "You're Pretty When I'm Drunk - Bloodhound Gang", - "id": "Karaoke Version" - }, - { - "title": "Sugar - Robin Schulz & Francesco Yates", - "id": "Karaoke Version" - }, - { - "title": "I Don't Want to Spoil the Party - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "All the Things You Are - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Flowers On The Wall - Eric Heatherly", - "id": "Karaoke Version" - }, - { - "title": "Holiday Road - Lindsey Buckingham", - "id": "Karaoke Version" - }, - { - "title": "My Special Angel - Bobby Helms", - "id": "Karaoke Version" - }, - { - "title": "Inside of You - Infant Sorrow (Forgetting Sarah Marshall)", - "id": "Karaoke Version" - }, - { - "title": "Hound Dog - Grease (film) (Sha Na Na)", - "id": "Karaoke Version" - }, - { - "title": "When I See You Smile - Bad English", - "id": "Karaoke Version" - }, - { - "title": "I Fought the Law - Green Day", - "id": "Karaoke Version" - }, - { - "title": "Last Request - Paolo Nutini", - "id": "Karaoke Version" - }, - { - "title": "I'm Easy - Keith Carradine", - "id": "Karaoke Version" - }, - { - "title": "Valentine - Jim Brickman & Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Good Guys - Mika", - "id": "Karaoke Version" - }, - { - "title": "All Jacked Up - Gretchen Wilson", - "id": "Karaoke Version" - }, - { - "title": "Right or Wrong - Wanda Jackson", - "id": "Karaoke Version" - }, - { - "title": "Down With The Sickness - Richard Cheese", - "id": "Karaoke Version" - }, - { - "title": "EN canned heat going up the country 20622", - "id": "xHs8FoXqO5M" - }, - { - "title": "Girls in Their Summer Clothes - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Every Time I Close My Eyes - Babyface & Kenny G", - "id": "Karaoke Version" - }, - { - "title": "It's Time - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "The Way You Look Tonight - The Lettermen", - "id": "Karaoke Version" - }, - { - "title": "Funny Girl - Glee", - "id": "Karaoke Version" - }, - { - "title": "Mo Money Mo Problems - The Notorious B.I.G. & Moana 2 & Mase", - "id": "Karaoke Version" - }, - { - "title": "Karaoke As Long As There's Christmas (End Title) - Beauty and the Beast: The Enchanted Christmas *", - "id": "ju3a79oRYVY" - }, - { - "title": "Mercy Mercy Mercy - The Buckinghams", - "id": "Karaoke Version" - }, - { - "title": "18 Yellow Roses - Marty Robbins", - "id": "Karaoke Version" - }, - { - "title": "('Til) I Kissed You - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "I Will Always Love You - Glee", - "id": "Karaoke Version" - }, - { - "title": "Dog Days Are Over - Florence + The Machine", - "id": "Karaoke Version" - }, - { - "title": "Games People Play - Inner Circle", - "id": "Karaoke Version" - }, - { - "title": "Good Time Charlie's Got the Blues - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Old Flames Can't Hold a Candle to You - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "All I Want for Christmas - Cee Lo Green", - "id": "Karaoke Version" - }, - { - "title": "Winter World of Love - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "It's Beginning to Look a Lot Like Christmas - Bing Crosby", - "id": "Karaoke Version" - }, - { - "title": "I Think We're Alone Now - Tommy James and The Shondells", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off of You - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Levon - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Na Na Hey Hey (Kiss Him Goodbye) - Steam", - "id": "Karaoke Version" - }, - { - "title": "Please Come To Boston - Dave Loggins", - "id": "Karaoke Version" - }, - { - "title": "Needles & Pins - The Searchers", - "id": "Karaoke Version" - }, - { - "title": "Breakout - Swing Out Sister", - "id": "Karaoke Version" - }, - { - "title": "On And On - Stephen Bishop", - "id": "Karaoke Version" - }, - { - "title": "If I Ruled the World - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "When She Loved Me (Sarah McLachlan) - Toy Story", - "id": "Karaoke Version" - }, - { - "title": "Good Time Charlie's Got the Blues - Danny O'Keefe", - "id": "Karaoke Version" - }, - { - "title": "Downtown - Macklemore & Ryan Lewis", - "id": "Karaoke Version" - }, - { - "title": "Only Girl (In the World) - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Start Again - Conrad Sewell", - "id": "Karaoke Version" - }, - { - "title": "Lucille - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Down In The Boondocks - Billy Joe Royal", - "id": "Karaoke Version" - }, - { - "title": "Holly Holy - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Love Is - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Feliz Navidad - Boney M.", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Glee", - "id": "Karaoke Version" - }, - { - "title": "Shotgun - Junior Walker & the All Stars", - "id": "Karaoke Version" - }, - { - "title": "Burning Love (Viva Elvis) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "The Rhythm of the Night - Corona & Jenny B", - "id": "Karaoke Version" - }, - { - "title": "Roxie - Chicago (the musical)", - "id": "Karaoke Version" - }, - { - "title": "You're Only Lonely - J. D. Souther", - "id": "Karaoke Version" - }, - { - "title": "Tropical Depression - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Shine - Years & Years", - "id": "Karaoke Version" - }, - { - "title": "Crushin' It - Brad Paisley", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Sunshine - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "You Are My Sunshine / Open Up Your Heart - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Amy Grant", - "id": "Karaoke Version" - }, - { - "title": "You Never Know - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Steamroller Blues - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas Darling - Glee & Lea Michele", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Chris Isaak", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song - Peggy Lee", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Out the Door - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "O Little Town of Bethlehem - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Rockin' with the Rhythm of the Rain - The Judds", - "id": "Karaoke Version" - }, - { - "title": "Only Sixteen - Sam Cooke", - "id": "Karaoke Version" - }, - { - "title": "Flashdance (What a Feeling) - Glee", - "id": "Karaoke Version" - }, - { - "title": "Sugar Man - Sixto Rodriguez", - "id": "Karaoke Version" - }, - { - "title": "It Keeps Right On a-Hurtin' - Johnny Tillotson", - "id": "Karaoke Version" - }, - { - "title": "She's Not Cryin' Anymore - Billy Ray Cyrus", - "id": "Karaoke Version" - }, - { - "title": "My Heart Will Go On - Postmodern Jukebox & Mykal Kilgore", - "id": "Karaoke Version" - }, - { - "title": "Latch - Disclosure & Sam Smith", - "id": "Karaoke Version" - }, - { - "title": "The First Cut Is The Deepest - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "See You Again - Boyce Avenue & Bea Miller", - "id": "Karaoke Version" - }, - { - "title": "You Can Always Come Home - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Nutbush City Limits - Tina Turner & Ike Turner", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Hey Soul Sister (Country Mix) - Train", - "id": "Karaoke Version" - }, - { - "title": "Some Kind of Wonderful - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Mexico, Tequila and Me - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Brother Love's Traveling Salvation Show - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Two More Bottles of Wine - Delbert McClinton", - "id": "Karaoke Version" - }, - { - "title": "Tapestry - Carole King", - "id": "Karaoke Version" - }, - { - "title": "I Need You - America", - "id": "Karaoke Version" - }, - { - "title": "The Shadow of Your Smile (live) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Tarzan Boy - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "The Gambler - Johnny Brady", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Tracy Chapman", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - The Marcels", - "id": "Karaoke Version" - }, - { - "title": "Fun, Fun, Fun - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "A Love Worth Waiting for - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "Together Forever - Rick Astley", - "id": "Karaoke Version" - }, - { - "title": "You're My Best Friend - Queen", - "id": "Karaoke Version" - }, - { - "title": "Come On Eileen - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "Shot In The Dark - Ozzy Osbourne", - "id": "Karaoke Version" - }, - { - "title": "Going Back To My Roots - Odyssey", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Jeff Buckley", - "id": "Karaoke Version" - }, - { - "title": "All Alone Am I - Brenda Lee", - "id": "Karaoke Version" - }, - { - "title": "Woman From Tokyo - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "Wouldn't Change a Thing - Camp Rock", - "id": "Karaoke Version" - }, - { - "title": "Seven Nights To Rock - BR5-49", - "id": "Karaoke Version" - }, - { - "title": "Snowbird - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Say It Right - Nelly Furtado", - "id": "Karaoke Version" - }, - { - "title": "You Better Move On - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "St Louis Blues - Peter Cincotti", - "id": "Karaoke Version" - }, - { - "title": "Swing Life Away - Rise Against", - "id": "Karaoke Version" - }, - { - "title": "My Romance - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Welcome Home - Coheed and Cambria", - "id": "Karaoke Version" - }, - { - "title": "Shut Up and Dance - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "Don't Look Any Further - M People", - "id": "Karaoke Version" - }, - { - "title": "My Silver Lining - First Aid Kit", - "id": "Karaoke Version" - }, - { - "title": "Bird on the Wire - Leonard Cohen", - "id": "Karaoke Version" - }, - { - "title": "What Dreams Are Made of - The Lizzie McGuire Movie (Hilary Duff)", - "id": "Karaoke Version" - }, - { - "title": "Nothing's Gonna Change My Love for You - George Benson", - "id": "Karaoke Version" - }, - { - "title": "Walking in the Rain - The Ronettes", - "id": "Karaoke Version" - }, - { - "title": "When You Tell The World You're Mine - Agnes Carlsson & Bjรถrn Skifs", - "id": "Karaoke Version" - }, - { - "title": "You've Got the Love - Florence + The Machine", - "id": "Karaoke Version" - }, - { - "title": "Maybe Tomorrow - Stereophonics", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Glee", - "id": "Karaoke Version" - }, - { - "title": "Grin and Bare It - Smash", - "id": "Karaoke Version" - }, - { - "title": "Sleigh Ride - Johnny Mathis", - "id": "Karaoke Version" - }, - { - "title": "Holy, Holy, Holy - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Love Don't Live Here Anymore - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Hey, Soul Sister - Glee", - "id": "Karaoke Version" - }, - { - "title": "Quando Quando Quando - Fergie & will.i.am", - "id": "Karaoke Version" - }, - { - "title": "A Kiss to Build a Dream On - Louis Armstrong", - "id": "Karaoke Version" - }, - { - "title": "For All We Know - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Goodbye Philadelphia - Peter Cincotti", - "id": "Karaoke Version" - }, - { - "title": "I See Fire - Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Come & Get It - Selena Gomez", - "id": "Karaoke Version" - }, - { - "title": "Happy Wanderer - Polka Forever", - "id": "Karaoke Version" - }, - { - "title": "A House Is Not a Home - Glee", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow - Jane Monheit", - "id": "Karaoke Version" - }, - { - "title": "Sway (Junkie XL Remix) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "How Do You Do! - Roxette", - "id": "Karaoke Version" - }, - { - "title": "(If Loving You Is Wrong) I Don't Want to Be Right - Luther Ingram", - "id": "Karaoke Version" - }, - { - "title": "South of the Border - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Beautiful - Carole King", - "id": "Karaoke Version" - }, - { - "title": "Don't Judge Me - Chris Brown", - "id": "Karaoke Version" - }, - { - "title": "Alcohol - Brad Paisley", - "id": "Karaoke Version" - }, - { - "title": "Move Over Darling - Doris Day", - "id": "Karaoke Version" - }, - { - "title": "Small Town - John Mellencamp", - "id": "Karaoke Version" - }, - { - "title": "God Bless the Child - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Don't Dream It's Over - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "It's Late - Ricky Nelson", - "id": "Karaoke Version" - }, - { - "title": "Ice Queen - Within Temptation", - "id": "Karaoke Version" - }, - { - "title": "Free Ride - Edgar Winter", - "id": "Karaoke Version" - }, - { - "title": "Elenore - The Turtles", - "id": "Karaoke Version" - }, - { - "title": "Santa Baby - Madonna", - "id": "Karaoke Version" - }, - { - "title": "We Gather Together - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Relight My Fire - Dan Hartman", - "id": "Karaoke Version" - }, - { - "title": "Bรฉsame mucho - Thalรญa & Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Love Song - Miranda Lambert & Lady A", - "id": "Karaoke Version" - }, - { - "title": "Smooth Criminal - Glee", - "id": "Karaoke Version" - }, - { - "title": "My First Taste of Texas - Ed Bruce", - "id": "Karaoke Version" - }, - { - "title": "Waitin' On A Sunny Day - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Sway (Cha Cha Cha Version - live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Stand My Ground - Within Temptation", - "id": "Karaoke Version" - }, - { - "title": "No Shoes, No Shirt, No Problem - Kenny Chesney", - "id": "Karaoke Version" - }, - { - "title": "Corrina, Corrina - Ray Peterson", - "id": "Karaoke Version" - }, - { - "title": "Lovergirl - Teena Marie", - "id": "Karaoke Version" - }, - { - "title": "If I Ever Lose My Faith in You - Sting", - "id": "Karaoke Version" - }, - { - "title": "Sway - The Pussycat Dolls", - "id": "Karaoke Version" - }, - { - "title": "It Had to Be You - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "If I Can't Have You - Etta James & Harvey Fuqua", - "id": "Karaoke Version" - }, - { - "title": "Sway - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Sway (Quien Sera) - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Love Is a Losing Game - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Spooky - Classics IV", - "id": "Karaoke Version" - }, - { - "title": "Hush - Kula Shaker", - "id": "Karaoke Version" - }, - { - "title": "Rollin' with the Flow - Mark Chesnutt", - "id": "Karaoke Version" - }, - { - "title": "You Are My Sunshine - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "House For Sale - Lucifer & Margriet Eshuijs", - "id": "Karaoke Version" - }, - { - "title": "Anything Goes - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Wake Me Up (BBC Children In Need 2014) - Gareth Malone", - "id": "Karaoke Version" - }, - { - "title": "Last Train To London - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Try a Little Tenderness (live Wembley) - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "I Don't Know a Thing About Love (The Moon Song) - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "Baby I'm Yours - Barbara Lewis", - "id": "Karaoke Version" - }, - { - "title": "Here In My Heart - Renรฉ Froger", - "id": "Karaoke Version" - }, - { - "title": "Detroit Rock City - Kiss", - "id": "Karaoke Version" - }, - { - "title": "Can't Rely On You - Paloma Faith", - "id": "Karaoke Version" - }, - { - "title": "Airstream Song - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Be My Love - Mario Lanza", - "id": "Karaoke Version" - }, - { - "title": "Tell It to My Heart - Taylor Dayne", - "id": "Karaoke Version" - }, - { - "title": "Angel in Blue Jeans - Train", - "id": "Karaoke Version" - }, - { - "title": "One Fine Day - The Chiffons", - "id": "Karaoke Version" - }, - { - "title": "Then You Can Tell Me Goodbye - The Casinos", - "id": "Karaoke Version" - }, - { - "title": "Let's Hang On! - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "D-I-V-O-R-C-E - Tammy Wynette", - "id": "Karaoke Version" - }, - { - "title": "So Cold - Breaking Benjamin", - "id": "Karaoke Version" - }, - { - "title": "Someday - Celtic Woman", - "id": "Karaoke Version" - }, - { - "title": "Love of a Lifetime - Firehouse", - "id": "Karaoke Version" - }, - { - "title": "Acapella - Karmin", - "id": "Karaoke Version" - }, - { - "title": "Long Tall Texan - Doug Supernaw & The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Round Here - Counting Crows", - "id": "Karaoke Version" - }, - { - "title": "Wher'm I Gonna Live? - Billy Ray Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Tonight I Wanna Cry - Keith Urban", - "id": "Karaoke Version" - }, - { - "title": "Blue Eyes Crying in the Rain - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "The Sun Ain't Gonna Shine Anymore - The Walker Brothers", - "id": "Karaoke Version" - }, - { - "title": "Since I Fell for You - Reba McEntire & Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "You Don't Own Me - Suicide Squad (2016 film) (SayGrace & G-Eazy)", - "id": "Karaoke Version" - }, - { - "title": "And We Danced - The Hooters", - "id": "Karaoke Version" - }, - { - "title": "Jose Cuervo - Shelly West", - "id": "Karaoke Version" - }, - { - "title": "Train Kept A Rollin' - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "Sun Of Jamaica - Goombay Dance Band", - "id": "Karaoke Version" - }, - { - "title": "Leave the Night On - Sam Hunt", - "id": "Karaoke Version" - }, - { - "title": "What a Difference a Day Makes - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Halfway to Paradise - Billy Fury", - "id": "Karaoke Version" - }, - { - "title": "Better Man - Paolo Nutini", - "id": "Karaoke Version" - }, - { - "title": "Our Love - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Emotions - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Fox On The Run (live) - Zac Brown Band", - "id": "Karaoke Version" - }, - { - "title": "Warm And Tender Love - Percy Sledge", - "id": "Karaoke Version" - }, - { - "title": "Tonight Again - Guy Sebastian", - "id": "Karaoke Version" - }, - { - "title": "Rockin' All Over the World - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "Broken Vow - Lara Fabian", - "id": "Karaoke Version" - }, - { - "title": "Polaroid - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Bad Romance - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Too Close - Alex Clare", - "id": "Karaoke Version" - }, - { - "title": "All I Want for Christmas Is You - Justin Bieber & Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Criminal - Postmodern Jukebox & Ariana Savalas", - "id": "Karaoke Version" - }, - { - "title": "Radioactive - Madilyn Bailey", - "id": "Karaoke Version" - }, - { - "title": "Feelin' Good - The Pussycat Dolls", - "id": "Karaoke Version" - }, - { - "title": "Hold On - Wilson Phillips", - "id": "Karaoke Version" - }, - { - "title": "Beat Me Daddy, Eight to the Bar - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "This Magic Moment - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Come Get to This - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "The Last Cheater's Waltz - Emmylou Harris", - "id": "Karaoke Version" - }, - { - "title": "Love Is All - Joe Longthorne", - "id": "Karaoke Version" - }, - { - "title": "True Friend - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Portofino - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "I Left My Heart in San Francisco - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Voodoo Child (Slight Return) - Stevie Ray Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Honky Tonk Blues - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "What Time Is It? - High School Musical 2", - "id": "Karaoke Version" - }, - { - "title": "Home - Beauty and the Beast (musical)", - "id": "Karaoke Version" - }, - { - "title": "What a Dog / He's a Tramp - Lady and the Tramp", - "id": "Karaoke Version" - }, - { - "title": "My Baby Just Cares for Me - Smoma", - "id": "Karaoke Version" - }, - { - "title": "Feel So Close - Calvin Harris", - "id": "Karaoke Version" - }, - { - "title": "Funny Face - Donna Fargo", - "id": "Karaoke Version" - }, - { - "title": "I Only Have Eyes for You - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "My Foolish Heart - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Lazy - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "Battle Scars - Guy Sebastian & Lupe Fiasco", - "id": "Karaoke Version" - }, - { - "title": "La vie en rose - Diana Krall & Toots Thielemans", - "id": "Karaoke Version" - }, - { - "title": "Best Song Ever - One Direction", - "id": "Karaoke Version" - }, - { - "title": "If You Love Me (Let Me Know) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Longfellow Serenade - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Echo Beach - Martha And The Muffins", - "id": "Karaoke Version" - }, - { - "title": "The Freshmen - The Verve Pipe", - "id": "Karaoke Version" - }, - { - "title": "Anything For You - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "What'll I Do - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Down with the Sickness - Disturbed", - "id": "Karaoke Version" - }, - { - "title": "True Love's Kiss - Enchanted", - "id": "Karaoke Version" - }, - { - "title": "Nel blu dipinto di blu - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Hurt (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Proud of Your Boy - Aladdin (musical)", - "id": "Karaoke Version" - }, - { - "title": "Here I Am (Come and Take Me) - UB40", - "id": "Karaoke Version" - }, - { - "title": "Bright Lights - Matchbox Twenty", - "id": "Karaoke Version" - }, - { - "title": "Stay High (Habits Remix) - Tove Lo & Hippie Sabotage", - "id": "Karaoke Version" - }, - { - "title": "Who's Your Daddy - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "Help - John Farnham", - "id": "Karaoke Version" - }, - { - "title": "Gimme Some - Brendon", - "id": "Karaoke Version" - }, - { - "title": "Under the Man in the Moon - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Calling America - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Who's Cheatin' Who - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Little Bitty - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Man or Muppet - The Muppets", - "id": "Karaoke Version" - }, - { - "title": "MacArthur Park (Short version) - Richard Harris", - "id": "Karaoke Version" - }, - { - "title": "Sh-boom (Life Could Be a Dream) - The Crew-Cuts", - "id": "Karaoke Version" - }, - { - "title": "Itchycoo Park - Small Faces", - "id": "Karaoke Version" - }, - { - "title": "The Good Life - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Let It Go (Electronic Dance Remix) - Demi Lovato", - "id": "Karaoke Version" - }, - { - "title": "Working Class Man - Jimmy Barnes", - "id": "Karaoke Version" - }, - { - "title": "Don't Close Your Eyes - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Heart Like Mine - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "There Stands The Glass - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "Reptilia - The Strokes", - "id": "Karaoke Version" - }, - { - "title": "What Can I Do (To Make You Love Me) - The Corrs", - "id": "Karaoke Version" - }, - { - "title": "Ashes of Love - The Desert Rose Band", - "id": "Karaoke Version" - }, - { - "title": "Stop! In the Name of Love - The Supremes", - "id": "Karaoke Version" - }, - { - "title": "Yesterday (live from Las Vegas) - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "Roam - The B-52's", - "id": "Karaoke Version" - }, - { - "title": "Place Your Hands - Reef", - "id": "Karaoke Version" - }, - { - "title": "Basin Street Blues - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Six Days On The Road - Dave Dudley", - "id": "Karaoke Version" - }, - { - "title": "Fools Rush In - Ricky Nelson", - "id": "Karaoke Version" - }, - { - "title": "Back in Time - Huey Lewis & The News", - "id": "Karaoke Version" - }, - { - "title": "How Bizarre - OMC", - "id": "Karaoke Version" - }, - { - "title": "Just Walkin' in the Rain - Johnnie Ray", - "id": "Karaoke Version" - }, - { - "title": "I Heard It Through the Grapevine - Gladys Knight & The Pips", - "id": "Karaoke Version" - }, - { - "title": "Watching the Wheels - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "Come Together - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "(Don't Fear) The Reaper - Blue ร–yster Cult", - "id": "Karaoke Version" - }, - { - "title": "Lovefool - Postmodern Jukebox & Haley Reinhart", - "id": "Karaoke Version" - }, - { - "title": "Move On Up - Curtis Mayfield", - "id": "Karaoke Version" - }, - { - "title": "You Can Close Your Eyes - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Wheels on the Bus (Go Round and Round) - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Where You Belong - The Weeknd", - "id": "Karaoke Version" - }, - { - "title": "More Than I Can Bear - Matt Bianco", - "id": "Karaoke Version" - }, - { - "title": "I Can't Get Next to You - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Habits (Stay High) - Tove Lo", - "id": "Karaoke Version" - }, - { - "title": "Sun Goes Down - Robin Schulz & Jasmine Thompson", - "id": "Karaoke Version" - }, - { - "title": "Honeycomb - Jimmie Rodgers", - "id": "Karaoke Version" - }, - { - "title": "What Is Love 2k9 - Haddaway & Klaas", - "id": "Karaoke Version" - }, - { - "title": "Ready For Love - Bad Company", - "id": "Karaoke Version" - }, - { - "title": "I'm Shakin' - Jack White", - "id": "Karaoke Version" - }, - { - "title": "Somebody - Jeremih & Natalie La Rose", - "id": "Karaoke Version" - }, - { - "title": "It Is You (I Have Loved) - Dana Glover (Shrek film)", - "id": "Karaoke Version" - }, - { - "title": "Bluest Blues - Alvin Lee & George Harrison", - "id": "Karaoke Version" - }, - { - "title": "True to Your Heart - Mulan (98 Degrees & Stevie Wonder)", - "id": "Karaoke Version" - }, - { - "title": "Wish You Were Here - Incubus", - "id": "Karaoke Version" - }, - { - "title": "Drinking Champagne - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Tossin' and Turnin' - Bobby Lewis", - "id": "Karaoke Version" - }, - { - "title": "Ode to Billy Joe - Bobbie Gentry", - "id": "Karaoke Version" - }, - { - "title": "Habits - Postmodern Jukebox & Haley Reinhart", - "id": "Karaoke Version" - }, - { - "title": "All I Ask of You - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "New Slang - The Shins", - "id": "Karaoke Version" - }, - { - "title": "I'm into Something Good - Herman's Hermits", - "id": "Karaoke Version" - }, - { - "title": "Fight Song - Rachel Platten", - "id": "Karaoke Version" - }, - { - "title": "Everybody's Got To Learn Sometime - Zucchero", - "id": "Karaoke Version" - }, - { - "title": "The Windmills of Your Mind - Tina Arena", - "id": "Karaoke Version" - }, - { - "title": "My Little Grass Shack in Kealakekua, Hawaii - 1960s Standards", - "id": "Karaoke Version" - }, - { - "title": "Sh Boom (Life Could Be a Dream) - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "America The Beautiful - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Route 66 (live) - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "Would I Lie to You? - Charles & Eddie", - "id": "Karaoke Version" - }, - { - "title": "Play Ball - AC/DC", - "id": "Karaoke Version" - }, - { - "title": "Radioactive - Postmodern Jukebox & Blake Lewis", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Alive And Kicking - Simple Minds", - "id": "Karaoke Version" - }, - { - "title": "Good Life - OneRepublic", - "id": "Karaoke Version" - }, - { - "title": "Got to Get You into My Life - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Everything (Live From Madison Square Garden) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Things We Lost In The Fire - Bastille", - "id": "Karaoke Version" - }, - { - "title": "You Sent Me Flying - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Dude (Looks Like A Lady) - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "Still The Same - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "Born To Boogie - Hank Williams, Jr.", - "id": "Karaoke Version" - }, - { - "title": "Hey Little Rich Girl - Amy Winehouse & Zalon & Ade", - "id": "Karaoke Version" - }, - { - "title": "Me And God - Josh Turner", - "id": "Karaoke Version" - }, - { - "title": "Suspicious Minds - Dwight Yoakam", - "id": "Karaoke Version" - }, - { - "title": "More Than Words / Heaven - Rock of Ages (film)", - "id": "Karaoke Version" - }, - { - "title": "Ain't Nothin' Like The Real Thing - Marvin Gaye & Tammi Terrell", - "id": "Karaoke Version" - }, - { - "title": "What It's Like - Everlast", - "id": "Karaoke Version" - }, - { - "title": "Crazy - Julio Iglesias", - "id": "Karaoke Version" - }, - { - "title": "Try A Little Kindness - Glen Campbell", - "id": "Karaoke Version" - }, - { - "title": "Walkin' After Midnight - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "I Just Can't Wait to Be King (Elton John) - The Lion King (1994 film)", - "id": "Karaoke Version" - }, - { - "title": "Yoรผ and I - Lady Gaga & Brian May", - "id": "Karaoke Version" - }, - { - "title": "People Got to Be Free - The Rascals", - "id": "Karaoke Version" - }, - { - "title": "Branded Man - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "How Can I Be Sure - The Rascals", - "id": "Karaoke Version" - }, - { - "title": "When I'm Gone - 3 Doors Down", - "id": "Karaoke Version" - }, - { - "title": "On The Radio - Donna Summer", - "id": "Karaoke Version" - }, - { - "title": "Mountain of Love - Charley Pride", - "id": "Karaoke Version" - }, - { - "title": "It Doesn't Matter Anymore - Buddy Holly", - "id": "Karaoke Version" - }, - { - "title": "Schism - Tool", - "id": "Karaoke Version" - }, - { - "title": "Catfish John - Nitty Gritty Dirt Band", - "id": "Karaoke Version" - }, - { - "title": "South of the Border (Down Mexico Way) - Patsy Cline & The Jordanaires", - "id": "Karaoke Version" - }, - { - "title": "Ev'ry Time We Say Goodbye - Sarah Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Daddy Frank (The Guitar Man) - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Tennessee Whiskey - Chris Stapleton", - "id": "Karaoke Version" - }, - { - "title": "Everything - Anouk", - "id": "Karaoke Version" - }, - { - "title": "You Decorated My Life - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Alone Again (Naturally) - Diana Krall & Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Goody Goody - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Would? - Alice in Chains", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop Believin' - Glee", - "id": "Karaoke Version" - }, - { - "title": "Dream Weaver - Gary Wright", - "id": "Karaoke Version" - }, - { - "title": "I Only Wanna Be With You - Bay City Rollers", - "id": "Karaoke Version" - }, - { - "title": "I'm So Lonesome I Could Cry - Hank Williams, Sr.", - "id": "Karaoke Version" - }, - { - "title": "Hot Legs - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Sleigh Ride - The Ronettes", - "id": "Karaoke Version" - }, - { - "title": "1-2-3 - Len Barry", - "id": "Karaoke Version" - }, - { - "title": "Route 66 - Manhattan Transfer", - "id": "Karaoke Version" - }, - { - "title": "The Long Black Veil - Lefty Frizzell", - "id": "Karaoke Version" - }, - { - "title": "Now That the Magic Has Gone - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Make Me Smile (Come Up And See Me) - Steve Harley And Cockney Rebel", - "id": "Karaoke Version" - }, - { - "title": "Havin' a Party - Sam Cooke", - "id": "Karaoke Version" - }, - { - "title": "Respect - Otis Redding", - "id": "Karaoke Version" - }, - { - "title": "Sweet Baby James - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Bad Romance - Postmodern Jukebox & Ariana Savalas", - "id": "Karaoke Version" - }, - { - "title": "He'll Have to Go - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "My Baby Just Cares for Me - Renee Olstead", - "id": "Karaoke Version" - }, - { - "title": "Try to Remember - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "In My Life - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "True Colors - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "It's Your Love - Tim McGraw & Faith Hill", - "id": "Karaoke Version" - }, - { - "title": "The Three Bells - The Browns", - "id": "Karaoke Version" - }, - { - "title": "Multiply - Jamie Lidell", - "id": "Karaoke Version" - }, - { - "title": "Worrisome Heart - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Jealous Guy - Roxy Music", - "id": "Karaoke Version" - }, - { - "title": "As Long As You're Mine - Wicked", - "id": "Karaoke Version" - }, - { - "title": "Suspicious Minds - Waylon Jennings & Jessi Colter", - "id": "Karaoke Version" - }, - { - "title": "Mr. Blue - The Fleetwoods", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Be the Only One - Eternal & BeBe Winans", - "id": "Karaoke Version" - }, - { - "title": "Hey Jealousy - Gin Blossoms", - "id": "Karaoke Version" - }, - { - "title": "Mama Makes Three - Smash", - "id": "Karaoke Version" - }, - { - "title": "Englishman In New-York - Cris Cab", - "id": "Karaoke Version" - }, - { - "title": "One Week - Barenaked Ladies", - "id": "Karaoke Version" - }, - { - "title": "All My Rowdy Friends (Have Settled Down) - Hank Williams, Jr.", - "id": "Karaoke Version" - }, - { - "title": "No One to Depend on - Santana", - "id": "Karaoke Version" - }, - { - "title": "Mandela Day - Simple Minds", - "id": "Karaoke Version" - }, - { - "title": "Summertime - DJ Jazzy Jeff & The Fresh Prince", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off of You - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Thank You - Sly and the Family Stone", - "id": "Karaoke Version" - }, - { - "title": "Get Ready - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "I Just Fall In Love Again - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "Galveston - Glen Campbell", - "id": "Karaoke Version" - }, - { - "title": "It Had to Be You (Duet) - Tony Bennett & Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Ain't Nobody - Jasmine Thompson & Felix Jaehn", - "id": "Karaoke Version" - }, - { - "title": "September Morn - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "See You Again (piano version) - Charlie Puth", - "id": "Karaoke Version" - }, - { - "title": "You Only Live Twice - James Bond (Nancy Sinatra)", - "id": "Karaoke Version" - }, - { - "title": "It Never Rains In Southern California - Albert Hammond", - "id": "Karaoke Version" - }, - { - "title": "God Bless the USA - Jump5", - "id": "Karaoke Version" - }, - { - "title": "Imagine - Emeli Sandรฉ", - "id": "Karaoke Version" - }, - { - "title": "Raindrops Keep Falling on My Head - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "America the Beautiful (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "That's How I Got To Memphis - Deryl Dodd", - "id": "Karaoke Version" - }, - { - "title": "See You Again - Wiz Khalifa & Charlie Puth", - "id": "Karaoke Version" - }, - { - "title": "Walk The Line Revisited - Robert Mizzell & Richard Mizzell", - "id": "Karaoke Version" - }, - { - "title": "I Second That Emotion - Smokey Robinson & The Miracles", - "id": "Karaoke Version" - }, - { - "title": "California Dreamin' - Sia", - "id": "Karaoke Version" - }, - { - "title": "Hammer to Fall - Queen", - "id": "Karaoke Version" - }, - { - "title": "Send It On - Disney's Friends For Change", - "id": "Karaoke Version" - }, - { - "title": "The Greatest Love of All - Postmodern Jukebox & Mykal Kilgore", - "id": "Karaoke Version" - }, - { - "title": "Treat Her Like A Lady - Cornelius Brothers & Sister Rose", - "id": "Karaoke Version" - }, - { - "title": "Sweet Caroline - Glee", - "id": "Karaoke Version" - }, - { - "title": "Shine a Little Love - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "All Through the Night - Cyndi Lauper", - "id": "Karaoke Version" - }, - { - "title": "Dreamer - Ozzy Osbourne", - "id": "Karaoke Version" - }, - { - "title": "Pretty Little Angel Eyes - Curtis Lee", - "id": "Karaoke Version" - }, - { - "title": "Loving You - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Do I - Luke Bryan", - "id": "Karaoke Version" - }, - { - "title": "Gangsta's Paradise - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Walking The Dog - Rufus Thomas", - "id": "Karaoke Version" - }, - { - "title": "Life's Been Good - Joe Walsh", - "id": "Karaoke Version" - }, - { - "title": "Don't Play Your Rock'n'Roll to Me - Smokie", - "id": "Karaoke Version" - }, - { - "title": "Can't Get Used to Losing You - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "W-O-M-A-N - Etta James", - "id": "Karaoke Version" - }, - { - "title": "Get Your Kicks on Route 66 - Asleep at the Wheel & Ray Benson", - "id": "Karaoke Version" - }, - { - "title": "You Belong to Me - The Duprees", - "id": "Karaoke Version" - }, - { - "title": "This Is My Father's World - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Down Down - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "One for My Baby (And One More for the Road) (live) - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Material Girl - Cassandra Beck", - "id": "Karaoke Version" - }, - { - "title": "I Fall To Pieces - Trisha Yearwood & Aaron Neville", - "id": "Karaoke Version" - }, - { - "title": "Happy Birthday - Happy Birthday Songs", - "id": "Karaoke Version" - }, - { - "title": "Don't Let Me Be Lonely - The Band Perry", - "id": "Karaoke Version" - }, - { - "title": "Burning Love (live '73) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Never On Sunday - Melina Mercouri", - "id": "Karaoke Version" - }, - { - "title": "New Orleans - Blues Brothers 2000", - "id": "Karaoke Version" - }, - { - "title": "Barbie Girl - Postmodern Jukebox & Morgan James", - "id": "Karaoke Version" - }, - { - "title": "You Know I'm No Good (feat. Ghostface Killah) - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "This Place Hotel (aka Heartbreak Hotel) - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "Empty Rooms - Gary Moore", - "id": "Karaoke Version" - }, - { - "title": "He's Sure The Boy I Love - Bette Midler & Darlene Love", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River - Susan Boyle", - "id": "Karaoke Version" - }, - { - "title": "Your Song - Ellie Goulding", - "id": "Karaoke Version" - }, - { - "title": "Song 2 - Blur", - "id": "Karaoke Version" - }, - { - "title": "This Old House - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "Burning Love - Lilo & Stitch (Wynonna Judd)", - "id": "Karaoke Version" - }, - { - "title": "Wish Me Luck as You Wave Me Goodbye - Gracie Fields", - "id": "Karaoke Version" - }, - { - "title": "Heaven - DJ Sammy", - "id": "Karaoke Version" - }, - { - "title": "Dancing in the Street - The Mamas and the Papas", - "id": "Karaoke Version" - }, - { - "title": "Talk It Over - Grayson Hugh", - "id": "Karaoke Version" - }, - { - "title": "This World Today Is A Mess - Donna Hightower", - "id": "Karaoke Version" - }, - { - "title": "We've Got Tonight - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "Love Child - The Supremes", - "id": "Karaoke Version" - }, - { - "title": "The Snake - Al Wilson", - "id": "Karaoke Version" - }, - { - "title": "I Should Tell You - Rent (film)", - "id": "Karaoke Version" - }, - { - "title": "Happy Working Song - Enchanted", - "id": "Karaoke Version" - }, - { - "title": "It's a Long Way There - Little River Band", - "id": "Karaoke Version" - }, - { - "title": "Wishing On A Star - Rose Royce", - "id": "Karaoke Version" - }, - { - "title": "Where Do Broken Hearts Go - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "She Hates Me - Puddle of Mudd", - "id": "Karaoke Version" - }, - { - "title": "Choo Choo Ch'Boogie - B.B. King", - "id": "Karaoke Version" - }, - { - "title": "Homely Girl - UB40", - "id": "Karaoke Version" - }, - { - "title": "Chainsaw - The Band Perry", - "id": "Karaoke Version" - }, - { - "title": "Don't Let Me Get Me - Pink", - "id": "Karaoke Version" - }, - { - "title": "'Til a Tear Becomes a Rose - Keith Whitley & Lorrie Morgan", - "id": "Karaoke Version" - }, - { - "title": "Just as I Am - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Birds - Anouk", - "id": "Karaoke Version" - }, - { - "title": "Retrograde - James Blake", - "id": "Karaoke Version" - }, - { - "title": "Changes in Latitudes, Changes in Attitudes - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "(Let's Start) Tomorrow Tonight - Smash", - "id": "Karaoke Version" - }, - { - "title": "The Sea Cruise - Declan Nerney", - "id": "Karaoke Version" - }, - { - "title": "Where or When (live at the Sands) - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "You Sang to Me - Marc Anthony", - "id": "Karaoke Version" - }, - { - "title": "Cut, Print... Moving On - Smash", - "id": "Karaoke Version" - }, - { - "title": "Cheerleader (Felix Jaehn Remix) - OMI", - "id": "Karaoke Version" - }, - { - "title": "Go Away Little Girl - Steve Lawrence", - "id": "Karaoke Version" - }, - { - "title": "Distant Lover - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Love Never Dies - Love Never Dies (musical)", - "id": "Karaoke Version" - }, - { - "title": "I Can Help - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Surfer Girl - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Magic - Colbie Caillat", - "id": "Karaoke Version" - }, - { - "title": "Grace Kelly - Mika", - "id": "Karaoke Version" - }, - { - "title": "Limelight - Rush", - "id": "Karaoke Version" - }, - { - "title": "No One Will Ever Love You - Nashville", - "id": "Karaoke Version" - }, - { - "title": "Paperback Writer - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "I'm Not in Love - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Arabian Nights - Aladdin (1992 film) (Bruce Adler)", - "id": "Karaoke Version" - }, - { - "title": "Low - Flo Rida & T-Pain", - "id": "Karaoke Version" - }, - { - "title": "Let's Work Together - Canned Heat", - "id": "Karaoke Version" - }, - { - "title": "What a Difference a Day Makes - Renee Olstead", - "id": "Karaoke Version" - }, - { - "title": "We Were Us - Keith Urban & Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Beast of Burden - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "Mr. Bojangles - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "I Want You to Want Me (live - at Budokan) - Cheap Trick", - "id": "Karaoke Version" - }, - { - "title": "I Will Never Let You Down - Rita Ora", - "id": "Karaoke Version" - }, - { - "title": "If You're Not the One - Daniel Bedingfield", - "id": "Karaoke Version" - }, - { - "title": "Different Worlds - Jes Hudak & George Krikes", - "id": "Karaoke Version" - }, - { - "title": "You Can't Hurry Love - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Jailhouse Rock - The Blues Brothers", - "id": "Karaoke Version" - }, - { - "title": "Just Dance - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Don't Rain on My Parade - Funny Girl (film) (Barbra Streisand)", - "id": "Karaoke Version" - }, - { - "title": "Hernando's Hideaway - The Pajama Game (Carol Haney)", - "id": "Karaoke Version" - }, - { - "title": "Demons - Boyce Avenue & Jennel Garcia", - "id": "Karaoke Version" - }, - { - "title": "And I Love Her - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "You've Lost That Loving Feeling - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Oh! Darling - The Cooltrane Quartet", - "id": "Karaoke Version" - }, - { - "title": "Angel - Katherine Jenkins", - "id": "Karaoke Version" - }, - { - "title": "T-R-O-U-B-L-E - Travis Tritt", - "id": "Karaoke Version" - }, - { - "title": "Third Rate Romance - The Amazing Rhythm Aces", - "id": "Karaoke Version" - }, - { - "title": "My Songs Know What You Did In The Dark (Light Em Up) - Fall Out Boy", - "id": "Karaoke Version" - }, - { - "title": "You Don't Know Me - Ben Folds & Regina Spektor", - "id": "Karaoke Version" - }, - { - "title": "Don't Put Dirt On My Grave Just Yet - Nashville (Hayden Panettiere)", - "id": "Karaoke Version" - }, - { - "title": "Tubthumping - Chumbawamba", - "id": "Karaoke Version" - }, - { - "title": "It's a Man's Man's Man's World - Postmodern Jukebox & Morgan James", - "id": "Karaoke Version" - }, - { - "title": "Mr. Rock and Roll - Amy Macdonald", - "id": "Karaoke Version" - }, - { - "title": "As Time Goes By - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Another Love - Tom Odell", - "id": "Karaoke Version" - }, - { - "title": "Sippin' on Fire - Florida Georgia Line", - "id": "Karaoke Version" - }, - { - "title": "Another Somebody Done Somebody Wrong Song - B. J. Thomas", - "id": "Karaoke Version" - }, - { - "title": "She's Got You - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Suspicious Minds (Viva Elvis) - Elvis Presley (Cirque du Soleil)", - "id": "Karaoke Version" - }, - { - "title": "Pompeii - Bastille", - "id": "Karaoke Version" - }, - { - "title": "In Your Room - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "God Bless America - Kate Smith", - "id": "Karaoke Version" - }, - { - "title": "He Called Me Baby - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Teenage Dirtbag - Wheatus", - "id": "Karaoke Version" - }, - { - "title": "Young & Beautiful - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Please Send Me Someone to Love - B.B. King & Mick Hucknall", - "id": "Karaoke Version" - }, - { - "title": "A Whole New World - Aladdin (musical)", - "id": "Karaoke Version" - }, - { - "title": "All by Myself - Vincent Niclo", - "id": "Karaoke Version" - }, - { - "title": "She Talks to Angels - The Black Crowes", - "id": "Karaoke Version" - }, - { - "title": "Suspicious Minds (live in Las Vegas) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Always on My Mind - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Always on My Mind - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "A Groovy Kind of Love - The Mindbenders", - "id": "Karaoke Version" - }, - { - "title": "With a Little Help from My Friends - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Chandelier - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Girls Just Want to Have Fun - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "I Wan'na Be Like You (The Monkey Song) - The Jungle Book (1967 film)", - "id": "Karaoke Version" - }, - { - "title": "Kiss the Girl - The Little Mermaid (1989 film) (Samuel E. Wright)", - "id": "Karaoke Version" - }, - { - "title": "School - Supertramp", - "id": "Karaoke Version" - }, - { - "title": "The Riddle - Nik Kershaw", - "id": "Karaoke Version" - }, - { - "title": "Talking Body - Tove Lo", - "id": "Karaoke Version" - }, - { - "title": "Guitar Town - Steve Earle", - "id": "Karaoke Version" - }, - { - "title": "Michael, Row the Boat Ashore - The Highwaymen", - "id": "Karaoke Version" - }, - { - "title": "Hunger Strike - Temple of the Dog", - "id": "Karaoke Version" - }, - { - "title": "Say Something - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Just One of Those Things - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "I Won't Say (I'm In Love) - Hercules (1997 film) (Belinda Carlisle)", - "id": "Karaoke Version" - }, - { - "title": "Lili Marlene - Vera Lynn", - "id": "Karaoke Version" - }, - { - "title": "Turn the Page - Metallica", - "id": "Karaoke Version" - }, - { - "title": "Fool That I Am - Etta James", - "id": "Karaoke Version" - }, - { - "title": "Womanizer - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Demons - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "I'd Like to Teach the World to Sing - The New Seekers", - "id": "Karaoke Version" - }, - { - "title": "For the Love of Money - The O'Jays", - "id": "Karaoke Version" - }, - { - "title": "We Can Work It Out - Chaka Khan", - "id": "Karaoke Version" - }, - { - "title": "Little Toy Guns - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "I'll Always Remember You - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Sk8tr Boi - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Blue - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "Born Under a Bad Sign - Cream", - "id": "Karaoke Version" - }, - { - "title": "Walking on the Moon - The Police", - "id": "Karaoke Version" - }, - { - "title": "Lady - Little River Band", - "id": "Karaoke Version" - }, - { - "title": "True Love Ways - Mickey Gilley", - "id": "Karaoke Version" - }, - { - "title": "One Vision - Queen", - "id": "Karaoke Version" - }, - { - "title": "In Summer - Frozen (2013 film) (Josh Gad)", - "id": "Karaoke Version" - }, - { - "title": "I Know It's Today - Shrek (musical)", - "id": "Karaoke Version" - }, - { - "title": "Piece By Piece - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Off Key (Desafinado) - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "When Will My Life Begin - Tangled (Mandy Moore)", - "id": "Karaoke Version" - }, - { - "title": "Touch Me in the Morning - Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "100 Years - Five for Fighting", - "id": "Karaoke Version" - }, - { - "title": "Hello Stranger - Barbara Lewis", - "id": "Karaoke Version" - }, - { - "title": "Do You Really Want To Hurt Me - Culture Club", - "id": "Karaoke Version" - }, - { - "title": "Die Young - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "I Wan'na Be Like You - Robbie Williams & Olly Murs", - "id": "Karaoke Version" - }, - { - "title": "I Bet My Life - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Cherokee Boogie - BR5-49", - "id": "Karaoke Version" - }, - { - "title": "Criminal - Fiona Apple", - "id": "Karaoke Version" - }, - { - "title": "Blue Velvet - Tony Bennett & k.d. lang", - "id": "Karaoke Version" - }, - { - "title": "Always Look on the Bright Side of Life - Monty Python", - "id": "Karaoke Version" - }, - { - "title": "I Am What I Am (Single version) - Gloria Gaynor", - "id": "Karaoke Version" - }, - { - "title": "Butterfly Fly Away - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Smoke on the Water - The Cooltrane Quartet", - "id": "Karaoke Version" - }, - { - "title": "Sea of Heartbreak - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Kyrie - Mr. Mister", - "id": "Karaoke Version" - }, - { - "title": "You Don't Know Me - Eva Cassidy & David Gray", - "id": "Karaoke Version" - }, - { - "title": "Route 66 - Louis Prima", - "id": "Karaoke Version" - }, - { - "title": "Games People Play - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "A Thing Called Love - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Sweet Child O' Mine - Postmodern Jukebox & Miche Braden", - "id": "Karaoke Version" - }, - { - "title": "Beyond the Sea - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Bye, Bye, Baby (Baby Goodbye) - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "Lay Me Down (feat. John Legend) - Sam Smith", - "id": "Karaoke Version" - }, - { - "title": "The Night Owls - Little River Band", - "id": "Karaoke Version" - }, - { - "title": "Spooky - Atlanta Rhythm Section", - "id": "Karaoke Version" - }, - { - "title": "Tha Crossroads - Bone Thugs-N-Harmony", - "id": "Karaoke Version" - }, - { - "title": "Ginny Come Lately - Albert West", - "id": "Karaoke Version" - }, - { - "title": "In the Misty Moonlight - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "I Will Survive (Remix) - Gloria Gaynor", - "id": "Karaoke Version" - }, - { - "title": "I Fought the Law - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "At Your Best (You Are Love) - Aaliyah", - "id": "Karaoke Version" - }, - { - "title": "Play It Again - Luke Bryan", - "id": "Karaoke Version" - }, - { - "title": "Too Many Fish In The Sea - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Talladega - Eric Church", - "id": "Karaoke Version" - }, - { - "title": "Some Broken Hearts - The Bellamy Brothers", - "id": "Karaoke Version" - }, - { - "title": "You Ruin Me - The Veronicas", - "id": "Karaoke Version" - }, - { - "title": "For the First Time in Forever - Frozen", - "id": "Karaoke Version" - }, - { - "title": "Happy - Pharrell Williams", - "id": "Karaoke Version" - }, - { - "title": "Say My Name - Destiny's Child", - "id": "Karaoke Version" - }, - { - "title": "Take Me to the River - Al Green", - "id": "Karaoke Version" - }, - { - "title": "Just in Time (duet) - Tony Bennett & Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Tuxedo Junction - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "Silver Wings - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Crazy - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Be My Forever - Christina Perri & Ed Sheeran", - "id": "Karaoke Version" - }, - { - "title": "Rose Garden - Lynn Anderson", - "id": "Karaoke Version" - }, - { - "title": "Let It Go - Demi Lovato", - "id": "Karaoke Version" - }, - { - "title": "Here Comes My Girl - Tom Petty", - "id": "Karaoke Version" - }, - { - "title": "Little Red Wagon - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Careless Whisper - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Always on My Mind - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Anyone Who Had A Heart - Cilla Black", - "id": "Karaoke Version" - }, - { - "title": "Silent Lucidity - Queensrรฟche", - "id": "Karaoke Version" - }, - { - "title": "Black Hole Sun - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "Holding Back the Years - The Cooltrane Quartet", - "id": "Karaoke Version" - }, - { - "title": "The Most Beautiful Girl - Charlie Rich", - "id": "Karaoke Version" - }, - { - "title": "Practically Perfect - Mary Poppins (musical)", - "id": "Karaoke Version" - }, - { - "title": "Let It Go - Frozen (2013 film) (Idina Menzel)", - "id": "Karaoke Version" - }, - { - "title": "Wherever I Go - Hannah Montana", - "id": "Karaoke Version" - }, - { - "title": "Never Gonna Give You Up - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "Do You Want to Build a Snowman - Frozen (2013 film)", - "id": "Karaoke Version" - }, - { - "title": "Goodbye to Love - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "True Colors - Glee", - "id": "Karaoke Version" - }, - { - "title": "Wonderful Tonight - Michael Bublรฉ & Ivan Lins", - "id": "Karaoke Version" - }, - { - "title": "Can You Feel the Love Tonight - The Lion King", - "id": "Karaoke Version" - }, - { - "title": "Chim Chim Cher-ee - Mary Poppins (film)", - "id": "Karaoke Version" - }, - { - "title": "Supercalifragilisticexpialidocious - Mary Poppins (film)", - "id": "Karaoke Version" - }, - { - "title": "Circle of Life - The Lion King (1994 film) (Carmen Twillie & Lebo M.)", - "id": "Karaoke Version" - }, - { - "title": "I Am What I Am - Gloria Gaynor", - "id": "Karaoke Version" - }, - { - "title": "I Put a Spell on You - Annie Lennox", - "id": "Karaoke Version" - }, - { - "title": "Easy Livin' - Uriah Heep", - "id": "Karaoke Version" - }, - { - "title": "Gonna Make You Sweat - C+C Music Factory", - "id": "Karaoke Version" - }, - { - "title": "In the Lonely Hour (Acoustic) - Sam Smith", - "id": "Karaoke Version" - }, - { - "title": "Old Dan Tucker - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "When I Fall in Love - Boyz II Men & Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "This Is Me - Camp Rock", - "id": "Karaoke Version" - }, - { - "title": "Girls Just Want to Have Fun - Cyndi Lauper", - "id": "Karaoke Version" - }, - { - "title": "We Take Care of Our Own - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "You Can't Do That - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Under the Sea - The Little Mermaid (1989 film) (Samuel E. Wright)", - "id": "Karaoke Version" - }, - { - "title": "Mother Knows Best - Tangled", - "id": "Karaoke Version" - }, - { - "title": "Jar Of Hearts - Boyce Avenue & Tiffany Alvord", - "id": "Karaoke Version" - }, - { - "title": "Walkin' on the Sun - Smash Mouth", - "id": "Karaoke Version" - }, - { - "title": "Superstar - Jesus Christ Superstar", - "id": "Karaoke Version" - }, - { - "title": "I've Got a Dream - Tangled", - "id": "Karaoke Version" - }, - { - "title": "Part of Your World - The Little Mermaid", - "id": "Karaoke Version" - }, - { - "title": "On the Dark Side - John Cafferty & The Beaver Brown Band", - "id": "Karaoke Version" - }, - { - "title": "Sexy Eyes - Dr. Hook & The Medicine Show", - "id": "Karaoke Version" - }, - { - "title": "I See the Light - Tangled", - "id": "Karaoke Version" - }, - { - "title": "Oh Carol - Smokie", - "id": "Karaoke Version" - }, - { - "title": "All My Lovin' - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Girl, You'll Be a Woman Soon - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "(Sittin' on) The Dock of the Bay (live) - Sara Bareilles", - "id": "Karaoke Version" - }, - { - "title": "Never Tear Us Apart - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "Under The Boardwalk - John Mellencamp", - "id": "Karaoke Version" - }, - { - "title": "O-o-h Child - The Five Stairsteps", - "id": "Karaoke Version" - }, - { - "title": "You Belong to Me - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Wishing Well - Free", - "id": "Karaoke Version" - }, - { - "title": "Sexbomb (live) - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "R U Mine? - Arctic Monkeys", - "id": "Karaoke Version" - }, - { - "title": "Come Rain or Come Shine - Etta James", - "id": "Karaoke Version" - }, - { - "title": "Sorry Seems to Be the Hardest Word - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Yesterday Once More - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Prince Ali - Aladdin (1992 film) (Robin Williams)", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stand the Rain - The Commitments", - "id": "Karaoke Version" - }, - { - "title": "Gentle On My Mind - The Band Perry", - "id": "Karaoke Version" - }, - { - "title": "Blurred Lines - Postmodern Jukebox", - "id": "Karaoke Version" - }, - { - "title": "Early Morning Rain - Gordon Lightfoot", - "id": "Karaoke Version" - }, - { - "title": "Pay Me My Money Down - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Funeral for a Friend / Love Lies Bleeding - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Secret Love - Calamity Jane (film) (Doris Day)", - "id": "Karaoke Version" - }, - { - "title": "The More I See You (Live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Every Time We Say Goodbye - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Once Upon a Dream - Lana Del Rey (Maleficent)", - "id": "Karaoke Version" - }, - { - "title": "Everybody Wants to Be a Cat - The Aristocats", - "id": "Karaoke Version" - }, - { - "title": "Poor Unfortunate Souls - The Little Mermaid (1989 film)", - "id": "Karaoke Version" - }, - { - "title": "Route 66 - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "If I Can't Love Her - Beauty and the Beast (musical) (Terrence Mann)", - "id": "Karaoke Version" - }, - { - "title": "Hazard - Richard Marx", - "id": "Karaoke Version" - }, - { - "title": "Everytime I Think Of You - Marco Borsato & Lucie Silvas", - "id": "Karaoke Version" - }, - { - "title": "Buona Sera / Oh Marie - Andrรฉ Hazes", - "id": "Karaoke Version" - }, - { - "title": "Stars - Grace Potter and the Nocturnals", - "id": "Karaoke Version" - }, - { - "title": "Only Sixteen - Dr. Hook & The Medicine Show", - "id": "Karaoke Version" - }, - { - "title": "Didn't I (Blow Your Mind) - The Delfonics", - "id": "Karaoke Version" - }, - { - "title": "Part of Your World - The Little Mermaid (1989 film)", - "id": "Karaoke Version" - }, - { - "title": "Gift of a Friend - Demi Lovato (Tinker Bell)", - "id": "Karaoke Version" - }, - { - "title": "Yesterday - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Bibbidi-Bobbidi-Boo (The Magic Song) - Cinderella (1950 film)", - "id": "Karaoke Version" - }, - { - "title": "So Close - Enchanted", - "id": "Karaoke Version" - }, - { - "title": "Colors of the Wind - Pocahontas", - "id": "Karaoke Version" - }, - { - "title": "A Whole New World - Aladdin", - "id": "Karaoke Version" - }, - { - "title": "Fly To Your Heart - Selena Gomez (Tinker Bell)", - "id": "Karaoke Version" - }, - { - "title": "A Dream Is a Wish Your Heart Makes - Cinderella (1950 film)", - "id": "Karaoke Version" - }, - { - "title": "Walk - Pantera", - "id": "Karaoke Version" - }, - { - "title": "Come Monday - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "Sweet Thing - Rufus & Chaka Khan", - "id": "Karaoke Version" - }, - { - "title": "Bird Dog - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "Distant Drums - Jim Reeves", - "id": "Karaoke Version" - }, - { - "title": "All of Me - Billie Holiday", - "id": "Karaoke Version" - }, - { - "title": "Viva Forever - Spice Girls", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Vikki Carr", - "id": "Karaoke Version" - }, - { - "title": "When She Was My Girl - The Four Tops", - "id": "Karaoke Version" - }, - { - "title": "Only When I Sleep - The Corrs", - "id": "Karaoke Version" - }, - { - "title": "Smash! - Smash & Megan Hilty & Katharine McPhee", - "id": "Karaoke Version" - }, - { - "title": "Who Wouldn't Wanna Be Me - Keith Urban", - "id": "Karaoke Version" - }, - { - "title": "Running Up That Hill (A Deal With God) - Kate Bush", - "id": "Karaoke Version" - }, - { - "title": "I Just Wanna Live - Good Charlotte", - "id": "Karaoke Version" - }, - { - "title": "Separate Ways - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "My Blue Heaven - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "She's So Mean - Matchbox Twenty", - "id": "Karaoke Version" - }, - { - "title": "Don't Cry Out Loud - Melissa Manchester", - "id": "Karaoke Version" - }, - { - "title": "Trailer for Rent - Pistol Annies", - "id": "Karaoke Version" - }, - { - "title": "What Are You Doing the Rest of Your Life? - Michel Legrand", - "id": "Karaoke Version" - }, - { - "title": "Will It Go Round in Circles - Billy Preston", - "id": "Karaoke Version" - }, - { - "title": "Doo Wop (That Thing) - Lauryn Hill", - "id": "Karaoke Version" - }, - { - "title": "I Alone - Live", - "id": "Karaoke Version" - }, - { - "title": "Somebody's Watching Me - Rockwell", - "id": "Karaoke Version" - }, - { - "title": "Under The Boardwalk - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Chains - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Love of My Life - Sammy Kershaw", - "id": "Karaoke Version" - }, - { - "title": "Candida - Tony Orlando & Dawn", - "id": "Karaoke Version" - }, - { - "title": "Working Man - Rush", - "id": "Karaoke Version" - }, - { - "title": "Aloha Oe (Farewell to Thee) - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "The Church in the Wildwood - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Texas Flood - Stevie Ray Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Last Nite - The Strokes", - "id": "Karaoke Version" - }, - { - "title": "Something Blue - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Angry Inch - Hedwig and the Angry Inch", - "id": "Karaoke Version" - }, - { - "title": "Why Me Lord - Kris Kristofferson", - "id": "Karaoke Version" - }, - { - "title": "Read All About It (Pt. III) - Emeli Sandรฉ", - "id": "Karaoke Version" - }, - { - "title": "Long Train Running - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "Royals - Postmodern Jukebox & Puddles Pity Party", - "id": "Karaoke Version" - }, - { - "title": "Cherry, Cherry - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Detroit City - Bobby Bare", - "id": "Karaoke Version" - }, - { - "title": "Lil' Red Riding Hood - Sam The Sham & The Pharaohs", - "id": "Karaoke Version" - }, - { - "title": "Ball of Confusion (That's What the World Is Today) - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Easy - Rascal Flatts & Natasha Bedingfield", - "id": "Karaoke Version" - }, - { - "title": "Centerfold - J. Geils Band", - "id": "Karaoke Version" - }, - { - "title": "A Broken Wing - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Who's Crying Now - Journey", - "id": "Karaoke Version" - }, - { - "title": "Strani Amori - Laura Pausini", - "id": "Karaoke Version" - }, - { - "title": "Shape of My Heart - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "Grand Tour - George Jones", - "id": "Karaoke Version" - }, - { - "title": "Reason To Believe - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Up a Lazy River - Jazz Standards", - "id": "Karaoke Version" - }, - { - "title": "Working My Way Back to You - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "I Just Want to Celebrate - Rare Earth", - "id": "Karaoke Version" - }, - { - "title": "I'm Looking Over a Four Leaf Clover - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Better In Time - Leona Lewis", - "id": "Karaoke Version" - }, - { - "title": "Going Down to the River - Doug Seegers", - "id": "Karaoke Version" - }, - { - "title": "My Funny Valentine - Sarah Vaughan", - "id": "Karaoke Version" - }, - { - "title": "The Impossible Dream - Matt Monro", - "id": "Karaoke Version" - }, - { - "title": "Shut Up and Dance - Walk The Moon", - "id": "Karaoke Version" - }, - { - "title": "Hello, Dolly! (Bb) - Louis Armstrong", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Stoppin' Us Now (45 edit) - McFadden & Whitehead", - "id": "Karaoke Version" - }, - { - "title": "All of Me - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Day Drinking - Little Big Town", - "id": "Karaoke Version" - }, - { - "title": "Even Now - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Rock and Roll Girls - John Fogerty (Creedence Clearwater Revival)", - "id": "Karaoke Version" - }, - { - "title": "Amaranth - Nightwish", - "id": "Karaoke Version" - }, - { - "title": "Come and Get Your Love - Redbone", - "id": "Karaoke Version" - }, - { - "title": "Sweet Inspiration - Vonda Shepard", - "id": "Karaoke Version" - }, - { - "title": "Seven Spanish Angels - Willie Nelson & Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "All I Ever Need Is You - Dottie West & Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "So in Love - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "I'll Leave This World Loving You - Ricky Van Shelton", - "id": "Karaoke Version" - }, - { - "title": "Dream On Dreamer - The Brand New Heavies", - "id": "Karaoke Version" - }, - { - "title": "Choo Choo Ch' Boogie (live) - Manhattan Transfer", - "id": "Karaoke Version" - }, - { - "title": "Breaking the Girl - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "When The War Is Over - Cold Chisel", - "id": "Karaoke Version" - }, - { - "title": "What Becomes of the Broken Hearted - Paul Young (Fried Green Tomatoes)", - "id": "Karaoke Version" - }, - { - "title": "Who Is He (And What Is He to You) - Bill Withers", - "id": "Karaoke Version" - }, - { - "title": "Outlaw Women (live) - Hank Williams, Jr. & Gretchen Wilson", - "id": "Karaoke Version" - }, - { - "title": "It Is What It Is - Kacey Musgraves", - "id": "Karaoke Version" - }, - { - "title": "Just One Look - The Hollies", - "id": "Karaoke Version" - }, - { - "title": "The Point of no Return - The Phantom of the Opera (2004 film)", - "id": "Karaoke Version" - }, - { - "title": "Good Hearted Woman (duet - live) - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Psychosocial (radio edit) - Slipknot", - "id": "Karaoke Version" - }, - { - "title": "Lullaby of Birdland - Sarah Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Everyday People - Sly and the Family Stone", - "id": "Karaoke Version" - }, - { - "title": "634-5789 - Wilson Pickett", - "id": "Karaoke Version" - }, - { - "title": "My Heart Belongs to Daddy - Marilyn Monroe (Let's Make Love)", - "id": "Karaoke Version" - }, - { - "title": "Voodoo Child (Slight Return) - Jimi Hendrix", - "id": "Karaoke Version" - }, - { - "title": "Two More Bottles Of Wine - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "This Boy - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Reelin' In The Years - Steely Dan", - "id": "Karaoke Version" - }, - { - "title": "If You Can't Give Me Love - Suzi Quatro", - "id": "Karaoke Version" - }, - { - "title": "Volcano - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "Black Water - The Doobie Brothers", - "id": "Karaoke Version" - }, - { - "title": "Water Under Bridges - Gregory Porter", - "id": "Karaoke Version" - }, - { - "title": "Peg - Steely Dan", - "id": "Karaoke Version" - }, - { - "title": "Are You Sure Hank Done it This Way - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "Overkill - Men at Work", - "id": "Karaoke Version" - }, - { - "title": "What I Got - Sublime", - "id": "Karaoke Version" - }, - { - "title": "Come Rain or Come Shine - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Quando, Quando, Quando - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "She's A Bad Mama Jama (She's Built, She's Stacked) - Carl Carlton", - "id": "Karaoke Version" - }, - { - "title": "Don't Let Me Be Misunderstood - Nina Simone", - "id": "Karaoke Version" - }, - { - "title": "A Little Less Talk and a Lot More Action - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "Amber (Radio Edit) - 311", - "id": "Karaoke Version" - }, - { - "title": "Bewitched, Bothered and Bewildered - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "I Wish It Would Rain - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "That's the Way of the World - Earth, Wind & Fire", - "id": "Karaoke Version" - }, - { - "title": "Nothing's Gonna Change My Love For You - Glenn Medeiros", - "id": "Karaoke Version" - }, - { - "title": "It's All in the Game - Tommy Edwards", - "id": "Karaoke Version" - }, - { - "title": "Rock Show - Halestorm", - "id": "Karaoke Version" - }, - { - "title": "Unchain My Heart - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Forever Autumn (Highlights Version) - Gary Barlow", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Sunshine - Rockmelons & Deni Hines", - "id": "Karaoke Version" - }, - { - "title": "Diamonds Are Forever - James Bond (Shirley Bassey)", - "id": "Karaoke Version" - }, - { - "title": "Simple Man - Bad Company", - "id": "Karaoke Version" - }, - { - "title": "They Won't Go When I Go - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Della And The Dealer - Hoyt Axton", - "id": "Karaoke Version" - }, - { - "title": "House of the Rising Sun - Five Finger Death Punch", - "id": "Karaoke Version" - }, - { - "title": "Hot Rod Heart - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "A Long Walk - Jill Scott", - "id": "Karaoke Version" - }, - { - "title": "Wonderful Tonight (live) - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Stormy - Classics IV", - "id": "Karaoke Version" - }, - { - "title": "Cruisin' - Huey Lewis & The News & Gwyneth Paltrow", - "id": "Karaoke Version" - }, - { - "title": "Wrapped Around Your Finger - The Police", - "id": "Karaoke Version" - }, - { - "title": "Latch (Acoustic) - Sam Smith", - "id": "Karaoke Version" - }, - { - "title": "La vie en rose (Single Version) - Grace Jones", - "id": "Karaoke Version" - }, - { - "title": "Foxy Lady - Jimi Hendrix", - "id": "Karaoke Version" - }, - { - "title": "Sgt. Pepper's Lonely Hearts Club Band - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Can't Smile Without You - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "House of the Rising Sun - Toto", - "id": "Karaoke Version" - }, - { - "title": "She Will Be Loved - Boyce Avenue & Tiffany Alvord", - "id": "Karaoke Version" - }, - { - "title": "Mexico - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Jungle Drum - Emilรญana Torrini", - "id": "Karaoke Version" - }, - { - "title": "Girl - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Goodbye, My Love, Goodbye - Demis Roussos", - "id": "Karaoke Version" - }, - { - "title": "One Less Bell to Answer / A House is Not a Home - Glee", - "id": "Karaoke Version" - }, - { - "title": "Stranger in Paradise - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Dancing in the Street - David Bowie & Mick Jagger", - "id": "Karaoke Version" - }, - { - "title": "Mz. Hyde - Halestorm", - "id": "Karaoke Version" - }, - { - "title": "Anything Goes - Tony Bennett & Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "It Had to Be You - Barbra Streisand & Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "The Second Time Around - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "Josie - Steely Dan", - "id": "Karaoke Version" - }, - { - "title": "Heart of Rock & Roll - Huey Lewis & The News", - "id": "Karaoke Version" - }, - { - "title": "What I Am - Edie Brickell & New Bohemians", - "id": "Karaoke Version" - }, - { - "title": "We Got the Beat - The Go-Go's", - "id": "Karaoke Version" - }, - { - "title": "How Long - Ace", - "id": "Karaoke Version" - }, - { - "title": "Freight Train - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Best for Last - Adele", - "id": "Karaoke Version" - }, - { - "title": "The Wind Cries Mary - Jimi Hendrix", - "id": "Karaoke Version" - }, - { - "title": "I Bet You Look Good On The Dancefloor - Arctic Monkeys", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow - Nikki Yanofsky", - "id": "Karaoke Version" - }, - { - "title": "Civil War - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "Band Of Gold - Freda Payne", - "id": "Karaoke Version" - }, - { - "title": "Don't Change - INXS", - "id": "Karaoke Version" - }, - { - "title": "One Fine Day - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Can We Talk? - Tevin Campbell", - "id": "Karaoke Version" - }, - { - "title": "No Rain - Blind Melon", - "id": "Karaoke Version" - }, - { - "title": "The Mickey Mouse Club - Jimmie Dodd (Mouseketeers)", - "id": "Karaoke Version" - }, - { - "title": "Unbelievable - EMF", - "id": "Karaoke Version" - }, - { - "title": "Never My Love - The Association", - "id": "Karaoke Version" - }, - { - "title": "Put a Little Love in Your Heart - Annie Lennox & Al Green", - "id": "Karaoke Version" - }, - { - "title": "I've Just Seen a Face - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Folsom Prison Blues (live) - Brad Paisley", - "id": "Karaoke Version" - }, - { - "title": "Liquor Store Blues - Bruno Mars & Damian Marley", - "id": "Karaoke Version" - }, - { - "title": "Frozen Heart (Ice Workers' Song) - Frozen (2013 film)", - "id": "Karaoke Version" - }, - { - "title": "Still of the Night - Whitesnake", - "id": "Karaoke Version" - }, - { - "title": "Show You the Way to Go - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night (live) - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "The House of the Rising Sun - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "Get a Job - The Silhouettes", - "id": "Karaoke Version" - }, - { - "title": "Seven Drunken Nights - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Tennessee Flat Top Box - Rosanne Cash", - "id": "Karaoke Version" - }, - { - "title": "Big Bad John - Jimmy Dean", - "id": "Karaoke Version" - }, - { - "title": "Personality - Lloyd Price", - "id": "Karaoke Version" - }, - { - "title": "Take This Job And Shove It - Johnny Paycheck", - "id": "Karaoke Version" - }, - { - "title": "Welcome To My Life - Simple Plan", - "id": "Karaoke Version" - }, - { - "title": "R.O.C.K. in the U.S.A. - John Mellencamp", - "id": "Karaoke Version" - }, - { - "title": "'Til It's Gone - Kenny Chesney", - "id": "Karaoke Version" - }, - { - "title": "You Might Need Somebody - Randy Crawford", - "id": "Karaoke Version" - }, - { - "title": "A Pirate Looks at Forty - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "Lady Love - Lou Rawls", - "id": "Karaoke Version" - }, - { - "title": "The Night They Drove Old Dixie Down - The Band", - "id": "Karaoke Version" - }, - { - "title": "Songbird - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Feels So Right - Alabama", - "id": "Karaoke Version" - }, - { - "title": "Walk On By - Leroy Van Dyke", - "id": "Karaoke Version" - }, - { - "title": "This Is Halloween - The Nightmare Before Christmas", - "id": "Karaoke Version" - }, - { - "title": "Crystalised - The xx", - "id": "Karaoke Version" - }, - { - "title": "The Fool on the Hill - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Take Me to the River - The Commitments", - "id": "Karaoke Version" - }, - { - "title": "Me and My Shadow - 1920s Standards", - "id": "Karaoke Version" - }, - { - "title": "Sugar, We're Goin Down - Fall Out Boy", - "id": "Karaoke Version" - }, - { - "title": "I Found Someone - Cher", - "id": "Karaoke Version" - }, - { - "title": "Strawberry Fields Forever - Karen Souza & Los Panchos", - "id": "Karaoke Version" - }, - { - "title": "Got My Mojo Working - Muddy Waters", - "id": "Karaoke Version" - }, - { - "title": "We Gotta Get Out Of This Place - The Animals", - "id": "Karaoke Version" - }, - { - "title": "Ticket to Ride - Sarah Menescal", - "id": "Karaoke Version" - }, - { - "title": "Rocky Raccoon - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Kokomo - The Beach Boys (Cocktail)", - "id": "Karaoke Version" - }, - { - "title": "If I Had 1000000 dollars - Barenaked Ladies", - "id": "Karaoke Version" - }, - { - "title": "Outside Woman Blues - Cream", - "id": "Karaoke Version" - }, - { - "title": "Nothing Left to Lose - The Pretty Reckless", - "id": "Karaoke Version" - }, - { - "title": "Low Rider - War", - "id": "Karaoke Version" - }, - { - "title": "Between the Sheets - The Isley Brothers", - "id": "Karaoke Version" - }, - { - "title": "Nice And Slow - Usher", - "id": "Karaoke Version" - }, - { - "title": "Starsky & Hutch - Lionel Leroy", - "id": "Karaoke Version" - }, - { - "title": "Heaven on Their Minds - Jesus Christ Superstar", - "id": "Karaoke Version" - }, - { - "title": "Who I Was Born To Be - Susan Boyle", - "id": "Karaoke Version" - }, - { - "title": "I (Who Have Nothing) - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "Baby I'm-A Want You - Bread", - "id": "Karaoke Version" - }, - { - "title": "Bill Bailey - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Breaking Up Is Hard to Do (Slow Version) - Neil Sedaka", - "id": "Karaoke Version" - }, - { - "title": "You Ain't Seen Nothing Yet - Bachman-Turner Overdrive", - "id": "Karaoke Version" - }, - { - "title": "Jumper - Third Eye Blind", - "id": "Karaoke Version" - }, - { - "title": "Let's Face the Music and Dance - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Dear Mama - 2Pac", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good (live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Joyride - Roxette", - "id": "Karaoke Version" - }, - { - "title": "Changes - 2Pac", - "id": "Karaoke Version" - }, - { - "title": "Reflections Of My Life - Marmalade", - "id": "Karaoke Version" - }, - { - "title": "Hippy Hippy Shake - The Swinging Blue Jeans", - "id": "Karaoke Version" - }, - { - "title": "Mandy - Westlife", - "id": "Karaoke Version" - }, - { - "title": "Insane in the Brain - Cypress Hill", - "id": "Karaoke Version" - }, - { - "title": "Ace of Spades - Motรถrhead", - "id": "Karaoke Version" - }, - { - "title": "In The Jailhouse Now - O Brother, Where Art Thou?", - "id": "Karaoke Version" - }, - { - "title": "Who Put the Bomp - Barry Mann", - "id": "Karaoke Version" - }, - { - "title": "Diamonds - Josef Salvat", - "id": "Karaoke Version" - }, - { - "title": "Too Drunk to Karaoke - Jimmy Buffett & Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "Ain't That a Shame - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "For Once in My Life - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Karaoke The Breakup Song (They Don't Write 'Em) - Greg Kihn Band *", - "id": "Zbz_K4MeZSM" - }, - { - "title": "Ladies Night - Atomic Kitten", - "id": "Karaoke Version" - }, - { - "title": "Do You Love Me - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Cheek to Cheek - Tony Bennett & Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Rose Colored Glasses - John Conlee", - "id": "Karaoke Version" - }, - { - "title": "You Make Me Feel Like Dancing (Radio Edit) - Leo Sayer", - "id": "Karaoke Version" - }, - { - "title": "I Miss You - Blink-182", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Amy Grant", - "id": "Karaoke Version" - }, - { - "title": "Same Old Lang Syne - Dan Fogelberg", - "id": "Karaoke Version" - }, - { - "title": "Green Green Grass of Home - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "A World Without Love - Peter And Gordon", - "id": "Karaoke Version" - }, - { - "title": "Dream a Little Dream of Me - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "We Are Done - The Madden Brothers", - "id": "Karaoke Version" - }, - { - "title": "Mr. Sandman - The Chordettes", - "id": "Karaoke Version" - }, - { - "title": "American Kids - Kenny Chesney", - "id": "Karaoke Version" - }, - { - "title": "Whatta Man - En Vogue & Salt-N-Pepa", - "id": "Karaoke Version" - }, - { - "title": "Mom - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "California Dreamin' - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Bing Crosby", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song - Idina Menzel", - "id": "Karaoke Version" - }, - { - "title": "Merry Xmas Everybody - Slade", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Idina Menzel", - "id": "Karaoke Version" - }, - { - "title": "Say Something - A Great Big World & Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "B-I-N-G-O - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Auld Lang Syne - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "The Impossible Dream (The Quest) - Man of La Mancha (musical)", - "id": "Karaoke Version" - }, - { - "title": "Zing a Little Zong - 1950s Standards", - "id": "Karaoke Version" - }, - { - "title": "Softly, as in a Morning Sunrise - 1920s Standards", - "id": "Karaoke Version" - }, - { - "title": "Friday On My Mind - The Easybeats", - "id": "Karaoke Version" - }, - { - "title": "Only Believe - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Puttin' on the Ritz - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Evil Woman - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Scream (Funk My Life Up) - Paolo Nutini", - "id": "Karaoke Version" - }, - { - "title": "Hot Blooded - Foreigner", - "id": "Karaoke Version" - }, - { - "title": "Baby Got Back - Richard Cheese", - "id": "Karaoke Version" - }, - { - "title": "Tonight Tonight - Hot Chelle Rae", - "id": "Karaoke Version" - }, - { - "title": "(Feels Like) Heaven - Fiction Factory", - "id": "Karaoke Version" - }, - { - "title": "Do They Know It's Christmas? (2014) - Band Aid 30", - "id": "Karaoke Version" - }, - { - "title": "Girl in a Country Song - Maddie & Tae", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Colbie Caillat", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Policy of Truth - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Chasing Pavements - Adele", - "id": "Karaoke Version" - }, - { - "title": "Real Love - Tom Odell", - "id": "Karaoke Version" - }, - { - "title": "Poor Little Fool - Ricky Nelson", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Darlene Love", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Idina Menzel", - "id": "Karaoke Version" - }, - { - "title": "Hey Jude - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Looking For Freedom - David Hasselhoff", - "id": "Karaoke Version" - }, - { - "title": "Baggy Trousers - Madness", - "id": "Karaoke Version" - }, - { - "title": "My Shoes Keep Walking Back to You - Ray Price", - "id": "Karaoke Version" - }, - { - "title": "Love Me - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Should've Been a Cowboy - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "Redneck Girl - The Bellamy Brothers", - "id": "Karaoke Version" - }, - { - "title": "They Just Keep Moving The Line - Smash", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Back in Town - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Play Me - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Forever My Lady - Jodeci", - "id": "Karaoke Version" - }, - { - "title": "I Need Your Lovin' - Teena Marie", - "id": "Karaoke Version" - }, - { - "title": "Riptide - Vance Joy", - "id": "Karaoke Version" - }, - { - "title": "Love in the First Degree - Alabama", - "id": "Karaoke Version" - }, - { - "title": "If You Think You're Lonely Now - Jodeci", - "id": "Karaoke Version" - }, - { - "title": "Medley (live) - The Four Tops", - "id": "Karaoke Version" - }, - { - "title": "The Ballad of Curtis Loew - Lynyrd Skynyrd", - "id": "Karaoke Version" - }, - { - "title": "War - Edwin Starr", - "id": "Karaoke Version" - }, - { - "title": "Nice 'N Easy - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "I'm Just An Old Chunk Of Coal - John Anderson", - "id": "Karaoke Version" - }, - { - "title": "All I Want for Christmas Is You - Idina Menzel", - "id": "Karaoke Version" - }, - { - "title": "The Last Cowboy Song - Ed Bruce", - "id": "Karaoke Version" - }, - { - "title": "On a Snowy Christmas Night - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Bob Wills Is Still the King - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "You're My Best Friend - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "The Little Drummer Boy - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas Darling - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "I'm Your Baby Tonight - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "(Theme From) The Monkees - The Monkees", - "id": "Karaoke Version" - }, - { - "title": "Too Lost In You - Sugababes", - "id": "Karaoke Version" - }, - { - "title": "Shining Star - Earth, Wind & Fire", - "id": "Karaoke Version" - }, - { - "title": "Oh Santa! - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Interstate Love Song - Stone Temple Pilots", - "id": "Karaoke Version" - }, - { - "title": "A Headache Tomorrow (Or a Heartache Tonight) - Mickey Gilley", - "id": "Karaoke Version" - }, - { - "title": "A Country Boy Can Survive - Hank Williams, Jr.", - "id": "Karaoke Version" - }, - { - "title": "Peppermint Twist - Joey Dee and the Starliters", - "id": "Karaoke Version" - }, - { - "title": "Hypnotize - The Notorious B.I.G.", - "id": "Karaoke Version" - }, - { - "title": "Twelve Days of Christmas - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Shakin' All Over - Johnny Kidd & The Pirates", - "id": "Karaoke Version" - }, - { - "title": "Soldier Boy - The Shirelles", - "id": "Karaoke Version" - }, - { - "title": "Ego - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Give It Away - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Thank God It's Christmas - Queen", - "id": "Karaoke Version" - }, - { - "title": "Tin Man - America", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Kiss And Say Goodbye - UB40", - "id": "Karaoke Version" - }, - { - "title": "Smoke A Little Smoke - Eric Church", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "I Can't Give You Anything but Love - Tony Bennett & Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Devil with a Blue Dress On - Mitch Ryder", - "id": "Karaoke Version" - }, - { - "title": "Long Haired Country Boy - The Charlie Daniels Band", - "id": "Karaoke Version" - }, - { - "title": "Send in the Clowns - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Shake You Down - Gregory Abbott", - "id": "Karaoke Version" - }, - { - "title": "I Got a Name - Jim Croce", - "id": "Karaoke Version" - }, - { - "title": "Ghost Riders in the Sky - Outlaws (US)", - "id": "Karaoke Version" - }, - { - "title": "Beggin' - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Sweet Hitch-Hiker - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "In Your Hands - Charlie Winston", - "id": "Karaoke Version" - }, - { - "title": "Love Me with All Your Heart - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Word Up! - Cameo", - "id": "Karaoke Version" - }, - { - "title": "The Trees - Rush", - "id": "Karaoke Version" - }, - { - "title": "Cemetery Gates - Pantera", - "id": "Karaoke Version" - }, - { - "title": "Ride the River - Eric Clapton & J. J. Cale", - "id": "Karaoke Version" - }, - { - "title": "Bandstand Boogie - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Saturday Night's Alright for Fighting - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Bohemian Rhapsody - The Braids", - "id": "Karaoke Version" - }, - { - "title": "Blue Ridge Mountain Song - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Tuesday's Gone - Lynyrd Skynyrd", - "id": "Karaoke Version" - }, - { - "title": "Billie Jean - David Cook (American Idol)", - "id": "Karaoke Version" - }, - { - "title": "Bell Bottom Blues - Eric Clapton (Derek and the Dominos)", - "id": "Karaoke Version" - }, - { - "title": "Woman in Chains - Tears for Fears & Oleta Adams", - "id": "Karaoke Version" - }, - { - "title": "The Whole of the Moon - The Waterboys", - "id": "Karaoke Version" - }, - { - "title": "Parisienne Walkways - Gary Moore", - "id": "Karaoke Version" - }, - { - "title": "Jealous Guy - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "Baby It's Cold Outside - Idina Menzel & Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Try - Colbie Caillat", - "id": "Karaoke Version" - }, - { - "title": "Santa Baby - Eartha Kitt", - "id": "Karaoke Version" - }, - { - "title": "Solitary Man - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Grandpa (Tell Me 'Bout The Good Old Days) - The Judds", - "id": "Karaoke Version" - }, - { - "title": "Strawberry Fields Forever - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Strawberry Wine - Deana Carter", - "id": "Karaoke Version" - }, - { - "title": "Total Eclipse of the Heart - Westlife", - "id": "Karaoke Version" - }, - { - "title": "After Midnight - J. J. Cale", - "id": "Karaoke Version" - }, - { - "title": "Fall for You - Secondhand Serenade", - "id": "Karaoke Version" - }, - { - "title": "Just One Look - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Puttin' On The Ritz - Taco", - "id": "Karaoke Version" - }, - { - "title": "Secret Agent Man - Johnny Rivers (Secret Agent)", - "id": "Karaoke Version" - }, - { - "title": "Words - F. R. David", - "id": "Karaoke Version" - }, - { - "title": "Honky Tonk Walkin' - The Kentucky Headhunters", - "id": "Karaoke Version" - }, - { - "title": "It Don't Mean a Thing If - Tony Bennett & Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Highwayman - The Highwaymen", - "id": "Karaoke Version" - }, - { - "title": "Begin the Beguine - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "A Picture Of Me (Without You) - George Jones", - "id": "Karaoke Version" - }, - { - "title": "We Need a Little Christmas (Man) - 1960s Standards", - "id": "Karaoke Version" - }, - { - "title": "Get Together - The Youngbloods", - "id": "Karaoke Version" - }, - { - "title": "Waiting on a Friend - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "The Wild Side of Life - Hank Thompson", - "id": "Karaoke Version" - }, - { - "title": "Over the River and Through the Woods - 1800s Standards", - "id": "Karaoke Version" - }, - { - "title": "The Look - Roxette", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Miss Her - Brad Paisley", - "id": "Karaoke Version" - }, - { - "title": "Mama, I'm Coming Home - Ozzy Osbourne", - "id": "Karaoke Version" - }, - { - "title": "Anyone Who Had A Heart - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "Garden Party - Ricky Nelson", - "id": "Karaoke Version" - }, - { - "title": "Broken Vow - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Dinosaur - Hank Williams, Jr.", - "id": "Karaoke Version" - }, - { - "title": "I Wish I Was a Punk Rocker - Sandi Thom", - "id": "Karaoke Version" - }, - { - "title": "Crazy for You - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Fall At Your Feet - Crowded House", - "id": "Karaoke Version" - }, - { - "title": "Landing In London - 3 Doors Down", - "id": "Karaoke Version" - }, - { - "title": "Steamy Windows - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Symphony of Destruction - Megadeth", - "id": "Karaoke Version" - }, - { - "title": "So Long, Marianne - Leonard Cohen", - "id": "Karaoke Version" - }, - { - "title": "The Times They Are A-Changin' - Bob Dylan", - "id": "Karaoke Version" - }, - { - "title": "The Ketchup Song (Aserejรฉ) - Las Ketchup", - "id": "Karaoke Version" - }, - { - "title": "Dammit (Growing Up) - Blink-182", - "id": "Karaoke Version" - }, - { - "title": "Scar Tissue - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Love Ain't No Stranger - Whitesnake", - "id": "Karaoke Version" - }, - { - "title": "Do It Again - Steely Dan", - "id": "Karaoke Version" - }, - { - "title": "Theme from The Dukes of Hazzard (Good Ol' Boys) - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "Born to Run - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Muse", - "id": "Karaoke Version" - }, - { - "title": "You've Got to Hide Your Love Away - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Jump, Jive An' Wail - Louis Prima", - "id": "Karaoke Version" - }, - { - "title": "This Time - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "Help (live Wembley) - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Semi-Charmed Life - Third Eye Blind", - "id": "Karaoke Version" - }, - { - "title": "East Bound And Down - Jerry Reed", - "id": "Karaoke Version" - }, - { - "title": "Little Wing - Sting", - "id": "Karaoke Version" - }, - { - "title": "Take Me to the River - Talking Heads", - "id": "Karaoke Version" - }, - { - "title": "It's Your Thing - The Isley Brothers", - "id": "Karaoke Version" - }, - { - "title": "It Takes Two - Tina Turner & Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "I'm a Believer - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "You're In My Heart - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "The Guitar Man - Bread", - "id": "Karaoke Version" - }, - { - "title": "I'll Follow the Sun - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Slide - Goo Goo Dolls", - "id": "Karaoke Version" - }, - { - "title": "Reunited - Peaches And Herb", - "id": "Karaoke Version" - }, - { - "title": "Streets of Bakersfield - Dwight Yoakam & Buck Owens", - "id": "Karaoke Version" - }, - { - "title": "Don't Let the Sun Go Down on Me - Elton John & George Michael", - "id": "Karaoke Version" - }, - { - "title": "How Do You Keep the Music Playing? - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Please Come Home For Christmas - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Danke Schoen - Wayne Newton", - "id": "Karaoke Version" - }, - { - "title": "Only God Knows Why - Kid Rock", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Susan Boyle", - "id": "Karaoke Version" - }, - { - "title": "Come On-A My House - Rosemary Clooney", - "id": "Karaoke Version" - }, - { - "title": "Groovin' - The Rascals", - "id": "Karaoke Version" - }, - { - "title": "Wake Up - Arcade Fire", - "id": "Karaoke Version" - }, - { - "title": "Help The Poor - Robben Ford", - "id": "Karaoke Version" - }, - { - "title": "Sex And Candy - Marcy Playground", - "id": "Karaoke Version" - }, - { - "title": "I'm a Woman - Peggy Lee", - "id": "Karaoke Version" - }, - { - "title": "Whatever Lola Wants, Lola Gets - Damn Yankees (musical)", - "id": "Karaoke Version" - }, - { - "title": "The Sign - Ace of Base", - "id": "Karaoke Version" - }, - { - "title": "Sway - Bic Runga", - "id": "Karaoke Version" - }, - { - "title": "The Blues Man - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Listen to Her Heart - Tom Petty", - "id": "Karaoke Version" - }, - { - "title": "Whiskey Bent and Hell Bound - Hank Williams, Jr.", - "id": "Karaoke Version" - }, - { - "title": "By the Way - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Stormy Weather - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Lithium - Nirvana", - "id": "Karaoke Version" - }, - { - "title": "Valerie - The Zutons", - "id": "Karaoke Version" - }, - { - "title": "I'll Cover You (reprise) - Rent (film)", - "id": "Karaoke Version" - }, - { - "title": "Chelsea Dagger - The Fratellis", - "id": "Karaoke Version" - }, - { - "title": "Do You Wanna Touch Me (Oh Yeah) - Joan Jett", - "id": "Karaoke Version" - }, - { - "title": "My Hometown - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "How Great Thou Art - Mahalia Jackson", - "id": "Karaoke Version" - }, - { - "title": "Artificial Flowers - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Runaway - The Corrs", - "id": "Karaoke Version" - }, - { - "title": "Me and Bobby Mcgee - Jerry Lee Lewis", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Missing You - Diddy & Faith Evans & 112", - "id": "Karaoke Version" - }, - { - "title": "Superfreak - Rick James", - "id": "Karaoke Version" - }, - { - "title": "Barcelona - Freddie Mercury & Montserrat Caballรฉ", - "id": "Karaoke Version" - }, - { - "title": "Stone in Love - Journey", - "id": "Karaoke Version" - }, - { - "title": "It Ain't Over 'til It's Over - Lenny Kravitz", - "id": "Karaoke Version" - }, - { - "title": "Lady In Black - Uriah Heep", - "id": "Karaoke Version" - }, - { - "title": "Twinkle Twinkle Little Star - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Maneater - Hall & Oates", - "id": "Karaoke Version" - }, - { - "title": "(I Never Promised You A) Rose Garden - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Chandelier (Piano Version) - Sia", - "id": "Karaoke Version" - }, - { - "title": "Hello Mary Lou - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "Old Macdonald Had a Farm - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Dust in the Wind (live Unplugged) - Scorpions", - "id": "Karaoke Version" - }, - { - "title": "My Own Worst Enemy - Lit", - "id": "Karaoke Version" - }, - { - "title": "Pink Cadillac - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "I'm Stone In Love With You - The Stylistics", - "id": "Karaoke Version" - }, - { - "title": "Sing Me Back Home - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Fooled Around and Fell in Love - Elvin Bishop", - "id": "Karaoke Version" - }, - { - "title": "Rich Girl - Hall & Oates", - "id": "Karaoke Version" - }, - { - "title": "I Am the Walrus - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Alone (Live) - Heart (band)", - "id": "Karaoke Version" - }, - { - "title": "One For My Baby (And One More For The Road) - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Please Come Home For Christmas (Bells Will Be Ringing) - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Tom Sawyer - Rush", - "id": "Karaoke Version" - }, - { - "title": "Susanna - The Art Company", - "id": "Karaoke Version" - }, - { - "title": "Don't Take the Girl - Tim McGraw", - "id": "Karaoke Version" - }, - { - "title": "The Way - Fastball", - "id": "Karaoke Version" - }, - { - "title": "Sweet Home Chicago - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "The Impossible Dream - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "Anymore - Travis Tritt", - "id": "Karaoke Version" - }, - { - "title": "Jambalaya (On The Bayou) - Hank Williams, Sr.", - "id": "Karaoke Version" - }, - { - "title": "Mind Your Own Business - Hank Williams, Jr. & Tom Petty & Reba McEntire", - "id": "Karaoke Version" - }, - { - "title": "Breakdown - Tom Petty", - "id": "Karaoke Version" - }, - { - "title": "The Tennessee Waltz (Short version) - Patti Page", - "id": "Karaoke Version" - }, - { - "title": "Baby (You've Got What It Takes) - Michael Bublรฉ & Sharon Jones", - "id": "Karaoke Version" - }, - { - "title": "Dear Prudence - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Making Love Out of Nothing at All - Air Supply", - "id": "Karaoke Version" - }, - { - "title": "Walking the Dog - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "I Can Take It From There - Chris Young", - "id": "Karaoke Version" - }, - { - "title": "Pearly Shells - Burl Ives", - "id": "Karaoke Version" - }, - { - "title": "Borderline - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Papa Loved Mama - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "Pony - Ginuwine", - "id": "Karaoke Version" - }, - { - "title": "Turn It On, Turn It Up, Turn Me Loose - Dwight Yoakam", - "id": "Karaoke Version" - }, - { - "title": "The Bad Touch - Bloodhound Gang", - "id": "Karaoke Version" - }, - { - "title": "Closing Time - Semisonic", - "id": "Karaoke Version" - }, - { - "title": "Angel of the Morning - Juice Newton", - "id": "Karaoke Version" - }, - { - "title": "Let Her Cry - Hootie & the Blowfish", - "id": "Karaoke Version" - }, - { - "title": "Foil - Weird Al Yankovic", - "id": "Karaoke Version" - }, - { - "title": "Two Out of Three Ain't Bad - Meat Loaf", - "id": "Karaoke Version" - }, - { - "title": "Locomotion - Dwight Yoakam", - "id": "Karaoke Version" - }, - { - "title": "Because I Got High - Afroman", - "id": "Karaoke Version" - }, - { - "title": "Fire - Glee", - "id": "Karaoke Version" - }, - { - "title": "I Didn't Know My Own Strength - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "My Father's Eyes - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Prayer In C - Lilly Wood & The Prick & Robin Schulz", - "id": "Karaoke Version" - }, - { - "title": "Cowboys And Angels - Dustin Lynch", - "id": "Karaoke Version" - }, - { - "title": "Simple Man (acoustic - Single Version) - Shinedown", - "id": "Karaoke Version" - }, - { - "title": "Ramblin' Rose - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "All I Want for Christmas Is You - Lady A", - "id": "Karaoke Version" - }, - { - "title": "The Ballad of John and Yoko - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Too Darn Hot - Stacey Kent", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "All I Want For Christmas Is You - Vince Vance & The Valiants", - "id": "Karaoke Version" - }, - { - "title": "To Her Door (live) - Paul Kelly", - "id": "Karaoke Version" - }, - { - "title": "Show Me the Way - Peter Frampton", - "id": "Karaoke Version" - }, - { - "title": "Sure Know Something - Kiss", - "id": "Karaoke Version" - }, - { - "title": "Higher Ground - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "So Nice - Stacey Kent", - "id": "Karaoke Version" - }, - { - "title": "We Gotta Get Out Of This Place - The Angels", - "id": "Karaoke Version" - }, - { - "title": "I Want You To Want Me - Dwight Yoakam", - "id": "Karaoke Version" - }, - { - "title": "Silver Threads and Golden Needles - Tammy Wynette", - "id": "Karaoke Version" - }, - { - "title": "Who Can It Be Now - Men at Work", - "id": "Karaoke Version" - }, - { - "title": "Be-Bop-A-Lula - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "If You Go Away (Ne me quitte pas) - Patricia Kaas", - "id": "Karaoke Version" - }, - { - "title": "Ain't It Funny - Jennifer Lopez", - "id": "Karaoke Version" - }, - { - "title": "The Way I Am - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Substitute - Clout", - "id": "Karaoke Version" - }, - { - "title": "The Green Leaves of Summer - The Brothers Four", - "id": "Karaoke Version" - }, - { - "title": "All Over the World - Xanadu (film) (Electric Light Orchestra)", - "id": "Karaoke Version" - }, - { - "title": "I'll Fly for You - Spandau Ballet", - "id": "Karaoke Version" - }, - { - "title": "Telephone Line - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Harbor Lights - The Platters", - "id": "Karaoke Version" - }, - { - "title": "The Last Unicorn - America", - "id": "Karaoke Version" - }, - { - "title": "You're More Than a Number in My Little Red Book - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Your Guardian Angel - The Red Jumpsuit Apparatus", - "id": "Karaoke Version" - }, - { - "title": "Lady Madonna - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Christmas in Dixie - Alabama", - "id": "Karaoke Version" - }, - { - "title": "1973 - James Blunt", - "id": "Karaoke Version" - }, - { - "title": "I Wish You Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Na Na Hey Hey (Kiss Him Goodbye) - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "Smooth Criminal - Alien Ant Farm", - "id": "Karaoke Version" - }, - { - "title": "Days of Wine and Roses - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "Sweet Home Chicago - The Blues Brothers", - "id": "Karaoke Version" - }, - { - "title": "You Make Me Feel Brand New - Simply Red", - "id": "Karaoke Version" - }, - { - "title": "Love Goes On - The Common Linnets", - "id": "Karaoke Version" - }, - { - "title": "Lucille - Little Richard", - "id": "Karaoke Version" - }, - { - "title": "Liquid Spirit - Gregory Porter", - "id": "Karaoke Version" - }, - { - "title": "This Love - Pantera", - "id": "Karaoke Version" - }, - { - "title": "Is This Love - Whitesnake", - "id": "Karaoke Version" - }, - { - "title": "Old Dogs, Children and Watermelon Wine - Tom T. Hall", - "id": "Karaoke Version" - }, - { - "title": "Love How You Love Me - Melanie Thornton", - "id": "Karaoke Version" - }, - { - "title": "Chandelier - Sia", - "id": "Karaoke Version" - }, - { - "title": "Teenage Kicks - The Undertones", - "id": "Karaoke Version" - }, - { - "title": "Hello Walls - Faron Young", - "id": "Karaoke Version" - }, - { - "title": "The Walk - Mayer Hawthorne", - "id": "Karaoke Version" - }, - { - "title": "Physical - Olivia Newton-John", - "id": "Karaoke Version" - }, - { - "title": "Hey, Good Lookin' - Hank Williams, Sr.", - "id": "Karaoke Version" - }, - { - "title": "Addicted to Love (live) - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Close the Door - Teddy Pendergrass", - "id": "Karaoke Version" - }, - { - "title": "Try a Little Tenderness - The Commitments", - "id": "Karaoke Version" - }, - { - "title": "Bicycle Race - Queen", - "id": "Karaoke Version" - }, - { - "title": "Black Roses - Nashville (Clare Bowen)", - "id": "Karaoke Version" - }, - { - "title": "The Night Before - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Everything At Once - Lenka", - "id": "Karaoke Version" - }, - { - "title": "Amie - Pure Prairie League", - "id": "Karaoke Version" - }, - { - "title": "Where Corn Don't Grow - Travis Tritt", - "id": "Karaoke Version" - }, - { - "title": "All I Want for Christmas Is You - Glee", - "id": "Karaoke Version" - }, - { - "title": "Polk Salad Annie (live 1970) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "The First Cut Is the Deepest - Cat Stevens", - "id": "Karaoke Version" - }, - { - "title": "Hey Girl - Billy Joel", - "id": "Karaoke Version" - }, - { - "title": "Needles and Pins - Smokie", - "id": "Karaoke Version" - }, - { - "title": "If I Fell - Across The Universe (film) (Evan Rachel Wood)", - "id": "Karaoke Version" - }, - { - "title": "Awake and Alive - Skillet", - "id": "Karaoke Version" - }, - { - "title": "Spread The Love Around - Sister Act", - "id": "Karaoke Version" - }, - { - "title": "Mr. Bojangles - Nitty Gritty Dirt Band", - "id": "Karaoke Version" - }, - { - "title": "A Sunday Kind of Love - Etta James", - "id": "Karaoke Version" - }, - { - "title": "All I Want for Christmas Is You - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Will You Love Me Tomorrow? - Dusty Springfield", - "id": "Karaoke Version" - }, - { - "title": "Family Tradition - Hank Williams, Jr.", - "id": "Karaoke Version" - }, - { - "title": "Broken Wings - Mr. Mister", - "id": "Karaoke Version" - }, - { - "title": "Rewrite This Story - Smash", - "id": "Karaoke Version" - }, - { - "title": "Big Finish - Smash (Ivy Lynn & Karen Cartwright)", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Sunshine - Michael Bolton", - "id": "Karaoke Version" - }, - { - "title": "Girls Girls Girls - Sailor", - "id": "Karaoke Version" - }, - { - "title": "Baby I - Ariana Grande", - "id": "Karaoke Version" - }, - { - "title": "The Loco-Motion - Grand Funk Railroad", - "id": "Karaoke Version" - }, - { - "title": "Turn Me Loose - Loverboy", - "id": "Karaoke Version" - }, - { - "title": "Ramblin' Fever - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Your Mamma Don't Dance - Poison", - "id": "Karaoke Version" - }, - { - "title": "Blue Suede Shoes - Carl Perkins", - "id": "Karaoke Version" - }, - { - "title": "Imagine - Randy Crawford", - "id": "Karaoke Version" - }, - { - "title": "Tulane - Steve Gibbons Band", - "id": "Karaoke Version" - }, - { - "title": "Word Crimes - Weird Al Yankovic", - "id": "Karaoke Version" - }, - { - "title": "September Song - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Dumas Walker - The Kentucky Headhunters", - "id": "Karaoke Version" - }, - { - "title": "Tougher Than The Rest - Chris LeDoux", - "id": "Karaoke Version" - }, - { - "title": "Live It Up - Mental As Anything", - "id": "Karaoke Version" - }, - { - "title": "It's All Over Now - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "(Oh) Pretty Woman - Van Halen", - "id": "Karaoke Version" - }, - { - "title": "I Will - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Rocky Mountain Way - Joe Walsh", - "id": "Karaoke Version" - }, - { - "title": "Every Kinda People - Robert Palmer", - "id": "Karaoke Version" - }, - { - "title": "Since I Don't Have You - The Skyliners", - "id": "Karaoke Version" - }, - { - "title": "Sorry Suzanne - The Hollies", - "id": "Karaoke Version" - }, - { - "title": "Oh Girl - The Chi-Lites", - "id": "Karaoke Version" - }, - { - "title": "They Call Me the Breeze - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "My Old School - Steely Dan", - "id": "Karaoke Version" - }, - { - "title": "It's My Life - No Doubt", - "id": "Karaoke Version" - }, - { - "title": "mark (Kiss Kiss) - Tarkan", - "id": "Karaoke Version" - }, - { - "title": "Hollow - Pantera", - "id": "Karaoke Version" - }, - { - "title": "I Drove All Night - Roy Orbison", - "id": "Karaoke Version" - }, - { - "title": "Last Train to Clarksville - The Monkees", - "id": "Karaoke Version" - }, - { - "title": "Gypsy - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Come On, Let's Go! - Ritchie Valens", - "id": "Karaoke Version" - }, - { - "title": "I Can't Make You Love Me (live) - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Double Vision - Foreigner", - "id": "Karaoke Version" - }, - { - "title": "I Write The Songs - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Domination - Pantera", - "id": "Karaoke Version" - }, - { - "title": "It Must Be Love - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Everybody Loves Somebody - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop Believin' (Regionals Version) - Glee", - "id": "Karaoke Version" - }, - { - "title": "Chirpy Chirpy Cheep Cheep - Middle of the Road", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night - Sammi Smith", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Shake the Disease - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "5 Minutes Alone - Pantera", - "id": "Karaoke Version" - }, - { - "title": "Yesterdays - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "Use Ta Be My Girl - The O'Jays", - "id": "Karaoke Version" - }, - { - "title": "Steamroller Blues - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "All Right - Christopher Cross", - "id": "Karaoke Version" - }, - { - "title": "Can't Get Enough of Your Love - Taylor Dayne", - "id": "Karaoke Version" - }, - { - "title": "You're Gonna Miss Me When I'm Gone - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Have I Told You Lately That I Love You - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "She Sells Sanctuary - The Cult", - "id": "Karaoke Version" - }, - { - "title": "Sirens - Cher", - "id": "Karaoke Version" - }, - { - "title": "Radar Love (Album Version) - Golden Earring", - "id": "Karaoke Version" - }, - { - "title": "Video Killed The Radio Star - The Buggles", - "id": "Karaoke Version" - }, - { - "title": "You'll Be Okay - A Great Big World", - "id": "Karaoke Version" - }, - { - "title": "Famous in a Small Town - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "So in to You - Atlanta Rhythm Section", - "id": "Karaoke Version" - }, - { - "title": "Love Will Keep Us Together - Captain & Tennille", - "id": "Karaoke Version" - }, - { - "title": "I'm Through with Love - Marilyn Monroe", - "id": "Karaoke Version" - }, - { - "title": "Little Deuce Coupe - The Beach Boys & James House", - "id": "Karaoke Version" - }, - { - "title": "My Eyes Adored You - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "Love on the Rocks - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Born to Try - Delta Goodrem", - "id": "Karaoke Version" - }, - { - "title": "Dance with Me - Orleans", - "id": "Karaoke Version" - }, - { - "title": "One - Three Dog Night", - "id": "Karaoke Version" - }, - { - "title": "Tiger Feet - Mud", - "id": "Karaoke Version" - }, - { - "title": "Revolution - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Jambalaya (On the Bayou) - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "When I Fall in Love - Cรฉline Dion & Clive Griffin", - "id": "Karaoke Version" - }, - { - "title": "You Don't Bring Me Flowers - Neil Diamond & Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "Sweet Caroline - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "God Bless The U.S.A. - Lee Greenwood", - "id": "Karaoke Version" - }, - { - "title": "Only Love Can Hurt Like This - Paloma Faith", - "id": "Karaoke Version" - }, - { - "title": "Route 66 - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "I Can Help - Billy Swan", - "id": "Karaoke Version" - }, - { - "title": "When You Believe - The Prince of Egypt", - "id": "Karaoke Version" - }, - { - "title": "A World of Our Own - The Seekers", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stop Loving You - Connie Francis", - "id": "Karaoke Version" - }, - { - "title": "I'm a Believer - Smash Mouth (Shrek film)", - "id": "Karaoke Version" - }, - { - "title": "Song Sung Blue - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "I'm a Believer - The Monkees", - "id": "Karaoke Version" - }, - { - "title": "Devil Woman - Marty Robbins", - "id": "Karaoke Version" - }, - { - "title": "Travelin' Man - Ricky Nelson", - "id": "Karaoke Version" - }, - { - "title": "Pretty Paper - Roy Orbison", - "id": "Karaoke Version" - }, - { - "title": "Tears Don't Fall - Bullet for My Valentine", - "id": "Karaoke Version" - }, - { - "title": "I Drove All Night - Cyndi Lauper", - "id": "Karaoke Version" - }, - { - "title": "All The Things You Are - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Never Been to Spain (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Carolina in My Mind - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Does Fort Worth Ever Cross Your Mind - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Diamante (with Randy Crawford) - Zucchero", - "id": "Karaoke Version" - }, - { - "title": "You've Made Me So Very Happy - Blood, Sweat & Tears", - "id": "Karaoke Version" - }, - { - "title": "Like A Drum - Guy Sebastian", - "id": "Karaoke Version" - }, - { - "title": "The Way You Do the Things You Do - UB40", - "id": "Karaoke Version" - }, - { - "title": "Jet Airliner - Steve Miller Band", - "id": "Karaoke Version" - }, - { - "title": "If You Could Only See - Tonic", - "id": "Karaoke Version" - }, - { - "title": "Spirit In The Sky - Doctor and the Medics", - "id": "Karaoke Version" - }, - { - "title": "Seven Spanish Angels - Adam Harvey & Troy Cassar-Daley", - "id": "Karaoke Version" - }, - { - "title": "Twilight Time - The Platters", - "id": "Karaoke Version" - }, - { - "title": "500 Miles (Away From Home) - The Hooters", - "id": "Karaoke Version" - }, - { - "title": "Walking in My Shoes - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "I Just Can't Help Believin' - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Will You Love Me Tomorrow - The Shirelles", - "id": "Karaoke Version" - }, - { - "title": "I Can See Clearly Now (Sun Shinning Day) - Johnny Nash", - "id": "Karaoke Version" - }, - { - "title": "Never Before - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "Mr. Tambourine Man - Bob Dylan", - "id": "Karaoke Version" - }, - { - "title": "Lucy in the Sky with Diamonds - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Rambunctious Boy - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon Nights - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "Little Lies - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Twist In My Sobriety - Tanita Tikaram", - "id": "Karaoke Version" - }, - { - "title": "Imagine - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Hello Again - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Forever in Blue Jeans - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Some Days Are Diamonds (Some Days Are Stone) - John Denver", - "id": "Karaoke Version" - }, - { - "title": "Ain't That Peculiar - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Working Man Blues - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "The Impossible Dream (The Quest) - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "Ramblin' Man - The Allman Brothers Band", - "id": "Karaoke Version" - }, - { - "title": "Joyful, Joyful We Adore Thee - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Breaking The Law - Judas Priest", - "id": "Karaoke Version" - }, - { - "title": "Everything Must Change (Edit) - George Benson", - "id": "Karaoke Version" - }, - { - "title": "Sing! - Glee", - "id": "Karaoke Version" - }, - { - "title": "Why Not Me - The Judds", - "id": "Karaoke Version" - }, - { - "title": "Whatever - Cro", - "id": "Karaoke Version" - }, - { - "title": "Cracklin' Rosie - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Act Naturally - Buck Owens", - "id": "Karaoke Version" - }, - { - "title": "The Look of Love - Nina Simone", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good (Caught In The Act Live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "A Nightingale Sang in Berkeley Square - Vera Lynn", - "id": "Karaoke Version" - }, - { - "title": "Red Red Wine - UB40", - "id": "Karaoke Version" - }, - { - "title": "If It's Magic - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Collide - Howie Day", - "id": "Karaoke Version" - }, - { - "title": "Distant Sun - Crowded House", - "id": "Karaoke Version" - }, - { - "title": "Open Arms - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Norwegian Wood (This Bird Has Flown) - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Noise - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Family - Dreamgirls (2006 film)", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Take My Heart (You Can Have It If You Want It) - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "Spanish Eyes - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "I Am... I Said - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "Shutters and Boards (live) - Charley Pride", - "id": "Karaoke Version" - }, - { - "title": "Bossa Nova Baby (Viva Elvis) - Elvis Presley (Cirque du Soleil)", - "id": "Karaoke Version" - }, - { - "title": "One Day at a Time - Lena Martell", - "id": "Karaoke Version" - }, - { - "title": "Sweet Caroline - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "In the Midnight Hour - The Commitments", - "id": "Karaoke Version" - }, - { - "title": "Here You Come Again - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "I'll Never Love This Way Again - Dionne Warwick", - "id": "Karaoke Version" - }, - { - "title": "What Becomes of the Brokenhearted - Jimmy Ruffin", - "id": "Karaoke Version" - }, - { - "title": "The Boys Light Up - Australian Crawl", - "id": "Karaoke Version" - }, - { - "title": "Mystery Train (live) - Dwight Yoakam", - "id": "Karaoke Version" - }, - { - "title": "Storybook Children - Billy Vera & Judy Clay", - "id": "Karaoke Version" - }, - { - "title": "Lookin' for Love - Johnny Lee", - "id": "Karaoke Version" - }, - { - "title": "Cult Of Personality - Living Colour", - "id": "Karaoke Version" - }, - { - "title": "Beggin' - Madcon", - "id": "Karaoke Version" - }, - { - "title": "Caribbean Queen (No More Love on the Run) - Billy Ocean", - "id": "Karaoke Version" - }, - { - "title": "Kerosene - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Magic Man - Heart (band)", - "id": "Karaoke Version" - }, - { - "title": "He Drinks Tequila - Lorrie Morgan", - "id": "Karaoke Version" - }, - { - "title": "Poetry in Motion - Johnny Tillotson", - "id": "Karaoke Version" - }, - { - "title": "O Christmas Tree - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "7 Seconds - Neneh Cherry & Youssou N'Dour", - "id": "Karaoke Version" - }, - { - "title": "Always - Atlantic Starr", - "id": "Karaoke Version" - }, - { - "title": "Sea Cruise - Frankie Ford", - "id": "Karaoke Version" - }, - { - "title": "You Look So Good In Love - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Tall Tall Trees - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "The Luckiest - Ben Folds", - "id": "Karaoke Version" - }, - { - "title": "Me And Mrs. Jones - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Car Wash - Rose Royce", - "id": "Karaoke Version" - }, - { - "title": "Sometimes When We Touch - Dan Hill", - "id": "Karaoke Version" - }, - { - "title": "We Can Work It Out - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Let's All Chant - The Michael Zager Band", - "id": "Karaoke Version" - }, - { - "title": "Would You Go With Me - Josh Turner", - "id": "Karaoke Version" - }, - { - "title": "Gentle On My Mind - Glen Campbell", - "id": "Karaoke Version" - }, - { - "title": "Enjoy the Silence - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Rainy Night in Georgia - Brook Benton", - "id": "Karaoke Version" - }, - { - "title": "(I Just) Died in Your Arms - Cutting Crew", - "id": "Karaoke Version" - }, - { - "title": "Eye of the Tiger - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "Beer Barrel Polka - Polka Forever", - "id": "Karaoke Version" - }, - { - "title": "Oh Julie - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "Rhythm of the Night (Dance Mix) - DeBarge", - "id": "Karaoke Version" - }, - { - "title": "Rock Steady - Bad Company", - "id": "Karaoke Version" - }, - { - "title": "Gangsta's Paradise - Coolio & L.V.", - "id": "Karaoke Version" - }, - { - "title": "Where or When - Dion & The Belmonts", - "id": "Karaoke Version" - }, - { - "title": "Eighteen Wheels And A Dozen Roses - Kathy Mattea", - "id": "Karaoke Version" - }, - { - "title": "Swinging Doors - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Speedy Gonzales - Pat Boone", - "id": "Karaoke Version" - }, - { - "title": "Take Me to the River (live) - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "Heaven Knows - The Pretty Reckless", - "id": "Karaoke Version" - }, - { - "title": "Bad Romance - Halestorm", - "id": "Karaoke Version" - }, - { - "title": "Dumb Things - Paul Kelly", - "id": "Karaoke Version" - }, - { - "title": "Coward of the County - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Martha My Dear - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "When You Walk in the Room - Smokie", - "id": "Karaoke Version" - }, - { - "title": "Betcha by Golly, Wow - The Stylistics", - "id": "Karaoke Version" - }, - { - "title": "Folsom Prison Blues - Brooks & Dunn & Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Adore You - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "As Good as I Once Was - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "Keep Me Hanging On - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Workin' Day And Night - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stand the Rain - Eruption", - "id": "Karaoke Version" - }, - { - "title": "Lovesick Blues - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Love Me (live Aloha from Hawaii via Satellite) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Chain Gang - Sam Cooke", - "id": "Karaoke Version" - }, - { - "title": "All I Do Is Dream of You - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Fine China - Chris Brown", - "id": "Karaoke Version" - }, - { - "title": "Gentle on My Mind - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Treat Me Nice - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Always Be My Baby - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Fastest Girl in Town - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Drift Away - Dobie Gray", - "id": "Karaoke Version" - }, - { - "title": "Tiny Bubbles - Don Ho", - "id": "Karaoke Version" - }, - { - "title": "If I Fell - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Piano - Ariana Grande", - "id": "Karaoke Version" - }, - { - "title": "Lie to Me - Jonny Lang", - "id": "Karaoke Version" - }, - { - "title": "Grow Old With Me - Mary Chapin Carpenter", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "People Are Crazy - Billy Currington", - "id": "Karaoke Version" - }, - { - "title": "My Love Is Your Love - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Gentle On My Mind - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Shalala Lala - Vengaboys", - "id": "Karaoke Version" - }, - { - "title": "500 Miles Away from Home - Bobby Bare", - "id": "Karaoke Version" - }, - { - "title": "Independence Day - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Black Night - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "The Wanderer - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "Already Home - A Great Big World", - "id": "Karaoke Version" - }, - { - "title": "If We Hold On Together - Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "Life's Too Short - Frozen (2013 film) (Kristen Anderson Lopez)", - "id": "Karaoke Version" - }, - { - "title": "Save Your Kisses for Me - Brotherhood Of Man", - "id": "Karaoke Version" - }, - { - "title": "Oklahoma Sky - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "For the Good Times - Ray Price", - "id": "Karaoke Version" - }, - { - "title": "We're Gonna Hold On - George Jones & Tammy Wynette", - "id": "Karaoke Version" - }, - { - "title": "Yesterday - Michael Bolton", - "id": "Karaoke Version" - }, - { - "title": "Shine - Collective Soul", - "id": "Karaoke Version" - }, - { - "title": "Don't You Know You're Beautiful - Kellie Pickler", - "id": "Karaoke Version" - }, - { - "title": "Queen of the Night - The Bodyguard (Whitney Houston)", - "id": "Karaoke Version" - }, - { - "title": "Dov'e L'Amore - Cher", - "id": "Karaoke Version" - }, - { - "title": "Sold (The Grundy County Auction Incident) - John Michael Montgomery", - "id": "Karaoke Version" - }, - { - "title": "Shout - Tears for Fears", - "id": "Karaoke Version" - }, - { - "title": "Wicked Little Town - Hedwig and the Angry Inch", - "id": "Karaoke Version" - }, - { - "title": "'74 '75 - The Connells", - "id": "Karaoke Version" - }, - { - "title": "Wild Thing - The Troggs", - "id": "Karaoke Version" - }, - { - "title": "Any Way You Want It - Rock of Ages (film)", - "id": "Karaoke Version" - }, - { - "title": "Drivin' My Life Away - Rhett Akins", - "id": "Karaoke Version" - }, - { - "title": "Just Like A Pill - Pink", - "id": "Karaoke Version" - }, - { - "title": "Oh My Pa-Pa (O Mein Papa) - Eddie Fisher", - "id": "Karaoke Version" - }, - { - "title": "Wish I Didn't Miss You - Angie Stone", - "id": "Karaoke Version" - }, - { - "title": "(Tonight) The Bottle Let Me Down - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Is Anybody Goin' to San Antone - Charley Pride", - "id": "Karaoke Version" - }, - { - "title": "Rikki Don't Lose That Number - Steely Dan", - "id": "Karaoke Version" - }, - { - "title": "The Fireman - George Strait", - "id": "Karaoke Version" - }, - { - "title": "I Can't Dance - Genesis", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop Believin' - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Working for the Weekend - Loverboy", - "id": "Karaoke Version" - }, - { - "title": "Charlie Brown - The Coasters", - "id": "Karaoke Version" - }, - { - "title": "Reach - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "My Little Girl - Tim McGraw", - "id": "Karaoke Version" - }, - { - "title": "Everything I Own - Bread", - "id": "Karaoke Version" - }, - { - "title": "These Dreams (radio edit) - Heart (band)", - "id": "Karaoke Version" - }, - { - "title": "So Nice - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "I Wish I Was Eighteen Again - George Burns", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good - Adam Lambert", - "id": "Karaoke Version" - }, - { - "title": "The Chair - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Scatman (Ski-Ba-Bop-Ba-Dop-Bop) - Scatman John", - "id": "Karaoke Version" - }, - { - "title": "Pop a Top - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Tonight The Bottle Let Me Down - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Love's Gonna Live Here - Buck Owens", - "id": "Karaoke Version" - }, - { - "title": "Make It With You - Bread", - "id": "Karaoke Version" - }, - { - "title": "Strangelove - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Lost in the Fifties Tonight (In the Still of the Night) - Ronnie Milsap", - "id": "Karaoke Version" - }, - { - "title": "Another Star - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "There's A Hero - Billy Gilman", - "id": "Karaoke Version" - }, - { - "title": "Roses Are Red (My Love) - Bobby Vinton", - "id": "Karaoke Version" - }, - { - "title": "Forever Now - Cold Chisel", - "id": "Karaoke Version" - }, - { - "title": "Black & Gold (live) - Katy Perry", - "id": "Karaoke Version" - }, - { - "title": "Ready to Love Again - Lady A", - "id": "Karaoke Version" - }, - { - "title": "You Keep Me Hangin' On - Kim Wilde", - "id": "Karaoke Version" - }, - { - "title": "I Want Crazy - Johnny Brady", - "id": "Karaoke Version" - }, - { - "title": "Tonight - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "Love of the Common People - Paul Young", - "id": "Karaoke Version" - }, - { - "title": "Such a Night - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Midnight Radio - Hedwig and the Angry Inch", - "id": "Karaoke Version" - }, - { - "title": "If You Say So - Lea Michele", - "id": "Karaoke Version" - }, - { - "title": "Whiskey Under The Bridge - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "No Love Allowed - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Louie, Louie - The Kingsmen", - "id": "Karaoke Version" - }, - { - "title": "All That She Wants - Ace of Base", - "id": "Karaoke Version" - }, - { - "title": "Poetry in Motion - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Jolene - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Take Me or Leave Me - Glee", - "id": "Karaoke Version" - }, - { - "title": "One Night (With You) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Deacon Blues - Steely Dan", - "id": "Karaoke Version" - }, - { - "title": "I Go to Rio - Peter Allen", - "id": "Karaoke Version" - }, - { - "title": "I Want to Break Free - Queen", - "id": "Karaoke Version" - }, - { - "title": "Misery - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Sealed with a Kiss - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Day Tripper - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Danny Boy - Traditional", - "id": "Karaoke Version" - }, - { - "title": "One Way Ticket - Eruption", - "id": "Karaoke Version" - }, - { - "title": "I Turn to You - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "Return to Me (Ritorna-Me) - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Gimme Three Steps - Lynyrd Skynyrd", - "id": "Karaoke Version" - }, - { - "title": "Amazing Grace - Traditional", - "id": "Karaoke Version" - }, - { - "title": "Birthday - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "At This Moment (live) - Billy Vera", - "id": "Karaoke Version" - }, - { - "title": "Pennies from Heaven - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "My Funny Valentine - Chaka Khan", - "id": "Karaoke Version" - }, - { - "title": "All I Do - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Twinkle Twinkle Little Star - Nursery Rhyme", - "id": "Karaoke Version" - }, - { - "title": "I Got a Woman - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Sea of Heartbreak - Don Gibson", - "id": "Karaoke Version" - }, - { - "title": "Don't Bring Me Down - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "The Wild Side of Life - Pirates of the Mississippi", - "id": "Karaoke Version" - }, - { - "title": "In the Basement - Martina McBride & Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Let's Go Dancin' (Ooh La, La, La) - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "The Great Pretender - Freddie Mercury", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good (live From Madison Square Garden) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Suddenly I See - KT Tunstall", - "id": "Karaoke Version" - }, - { - "title": "Babooshka - Kate Bush", - "id": "Karaoke Version" - }, - { - "title": "If You Don't Know Me By Now - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Stripped - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Life's a Happy Song - The Muppets", - "id": "Karaoke Version" - }, - { - "title": "Rockstar - A Great Big World", - "id": "Karaoke Version" - }, - { - "title": "Everything I Own - Boy George", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good - Muse", - "id": "Karaoke Version" - }, - { - "title": "Jolene - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "Living Doll - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "I've Got You Under My Skin - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Except for Monday - Lorrie Morgan", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good - Jennifer Hudson", - "id": "Karaoke Version" - }, - { - "title": "Just Friends - Gavin DeGraw", - "id": "Karaoke Version" - }, - { - "title": "Another Saturday Night - Sam Cooke", - "id": "Karaoke Version" - }, - { - "title": "I Touch Myself - The Divinyls", - "id": "Karaoke Version" - }, - { - "title": "Feeling Good - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Sunshine Reggae - Laid Back", - "id": "Karaoke Version" - }, - { - "title": "Story Of My Life - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Layla (Live) - Eric Clapton *", - "id": "_meZmyvOj3s" - }, - { - "title": "Feeling Good - Nina Simone", - "id": "Karaoke Version" - }, - { - "title": "Angels - Within Temptation", - "id": "Karaoke Version" - }, - { - "title": "Only Prettier - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Lift Me Up - Kate Voegele", - "id": "Karaoke Version" - }, - { - "title": "All of Me - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Baggage Claim - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Big River - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Faith - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Bat Out of Hell - Meat Loaf", - "id": "Karaoke Version" - }, - { - "title": "Makin' Plans - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Always Be My Baby - David Cook (American Idol)", - "id": "Karaoke Version" - }, - { - "title": "Yakety Yak - The Coasters", - "id": "Karaoke Version" - }, - { - "title": "So Amazing - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "It's Only Make Believe - Conway Twitty", - "id": "Karaoke Version" - }, - { - "title": "Heaven - Gotthard", - "id": "Karaoke Version" - }, - { - "title": "Life Turned Her That Way - Ricky Van Shelton", - "id": "Karaoke Version" - }, - { - "title": "This Is the Life - Amy Macdonald", - "id": "Karaoke Version" - }, - { - "title": "My Baby - Cold Chisel", - "id": "Karaoke Version" - }, - { - "title": "Welcome To My World - Jim Reeves", - "id": "Karaoke Version" - }, - { - "title": "Sweet Child O' Mine - Sheryl Crow", - "id": "Karaoke Version" - }, - { - "title": "Some Broken Hearts Never Mend - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Safe And Sound - Capital Cities", - "id": "Karaoke Version" - }, - { - "title": "Mountain Music - Alabama", - "id": "Karaoke Version" - }, - { - "title": "Night Moves - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "Back in the U.S.S.R. - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "When Will I Be Loved - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "Like a Virgin - The Cooltrane Quartet", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Mickey Gilley", - "id": "Karaoke Version" - }, - { - "title": "It's My Life - Talk Talk", - "id": "Karaoke Version" - }, - { - "title": "Move It On Over - George Thorogood", - "id": "Karaoke Version" - }, - { - "title": "That Wasn't Me - Brandi Carlile", - "id": "Karaoke Version" - }, - { - "title": "I Love Paris - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Take the Long Way Home - Supertramp", - "id": "Karaoke Version" - }, - { - "title": "Our House - Madness", - "id": "Karaoke Version" - }, - { - "title": "Ain't Nobody's Business - Billie Holiday", - "id": "Karaoke Version" - }, - { - "title": "Make The World Go Away - Eddy Arnold", - "id": "Karaoke Version" - }, - { - "title": "I'm a Lonesome Fugitive - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Jรณga - Bjรถrk", - "id": "Karaoke Version" - }, - { - "title": "Against All Odds (Take a Look at Me Now) - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Here, There and Everywhere - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Sealed with a Kiss - Brian Hyland", - "id": "Karaoke Version" - }, - { - "title": "Child in Time - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "Red Solo Cup - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "Crazy Little Thing Called Love - Dwight Yoakam", - "id": "Karaoke Version" - }, - { - "title": "634-5789 - Blues Brothers 2000", - "id": "Karaoke Version" - }, - { - "title": "Mama Said - The Shirelles", - "id": "Karaoke Version" - }, - { - "title": "I Like Chopin - Gazebo", - "id": "Karaoke Version" - }, - { - "title": "Baby Come Back - Player", - "id": "Karaoke Version" - }, - { - "title": "Josephine - Chris Rea", - "id": "Karaoke Version" - }, - { - "title": "Is Anybody Goin' To San Antone - Texas Tornados", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Mammas Don't Let Your Babies Grow Up To Be Cowboys - Willie Nelson & Waylon Jennings *", - "id": "24ron9A6Fro" - }, - { - "title": "Where Do You Go To (My Lovely)? - Peter Sarstedt", - "id": "Karaoke Version" - }, - { - "title": "One Word - Baby Animals", - "id": "Karaoke Version" - }, - { - "title": "Southern Streamline - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "I Drove All Night - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Between - Tumbleweeds", - "id": "Karaoke Version" - }, - { - "title": "Hard Rock Cafe - Carole King", - "id": "Karaoke Version" - }, - { - "title": "I Love You More Than You'll Ever Know - Donny Hathaway", - "id": "Karaoke Version" - }, - { - "title": "I Don't Know How to Love Him - Jesus Christ Superstar", - "id": "Karaoke Version" - }, - { - "title": "It's a Real Good Feeling (Discomix) - Peter Kent", - "id": "Karaoke Version" - }, - { - "title": "I Really Want It - A Great Big World", - "id": "Karaoke Version" - }, - { - "title": "I Don't Care If You Love Me Anymore - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Let It Be - Across The Universe (film)", - "id": "Karaoke Version" - }, - { - "title": "Keep Your Hands To Yourself - The Georgia Satellites", - "id": "Karaoke Version" - }, - { - "title": "Toca Toca - Fly Project", - "id": "Karaoke Version" - }, - { - "title": "(You Make Me Feel Like) A Natural Woman - Carole King", - "id": "Karaoke Version" - }, - { - "title": "Billie Jean - The Bates", - "id": "Karaoke Version" - }, - { - "title": "Come Home - OneRepublic", - "id": "Karaoke Version" - }, - { - "title": "Desert Rose - Sting & Cheb Mami", - "id": "Karaoke Version" - }, - { - "title": "Don't Answer Me - The Alan Parsons Project", - "id": "Karaoke Version" - }, - { - "title": "Baton Rouge (live) - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Wasted Years - Iron Maiden", - "id": "Karaoke Version" - }, - { - "title": "Further On Up the Road - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Livin' Thing - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Gimme Hope Jo'anna - Eddy Grant", - "id": "Karaoke Version" - }, - { - "title": "Please, Please, Please Let Me Get What I Want - The Smiths", - "id": "Karaoke Version" - }, - { - "title": "I'll Make Love to You - Boyz II Men", - "id": "Karaoke Version" - }, - { - "title": "Paradise City - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "Cold As Ice - Foreigner", - "id": "Karaoke Version" - }, - { - "title": "Hush Hush - Pistol Annies", - "id": "Karaoke Version" - }, - { - "title": "Please Please Me - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Hard Out Here - Lily Allen", - "id": "Karaoke Version" - }, - { - "title": "Astronaut - Simple Plan", - "id": "Karaoke Version" - }, - { - "title": "Got My Mind Set On You - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "Summer Wine - Nancy Sinatra & Lee Hazlewood", - "id": "Karaoke Version" - }, - { - "title": "Tulsa Time - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Story Of My Life - One Direction", - "id": "Karaoke Version" - }, - { - "title": "Leave the Pieces - The Wreckers", - "id": "Karaoke Version" - }, - { - "title": "Saturday Night at the Movies - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Lovin', Touchin', Squeezin' - Journey", - "id": "Karaoke Version" - }, - { - "title": "Come Together - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "I Want You (She's So Heavy) - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Tempted - Squeeze", - "id": "Karaoke Version" - }, - { - "title": "Just Tonight - The Pretty Reckless", - "id": "Karaoke Version" - }, - { - "title": "My Toot Toot - John Fogerty & Rockin' Sidney", - "id": "Karaoke Version" - }, - { - "title": "I Love the Nightlife - Alicia Bridges", - "id": "Karaoke Version" - }, - { - "title": "Space Oddity - David Bowie", - "id": "Karaoke Version" - }, - { - "title": "Lovefool - The Cardigans", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Be (500 Miles) - The Proclaimers", - "id": "Karaoke Version" - }, - { - "title": "Uptight (Everything's Alright) - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Love Is an Open Door - Frozen (2013 film)", - "id": "Karaoke Version" - }, - { - "title": "I Knew the Bride - Dave Edmunds", - "id": "Karaoke Version" - }, - { - "title": "A Little Bit More - Dr. Hook & The Medicine Show", - "id": "Karaoke Version" - }, - { - "title": "Any Way You Want It - Journey", - "id": "Karaoke Version" - }, - { - "title": "If (A Picture Paints a Thousand Words) - Bread", - "id": "Karaoke Version" - }, - { - "title": "These Boots Are Made for Walkin' - Billy Ray Cyrus", - "id": "Karaoke Version" - }, - { - "title": "My Medicine - The Pretty Reckless", - "id": "Karaoke Version" - }, - { - "title": "Signed, Sealed, Delivered I'm Yours - Michael McDonald", - "id": "Karaoke Version" - }, - { - "title": "(Something Inside) So Strong - Labi Siffre", - "id": "Karaoke Version" - }, - { - "title": "Un-Break My Heart - Toni Braxton", - "id": "Karaoke Version" - }, - { - "title": "I Cross My Heart - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Lately - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "The Fightin' Side Of Me - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Lay Me Down - Sam Smith", - "id": "Karaoke Version" - }, - { - "title": "There's a Kind of Hush - Herman's Hermits", - "id": "Karaoke Version" - }, - { - "title": "Back to Black - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Like a Virgin - Glee", - "id": "Karaoke Version" - }, - { - "title": "Reach Out (I'll Be There) - The Four Tops", - "id": "Karaoke Version" - }, - { - "title": "Hey Laura - Gregory Porter", - "id": "Karaoke Version" - }, - { - "title": "The Man - Aloe Blacc", - "id": "Karaoke Version" - }, - { - "title": "Can't Buy Me Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Nemo - Nightwish", - "id": "Karaoke Version" - }, - { - "title": "Karaoke When You're In Love With A Beautiful Woman - Dr. Hook & The Medicine Show *", - "id": "U0MuIqFmdnI" - }, - { - "title": "Hooked On a Feeling - Blue Swede", - "id": "Karaoke Version" - }, - { - "title": "Daydream Believer - The Monkees", - "id": "Karaoke Version" - }, - { - "title": "I've Got The Music In Me - Kiki Dee", - "id": "Karaoke Version" - }, - { - "title": "Breakaway - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Artpop - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Bennie and the Jets - Elton John", - "id": "Karaoke Version" - }, - { - "title": "You Make Loving Fun - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Tainted Love - Gloria Jones", - "id": "Karaoke Version" - }, - { - "title": "Rave On - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Save the Last Dance for Me - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Callin' Baton Rouge - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "Old Time Rock & Roll (Live) - Derek Ryan ATTENTION doublon, donc offline", - "id": "_TIXVfX-DZ8" - }, - { - "title": "More Like Her - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "I Need to Know - Marc Anthony", - "id": "Karaoke Version" - }, - { - "title": "Come Rain or Come Shine - B.B. King & Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Come As You Are - Nirvana", - "id": "Karaoke Version" - }, - { - "title": "Standing on the Corner - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Wild Horses - Natasha Bedingfield", - "id": "Karaoke Version" - }, - { - "title": "Eleanor Rigby - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Poison - Alice Cooper", - "id": "Karaoke Version" - }, - { - "title": "Un-Thinkable (I'm Ready) - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "Money (That's What I Want) - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Blue Skies - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Stagger Lee - Lloyd Price", - "id": "Karaoke Version" - }, - { - "title": "Superwoman (Where Were You When I Needed You) - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Old Time Rock & Roll (live) - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "White Liar - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "The Show - Lenka", - "id": "Karaoke Version" - }, - { - "title": "Pretty Wings - Maxwell", - "id": "Karaoke Version" - }, - { - "title": "Constant Craving - k.d. lang", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stop Loving You - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Drink In My Hand - Eric Church", - "id": "Karaoke Version" - }, - { - "title": "Everybody's Got Somebody But Me - Hunter Hayes & Jason Mraz", - "id": "Karaoke Version" - }, - { - "title": "When Will I Be Loved? - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Leavin' On Your Mind - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Handy Man - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Treat Her Right - The Commitments", - "id": "Karaoke Version" - }, - { - "title": "Tell Him - Barbra Streisand & Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Wrong Song - Nashville", - "id": "Karaoke Version" - }, - { - "title": "Gee Baby, Ain't I Good to You - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Gunslinger - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "Never Gonna Give You Up - Rick Astley", - "id": "Karaoke Version" - }, - { - "title": "Mandy - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "You're My Best Friend - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "Talking to the Moon - Bruno Mars", - "id": "Karaoke Version" - }, - { - "title": "New Sensation - INXS", - "id": "Karaoke Version" - }, - { - "title": "End of the Road - Boyz II Men", - "id": "Karaoke Version" - }, - { - "title": "The Story - Brandi Carlile", - "id": "Karaoke Version" - }, - { - "title": "Crazy Arms - Jerry Lee Lewis", - "id": "Karaoke Version" - }, - { - "title": "U + Ur Hand - Pink", - "id": "Karaoke Version" - }, - { - "title": "Mama Tried - Merle Haggard & The Strangers", - "id": "Karaoke Version" - }, - { - "title": "Just Can't Get Enough - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Heart Attack - Demi Lovato", - "id": "Karaoke Version" - }, - { - "title": "Count On Me - Bruno Mars", - "id": "Karaoke Version" - }, - { - "title": "Rollin' In My Sweet Baby's Arms - Buck Owens", - "id": "Karaoke Version" - }, - { - "title": "I Hear You Knockin' - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "Blanket on the Ground - Billie Jo Spears", - "id": "Karaoke Version" - }, - { - "title": "Dream a Little Dream of Me - The Mamas and the Papas", - "id": "Karaoke Version" - }, - { - "title": "Wild World - Maxi Priest", - "id": "Karaoke Version" - }, - { - "title": "Lights - Journey", - "id": "Karaoke Version" - }, - { - "title": "Hold Me, Thrill Me, Kiss Me - Mel Carter", - "id": "Karaoke Version" - }, - { - "title": "Through The Barricades - Spandau Ballet", - "id": "Karaoke Version" - }, - { - "title": "This Ole House - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "Takin' Care of Business - Bachman-Turner Overdrive", - "id": "Karaoke Version" - }, - { - "title": "The Long and Winding Road - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "While Shepherds Watched Their Flocks - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "The Bottle Let Me Down - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Four Women - Nina Simone", - "id": "Karaoke Version" - }, - { - "title": "Gone Country - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Memory - Cats (musical)", - "id": "Karaoke Version" - }, - { - "title": "Oh Lonesome Me - Don Gibson", - "id": "Karaoke Version" - }, - { - "title": "Blackbird - Glee", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Only We Know - Lily Allen", - "id": "Karaoke Version" - }, - { - "title": "Beast of Burden - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Somebody Loves Somebody - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "(Now and Then There's) A Fool Such as I - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Happy Birthday - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Jar of Hearts - Christina Perri", - "id": "Karaoke Version" - }, - { - "title": "I Can Only Imagine - Jeff Carson", - "id": "Karaoke Version" - }, - { - "title": "The Fox - Ylvis", - "id": "Karaoke Version" - }, - { - "title": "Help Yourself (live - From Las Vegas) - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "Kids In America - Kim Wilde", - "id": "Karaoke Version" - }, - { - "title": "Mercy - Duffy", - "id": "Karaoke Version" - }, - { - "title": "Burning Love - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "If I Could Turn Back Time - Cher", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Alexandra Burke (X Factor)", - "id": "Karaoke Version" - }, - { - "title": "Yellow River - Christie", - "id": "Karaoke Version" - }, - { - "title": "Another Saturday Night - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "Lose To Win - Fantasia Barrino", - "id": "Karaoke Version" - }, - { - "title": "Love Is a Many-Splendored Thing - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "I Feel Fine - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Spirit In The Sky - The Kentucky Headhunters", - "id": "Karaoke Version" - }, - { - "title": "Sea of Heartbreak - Jimmy Buffett & George Strait", - "id": "Karaoke Version" - }, - { - "title": "Ticket to Ride - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "A Moment Like This - Leona Lewis (X Factor)", - "id": "Karaoke Version" - }, - { - "title": "Devil Inside - INXS", - "id": "Karaoke Version" - }, - { - "title": "Good Hearted Woman - Johnny Brady", - "id": "Karaoke Version" - }, - { - "title": "Songbird - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Fragile - Sting", - "id": "Karaoke Version" - }, - { - "title": "Take on Me - a-ha", - "id": "Karaoke Version" - }, - { - "title": "Like a Virgin - Madonna", - "id": "Karaoke Version" - }, - { - "title": "All I Want for Christmas Is You - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "To Where You Are - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Never Tear Us Apart - INXS", - "id": "Karaoke Version" - }, - { - "title": "Nowhere Man - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Bad - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Over You - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Still - Lionel Richie", - "id": "Karaoke Version" - }, - { - "title": "Breaking Up Is Hard to Do - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Hey Jude - Wilson Pickett", - "id": "Karaoke Version" - }, - { - "title": "Goldfinger - James Bond (Shirley Bassey)", - "id": "Karaoke Version" - }, - { - "title": "Not Fair - Lily Allen", - "id": "Karaoke Version" - }, - { - "title": "Dream a Little Dream - Robbie Williams & Lily Allen", - "id": "Karaoke Version" - }, - { - "title": "We Wish You a Merry Christmas - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Prince Royce", - "id": "Karaoke Version" - }, - { - "title": "Royals - Lorde", - "id": "Karaoke Version" - }, - { - "title": "At Last - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Somethin' Stupid - Robbie Williams & Nicole Kidman", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Between - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "Vincent - Ronan Keating", - "id": "Karaoke Version" - }, - { - "title": "I Hope You Dance - Lee Ann Womack", - "id": "Karaoke Version" - }, - { - "title": "Somebody Else's Guy - Jocelyn Brown", - "id": "Karaoke Version" - }, - { - "title": "Gunpowder & Lead - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Don't Fall in Love with a Dreamer - Kenny Rogers & Kim Carnes", - "id": "Karaoke Version" - }, - { - "title": "No Angel - Birdy", - "id": "Karaoke Version" - }, - { - "title": "And I Love Her - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Superstar - Jamelia", - "id": "Karaoke Version" - }, - { - "title": "Tenderly - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Please, Help Me, I'm Falling (In Love With You) - Hank Locklin", - "id": "Karaoke Version" - }, - { - "title": "World Without Love - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Boot Scootin' Boogie - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Saturday Night at the Movies - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Pretty Woman - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Oh, Boy! - Buddy Holly", - "id": "Karaoke Version" - }, - { - "title": "I Don't Know How to Love Him - Helen Reddy", - "id": "Karaoke Version" - }, - { - "title": "Separate Ways (Worlds Apart) - Journey", - "id": "Karaoke Version" - }, - { - "title": "Perfect - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night - Paul Carrack", - "id": "Karaoke Version" - }, - { - "title": "Penny Lane - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Leonard Cohen", - "id": "Karaoke Version" - }, - { - "title": "Eight Days a Week - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Bravado - Lorde", - "id": "Karaoke Version" - }, - { - "title": "Please Mr. Postman - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Otis Redding", - "id": "Karaoke Version" - }, - { - "title": "With a Little Help from My Friends - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "I Love This Bar - Toby Keith", - "id": "Karaoke Version" - }, - { - "title": "All by Myself - Glee (Charice)", - "id": "Karaoke Version" - }, - { - "title": "Let's Do It (Let's Fall in Love) - Dee Dee Bridgewater", - "id": "Karaoke Version" - }, - { - "title": "Tennis Court - Lorde", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "All My Ex's Live in Texas - George Strait", - "id": "Karaoke Version" - }, - { - "title": "A Moment Like This - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "American Trilogy (live) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Cheek to Cheek - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "You Gotta Be - Des'ree", - "id": "Karaoke Version" - }, - { - "title": "Far From Home - Five Finger Death Punch", - "id": "Karaoke Version" - }, - { - "title": "Ob-La-Di, Ob-La-Da - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Solid - Ashford & Simpson", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "Eternal Flame - The Bangles", - "id": "Karaoke Version" - }, - { - "title": "Hey Good Lookin' - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Fields of Gold - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Get Back - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - Ben E. King", - "id": "Karaoke Version" - }, - { - "title": "Black Horse And The Cherry Tree - KT Tunstall", - "id": "Karaoke Version" - }, - { - "title": "We Are Family (Radio Edit) - Sister Sledge", - "id": "Karaoke Version" - }, - { - "title": "The Gambler - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Stand by Me - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "True Colors - Cyndi Lauper", - "id": "Karaoke Version" - }, - { - "title": "Come Together - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "When You Walk in the Room - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "On & On - Erykah Badu", - "id": "Karaoke Version" - }, - { - "title": "Be My Guest - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Before You Accuse Me - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "Can't Buy Me Love - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "This Is My Song - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Blue Eyes Crying in the Rain - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "What's New Pussycat? - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "Don't You Worry 'bout a Thing - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "We Found Love - Rihanna & Calvin Harris", - "id": "Karaoke Version" - }, - { - "title": "Blackbird - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "When the Saints Go Marching in - Traditional", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow! Let It Snow! Let It Snow! - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Neon Moon - Brooks & Dunn", - "id": "Karaoke Version" - }, - { - "title": "Radioactive - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Brokenhearted - Karmin", - "id": "Karaoke Version" - }, - { - "title": "Open Arms - Journey", - "id": "Karaoke Version" - }, - { - "title": "Long Black Train - Josh Turner", - "id": "Karaoke Version" - }, - { - "title": "Jambalaya - The BossHoss", - "id": "Karaoke Version" - }, - { - "title": "FU - Miley Cyrus & French Montana", - "id": "Karaoke Version" - }, - { - "title": "Could I Have This Dance - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "Overjoyed - Cรฉline Dion & Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Over the Rainbow (live X Factor UK) - Leona Lewis", - "id": "Karaoke Version" - }, - { - "title": "Love Song - Sara Bareilles", - "id": "Karaoke Version" - }, - { - "title": "Counting Stars - OneRepublic", - "id": "Karaoke Version" - }, - { - "title": "Baby - Justin Bieber & Ludacris", - "id": "Karaoke Version" - }, - { - "title": "Let It Be - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "I Put a Spell on You - Jeff Beck & Joss Stone", - "id": "Karaoke Version" - }, - { - "title": "Never Forget - Take That", - "id": "Karaoke Version" - }, - { - "title": "Can't Stop - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Rip It Up - Little Richard", - "id": "Karaoke Version" - }, - { - "title": "Wake Me Up (acoustic) - Aloe Blacc", - "id": "Karaoke Version" - }, - { - "title": "The Longest Time - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Oh Lonesome Me - The Kentucky Headhunters", - "id": "Karaoke Version" - }, - { - "title": "Iris - Goo Goo Dolls (City of Angels)", - "id": "Karaoke Version" - }, - { - "title": "I Don't Want to Miss a Thing - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "Almost Is Never Enough - Ariana Grande & Nathan Sykes", - "id": "Karaoke Version" - }, - { - "title": "Let Her Go - Boyce Avenue & Hannah Trigwell", - "id": "Karaoke Version" - }, - { - "title": "Let's Face The Music And Dance - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Wake Me Up - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "Loved Me Back To Life - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Jambalaya (On the Bayou) - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "Drive My Car - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Heart by Heart - Demi Lovato", - "id": "Karaoke Version" - }, - { - "title": "Marry Me - Jason Derulo", - "id": "Karaoke Version" - }, - { - "title": "Do Nothing 'till You Hear from Me - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "If I Said You Had A Beautiful Body - The Bellamy Brothers", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Perfect Day - Lou Reed", - "id": "Karaoke Version" - }, - { - "title": "Son of a Preacher Man - Dusty Springfield", - "id": "Karaoke Version" - }, - { - "title": "The Night Time Is the Right Time - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "Love's Gonna Live Here - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "Puttin' On The Ritz - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "At Seventeen - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Let Me Be There - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "If I Only Had a Brain - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Dream a Little Dream - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "When I'm Sixty-Four - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop Believin' (Small Town Girl) - Journey", - "id": "Karaoke Version" - }, - { - "title": "Jailhouse Rock - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Brave - Sara Bareilles", - "id": "Karaoke Version" - }, - { - "title": "Minnie the Moocher - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Wake Me Up! - Avicii & Aloe Blacc", - "id": "Karaoke Version" - }, - { - "title": "I Believe in You - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Cathy's Clown - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "Don't Let Me Down - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Michelle - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "At Last - Dianne Reeves & Lou Rawls", - "id": "Karaoke Version" - }, - { - "title": "How to Save a Life - The Fray", - "id": "Karaoke Version" - }, - { - "title": "I Loved Her First - Heartland", - "id": "Karaoke Version" - }, - { - "title": "Hello Goodbye - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Life On Mars? - David Bowie", - "id": "Karaoke Version" - }, - { - "title": "Blackbird - Sarah McLachlan", - "id": "Karaoke Version" - }, - { - "title": "Three Wooden Crosses - Randy Travis", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "The Cowboy Rides Away - George Strait", - "id": "Karaoke Version" - }, - { - "title": "Yesterday - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Burning Bridges - OneRepublic", - "id": "Karaoke Version" - }, - { - "title": "I Can't Help It - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stop Loving You - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Wasn't That A Party - Mike Denver", - "id": "Karaoke Version" - }, - { - "title": "I Fall To Pieces - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Country Girl (Shake It For Me) - Luke Bryan", - "id": "Karaoke Version" - }, - { - "title": "Come So Far (Got So Far To Go) - Hairspray (2007 film)", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Get You - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "Christmas Shoes - 3 of Hearts", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Celtic Woman", - "id": "Karaoke Version" - }, - { - "title": "Redneck Woman - Gretchen Wilson", - "id": "Karaoke Version" - }, - { - "title": "Oh! Darling - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Love Is A Losing Game (Acoustic) - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Celtic Woman (Wendy Orlan)", - "id": "Karaoke Version" - }, - { - "title": "Suspicious Minds - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Walking in Memphis - Marc Cohn", - "id": "Karaoke Version" - }, - { - "title": "Okie From Muskogee - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "A Hard Day's Night - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Like Jesus Does - Eric Church", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stop Loving You - Derek Ryan", - "id": "Karaoke Version" - }, - { - "title": "Material Girl - Madonna", - "id": "Karaoke Version" - }, - { - "title": "He Stopped Loving Her Today - George Jones", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Yesterday - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "All You Need Is Love - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Play That Funky Music - Wild Cherry", - "id": "Karaoke Version" - }, - { - "title": "Never Stop - The Brand New Heavies", - "id": "Karaoke Version" - }, - { - "title": "Hell On Heels - Pistol Annies", - "id": "Karaoke Version" - }, - { - "title": "The House That Built Me - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Alone - Heart (band)", - "id": "Karaoke Version" - }, - { - "title": "Blue Bayou - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Yellow Submarine - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Walkin' after Midnight (1961) - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Help! - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Angel (In the Arms of an Angel) - Sarah McLachlan", - "id": "Karaoke Version" - }, - { - "title": "Born in the USA - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Domino - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "Hey Jude - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "What Now - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Don't You Worry 'bout a Thing - John Legend", - "id": "Karaoke Version" - }, - { - "title": "Oh, Pretty Woman - Roy Orbison", - "id": "Karaoke Version" - }, - { - "title": "Quiet Fire - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Celebration - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "Tip Of My Tongue - Johnny Diesel", - "id": "Karaoke Version" - }, - { - "title": "If I Ain't Got You - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "Foolin' Around - Vince Gill & Paul Franklin", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Comin' to Town - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow (live) - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Ding Dong Merrily On High - Charlotte Church", - "id": "Karaoke Version" - }, - { - "title": "Fire And Rain - Birdy", - "id": "Karaoke Version" - }, - { - "title": "Jesus to a Child - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Mercy Street - Peter Gabriel", - "id": "Karaoke Version" - }, - { - "title": "Pennies from Heaven - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Timing Is Everything - Country Strong (Garrett Hedlund)", - "id": "Karaoke Version" - }, - { - "title": "Radioactive - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Daylight - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Tell Me on a Sunday - Song & Dance", - "id": "Karaoke Version" - }, - { - "title": "Rainy Night in Georgia - Randy Crawford", - "id": "Karaoke Version" - }, - { - "title": "Sorry Seems to Be the Hardest Word - Leona Lewis", - "id": "Karaoke Version" - }, - { - "title": "We Shall Overcome - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "(I've Got a Gal in) Kalamazoo - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Blurred Lines - Robin Thicke & T.I. & Pharrell Williams", - "id": "Karaoke Version" - }, - { - "title": "So Far Away From L.A. - Nicolas Peyrac", - "id": "Karaoke Version" - }, - { - "title": "You're Nobody Till Somebody Loves You - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Careless Whisper - Tamia", - "id": "Karaoke Version" - }, - { - "title": "Dance to the Music - Sly and the Family Stone", - "id": "Karaoke Version" - }, - { - "title": "Outside - Staind", - "id": "Karaoke Version" - }, - { - "title": "Needles and Pins - Tom Petty & Stevie Nicks", - "id": "Karaoke Version" - }, - { - "title": "You Made Me Love You (I Didn't Want to Do It) - Patsy Cline", - "id": "Karaoke Version" - }, - { - "title": "Take Me to the River (live at Blues Alley) - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Megamix Medley 2 - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "White Rabbit - Jefferson Airplane", - "id": "Karaoke Version" - }, - { - "title": "Leader of the Band - Dan Fogelberg", - "id": "Karaoke Version" - }, - { - "title": "Baby Don't Go - Dwight Yoakam & Sheryl Crow", - "id": "Karaoke Version" - }, - { - "title": "Creeque Alley - The Mamas and the Papas", - "id": "Karaoke Version" - }, - { - "title": "Good Morning, Starshine - Oliver", - "id": "Karaoke Version" - }, - { - "title": "Try It On My Own - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "The Look of Love - Vic Damone", - "id": "Karaoke Version" - }, - { - "title": "Sundown - Gordon Lightfoot", - "id": "Karaoke Version" - }, - { - "title": "Kiss You All Over - Exile", - "id": "Karaoke Version" - }, - { - "title": "Together Again - Emmylou Harris", - "id": "Karaoke Version" - }, - { - "title": "Better Be Home Soon - Crowded House", - "id": "Karaoke Version" - }, - { - "title": "Don't Explain - Billie Holiday", - "id": "Karaoke Version" - }, - { - "title": "You Don't Know Me (duet) - Ray Charles & Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Kill And Run - Sia (The Great Gatsby)", - "id": "Karaoke Version" - }, - { - "title": "Stranger In My House - Ronnie Milsap", - "id": "Karaoke Version" - }, - { - "title": "Samson - Regina Spektor", - "id": "Karaoke Version" - }, - { - "title": "The Look of Love - Sรฉrgio Mendes & Brasil '66", - "id": "Karaoke Version" - }, - { - "title": "Fly Like an Eagle - Steve Miller Band", - "id": "Karaoke Version" - }, - { - "title": "Blues in the Night - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Stars Dance - Selena Gomez", - "id": "Karaoke Version" - }, - { - "title": "Tough Lover - Etta James", - "id": "Karaoke Version" - }, - { - "title": "You've Lost That Lovin' Feelin' - The Righteous Brothers", - "id": "Karaoke Version" - }, - { - "title": "Turning Japanese - The Vapors", - "id": "Karaoke Version" - }, - { - "title": "Caught In The Storm - Smash (Katharine McPhee)", - "id": "Karaoke Version" - }, - { - "title": "It's a Man's Man's Man's World - Glee", - "id": "Karaoke Version" - }, - { - "title": "We Need a Little Christmas (Woman) - 1960s Standards", - "id": "Karaoke Version" - }, - { - "title": "Won't Go Home Without You - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Heroes - David Bowie", - "id": "Karaoke Version" - }, - { - "title": "I've Got To See You Again - Norah Jones", - "id": "Karaoke Version" - }, - { - "title": "Baby, Now That I've Found You - The Foundations", - "id": "Karaoke Version" - }, - { - "title": "Blue Velvet (Short version) - Bobby Vinton", - "id": "Karaoke Version" - }, - { - "title": "A Change Is Gonna Come - Adam Lambert (American Idol)", - "id": "Karaoke Version" - }, - { - "title": "Tears Dry On Their Own - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "My World (Il Mondo) - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Mony Mony - Tommy James and The Shondells", - "id": "Karaoke Version" - }, - { - "title": "O Christmas Tree (O Tannenbaum) - Alvin and the Chipmunks", - "id": "Karaoke Version" - }, - { - "title": "I Melt With You (album version) - Modern English", - "id": "Karaoke Version" - }, - { - "title": "Shout - The Isley Brothers", - "id": "Karaoke Version" - }, - { - "title": "A Song for Mama - Boyz II Men", - "id": "Karaoke Version" - }, - { - "title": "Blue Skies - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Letter to Me - Brad Paisley", - "id": "Karaoke Version" - }, - { - "title": "How Can I Ease The Pain - Lisa Fischer", - "id": "Karaoke Version" - }, - { - "title": "Shower the People - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Home on the Range - 1800s Standards", - "id": "Karaoke Version" - }, - { - "title": "Land of 1000 Dances - Wilson Pickett", - "id": "Karaoke Version" - }, - { - "title": "Harder to Breathe - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Right Here Waiting - Richard Marx", - "id": "Karaoke Version" - }, - { - "title": "Wannabe - Spice Girls", - "id": "Karaoke Version" - }, - { - "title": "Come Softly to Me - The Fleetwoods", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Mountain High Enough - Michael McDonald", - "id": "Karaoke Version" - }, - { - "title": "Big Poppa - The Notorious B.I.G.", - "id": "Karaoke Version" - }, - { - "title": "Amigos Para Siempre - Sarah Brightman & Josรฉ Carreras", - "id": "Karaoke Version" - }, - { - "title": "Love Is a Many Splendored Thing - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Never Too Late - Three Days Grace", - "id": "Karaoke Version" - }, - { - "title": "Maybe - Janis Joplin", - "id": "Karaoke Version" - }, - { - "title": "All This Love - DeBarge", - "id": "Karaoke Version" - }, - { - "title": "Mr. Mistoffelees - Cats (musical)", - "id": "Karaoke Version" - }, - { - "title": "Congratulations - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "What's Going On (live) - Donny Hathaway", - "id": "Karaoke Version" - }, - { - "title": "Finally - CeCe Peniston", - "id": "Karaoke Version" - }, - { - "title": "The NeverEnding Story - Limahl", - "id": "Karaoke Version" - }, - { - "title": "My Immortal - Evanescence", - "id": "Karaoke Version" - }, - { - "title": "Eye of the Tiger - Survivor", - "id": "Karaoke Version" - }, - { - "title": "My Love - Sia (The Twilight Saga)", - "id": "Karaoke Version" - }, - { - "title": "You Don't Know Me - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Up On Cripple Creek - The Band", - "id": "Karaoke Version" - }, - { - "title": "She Caught the Katy - The Blues Brothers", - "id": "Karaoke Version" - }, - { - "title": "45 - Shinedown", - "id": "Karaoke Version" - }, - { - "title": "He's So Fine - The Chiffons", - "id": "Karaoke Version" - }, - { - "title": "Moses Supposes - Singin' in the Rain", - "id": "Karaoke Version" - }, - { - "title": "You Pulled Me Through - Jennifer Hudson", - "id": "Karaoke Version" - }, - { - "title": "Amazing Grace - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Just Call Me Lonesome - Radney Foster", - "id": "Karaoke Version" - }, - { - "title": "This Magic Moment - Jay and The Americans", - "id": "Karaoke Version" - }, - { - "title": "Grandma's Hands - Bill Withers", - "id": "Karaoke Version" - }, - { - "title": "The River - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Break Down Here - Julie Roberts", - "id": "Karaoke Version" - }, - { - "title": "Home Again - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Private Emotion - Ricky Martin & Meja", - "id": "Karaoke Version" - }, - { - "title": "I Can't Give You Anything but Love - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "The Spirit Carries On (Scene Eight) - Dream Theater", - "id": "Karaoke Version" - }, - { - "title": "Everybody's Got to Learn Sometime - The Korgis", - "id": "Karaoke Version" - }, - { - "title": "Rent - Rent", - "id": "Karaoke Version" - }, - { - "title": "Still the One - Orleans", - "id": "Karaoke Version" - }, - { - "title": "Love and War - Tamar Braxton", - "id": "Karaoke Version" - }, - { - "title": "Marchin' On - OneRepublic", - "id": "Karaoke Version" - }, - { - "title": "White Room - Cream", - "id": "Karaoke Version" - }, - { - "title": "Here With Me - Dido", - "id": "Karaoke Version" - }, - { - "title": "It's All Right With Me - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Dancing In The Moonlight - Toploader", - "id": "Karaoke Version" - }, - { - "title": "A Night in Tunisia - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "The Rose - Westlife", - "id": "Karaoke Version" - }, - { - "title": "Don't Worry Baby - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Da Ya Think I'm Sexy? - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Sister Moon - Sting", - "id": "Karaoke Version" - }, - { - "title": "Texas (When I Die) - Tanya Tucker", - "id": "Karaoke Version" - }, - { - "title": "The Woodpecker Song - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "Coming Home - Country Strong (Gwyneth Paltrow)", - "id": "Karaoke Version" - }, - { - "title": "Red Rain - Peter Gabriel", - "id": "Karaoke Version" - }, - { - "title": "Saturday Nite - Earth, Wind & Fire", - "id": "Karaoke Version" - }, - { - "title": "What You Own - Rent (musical) (Anthony Rapp & Adam Pascal)", - "id": "Karaoke Version" - }, - { - "title": "Singing in the Rain - Jamie Cullum", - "id": "Karaoke Version" - }, - { - "title": "Ballroom Blitz - Sweet (band)", - "id": "Karaoke Version" - }, - { - "title": "Mother Earth - Within Temptation", - "id": "Karaoke Version" - }, - { - "title": "Caroline - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "(I Know) I'm Losing You - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Route 66 - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "Help Is On Its Way - Little River Band", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Be Loved by You - Helen Kane (Good Boy)", - "id": "Karaoke Version" - }, - { - "title": "Too Marvelous for Words - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Everybody's Changing - Keane", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Boys Town Gang", - "id": "Karaoke Version" - }, - { - "title": "Oh Marie - Louis Prima", - "id": "Karaoke Version" - }, - { - "title": "Hard To Handle - Otis Redding", - "id": "Karaoke Version" - }, - { - "title": "Happy Birthday, Sweet Sixteen - Neil Sedaka", - "id": "Karaoke Version" - }, - { - "title": "For Once in My Life - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Matchmaker - Fiddler on the Roof", - "id": "Karaoke Version" - }, - { - "title": "Try Sleeping With A Broken Heart - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "Don't Let Me Be Lonely Tonight - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Up to the Mountain - Kelly Clarkson (American Idol)", - "id": "Karaoke Version" - }, - { - "title": "Down at the Twist and Shout - Mary Chapin Carpenter", - "id": "Karaoke Version" - }, - { - "title": "Use Me - Bill Withers", - "id": "Karaoke Version" - }, - { - "title": "Plush - Stone Temple Pilots", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Red House - Jimi Hendrix", - "id": "Karaoke Version" - }, - { - "title": "There's a Kind of Hush - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "God Bless the Child - Blood, Sweat & Tears", - "id": "Karaoke Version" - }, - { - "title": "Power of Love - Huey Lewis & The News", - "id": "Karaoke Version" - }, - { - "title": "The Final Countdown - Europe", - "id": "Karaoke Version" - }, - { - "title": "Will I - Rent (film)", - "id": "Karaoke Version" - }, - { - "title": "(They Long to Be) Close to You - Harry Connick Jr.", - "id": "Karaoke Version" - }, - { - "title": "Speak to the Sky - Rick Springfield", - "id": "Karaoke Version" - }, - { - "title": "Look What You've Done to Me - Boz Scaggs", - "id": "Karaoke Version" - }, - { - "title": "When My Blue Moon Turns To Gold Again - Merle Haggard", - "id": "Karaoke Version" - }, - { - "title": "(Sittin' on) The Dock of the Bay - Michael Bolton", - "id": "Karaoke Version" - }, - { - "title": "The Old Man Down the Road - John Fogerty", - "id": "Karaoke Version" - }, - { - "title": "Where Do You Go to My Lovely - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "The Show Must Go On - Queen", - "id": "Karaoke Version" - }, - { - "title": "Sacrifice - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Don't Know Why - Norah Jones", - "id": "Karaoke Version" - }, - { - "title": "(There's) No Gettin' Over Me - Ronnie Milsap", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Be Where You Are - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Octopus's Garden - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "The Great Pretender - The Platters", - "id": "Karaoke Version" - }, - { - "title": "The Power of Love - Jennifer Rush", - "id": "Karaoke Version" - }, - { - "title": "Hollywood - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Midnight Blues - Gary Moore", - "id": "Karaoke Version" - }, - { - "title": "What a Difference a Day Makes - Esther Phillips", - "id": "Karaoke Version" - }, - { - "title": "Alberta (live Acoustic version) - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Someone Somewhere Tonight - Kellie Pickler", - "id": "Karaoke Version" - }, - { - "title": "Black or White - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "The Thrill Is Gone (with Tracy Chapman) - B.B. King", - "id": "Karaoke Version" - }, - { - "title": "Blue Eyes - Elton John", - "id": "Karaoke Version" - }, - { - "title": "You Make Me Feel So Young - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Runaway Train - Soul Asylum", - "id": "Karaoke Version" - }, - { - "title": "Comes Love - Stacey Kent", - "id": "Karaoke Version" - }, - { - "title": "Caught In The Crowd - Kate Miller-Heidke", - "id": "Karaoke Version" - }, - { - "title": "The Shadow of Your Smile (duet) - Tony Bennett & Juanes", - "id": "Karaoke Version" - }, - { - "title": "Who Did That to You - John Legend", - "id": "Karaoke Version" - }, - { - "title": "Good Time - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Somebody - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Softly and Tenderly - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Good God - Anouk", - "id": "Karaoke Version" - }, - { - "title": "Together Again - Buck Owens", - "id": "Karaoke Version" - }, - { - "title": "Good Lovin' - The Rascals", - "id": "Karaoke Version" - }, - { - "title": "Summer Wine - Ville Valo & Natalia Avelon", - "id": "Karaoke Version" - }, - { - "title": "Greensleeves - Traditional", - "id": "Karaoke Version" - }, - { - "title": "Please Come Home for Christmas - Eagles", - "id": "Karaoke Version" - }, - { - "title": "Don't Let Me Be Misunderstood (Extended Mix) - Santa Esmeralda", - "id": "Karaoke Version" - }, - { - "title": "Corazรณn espinado - Santana", - "id": "Karaoke Version" - }, - { - "title": "Happy Xmas (War Is Over - So This Is Christmas) - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Three Times A Lady - Commodores", - "id": "Karaoke Version" - }, - { - "title": "These Boots Are Made for Walkin' - Nancy Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Dentist! - Little Shop of Horrors (musical)", - "id": "Karaoke Version" - }, - { - "title": "I'll Never Fall In Love Again - Kristin Chenoweth & Sean Hayes", - "id": "Karaoke Version" - }, - { - "title": "I Don't Care Much - Cabaret (Lotte Lenya)", - "id": "Karaoke Version" - }, - { - "title": "I'm Gonna Sit Right Down and Write Myself a Letter - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Like a Rolling Stone - Bob Dylan", - "id": "Karaoke Version" - }, - { - "title": "Fly Like A Bird - Boz Scaggs", - "id": "Karaoke Version" - }, - { - "title": "Many Rivers to Cross - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Everlasting Love - Jamie Cullum", - "id": "Karaoke Version" - }, - { - "title": "Let's Do It (Let's Fall In Love) - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "I Do Love You - GQ", - "id": "Karaoke Version" - }, - { - "title": "China Grove - The Doobie Brothers", - "id": "Karaoke Version" - }, - { - "title": "Drops of Jupiter (acoustic live - Tell Me) - Train", - "id": "Karaoke Version" - }, - { - "title": "Baby I Need Your Loving - The Four Tops", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "1994 - Jason Aldean", - "id": "Karaoke Version" - }, - { - "title": "I Want Crazy - Hunter Hayes", - "id": "Karaoke Version" - }, - { - "title": "Thunder Road - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Working My Way Back to You / Forgive Me Girl - The Spinners", - "id": "Karaoke Version" - }, - { - "title": "When a Woman Loves - R. Kelly", - "id": "Karaoke Version" - }, - { - "title": "Sing a Song - Earth, Wind & Fire", - "id": "Karaoke Version" - }, - { - "title": "Knockin' on Heaven's Door - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Rock Me Baby - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "True Love Ways - Buddy Holly", - "id": "Karaoke Version" - }, - { - "title": "Georgy Girl - The Seekers", - "id": "Karaoke Version" - }, - { - "title": "1976 - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Got My Mind Set On You - George Harrison", - "id": "Karaoke Version" - }, - { - "title": "Ave Maria - Il Divo", - "id": "Karaoke Version" - }, - { - "title": "Long Cool Woman in a Black Dress - The Hollies", - "id": "Karaoke Version" - }, - { - "title": "Boogie Down - Al Jarreau", - "id": "Karaoke Version" - }, - { - "title": "Square Biz - Teena Marie", - "id": "Karaoke Version" - }, - { - "title": "Somewhere - Within Temptation", - "id": "Karaoke Version" - }, - { - "title": "Don't Get Me Wrong - The Pretenders", - "id": "Karaoke Version" - }, - { - "title": "Wonderful Tonight - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Could I Have This Kiss Forever - Enrique Iglesias & Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Come On Get Happy - The Partridge Family (David Cassidy)", - "id": "Karaoke Version" - }, - { - "title": "What Can I Say - Carrie Underwood & Sons of Sylvia", - "id": "Karaoke Version" - }, - { - "title": "Toyland - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "I Can't Give You Anything but Love - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Copacabana - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Sunrise, Sunset - Fiddler on the Roof", - "id": "Karaoke Version" - }, - { - "title": "On The Radio - Regina Spektor", - "id": "Karaoke Version" - }, - { - "title": "Rockabilly Rebel - Matchbox", - "id": "Karaoke Version" - }, - { - "title": "Anyway - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Silver Lining - Kacey Musgraves", - "id": "Karaoke Version" - }, - { - "title": "Long Train Runnin' - Vigon Bamy Jay", - "id": "Karaoke Version" - }, - { - "title": "Brand New Me - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "Applaus, Applaus - Sportfreunde Stiller", - "id": "Karaoke Version" - }, - { - "title": "Where You Lead - Carole King", - "id": "Karaoke Version" - }, - { - "title": "All I Ask of You - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "Miss You - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "This Old Heart Of Mine - The Isley Brothers", - "id": "Karaoke Version" - }, - { - "title": "Ventura Highway - America", - "id": "Karaoke Version" - }, - { - "title": "Out Tonight - Rent (musical) (Daphne Rubin-Vega)", - "id": "Karaoke Version" - }, - { - "title": "Cheek to Cheek - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Simply Irresistible - Robert Palmer", - "id": "Karaoke Version" - }, - { - "title": "So Much in Love - The Tymes", - "id": "Karaoke Version" - }, - { - "title": "La Bamba - Los Lobos", - "id": "Karaoke Version" - }, - { - "title": "Drift Away - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Wasted Days and Wasted Nights - Freddy Fender", - "id": "Karaoke Version" - }, - { - "title": "Glory Days - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Dance the Night Away - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Since I Fell For You - Al Jarreau", - "id": "Karaoke Version" - }, - { - "title": "Tonight's The Night (Gonna Be Alright) - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Close Your Eyes - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Will You Be There - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Lay Down Sally - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "If You Love Me (Let Me Know) - Olivia Newton-John", - "id": "Karaoke Version" - }, - { - "title": "Drivin' My Life Away - Eddie Rabbitt", - "id": "Karaoke Version" - }, - { - "title": "recycle me - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Country Boy - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "I Could Easily Fall (In Love with You) - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Truly Scrumptious - Chitty Chitty Bang Bang (1968 film)", - "id": "Karaoke Version" - }, - { - "title": "Dani California - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Rain Is a Good Thing - Luke Bryan", - "id": "Karaoke Version" - }, - { - "title": "The Way You Look Tonight - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Breakfast in America - Supertramp", - "id": "Karaoke Version" - }, - { - "title": "A Thousand Years - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "When Will I See You Again - The Three Degrees", - "id": "Karaoke Version" - }, - { - "title": "Superstition (live) - Stevie Ray Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Roof Garden - Al Jarreau", - "id": "Karaoke Version" - }, - { - "title": "Sing Sing Sing - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "After Midnight - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "You And I - Eddie Rabbitt & Crystal Gayle", - "id": "Karaoke Version" - }, - { - "title": "Here I Am To Worship - Tim Hughes", - "id": "Karaoke Version" - }, - { - "title": "Swingin' - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "It Never Rains in Southern California - Smokie", - "id": "Karaoke Version" - }, - { - "title": "Flames of Love - Fancy", - "id": "Karaoke Version" - }, - { - "title": "Bend and Snap - Legally Blonde (musical)", - "id": "Karaoke Version" - }, - { - "title": "Sugar Daddy - Hedwig and the Angry Inch", - "id": "Karaoke Version" - }, - { - "title": "Different Drum - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Heartbreak Hotel (Viva Elvis) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I Wish You Love - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "So Lonely - The Police", - "id": "Karaoke Version" - }, - { - "title": "Happy Xmas (War Is Over) - The Plastic Ono Band", - "id": "Karaoke Version" - }, - { - "title": "Let Her Go - Passenger", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Peace Train - Cat Stevens", - "id": "Karaoke Version" - }, - { - "title": "We're All Alone - Boz Scaggs", - "id": "Karaoke Version" - }, - { - "title": "Sign Your Name - Sananda Maitreya", - "id": "Karaoke Version" - }, - { - "title": "It Takes Two - Marvin Gaye & Kim Weston", - "id": "Karaoke Version" - }, - { - "title": "Alone Again (Naturally) - Gilbert O'Sullivan", - "id": "Karaoke Version" - }, - { - "title": "Let's Dance - The Cats", - "id": "Karaoke Version" - }, - { - "title": "Don't It Make My Brown Eyes Blue - Crystal Gayle", - "id": "Karaoke Version" - }, - { - "title": "Autumn Leaves - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Lonesome Loser - Little River Band", - "id": "Karaoke Version" - }, - { - "title": "I Wish You Love - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Things - Dean Martin & Nancy Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Nobody Does It Better - James Bond (Carly Simon)", - "id": "Karaoke Version" - }, - { - "title": "You Are My Destiny (Duet) - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "It Had Better Be Tonight - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "What I'd Say - Vigon Bamy Jay", - "id": "Karaoke Version" - }, - { - "title": "Kissing a Fool - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "After The Dance - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Gloria Gaynor", - "id": "Karaoke Version" - }, - { - "title": "Still Got the Blues (For You) - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Dream a Little Dream of Me - Caro Emerald", - "id": "Karaoke Version" - }, - { - "title": "Evergreen - A Star is Born (1976 film) (Barbra Streisand)", - "id": "Karaoke Version" - }, - { - "title": "Message in a Bottle - The Police", - "id": "Karaoke Version" - }, - { - "title": "De Wandelclub - Sugar Lee Hooper", - "id": "Karaoke Version" - }, - { - "title": "I'll Fly with You (L'Amour Toujours) - Sagi Rei", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off Of You - Lauryn Hill", - "id": "Karaoke Version" - }, - { - "title": "Midnight Train to Georgia - Neil Diamond", - "id": "Karaoke Version" - }, - { - "title": "How Sweet It Is (To Be Loved by You) - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "We've Got Tonight - Kenny Rogers & Sheena Easton", - "id": "Karaoke Version" - }, - { - "title": "Gypsys, Tramps & Thieves - Cher", - "id": "Karaoke Version" - }, - { - "title": "White Flag - Dido", - "id": "Karaoke Version" - }, - { - "title": "Yo no sรฉ maรฑana (salsa) - Luis Enrique", - "id": "Karaoke Version" - }, - { - "title": "Moonlight in Vermont - Sarah Vaughan", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "Hungry Heart - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Being Good Isn't Good Enough - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "Snowbird - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "Can't Take My Eyes Off You - Vigon Bamy Jay", - "id": "Karaoke Version" - }, - { - "title": "Steppin' to the Bad Side (Highlights Version) - Dreamgirls (2006 film)", - "id": "Karaoke Version" - }, - { - "title": "Bye Bye Blackbird - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Why Should I Care - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Beat This Summer - Brad Paisley", - "id": "Karaoke Version" - }, - { - "title": "The Rhythm of the Night (Radio Edit) - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "Rule the World - Take That", - "id": "Karaoke Version" - }, - { - "title": "Out of Love - Toto", - "id": "Karaoke Version" - }, - { - "title": "Don't Worry Be Happy - Hermes House Band", - "id": "Karaoke Version" - }, - { - "title": "O Little Town of Bethlehem (slow version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Unwell - Matchbox Twenty", - "id": "Karaoke Version" - }, - { - "title": "Amanda - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "Call Me the Breeze - Lynyrd Skynyrd", - "id": "Karaoke Version" - }, - { - "title": "You Can Do Magic - America", - "id": "Karaoke Version" - }, - { - "title": "Arthur's Theme (The Best That You Can Do) - Christopher Cross", - "id": "Karaoke Version" - }, - { - "title": "Route 66 - Chuck Berry", - "id": "Karaoke Version" - }, - { - "title": "Take Me Out - Franz Ferdinand", - "id": "Karaoke Version" - }, - { - "title": "Undermine - Nashville (Hayden Panettiere)", - "id": "Karaoke Version" - }, - { - "title": "Fall - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "All the Small Things - Blink-182", - "id": "Karaoke Version" - }, - { - "title": "Bad Day - Daniel Powter", - "id": "Karaoke Version" - }, - { - "title": "He'll Have to Go (Put Your Sweet Lips a Little Closer) - Jim Reeves", - "id": "Karaoke Version" - }, - { - "title": "Lost - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Downtown - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Too Close (Unplugged) - Alex Clare", - "id": "Karaoke Version" - }, - { - "title": "Reminiscing - Little River Band", - "id": "Karaoke Version" - }, - { - "title": "Cause I Love You - Lenny Williams", - "id": "Karaoke Version" - }, - { - "title": "Delta Dawn - Nathan Carter", - "id": "Karaoke Version" - }, - { - "title": "Tarzan Boy - Baltimora", - "id": "Karaoke Version" - }, - { - "title": "Modern World - Anouk", - "id": "Karaoke Version" - }, - { - "title": "Abracadabra (Single Version) - Steve Miller Band", - "id": "Karaoke Version" - }, - { - "title": "Dirty Diana - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Mambo Italiano - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Sunday Morning - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Shine On, Harvest Moon - Nora Bayes", - "id": "Karaoke Version" - }, - { - "title": "Rockin' All Over the World - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "Sunshine of Your Love - Cream", - "id": "Karaoke Version" - }, - { - "title": "Sophisticated Lady (She's A Different Lady) - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Living in America - James Brown (Rocky IV)", - "id": "Karaoke Version" - }, - { - "title": "Soul Man - Vigon Bamy Jay", - "id": "Karaoke Version" - }, - { - "title": "That's Life - Smash", - "id": "Karaoke Version" - }, - { - "title": "The Show Must Go On - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "Mercy - Glee", - "id": "Karaoke Version" - }, - { - "title": "Can't Hide Love - Earth, Wind & Fire", - "id": "Karaoke Version" - }, - { - "title": "I'm Like a Bird - Nelly Furtado", - "id": "Karaoke Version" - }, - { - "title": "Dakota - Stereophonics", - "id": "Karaoke Version" - }, - { - "title": "The Dark End of the Street - The Commitments", - "id": "Karaoke Version" - }, - { - "title": "Hard to Handle - The Black Crowes", - "id": "Karaoke Version" - }, - { - "title": "You're So Vain - Carly Simon", - "id": "Karaoke Version" - }, - { - "title": "Everlasting Love - Love Affair", - "id": "Karaoke Version" - }, - { - "title": "Don't Play That Song (You Lied) - Adriano Celentano", - "id": "Karaoke Version" - }, - { - "title": "Upside Down - Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "Living Next Door to Alice - Smokie", - "id": "Karaoke Version" - }, - { - "title": "Tainted Love - Soft Cell", - "id": "Karaoke Version" - }, - { - "title": "Thank God For Hometowns - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Whole Lotta Shakin' Goin' On - Jerry Lee Lewis", - "id": "Karaoke Version" - }, - { - "title": "Dream a Little Dream - Glee", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night - John Holt", - "id": "Karaoke Version" - }, - { - "title": "Heaven - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Blue Velvet - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "Something Stupid - Michael Bublรฉ & Reese Witherspoon", - "id": "Karaoke Version" - }, - { - "title": "Sweet Child O' Mine - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "Walking on Sunshine - Katrina and the Waves", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Folsom Prison Blues - Johnny Cash *", - "id": "rw7LVKWEo4o" - }, - { - "title": "My Girl - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "I'm All Over It - Jamie Cullum", - "id": "Karaoke Version" - }, - { - "title": "Poor Boy Blues - Chet Atkins & Mark Knopfler", - "id": "Karaoke Version" - }, - { - "title": "It's a Real Good Feeling - David Hasselhoff", - "id": "Karaoke Version" - }, - { - "title": "Poker Face (Acoustic version) - Pixie Lott", - "id": "Karaoke Version" - }, - { - "title": "Valerie (live) - Bruno Mars", - "id": "Karaoke Version" - }, - { - "title": "Goodbye Stranger - Supertramp", - "id": "Karaoke Version" - }, - { - "title": "Sixteen Candles - The Crests", - "id": "Karaoke Version" - }, - { - "title": "You Belong to Me - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "99 Red Balloons - Nena", - "id": "Karaoke Version" - }, - { - "title": "Mambo Italiano - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Stay (live) - Jackson Browne", - "id": "Karaoke Version" - }, - { - "title": "Jesus Is Love - Commodores", - "id": "Karaoke Version" - }, - { - "title": "Dreadlock Holiday - 10cc", - "id": "Karaoke Version" - }, - { - "title": "Mambo Italiano (Hey Mambo) - Rosemary Clooney", - "id": "Karaoke Version" - }, - { - "title": "Give It to Me Baby - Rick James", - "id": "Karaoke Version" - }, - { - "title": "Blister in the Sun - The Violent Femmes", - "id": "Karaoke Version" - }, - { - "title": "Give a Little Bit - Supertramp", - "id": "Karaoke Version" - }, - { - "title": "Snow (Hey Oh) - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "The Road to Hell - Chris Rea", - "id": "Karaoke Version" - }, - { - "title": "Just Hold Me - Maria Mena", - "id": "Karaoke Version" - }, - { - "title": "Memory - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "Rehab - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Deep in the Heart of Texas - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Soul - Jesse McCartney", - "id": "Karaoke Version" - }, - { - "title": "Lullaby of Broadway - Jazz Standards", - "id": "Karaoke Version" - }, - { - "title": "Tequila - The Champs", - "id": "Karaoke Version" - }, - { - "title": "Cryin' - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "Pak maar m'n hand - Nick & Simon", - "id": "Karaoke Version" - }, - { - "title": "For All We Know - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "I'm Coming Out - Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "I Swear - All-4-One", - "id": "Karaoke Version" - }, - { - "title": "The Boys Are Back In Town - Thin Lizzy", - "id": "Karaoke Version" - }, - { - "title": "Paradise by the Dashboard Light - Meat Loaf & Ellen Foley", - "id": "Karaoke Version" - }, - { - "title": "Sell Out - Reel Big Fish", - "id": "Karaoke Version" - }, - { - "title": "Summer of '69 (live) - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "One of Us - Glee", - "id": "Karaoke Version" - }, - { - "title": "Sissy's Song - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Get Down Tonight - KC & The Sunshine Band", - "id": "Karaoke Version" - }, - { - "title": "When The Right One Comes Along - Nashville", - "id": "Karaoke Version" - }, - { - "title": "I Say a Little Prayer - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Nevertheless - Michael Bublรฉ & The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "California Dreamin' - The Mamas and the Papas", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow - Sam Harris", - "id": "Karaoke Version" - }, - { - "title": "Young at Heart - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "(Sittin' on) The Dock of the Bay - Otis Redding", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Dance with Somebody (Who Loves Me) - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "I'd Do Anything for Love - Meat Loaf & Lorraine Crosby", - "id": "Karaoke Version" - }, - { - "title": "Just Give Me a Reason - Pink & Nate Ruess", - "id": "Karaoke Version" - }, - { - "title": "Sail On - Commodores", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop Me Now - Queen", - "id": "Karaoke Version" - }, - { - "title": "Have I Told You Lately That I Love You - Michael Bublรฉ & Naturally 7", - "id": "Karaoke Version" - }, - { - "title": "(Ghost) Riders in the Sky - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "I Got You (I Feel Good) - James Brown", - "id": "Karaoke Version" - }, - { - "title": "All of Me - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Ain't Misbehavin' - Ain't Misbehavin'", - "id": "Karaoke Version" - }, - { - "title": "Billie Jean - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Wooly Bully - Sam The Sham & The Pharaohs", - "id": "Karaoke Version" - }, - { - "title": "The Lady Is a Tramp - Shirley Bassey", - "id": "Karaoke Version" - }, - { - "title": "Only Teardrops - Emmelie De Forest", - "id": "Karaoke Version" - }, - { - "title": "Your Song - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Smile - Pussycat", - "id": "Karaoke Version" - }, - { - "title": "That's What Friends Are for - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "You're My Everything (Radio Edit) - Santa Esmeralda", - "id": "Karaoke Version" - }, - { - "title": "All by Myself - Eric Carmen", - "id": "Karaoke Version" - }, - { - "title": "Some Boys - Smash", - "id": "Karaoke Version" - }, - { - "title": "This Love - The Baseballs", - "id": "Karaoke Version" - }, - { - "title": "Young at Heart - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Keep Your Head Up - Ben Howard", - "id": "Karaoke Version" - }, - { - "title": "Blame It on the Bossa Nova - Eydie Gormรฉ", - "id": "Karaoke Version" - }, - { - "title": "Miss Chatelaine - k.d. lang", - "id": "Karaoke Version" - }, - { - "title": "You Can't Change That - Ray Parker Jr.", - "id": "Karaoke Version" - }, - { - "title": "You Make Me Feel So Young - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Reggae Night - Jimmy Cliff", - "id": "Karaoke Version" - }, - { - "title": "Flip, Flop and Fly - Big Joe Turner", - "id": "Karaoke Version" - }, - { - "title": "Who's Lovin' You - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Bad Company - Bad Company", - "id": "Karaoke Version" - }, - { - "title": "I Can See Clearly Now - Lee Towers", - "id": "Karaoke Version" - }, - { - "title": "Crying in the Chapel - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Ghost Riders in the Sky - The Blues Brothers", - "id": "Karaoke Version" - }, - { - "title": "Little Wing - Jimi Hendrix", - "id": "Karaoke Version" - }, - { - "title": "Missing You (duet) - John Waite & Alison Krauss", - "id": "Karaoke Version" - }, - { - "title": "Friends Will Be Friends - Queen", - "id": "Karaoke Version" - }, - { - "title": "Bad Boys - Inner Circle", - "id": "Karaoke Version" - }, - { - "title": "The Last Rose of Summer - Celtic Woman", - "id": "Karaoke Version" - }, - { - "title": "Some Unholy War - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Earth Angel (Will You Be Mine) - The Penguins", - "id": "Karaoke Version" - }, - { - "title": "Seven Bridges Road - Eagles", - "id": "Karaoke Version" - }, - { - "title": "Free - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "I Miss The Misery - Halestorm", - "id": "Karaoke Version" - }, - { - "title": "Best Of Me - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Diavolo in me - Zucchero", - "id": "Karaoke Version" - }, - { - "title": "Don't Worry, Be Happy (a capella) - Bobby McFerrin", - "id": "Karaoke Version" - }, - { - "title": "One Word - Anouk", - "id": "Karaoke Version" - }, - { - "title": "Let Me Love You (Until You Learn To Love Yourself) - Glee", - "id": "Karaoke Version" - }, - { - "title": "Ride Like the Wind - Christopher Cross", - "id": "Karaoke Version" - }, - { - "title": "Summer of '69 - DJ ร–tzi", - "id": "Karaoke Version" - }, - { - "title": "Fastlove (unplugged) - George Michael", - "id": "Karaoke Version" - }, - { - "title": "We're Not Gonna Take It - Twisted Sister", - "id": "Karaoke Version" - }, - { - "title": "Scarlet Ribbons (For Her Hair) - The Browns", - "id": "Karaoke Version" - }, - { - "title": "You Are My Sunshine - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Blame It On Me - Chrisette Michele", - "id": "Karaoke Version" - }, - { - "title": "I Believe - Nikki Yanofsky", - "id": "Karaoke Version" - }, - { - "title": "A Fool in Love - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Happy Days Are Here Again (duet) - Barbra Streisand & Judy Garland", - "id": "Karaoke Version" - }, - { - "title": "I Love A Rainy Night - Eddie Rabbitt", - "id": "Karaoke Version" - }, - { - "title": "Stand - Rascal Flatts", - "id": "Karaoke Version" - }, - { - "title": "Tea for Two - Doris Day", - "id": "Karaoke Version" - }, - { - "title": "Moving On Up - M People", - "id": "Karaoke Version" - }, - { - "title": "Afterlife - Avenged Sevenfold", - "id": "Karaoke Version" - }, - { - "title": "In Your Eyes (live) - Peter Gabriel", - "id": "Karaoke Version" - }, - { - "title": "Americano - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "Do You Love Me (Now That I Can Dance) - The Blues Brothers", - "id": "Karaoke Version" - }, - { - "title": "Mad About You - Hooverphonic", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Seeing You - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Highway Star - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "Dreams - The Cranberries", - "id": "Karaoke Version" - }, - { - "title": "Lightning Crashes - Live", - "id": "Karaoke Version" - }, - { - "title": "Slow Hand - The Pointer Sisters", - "id": "Karaoke Version" - }, - { - "title": "I'll Take You There - The Staple Singers", - "id": "Karaoke Version" - }, - { - "title": "Four Seasons In One Day - Crowded House", - "id": "Karaoke Version" - }, - { - "title": "Con Los Aรฑos Que Me Quedan - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "Somos Novios - Luis Miguel", - "id": "Karaoke Version" - }, - { - "title": "I Could Have Danced All Night - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "In the Still of the Night - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Torn (live) - The Baseballs", - "id": "Karaoke Version" - }, - { - "title": "Drops Of Jupiter - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Twist and Shout - The Isley Brothers", - "id": "Karaoke Version" - }, - { - "title": "Delta Dawn - Tanya Tucker", - "id": "Karaoke Version" - }, - { - "title": "Panis angelicus - Andrea Bocelli (Cรฉsar Franck)", - "id": "Karaoke Version" - }, - { - "title": "Senza fine - Ornella Vanoni", - "id": "Karaoke Version" - }, - { - "title": "Is You Is or Is You Ain't My Baby - Louis Jordan", - "id": "Karaoke Version" - }, - { - "title": "Ai se eu te pego - Nossa", - "id": "Karaoke Version" - }, - { - "title": "I'll See You in My Dreams - Joe Brown", - "id": "Karaoke Version" - }, - { - "title": "Rock This Town - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "Little Green Bag - George Baker Selection", - "id": "Karaoke Version" - }, - { - "title": "Piรน che puoi - Eros Ramazzotti & Cher", - "id": "Karaoke Version" - }, - { - "title": "Oye cรณmo va (Album Version) - Santana", - "id": "Karaoke Version" - }, - { - "title": "Bara Barรก Bere Berรช - Leo Rodriguez", - "id": "Karaoke Version" - }, - { - "title": "Me and My Shadow - Sammy Davis Jr. & Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Candy - Paolo Nutini", - "id": "Karaoke Version" - }, - { - "title": "On Top of the World - Imagine Dragons", - "id": "Karaoke Version" - }, - { - "title": "Soldier - Gavin DeGraw", - "id": "Karaoke Version" - }, - { - "title": "C'est Si Bon - Eartha Kitt", - "id": "Karaoke Version" - }, - { - "title": "Eres tรบ - Mocedades", - "id": "Karaoke Version" - }, - { - "title": "A House Is Not A Home - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "Through Glass - Stone Sour", - "id": "Karaoke Version" - }, - { - "title": "Brand New Key - Melanie Safka", - "id": "Karaoke Version" - }, - { - "title": "Blessed Assurance - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "On Broadway - Smash", - "id": "Karaoke Version" - }, - { - "title": "Colgando en tus manos (duo) - Carlos Baute & Marta Sรกnchez", - "id": "Karaoke Version" - }, - { - "title": "Lucille - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "I Think I Love You - The Partridge Family", - "id": "Karaoke Version" - }, - { - "title": "Celia's Oye Como Va - Celia Cruz", - "id": "Karaoke Version" - }, - { - "title": "Kansas City - Wilbert Harrison", - "id": "Karaoke Version" - }, - { - "title": "If I Should Fall Behind - Paul Carrack", - "id": "Karaoke Version" - }, - { - "title": "Do I Do - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Distratto - Francesca Michielin", - "id": "Karaoke Version" - }, - { - "title": "I Will Always Love You - Roch Voisine", - "id": "Karaoke Version" - }, - { - "title": "Woman - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "Corazรณn partรญo - Alejandro Sanz", - "id": "Karaoke Version" - }, - { - "title": "Somos Novios - Andrea Bocelli", - "id": "Karaoke Version" - }, - { - "title": "Lush Life - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Bring It on Home to Me - The Animals", - "id": "Karaoke Version" - }, - { - "title": "Meraviglioso - Negramaro", - "id": "Karaoke Version" - }, - { - "title": "Sorry Seems to Be the Hardest Word - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "MMMBop - Hanson", - "id": "Karaoke Version" - }, - { - "title": "Straighten Up and Fly Right - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Everytime You Go Away - Paul Young", - "id": "Karaoke Version" - }, - { - "title": "You've Got a Friend - Stacey Kent", - "id": "Karaoke Version" - }, - { - "title": "Roxanne - Sofia Essaรฏdi", - "id": "Karaoke Version" - }, - { - "title": "Love Letters in the Sand - Pat Boone", - "id": "Karaoke Version" - }, - { - "title": "Try a Little Tenderness - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "My Kinda Party - Jason Aldean", - "id": "Karaoke Version" - }, - { - "title": "Beyond The Sea (La mer) - George Benson", - "id": "Karaoke Version" - }, - { - "title": "September - Daughtry", - "id": "Karaoke Version" - }, - { - "title": "I'll Be There for You - Boyce Avenue (Friends Theme)", - "id": "Karaoke Version" - }, - { - "title": "A Thousand Years, Pt. 2 - Christina Perri", - "id": "Karaoke Version" - }, - { - "title": "Monkey Man - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "From Me to You - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Be Alright - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Freak the Freak Out - Victorious (Victoria Justice)", - "id": "Karaoke Version" - }, - { - "title": "Sunday Mornin' Comin' Down - Kris Kristofferson", - "id": "Karaoke Version" - }, - { - "title": "Give It Up - KC & The Sunshine Band", - "id": "Karaoke Version" - }, - { - "title": "Stop, Look, Listen (To Your Heart) - Marvin Gaye & Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "Every Time We Say Goodbye - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "La Vie Bohรจme - Rent (musical)", - "id": "Karaoke Version" - }, - { - "title": "Without You - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "On the Beach - Chris Rea", - "id": "Karaoke Version" - }, - { - "title": "I'm Not in Love - 10cc", - "id": "Karaoke Version" - }, - { - "title": "Imagine - John Lennon", - "id": "Karaoke Version" - }, - { - "title": "Amy Amy Amy - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Last Night A DJ Saved My Life - Milk Inc.", - "id": "Karaoke Version" - }, - { - "title": "La vie en rose - Tony Bennett & k.d. lang", - "id": "Karaoke Version" - }, - { - "title": "Dancing On My Own - Smash & Megan Hilty", - "id": "Karaoke Version" - }, - { - "title": "Ave Maria - Celtic Woman", - "id": "Karaoke Version" - }, - { - "title": "People Get Ready - Jeff Beck", - "id": "Karaoke Version" - }, - { - "title": "One Song Glory - Rent (musical)", - "id": "Karaoke Version" - }, - { - "title": "Mama (English version) - Il Divo", - "id": "Karaoke Version" - }, - { - "title": "This Guy's in Love with You - Herb Alpert", - "id": "Karaoke Version" - }, - { - "title": "I'll Never Find Another You - The Seekers", - "id": "Karaoke Version" - }, - { - "title": "Pretty Good At Drinkin' Beer - Billy Currington", - "id": "Karaoke Version" - }, - { - "title": "Ice Ice Baby - Vanilla Ice", - "id": "Karaoke Version" - }, - { - "title": "In My Life - Judy Collins", - "id": "Karaoke Version" - }, - { - "title": "I Put a Spell on You - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "You'll Never Find Another Love Like Mine - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Someone to Watch Over Me - Renee Olstead & Chris Botti", - "id": "Karaoke Version" - }, - { - "title": "La belle dame sans regrets - Sting", - "id": "Karaoke Version" - }, - { - "title": "Barracuda - Heart (band)", - "id": "Karaoke Version" - }, - { - "title": "We Found Love (Acoustic - live) - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Gettin' You Home (The Black Dress Song) - Chris Young", - "id": "Karaoke Version" - }, - { - "title": "Baby, I Love Your Way - Big Mountain", - "id": "Karaoke Version" - }, - { - "title": "Freedom '90 - George Michael", - "id": "Karaoke Version" - }, - { - "title": "It's Only a Paper Moon - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "I Can't Give You Anything but Love - Judy Garland", - "id": "Karaoke Version" - }, - { - "title": "Part-Time Lover - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Gocce di memoria - Giorgia", - "id": "Karaoke Version" - }, - { - "title": "Papa Don't Preach - Madonna", - "id": "Karaoke Version" - }, - { - "title": "Come On Eileen - Dexys Midnight Runners", - "id": "Karaoke Version" - }, - { - "title": "I Only Have Eyes for You - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Good King Wenceslas - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "O Come All Ye Faithful (alternate version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "I (Who Have Nothing) - Jordin Sparks", - "id": "Karaoke Version" - }, - { - "title": "Somebody to Love - Jefferson Airplane", - "id": "Karaoke Version" - }, - { - "title": "O Come, O Come, Emmanuel - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Stardust - Mika", - "id": "Karaoke Version" - }, - { - "title": "Soon We'll Be Found - Sia", - "id": "Karaoke Version" - }, - { - "title": "Papa, Can You Hear Me? - Glee", - "id": "Karaoke Version" - }, - { - "title": "Goodbye Yellow Brick Road - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Up on the House Top - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Mack the Knife - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "Campanas De Navidad - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Ding Dong Merrily on High - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Here We Go Again - Ray Charles & Norah Jones", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "I'm Walkin' - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "A-Tisket, A-Tasket - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Sweet Soul Music - Arthur Conley", - "id": "Karaoke Version" - }, - { - "title": "Hooked on a Feeling - B. J. Thomas", - "id": "Karaoke Version" - }, - { - "title": "Begin the Beguine - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Bruises - Train & Ashley Monroe", - "id": "Karaoke Version" - }, - { - "title": "Carry Me Back to Old Virginny - Traditional", - "id": "Karaoke Version" - }, - { - "title": "La Colegiala - Rodolfo y su Tipica", - "id": "Karaoke Version" - }, - { - "title": "Only You Can Love Me This Way - Keith Urban", - "id": "Karaoke Version" - }, - { - "title": "Family Portrait - Pink", - "id": "Karaoke Version" - }, - { - "title": "Flip, Flop and Fly - The Blues Brothers", - "id": "Karaoke Version" - }, - { - "title": "On Lexington & 52nd Street - Smash (Michael Swift)", - "id": "Karaoke Version" - }, - { - "title": "You Belong to Me - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Summertime (live) - Janis Joplin", - "id": "Karaoke Version" - }, - { - "title": "Misery - Pink & Steven Tyler", - "id": "Karaoke Version" - }, - { - "title": "The Loco-motion - Kylie Minogue", - "id": "Karaoke Version" - }, - { - "title": "Tiny Dancer - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Linger - The Cranberries", - "id": "Karaoke Version" - }, - { - "title": "Dog & Butterfly - Heart (band)", - "id": "Karaoke Version" - }, - { - "title": "I Would Stay - Krezip", - "id": "Karaoke Version" - }, - { - "title": "Carol of the Bells - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Paper Bag - Fiona Apple", - "id": "Karaoke Version" - }, - { - "title": "Body and Soul - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Moody Blue - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Travelin' Soldier - The Chicks", - "id": "Karaoke Version" - }, - { - "title": "Cielito lindo - Roberto Alagna", - "id": "Karaoke Version" - }, - { - "title": "Be Alright (acoustic) - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Don't Speak - Sarah Menescal", - "id": "Karaoke Version" - }, - { - "title": "Every Little Thing She Does Is Magic - The Police", - "id": "Karaoke Version" - }, - { - "title": "That's Life (live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Get Along - Guy Sebastian", - "id": "Karaoke Version" - }, - { - "title": "Fear the Voices - Alice in Chains", - "id": "Karaoke Version" - }, - { - "title": "Hit Me With Your Best Shot / One Way Or Another - Glee", - "id": "Karaoke Version" - }, - { - "title": "Bรฉsame mucho como si fuera - Roberto Alagna", - "id": "Karaoke Version" - }, - { - "title": "Taking a Chance on Love - Jane Monheit", - "id": "Karaoke Version" - }, - { - "title": "Blame It on the Bossa Nova - Jane McDonald", - "id": "Karaoke Version" - }, - { - "title": "Luck Be a Lady - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Love for Sale - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Sad Songs (Say So Much) - Elton John", - "id": "Karaoke Version" - }, - { - "title": "You Can't Always Get What You Want - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "Quizรกs, quizรกs, quizรกs - Andrea Bocelli & Jennifer Lopez", - "id": "Karaoke Version" - }, - { - "title": "November Rain - Anakelly", - "id": "Karaoke Version" - }, - { - "title": "Raindrops Keep Fallin' On My Head - B. J. Thomas", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Over the Rainbow - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Funhouse - Pink", - "id": "Karaoke Version" - }, - { - "title": "Clean - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "I Love Paris - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Walk On By - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "How Come You're Not Here - Pink", - "id": "Karaoke Version" - }, - { - "title": "My Funny Valentine - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Here Without You - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Crazy for You - Adele", - "id": "Karaoke Version" - }, - { - "title": "We Wish You a Merry Christmas (slow version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "The Joker - Steve Miller Band", - "id": "Karaoke Version" - }, - { - "title": "Little Brown Jug - Traditional", - "id": "Karaoke Version" - }, - { - "title": "Make The World Move - Christina Aguilera & Cee Lo Green", - "id": "Karaoke Version" - }, - { - "title": "Heaven - Boyce Avenue & Megan Nicole", - "id": "Karaoke Version" - }, - { - "title": "Una lacrima sul viso - Bobby Solo", - "id": "Karaoke Version" - }, - { - "title": "Mercy Mercy Me (The Ecology) - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Ten Little Indians - Nursery Rhyme", - "id": "Karaoke Version" - }, - { - "title": "Oh! Susanna - Traditional", - "id": "Karaoke Version" - }, - { - "title": "Megamix Medley 1 - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "Nature Boy - Moulin Rouge! (2001 film)", - "id": "Karaoke Version" - }, - { - "title": "The Young Ones - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Moon Blue - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "I Won't Hold You Back - Toto", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Taking a Chance on Love - Renee Olstead", - "id": "Karaoke Version" - }, - { - "title": "Sweet Hour of Prayer - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "New York State of Mind - Glee", - "id": "Karaoke Version" - }, - { - "title": "Bรฉsame mucho (English) - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Baby Love - Mother's Finest", - "id": "Karaoke Version" - }, - { - "title": "El Paso - Marty Robbins", - "id": "Karaoke Version" - }, - { - "title": "Runaround Sue - Dion & The Belmonts", - "id": "Karaoke Version" - }, - { - "title": "Breaking Up Is Hard to Do - Renee Olstead & Peter Cincotti", - "id": "Karaoke Version" - }, - { - "title": "I Get Around - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Suavecito - Malo (band)", - "id": "Karaoke Version" - }, - { - "title": "Is This Thing On? - Pink", - "id": "Karaoke Version" - }, - { - "title": "Neither One Of Us - Gladys Knight & The Pips", - "id": "Karaoke Version" - }, - { - "title": "Nature Boy - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Back to Black (acoustic) - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "While You're Out Looking For Sugar - Joss Stone", - "id": "Karaoke Version" - }, - { - "title": "If You Don't Know Me By Now - Seal", - "id": "Karaoke Version" - }, - { - "title": "At Last - Jeff Lynne", - "id": "Karaoke Version" - }, - { - "title": "Valerie ('68 version) - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Thank God for the Radio - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "I (Who Have Nothing) - Shirley Bassey", - "id": "Karaoke Version" - }, - { - "title": "Brass in Pocket - The Pretenders", - "id": "Karaoke Version" - }, - { - "title": "Diamonds (Acoustic) - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Do You Really Want to Hurt Me - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "Breaking The Law - Emeli Sandรฉ", - "id": "Karaoke Version" - }, - { - "title": "You Sexy Thing - Hot Chocolate", - "id": "Karaoke Version" - }, - { - "title": "Gimme Some Lovin' - The Spencer Davis Group", - "id": "Karaoke Version" - }, - { - "title": "Angel from Montgomery - Bonnie Raitt", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Out There - An American Tail (Linda Ronstadt & James Ingram)", - "id": "Karaoke Version" - }, - { - "title": "Desafinado (Off Key) - Joรฃo Gilberto", - "id": "Karaoke Version" - }, - { - "title": "Bette Davis Eyes - Karen Souza & Jazzystics", - "id": "Karaoke Version" - }, - { - "title": "People Get Ready - Seal", - "id": "Karaoke Version" - }, - { - "title": "Come Back My Love - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Fun, Fun, Fun - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Money (That's What I Want) - Barrett Strong", - "id": "Karaoke Version" - }, - { - "title": "It's a Great Day for the Irish - Irish Band", - "id": "Karaoke Version" - }, - { - "title": "What a Friend We Have in Jesus - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Hush Hush Remix (I Will Survive) - The Pussycat Dolls", - "id": "Karaoke Version" - }, - { - "title": "Rhythm Is Gonna Get You - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "Devotion - Earth, Wind & Fire", - "id": "Karaoke Version" - }, - { - "title": "I Follow Rivers (The Magician Remix) - Lykke Li", - "id": "Karaoke Version" - }, - { - "title": "Buffalo Soldier - Bob Marley", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - M. Pokora", - "id": "Karaoke Version" - }, - { - "title": "Just the Way You Are - Barry White", - "id": "Karaoke Version" - }, - { - "title": "As Time Goes By - Rod Stewart & Queen Latifah", - "id": "Karaoke Version" - }, - { - "title": "It's a Good Day - Peggy Lee", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night - Kris Kristofferson", - "id": "Karaoke Version" - }, - { - "title": "I Heard It Through the Grapevine - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "If I Knew - Bruno Mars", - "id": "Karaoke Version" - }, - { - "title": "Call Me The Breeze - J. J. Cale", - "id": "Karaoke Version" - }, - { - "title": "Black Is Black - Los Bravos", - "id": "Karaoke Version" - }, - { - "title": "Rhythm Is Love - Keziah Jones", - "id": "Karaoke Version" - }, - { - "title": "A Groovy Kind of Love - Phil Collins", - "id": "Karaoke Version" - }, - { - "title": "We're in This Love Together - Al Jarreau", - "id": "Karaoke Version" - }, - { - "title": "That's All - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Just Like Jesse James - Cher", - "id": "Karaoke Version" - }, - { - "title": "History Is Made At Night - Smash", - "id": "Karaoke Version" - }, - { - "title": "A Love That Will Last - Renee Olstead", - "id": "Karaoke Version" - }, - { - "title": "It's Oh So Quiet - Betty Hutton", - "id": "Karaoke Version" - }, - { - "title": "Me & Bobby McGee - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "Stay - Hurts", - "id": "Karaoke Version" - }, - { - "title": "You Don't Know Me - Mickey Gilley", - "id": "Karaoke Version" - }, - { - "title": "Starman - David Bowie", - "id": "Karaoke Version" - }, - { - "title": "Night and Day - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "'Till There Was You - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Shark In The Water - VV Brown", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River (Live 2010) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Why Don't You Do Right (live) - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "Fire It Up - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Quizรกs, quizรกs, quizรกs - Roberto Alagna", - "id": "Karaoke Version" - }, - { - "title": "I've Got You Under My Skin - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Over The Rainbow / What A Wonderful World - Aselin Debison", - "id": "Karaoke Version" - }, - { - "title": "Rock of Ages - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "I Heard It Through the Grapevine - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "Apologize - Pixie Lott", - "id": "Karaoke Version" - }, - { - "title": "Your Song - Billy Paul", - "id": "Karaoke Version" - }, - { - "title": "Speechless (Acoustic) - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "I Am What I Am - John Barrowman", - "id": "Karaoke Version" - }, - { - "title": "Out On A Limb - Teena Marie", - "id": "Karaoke Version" - }, - { - "title": "In the Still of the Night - The Five Satins", - "id": "Karaoke Version" - }, - { - "title": "I Am Woman - Helen Reddy", - "id": "Karaoke Version" - }, - { - "title": "Outside Looking In - Jordan Pruitt (Read It and Weep)", - "id": "Karaoke Version" - }, - { - "title": "Lullaby of Birdland - 1950s Standards", - "id": "Karaoke Version" - }, - { - "title": "And I Love You So - Perry Como", - "id": "Karaoke Version" - }, - { - "title": "I Can't Stand the Rain (live Wembley) - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Come See About Me - The Supremes", - "id": "Karaoke Version" - }, - { - "title": "Nature Boy - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Ladies Choice - Hairspray (2007 film) (Zac Efron)", - "id": "Karaoke Version" - }, - { - "title": "Cielito lindo - Los Panchos", - "id": "Karaoke Version" - }, - { - "title": "All Out of Love - Air Supply", - "id": "Karaoke Version" - }, - { - "title": "Yesterday - Mary Mary", - "id": "Karaoke Version" - }, - { - "title": "Wouldn't It Be Nice - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Cheek to Cheek - Jane Monheit", - "id": "Karaoke Version" - }, - { - "title": "Escape (The Piรฑa Colada Song) - Rupert Holmes", - "id": "Karaoke Version" - }, - { - "title": "Bad Romance - Caro Emerald", - "id": "Karaoke Version" - }, - { - "title": "Make Your Own Kind of Music - Mama Cass Elliot", - "id": "Karaoke Version" - }, - { - "title": "Over the Hills and Far Away - Nightwish", - "id": "Karaoke Version" - }, - { - "title": "Just When I Needed You Most - Dolly Parton feat. Alison Krauss", - "id": "Karaoke Version" - }, - { - "title": "Personal Jesus - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Love's in Need of Love Today - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Fancy - Reba McEntire", - "id": "Karaoke Version" - }, - { - "title": "The Greatest Love Of All - George Benson", - "id": "Karaoke Version" - }, - { - "title": "Free Your Mind - En Vogue", - "id": "Karaoke Version" - }, - { - "title": "Lay Lady Lay - Bob Dylan", - "id": "Karaoke Version" - }, - { - "title": "One in a Million You - Larry Graham", - "id": "Karaoke Version" - }, - { - "title": "Bad to the Bone - George Thorogood", - "id": "Karaoke Version" - }, - { - "title": "Hรฉroe - Il Divo", - "id": "Karaoke Version" - }, - { - "title": "Straighten Up and Fly Right - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Lovely Day - Bill Withers", - "id": "Karaoke Version" - }, - { - "title": "Wicked Garden - Stone Temple Pilots", - "id": "Karaoke Version" - }, - { - "title": "Blues in the Night - Katie Melua", - "id": "Karaoke Version" - }, - { - "title": "Don't Close Your Eyes - Keith Whitley", - "id": "Karaoke Version" - }, - { - "title": "Turn The Beat Around - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "Girl on Fire (main version) - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "Get Up Offa That Thing - James Brown", - "id": "Karaoke Version" - }, - { - "title": "That Lady - The Isley Brothers", - "id": "Karaoke Version" - }, - { - "title": "Lodi Dodi - Snoop Dogg", - "id": "Karaoke Version" - }, - { - "title": "The Way You Look Tonight - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Nothing - A Chorus Line (musical)", - "id": "Karaoke Version" - }, - { - "title": "Wanna Be Startin' Somethin' - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "So Far Away - Carole King", - "id": "Karaoke Version" - }, - { - "title": "I Recall a Gypsy Woman - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "I Want You To Want Me - Letters To Cleo", - "id": "Karaoke Version" - }, - { - "title": "I Am Changing - Dreamgirls (musical)", - "id": "Karaoke Version" - }, - { - "title": "My Funny Valentine - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "American Pie - Don McLean", - "id": "Karaoke Version" - }, - { - "title": "Sara Smile - Hall & Oates", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Sunshine - Kris Allen (American Idol)", - "id": "Karaoke Version" - }, - { - "title": "Do Right Woman, Do Right Man - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Purple Haze - Jimi Hendrix", - "id": "Karaoke Version" - }, - { - "title": "Well, Did You Evah - Frank Sinatra & Bing Crosby", - "id": "Karaoke Version" - }, - { - "title": "My Signature Move - Pink", - "id": "Karaoke Version" - }, - { - "title": "Lost in Paradise - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Butterfly Kisses - Bob Carlisle", - "id": "Karaoke Version" - }, - { - "title": "Giving Him Something He Can Feel - En Vogue", - "id": "Karaoke Version" - }, - { - "title": "She Believes In Me - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Don't Fence Me In - Bing Crosby & The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "Ramona - Blue Diamonds", - "id": "Karaoke Version" - }, - { - "title": "Russian Roulette (acoustic) - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "My Funny Valentine - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "The Carpet Crawlers - Genesis", - "id": "Karaoke Version" - }, - { - "title": "Me odio (Salsa Remix) - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "When You Walk in the Room - The Searchers", - "id": "Karaoke Version" - }, - { - "title": "Save a Horse (Ride a Cowboy) - Big & Rich", - "id": "Karaoke Version" - }, - { - "title": "Shake Your Groove Thing - Peaches And Herb", - "id": "Karaoke Version" - }, - { - "title": "Rhythm of the Rain - The Cascades", - "id": "Karaoke Version" - }, - { - "title": "I Won't Last A Day Without You - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Carry on Wayward Son - Kansas", - "id": "Karaoke Version" - }, - { - "title": "The Way You Do the Things You Do - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Medley - Middle of the Road", - "id": "Karaoke Version" - }, - { - "title": "Four Strong Winds - Neil Young", - "id": "Karaoke Version" - }, - { - "title": "De Do Do Do, De Da Da Da - The Police", - "id": "Karaoke Version" - }, - { - "title": "Somewhere That's Green - Little Shop of Horrors (film)", - "id": "Karaoke Version" - }, - { - "title": "Giddy On Up - Laura Bell Bundy", - "id": "Karaoke Version" - }, - { - "title": "I Am What I Am - Shirley Bassey", - "id": "Karaoke Version" - }, - { - "title": "Chitty Chitty Bang Bang - Chitty Chitty Bang Bang (1968 film)", - "id": "Karaoke Version" - }, - { - "title": "Splish Splash - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Back For Good - Take That", - "id": "Karaoke Version" - }, - { - "title": "Desafinado - George Michael & Astrud Gilberto", - "id": "Karaoke Version" - }, - { - "title": "Funiculi Funicula - Frรฉdรฉric Franรงois", - "id": "Karaoke Version" - }, - { - "title": "Fire It Up - Johnny Reid", - "id": "Karaoke Version" - }, - { - "title": "Karaoke A Little Bit Country, A Little Bit Rock 'N Roll - Donny Osmond & Marie Osmond *", - "id": "Q4GftjHWudk" - }, - { - "title": "Almost Like Being in Love - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Bastian Baker", - "id": "Karaoke Version" - }, - { - "title": "Light Up The World - Glee", - "id": "Karaoke Version" - }, - { - "title": "Vamos a la playa - Loona (Carisma)", - "id": "Karaoke Version" - }, - { - "title": "Rock This Town - The Stray Cats", - "id": "Karaoke Version" - }, - { - "title": "Keep Your Head Up - Sandra van Nieuwland", - "id": "Karaoke Version" - }, - { - "title": "Run with the Pack - Bad Company", - "id": "Karaoke Version" - }, - { - "title": "Easy - Faith No More", - "id": "Karaoke Version" - }, - { - "title": "Feel Like Makin' Love - Bad Company", - "id": "Karaoke Version" - }, - { - "title": "Let's Dance - Chris Rea", - "id": "Karaoke Version" - }, - { - "title": "(Your Love Keeps Lifting Me) Higher And Higher - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "On The Outside - Oingo Boingo", - "id": "Karaoke Version" - }, - { - "title": "Put a Little Love in Your Heart - Jackie DeShannon", - "id": "Karaoke Version" - }, - { - "title": "You Don't Own Me - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Blue Dress - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "I Never Met a Wolf Who Didn't Love to Howl - Smash", - "id": "Karaoke Version" - }, - { - "title": "It Had to Be You (live) - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Rock and Roll All Nite - Kiss", - "id": "Karaoke Version" - }, - { - "title": "Before the Dawn - Judas Priest", - "id": "Karaoke Version" - }, - { - "title": "Fallen - Volbeat", - "id": "Karaoke Version" - }, - { - "title": "I Don't Want a Lover - Texas", - "id": "Karaoke Version" - }, - { - "title": "Walk Like a Man - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "Rhythm of Love - Plain White T's", - "id": "Karaoke Version" - }, - { - "title": "The Origin of Love - Hedwig and the Angry Inch", - "id": "Karaoke Version" - }, - { - "title": "Overjoyed - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Rainy Days and Mondays - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Man Down (Album Version) - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Dream Baby (How Long Must I Dream) - Roy Orbison", - "id": "Karaoke Version" - }, - { - "title": "This Can't Be Love - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Wig in a Box - Hedwig and the Angry Inch", - "id": "Karaoke Version" - }, - { - "title": "Mr. and Mrs. Smith - Smash", - "id": "Karaoke Version" - }, - { - "title": "Walk Of Shame - Pink", - "id": "Karaoke Version" - }, - { - "title": "Love Bites (So Do I) - Halestorm", - "id": "Karaoke Version" - }, - { - "title": "Stormy Weather (Keeps Rainin' All The Time) - Etta James", - "id": "Karaoke Version" - }, - { - "title": "Queen Medley (part 2 - live) - De Toppers", - "id": "Karaoke Version" - }, - { - "title": "Spice Up Your Life - Spice Girls", - "id": "Karaoke Version" - }, - { - "title": "All by Myself - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Second Hand White Baby Grand - Smash & Megan Hilty", - "id": "Karaoke Version" - }, - { - "title": "True Love - Pink & Lily Rose Cooper", - "id": "Karaoke Version" - }, - { - "title": "Honky Tonk Man - Dwight Yoakam", - "id": "Karaoke Version" - }, - { - "title": "Nessun dorma - Luciano Pavarotti (Turandot)", - "id": "Karaoke Version" - }, - { - "title": "Let It Rain - Amanda Marshall", - "id": "Karaoke Version" - }, - { - "title": "I Feel The Earth Move - Carole King", - "id": "Karaoke Version" - }, - { - "title": "Drunken Angel - Lucinda Williams", - "id": "Karaoke Version" - }, - { - "title": "Up to the Mountain (MLK Song) - Patty Griffin", - "id": "Karaoke Version" - }, - { - "title": "Personal Jesus - Karen Souza & Jazzystics", - "id": "Karaoke Version" - }, - { - "title": "Till There Was You - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Cuando, Cuando - Tito Rodrรญguez", - "id": "Karaoke Version" - }, - { - "title": "Bei Mir Bist Du Schon - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "La Bamba - Ritchie Valens", - "id": "Karaoke Version" - }, - { - "title": "Come vorrei - Ricchi e Poveri", - "id": "Karaoke Version" - }, - { - "title": "Amado Mio - Pink Martini", - "id": "Karaoke Version" - }, - { - "title": "La vida es un carnaval - Celia Cruz", - "id": "Karaoke Version" - }, - { - "title": "Il Mondo - Patrizio Buanne", - "id": "Karaoke Version" - }, - { - "title": "Balada (Tche Tcherere Tche Tche) - Nossa", - "id": "Karaoke Version" - }, - { - "title": "Ai se eu te pego (live) - Michel Telรณ", - "id": "Karaoke Version" - }, - { - "title": "La Bamba - Traditional", - "id": "Karaoke Version" - }, - { - "title": "Solamente una vez - Luis Miguel", - "id": "Karaoke Version" - }, - { - "title": "Bรฉsame mucho - Luis Miguel", - "id": "Karaoke Version" - }, - { - "title": "La paloma - Julio Iglesias", - "id": "Karaoke Version" - }, - { - "title": "Mi Tierra - Gloria Estefan", - "id": "Karaoke Version" - }, - { - "title": "Volare - Bobby Rydell", - "id": "Karaoke Version" - }, - { - "title": "It Had to Be You - 1920s Standards", - "id": "Karaoke Version" - }, - { - "title": "Heartbeats - Josรฉ Gonzรกlez", - "id": "Karaoke Version" - }, - { - "title": "Daydreamer - Adele", - "id": "Karaoke Version" - }, - { - "title": "House of the Rising Sun - Traditional", - "id": "Karaoke Version" - }, - { - "title": "Chanson d'amour - The McGuire Sisters", - "id": "Karaoke Version" - }, - { - "title": "Up on the Roof - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Never Give All The Heart - Smash", - "id": "Karaoke Version" - }, - { - "title": "Make Someone Happy - Perry Como", - "id": "Karaoke Version" - }, - { - "title": "Kissin' in the Back Row of the Movies - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Let's Be Bad - Smash", - "id": "Karaoke Version" - }, - { - "title": "Spinning Wheel - Blood, Sweat & Tears", - "id": "Karaoke Version" - }, - { - "title": "Mercy Mercy - Jeff Lynne", - "id": "Karaoke Version" - }, - { - "title": "Let the Good Times Roll - B.B. King", - "id": "Karaoke Version" - }, - { - "title": "Sleeping Satellite - Tasmin Archer", - "id": "Karaoke Version" - }, - { - "title": "Le Jazz Hot - Victor / Victoria (1982 film) (Julie Andrews)", - "id": "Karaoke Version" - }, - { - "title": "Jimmy Mack - Martha and the Vandellas", - "id": "Karaoke Version" - }, - { - "title": "Free Bird (Single Version) - Lynyrd Skynyrd", - "id": "Karaoke Version" - }, - { - "title": "Why Do Fools Fall In Love - Diana Ross", - "id": "Karaoke Version" - }, - { - "title": "Such a Shame - Talk Talk", - "id": "Karaoke Version" - }, - { - "title": "The Door is Always Open - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "All That Jazz - Liza Minnelli", - "id": "Karaoke Version" - }, - { - "title": "Mister Cellophane - Chicago (the musical) (Joel Grey)", - "id": "Karaoke Version" - }, - { - "title": "East of the Sun (and West of the Moon) - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Are We All We Are - Pink", - "id": "Karaoke Version" - }, - { - "title": "You Send Me - Sam Cooke", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah I Love Him So - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "The Lumberjack Song - Monty Python", - "id": "Karaoke Version" - }, - { - "title": "Let's Get It On - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "The 20th Century Fox Mambo - Smash", - "id": "Karaoke Version" - }, - { - "title": "At This Moment - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "It's the Same Old Song - The Four Tops", - "id": "Karaoke Version" - }, - { - "title": "Complainte de la Butte - Moulin Rouge! (2001 film)", - "id": "Karaoke Version" - }, - { - "title": "Move It - Cliff Richard", - "id": "Karaoke Version" - }, - { - "title": "Spirit in the Sky - Norman Greenbaum", - "id": "Karaoke Version" - }, - { - "title": "In the Midnight Hour - Wilson Pickett", - "id": "Karaoke Version" - }, - { - "title": "Solsbury Hill - Peter Gabriel", - "id": "Karaoke Version" - }, - { - "title": "Liberian Girl - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "(Every Time I Turn Around) Back in Love Again - L.T.D.", - "id": "Karaoke Version" - }, - { - "title": "Girl on Fire (Inferno Version) - Alicia Keys & Nicki Minaj", - "id": "Karaoke Version" - }, - { - "title": "Listen to Your Heart - D.H.T.", - "id": "Karaoke Version" - }, - { - "title": "Under the Moon of Love - Showaddywaddy", - "id": "Karaoke Version" - }, - { - "title": "Diamonds - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Please Mr. Postman - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Heaven Must Be Missing an Angel - Tavares", - "id": "Karaoke Version" - }, - { - "title": "Four Walls of Raiford (Undubbed Demo Version) - Lynyrd Skynyrd", - "id": "Karaoke Version" - }, - { - "title": "Open Your Eyes - Guano Apes", - "id": "Karaoke Version" - }, - { - "title": "In This Song - Charice", - "id": "Karaoke Version" - }, - { - "title": "(Out Here) On My Own - Nikka Costa", - "id": "Karaoke Version" - }, - { - "title": "I Guess That's Why They Call It the Blues - Elton John", - "id": "Karaoke Version" - }, - { - "title": "The Blackboard Of My Heart - Hank Thompson", - "id": "Karaoke Version" - }, - { - "title": "If I Needed You - Emmylou Harris & Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Hymn - Barclay James Harvest", - "id": "Karaoke Version" - }, - { - "title": "How Sweet It Is - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Hymne ร  l'amour - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Everybody Wants to Rule the World - Tears for Fears", - "id": "Karaoke Version" - }, - { - "title": "Let's Face the Music and Dance - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Don't Play That Song (You Lied) - Aretha Franklin & The Dixie Flyers", - "id": "Karaoke Version" - }, - { - "title": "No One Lives Forever - Oingo Boingo", - "id": "Karaoke Version" - }, - { - "title": "Baby I Love Your Way - Peter Frampton", - "id": "Karaoke Version" - }, - { - "title": "Don't Forget Me - Smash & Katharine McPhee", - "id": "Karaoke Version" - }, - { - "title": "Mr. Tambourine Man - The Byrds", - "id": "Karaoke Version" - }, - { - "title": "The Wanderer - Dion DiMucci", - "id": "Karaoke Version" - }, - { - "title": "Sister Golden Hair - America", - "id": "Karaoke Version" - }, - { - "title": "Beer - Reel Big Fish", - "id": "Karaoke Version" - }, - { - "title": "Never Too Much - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "The Show Must Go On - Moulin Rouge! (2001 film)", - "id": "Karaoke Version" - }, - { - "title": "Let's Stick Together - Bryan Ferry", - "id": "Karaoke Version" - }, - { - "title": "Wonder Woman - John Bรคhler", - "id": "Karaoke Version" - }, - { - "title": "Storms Never Last - Waylon Jennings & Jessi Colter", - "id": "Karaoke Version" - }, - { - "title": "Nutbush City (live Wembley) - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "Runaround Sue - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Heartaches By The Number - Martina McBride & Dwight Yoakam", - "id": "Karaoke Version" - }, - { - "title": "Suzanne - Leonard Cohen", - "id": "Karaoke Version" - }, - { - "title": "Me and Bobby McGee - Janis Joplin", - "id": "Karaoke Version" - }, - { - "title": "Never Can Say Goodbye (remastered) - Gloria Gaynor", - "id": "Karaoke Version" - }, - { - "title": "Shakey Ground (live) - Delbert McClinton", - "id": "Karaoke Version" - }, - { - "title": "Driving Home for Christmas - Chris Rea", - "id": "Karaoke Version" - }, - { - "title": "Baby Come Back - The Equals (Eddy Grant)", - "id": "Karaoke Version" - }, - { - "title": "If This World Were Mine - Luther Vandross & Cheryl Lynn", - "id": "Karaoke Version" - }, - { - "title": "Hello Josephine - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "Maybe - Emeli Sandรฉ", - "id": "Karaoke Version" - }, - { - "title": "Drive - Incubus", - "id": "Karaoke Version" - }, - { - "title": "Let Me Be There - Olivia Newton-John", - "id": "Karaoke Version" - }, - { - "title": "I've Got My Love to Keep Me Warm - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Put on a Happy Face - Bye Bye Birdie (1963 film) (Dick Van Dyke)", - "id": "Karaoke Version" - }, - { - "title": "Otherside - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "What Are You Doing New Year's Eve - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Jack & Diane - John Mellencamp", - "id": "Karaoke Version" - }, - { - "title": "I Want To Grow Old With You - Westlife", - "id": "Karaoke Version" - }, - { - "title": "What Do You Want to Make Those Eyes at Me for? - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "Walk Like an Egyptian - The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "I Want It All (Single Version) - Queen", - "id": "Karaoke Version" - }, - { - "title": "Joy to the World - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Crazy Little Thing Called Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Phil Spector", - "id": "Karaoke Version" - }, - { - "title": "Need You Tonight - INXS", - "id": "Karaoke Version" - }, - { - "title": "Let's Stay Together - Tina Turner", - "id": "Karaoke Version" - }, - { - "title": "I'm in the Mood for Love - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Only Time - Enya", - "id": "Karaoke Version" - }, - { - "title": "Spider-Man Theme (Junkie XL Remix) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "I Heard The Bells On Christmas Day - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "Love Won't Let Me Wait - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "To Her Door - Paul Kelly", - "id": "Karaoke Version" - }, - { - "title": "The Tracks of My Tears - The Miracles & Smokey Robinson", - "id": "Karaoke Version" - }, - { - "title": "To Sir, With Love - Lulu", - "id": "Karaoke Version" - }, - { - "title": "Colorblind - Counting Crows", - "id": "Karaoke Version" - }, - { - "title": "Higher Ground - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Crazy Rap (Colt 45) - Afroman", - "id": "Karaoke Version" - }, - { - "title": "Deck the Halls - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "The Greatest Reward - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Why Do Fools Fall in Love - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "Say You, Say Me - Lionel Richie", - "id": "Karaoke Version" - }, - { - "title": "Alejandro - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Collin Raye", - "id": "Karaoke Version" - }, - { - "title": "You Make Me Feel Brand New - The Stylistics", - "id": "Karaoke Version" - }, - { - "title": "Musica - Fly Project", - "id": "Karaoke Version" - }, - { - "title": "Breaking Up Is Hard to Do - Neil Sedaka", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "O Christmas Tree - Jazzy Christmas", - "id": "Karaoke Version" - }, - { - "title": "I Only Want to Be with You - Dusty Springfield", - "id": "Karaoke Version" - }, - { - "title": "Sisters - Rosemary Clooney & Betty Clooney", - "id": "Karaoke Version" - }, - { - "title": "Feelin' Alright - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Smoke Gets in Your Eyes - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "That's It, I Quit, I'm Movin' On - Adele", - "id": "Karaoke Version" - }, - { - "title": "Let's Fall in Love - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Mickey - Toni Basil", - "id": "Karaoke Version" - }, - { - "title": "Rio De Janeiro Blue - Randy Crawford", - "id": "Karaoke Version" - }, - { - "title": "People - Funny Girl (film) (Barbra Streisand)", - "id": "Karaoke Version" - }, - { - "title": "Bring It On Home to Me - Mickey Gilley", - "id": "Karaoke Version" - }, - { - "title": "Narcotic - Liquido", - "id": "Karaoke Version" - }, - { - "title": "Through the Years - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "Some Kind of Wonderful - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Don't Cry - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Comin' - The Tractors", - "id": "Karaoke Version" - }, - { - "title": "Celebrate Me Home - Kenny Loggins", - "id": "Karaoke Version" - }, - { - "title": "Little Drummer Boy - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Johnny Mathis", - "id": "Karaoke Version" - }, - { - "title": "Let Me Entertain You (live at Knebworth) - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Pneumonia And The Boogie Woogie Flu - Johnny Rivers", - "id": "Karaoke Version" - }, - { - "title": "Stray Cat Strut - The Stray Cats", - "id": "Karaoke Version" - }, - { - "title": "April Sun In Cuba - Dragon", - "id": "Karaoke Version" - }, - { - "title": "Oh Happy Day - Non Aktief", - "id": "Karaoke Version" - }, - { - "title": "Shout - Otis Day and the Knights", - "id": "Karaoke Version" - }, - { - "title": "How High the Moon - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Christmas Time's A-Coming - Sammy Kershaw", - "id": "Karaoke Version" - }, - { - "title": "Under Pressure - Queen & David Bowie", - "id": "Karaoke Version" - }, - { - "title": "I'm on Fire - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Spain (I Can Recall) - Al Jarreau", - "id": "Karaoke Version" - }, - { - "title": "I Get Off - Halestorm", - "id": "Karaoke Version" - }, - { - "title": "Young Girl - Gary Puckett & The Union Gap", - "id": "Karaoke Version" - }, - { - "title": "Jellicle Songs for Jellicle Cats - Cats (musical)", - "id": "Karaoke Version" - }, - { - "title": "It Must Have Been Love - Roxette", - "id": "Karaoke Version" - }, - { - "title": "Melt My Heart to Stone - Adele", - "id": "Karaoke Version" - }, - { - "title": "Remember When It Rained - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "What Is Love - Haddaway", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - The Cheetah Girls", - "id": "Karaoke Version" - }, - { - "title": "Lost - Anouk", - "id": "Karaoke Version" - }, - { - "title": "Autumn Leaves - Paula Cole", - "id": "Karaoke Version" - }, - { - "title": "Wind Beneath My Wings - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Stumblin' In - Suzi Quatro & Chris Norman", - "id": "Karaoke Version" - }, - { - "title": "Crazy Little Thing Called Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Zoom - Commodores", - "id": "Karaoke Version" - }, - { - "title": "Unchained Melody - The Righteous Brothers", - "id": "Karaoke Version" - }, - { - "title": "Don't Let Me Be Misunderstood - Santa Esmeralda", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Stoppin' Us Now - McFadden & Whitehead", - "id": "Karaoke Version" - }, - { - "title": "New Shoes - Paolo Nutini", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas Everyone - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "If You Could Read My Mind - Gordon Lightfoot", - "id": "Karaoke Version" - }, - { - "title": "We Three Kings - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Suddenly, Seymour - Little Shop of Horrors (film)", - "id": "Karaoke Version" - }, - { - "title": "Anything You Can Do (I Can Do Better) - Annie Get Your Gun (film)", - "id": "Karaoke Version" - }, - { - "title": "Shake Your Body (Down to the Ground) - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "The First Cut Is The Deepest - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "How Insensitive - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Streets of Philadelphia - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "You'll Never Know - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Sailing - Christopher Cross", - "id": "Karaoke Version" - }, - { - "title": "Can't Get You Out Of My Head - Kylie Minogue", - "id": "Karaoke Version" - }, - { - "title": "Wichita Lineman - Glen Campbell", - "id": "Karaoke Version" - }, - { - "title": "I Want to Be Evil - Eartha Kitt", - "id": "Karaoke Version" - }, - { - "title": "She's in Love with the Rodeo Man - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Dominick the Donkey - Lou Monte", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - Grease (film) (Sha Na Na)", - "id": "Karaoke Version" - }, - { - "title": "Knockin' on Heaven's Door - Randy Crawford", - "id": "Karaoke Version" - }, - { - "title": "From Russia with Love - James Bond (Matt Monro)", - "id": "Karaoke Version" - }, - { - "title": "Goodnite - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Good Times - Chic", - "id": "Karaoke Version" - }, - { - "title": "Deck the Halls - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Christmas In Killarney - Dennis Day", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Don't Dream It's Over - Crowded House", - "id": "Karaoke Version" - }, - { - "title": "Button Up Your Overcoat - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Good Hearted Woman - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Baby Got Back - Sir Mix-a-Lot", - "id": "Karaoke Version" - }, - { - "title": "Please Mr. Postman - The Marvelettes", - "id": "Karaoke Version" - }, - { - "title": "Fat Bottomed Girls - Queen", - "id": "Karaoke Version" - }, - { - "title": "The Lady Is a Tramp - Glee", - "id": "Karaoke Version" - }, - { - "title": "Finale B - Rent (film)", - "id": "Karaoke Version" - }, - { - "title": "Beggin' - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "This Woman's Work - Maxwell", - "id": "Karaoke Version" - }, - { - "title": "Baby I'm a Fool - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Sweet About Me - Gabriella Cilmi", - "id": "Karaoke Version" - }, - { - "title": "The Girl from Ipanema - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Conga - Miami Sound Machine (Gloria Estefan)", - "id": "Karaoke Version" - }, - { - "title": "What's This? - The Nightmare Before Christmas", - "id": "Karaoke Version" - }, - { - "title": "Joy to the World - Three Dog Night", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Around the Christmas Tree - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Santeria - Sublime", - "id": "Karaoke Version" - }, - { - "title": "I Like It - DeBarge", - "id": "Karaoke Version" - }, - { - "title": "Let's Have a Party - Wanda Jackson", - "id": "Karaoke Version" - }, - { - "title": "Blueberry Hill - Fats Domino", - "id": "Karaoke Version" - }, - { - "title": "Left Outside Alone - Anastacia", - "id": "Karaoke Version" - }, - { - "title": "Somebody to Love - Queen", - "id": "Karaoke Version" - }, - { - "title": "She's Like The Wind - Dirty Dancing", - "id": "Karaoke Version" - }, - { - "title": "As Time Goes By - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "New York State of Mind - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "Somebody to Love (live) - George Michael", - "id": "Karaoke Version" - }, - { - "title": "That's All Right (Viva Elvis) - Elvis Presley (Cirque du Soleil)", - "id": "Karaoke Version" - }, - { - "title": "Chariot - Petula Clark", - "id": "Karaoke Version" - }, - { - "title": "Autumn Leaves - 1960s Standards", - "id": "Karaoke Version" - }, - { - "title": "O Come All Ye Faithful - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Jump, Jive, An' Wail - Brian Setzer", - "id": "Karaoke Version" - }, - { - "title": "You to Me Are Everything - The Real Thing", - "id": "Karaoke Version" - }, - { - "title": "Rhythm of the Night - Moulin Rouge! (2001 film)", - "id": "Karaoke Version" - }, - { - "title": "Mambo No. 5 - Lou Bega", - "id": "Karaoke Version" - }, - { - "title": "If You Think You're Lonely Now - Bobby Womack", - "id": "Karaoke Version" - }, - { - "title": "Walk on the Wild Side - Lou Reed", - "id": "Karaoke Version" - }, - { - "title": "Moon Over Bourbon Street (live) - Sting", - "id": "Karaoke Version" - }, - { - "title": "Moonlight Serenade - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Let's Dance - Chris Montez", - "id": "Karaoke Version" - }, - { - "title": "Purple People Eater - Sheb Wooley", - "id": "Karaoke Version" - }, - { - "title": "Tainted Love - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "Devil Went Down to Georgia - The Charlie Daniels Band", - "id": "Karaoke Version" - }, - { - "title": "Eye in the Sky - The Alan Parsons Project", - "id": "Karaoke Version" - }, - { - "title": "Get Up (I Feel Like Being a) Sex Machine - James Brown", - "id": "Karaoke Version" - }, - { - "title": "We're Off to See the Wizard - The Wizard of Oz", - "id": "Karaoke Version" - }, - { - "title": "Oh Holy Night - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "Fire - The Pointer Sisters", - "id": "Karaoke Version" - }, - { - "title": "Drift Away - Uncle Kracker & Dobie Gray", - "id": "Karaoke Version" - }, - { - "title": "Stormy Monday (live) - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Turn the Page - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "Where Did Our Love Go - The Supremes", - "id": "Karaoke Version" - }, - { - "title": "Copperhead Road - Steve Earle", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Dance With Somebody (Who Loves Me) - Glee", - "id": "Karaoke Version" - }, - { - "title": "Beautiful That Way (La Vita E Bella) - Noa", - "id": "Karaoke Version" - }, - { - "title": "Don't Let the Sun Go Down on Me - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Christmas Time Is Here - A Charlie Brown Christmas (Vince Guaraldi)", - "id": "Karaoke Version" - }, - { - "title": "Strangers in the Night - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Merry Christmas, Baby - Christina Aguilera & Dr. John", - "id": "Karaoke Version" - }, - { - "title": "And The Melody Still Lingers On (Night In Tunisia) - Chaka Khan", - "id": "Karaoke Version" - }, - { - "title": "Pizziricco - The Mavericks", - "id": "Karaoke Version" - }, - { - "title": "Thankful - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Your Mama Don't Dance - Loggins and Messina", - "id": "Karaoke Version" - }, - { - "title": "Every Breath You Take - UB40 (50 First Dates)", - "id": "Karaoke Version" - }, - { - "title": "Holding Back the Years - Simply Red", - "id": "Karaoke Version" - }, - { - "title": "Lean on Me - Michael Bolton", - "id": "Karaoke Version" - }, - { - "title": "Sugartime - The McGuire Sisters", - "id": "Karaoke Version" - }, - { - "title": "Lay Down Beside Me - Don Williams", - "id": "Karaoke Version" - }, - { - "title": "Just My Imagination (Running Away with Me) - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Hard Hearted Hannah - Stacey Kent", - "id": "Karaoke Version" - }, - { - "title": "Let Me Be Your Star - Smash", - "id": "Karaoke Version" - }, - { - "title": "Personal Jesus - Depeche Mode", - "id": "Karaoke Version" - }, - { - "title": "Don't Leave Me This Way - Thelma Houston", - "id": "Karaoke Version" - }, - { - "title": "Billie Jean - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "You Light Up My Life - Debby Boone", - "id": "Karaoke Version" - }, - { - "title": "It Had to Be You - Betty Hutton (Incendiary Blonde)", - "id": "Karaoke Version" - }, - { - "title": "You're a Mean One, Mr. Grinch - Thurl Ravenscroft", - "id": "Karaoke Version" - }, - { - "title": "It's Not Unusual - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "My Baby Just Cares for Me - Nina Simone", - "id": "Karaoke Version" - }, - { - "title": "Crazy for You (Demo Version) - Adele", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "Shake Up Christmas - Train", - "id": "Karaoke Version" - }, - { - "title": "I Get a Kick Out of You - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "I Want a Little Sugar in My Bowl - Nina Simone", - "id": "Karaoke Version" - }, - { - "title": "Joy to the World (A Christmas Prayer) - Nick Jonas", - "id": "Karaoke Version" - }, - { - "title": "I Can't Make You Love Me - Bonnie Raitt", - "id": "Karaoke Version" - }, - { - "title": "All I Want For Christmas Is My Two Front Teeth - Spike Jones", - "id": "Karaoke Version" - }, - { - "title": "Lucretia Mac Evil - Blood, Sweat & Tears", - "id": "Karaoke Version" - }, - { - "title": "Heartbreak Hotel - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Big Bang Theory Theme (The History of Everything) - Barenaked Ladies", - "id": "Karaoke Version" - }, - { - "title": "Welcome to the Jungle - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "Maniac - Flashdance (Michael Sembello)", - "id": "Karaoke Version" - }, - { - "title": "Jessie - Joshua Kadison", - "id": "Karaoke Version" - }, - { - "title": "Hungry Like The Wolf - Duran Duran", - "id": "Karaoke Version" - }, - { - "title": "The Addams Family - Andrew Gold", - "id": "Karaoke Version" - }, - { - "title": "What Child Is This - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Nature Boy - Ella Fitzgerald & Joe Pass", - "id": "Karaoke Version" - }, - { - "title": "Cold December Night - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Kick It Out - Heart (band)", - "id": "Karaoke Version" - }, - { - "title": "Burn For You - John Farnham", - "id": "Karaoke Version" - }, - { - "title": "Ruby, Don't Take Your Love To Town - Kenny Rogers", - "id": "Karaoke Version" - }, - { - "title": "God Bless the Child - Billie Holiday", - "id": "Karaoke Version" - }, - { - "title": "Bohemian Rhapsody - Glee", - "id": "Karaoke Version" - }, - { - "title": "Sk8er Boi - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "Because the Night - Patti Smith", - "id": "Karaoke Version" - }, - { - "title": "The Way You Make Me Feel - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "9 to 5 - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "That'll Be the Day - Linda Ronstadt", - "id": "Karaoke Version" - }, - { - "title": "Uninvited - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "Poker Face (acoustic - live) - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland / Let It Snow! - Bette Midler & Johnny Mathis", - "id": "Karaoke Version" - }, - { - "title": "Sex Type Thing - Stone Temple Pilots", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "Frosty the Snowman - Jazz Standards", - "id": "Karaoke Version" - }, - { - "title": "Take Me to Heaven - Sister Act", - "id": "Karaoke Version" - }, - { - "title": "You're Sixteen, You're Beautiful and You're Mine - Ringo Starr", - "id": "Karaoke Version" - }, - { - "title": "Love's Holiday - Earth, Wind & Fire", - "id": "Karaoke Version" - }, - { - "title": "Lola - The Kinks", - "id": "Karaoke Version" - }, - { - "title": "Against All Odds (Take a Look at Me Now) - Phil Collins", - "id": "Karaoke Version" - }, - { - "title": "Start Me Up - The Rolling Stones", - "id": "Karaoke Version" - }, - { - "title": "You Are My Sunshine - Norman Blake", - "id": "Karaoke Version" - }, - { - "title": "Cat's in the Cradle - Harry Chapin", - "id": "Karaoke Version" - }, - { - "title": "Heaven Is a Place on Earth - Belinda Carlisle", - "id": "Karaoke Version" - }, - { - "title": "One Way Wind - The Cats", - "id": "Karaoke Version" - }, - { - "title": "Don't You Worry About a Thing - Incognito", - "id": "Karaoke Version" - }, - { - "title": "Karaoke Betty Lou's Got A New Pair Of Shoes - John Cafferty & The Beaver Brown Band *", - "id": "ry9mL-0dbdw" - }, - { - "title": "That's All Right - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "I Put a Spell on You - Creedence Clearwater Revival", - "id": "Karaoke Version" - }, - { - "title": "Nature Boy - George Benson", - "id": "Karaoke Version" - }, - { - "title": "Oogie Boogie's Song - The Nightmare Before Christmas", - "id": "Karaoke Version" - }, - { - "title": "The Wonder of You (live 1970) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Ring My Bell - Anita Ward", - "id": "Karaoke Version" - }, - { - "title": "I'm Sorry - Brenda Lee", - "id": "Karaoke Version" - }, - { - "title": "Makin' Whoopee - 1920s Standards", - "id": "Karaoke Version" - }, - { - "title": "He's Got the Whole World in His Hands - Laurie London", - "id": "Karaoke Version" - }, - { - "title": "Let's Get Loud - Jennifer Lopez", - "id": "Karaoke Version" - }, - { - "title": "Sally's Song - The Nightmare Before Christmas", - "id": "Karaoke Version" - }, - { - "title": "Wuthering Heights - Kate Bush", - "id": "Karaoke Version" - }, - { - "title": "Boogie Woogie Bugle Boy - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Help Me Make It Through The Night - Waylon Jennings", - "id": "Karaoke Version" - }, - { - "title": "For All We Know - Donny Hathaway", - "id": "Karaoke Version" - }, - { - "title": "Some Kind of Wonderful - Joss Stone", - "id": "Karaoke Version" - }, - { - "title": "Theme Tune - Family Guy", - "id": "Karaoke Version" - }, - { - "title": "Spending My Time - Roxette", - "id": "Karaoke Version" - }, - { - "title": "I Will Follow Him - Little Peggy March", - "id": "Karaoke Version" - }, - { - "title": "Nobody's Wife - Anouk", - "id": "Karaoke Version" - }, - { - "title": "It Don't Mean A Thing (If It Ain't Got That Swing) - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "A Song for You - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "A Horse With No Name - America", - "id": "Karaoke Version" - }, - { - "title": "She's The One - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "I Don't Know - Noa", - "id": "Karaoke Version" - }, - { - "title": "Drunken Sailor - The Irish Rovers", - "id": "Karaoke Version" - }, - { - "title": "Alexander's Ragtime Band - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "The Merry Old Land of Oz - The Wizard of Oz (Judy Garland)", - "id": "Karaoke Version" - }, - { - "title": "Ding Dong the Witch Is Dead - The Wizard of Oz", - "id": "Karaoke Version" - }, - { - "title": "Tutti Frutti - Little Richard", - "id": "Karaoke Version" - }, - { - "title": "Don't Let the Sun Go Down On Me (duet) - Elton John & George Michael", - "id": "Karaoke Version" - }, - { - "title": "Pay Me My Money Down - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "And I Am Telling You I'm Not Going - Glee", - "id": "Karaoke Version" - }, - { - "title": "Danny Boy - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Teach Me How To Be Loved - Rebecca Ferguson", - "id": "Karaoke Version" - }, - { - "title": "Sunday Morning Coming Down - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "Rock Me Baby - B.B. King", - "id": "Karaoke Version" - }, - { - "title": "Good Vibrations - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "When a Man Loves a Woman - Michael Bolton", - "id": "Karaoke Version" - }, - { - "title": "What's Going On - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Can't Smile Without You - Barry Manilow", - "id": "Karaoke Version" - }, - { - "title": "Bennie And The Jets - Haley Reinhart", - "id": "Karaoke Version" - }, - { - "title": "Uncertain Smile - The The", - "id": "Karaoke Version" - }, - { - "title": "Wherever You Will Go - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Boys In Town - The Divinyls", - "id": "Karaoke Version" - }, - { - "title": "Against the Wind - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "La Vie En Rose (english version) - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "Garden Grove - Sublime", - "id": "Karaoke Version" - }, - { - "title": "Kiss and Tell - Bryan Ferry", - "id": "Karaoke Version" - }, - { - "title": "Simple Man - Lynyrd Skynyrd", - "id": "Karaoke Version" - }, - { - "title": "Don't Cry for Me Argentina - Evita (musical) (Julie Covington)", - "id": "Karaoke Version" - }, - { - "title": "Good Morning - Singin' in the Rain (1952 film)", - "id": "Karaoke Version" - }, - { - "title": "Advice for the Young at Heart - Tears for Fears", - "id": "Karaoke Version" - }, - { - "title": "Autumn Leaves - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "I'm With You - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "Honey Don't - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Wonderful World - Sam Cooke", - "id": "Karaoke Version" - }, - { - "title": "I'm Not So Tough - Ilse DeLange", - "id": "Karaoke Version" - }, - { - "title": "A Nightingale Sang in Berkeley Square - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Amazing Grace - Chimรจne Badi", - "id": "Karaoke Version" - }, - { - "title": "(Love Is Like a) Heat Wave - Martha and the Vandellas", - "id": "Karaoke Version" - }, - { - "title": "Chattanooga Choo Choo - Glenn Miller", - "id": "Karaoke Version" - }, - { - "title": "I Will Follow You Into The Dark - Death Cab For Cutie", - "id": "Karaoke Version" - }, - { - "title": "A Song for You - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Beautiful Surprise - India Arie", - "id": "Karaoke Version" - }, - { - "title": "Jump in the Line (Shake, Seรฑora) - Harry Belafonte", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah I Love Her So - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Loving Her Was Easier - Kris Kristofferson", - "id": "Karaoke Version" - }, - { - "title": "Funkytown - Lipps, Inc.", - "id": "Karaoke Version" - }, - { - "title": "Prologue (Little Shop Of Horrors) - Little Shop of Horrors (film)", - "id": "Karaoke Version" - }, - { - "title": "Wake Up Little Susie - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "Dark Paradise - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "Ghostbusters - Ray Parker Jr.", - "id": "Karaoke Version" - }, - { - "title": "Is You Is or Is You Ain't My Baby - Renee Olstead", - "id": "Karaoke Version" - }, - { - "title": "When a Blind Man Cries - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "Where Were You (When the World Stopped Turning) - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Barbara Ann - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "If I Ain't Got You (live) - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Father and Son - Cat Stevens", - "id": "Karaoke Version" - }, - { - "title": "We Belong - Pat Benatar", - "id": "Karaoke Version" - }, - { - "title": "Lipstick on Your Collar - Connie Francis", - "id": "Karaoke Version" - }, - { - "title": "Happy Feelin's - Maze", - "id": "Karaoke Version" - }, - { - "title": "Don't Cry for Me Argentina - Sarah Brightman (Evita musical)", - "id": "Karaoke Version" - }, - { - "title": "How Long - Eagles", - "id": "Karaoke Version" - }, - { - "title": "Green Door - Shakin' Stevens", - "id": "Karaoke Version" - }, - { - "title": "The Wild Rover - The Dubliners", - "id": "Karaoke Version" - }, - { - "title": "Wake Up Everybody - Harold Melvin & the Blue Notes", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Can't Get Enough of Your Love, Babe - Barry White", - "id": "Karaoke Version" - }, - { - "title": "Three Times a Lady - Lionel Richie", - "id": "Karaoke Version" - }, - { - "title": "Sir Duke - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Kiss And Say Goodbye (Short version) - The Manhattans", - "id": "Karaoke Version" - }, - { - "title": "Patience - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "If You Don't Know Me By Now - Harold Melvin & the Blue Notes", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - 1930s Standards", - "id": "Karaoke Version" - }, - { - "title": "Tempted - Marty Stuart", - "id": "Karaoke Version" - }, - { - "title": "Fantasy - Earth, Wind & Fire", - "id": "Karaoke Version" - }, - { - "title": "Home (Finale) - The Wiz (musical) (Stephanie Mills)", - "id": "Karaoke Version" - }, - { - "title": "Change the World - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "Note to God - Charice", - "id": "Karaoke Version" - }, - { - "title": "Mama Loo - Les Humphries Singers", - "id": "Karaoke Version" - }, - { - "title": "To Be With You - Mr. Big", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Around - The Spinners", - "id": "Karaoke Version" - }, - { - "title": "Karaoke You'll Never Find Another Love Like Mine - Michael Bublรฉ feat. Sheree Ford-Payne *", - "id": "6CnouQfirQs" - }, - { - "title": "Moonlight Shadow - Mike Oldfield & Maggie Reilly", - "id": "Karaoke Version" - }, - { - "title": "Bring It on Home to Me - Sam Cooke & Lou Rawls", - "id": "Karaoke Version" - }, - { - "title": "What the World Needs Now Is Love - Jackie DeShannon", - "id": "Karaoke Version" - }, - { - "title": "Hello! - The Book of Mormon", - "id": "Karaoke Version" - }, - { - "title": "Enjoy Yourself - Jools Holland & Prince Buster", - "id": "Karaoke Version" - }, - { - "title": "What a Difference a Day Made - Jamie Cullum", - "id": "Karaoke Version" - }, - { - "title": "Bring Me Some Water - Melissa Etheridge", - "id": "Karaoke Version" - }, - { - "title": "The Birth of the Blues - Sammy Davis Jr.", - "id": "Karaoke Version" - }, - { - "title": "It's Too Late - Carole King", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Seeing You - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "December, 1963 (Oh, What a Night) - Frankie Valli & The Four Seasons", - "id": "Karaoke Version" - }, - { - "title": "Before You Accuse Me (Take a Look at Yourself) - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "At Seventeen - Janis Ian", - "id": "Karaoke Version" - }, - { - "title": "Dancing in the Dark - Bruce Springsteen", - "id": "Karaoke Version" - }, - { - "title": "Here I Go Again - Rock of Ages (musical)", - "id": "Karaoke Version" - }, - { - "title": "Nature Boy - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Get Ready - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "This Ole Boy - Joe Nichols", - "id": "Karaoke Version" - }, - { - "title": "Take Good Care of My Baby - Dick Brave & The Backbeats", - "id": "Karaoke Version" - }, - { - "title": "Glass - Thompson Square", - "id": "Karaoke Version" - }, - { - "title": "Love Ballad - L.T.D.", - "id": "Karaoke Version" - }, - { - "title": "Diana - Paul Anka", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - The Overtones", - "id": "Karaoke Version" - }, - { - "title": "I Am What I Am - La Cage aux folles (musical) (George Hearn)", - "id": "Karaoke Version" - }, - { - "title": "Secret Love - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Teenager in Love - Dick Brave & The Backbeats", - "id": "Karaoke Version" - }, - { - "title": "Save the Last Dance for Me - Dolly Parton & The Jordanaires", - "id": "Karaoke Version" - }, - { - "title": "Me and Bobby McGee - Charley Pride", - "id": "Karaoke Version" - }, - { - "title": "The Shadow of Your Smile - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "San Francisco (Be Sure to Wear Flowers in Your Hair) - Scott McKenzie", - "id": "Karaoke Version" - }, - { - "title": "Night and Day - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "A Kind of Magic - Queen (Highlander)", - "id": "Karaoke Version" - }, - { - "title": "All of Me - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Margaritaville - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Every Now and Then - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Dance Me to the End of Love - Madeleine Peyroux", - "id": "Karaoke Version" - }, - { - "title": "Sad - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Ain't Nobody - Chaka Khan", - "id": "Karaoke Version" - }, - { - "title": "If the Stars Were Mine - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Nothing Rhymed - Gilbert O'Sullivan", - "id": "Karaoke Version" - }, - { - "title": "I Put a Spell on You - Hocus Pocus (film) (Bette Midler)", - "id": "Karaoke Version" - }, - { - "title": "R U Kiddin' Me - Anouk", - "id": "Karaoke Version" - }, - { - "title": "Scar - Missy Higgins", - "id": "Karaoke Version" - }, - { - "title": "Shake It Out - Smash (Katharine McPhee)", - "id": "Karaoke Version" - }, - { - "title": "Cupid - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Where the Boys Are - Connie Francis", - "id": "Karaoke Version" - }, - { - "title": "Master Blaster (Jammin') - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Another Op'nin', Another Show - Smash", - "id": "Karaoke Version" - }, - { - "title": "How Great Thou Art - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Song for You (live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Delilah (live - From Las Vegas) - Tom Jones", - "id": "Karaoke Version" - }, - { - "title": "Wanted - Hunter Hayes", - "id": "Karaoke Version" - }, - { - "title": "On the Road Again - Willie Nelson", - "id": "Karaoke Version" - }, - { - "title": "Me And Mrs. Jones (live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "My Sharona - The Knack", - "id": "Karaoke Version" - }, - { - "title": "Every Breath You Take - Karen Souza", - "id": "Karaoke Version" - }, - { - "title": "The Lady Is a Tramp - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "The Greatest Medley Ever Told - Sister Act", - "id": "Karaoke Version" - }, - { - "title": "Almost Like Being in Love - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Poison & Wine - The Civil Wars", - "id": "Karaoke Version" - }, - { - "title": "Stormy Monday (live) - The Allman Brothers Band", - "id": "Karaoke Version" - }, - { - "title": "True - Spandau Ballet", - "id": "Karaoke Version" - }, - { - "title": "A Spoonful of Sugar - Mary Poppins (film) (Julie Andrews)", - "id": "Karaoke Version" - }, - { - "title": "Knock on Wood - Eddie Floyd", - "id": "Karaoke Version" - }, - { - "title": "Perfect Day - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Love Shack (Album Version) - The B-52's", - "id": "Karaoke Version" - }, - { - "title": "The Logical Song - Supertramp", - "id": "Karaoke Version" - }, - { - "title": "Like A Hobo - Charlie Winston", - "id": "Karaoke Version" - }, - { - "title": "Boogie Shoes - KC & The Sunshine Band", - "id": "Karaoke Version" - }, - { - "title": "You'll Never Find Another Love Like Mine - Lou Rawls", - "id": "Karaoke Version" - }, - { - "title": "Blame It on Your Heart - Patty Loveless", - "id": "Karaoke Version" - }, - { - "title": "Mr. Blue Sky - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Old And Wise - The Alan Parsons Project", - "id": "Karaoke Version" - }, - { - "title": "Vincent - Don McLean", - "id": "Karaoke Version" - }, - { - "title": "They Don't Care About Us - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "'Round Midnight - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "All The Man That I Need - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Love Me Like a Man - Bonnie Raitt", - "id": "Karaoke Version" - }, - { - "title": "Baby I Love You - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "The First Cut Is the Deepest - Sheryl Crow", - "id": "Karaoke Version" - }, - { - "title": "Mr. Jones - Counting Crows", - "id": "Karaoke Version" - }, - { - "title": "Beyond the Sea - Robbie Williams", - "id": "Karaoke Version" - }, - { - "title": "Minnie the Moocher - The Blues Brothers", - "id": "Karaoke Version" - }, - { - "title": "Only Girl (In the World) - Boyce Avenue & Alex Goot", - "id": "Karaoke Version" - }, - { - "title": "Plush (acoustic) - Stone Temple Pilots", - "id": "Karaoke Version" - }, - { - "title": "Yes Sir, That's My Baby - 1920s Standards", - "id": "Karaoke Version" - }, - { - "title": "Lord I Lift Your Name on High - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "I'll Be - Edwin McCain", - "id": "Karaoke Version" - }, - { - "title": "Fire and Rain - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Knockin' on Heaven's Door - Avril Lavigne", - "id": "Karaoke Version" - }, - { - "title": "Shake It Out - Glee", - "id": "Karaoke Version" - }, - { - "title": "Wanted You More - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Love The Way You Lie (Part II) - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "King of the Road - Roger Miller", - "id": "Karaoke Version" - }, - { - "title": "Everyday Now - Texas", - "id": "Karaoke Version" - }, - { - "title": "For the Love of You - The Isley Brothers", - "id": "Karaoke Version" - }, - { - "title": "I Was Made For Lovin' You - Maria Mena", - "id": "Karaoke Version" - }, - { - "title": "Let's Stay Together - Seal", - "id": "Karaoke Version" - }, - { - "title": "King of the Road - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "My Immortal (acoustic) - Evanescence", - "id": "Karaoke Version" - }, - { - "title": "I'm On My Way - The Proclaimers", - "id": "Karaoke Version" - }, - { - "title": "The Way You Make Me Feel - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Be-Bop-A-Lula - Gene Vincent", - "id": "Karaoke Version" - }, - { - "title": "Too Much Love Will Kill You - Queen", - "id": "Karaoke Version" - }, - { - "title": "When a Man Loves a Woman - Percy Sledge", - "id": "Karaoke Version" - }, - { - "title": "Shoo Shoo Baby - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Mountain High Enough - Marvin Gaye & Tammi Terrell", - "id": "Karaoke Version" - }, - { - "title": "Go Your Own Way - Glee", - "id": "Karaoke Version" - }, - { - "title": "Oh Marie - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Summertime Sadness - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "Great Balls of Fire - Jerry Lee Lewis", - "id": "Karaoke Version" - }, - { - "title": "Nikita - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Suds in the Bucket - Sara Evans", - "id": "Karaoke Version" - }, - { - "title": "Got Me Wrong - Alice in Chains", - "id": "Karaoke Version" - }, - { - "title": "I Like to Move It - Reel 2 Real", - "id": "Karaoke Version" - }, - { - "title": "Kryptonite - 3 Doors Down", - "id": "Karaoke Version" - }, - { - "title": "Love of My Life - Queen", - "id": "Karaoke Version" - }, - { - "title": "Somebody Like You (radio edit) - Keith Urban", - "id": "Karaoke Version" - }, - { - "title": "To Sir, With Love - Glee", - "id": "Karaoke Version" - }, - { - "title": "Endless Love - Diana Ross & Lionel Richie", - "id": "Karaoke Version" - }, - { - "title": "Running Bear - Johnny Preston", - "id": "Karaoke Version" - }, - { - "title": "Something to Talk About - Bonnie Raitt", - "id": "Karaoke Version" - }, - { - "title": "How Great Thou Art - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "For Once in My Life - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "I Say a Little Prayer - Glee", - "id": "Karaoke Version" - }, - { - "title": "Bette Davis Eyes - Kim Carnes", - "id": "Karaoke Version" - }, - { - "title": "You Needed Me - Anne Murray", - "id": "Karaoke Version" - }, - { - "title": "Save the Last Dance for Me (StarCity Remix) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Boondocks - Little Big Town", - "id": "Karaoke Version" - }, - { - "title": "I Could Get Used to This Lovin' Thing - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Your Man - Josh Turner", - "id": "Karaoke Version" - }, - { - "title": "Beds Are Burning - Midnight Oil", - "id": "Karaoke Version" - }, - { - "title": "I Only Have Eyes for You - The Flamingos", - "id": "Karaoke Version" - }, - { - "title": "We Built This City - Starship", - "id": "Karaoke Version" - }, - { - "title": "Still - Jupiter Jones", - "id": "Karaoke Version" - }, - { - "title": "Sloop John B - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Heartbreaker - Pat Benatar", - "id": "Karaoke Version" - }, - { - "title": "Blue Suede Shoes (Viva Elvis) - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Too Darn Hot - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Rock 'n' Roll Is King - Electric Light Orchestra", - "id": "Karaoke Version" - }, - { - "title": "Just Say Hello - Renรฉ Froger", - "id": "Karaoke Version" - }, - { - "title": "Ain't Too Proud to Beg - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Let's Do It (Let's Fall In Love) - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "One Way Ticket - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Fresh - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "Wine After Whiskey - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "I Wish You Love - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Brick House - Commodores", - "id": "Karaoke Version" - }, - { - "title": "Just in Time - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Snuff - Slipknot", - "id": "Karaoke Version" - }, - { - "title": "Let It Be Me - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "I Can Only Imagine - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "He Touched Me - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Bye Bye Blackbird - 1920s Standards", - "id": "Karaoke Version" - }, - { - "title": "Dance With Somebody - Mando Diao", - "id": "Karaoke Version" - }, - { - "title": "The Dance - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "Take Me or Leave Me - Rent (musical) (Idina Menzel & Fredi Walker)", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Til I Hear You Sing - Love Never Dies (musical)", - "id": "Karaoke Version" - }, - { - "title": "I Don't Want to Be - Gavin DeGraw (One Tree Hill)", - "id": "Karaoke Version" - }, - { - "title": "Heaven (Candlelight Mix) - DJ Sammy", - "id": "Karaoke Version" - }, - { - "title": "Lady Soul - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "On the Street Where You Live - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Blue Skies - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Mack the Knife (live) - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "We've Only Just Begun - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Dance with My Father - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "How Do I Live - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "La Vie En Rose - Louis Armstrong", - "id": "Karaoke Version" - }, - { - "title": "You've Got a Friend - Carole King", - "id": "Karaoke Version" - }, - { - "title": "Heartaches By The Number - Dwight Yoakam", - "id": "Karaoke Version" - }, - { - "title": "Spanish Eyes - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Love Train - The O'Jays", - "id": "Karaoke Version" - }, - { - "title": "Papa Was a Rolling Stone - The Temptations", - "id": "Karaoke Version" - }, - { - "title": "Remember When - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "As - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Friends in Low Places - Garth Brooks", - "id": "Karaoke Version" - }, - { - "title": "Are You Gonna Go My Way - Lenny Kravitz", - "id": "Karaoke Version" - }, - { - "title": "(Shake, Shake, Shake) Shake Your Booty - KC & The Sunshine Band", - "id": "Karaoke Version" - }, - { - "title": "Addicted to Love - Robert Palmer", - "id": "Karaoke Version" - }, - { - "title": "When You Walk in the Room - Paul Carrack", - "id": "Karaoke Version" - }, - { - "title": "It's Five O'Clock Somewhere - Alan Jackson & Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "All in Love Is Fair - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Bully - Shinedown", - "id": "Karaoke Version" - }, - { - "title": "Caress Me Down - Sublime", - "id": "Karaoke Version" - }, - { - "title": "Radio Ga Ga - Queen", - "id": "Karaoke Version" - }, - { - "title": "Daniel - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Who Wants to Live Forever - Queen", - "id": "Karaoke Version" - }, - { - "title": "Lean on Me - Kirk Franklin & Bono & Mary J. Blige", - "id": "Karaoke Version" - }, - { - "title": "Rhinestone Cowboy - Glen Campbell", - "id": "Karaoke Version" - }, - { - "title": "Have a Little Faith in Me - John Hiatt", - "id": "Karaoke Version" - }, - { - "title": "When You Got A Good Thing - Lady A", - "id": "Karaoke Version" - }, - { - "title": "November Rain - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "Alegria - Cirque du Soleil", - "id": "Karaoke Version" - }, - { - "title": "Somebody That I Used to Know - Glee", - "id": "Karaoke Version" - }, - { - "title": "Straighten Up And Fly Right - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Jessie's Girl - Rick Springfield", - "id": "Karaoke Version" - }, - { - "title": "We Found Love (BBC Radio 1's Live Lounge) - Jessie J", - "id": "Karaoke Version" - }, - { - "title": "The Last Waltz - Engelbert Humperdinck", - "id": "Karaoke Version" - }, - { - "title": "Quizรกs, quizรกs, quizรกs - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "You've Got a Friend - Roberta Flack & Donny Hathaway", - "id": "Karaoke Version" - }, - { - "title": "I'm Still Standing - Elton John", - "id": "Karaoke Version" - }, - { - "title": "I Was Made For Lovin' You - Kiss", - "id": "Karaoke Version" - }, - { - "title": "Whatever You Want - Status Quo", - "id": "Karaoke Version" - }, - { - "title": "Pretty Maids All in a Row - Eagles", - "id": "Karaoke Version" - }, - { - "title": "The Boy from Ipanema - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Oh, Happy Day - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Sentimental Journey - Doris Day", - "id": "Karaoke Version" - }, - { - "title": "I Never Loved a Man (The Way I Loved You) - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Hello Mary Lou - Ricky Nelson", - "id": "Karaoke Version" - }, - { - "title": "At Last (Album Version) - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Here I Go Again (Radio Edit) - Whitesnake", - "id": "Karaoke Version" - }, - { - "title": "All Star - Smash Mouth", - "id": "Karaoke Version" - }, - { - "title": "You Oughta Know - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "California Girls - The Beach Boys", - "id": "Karaoke Version" - }, - { - "title": "Bitch - Meredith Brooks", - "id": "Karaoke Version" - }, - { - "title": "Love The Way You Lie (piano version) - Rihanna", - "id": "Karaoke Version" - }, - { - "title": "Cool Change - Little River Band", - "id": "Karaoke Version" - }, - { - "title": "Ave Maria - Noa", - "id": "Karaoke Version" - }, - { - "title": "Ball of Confusion - Love and Rockets", - "id": "Karaoke Version" - }, - { - "title": "As Long As You're There - Charice (Glee)", - "id": "Karaoke Version" - }, - { - "title": "Hangover - Taio Cruz & Flo Rida", - "id": "Karaoke Version" - }, - { - "title": "Knock on Wood - Amii Stewart", - "id": "Karaoke Version" - }, - { - "title": "Wild Thing - X", - "id": "Karaoke Version" - }, - { - "title": "Boogie Woogie Bugle Boy (of Company B) - The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "Guy What Takes His Time - Christina Aguilera (Burlesque)", - "id": "Karaoke Version" - }, - { - "title": "Country Down To My Soul - Lee Roy Parnell", - "id": "Karaoke Version" - }, - { - "title": "20/20 - George Benson", - "id": "Karaoke Version" - }, - { - "title": "Californication - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "That's the Way (I Like It) - KC & The Sunshine Band", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Lake Of Fire - Nirvana", - "id": "Karaoke Version" - }, - { - "title": "Do You Love Me (Now That I Can Dance) - The Contours", - "id": "Karaoke Version" - }, - { - "title": "It's All Coming Back to Me Now - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Mony Mony - Billy Idol", - "id": "Karaoke Version" - }, - { - "title": "The Lonely - Christina Perri", - "id": "Karaoke Version" - }, - { - "title": "Girl - Anouk", - "id": "Karaoke Version" - }, - { - "title": "What You Won't Do For Love - Bobby Caldwell", - "id": "Karaoke Version" - }, - { - "title": "Rocket Man (I Think It's Going to Be a Long, Long Time) - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Love And Happiness - Al Green", - "id": "Karaoke Version" - }, - { - "title": "Don't Rock the Jukebox - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "I Follow Rivers - Triggerfinger", - "id": "Karaoke Version" - }, - { - "title": "Sisters - The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "Creep (LP version) - Stone Temple Pilots", - "id": "Karaoke Version" - }, - { - "title": "I Follow Rivers - Lykke Li", - "id": "Karaoke Version" - }, - { - "title": "Kiss Me - Sixpence None the Richer", - "id": "Karaoke Version" - }, - { - "title": "Medley - The Supremes", - "id": "Karaoke Version" - }, - { - "title": "Medley: I Want You Back / ABC / The Love You Save - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "She Works Hard for the Money - Donna Summer", - "id": "Karaoke Version" - }, - { - "title": "Lovesick Blues - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "Wasn't That A Party - The Irish Rovers", - "id": "Karaoke Version" - }, - { - "title": "Eye in the Sky - Noa", - "id": "Karaoke Version" - }, - { - "title": "Colorful - The Verve Pipe", - "id": "Karaoke Version" - }, - { - "title": "I Was Here - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Come On Eileen - Save Ferris", - "id": "Karaoke Version" - }, - { - "title": "Englishman in New York - Sting", - "id": "Karaoke Version" - }, - { - "title": "Bad Girls - Donna Summer", - "id": "Karaoke Version" - }, - { - "title": "I Have Nothing - The Bodyguard (Whitney Houston)", - "id": "Karaoke Version" - }, - { - "title": "On the Street Where You Live - My Fair Lady", - "id": "Karaoke Version" - }, - { - "title": "Born to Be Wild - Steppenwolf", - "id": "Karaoke Version" - }, - { - "title": "Paparazzi (acoustic - live) - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Somebody to Love - We Will Rock You (musical)", - "id": "Karaoke Version" - }, - { - "title": "What'd I Say - Ray Charles", - "id": "Karaoke Version" - }, - { - "title": "Before I Let Go - Maze", - "id": "Karaoke Version" - }, - { - "title": "All My Loving - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "I Left My Heart in San Francisco - Tony Bennett", - "id": "Karaoke Version" - }, - { - "title": "Just A Kiss - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Hero - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "You Can't Win - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "You Belong to Me - Vonda Shepard (Ally McBeal)", - "id": "Karaoke Version" - }, - { - "title": "More Than This - One Direction", - "id": "Karaoke Version" - }, - { - "title": "Hello, Dolly! - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Sexual Healing - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "Barbie Girl - Aqua", - "id": "Karaoke Version" - }, - { - "title": "Fever - Peggy Lee", - "id": "Karaoke Version" - }, - { - "title": "Isn't She Lovely - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "My Heart Will Go On - Cรฉline Dion (Titanic)", - "id": "Karaoke Version" - }, - { - "title": "I Want to Hold Your Hand - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Robin - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "Chattahoochee (Short version) - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "Smooth - Santana & Rob Thomas", - "id": "Karaoke Version" - }, - { - "title": "Goodnight Moon - Shivaree", - "id": "Karaoke Version" - }, - { - "title": "My Melancholy Blues - Queen", - "id": "Karaoke Version" - }, - { - "title": "Hurts So Good - Footloose (1984 film) (John Mellencamp)", - "id": "Karaoke Version" - }, - { - "title": "Route 66 - Cars (John Mayer)", - "id": "Karaoke Version" - }, - { - "title": "Will You Still Love Me Tomorrow? - Carole King", - "id": "Karaoke Version" - }, - { - "title": "You Can't Hurry Love - Phil Collins", - "id": "Karaoke Version" - }, - { - "title": "September - Earth, Wind & Fire", - "id": "Karaoke Version" - }, - { - "title": "Roxanne - The Police", - "id": "Karaoke Version" - }, - { - "title": "Black and Gold - Adele", - "id": "Karaoke Version" - }, - { - "title": "Children of the Sun - Billy Thorpe", - "id": "Karaoke Version" - }, - { - "title": "Rape Me - Nirvana", - "id": "Karaoke Version" - }, - { - "title": "I Am a Man of Constant Sorrow - Soggy Bottom Boys", - "id": "Karaoke Version" - }, - { - "title": "Mustang Sally - Wilson Pickett", - "id": "Karaoke Version" - }, - { - "title": "I Put a Spell on You - Nina Simone", - "id": "Karaoke Version" - }, - { - "title": "When the Rain Begins to Fall - Jermaine Jackson & Pia Zadora", - "id": "Karaoke Version" - }, - { - "title": "I Surrender - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "If I Only Had a Brain - The Wizard of Oz", - "id": "Karaoke Version" - }, - { - "title": "For Once in My Life - Harry Connick Jr.", - "id": "Karaoke Version" - }, - { - "title": "Whenever You Remember - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "My Heart Belongs to Daddy - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Only We Know - Glee", - "id": "Karaoke Version" - }, - { - "title": "Love Is All Around - Wet Wet Wet", - "id": "Karaoke Version" - }, - { - "title": "Father and a Friend - Alain Clark & Dane Clark", - "id": "Karaoke Version" - }, - { - "title": "Aquarius / Let the Sun Shine in - The 5th Dimension", - "id": "Karaoke Version" - }, - { - "title": "Tomorrow - Chris Young", - "id": "Karaoke Version" - }, - { - "title": "Valerie (Live BBC Radio 1 in Lounge) - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "At Last - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "Maggie May - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "I Got You Babe - Sonny & Cher", - "id": "Karaoke Version" - }, - { - "title": "No-One But You (Only the Good Die Young) - Queen", - "id": "Karaoke Version" - }, - { - "title": "Giving Myself - Jennifer Hudson", - "id": "Karaoke Version" - }, - { - "title": "The Reason - Hoobastank", - "id": "Karaoke Version" - }, - { - "title": "Shape of My Heart - Sting", - "id": "Karaoke Version" - }, - { - "title": "The Devil's Right Hand - Steve Earle", - "id": "Karaoke Version" - }, - { - "title": "Why Do Fools Fall in Love - Frankie Lymon", - "id": "Karaoke Version" - }, - { - "title": "Shake, Rattle and Roll - Bill Haley & His Comets", - "id": "Karaoke Version" - }, - { - "title": "Chattanooga Choo Choo - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "All I Have to Do Is Dream - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "Apologize - Timbaland & OneRepublic", - "id": "Karaoke Version" - }, - { - "title": "The Star Spangled Banner - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Banjo - Rascal Flatts", - "id": "Karaoke Version" - }, - { - "title": "Crocodile Rock - Elton John", - "id": "Karaoke Version" - }, - { - "title": "Take Good Care of My Baby - Bobby Vee", - "id": "Karaoke Version" - }, - { - "title": "The Lord's Prayer - Gospel Singer", - "id": "Karaoke Version" - }, - { - "title": "Life is a Highway - Cars (Rascal Flatts)", - "id": "Karaoke Version" - }, - { - "title": "Another One Bites the Dust - Queen", - "id": "Karaoke Version" - }, - { - "title": "L.O.V.E. - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Go Your Own Way - Fleetwood Mac", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Don't Cry for Me Argentina (Miami Mix) - Evita (film) (Madonna)", - "id": "Karaoke Version" - }, - { - "title": "How Sweet It Is (To Be Loved by You) - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Superman - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Perhaps, Perhaps, Perhaps - Doris Day", - "id": "Karaoke Version" - }, - { - "title": "Mississippi - Pussycat", - "id": "Karaoke Version" - }, - { - "title": "Golden - Jill Scott", - "id": "Karaoke Version" - }, - { - "title": "Spend My Life with You - Eric Benรฉt & Tamia", - "id": "Karaoke Version" - }, - { - "title": "Hey There Delilah (album version) - Plain White T's", - "id": "Karaoke Version" - }, - { - "title": "Me and Bobby McGee - Kris Kristofferson", - "id": "Karaoke Version" - }, - { - "title": "Ben - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "You Love Me - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "Mack the Knife - Frank Sinatra & Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "(Your Love Keeps Lifting Me) Higher And Higher - Jackie Wilson", - "id": "Karaoke Version" - }, - { - "title": "Aquarius - Hair (film)", - "id": "Karaoke Version" - }, - { - "title": "A Teenager in Love - Dion & The Belmonts", - "id": "Karaoke Version" - }, - { - "title": "That'll Be the Day - Buddy Holly & The Crickets", - "id": "Karaoke Version" - }, - { - "title": "The Girl from Ipanema - Astrud Gilberto & Joรฃo Gilberto & Stan Getz", - "id": "Karaoke Version" - }, - { - "title": "Off To The Races - Lana Del Rey", - "id": "Karaoke Version" - }, - { - "title": "Hark! The Herald Angels Sing - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "No More Tears (Enough Is Enough) - Donna Summer & Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "Witchcraft - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Robin - Bobby Day", - "id": "Karaoke Version" - }, - { - "title": "Build Me Up Buttercup - The Foundations", - "id": "Karaoke Version" - }, - { - "title": "Perhaps Perhaps Perhaps - The Pussycat Dolls", - "id": "Karaoke Version" - }, - { - "title": "Turn Me On - Norah Jones", - "id": "Karaoke Version" - }, - { - "title": "Think - The Blues Brothers (Aretha Franklin)", - "id": "Karaoke Version" - }, - { - "title": "Stand By Your Man - Tammy Wynette", - "id": "Karaoke Version" - }, - { - "title": "I Just Can't Stop Loving You - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "I Walk the Line - Johnny Cash", - "id": "Karaoke Version" - }, - { - "title": "I'll Be There - Mariah Carey & Trey Lorentz", - "id": "Karaoke Version" - }, - { - "title": "Midnight Train to Georgia - Gladys Knight & The Pips", - "id": "Karaoke Version" - }, - { - "title": "Wild World - Cat Stevens", - "id": "Karaoke Version" - }, - { - "title": "Outshined - Soundgarden", - "id": "Karaoke Version" - }, - { - "title": "Bad Girlfriend - Theory of a Deadman", - "id": "Karaoke Version" - }, - { - "title": "Manah Manah - The Muppets", - "id": "Karaoke Version" - }, - { - "title": "(It's Only a) Paper Moon - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Beyond The Sea - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Cheek to Cheek - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "The Way You Look Tonight - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "A Thousand Miles - Boyce Avenue & Alex Goot", - "id": "Karaoke Version" - }, - { - "title": "The Way You Look Tonight (Duet) - Tony Bennett & Faith Hill", - "id": "Karaoke Version" - }, - { - "title": "You and I (We Can Conquer the World) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "It's a Man's Man's Man's World (live) - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "Me and Mrs. Jones - Billy Paul", - "id": "Karaoke Version" - }, - { - "title": "Killing Me Softly - The Fugees", - "id": "Karaoke Version" - }, - { - "title": "Listen to Your Heart - Roxette", - "id": "Karaoke Version" - }, - { - "title": "Saving All My Love For You - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Still in Love with You - Sade", - "id": "Karaoke Version" - }, - { - "title": "Killing Me Softly with His Song - Roberta Flack", - "id": "Karaoke Version" - }, - { - "title": "Mama's Broken Heart - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "Cabaret - Cabaret", - "id": "Karaoke Version" - }, - { - "title": "Hound Dog - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "The Way You Look Tonight - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Calling You - Jevetta Steele (Bagdad Cafรฉ)", - "id": "Karaoke Version" - }, - { - "title": "Somethin' Stupid - Frank Sinatra & Nancy Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Karaoke That's What Friends Are For - Dionne Warwick & Gladys Knight, Elton John & Stevie Wonder *", - "id": "HfEKljjiPUg" - }, - { - "title": "Iris - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Tears in Heaven - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "A Thousand Years - Christina Perri", - "id": "Karaoke Version" - }, - { - "title": "Because You Loved Me - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Respect - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Let's Stay Together - Al Green", - "id": "Karaoke Version" - }, - { - "title": "Dirty Old Town - The Pogues", - "id": "Karaoke Version" - }, - { - "title": "Prison Sex - Tool", - "id": "Karaoke Version" - }, - { - "title": "I Can't Make You Love Me (Acoustic version) - Tank", - "id": "Karaoke Version" - }, - { - "title": "Bitch Came Back - Theory of a Deadman", - "id": "Karaoke Version" - }, - { - "title": "I'll Be There - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "Walk Like an Egyptian - The Bangles", - "id": "Karaoke Version" - }, - { - "title": "Ribbon in the Sky - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Why Don't You Do Right? - Peggy Lee", - "id": "Karaoke Version" - }, - { - "title": "Nella Fantasia - Sarah Brightman (The Mission)", - "id": "Karaoke Version" - }, - { - "title": "My Cherie Amour - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Ladies Night - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "It's a Man's Man's Man's World - James Brown", - "id": "Karaoke Version" - }, - { - "title": "The Prayer - Donnie McClurkin & Yolanda Adams", - "id": "Karaoke Version" - }, - { - "title": "Ironic - Alanis Morissette", - "id": "Karaoke Version" - }, - { - "title": "My Funny Valentine (Live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Music (Was My First Love) - John Miles", - "id": "Karaoke Version" - }, - { - "title": "Lullaby of Birdland - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Misty Blue - Dorothy Moore", - "id": "Karaoke Version" - }, - { - "title": "We Found Love - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "My Guy - Mary Wells", - "id": "Karaoke Version" - }, - { - "title": "Under the Bridge - Red Hot Chili Peppers", - "id": "Karaoke Version" - }, - { - "title": "Stuck On You - Lionel Richie", - "id": "Karaoke Version" - }, - { - "title": "Cheek to Cheek - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Dust in the Wind - Kansas", - "id": "Karaoke Version" - }, - { - "title": "Everybody Loves Somebody - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "To Know Him Is to Love Him (Napster Live Session) - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Stronger Than Me - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Dirty Old Man - The Three Degrees", - "id": "Karaoke Version" - }, - { - "title": "You Can't Hurry Love - The Supremes", - "id": "Karaoke Version" - }, - { - "title": "I Can't Help Myself (Sugar Pie, Honey Bunch) - The Four Tops", - "id": "Karaoke Version" - }, - { - "title": "Same Old You - Miranda Lambert", - "id": "Karaoke Version" - }, - { - "title": "The New Girl in Town - Hairspray (2007 film) & Brittany Snow", - "id": "Karaoke Version" - }, - { - "title": "My Baby Just Cares For Me - George Michael", - "id": "Karaoke Version" - }, - { - "title": "Stupid Cupid - Connie Francis", - "id": "Karaoke Version" - }, - { - "title": "The Way We Were - Barbra Streisand", - "id": "Karaoke Version" - }, - { - "title": "Smoke Gets in Your Eyes - The Platters", - "id": "Karaoke Version" - }, - { - "title": "(They Long to Be) Close to You - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Soul Man - The Blues Brothers", - "id": "Karaoke Version" - }, - { - "title": "My Broken Souvenirs - Pussycat", - "id": "Karaoke Version" - }, - { - "title": "You'll Be In My Heart - Tarzan (1999 film) (Phil Collins)", - "id": "Karaoke Version" - }, - { - "title": "When I Fall in Love - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "I Run to You - Lady A", - "id": "Karaoke Version" - }, - { - "title": "Endless Love - Glee", - "id": "Karaoke Version" - }, - { - "title": "Sorry Seems to Be the Hardest Word - Elton John", - "id": "Karaoke Version" - }, - { - "title": "You're Nobody Till Somebody Loves You - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "Lady Marmalade - Patti LaBelle", - "id": "Karaoke Version" - }, - { - "title": "Damn Your Eyes - Etta James", - "id": "Karaoke Version" - }, - { - "title": "Chain of Fools - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "The Girl from Ipanema - Antรดnio Carlos Jobim", - "id": "Karaoke Version" - }, - { - "title": "Almost Lover - A Fine Frenzy", - "id": "Karaoke Version" - }, - { - "title": "KaraFun Karaoke - How it works", - "id": "TkgAvmAJEns" - }, - { - "title": "I Saw Three Ships - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Common People - William Shatner & Joe Jackson", - "id": "Karaoke Version" - }, - { - "title": "Marry Me - Train", - "id": "Karaoke Version" - }, - { - "title": "Easy (Like Sunday Morning) - Commodores", - "id": "Karaoke Version" - }, - { - "title": "Lollipop - The Chordettes", - "id": "Karaoke Version" - }, - { - "title": "Come Away With Me - Norah Jones", - "id": "Karaoke Version" - }, - { - "title": "Don't Speak - No Doubt", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Only We Know - Keane", - "id": "Karaoke Version" - }, - { - "title": "I Could Have Danced All Night - My Fair Lady (musical) (Julie Andrews)", - "id": "Karaoke Version" - }, - { - "title": "Tainted Love - Imelda May", - "id": "Karaoke Version" - }, - { - "title": "Maybe This Time - Glee & Kristin Chenoweth", - "id": "Karaoke Version" - }, - { - "title": "Jar Of Hearts - Glee", - "id": "Karaoke Version" - }, - { - "title": "Layla (live Unplugged) - Eric Clapton", - "id": "Karaoke Version" - }, - { - "title": "I've Got You Under My Skin - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Something's Got a Hold on Me - Etta James", - "id": "Karaoke Version" - }, - { - "title": "All I Could Do Was Cry - Etta James", - "id": "Karaoke Version" - }, - { - "title": "Candle in the Wind - Elton John", - "id": "Karaoke Version" - }, - { - "title": "The Power of Love - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Hero - Skillet", - "id": "Karaoke Version" - }, - { - "title": "My Guy (My God) - Sister Act (Deloris & The Sisters)", - "id": "Karaoke Version" - }, - { - "title": "Tango: Maureen - Rent (film)", - "id": "Karaoke Version" - }, - { - "title": "Sing - My Chemical Romance", - "id": "Karaoke Version" - }, - { - "title": "Your Song - Moulin Rouge! (2001 film)", - "id": "Karaoke Version" - }, - { - "title": "Don't Stop 'Til You Get Enough - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "One of Us - Joan Osborne", - "id": "Karaoke Version" - }, - { - "title": "Margaritaville - Jimmy Buffett", - "id": "Karaoke Version" - }, - { - "title": "Careless Whisper - George Michael (Wham!)", - "id": "Karaoke Version" - }, - { - "title": "The Look of Love - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Hail Holy Queen - Sister Act", - "id": "Karaoke Version" - }, - { - "title": "Grey Matter - Oingo Boingo", - "id": "Karaoke Version" - }, - { - "title": "Le Freak - Chic", - "id": "Karaoke Version" - }, - { - "title": "A Thousand Miles - Vanessa Carlton", - "id": "Karaoke Version" - }, - { - "title": "Drops of Jupiter (Tell Me) - Train", - "id": "Karaoke Version" - }, - { - "title": "ABC - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "Listen to the Music - The Doobie Brothers", - "id": "Karaoke Version" - }, - { - "title": "Lullaby of Broadway - The Popettes", - "id": "Karaoke Version" - }, - { - "title": "You Are the Sunshine of My Life - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Knocks Me Off My Feet - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Magic - Wizards of Waverly Place (Selena Gomez)", - "id": "Karaoke Version" - }, - { - "title": "Cupid - Sam Cooke", - "id": "Karaoke Version" - }, - { - "title": "Autumn Leaves - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Some Broken Hearts Never Mend - Telly Savalas", - "id": "Karaoke Version" - }, - { - "title": "Down With Love - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Dancing in the Street - Martha and the Vandellas", - "id": "Karaoke Version" - }, - { - "title": "Speechless - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "You and Tequila - Kenny Chesney & Grace Potter", - "id": "Karaoke Version" - }, - { - "title": "Fame - Fame (1980 film) (Irene Cara)", - "id": "Karaoke Version" - }, - { - "title": "Anything Goes / Anything You Can Do - Glee", - "id": "Karaoke Version" - }, - { - "title": "The Prayer - Celtic Woman", - "id": "Karaoke Version" - }, - { - "title": "Achy Breaky Heart - Billy Ray Cyrus", - "id": "Karaoke Version" - }, - { - "title": "Secrets - OneRepublic", - "id": "Karaoke Version" - }, - { - "title": "Arms - Christina Perri", - "id": "Karaoke Version" - }, - { - "title": "Fuck Tha Police - N.W.A.", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow - Glee", - "id": "Karaoke Version" - }, - { - "title": "Dream a Little Dream of Me - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "He Won't Go - Adele", - "id": "Karaoke Version" - }, - { - "title": "I'll Be There for You - The Rembrandts (Friends)", - "id": "Karaoke Version" - }, - { - "title": "Wishing You Were Somehow Here Again - The Phantom of the Opera (musical)", - "id": "Karaoke Version" - }, - { - "title": "Sing - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River - Julie London", - "id": "Karaoke Version" - }, - { - "title": "Rolling in the Deep - Glee", - "id": "Karaoke Version" - }, - { - "title": "Lemon Tree - Fool's Garden", - "id": "Karaoke Version" - }, - { - "title": "Just the Way You Are - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Here Without You - 3 Doors Down", - "id": "Karaoke Version" - }, - { - "title": "Bye Bye Love - The Everly Brothers", - "id": "Karaoke Version" - }, - { - "title": "Under the Boardwalk - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Don't Sit Under the Apple Tree - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "Whatever Lola Wants (Lola Gets) - Sarah Vaughan", - "id": "Karaoke Version" - }, - { - "title": "We Will Rock You / We Are The Champions (live) - Queen", - "id": "Karaoke Version" - }, - { - "title": "L-O-V-E - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Mack the Knife - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Le Jazz Hot - Glee", - "id": "Karaoke Version" - }, - { - "title": "Wade in the Water - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Knockin' on Heaven's Door - Bob Dylan", - "id": "Karaoke Version" - }, - { - "title": "The Shadow of Your Smile - Astrud Gilberto", - "id": "Karaoke Version" - }, - { - "title": "Twistin' the Night Away - Sam Cooke", - "id": "Karaoke Version" - }, - { - "title": "Route 66 - Natalie Cole", - "id": "Karaoke Version" - }, - { - "title": "Paparazzi - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "I Can See Clearly Now - Jimmy Cliff", - "id": "Karaoke Version" - }, - { - "title": "Don't Go Breaking My Heart - Elton John & Kiki Dee", - "id": "Karaoke Version" - }, - { - "title": "A Song for You - Donny Hathaway", - "id": "Karaoke Version" - }, - { - "title": "You Haven't Seen the Last of Me - Cher (Burlesque)", - "id": "Karaoke Version" - }, - { - "title": "Old Time Rock and Roll - Bob Seger", - "id": "Karaoke Version" - }, - { - "title": "You're The First, The Last, My Everything - Barry White", - "id": "Karaoke Version" - }, - { - "title": "Like The Way I Do - Melissa Etheridge", - "id": "Karaoke Version" - }, - { - "title": "On Broadway (Single Version) - George Benson", - "id": "Karaoke Version" - }, - { - "title": "You Are the Sunshine of My Life - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Volare - Dany Brillant", - "id": "Karaoke Version" - }, - { - "title": "Bloed, zweet en tranen - Andrรฉ Hazes", - "id": "Karaoke Version" - }, - { - "title": "It Don't Mean a Thing (If It Ain't Got That Swing) - The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "When I Fall in Love - Natalie Cole & Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Twist and Shout (live) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Get Down on It - Kool and the Gang", - "id": "Karaoke Version" - }, - { - "title": "Why Don't You Do Right - Jessica Rabbit (Amy Irving)", - "id": "Karaoke Version" - }, - { - "title": "The House of the Rising Sun - The Animals", - "id": "Karaoke Version" - }, - { - "title": "If You Don't Know Me By Now - Simply Red", - "id": "Karaoke Version" - }, - { - "title": "A Change Is Gonna Come - Sam Cooke", - "id": "Karaoke Version" - }, - { - "title": "In the Air Tonight - Phil Collins", - "id": "Karaoke Version" - }, - { - "title": "Hit Me With Your Best Shot - Pat Benatar", - "id": "Karaoke Version" - }, - { - "title": "I Can Only Imagine - MercyMe", - "id": "Karaoke Version" - }, - { - "title": "Karaoke You're The Best Thing That Ever Happened To Me - Gladys Knight & The Pips *", - "id": "MCU8ISRu710" - }, - { - "title": "It's Raining Men - Geri Halliwell", - "id": "Karaoke Version" - }, - { - "title": "Ich liebe das Leben - Andrea Berg", - "id": "Karaoke Version" - }, - { - "title": "Don't Give Up - Peter Gabriel & Kate Bush", - "id": "Karaoke Version" - }, - { - "title": "What a Feeling - Flashdance (Irene Cara)", - "id": "Karaoke Version" - }, - { - "title": "Still Got the Blues - Gary Moore", - "id": "Karaoke Version" - }, - { - "title": "Tough Lover - Christina Aguilera (Burlesque)", - "id": "Karaoke Version" - }, - { - "title": "The Phantom of the Opera - The Phantom of the Opera", - "id": "Karaoke Version" - }, - { - "title": "Lady Marmalade - Moulin Rouge! (2001 film)", - "id": "Karaoke Version" - }, - { - "title": "You Are So Beautiful - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Night and Day - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Hey Baby - DJ ร–tzi", - "id": "Karaoke Version" - }, - { - "title": "Beat It - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "Another Day in Paradise - Phil Collins", - "id": "Karaoke Version" - }, - { - "title": "Je suis malade - Serge Lama", - "id": "Karaoke Version" - }, - { - "title": "Twist and Shout - The Beatles", - "id": "Karaoke Version" - }, - { - "title": "Smoke on the Water - Deep Purple", - "id": "Karaoke Version" - }, - { - "title": "Mack the Knife - Bobby Darin", - "id": "Karaoke Version" - }, - { - "title": "Fields of Gold - Sting", - "id": "Karaoke Version" - }, - { - "title": "Baby, It's Cold Outside - Lady A", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Let It Be Christmas - Alan Jackson", - "id": "Karaoke Version" - }, - { - "title": "We Are The Champions - Queen", - "id": "Karaoke Version" - }, - { - "title": "Fireflies - Owl City", - "id": "Karaoke Version" - }, - { - "title": "Porn Star Dancing - My Darkest Days", - "id": "Karaoke Version" - }, - { - "title": "Earth Song - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "I Heard It Through the Grapevine - Marvin Gaye", - "id": "Karaoke Version" - }, - { - "title": "I Wanna Be Loved by You - Marilyn Monroe", - "id": "Karaoke Version" - }, - { - "title": "Happy Days Are Here Again / Get Happy - Glee", - "id": "Karaoke Version" - }, - { - "title": "Khe Sanh - Cold Chisel & Jimmy Barnes", - "id": "Karaoke Version" - }, - { - "title": "Will You Still Love Me Tomorrow - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "The Music of the Night - The Phantom of the Opera (musical)", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Taylor Swift", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Sugarland", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Selena Gomez", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow, Let It Snow, Let It Snow - Lady A", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song - Justin Bieber & Usher", - "id": "Karaoke Version" - }, - { - "title": "We Need a Little Christmas - Glee", - "id": "Karaoke Version" - }, - { - "title": "The First Noel - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Hark! The Herald Angels Sing - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Sailing - Rod Stewart", - "id": "Karaoke Version" - }, - { - "title": "Your Heart Is As Black As Night - Melody Gardot", - "id": "Karaoke Version" - }, - { - "title": "Elle - Melissa M", - "id": "Karaoke Version" - }, - { - "title": "Sabor A Mi - Luis Miguel", - "id": "Karaoke Version" - }, - { - "title": "Rolling in the Deep (Live) - Linkin Park", - "id": "Karaoke Version" - }, - { - "title": "Don't You (Forget About Me) - Simple Minds", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas - The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "That's Life - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "Mon manรจge ร  moi (Tu me fais tourner la tรชte) - Edith Piaf", - "id": "Karaoke Version" - }, - { - "title": "The Shoop Shoop Song - Cher", - "id": "Karaoke Version" - }, - { - "title": "Que reste-t-il de nos amours ? - Charles Trenet", - "id": "Karaoke Version" - }, - { - "title": "ร‡a (c'est vraiment toi) - Tรฉlรฉphone", - "id": "Karaoke Version" - }, - { - "title": "Twelve Days of Christmas - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Histoire d'un amour - Dalida", - "id": "Karaoke Version" - }, - { - "title": "Historia De Un Amor - Chico & The Gypsies", - "id": "Karaoke Version" - }, - { - "title": "It's Raining Men - Weather Girls", - "id": "Karaoke Version" - }, - { - "title": "Singin' in the Rain - Singin' in the Rain (1952 film) (Gene Kelly)", - "id": "Karaoke Version" - }, - { - "title": "99 Luftballons - Nena", - "id": "Karaoke Version" - }, - { - "title": "L-O-V-E - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Bรฉsame mucho - Andrea Bocelli", - "id": "Karaoke Version" - }, - { - "title": "Noche de Paz (Silent Night) - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "L'accordรฉoniste - Edith Piaf", - "id": "Karaoke Version" - }, - { - "title": "The First Noel - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Hard Candy Christmas - Dolly Parton", - "id": "Karaoke Version" - }, - { - "title": "Sparkling Diamonds - Moulin Rouge!", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - k.d. lang", - "id": "Karaoke Version" - }, - { - "title": "Soleil - Grรฉgoire", - "id": "Karaoke Version" - }, - { - "title": "Lean on Me - Glee", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Sunshine - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Enya", - "id": "Karaoke Version" - }, - { - "title": "Minuit, chrรฉtiens - Bruno Pelletier", - "id": "Karaoke Version" - }, - { - "title": "Joy to the World - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Mr. Sandman - The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "Only You (And You Alone) - The Platters", - "id": "Karaoke Version" - }, - { - "title": "Dance with My Father - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "Songbird - Glee", - "id": "Karaoke Version" - }, - { - "title": "Top of the World - The Carpenters", - "id": "Karaoke Version" - }, - { - "title": "Long Train Runnin' - The Doobie Brothers", - "id": "Karaoke Version" - }, - { - "title": "For Once In My Life - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "I Wish - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "The Prayer - Josh Groban & Charlotte Church", - "id": "Karaoke Version" - }, - { - "title": "All of Me (2009) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Perfect - Fairground Attraction", - "id": "Karaoke Version" - }, - { - "title": "Wherever You Will Go - The Calling", - "id": "Karaoke Version" - }, - { - "title": "It's a Man's Man's Man's World - Seal", - "id": "Karaoke Version" - }, - { - "title": "Torn - Natalie Imbruglia", - "id": "Karaoke Version" - }, - { - "title": "Bad Romance (acoustic - live) - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "I Just Called to Say I Love You (single version) - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Amazing Grace - LeAnn Rimes", - "id": "Karaoke Version" - }, - { - "title": "Think - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "All Your Life - The Band Perry", - "id": "Karaoke Version" - }, - { - "title": "Someday at Christmas - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Seasons of Love - Rent (musical)", - "id": "Karaoke Version" - }, - { - "title": "Toi et moi - Guillaume Grand", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song (Holiday Remix) - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "The Lady Is a Tramp - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "This Love - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Unchain My Heart - Joe Cocker", - "id": "Karaoke Version" - }, - { - "title": "Joy to the World - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "Cry Me a River (Orchestral Version) - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "Blue Moon - Ella Fitzgerald", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "Nuttin' For Christmas - Sugarland", - "id": "Karaoke Version" - }, - { - "title": "Cendrillon - Tรฉlรฉphone", - "id": "Karaoke Version" - }, - { - "title": "Give Love On Christmas Day - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "Noรซl blanc - Tino Rossi", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - Justin Bieber", - "id": "Karaoke Version" - }, - { - "title": "Knockin' on Heaven's Door - Guns N' Roses", - "id": "Karaoke Version" - }, - { - "title": "Poker Face - Glee", - "id": "Karaoke Version" - }, - { - "title": "Bรฉsame mucho - Diana Krall", - "id": "Karaoke Version" - }, - { - "title": "Historia De Un Amor - Luz Casal", - "id": "Karaoke Version" - }, - { - "title": "Histoire d'un amour - Dany Brillant", - "id": "Karaoke Version" - }, - { - "title": "We Wish You a Merry Christmas (alternate version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "The Prayer (duet) - Cรฉline Dion & Andrea Bocelli", - "id": "Karaoke Version" - }, - { - "title": "I Was Here - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "Baby It's Cold Outside - Glee", - "id": "Karaoke Version" - }, - { - "title": "Once Upon a December - Anastasia (1997 film) (Liz Callaway)", - "id": "Karaoke Version" - }, - { - "title": "Ave Maria - Josh Groban (Franz Schubert)", - "id": "Karaoke Version" - }, - { - "title": "Greatest Love of All - Whitney Houston", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Luther Vandross", - "id": "Karaoke Version" - }, - { - "title": "It's Now or Never - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "Ave Maria - Cรฉline Dion", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas - Ashley Tisdale", - "id": "Karaoke Version" - }, - { - "title": "It's Beginning to Look a Lot Like Christmas - 1950s Standards", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow! Let It Snow! Let It Snow! - 1940s Standards", - "id": "Karaoke Version" - }, - { - "title": "You've Got a Friend - James Taylor", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Frank Sinatra", - "id": "Karaoke Version" - }, - { - "title": "We Wish You a Merry Christmas - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "At Last - Beyoncรฉ", - "id": "Karaoke Version" - }, - { - "title": "The Chipmunk Song (Christmas Don't Be Late) - Alvin and the Chipmunks", - "id": "Karaoke Version" - }, - { - "title": "I Want You Back - The Jackson 5", - "id": "Karaoke Version" - }, - { - "title": "Out Here On My Own - Fame (1980 film) (Irene Cara)", - "id": "Karaoke Version" - }, - { - "title": "It's Beginning to Look a Lot Like Christmas - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "This Christmas - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - The Drifters", - "id": "Karaoke Version" - }, - { - "title": "Pie Jesu - Sarah Brightman", - "id": "Karaoke Version" - }, - { - "title": "Mis Deseos / Feliz Navidad - Michael Bublรฉ & Thalรญa", - "id": "Karaoke Version" - }, - { - "title": "Frosty the Snowman - Michael Bublรฉ & The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "Hot Stuff - Donna Summer", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Kate Voegele", - "id": "Karaoke Version" - }, - { - "title": "Elle me dit - Mika", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Santa Baby - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Michael Bublรฉ & The Puppini Sisters", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Karaoke It's Beginning To Look A Lot Like Christmas - Perry Como & The Fontane Sisters *", - "id": "scSBVaIKRKg" - }, - { - "title": "Don't Rain On My Parade - Glee (Lea Michele)", - "id": "Karaoke Version" - }, - { - "title": "All That Jazz - Chicago (film)", - "id": "Karaoke Version" - }, - { - "title": "Lean on Me - Bill Withers", - "id": "Karaoke Version" - }, - { - "title": "Hiding My Heart - Adele", - "id": "Karaoke Version" - }, - { - "title": "All Hail The Power Of Jesus' Name - Traditional", - "id": "Karaoke Version" - }, - { - "title": "Every Breath You Take - The Police", - "id": "Karaoke Version" - }, - { - "title": "Theme From New York, New York - Liza Minnelli", - "id": "Karaoke Version" - }, - { - "title": "This Christmas - Donny Hathaway", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas - Cascada", - "id": "Karaoke Version" - }, - { - "title": "Karaoke So Here It Is Merry Christmas - Slade *", - "id": "UH6NWVJxKDs" - }, - { - "title": "Petit Papa Noรซl - Josh Groban", - "id": "Karaoke Version" - }, - { - "title": "Somebody to Love - Glee", - "id": "Karaoke Version" - }, - { - "title": "Nosotros Los Tres Reyes - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "This Christmas - Chris Brown", - "id": "Karaoke Version" - }, - { - "title": "The Lady Is a Tramp - Tony Bennett & Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah - Rufus Wainwright (Shrek film)", - "id": "Karaoke Version" - }, - { - "title": "White Christmas (with Shania Twain) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Silent Night - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas (2011) - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Crazy Little Thing Called Love - Queen", - "id": "Karaoke Version" - }, - { - "title": "Once in Royal David's City - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Tomorrow - Annie (musical) (Andrea McArdle)", - "id": "Karaoke Version" - }, - { - "title": "Fallin' - Alicia Keys", - "id": "Karaoke Version" - }, - { - "title": "Rolling in the Deep (acoustic - live at Largo) - Adele", - "id": "Karaoke Version" - }, - { - "title": "(You Make Me Feel Like) A Natural Woman - Aretha Franklin", - "id": "Karaoke Version" - }, - { - "title": "Lovesong - Adele", - "id": "Karaoke Version" - }, - { - "title": "Frosty the Snowman - Jazzy Christmas", - "id": "Karaoke Version" - }, - { - "title": "Grown-Up Christmas List - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas - Taylor Swift", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells - Children's Chorus", - "id": "Karaoke Version" - }, - { - "title": "God Rest Ye Merry, Gentlemen (slow version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "It's Beginning to Look a Lot Like Christmas - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Winter Wonderland - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Frosty the Snowman - The Ronettes", - "id": "Karaoke Version" - }, - { - "title": "Rolling in the Deep - Adele", - "id": "Karaoke Version" - }, - { - "title": "I Don't Want to Miss a Thing - Aerosmith", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Coming to Town - Bing Crosby", - "id": "Karaoke Version" - }, - { - "title": "Quando, Quando, Quando - Michael Bublรฉ & Nelly Furtado", - "id": "Karaoke Version" - }, - { - "title": "Santa Baby - Taylor Swift", - "id": "Karaoke Version" - }, - { - "title": "Joyful Joyful - Sister Act", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Mountain High Enough - Sister Act", - "id": "Karaoke Version" - }, - { - "title": "Heal the World - Michael Jackson", - "id": "Karaoke Version" - }, - { - "title": "I'll Be Home for Christmas - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Hallelujah (acoustic) - Lisa Lois", - "id": "Karaoke Version" - }, - { - "title": "My Grown Up Christmas List - Kelly Clarkson", - "id": "Karaoke Version" - }, - { - "title": "O Holy Night - Glee", - "id": "Karaoke Version" - }, - { - "title": "Somewhere Over the Rainbow - The Wizard of Oz (Judy Garland)", - "id": "Karaoke Version" - }, - { - "title": "Superstition - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Bohemian Rhapsody - Queen", - "id": "Karaoke Version" - }, - { - "title": "I Will Always Love You - The Bodyguard (Whitney Houston)", - "id": "Karaoke Version" - }, - { - "title": "White Christmas - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Santa Claus Is Comin' to Town - Mariah Carey", - "id": "Karaoke Version" - }, - { - "title": "Diamonds Are a Girl's Best Friend - Marilyn Monroe", - "id": "Karaoke Version" - }, - { - "title": "Valerie - Glee", - "id": "Karaoke Version" - }, - { - "title": "People Get Ready - Eva Cassidy", - "id": "Karaoke Version" - }, - { - "title": "She Will Be Loved - Maroon 5", - "id": "Karaoke Version" - }, - { - "title": "Homeless - Leona Lewis", - "id": "Karaoke Version" - }, - { - "title": "Poker Face - Lady Gaga", - "id": "Karaoke Version" - }, - { - "title": "Santa Baby - Kylie Minogue", - "id": "Karaoke Version" - }, - { - "title": "Let It Snow! Let It Snow! Let It Snow! - Dean Martin", - "id": "Karaoke Version" - }, - { - "title": "What Child Is This - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Sweet Home Alabama - Lynyrd Skynyrd", - "id": "Karaoke Version" - }, - { - "title": "I Love Rock 'n' Roll - Joan Jett", - "id": "Karaoke Version" - }, - { - "title": "Papi - Jennifer Lopez", - "id": "Karaoke Version" - }, - { - "title": "J'ai demandรฉ ร  la lune - Indochine", - "id": "Karaoke Version" - }, - { - "title": "Blue Suede Shoes - Elvis Presley", - "id": "Karaoke Version" - }, - { - "title": "We Three Kings (alternate version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Twelve Days of Christmas - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Silent Night (woman voice) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "The First Noel - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Let's Twist Again - Chubby Checker", - "id": "Karaoke Version" - }, - { - "title": "Joy to the World - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "O Come All Ye Faithful - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "O Little Town of Bethlehem - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Around the Christmas Tree - Brenda Lee", - "id": "Karaoke Version" - }, - { - "title": "It's the Most Wonderful Time of the Year - Andy Williams", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells (slow version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "God Rest Ye Merry, Gentlemen - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Deck the Halls - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Away in a Manger - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Something's Gotta Hold On Me - Christina Aguilera (Burlesque)", - "id": "Karaoke Version" - }, - { - "title": "Ain't No Sunshine - Bill Withers", - "id": "Karaoke Version" - }, - { - "title": "Cool Yule - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Signed, Sealed, Delivered (I'm Yours) - Stevie Wonder", - "id": "Karaoke Version" - }, - { - "title": "Mustang Sally - The Commitments", - "id": "Karaoke Version" - }, - { - "title": "When the Saints Go Marching in (Big Band Version) - Traditional", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas - Wham!", - "id": "Karaoke Version" - }, - { - "title": "I'm So Excited (Long version) - The Pointer Sisters", - "id": "Karaoke Version" - }, - { - "title": "Boogie Woogie Bugle Boy - The Andrews Sisters", - "id": "Karaoke Version" - }, - { - "title": "I Will Follow Him (Chariot) - Sister Act", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song (Merry Christmas to You) - Nat King Cole", - "id": "Karaoke Version" - }, - { - "title": "Feliz Navidad - Josรฉ Feliciano", - "id": "Karaoke Version" - }, - { - "title": "Les Champs-ร‰lysรฉes - Joe Dassin", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Jazz Standards", - "id": "Karaoke Version" - }, - { - "title": "Over the Rainbow / What a Wonderful World - Israel Kamakawiwo'ole", - "id": "Karaoke Version" - }, - { - "title": "Last Christmas - Glee", - "id": "Karaoke Version" - }, - { - "title": "Les copains d'abord - Georges Brassens", - "id": "Karaoke Version" - }, - { - "title": "Where Are You Christmas - The Grinch (Faith Hill)", - "id": "Karaoke Version" - }, - { - "title": "Non, je ne regrette rien - Edith Piaf", - "id": "Karaoke Version" - }, - { - "title": "Baby, It's Cold Outside - Dean Martin & Martina McBride", - "id": "Karaoke Version" - }, - { - "title": "The Holly and the Ivy - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Hark! The Herald Angels Sing (slow version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Have Yourself a Merry Little Christmas - Christina Aguilera", - "id": "Karaoke Version" - }, - { - "title": "How Great Thou Art - Carrie Underwood", - "id": "Karaoke Version" - }, - { - "title": "Rolling in the Deep - Boyce Avenue", - "id": "Karaoke Version" - }, - { - "title": "Santiano (version 2010) - Hugues Aufray", - "id": "Karaoke Version" - }, - { - "title": "Toi + moi - Grรฉgoire", - "id": "Karaoke Version" - }, - { - "title": "I Will Survive - Gloria Gaynor", - "id": "Karaoke Version" - }, - { - "title": "More Than Words - Extreme", - "id": "Karaoke Version" - }, - { - "title": "At Last - Etta James", - "id": "Karaoke Version" - }, - { - "title": "We Three Kings - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Twelve Days of Christmas (alternate version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Silent Night (man voice) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "It Came Upon A Midnight Clear - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Jingle Bells (jazzy version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Deck the Halls (long version) - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "The Christmas Song - Michael Bublรฉ", - "id": "Karaoke Version" - }, - { - "title": "Rockin' Around the Christmas Tree - Miley Cyrus", - "id": "Karaoke Version" - }, - { - "title": "We Will Rock You - Queen", - "id": "Karaoke Version" - }, - { - "title": "Oh Happy Day - Sister Act", - "id": "Karaoke Version" - }, - { - "title": "Zombie - The Cranberries", - "id": "Karaoke Version" - }, - { - "title": "Hey, Soul Sister - Train", - "id": "Karaoke Version" - }, - { - "title": "All Through the Night - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Do They Know It's Christmas? (Feed The World) - Band Aid II", - "id": "Karaoke Version" - }, - { - "title": "Valerie (acoustic - live) - Amy Winehouse", - "id": "Karaoke Version" - }, - { - "title": "Angels from the Realms of Glory - Christmas Carol", - "id": "Karaoke Version" - }, - { - "title": "Total Eclipse of the Heart - Bonnie Tyler", - "id": "Karaoke Version" - }, - { - "title": "Soulman - Ben L'Oncle Soul", - "id": "Karaoke Version" - }, - { - "title": "The Rose - Bette Midler", - "id": "Karaoke Version" - }, - { - "title": "Happy Birthday (rock version) - Happy Birthday Songs", - "id": "Karaoke Version" - }, - { - "title": "New York, New York - Frank Sinatra", - "id": "Karaoke Version" - } - ], - "@StingrayKaraoke": [ - { - "title": "Chappell Roan - The Giver (Karaoke Version)", - "id": "6Vb0igX0-Ss" - }, - { - "title": "Say You Love Me - Fleetwood Mac (Karaoke Version)", - "id": "1a7vgwPGXY0" - }, - { - "title": "Jack Black - Steve's Lava Chicken from The Minecraft Movie (Karaoke Version)", - "id": "453WBM3O0ys" - }, - { - "title": "Shaboozey - Good News (Karaoke Version)", - "id": "G_8JAGfYzus" - }, - { - "title": "TOP 5 KARAOKE SONGS COMPILATION WITH LYRICS FEAT. SHANIA TWAIN, BRITNEY SPEARS & MORE", - "id": "QMKYI_kA9fE" - }, - { - "title": "Lola Young - Messy (Karaoke Version)", - "id": "qX5K1ZPyPOg" - }, - { - "title": "Gigi Perez - Sailor Song (Karaoke Version)", - "id": "9Gv3RaUJttI" - }, - { - "title": "Sum 41 - Fat Lip (Karaoke Version)", - "id": "qDqCeY6BQms" - }, - { - "title": "The Verve - Bitter Sweet Symphony (Karaoke Version)", - "id": "q-Zkob9AnQI" - }, - { - "title": "Lionel Richie - All Night Long (Karaoke Version)", - "id": "czep-D1lTp0" - }, - { - "title": "TOP COUNTRY KARAOKE SONGS OF ALL TIME FEAT. SHANIA TWAIN, MIRANDA LAMBERT, DOLLY PARTON & MORE", - "id": "RhmB892AoXM" - }, - { - "title": "Kenny Rogers - The Gambler (Karaoke Version)", - "id": "3olT18LhyH8" - }, - { - "title": "Rod Stewart - Maggie May (Karaoke Version)", - "id": "3LzHsBm5rQM" - }, - { - "title": "Tom Jones - It's Not Unusual (Karaoke Version)", - "id": "Fpo4PK4kmbA" - }, - { - "title": "Y2K: BEST OF 2000s KARAOKE WITH LYRICS", - "id": "CswtOALInrs" - }, - { - "title": "SUMMER SONGS KARAOKE WITH LYRICS FEAT. TATE MCRAE, RIHANNA, ABBA & MORE", - "id": "Yq9t_A_QhO4" - }, - { - "title": "Nickelback - Far Away (Karaoke Version)", - "id": "XptHYzsttJs" - }, - { - "title": "Lana Del Rey - Diet Mountain Dew (Karaoke Version)", - "id": "UCjIBQcKHas" - }, - { - "title": "Poison - Every Rose Has Its Thorn (Karaoke Version)", - "id": "Z7Ng7jXn2bA" - }, - { - "title": "TOP 5 POP KARAOKE WITH LYRICS FEAT. BRITNEY SPEARS, KELLY CLARKSON, KE$HA & MORE", - "id": "iCBbl_NIDz8" - }, - { - "title": "VIRAL KARAOKE HITS 2025 FEAT. DOECHII, MYLES SMITH & MORE", - "id": "uh-jRbuC9P4" - }, - { - "title": "Adele - Hometown Glory (Karaoke Version)", - "id": "b7Xv6GzNQF8" - }, - { - "title": "The Monkees - I'm A Believer (Karaoke Version)", - "id": "FcVI5d8wAWM" - }, - { - "title": "Lorde - Green Light (Karaoke Version)", - "id": "TV-Hk_-xJ3M" - }, - { - "title": "PRIDE KARAOKE PARTY FEAT. CHAPPELL ROAN, LANA DEL REY & MORE", - "id": "iO-hd5HM2DI" - }, - { - "title": "TOP 5 COUNTRY KARAOKE SONGS WITH LYRICS FEAT. GARTH BROOKS, WILLIE NELSON & MORE", - "id": "MCptoYNj5bM" - }, - { - "title": "The Isley Brothers - Shout (Karaoke Version)", - "id": "ep5_hSoneEM" - }, - { - "title": "Tate McRae - Sports Car (Karaoke Version)", - "id": "zi23g0wu6uQ" - }, - { - "title": "Jeff Buckley - Lover, You Should've Come Over (Karaoke Version)", - "id": "v-pK5Q8WgAY" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 30)", - "id": "BEST MUSIC FROM LADY GAGA, BRITNEY SPEARS & MORE!" - }, - { - "title": "TIKTOK MASHUP MAY 2025 (KARAOKE SONGS WITH LYRICS) DOECHII, ALEX WARREN & MORE", - "id": "uOP7RAHh490" - }, - { - "title": "Myles Smith - Stargazing (Karaoke Version)", - "id": "B7jsYRc_I-k" - }, - { - "title": "Chris Stapleton - Think I'm In Love With You (Karaoke Version)", - "id": "rpYjH_DbV6c" - }, - { - "title": "Doechii - Anxiety (Karaoke Version)", - "id": "VKxnw_XAQhk" - }, - { - "title": "BEST 90s KARAOKE SONGS WITH LYRICS FEAT. BRITNEY SPEARS, ACE OF BASE & MORE!", - "id": "J0UC7KINrh0" - }, - { - "title": "Belinda Carlisle - Heaven Is A Place On Earth (Karaoke Version)", - "id": "U1ayECN1c9Y" - }, - { - "title": "BEST 80s KARAOKE SONGS WITH LYRICS FEAT. MADONNA, RICK JAMES, THE OUTFIELD & MORE!", - "id": "h7AJO3dda-o" - }, - { - "title": "R.E.M. - Losing My Religion (Karaoke Version)", - "id": "2AisL3ny3TI" - }, - { - "title": "BEST LATIN KARAOKE SONGS WITH LYRICS FEAT KAROL G, MALUMA, GLORA ESTEFAN & MORE", - "id": "8261QoBycVg" - }, - { - "title": "TOP 10 KARAOKE SONGS WITH LYRICS (VOL. 11) BY ABBA, MADONNA & MORE", - "id": "7vTBqM6cVQE" - }, - { - "title": "BEST 80s & 90s KARAOKE COMPILATION WITH LYRICS BY TLC, SHERYL CROWE & MORE", - "id": "XBsOhzz_qsU" - }, - { - "title": "Bad Bunny - DtMF (Karaoke Version)", - "id": "8JnGZtwvv6Q" - }, - { - "title": "Lady Gaga - Judas (Karaoke Version)", - "id": "Y8K9qZGHOPo" - }, - { - "title": "Lisa - Money (Karaoke Version)", - "id": "PJnyu7EnZcQ" - }, - { - "title": "Sabrina Carpenter feat. Dolly Parton - Please Please Please (Karaoke Version)", - "id": "D6EBlWV62hQ" - }, - { - "title": "BEST 2000s KARAOKE SONGS WITH LYRICS BY GREEN DAY, AVRIL LAVIGNE & MORE", - "id": "l7Ek5X2cSWE" - }, - { - "title": "Alex Warren - Ordinary (Karaoke Version)", - "id": "vLoNnZSB2iI" - }, - { - "title": "Nickelback - How You Remind Me (Karaoke Version)", - "id": "w0IKvAkfy9I" - }, - { - "title": "Green Day - American Idiot (Karaoke Version)", - "id": "Lje4g3pfS48" - }, - { - "title": "BEST CANADIAN KARAOKE SONGS OF ALL TIME WITH LYRICS BY Cร‰LINE DION, JUSTIN BIEBER & MORE", - "id": "ypVsagjBnPY" - }, - { - "title": "COACHELLA 2025 KARAOKE SONGS WITH LYRICS BY LADY GAGA, LISA, GREEN DAY & MORE!", - "id": "1amT1ZYCTWY" - }, - { - "title": "Katy Perry - Firework (Karaoke Version)", - "id": "6YuMPcz2K24" - }, - { - "title": "Lady Gaga - Poker Face (Karaoke Version)", - "id": "W97xBEq0-JA" - }, - { - "title": "TOP 5 COUNTRY KARAOKE SONGS WITH LYRICS FEAT. DOLLY PARTON, ZACH BRYAN & MORE", - "id": "MLp0W6nQ6b0" - }, - { - "title": "KIDS KARAOKE SONGS WITH LYRICS", - "id": "BLUEY, PAW PATROL, SPONGEBOB & MORE!" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 29)", - "id": "BEST MUSIC FROM BOB LADY GAGA, TLC & MORE!" - }, - { - "title": "Lady Gaga - Abracadabra (Karaoke Version)", - "id": "HuIFMeueL3Y" - }, - { - "title": "Alanis Morissette - Ironic (Karaoke Version)", - "id": "W45eWV_BgXc" - }, - { - "title": "Tag Team - Whoomp! (There It Is) Karaoke Version", - "id": "sdnsSt3Hk-I" - }, - { - "title": "Tyler, The Creator & Kali Uchis - See You Again (Karaoke Version)", - "id": "_Lx-Wl-yT_s" - }, - { - "title": "Rufus & Chaka Khan - Ain't Nobody (Karaoke Version)", - "id": "tG13vRt4ykQ" - }, - { - "title": "TOP 10 KARAOKE SONGS WITH LYRICS (VOL. 10) BY ALEX WARREN, WICKED, ABBA & MORE", - "id": "zDafudZEX2Q" - }, - { - "title": "BEST 80s & 90s KARAOKE SONGS WITH LYRICS BY ALANIS MORISSETTE, MADONNA & MORE", - "id": "lIRIr4KTsuE" - }, - { - "title": "Fountains of Wayne - Stacy's Mom (Karaoke Version)", - "id": "D7dX3nYLKqI" - }, - { - "title": "Tina Turner - What's Love Got To Do With It (Karaoke Version)", - "id": "tiHFmVb5CYE" - }, - { - "title": "BEST NEW KARAOKE SONGS WITH LYRICS FEAT. ALEX WARREN, LADY GAGA & MORE", - "id": "WGZYt3MEKJM" - }, - { - "title": "Alex Warren - Burning Down (Karaoke Version)", - "id": "fEDJRqmIrnQ" - }, - { - "title": "Simple Minds - Don't You (Forget About Me) Karaoke Version", - "id": "mq2YkRoIVOM" - }, - { - "title": "'80s KARAOKE WITH LYRICS COMPILATION FEAT. FLEETWOOD MAC, TINA TURNER & MORE", - "id": "R13s3WOfMp4" - }, - { - "title": "TOP 5 KARAOKE SONGS WITH LYRICS FEAT. ROCKET MAN, SHE WILL BE LOVED & MORE!", - "id": "h0073YwcQ1U" - }, - { - "title": "Gotye feat. Kimbra - Somebody That I Used To Know (Karaoke Version)", - "id": "pBmtpaxU4HQ" - }, - { - "title": "TIKTOK MASHUP FEBRUARY 2025 (KARAOKE SONGS WITH LYRICS) WICKED, ADAM PORT & MORE", - "id": "1Yz0KlvJnSE" - }, - { - "title": "Adam Port, Stryv & Malachiii - MOVE (Karaoke Version)", - "id": "R0vvkbzs37c" - }, - { - "title": "Iris - Goo Goo Dolls (Karaoke Version)", - "id": "1-74YKtkyWQ" - }, - { - "title": "TOP COUNTRY KARAOKE SONGS WITH LYRICS FEAT. RASCAL FLATTS, LUKE BRYAN, DOLLY PARTON & MORE", - "id": "OEJA4Dw50hc" - }, - { - "title": "'90s KARAOKE WITH LYRICS COMPILATION FEAT. MADONNA, GOO GOO DOLLS & MORE", - "id": "dRbkNgV1Hkg" - }, - { - "title": "Kendrick Lamar - Humble (Karaoke Version)", - "id": "NH2JC0V82_w" - }, - { - "title": "BREAKUP SONGS KARAOKE WITH LYRICS BY SABRINA CARPENTER, CALUM SCOTT & MORE!", - "id": "MNVM1S2QBKs" - }, - { - "title": "BEST LOVE SONGS KARAOKE WITH LYRICS BY Cร‰LINE DION, ABBA, & MORE", - "id": "p2PdQgI_khM" - }, - { - "title": "Diana Ross & Lionel Richie - Endless Love (Karaoke Version)", - "id": "XYLtCNGyhgI" - }, - { - "title": "THE BEST SUPER BOWL HALFTIME PERFORMERS KENDRICK LAMAR, LADY GAGA & MORE", - "id": "uyLHsCoTxiM" - }, - { - "title": "1 HOUR CELEBRATING BLACK ARTISTS KARAOKE WITH LYRICS", - "id": "FEAT. BEYONCร‰, SZA, DIANA ROSS & MORE" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 28)", - "id": "BEST MUSIC FROM BOB DYLAN, CHAPPELL ROAN & MORE!" - }, - { - "title": "GRAMMY NOMINATED KARAOKE SONGS WITH LYRICS 2025 FEAT. BILLIE EILISH, CHAPPELL ROAN, AND MORE!", - "id": "YOq2jqHzJhs" - }, - { - "title": "TOP 10 KARAOKE SONGS WITH LYRICS (VOL. 9) BY TAYLOR SWIFT, CHAPPELL ROAN, NSYNC & MORE", - "id": "l9R6n7PImJ8" - }, - { - "title": "Bob Dylan - Hurricane (Karaoke Version)", - "id": "Al5gdU67lh8" - }, - { - "title": "Restless Heart - When She Cries (Karaoke Version)", - "id": "uRiaZ2TQ9eY" - }, - { - "title": "Kendrick Lamar - Not Like Us (Karaoke Version)", - "id": "iJbi-nIK9B4" - }, - { - "title": "TOP 5 KARAOKE SONGS WITH LYRICS FEAT. DEFYING GRAVITY, SOMEONE LIKE YOU & MORE!", - "id": "WSN6mzlX4kY" - }, - { - "title": "BEST 80s & 90s KARAOKE SONGS WITH LYRICS BY ELTON JOHN, MADONNA & MORE", - "id": "pJSSlX0gsxQ" - }, - { - "title": "Christina Aguilera - Genie In A Bottle (Karaoke Version)", - "id": "tX5OgOj9VFg" - }, - { - "title": "Wicked - No One Mourns The Wicked (Karaoke Version)", - "id": "Eo5aDE5IMbk" - }, - { - "title": "Cรฉline Dion - I Love You (Karaoke Version)", - "id": "e6c6TlCEHIo" - }, - { - "title": "BEST TIKTOK SONGS OF ALL TIME 2020-2025 MASHUP KARAOKE WITH LYRICS FEAT. BILLIE EILISH, LIZZO & MORE", - "id": "g5DK5_DrVt8" - }, - { - "title": "WICKED FULL SOUNDTRACK KARAOKE WITH LYRICS", - "id": "EFJBVCajuw4" - }, - { - "title": "BEST 80s & 90s KARAOKE SONGS WITH LYRICS FEAT. NSYNC, DOLLY PARTON, ABBA & MORE", - "id": "gikjkothSNw" - }, - { - "title": "Wicked - What Is This Feeling? (Karaoke Version DUET)", - "id": "21jw328SHCM" - }, - { - "title": "TIKTOK MASHUP 2024", - "id": "KARAOKE SONGS WITH LYRICS BY CHAPPELL ROAN, ARTEMAS, SABRINA CARPENTER & MORE" - }, - { - "title": "TOP SONGS OF 2024 KARAOKE WITH LYRICS BY BILLIE EILISH, GRACIE ABRAMS & MORE", - "id": "FShqxCLB8y8" - }, - { - "title": "THE BEST NEW YEAR'S EVE PARTY NON STOP PLAYLIST 2024", - "id": "KARAOKE FEAT. SABRINA CARPENTER, ABBA & MORE" - }, - { - "title": "Gracie Abrams - That's So True (Karaoke Version)", - "id": "ffh_XHx-bf0" - }, - { - "title": "1 HOUR CHRISTMAS DAY KARAOKE SONGS WITH LYRICS BY MARIAH CAREY, MICHAEL BUBLร‰, FRANK SINATRA & MORE!", - "id": "FfvQ8xnh_YE" - }, - { - "title": "Carpenters - Merry Christmas Darling (Karaoke Version)", - "id": "fqh_ZVPMEf8" - }, - { - "title": "Cรฉline Dion - O Holy Night (Karaoke Version)", - "id": "GWktRIGYLJg" - }, - { - "title": "TOP 10 CHRISTMAS KARAOKE SONGS OF ALL TIME WITH LYRICS FEAT. MARIAH CAREY, PAUL MCCARTNEY & MORE", - "id": "6pdq2YM6P2w" - }, - { - "title": "CHRISTMAS CROONERS KARAOKE SONGS WITH LYRICS FEAT. ELVIS, DEAN MARTIN & MORE", - "id": "0SHROdSV2Y4" - }, - { - "title": "TOP 12 CHRISTMAS KARAOKE SONGS OF ALL TIME", - "id": "bmjiB-SqxBw" - }, - { - "title": "CHRISTMAS LOVE SONGS KARAOKE WITH LYRICS FEAT. KELLY CLARKSON, SABRINA CARPENTER & MORE", - "id": "gmWjZmlnx8k" - }, - { - "title": "BEST HOLIDAY KARAOKE SONGS OF ALL TIME FEAT. MARIAH CAREY, PENTATONIX, WHAM! & MORE", - "id": "2yLuJv80T1Q" - }, - { - "title": "Dolly Parton - Hard Candy Christmas (Karaoke Version)", - "id": "BO_rrYdxiHE" - }, - { - "title": "BEST 2000s CHRISTMAS KARAOKE SONGS WITH LYRICS", - "id": "q-lKch7DIKY" - }, - { - "title": "Britney Spears - My Only Wish (This Year) (Karaoke Version)", - "id": "Syw2P9p6Ufs" - }, - { - "title": "CHRISTMAS ROCK KARAOKE SONGS WITH LYRICS FEAT. BRUCE SPRINGSTEEN, ELTON JOHN & MORE", - "id": "hvfQKCZ6e5E" - }, - { - "title": "John Lennon - Happy XMAS (War is Over)", - "id": "ePw5CqhUTa8" - }, - { - "title": "Bing Cosby - White Christmas (Karaoke Version)", - "id": "WMrQP7oCTeo" - }, - { - "title": "Sia - Santa's Coming For Us (Karaoke Version)", - "id": "GKwPLVygG9I" - }, - { - "title": "Frank Sinatra - Have Yourself A Merry Little Christmas (Karaoke Version)", - "id": "br8jnbqIxlc" - }, - { - "title": "Feliz Navidad - Josรฉ Feliciano (Karaoke Version)", - "id": "0qszSatFEWk" - }, - { - "title": "KIDS CHRISTMAS KARAOKE SONGS WITH LYRICS", - "id": "THE GRINCH, DECK THE HALLS & MORE" - }, - { - "title": "Bobby Helms - Jingle Bell Rock (Karaoke Version)", - "id": "DBDZ69sZxPo" - }, - { - "title": "COUNTRY CHRISTMAS SONGS KARAOKE WITH LYRICS BY DOLLY PARTON, TAYLOR SWIFT & MORE", - "id": "yo6Kyn6MFU8" - }, - { - "title": "Elvis Presley - Blue Christmas (Karaoke Version)", - "id": "LfFjskJnIEc" - }, - { - "title": "Andy Williams - It's The Most Wonderful Time of The Year (Karaoke Version)", - "id": "83U9OrPwpdM" - }, - { - "title": "Ariana Grande - Popular (From Wicked) Karaoke Version", - "id": "_yMeoLT0IcI" - }, - { - "title": "Band Aid - Do They Know It's Christmas? (Karaoke Version)", - "id": "4WddfzCdKH0" - }, - { - "title": "Burl Ives - A Holly Jolly Christmas (Karaoke Version)", - "id": "AAqymmbjMng" - }, - { - "title": "Kelly Clarkson - Underneath The Tree (Karaoke Version)", - "id": "0QmWGjLOPvg" - }, - { - "title": "TOP 5 HOLIDAY KARAOKE SONGS WITH LYRICS FEAT. MARIAH CAREY, JUSTIN BIEBER & MORE", - "id": "wQ0ipCq5IbU" - }, - { - "title": "Justin Bieber - Mistletoe (Karaoke Version)", - "id": "OMM6JXJjjbU" - }, - { - "title": "Pentatonix - Hallelujah (Karaoke Version)", - "id": "WcI3MCfQHRc" - }, - { - "title": "Wham! - Last Christmas (Karaoke Version)", - "id": "X4QkYPYIzoY" - }, - { - "title": "Mariah Carey - All I Want For Christmas Is You (Karaoke Version)", - "id": "6zpPJGp1IRE" - }, - { - "title": "Sabrina Carpenter - A Nonsense Christmas (Karaoke Version)", - "id": "B1apB1gnP10" - }, - { - "title": "NON-STOP KARAOKE SONGS WITH LYRICS", - "id": "J0jqMeie5g4" - }, - { - "title": "Wicked - Dancing Through Life (Karaoke Version)", - "id": "4mv9p9KYH9I" - }, - { - "title": "Wicked - Defying Gravity (Karaoke Version)", - "id": "MzcMgHcPY-I" - }, - { - "title": "TOP 10 KARAOKE SONGS WITH LYRICS (VOL. 8) BY TAYLOR SWIFT, CHAPPELL ROAN, NSYNC & MORE", - "id": "r9V2U1aIMSI" - }, - { - "title": "Taylor Swift - Picture To Burn (Karaoke Version)", - "id": "dlT8UfzRpXg" - }, - { - "title": "Lisa - Moonlit Floor (Karaoke Version)", - "id": "ndxTaf6HGcI" - }, - { - "title": "Gracie Abrams - Risk (Karaoke Version)", - "id": "0N3SyNETqx0" - }, - { - "title": "TIKTOK MASHUP NOVEMBER 2024 (KARAOKE SONGS WITH LYRICS) GRACIE ABRAMS, TATE MCRAE & MORE", - "id": "03VnaOhc-kg" - }, - { - "title": "Panic! At The Disco - I Write Sins Not Tragedies (Karaoke Version)", - "id": "HMXOu1sM5N0" - }, - { - "title": "Rascal Flatts - Life is A Highway (Karaoke Version)", - "id": "B-ePazEZaMA" - }, - { - "title": "Gracie Abrams - Close To You (Karaoke Version)", - "id": "Zb5764wclXU" - }, - { - "title": "BEST '80s & '90s KARAOKE SONGS WITH LYRICS FEAT BON JOVI, ABBA & MORE", - "id": "p6v0vduIkKA" - }, - { - "title": "CLASSIC KARAOKE HITS WITH LYRICS FEAT. OASIS, MADONNA & MORE!", - "id": "N_zHO1bMCsA" - }, - { - "title": "Lady Gaga & Bruno Mars - Die With A Smile (Karaoke Version)", - "id": "ct9E1ol-Z_s" - }, - { - "title": "Tate McRae - It's ok I'm ok (Karaoke Version)", - "id": "1cw3OD-nicI" - }, - { - "title": "ร‰dith Piaf - Non, Je ne regrette rien (Karaoke Version)", - "id": "W15wBawANV4" - }, - { - "title": "Tito Double P & Peso Pluma - Dos Dรญas (Karaoke Version)", - "id": "SpwL_-Jw4NA" - }, - { - "title": "HALLOWEEN PARTY KARAOKE WITH LYRICS FEAT. BILLIE EILISH, ROCKWELL, THE WEEKND & MORE!", - "id": "gLWq3qfxN_k" - }, - { - "title": "WEDNESDAY KARAOKE SOUNDTRACK", - "id": "nsQG7uZZ10w" - }, - { - "title": "Fuerza Regida - NEL (Karaoke Version)", - "id": "3xwtVpxy1WU" - }, - { - "title": "HALLOWEEKEND KARAOKE PARTY WITH LYRICS", - "id": "uUsOyaUEcYk" - }, - { - "title": "BEST 80s & 90s HALLOWEEN KARAOKE SONGS WITH LYRICS", - "id": "zv0Jcz9-EQw" - }, - { - "title": "Harry Belafonte - Jump In The Line (Karaoke Version)", - "id": "oOCG0W1KrbM" - }, - { - "title": "BEST '70s & '80s HALLOWEEN KARAOKE SONGS WITH LYRICS BY ELTON JOHN, ELVIS, BILLY JOEL & MORE", - "id": "ATwh6hownM0" - }, - { - "title": "Oingo Boingo - Dead Man's Party (Karaoke Version)", - "id": "LoIzM2iSVTE" - }, - { - "title": "Shawn Mendes - Why Why Why (Karaoke Version)", - "id": "OJaok3mPShQ" - }, - { - "title": "Rob Zombie - Living Dead Girl (Karaoke Version)", - "id": "tNzB4ztl6-w" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (HALLOWEEN EDITION) FEAT. THE ADDAMS FAMILY, MONSTER MASH & MORE", - "id": "QjrIt-dAaZU" - }, - { - "title": "The Weeknd - Dancing In The Flames (Karaoke Version)", - "id": "UdIsZ8ZKAmQ" - }, - { - "title": "HALLOWEEN MOVIE SOUNDTRACK KARAOKE WITH LYRICS FEAT. BEETLEJUICE, GHOSTBUSTERS & MORE", - "id": "N46rtrx3jBQ" - }, - { - "title": "Halsey - Ghost (Karaoke Version)", - "id": "eOX9sRATsRg" - }, - { - "title": "Rockwell - Somebody's Watching Me (Karaoke Version)", - "id": "97Pr6o9lc8k" - }, - { - "title": "Yeah Yeah Yeahs - Maps (Karaoke Version)", - "id": "WLNN1H1Hk-E" - }, - { - "title": "TOP 5 HALLOWEEN KARAOKE SONGS FEAT. MONSTER MASH, GHOSTBUSTERS & MORE", - "id": "D850a0QqgrY" - }, - { - "title": "BILLIE EILISH HIT ME HARD AND SOFT TOUR SET LIST (KARAOKE WITH LYRICS) FEAT. LUNCH, BAD GUY & MORE", - "id": "E6SuqGpuA0s" - }, - { - "title": "Kenny Rogers - She Believes In Me (Karaoke Version)", - "id": "Oo_LPfGiU-k" - }, - { - "title": "Billie Eilish - Wildflower (Karaoke Version)", - "id": "nh6NWQl61qI" - }, - { - "title": "BEST '80s & '90s KARAOKE OF ALL TIME WITH LYRICS FEAT SOFT CELL, ABBA, FLEETWOOD MAC & MORE", - "id": "KVgoPHU6gnU" - }, - { - "title": "Rod Stewart - Forever Young (Karaoke Version)", - "id": "9L99QWTcT2o" - }, - { - "title": "Oasis - Live Forever (Karaoke Version)", - "id": "5p1rwki8QW8" - }, - { - "title": "Jimin - Who (Karaoke Version)", - "id": "i7oKUqRL2IQ" - }, - { - "title": "Alan Jackson - Good Time (Karaoke Version)", - "id": "S11c1Nx6s3s" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 27)", - "id": "BEST MUSIC FROM TAYLOR SWIFT, CHAPPELL ROAN & MORE!" - }, - { - "title": "BEST 5 ROCK KARAOKE SONGS WITH LYRICS OF ALL TIME FEAT. OASIS, QUEEN, AEROSMITH & MORE", - "id": "HA2rsGV18FA" - }, - { - "title": "Lisa feat. Rosalรญa - New Woman (Karaoke Version)", - "id": "VWKu5p_tW2Q" - }, - { - "title": "Josh Groban - You Raise Me Up (Karaoke Version)", - "id": "VMwN73-2voQ" - }, - { - "title": "Bill Withers - Lean On Me (Karaoke Version)", - "id": "EAUvBoWXZrQ" - }, - { - "title": "Charli XCX - Von Dutch (Karaoke Version)", - "id": "SZv7scbc9IA" - }, - { - "title": "Beetlejuice - Say My Name (Karaoke Version)", - "id": "_vMTtVPhd80" - }, - { - "title": "Extreme - More Than Words (Karaoke Version)", - "id": "DP8SS1wV0O0" - }, - { - "title": "Teddy - Lose Control (Karaoke Version)", - "id": "ikjYus8mFiI" - }, - { - "title": "TOP 10 KARAOKE SONGS WITH LYRICS (VOL. 7) BY CHAPPELL ROAN, BILLIE EILISH & MORE", - "id": "nfdit19oqfM" - }, - { - "title": "TIKTOK MASHUP AUGUST 2024 (KARAOKE SONGS WITH LYRICS) HOT TO GO, SYMPHONY & MORE", - "id": "K9rcesCtjEY" - }, - { - "title": "TOP 5 COUNTRY KARAOKE SONGS WITH LYRICS BY DOLLY PARTON, LUKE COMBS & MORE", - "id": "_JBLEHuyCyA" - }, - { - "title": "Wallows & Clairo - Are You Bored Yet? (Karaoke Version)", - "id": "RllSZjIjnYo" - }, - { - "title": "Billie Eilish - The Greatest (Karaoke Version)", - "id": "u7KvKU5lWLo" - }, - { - "title": "Symphony - Clean Bandit feat. Zara Larsson (Karaoke Version)", - "id": "jn80Q2Iq_Po" - }, - { - "title": "TOP 5 POP KARAOKE WITH LYRICS FEAT. CHAPPELL ROAN, ABBA, DUA LIPA & MORE", - "id": "47Re21vgglY" - }, - { - "title": "Queen - Radio Ga Ga (Karaoke Version)", - "id": "dCkL6o_RriQ" - }, - { - "title": "TOP 5 KARAOKE SONGS OF ALL TIME WITH LYRICS FEAT. LUKE BRYAN, MADONNA, & MORE", - "id": "iqT995nqWiU" - }, - { - "title": "Elton John - Circle of Life (Karaoke Version)", - "id": "aYHV9rMdPKA" - }, - { - "title": "Rasputin - Boney M. & Majestic (Karaoke Version)", - "id": "skyfaCnVQ9g" - }, - { - "title": "The Temptations - My Girl (Karaoke Version)", - "id": "hHJ8Bk7l08k" - }, - { - "title": "CLASSIC KARAOKE HITS WITH LYRICS FEAT. QUEEN, Cร‰LINE DION, OASIS & MORE!", - "id": "6NqGQ1f2bFI" - }, - { - "title": "TOP 10 BEST KARAOKE SONGS OF ALL TIME (VOL. 6) FROM THE '70s, '80s, '90s AND 2000's!", - "id": "yoJXLL94u9g" - }, - { - "title": "S.O.S. - Rihanna (Karaoke Version)", - "id": "vBRtkdZrwV4" - }, - { - "title": "Stephen Sanchez - Until I Found You (Karaoke Version)", - "id": "BBqEdNwvlww" - }, - { - "title": "'60s & '70s KARAOKE COMPILATION WITH LYRICS FEAT. STEVIE WONDER, ABBA, JOHN LENNON & MORE", - "id": "7oZZq6BfqsY" - }, - { - "title": "Zach Bryan - Pink Skies (Karaoke Version)", - "id": "kjnhgSLSfBc" - }, - { - "title": "Aerosmith - Walk This Way (Karaoke Version)", - "id": "RPfBbwmAR9o" - }, - { - "title": "BEST '80s & '90s KARAOKE SONGS WITH LYRICS FEAT BACKSTREET BOYS, SHANIA TWAIN & MORE", - "id": "92rtdemLpiI" - }, - { - "title": "Taylor Swift - Our Song (Karaoke Version)", - "id": "IPM35VqNRZw" - }, - { - "title": "FUN KARAOKE SONGS WITH LYRICS FEAT. CHAPPELL ROAN, ARIANA GRANDE, RASCAL FLATTS & MORE", - "id": "SUB36fM5Xkw" - }, - { - "title": "Maroon 5 - Moves Like Jagger (Karaoke Version)", - "id": "HuS-DCPoj3E" - }, - { - "title": "Lady Gaga feat. Beyoncรฉ - Telephone (Karaoke Version)", - "id": "u3EMPN4hA4c" - }, - { - "title": "Billie Eilish - Happier Than Ever (Karaoke Version)", - "id": "xEuey7Zpar8" - }, - { - "title": "SUMMER SONGS KARAOKE WITH LYRICS FEAT. CHAPPELL ROAN, RIHANNA, DUA LIPA & MORE", - "id": "uEK4io5S4jA" - }, - { - "title": "SZA - Saturn (Karaoke Version)", - "id": "QxQMdre-ghg" - }, - { - "title": "Foreigner - I Want To Know What Love Is (Karaoke Version)", - "id": "i_7VkTnlF18" - }, - { - "title": "Destiny's Child - Bootylicious (Karaoke Version)", - "id": "Q8az8u1abtg" - }, - { - "title": "Don McLean - American Pie (Karaoke Version)", - "id": "k3wmm6j5Auc" - }, - { - "title": "Queen - Crazy Little Thing Called Love (Karaoke Version)", - "id": "GH3NOJLFYgQ" - }, - { - "title": "The Romantics - What I Like About You (Karaoke Version)", - "id": "mLXKUx7pgiI" - }, - { - "title": "BEST 2020 SONGS KARAOKE COMPILATION WITH LYRICS", - "id": "THE WEEKND, HARRY STYLES & MORE" - }, - { - "title": "TOP 5 KARAOKE SONGS COMPILATION WITH LYRICS FEAT. BILLIE EILISH, Cร‰LINE DION & MORE", - "id": "bbzScz-O0fA" - }, - { - "title": "Sabrina Carpenter - Feather Sabrina Carpenter", - "id": "DIYlAiVaffg" - }, - { - "title": "Billie Eilish - Chihiro (Karaoke Version)", - "id": "h59fB8NvJkQ" - }, - { - "title": "Chappell Roan - Pink Pony Club (Karaoke Version)", - "id": "jeoa6Jdwa_A" - }, - { - "title": "Cรฉline Dion - To Love You More (Karaoke Version)", - "id": "7RdvM7AU50k" - }, - { - "title": "Brandy & Monica - The Boy Is Mine (Karaoke Version)", - "id": "ChviyDNZdlA" - }, - { - "title": "Billie Eilish - Birds of A Feather (Karaoke Version)", - "id": "BHFcIej7_CU" - }, - { - "title": "Benson Boone - Slow It Down (Karaoke Version)", - "id": "bEMUmH9gQUc" - }, - { - "title": "CHAPPELL ROAN BEST SONGS KARAOKE COMPILATION WITH LYRICS", - "id": "HOT TO GO!, GOOD LUCK, BABE & MORE!" - }, - { - "title": "TIKTOK MASHUP JUNE 2024 (KARAOKE SONGS WITH LYRICS) SABRINA CARPENTER, CHAPPELL ROAN & MORE", - "id": "b4kWZH4RqK0" - }, - { - "title": "Tรฏesto & Tate McRae - 10:35 (Karaoke Version)", - "id": "VX3oEHL2uKs" - }, - { - "title": "Dua Lipa - Love Again (Karaoke Version)", - "id": "XdfY5XC6_vk" - }, - { - "title": "Sabrina Carpenter - Please Please Please (Karaoke Version)", - "id": "Vc7AfvSRNZ0" - }, - { - "title": "Chappell Roan - Good Luck, Babe! (Karaoke Version)", - "id": "pOjvmd0sDBA" - }, - { - "title": "Ariana Grande - Dangerous Woman (Karaoke Version)", - "id": "rSdlLNh6Mqo" - }, - { - "title": "Post Malone & Beyoncรฉ - Levii's Jeans (Karaoke Version)", - "id": "DJ-JYjBDjQw" - }, - { - "title": "Madonna - Express Yourself (Karaoke Version)", - "id": "Qu3LTRJWD6M" - }, - { - "title": "TOP 5 KARAOKE SONGS OF ALL TIME WITH LYRICS FEAT. SABRINA CARPENTER, QUEEN, NSYNC, AND MORE!", - "id": "4IaPCLNj4HE" - }, - { - "title": "BEST DUETS KARAOKE COMPILATION WITH LYRICS FEAT. JLO, IGGY POP & MORE", - "id": "Cszvpio31Lo" - }, - { - "title": "Chappell Roan - Hot To Go! (Karaoke Version)", - "id": "ZXmDX-ilgLA" - }, - { - "title": "The Greatest Showman - This is Me (Karaoke Version)", - "id": "nYw8Fn92_Xk" - }, - { - "title": "Billie Eilish - Lunch (Karaoke Version)", - "id": "_4NGv4O8iZM" - }, - { - "title": "THE BEST SUMMER KARAOKE COMPILATION WITH LYRICS FEAT. SABRINA CARPENTER, DUA LIPA & MORE", - "id": "errUVA1sts4" - }, - { - "title": "Billie Eilish - L'Amour De Ma Vie [Extended Edit] (Karaoke Version)", - "id": "25kBXAaB0Oo" - }, - { - "title": "BEST POP KARAOKE COMPILATION WITH LYRICS", - "id": "ARIANA GRANDE, SABRINA CARPENTER & MORE" - }, - { - "title": "TIKTOK MASHUP MAY 2024 (KARAOKE SONGS WITH LYRICS) SABRINA CARPENTER, OLIVIA RODRIGO & MORE", - "id": "F-gcUnjhPDc" - }, - { - "title": "MC Hammer - U Can't Touch This (Karaoke Version)", - "id": "AxJim70BhCk" - }, - { - "title": "Artemas - I Like The Way You Kiss Me (Karaoke Version)", - "id": "tc04VgNXeBk" - }, - { - "title": "Olivia Rodrigo - Teenage Dream (Karaoke Version)", - "id": "GeQJWpiMty8" - }, - { - "title": "Noah Kahan - Stick Season (Karaoke Version)", - "id": "N0JpeQHnGqE" - }, - { - "title": "Sabrina Carpenter - Espresso (Karaoke Version)", - "id": "43PhCBPFNkE" - }, - { - "title": "Madonna - Material Girl (Karaoke Version)", - "id": "a6gCswYG-ug" - }, - { - "title": "Luke Bryan - Country Girl (Shake It For Me)", - "id": "Karaoke Version" - }, - { - "title": "Kool & The Gang - Celebration (Karaoke Version)", - "id": "VDIEVL6D3iw" - }, - { - "title": "Katy Perry feat. Snoop Dogg - California Gurls (Karaoke Version)", - "id": "z0kXycjSKoY" - }, - { - "title": "1 HOUR BEST '80s '90s '00s KARAOKE COMPILATION WITH LYRICS FEAT. ABBA, MADONNA, BRITNEY SPEARS", - "id": "nqVz3xpfhpg" - }, - { - "title": "Britney Spears - Lucky (Karaoke Version)", - "id": "spC958S1dic" - }, - { - "title": "Beyoncรฉ - Texas Hold 'Em (Karaoke Version)", - "id": "pdbywb71GIk" - }, - { - "title": "DISCO KARAOKE COMPILATION WITH LYRICS FEAT. EARTH, WIND & FIRE, ABBA & MORE", - "id": "SEx1yPVCGW0" - }, - { - "title": "No Doubt - Just A Girl (Karaoke Version)", - "id": "uuOGM2y_CIs" - }, - { - "title": "Fugees - Killing Me Softly With His Love (Karaoke Version)", - "id": "dj74K0pjopk" - }, - { - "title": "Ice Spice - Deli (Karaoke Version)", - "id": "cNXxhPfpbYU" - }, - { - "title": "Imagine Dragons - Thunder (Karaoke Version)", - "id": "iVg-t348WN0" - }, - { - "title": "Lionel Richie - Stuck On You (Karaoke Version)", - "id": "cIafNCij58k" - }, - { - "title": "BEST LATIN SONGS COMPILATION", - "id": "KARAOKE WITH LYRICS FEAT. BAD BUNNY, ENRIQUE IGLESIAS, XAVI & MORE!" - }, - { - "title": "Spongebob Squarepants - Theme Song", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Josh Ross - Trouble (Karaoke Version)", - "id": "ZQT_5qHW0Vc" - }, - { - "title": "Ed Sheeran - Perfect (Karaoke Version)", - "id": "BOiXo1kdlIE" - }, - { - "title": "TOP 5 KARAOKE SONGS OF ALL TIME FEAT. THE BEATLES, ABBA & MORE", - "id": "lfb-q8NfcTk" - }, - { - "title": "Culture Club - Karma Chameleon (Karaoke Version)", - "id": "oobWGDF64cw" - }, - { - "title": "Whitney Houston - Run To You (Karaoke Version)", - "id": "13NzXqbcgaA" - }, - { - "title": "Nancy Sinatra - These Boots Are Made For Walkin' (Karaoke Version)", - "id": "A2gdx_CWKxY" - }, - { - "title": "Willie Nelson - On The Road Again (Karaoke Version)", - "id": "H4zVe9qn6yY" - }, - { - "title": "1 HOUR NONSTOP KARAOKE COMPILATION '80s '90s & Y2K FEAT. QUEEN, BONNIE TYLER, OLIVIA RODRIGO & MORE", - "id": "6wD-2LxC3Bk" - }, - { - "title": "Beyoncรฉ - Daddy Lessons (Karaoke Version)", - "id": "mdjqLsVyJR8" - }, - { - "title": "Ariana Grande - we can't be friends (wait for your love) (Karaoke Version)", - "id": "lCl0laRQ0aI" - }, - { - "title": "Olivia Rodrigo - obsessed (Karaoke Version)", - "id": "cfLWgzklNrQ" - }, - { - "title": "Total Eclipse Of The Heart - Bonnie Tyler (Karaoke Version)", - "id": "l8pBgtSL-eI" - }, - { - "title": "ICONIC KARAOKE COMPILATION WITH LYRICS FEAT. QUEEN, THE BEATLES, DOLLY PARTON & MORE", - "id": "YGNhh4hkwOo" - }, - { - "title": "ULTIMATE 80s KARAOKE COMPILATION WITH LYRICS FEAT. JOHN LENNON, BON JOVI & MORE", - "id": "jEUIAwcJi9U" - }, - { - "title": "Dolly Parton - Jolene (Karaoke Version)", - "id": "kSxbHZwtAHo" - }, - { - "title": "The Beatles - Blackbird (Karaoke Version)", - "id": "LBVtZliufqU" - }, - { - "title": "Beyoncรฉ - 16 Carriages (Karaoke Version)", - "id": "YhRL-E5dzho" - }, - { - "title": "Toni Basil - Mickey (Karaoke Version)", - "id": "qe-6fL0JNsg" - }, - { - "title": "NSYNC - Bye Bye Bye (Karaoke Version)", - "id": "_j099h0IbWU" - }, - { - "title": "ULTIMATE '90s KARAOKE COMPILATION FEAT. CHRISTINA AGUILERA, MARIAH CAREY, MC HAMMER & MORE", - "id": "aCeZX4dzIBs" - }, - { - "title": "Olivia Rodrigo - love is embarrassing", - "id": "X1h5V4s9w98" - }, - { - "title": "Royals - Lorde (Karaoke Version)", - "id": "ImaTNbChqz0" - }, - { - "title": "TOP 10 BEST KARAOKE SONGS OF ALL TIME (VOL. 5) FROM THE '70s, '80s, '90s AND 2000's!", - "id": "w-ReeFCMg08" - }, - { - "title": "Ciara feat. Missy Elliot - 1, 2 Step DUET (Karaoke Version)", - "id": "14kuSeasbBE" - }, - { - "title": "Ariana Grande & Mariah Carey - yes, and? (Karaoke Version)", - "id": "XD3MwrWs7Es" - }, - { - "title": "BEST ROCK AND ROLL SONGS OF ALL TIME FEAT. OASIS, QUEEN, THE WHITE STRIPES & MORE", - "id": "r8RFtuPk_wY" - }, - { - "title": "Beyoncรฉ - Texas Hold 'Em (Karaoke Version)", - "id": "91CNciOFYV0" - }, - { - "title": "Pearl Jam - Black (Karaoke Version)", - "id": "Xm-LT3fTwhU" - }, - { - "title": "Enrique Iglesias - Bailamos (Karaoke Version)", - "id": "nw32xDgLX-E" - }, - { - "title": "BEST OF 2000s KARAOKE WITH LYRICS COMPILATION FEAT. BRITNEY SPEARS, ALICIA KEYS & MORE!", - "id": "RPnATFfflHo" - }, - { - "title": "Sonny & Cher - I Got You Babe DUET (Karaoke Version)", - "id": "mbJbVgQEaXQ" - }, - { - "title": "The Beatles - Yesterday (Karaoke Version)", - "id": "EPLx5cNIrDs" - }, - { - "title": "BREAKUP SONGS TO CRY TO KARAOKE WITH LYRICS", - "id": "FEAT. MILEY CYRUS, SZA, LEWIS CAPALDI & MORE!" - }, - { - "title": "Billy Joel - Piano Man (Karaoke Version)", - "id": "bwGxM37H23s" - }, - { - "title": "Selena - Dreaming Of You (Karaoke Version)", - "id": "sBDnPtZ7nHU" - }, - { - "title": "BEST '70s & '80s KARAOKE SONGS WITH LYRICS BY ELTON JOHN, ELVIS, BILLY JOEL & MORE", - "id": "DtYr-WynM7k" - }, - { - "title": "BEST LOVE SONGS KARAOKE WITH LYRICS BY QUEEN, BEYONCร‰, MARIAH CAREY & MORE", - "id": "NjJg2HvnDdM" - }, - { - "title": "Xavi - La Victima (Karaoke Version)", - "id": "Ic9I6c_CSco" - }, - { - "title": "Bob Marley - Is This Love (Karaoke Version)", - "id": "eLe0w8MbgvI" - }, - { - "title": "Usher - Burn (Karaoke Version)", - "id": "GN-bMQQtTKE" - }, - { - "title": "THE BEST SUPER BOWL HALFTIME PERFORMERS OF ALL TIME (KARAOKE WITH LYRICS)", - "id": "BEYONCร‰, RIHANNA & MORE" - }, - { - "title": "Usher - Caught Up (Karaoke Version)", - "id": "S1moqWhQdEM" - }, - { - "title": "Olivia Rodrigo - making the bed (Karaoke Version)", - "id": "vx80KTO9Ju4" - }, - { - "title": "Madonna - Like A Virgin (Karaoke Version)", - "id": "wEHCdxPAMI4" - }, - { - "title": "Usher feat. Lil Jon & Ludacris - Yeah! (Karaoke Version)", - "id": "jhWeHMUKKFo" - }, - { - "title": "TOP 5 KARAOKE OF ALL TIME FEAT. NSYNC, THE BEATLES & MORE", - "id": "dOqVHJ-KPac" - }, - { - "title": "Kenya Grace - Strangers (Karaoke Version)", - "id": "-NbZEzIgdkY" - }, - { - "title": "Tate McRae - Greedy (Karaoke Version)", - "id": "XyhCKFu59Jg" - }, - { - "title": "Mean Girls (The Musical) - Revenge Party (Karaoke Version)", - "id": "mg8PPcH5H14" - }, - { - "title": "TOP 10 CLASSIC KARAOKE SONGS OF ALL TIME", - "id": "5WU7ZocQR0Y" - }, - { - "title": "Ariana Grande - yes, and? (Karaoke Version)", - "id": "yAtkm4Iva6s" - }, - { - "title": "Stevie Nicks - Edge of Seventeen (Karaoke Version)", - "id": "Wf7rUnxpjSU" - }, - { - "title": "Michael Bublรฉ - Sway (Karaoke Version)", - "id": "y3GSn3Xr68A" - }, - { - "title": "Howie Day - Collide (Karaoke Version)", - "id": "NsgyRFaRVco" - }, - { - "title": "TOP COUNTRY SONGS KARAOKE WITH LYRICS BY DOLLY PARTON, CHRIS STAPLETON & MORE", - "id": "I6jcZkOUioE" - }, - { - "title": "BEST '80s & '90s KARAOKE SONGS WITH LYRICS", - "id": "QB-j5Pd6mH8" - }, - { - "title": "Olivia Rodrigo - lacy (Karaoke Version)", - "id": "SQLOx7tsS08" - }, - { - "title": "The B-52's - Love Shack (Karaoke Version)", - "id": "Uw3oKW3-JFg" - }, - { - "title": "Bon Jovi - Livin' On A Prayer (Karaoke Version)", - "id": "FHO6JqggbXE" - }, - { - "title": "Chris Stapleton - Tennessee Whiskey (Karaoke Version)", - "id": "JwUDHNAPsHs" - }, - { - "title": "TOP 5 KARAOKE SONGS OF ALL TIME WITH LYRICS", - "id": "70Bghjzw8Ic" - }, - { - "title": "Lewis Capaldi - Someone You Loved (Karaoke Version)", - "id": "zciKDhD6e_Y" - }, - { - "title": "Hey There Delilah - Plain White T's (Karaoke Version)", - "id": "1a0_zGVPMs4" - }, - { - "title": "Taylor Swift - Blank Space (Taylor's Version)", - "id": "Karaoke Version" - }, - { - "title": "Ariana Grande - Positions (Karaoke Version)", - "id": "st4rv4jibGU" - }, - { - "title": "TIKTOK MASHUP 2023", - "id": "KARAOKE SONGS WITH LYRICS BY SZA, SADE, OLIVIA RODRIGO & MORE" - }, - { - "title": "BEST SONGS OF 2023", - "id": "KARAOKE WITH LYRICS FEAT. SZA, OLIVIA RODRIGO, BILLIE EILISH, & MORE!" - }, - { - "title": "Murder On The Dancefloor (From 'Saltburn') - Sophie Ellis-Bextor Karaoke with Lyrics", - "id": "Tg0pTruFo7M" - }, - { - "title": "THE BEST NEW YEAR'S EVE PARTY NONSTOP PLAYLIST 2023-2024", - "id": "KARAOKE BY BEYONCร‰, SADE, DUA LIPA & MORE" - }, - { - "title": "2023 CHRISTMAS SONGS NON STOP PLAYLIST", - "id": "Instrumental Holiday Music" - }, - { - "title": "O Holy Night - Traditional (Karaoke Version)", - "id": "5yL09oS7LrE" - }, - { - "title": "THE BEST NOSTALGIC CHRISTMAS SONGS", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "HOLIDAY LOVE SONGS KARAOKE WITH LYRICS BY MARIAH CAREY, JUSTIN BIEBER & MORE!", - "id": "GIb9yclji-Q" - }, - { - "title": "CLASSIC CHRISTMAS KARAOKE WITH LYRICS", - "id": "DECK THE HALLS, JOY TO THE WORLD & MORE" - }, - { - "title": "TIKTOK TRENDING CHRISTMAS SONGS 2023 MUSIC BY ARIANA GRANDE, JONAS BROTHERS & MORE", - "id": "OptSymKxLbQ" - }, - { - "title": "The Twelve Days of Christmas - Traditional (Karaoke Version)", - "id": "qmMPB3LYD6k" - }, - { - "title": "TOP 10 CHRISTMAS KARAOKE SONGS OF ALL TIME FROM THE '70s, '80s, '90s AND 2000's!", - "id": "7bzyrZjM-VE" - }, - { - "title": "You're A Mean One Mr Grinch - Thurl Ravenscroft (Karaoke Version)", - "id": "c0AkPfxENLI" - }, - { - "title": "I Saw Mommy Kissing Santa Claus - Traditional (Karaoke Version)", - "id": "ixTgDtKe4RY" - }, - { - "title": "Justin Bieber - Mistletoe (Karaoke Version)", - "id": "LtI3d5fJzUU" - }, - { - "title": "BEST HOLIDAY KARAOKE SONGS OF ALL TIME WITH LYRICS FEAT. WHAM! MARIAH CAREY, DEAN MARTIN & MORE", - "id": "wiw6RwMGeAw" - }, - { - "title": "Elvis Presley - Here Comes Santa Claus (Karaoke Version)", - "id": "4btlTT04qHU" - }, - { - "title": "1 HOUR CHRISTMAS PARTY KARAOKE SONGS WITH LYRICS FEAT. MARIAH CAREY, JUSTIN BIEBER & MORE", - "id": "3dI8tto8LUw" - }, - { - "title": "Sia - Snowman (Karaoke Version)", - "id": "PnfkuRPTUgw" - }, - { - "title": "Elvis Presley - Blue Christmas (Karaoke Version)", - "id": "_5anL1YhRw4" - }, - { - "title": "'80s CHRISTMAS MUSIC BEST KARAOKE WITH LYRICS MUSIC BY WHAM!, MADONNA, & MORE", - "id": "IauPrhdL6Z0" - }, - { - "title": "Michael Bublรฉ - It's Beginning To Look A Lot Like Christmas (Karaoke Version)", - "id": "4LyC-sjMzsI" - }, - { - "title": "MARIAH CAREY CHRISTMAS SONGS KARAOKE WITH LYRICS", - "id": "-wvwKWR6vzM" - }, - { - "title": "Pentatonix - Hallelujah (Karaoke Version)", - "id": "vA6Jt526UDY" - }, - { - "title": "Frosty The Snowman - Traditional (Karaoke Version)", - "id": "JxOgCTkiAeI" - }, - { - "title": "HOLIDAY KARAOKE SONGS FOR KIDS", - "id": "FROSTY THE SNOWMAN, JINGLE BELLS & MORE" - }, - { - "title": "Joy To The World - Traditional (Karaoke Version)", - "id": "glcLUrNoNto" - }, - { - "title": "Deck The Halls - Traditional (Karaoke Version)", - "id": "n8XvHz2Dk3A" - }, - { - "title": "Ariana Grande - Santa Tell Me (Karaoke Version)", - "id": "o0LIQfcEnXI" - }, - { - "title": "The Ronettes - Sleigh Ride (Karaoke Version)", - "id": "SUerUDdcZic" - }, - { - "title": "BEST COUNTRY CHRISTMAS SONGS KARAOKE WITH LYRICS BY ELVIS, DOLLY PARTON & MORE", - "id": "q-P3LN8vJIM" - }, - { - "title": "BEST CHRISTMAS MOVIE SONGS KARAOKE WITH LYRICS FROM THE GRINCH, ELF, FROZEN & MORE", - "id": "qg3Yh8vKrXo" - }, - { - "title": "Dean Martin - Let It Snow! Let It Snow! Let It Snow! (Karaoke Version)", - "id": "Bt-bDU7NvfA" - }, - { - "title": "Andy Williams - It's The Most Wonderful Time of The Year (Karaoke Version)", - "id": "gvmL44cUIAQ" - }, - { - "title": "Burl Ives - A Holly Jolly Christmas (Karaoke Version)", - "id": "l4JiOcfNpuA" - }, - { - "title": "Kelly Clarkson - Underneath The Tree (Karaoke Version)", - "id": "0B3zcUrT_us" - }, - { - "title": "Josรฉ Feliciano - Feliz Navidad (Karaoke Version)", - "id": "L968scaU3dU" - }, - { - "title": "Wham! - Last Christmas (Karaoke Version)", - "id": "z5V9lNdvanY" - }, - { - "title": "Bing Crosby - White Christmas (Karaoke Version)", - "id": "3kXeoNwFNfE" - }, - { - "title": "Michael Bublรฉ - Have Yourself A Merry Little Christmas (Karaoke Version)", - "id": "jvx-HI1Fvn8" - }, - { - "title": "Dua Lipa - Houdini (Karaoke Version)", - "id": "aM586s7dnZ8" - }, - { - "title": "BEST HOLIDAY POP SONGS KARAOKE WITH LYRICS MUSIC BY MARIAH CAREY, BRENDA LEE, ARIANA GRANDE & MORE", - "id": "D4T_e_q2eZg" - }, - { - "title": "Brenda Lee - Rockin' Around The Christmas Tree (Karaoke Version)", - "id": "B43RFTPOMpY" - }, - { - "title": "Mariah Carey - All I Want For Christmas Is You (Karaoke Version)", - "id": "T4asojixVsk" - }, - { - "title": "BEST FEEL GOOD KARAOKE SONGS WITH LYRICS", - "id": "FEAT. PHARRELL WILLIAMS, DOLLY PARTON & MORE" - }, - { - "title": "Adele - Skyfall (Karaoke Version)", - "id": "6FSGBz_dEHU" - }, - { - "title": "BEST KARAOKE DUETS OF ALL TIME FEAT. DIANA ROSS, SONNY & CHER, & MORE", - "id": "A4Hm4C6mMLs" - }, - { - "title": "Chris Stapleton - White Horse (Karaoke Version)", - "id": "1kI66-T8NZo" - }, - { - "title": "The Hunger Games - The Hanging Tree (Karaoke Version)", - "id": "IglUJukCuJI" - }, - { - "title": "TOP 10 BEST KARAOKE SONGS OF ALL TIME (VOL. 4) FROM THE '70s, '80s, '90s AND 2000's!", - "id": "fUXGaBiD77Q" - }, - { - "title": "BEST '80s & '90s KARAOKE SONGS", - "id": "MUSIC BY BON JOVI, BRITNEY SPEARS, CHER & MORE" - }, - { - "title": "Calvin Harris & Dua Lipa - One Kiss (Karaoke Version)", - "id": "P_TfBGC9Jhc" - }, - { - "title": "Sabrina Carpenter - Nonsense (Karaoke Version)", - "id": "DHdIPS3A6mg" - }, - { - "title": "Olivia Rodrigo - ballad of a homeschooled girl (Karaoke Version)", - "id": "mgauSVexiBE" - }, - { - "title": "Ice Spice - In Ha Mood (Karaoke Version)", - "id": "wr89CbmZSq4" - }, - { - "title": "COZY AUTUMN SONGS", - "id": "KARAOKE WITH LYRICS FEAT. OLIVIA RODRIGO, SZA, ILLIE EILISH & MORE!" - }, - { - "title": "Britney Spears - Everytime (Karaoke Version)", - "id": "zb07TdOXWjo" - }, - { - "title": "ABBA - Voulez-Vous (Karaoke Version)", - "id": "G4F3twgupLo" - }, - { - "title": "BEST SONGS OF 2016 KARAOKE WITH LYRICS FEAT. RIHANNA, MEGHAN TRAINER, SELENA GOMEZ & MORE", - "id": "SZWZRdnfCVk" - }, - { - "title": "Selena Gomez - Single Soon (Karaoke Version)", - "id": "9ipgXT4YBPk" - }, - { - "title": "Doja Cat - Paint The Town Red (Karaoke Version)", - "id": "uDHt8emFl4Y" - }, - { - "title": "SZA - Snooze (Karaoke Version)", - "id": "rRpuktaXgLQ" - }, - { - "title": "BEST BRITNEY SPEARS COMPILATION (1 HOUR) KARAOKE WITH LYRICS", - "id": "a5Ad2E0K9qk" - }, - { - "title": "Taylor Swift - Out Of The Woods (Karaoke Version)", - "id": "BRzyc4jKTko" - }, - { - "title": "HALLOWEEN POP KARAOKE WITH LYRICS MUSIC BY SZA, RIHANNA, BILLIE EILISH & MORE", - "id": "5zZd6D1pilw" - }, - { - "title": "BEST '80s & '90s HALLOWEEN KARAOKE SONGS WITH LYRICS", - "id": "qRm8n4P8ikE" - }, - { - "title": "Andrew Gold - Spooky Scary Skeletons (Karaoke Version)", - "id": "hdsDa_MD5Tg" - }, - { - "title": "OLIVIA RODRIGO - GUTS (FULL ALBUM)", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "The Cranberries - Zombie (Karaoke Version)", - "id": "yl4fl5LXw_o" - }, - { - "title": "1989 TAYLOR SWIFT ALBUM KARAOKE WITH LYRICS", - "id": "STYLE, BLANK SPACE, SHAKE IT OFF & MORE!" - }, - { - "title": "Billie Eilish - all the good girls go to hell (Karaoke Version)", - "id": "gy0pRXPb1Qg" - }, - { - "title": "Daryl Hall & John Oates - Maneater (Karaoke Version)", - "id": "EyAd9cKEZmk" - }, - { - "title": "1+ HOURS HALLOWEEN PARTY MUSIC KARAOKE WITH LYRICS", - "id": "GHOSTBUSTERS, ZOMBIE, BAD GUY & MORE" - }, - { - "title": "BEST '80s HALLOWEEN KARAOKE SONGS WITH LYRICS", - "id": "MUSIC BY ROCKWELL, AC/DC, KATE BUSH & MORE" - }, - { - "title": "Santana - Evil Ways (Karaoke Version)", - "id": "JLSfFOs4e9A" - }, - { - "title": "Bobby Boris Pickett & The Crypt Kickers - Monster Mash (Karaoke Version)", - "id": "27XBudjYTqs" - }, - { - "title": "Olivia Rodrigo - get him back! (Karaoke Version)", - "id": "zDLG_FfNLH0" - }, - { - "title": "Casper The Friendly Ghost Theme Song (Karaoke Version)", - "id": "stOFadr7-sU" - }, - { - "title": "Zach Bryan feat. Kacey Musgraves - I Remember Everything (Karaoke Version)", - "id": "mJwju6Bj4W4" - }, - { - "title": "HALLOWEEN ROCK SONGS KARAOKE WITH LYRICS FROM '70s, '80s & 90s", - "id": "Z86ppKEXcTc" - }, - { - "title": "Taylor Swift - Look What You Made Me Do", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Ghostbusters - Ray Parker Jr", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "The Addams Family Theme Song - Vic Mizzy", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Rihanna - Disturbia (Karaoke Version)", - "id": "6r6dRinfiR0" - }, - { - "title": "BEST '70s HALLOWEEN KARAOKE SONGS WITH LYRICS", - "id": "Sj5fDQZJNa4" - }, - { - "title": "PAW PATROL THEME SONG (KARAOKE WITH LYRICS)", - "id": "fgbliHAPZnM" - }, - { - "title": "Billie Eilish - Bad Guy (Karaoke Version)", - "id": "oDkJfAeVxww" - }, - { - "title": "Sam Smith feat. Kim Petras - Unholy (Karaoke Version)", - "id": "pLP_9Ju-JSA" - }, - { - "title": "China Anne McClain - Calling All The Monsters (Karaoke Version)", - "id": "ljjzgQUN0W4" - }, - { - "title": "TOP 10 BEST KARAOKE SONGS OF ALL TIME (VOL. 3) FROM THE '70s, '80s, '90s AND 2000's!", - "id": "RUhm_VFB54E" - }, - { - "title": "1 HOUR NON-STOP '80s & '90s KARAOKE SONGS WITH LYRICS", - "id": "BxIIpvqdvnU" - }, - { - "title": "Usher feat. will.i.am - OMG (Karaoke Version)", - "id": "YgrLsiNAePc" - }, - { - "title": "Carl Douglas - Kung Fu Fighting (Karaoke Version)", - "id": "DRBR6cypays" - }, - { - "title": "Taio Cruz - Dynamite (Karaoke Version)", - "id": "8DgNQBKVDyM" - }, - { - "title": "Travie McCoy feat. Bruno Mars - Billionaire (Karaoke Version)", - "id": "srfBIZqX8DI" - }, - { - "title": "BEST LATIN KARAOKE SONGS WITH LYRICS/CON LETRA BY BAD BUNNY, ENRIQUE IGLESIAS, ROSALIA & MORE", - "id": "vkEzT7AadK0" - }, - { - "title": "50 Cent - In Da Club (Karaoke Version)", - "id": "MerHmZa844A" - }, - { - "title": "TOP 10 MOVIE SOUNDTRACK SONGS KARAOKE WITH LYRICS FEAT. BARBIE, THE LITTLE MERMAID, ENCANTO & MORE", - "id": "gk2o3rHg59A" - }, - { - "title": "Olivia Rodrigo - bad idea right? (Karaoke Version)", - "id": "VlEloUKFcc4" - }, - { - "title": "Earth, Wind & Fire - September (Karaoke Version)", - "id": "PAjwwXfWmLs" - }, - { - "title": "BIRTHDAY PARTY KARAOKE SONGS WITH LYRICS", - "id": "2g9p8WntvDw" - }, - { - "title": "Taylor Swift - Back To December (Taylor's Version) Karaoke Version", - "id": "5FXjjEVzy4c" - }, - { - "title": "Justin Bieber feat. Ludacris - Baby (Karaoke Version)", - "id": "iyYgJuZmDjk" - }, - { - "title": "Sam Smith, Clavin Harris & Jessie Reyez - I'm Not Here To Make Friends (Karaoke Version)", - "id": "236VQ4LnRMc" - }, - { - "title": "BEST '70s AND '80s KARAOKE SONGS WITH LYRICS", - "id": "bIToLNCH5VM" - }, - { - "title": "TOP 10 SONGS OF 2010 KARAOKE WITH LYRICS BY JUSTIN BIEBER, RIHANNA, USHER & MORE", - "id": "eqGUranzSyA" - }, - { - "title": "Machine Gun Kelly feat. WILLOW - Emo Girl (Karaoke Version)", - "id": "G7875e4gKtA" - }, - { - "title": "Nicki Minaj, Ice Spice & Aqua - Barbie World (From 'The Barbie Movie' Soundtrack) Karaoke Version", - "id": "-CvWP3M0SxE" - }, - { - "title": "Bailey Zimmerman - Rock and A Hard Place (Karaoke Version)", - "id": "_3Qa4cL6jUQ" - }, - { - "title": "Jonas Brothers - Waffle House (Karaoke Version)", - "id": "a4wegldvSmg" - }, - { - "title": "TOP KARAOKE DUETS OF ALL TIME", - "id": "MUSIC BY ELTON JOHN, SONNY & CHER, & MORE" - }, - { - "title": "Becky G - Shower (Karaoke Version)", - "id": "cmRY23ZupJI" - }, - { - "title": "Vanessa Carlton - A Thousand Miles (Karaoke Version)", - "id": "CArwQ2G18xE" - }, - { - "title": "James Blunt - You're Beautiful (Karaoke Version)", - "id": "mXHhQA1YRZI" - }, - { - "title": "TOP HITS KARAOKE WITH LYRICS", - "id": "MUSIC BY OLIVIA RODRIGO, JUNG KOOK & MORE" - }, - { - "title": "ROCK SONGS: BEST OF '70s, '80s & '90s KARAOKE WITH LYRICS MUSIC BY QUEEN, AC/DC & MORE", - "id": "5MzfZuhU3D4" - }, - { - "title": "Taylor Swift - august (Karaoke Version)", - "id": "wZxbfvK88JE" - }, - { - "title": "Cypress Hill - lnsane In The Brain (Karaoke Version)", - "id": "6QfKQkX73X0" - }, - { - "title": "Lipps Inc. - Funkytown (Karaoke Version)", - "id": "lLqwU2kgoYc" - }, - { - "title": "ABBA - Dancing Queen (Karaoke Version)", - "id": "oSppTWQq-Ac" - }, - { - "title": "Cyndi Lauper - Time After Time (Karaoke Version)", - "id": "qAyogmKmFes" - }, - { - "title": "TOP 10 BEST KARAOKE SONGS OF ALL TIME VOL. 2 FROM THE '70s, '80s, '90s AND 2000's!", - "id": "E81udfsi9PQ" - }, - { - "title": "BEST ONE HIT WONDERS KARAOKE WITH LYRICS", - "id": "sWTvo42LaMw" - }, - { - "title": "Chubby Checker - Let's Twist Again (Karaoke Version)", - "id": "mekVqj7xJo4" - }, - { - "title": "Jason Aldean - Try That In A Small Town (Karaoke Version)", - "id": "b2In7yPjgTg" - }, - { - "title": "Frank Sinatra - Fly Me To The Moon (Karaoke Version", - "id": "OLnFSUjPAuk" - }, - { - "title": "Troye Sivan - Angel Baby (Karaoke Version)", - "id": "m10VxBC9E7Y" - }, - { - "title": "FUN KARAOKE SONGS TO SING WITH FRIENDS & FAMILY", - "id": "1Q66J-_dWrE" - }, - { - "title": "THE BEST OF THE DECADES 1 HOUR KARAOKE WITH LYRICS '60s, '70s, '80s, '90s, Y2K", - "id": "RKjhkycR5zU" - }, - { - "title": "Last Friday Night (T.G.I.F) - Katy Perry (Karaoke Version)", - "id": "Ir2chPAwKCk" - }, - { - "title": "Tom Jones - It's Not Unusual (Karaoke Version)", - "id": "yb4ndMZeJbk" - }, - { - "title": "Lana Del Ray - Radio (Karaoke Version)", - "id": "F2H-ch5RE3s" - }, - { - "title": "Jain - Makeba (Karaoke Version)", - "id": "DqPPSWRhbUY" - }, - { - "title": "Jung Kook feat. Latto - Seven (Karaoke Version)", - "id": "ChUAfFgVQuQ" - }, - { - "title": "Amy Winehouse - Valerie (Karaoke Version)", - "id": "LEXhb5XnM2M" - }, - { - "title": "1 HOUR NON-STOP KARAOKE SONGS WITH LYRICS MUSIC FROM '70s, '80s & '90s", - "id": "moue_mRcbps" - }, - { - "title": "NOSTALGIC KARAOKE FROM '80s & '90s FEAT. WHITNEY HOUSTON, ABBA, QUEEN & MORE", - "id": "lXTLtprTCYY" - }, - { - "title": "O-Town - All or Nothing (Karaoke Version)", - "id": "KwvS_Di8NQM" - }, - { - "title": "Toto - Africa (Karaoke Version)", - "id": "eO8drpHKyfY" - }, - { - "title": "Melanie Martinez - Void (Karaoke Version)", - "id": "zBG7rfzK_qI" - }, - { - "title": "Alicia Keys - Girl on Fire (Karaoke Version)", - "id": "AWo49DzNIOA" - }, - { - "title": "Carlos Santana - Maria Maria (Karaoke Version)", - "id": "QXh_k9OaV_4" - }, - { - "title": "4 Non Blondes - What's Up (Karaoke Version)", - "id": "P_zCAnk-TRI" - }, - { - "title": "EASY KARAOKE SONGS WITH LYRICS FEAT. DUA LIPA. CHER, AQUA & MORE", - "id": "gi3ywOjRLO8" - }, - { - "title": "Jisoo - Flower (Karaoke Version)", - "id": "9QhiMjoDgyc" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 25): BEST MUSIC from the '70s, '80s, '90s & Y2K", - "id": "mxwiyYhYd_M" - }, - { - "title": "Calvin Harris feat. Ellie Goulding - Miracle (Karaoke Version", - "id": "In0KcNnmX9c" - }, - { - "title": "THROWBACK KARAOKE PLAYLIST SONGS FROM '70s '80s '90s & 2000s (KARAOKE WITH LYRICS)", - "id": "JTgyA1Q06Fg" - }, - { - "title": "Wiz Khalifa feat. Charlie Puth - See You Again (Karaoke Version)", - "id": "P38ZOQhetKA" - }, - { - "title": "Tony Bennett - I Left My Heart In San Francisco (Karaoke Version)", - "id": "7l8AQweKlKo" - }, - { - "title": "Jimin - Like Crazy (Karaoke Version)", - "id": "wMYVIXsMVC4" - }, - { - "title": "Billie Eilish - What Was I Made For? (Karaoke Version From The Barbie Soundtrack)", - "id": "82PgoTSp-0A" - }, - { - "title": "Lady Gaga - Always Remember Us This Way (Karaoke Version)", - "id": "v8h9WHY7-PU" - }, - { - "title": "Vance Joy - Riptide (Karaoke Version)", - "id": "FA-LhXEZw4s" - }, - { - "title": "SUMMER PARTY KARAOKE PLAYLIST FEAT. ABBA, LANA DEL RAY, SHANIA TWAIN & MORE", - "id": "bg5jqlzQnfs" - }, - { - "title": "Miley Cyrus - Jaded (Karaoke Version)", - "id": "gxHMWjsl65M" - }, - { - "title": "TOP 5 KARAOKE OF ALL TIME FEAT. ABBA, JOURNEY, NSYNC & MORE", - "id": "2_ILg8oAELY" - }, - { - "title": "Taylor Swift - Enchanted (Karaoke Version)", - "id": "PQKSO5LII1Y" - }, - { - "title": "BEST OF 2010s KARAOKE WITH LYRICS FEAT. RIHANNA, PITBULL, MAROON 5 & MORE", - "id": "hDj23UNL7WU" - }, - { - "title": "Olivia Rodrigo - deja vu (Karaoke Version)", - "id": "uGTz6sEnEws" - }, - { - "title": "TLC - No Scrubs (Karaoke Version)", - "id": "5JDZidJWIRs" - }, - { - "title": "XG - Left Right (Karaoke Version)", - "id": "MQeTp3gClYU" - }, - { - "title": "THE BARBIE MOVIE KARAOKE (SONGS FROM BARBIE MOVIE SOUNDTRACK WITH LYRICS)", - "id": "7iEJ-O2e2f0" - }, - { - "title": "Rosalรญa & Rauw Alejandro - Beso (Karaoke With Lyrics/Con Letra)", - "id": "lOSL_sCez0g" - }, - { - "title": "Olivia Rodrigo - Vampire (Karaoke Version)", - "id": "zxZC6oRg8GA" - }, - { - "title": "TOP 10 '80s & '90s SONGS OF ALL TIME KARAOKE COMPILATION FEAT. QUEEN, AQUA, PET SHOP BOYS & MORE", - "id": "JxjhExVhZck" - }, - { - "title": "TIKTOK MASHUP JUNE 2023 (KARAOKE SONGS WITH LYRICS)", - "id": "tlZfwBxuH9Y" - }, - { - "title": "Christina Perri - A Thousand Years (Karaoke Version)", - "id": "xVgsSBIiSvc" - }, - { - "title": "Paramore - Ain't It Fun (Karaoke Version)", - "id": "BjMlQSb7cVk" - }, - { - "title": "BEST 2000s KARAOKE SONGS FEAT. CHRISTINA AGUILERA, BLONDIE, 50 CENT & MORE", - "id": "mwtbniLXJvw" - }, - { - "title": "Sade - Smooth Operator (Karaoke Version)", - "id": "U74GeVFS0Bc" - }, - { - "title": "Cรฉline Dion - My Heart Will Go On (Karaoke Version)", - "id": "thq-iwtguUc" - }, - { - "title": "Bad Bunny - Where She Goes (Karaoke Version)", - "id": "F_KJPuH41h8" - }, - { - "title": "Metro Boomin, The Weeknd & 21 Savage - Creepin' (Karaoke Version)", - "id": "3zZCgjWQbvA" - }, - { - "title": "Dua Lipa - Dance The Night (Karaoke Version From The Barbie Movie Soundtrack)", - "id": "Pp16c3UM5i8" - }, - { - "title": "TOP 10 BEST CLASSIC KARAOKE SONGS FEAT. BONNIE TYLER, QUEEN, FRANK SINATRA & MORE", - "id": "9XRuTKig2vQ" - }, - { - "title": "Labrinth & Zendaya - All For Us (Karaoke Version from the Euphoria Soundtrack)", - "id": "lkNASjQRuvI" - }, - { - "title": "TOP 10 COUNTRY KARAOKE SONGS NON-STOP FEAT. MILEY CYRUS, CARRIE UNDERWOOD, DOLLY PARTON & MORE", - "id": "pgvGH65Dwlg" - }, - { - "title": "Macarena - Los Del Rio (Karaoke Version)", - "id": "OxXJFw0gaac" - }, - { - "title": "Deep Blue Something - Breakfast At Tiffany's (Karaoke Version)", - "id": "dteAtnS7CrA" - }, - { - "title": "Smash Mouth - All Star (Karaoke Version)", - "id": "qqakNqO9heI" - }, - { - "title": "KARAOKE PARTY: BEST OF '70s, '80s, '90s, '00s (2 HOURS) KARAOKE WITH LYRICS", - "id": "aqvcTzerGT4" - }, - { - "title": "David Guetta feat. Sia - Titanium (Karaoke Version)", - "id": "PKmUKpfJ-uc" - }, - { - "title": "TOP 1990s NON-STOP KARAOKE SONGS FEAT. TLC, BRITNEY SPEARS, AQUA & MORE", - "id": "-7OL-M81wC0" - }, - { - "title": "Alan Walker - Faded (Karaoke Version)", - "id": "QzhKEo9Qo8U" - }, - { - "title": "Adele - One and Only (Karaoke Version)", - "id": "hDaPEM1z_mA" - }, - { - "title": "Bruno Mars - Grenade (Karaoke Version)", - "id": "feBjWUrGGU8" - }, - { - "title": "NON-STOP CLASSIC KARAOKE HITS (1 HOUR) FEAT. QUEEN, BILLY JOEL, FRANK SINATRA & MORE", - "id": "grIkJ8ySkF4" - }, - { - "title": "The Mamas & The Papas - California Dreamin' (Karaoke Version)", - "id": "ymZmd8Q69lc" - }, - { - "title": "Katy Perry - Roar (Karaoke Version)", - "id": "JnC5egYcqLI" - }, - { - "title": "Shawn Mendes - Stitches (Karaoke Version)", - "id": "8C1p7AHqYVc" - }, - { - "title": "BEST OF 1980s KARAOKE WITH LYRICS (1 HOUR): Cher, Bonnie Tyler, Cyndi Lauper, Rick Astley", - "id": "LyiJLus0yrI" - }, - { - "title": "Taylor Swift - Bad Blood (Karaoke Version)", - "id": "8W2wSQtUHQ4" - }, - { - "title": "One Direction - Best Song Ever (Karaoke Version)", - "id": "XN0zP74SmXw" - }, - { - "title": "John Legend - All of Me (Karaoke Version)", - "id": "WtFbwuDiZwY" - }, - { - "title": "TOP 10 KARAOKE DUETS OF ALL TIME", - "id": "MUSIC BY SONNY & CHER, QUEEN & DAVID BOWIE AND MORE!" - }, - { - "title": "Florence + The Machine - Dog Days Are Over", - "id": "KARAOKE WITH LYRICS FROM GUARDIANS OF THE GALAXY" - }, - { - "title": "Meghan Trainor - Mother", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "TIKTOK HITS 1 HOUR COMPILATION KARAOKE WITH LYRICS BY ICE SPICE, MILEY CYRUS, SZA, BAD BUNNY & MORE!", - "id": "pBB1-fRdd7o" - }, - { - "title": "PinkPantheress, Ice Spice - Boy's a liar Pt. 2 (Karaoke With Lyrics)", - "id": "cSaNKOUPNS8" - }, - { - "title": "Scorpions - Rock You Like A Hurricane (Karaoke With Lyrics)", - "id": "HYUItwcryiI" - }, - { - "title": "TOP 10 '90s HIT KARAOKE SONGS FEAT. BRITNEY SPEARS, MARIAH CAREY, CHER & MORE!", - "id": "_5c0CCMz9gg" - }, - { - "title": "Gloria Gaynor - I Will Survive (Karaoke with Lyrics)", - "id": "mcz6oNrtUyQ" - }, - { - "title": "TOP 10 BEST KARAOKE SONGS OF ALL TIME FROM THE '70s, '80s, '90s AND 2000's!", - "id": "Ez2Xn4oOk4o" - }, - { - "title": "POP HIT SONGS NON-STOP KARAOKE (1 HOUR) MUSIC BY RIHANNA, MILEY CYRUS, KATY PERRY & MORE", - "id": "nxfDJFZnroM" - }, - { - "title": "Lady Gaga - Bloody Mary (Karaoke Version)", - "id": "5Kt6PgVWJlU" - }, - { - "title": "Eslabon Armado - Ella Baila Sola (Karaoke with Lyrics/Letra)", - "id": "6zAlXeRN3CE" - }, - { - "title": "Wicked - Defying Gravity Duet (Karaoke Version)", - "id": "kwRoiSGbnaE" - }, - { - "title": "ARIANA GRANDE TOP HIT SONGS COMPILATION", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "TOP 10 '80s SONGS KARAOKE COMPILATION FEAT. WHAM!, ABBA, VAN HALEN, AND MORE!", - "id": "03VNxL1WQPs" - }, - { - "title": "Kelly Clarkson - Stronger (What Doesn't Kill You)", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Salt-N-Pepa - Push It", - "id": "Karaoke With Lyrics" - }, - { - "title": "d4vd - Here With Me (Karaoke with Lyrics)", - "id": "aZH1vrx1qv4" - }, - { - "title": "BEST KARAOKE DUETS OF ALL TIME FEAT. RIHANNA, LADY GAGA, USHER, PITBULL & MORE", - "id": "R446KoOICNU" - }, - { - "title": "RAYE, 070 Shake - Escapism (Lyrics)", - "id": "j3Jk6Hqp1RU" - }, - { - "title": "Barbie Girl - Aqua (Karaoke Version)", - "id": "_55U9umvylM" - }, - { - "title": "The Weeknd, Ariana Grande - Die For You Remix (Lyrics)", - "id": "jJ8jQTUZct8" - }, - { - "title": "Miley Cyrus - River (Lyrics)", - "id": "f1299YS6ZSs" - }, - { - "title": "BEST COUNTRY SONGS (1 HOUR)", - "id": "KARAOKE WITH LYRICS FEAT. MORGAN WALLEN, CARRIE UNDERWOOD & MORE!" - }, - { - "title": "Morgan Wallen - Last Night (Lyrics)", - "id": "H7JBqXDzmzs" - }, - { - "title": "3 HOUR NON STOP POP MUSIC BY WOMEN KARAOKE COMPILATION", - "id": "MUSIC BY RIHANNA, ADELE, MILEY CYRUS & MORE" - }, - { - "title": "TAYLOR SWIFT BEST SONGS 1 HOUR", - "id": "ERAS TOUR SETLIST (KARAOKE VERSION)" - }, - { - "title": "Taylor Swift - Delicate Lyrics (Karaoke Version)", - "id": "vVDb2pxdyx8" - }, - { - "title": "Morgan Wallen - Thought You Should Know (Lyrics)", - "id": "Karaoke Version" - }, - { - "title": "BEST COUNTRY SONGS FROM WOMEN (KARAOKE WITH LYRICS)", - "id": "TAYLOR SWIFT, DOLLY PARTON, CARRIE UNDERWOOD" - }, - { - "title": "SAINT PATRICK'S DAY PARTY", - "id": "TOP IRISH SONGS (KARAOKE WITH LYRICS)" - }, - { - "title": "Beyoncรฉ - Cuff It (Karaoke Version With Lyrics)", - "id": "pVlcoFgPMO0" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME", - "id": "MUSIC WITH LYRICS BY LADY GAGA, WHITNEY HOUSTON, 2PAC & MORE!" - }, - { - "title": "MILEY CYRUS BEST SONGS (KARAOKE VERSION WITH LYRICS)", - "id": "FLOWERS, PARTY IN THE USA, THE CLIMB & MORE" - }, - { - "title": "Miley Cyrus - The Climb (Lyrics)", - "id": "KARAOKE VERSION" - }, - { - "title": "Hannah Montana - The Best of Both Worlds Theme Song (Lyrics)", - "id": "KARAOKE VERSION" - }, - { - "title": "Sam Smith - Unholy (Lyrics) ft. Kim Petras", - "id": "KARAOKE" - }, - { - "title": "Beauty And A Beat - Justin Bieber feat. Nicky Minaj (Karaoke Version)", - "id": "IZGp2DP_TiU" - }, - { - "title": "MEGA HITS: BEST FEMALE KARAOKE WITH LYRICS SELENA GOMEZ, SZA, RIHANNA, ADELE, ARIANA GRANDE & MORE", - "id": "Igyysu-mVX0" - }, - { - "title": "SELENA GOMEZ BEST HIT SONGS COMPILATION (KARAOKE WITH LYRICS)", - "id": "vSjTt7GeZfU" - }, - { - "title": "Love You Like A Love Song - Selena Gomez & The Scene (Karaoke Version)", - "id": "cDkYDAWZrc0" - }, - { - "title": "Players - Coi Leray", - "id": "TikTok Karaoke with Lyrics" - }, - { - "title": "THE WEEKND BEST HITS COMPILATION (KARAOKE SONGS WITH LYRICS)", - "id": "sZSZ96Da0dg" - }, - { - "title": "Save Your Tears (Remix) - The Weeknd feat. Ariana Grande (KARAOKE WITH LYRICS)", - "id": "s8RVUgG9Rh8" - }, - { - "title": "TIKTOK MASHUP FEBRUARY 2023 (KARAOKE SONGS WITH LYRICS)", - "id": "d-ZSXq9G6nc" - }, - { - "title": "Good Days - SZA", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "BREAKUP SONGS TO CRY TO (1 HOUR KARAOKE WITH LYRICS)", - "id": "FEAT. MILEY CYRUS, SZA, SAM SMITH & MORE!" - }, - { - "title": "TOP LOVE SONGS (1 HOUR KARAOKE WITH LYRICS)", - "id": "FEAT. DUA LIPA, MARIAH CAREY, RIHANNA & MORE" - }, - { - "title": "THE ULTIMATE SUPER BOWL PARTY PLAYLIST (2 HR KARAOKE W/ LYRICS)", - "id": "FEAT. BEYONCร‰, BRUNO MARS & MORE!" - }, - { - "title": "Rude Boy - Rihanna", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "THE BEST SUPER BOWL HALFTIME PERFORMERS (2 HOUR KARAOKE WITH LYRICS)", - "id": "BEYONCร‰, KATY PERRY & MORE" - }, - { - "title": "RIHANNA'S BEST HITS (KARAOKE WITH LYRICS 1 HOUR)", - "id": "FEAT. WE FOUND LOVE, NEEDED ME, DISTURBIA & MORE" - }, - { - "title": "Needed Me - Rihanna", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Never Gonna Not Dance Again - P!NK", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Calm Down (Remix) - Rema Feat. Selena Gomez", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "1 HOUR CELEBRATING BLACK ARTISTS KARAOKE WITH LYRICS", - "id": "FEAT. BEYONCร‰, SZA, DIANA ROSS & MORE" - }, - { - "title": "Formation - Beyoncรฉ", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Flowers - Miley Cyrus", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "BEST OF BEYONCร‰ KARAOKE WITH LYRICS", - "id": "FEAT. BREAK MY SOUL, CRAZY IN LOVE, HALO, & MORE!" - }, - { - "title": "Kill Bill - SZA", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Sure Thing - Miguel (TikTok Trend)", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "1 HOUR BEST OF '90s MUSIC COMPILATION", - "id": "KARAOKE WITH LYRICS BY CHER, TLC, MC HAMMER & MORE" - }, - { - "title": "Something In The Orange - Zach Bryan", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "I'm Too Sexy - Right Said Fred", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "1 HOUR BEST OF '2000s & '2010s MUSIC", - "id": "KARAOKE WITH LYRICS FEAT. BLINK-182, BRITNEY SPEARS & MORE!" - }, - { - "title": "I Was Never There - The Weeknd feat. Gesaffelstein (TikTok Trend)", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Golden Hour - JVKE (TikTok Trend)", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "1 HOUR BEST OF '80s & '90s MUSIC", - "id": "KARAOKE WITH LYRICS FEAT. CINDI LAUPER, Cร‰LINE DION, CHER & MORE!" - }, - { - "title": "Jolene - Dolly Parton", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "BEST SONGS OF 2022", - "id": "KARAOKE WITH LYRICS FEAT. LIZZO, ADELE, HARRY STYLES, GLASS ANIMALS, AND MORE!" - }, - { - "title": "THE BEST NEW YEAR'S EVE PARTY NON STOP PLAYLIST 2022", - "id": "KARAOKE FEAT. PITBULL, DUA LIPA, ABBA & MORE" - }, - { - "title": "BEST TIKTOK SONGS/TRENDS OF 2022", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "2022 CHRISTMAS SONGS NON STOP PLAYLIST", - "id": "Instrumental Holiday Music" - }, - { - "title": "Blue Christmas - Elvis Presley", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Mistletoe - Justin Bieber", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "It's Beginning to Look A Lot Like Christmas - Michael Bublรฉ", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Happy Xmas (War Is Over) - John Lennon", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "2022 CHRISTMAS EVE SONGS", - "id": "INSTRUMENTAL HOLIDAY MUSIC KARAOKE WITH LYRICS" - }, - { - "title": "O Holy Night - Traditional", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Joy To The World - Traditional", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Silent Night - Traditional", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Last Christmas - Wham!", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Hallelujah - Pentatonix", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Christmas Time Is Here - Peanuts Gang (From 'A Charlie Brown Christmas')", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Like It's Christmas - Jonas Brothers", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "CHRISTMAS PARTY KARAOKE PLAYLIST", - "id": "TOP SONGS BY MARIAH CAREY, ARIANA GRANDE, MICHAEL BUBLร‰ & MORE" - }, - { - "title": "Santa's Coming For Us - Sia", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "CHRISTMAS MOVIE KARAOKE SONGS", - "id": "MUSIC FROM MEAN GIRLS, THE GRINCH, HOME ALONE, ELF & MORE!" - }, - { - "title": "Where Are You Christmas? - Faith Hill (From 'How The Grinch Stole Christmas')", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Frosty The Snowman - Traditional", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "CLASSIC CHRISTMAS KARAOKE SONGS", - "id": "MUSIC BY FRANK SINATRA, ELVIS PRESLEY, THE RONETTES, AND MORE!" - }, - { - "title": "Underneath The Tree - Kelly Clarkson", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "SANTA CLAUS KARAOKE WITH LYRICS", - "id": "MUSIC BY KELLY CLARKSON, MARIAH CAREY, JUSTIN BIEBER & MORE!" - }, - { - "title": "Snowman - Sia", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Made You Look - Meghan Trainor (TikTok Trend)", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "HOLIDAY HITS KARAOKE WITH LYRICS", - "id": "MUSIC BY MARIAH CAREY, ARIANA GRANDE, SIA, KELLY CLARKSON & MORE" - }, - { - "title": "Last Christmas - Ariana Grande", - "id": "CHRISTMAS KARAOKE WITH LYRICS" - }, - { - "title": "All I Want For Christmas Is You - Mariah Carey", - "id": "CHRISTMAS KARAOKE WITH LYRICS" - }, - { - "title": "Dreams - Fleetwood Mac", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "The Addams Family Theme Song - Vic Mizzy (From 'Wednesday')", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "BEST POP COUNTRY SONGS (KARAOKE WITH LYRICS)", - "id": "FEAT. SHANIA TWAIN, SAM HUNT, BLAKE SHELTON, & MORE!" - }, - { - "title": "Teenage Dirtbag - Wheatus (TikTok Trend)", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "No - Meghan Trainor (Untouchable TikTok Trend)", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 24)", - "id": "BEST MUSIC FROM SHANIA TWAIN, ABBA, NSYNC & MORE!" - }, - { - "title": "Only Love Can Hurt Like This - Paloma Faith", - "id": "TRENDING TIKTOK HIT KARAOKE WITH LYRICS" - }, - { - "title": "When You're Gone - Shawn Mendes", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "COZY FIREPLACE KARAOKE COMPILATION", - "id": "MUSIC BY ARIANA GRANDE, ED SHEERAN, KHALID & MORE!" - }, - { - "title": "Crazy - Gnarls Barkley (I Remember When TikTok Riff Challenge)", - "id": "KARAOKE INSTRUMENTAL WITH LYRICS" - }, - { - "title": "BEST LATIN SONGS COMPILATION", - "id": "KARAOKE WITH LYRICS FEAT. BAD BUNNY, J-LO, MALUMA, DON OMAR, & MORE!" - }, - { - "title": "Call Me Maybe - Carly Rae Jepsen", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Before He Cheats - Carrie Underwood", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Superstition - Stevie Wonder", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "BEST OF '80s & '90s HALLOWEEN KARAOKE", - "id": "MUSIC BY KATE BUSH, TALKING HEADS, STEVIE NICKS & MORE!" - }, - { - "title": "Zombie - The Cranberries", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "1+ HOURS OF HALLOWEEN PARTY KARAOKE", - "id": "MUSIC BY RIHANNA, THE CRANBERRIES, ROCKWELL, & MORE!" - }, - { - "title": "(Don't Fear) The Reaper - Blue Oyster Cult", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Monster - Shawn Mendes & Justin Bieber", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "HALLOWEEN ROCK KARAOKE WITH LYRICS", - "id": "FEAT. THE CRANBERRIES, AC/DC, OZZY OSBOURNE, MUSE & MORE" - }, - { - "title": "SPOOKY HALLOWEEN SONGS KARAOKE WITH LYRICS", - "id": "FEAT BILLIE EILISH, SANTANA, FOSTER THE PEOPLE & MORE!" - }, - { - "title": "DAY-O (Banana Boat Song from Beetlejuice) - Harry Belafonte", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "I Want Candy - Bow Wow Wow", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "1 HOUR PUMPKIN CARVING HALLOWEEN PLAYLIST", - "id": "KARAOKE FROM DUA LIPA, LADY GAGA, EMINEM, & MORE!" - }, - { - "title": "Blinding Lights - The Weeknd", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "HALLOWEEN HORROR PLAYLIST", - "id": "KARAOKE WITH LYRICS FEAT. RIHANNA, KE$HA, BILLIE EILISH, AND MORE!" - }, - { - "title": "Mary On A Cross - Ghost", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Psycho Killer - Talking Heads", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "COZY COTTAGE AUTUMN SONGS", - "id": "KARAOKE WITH LYRICS FEAT. OLIVIA RODRIGO, SZA, FRANK OCEAN & MORE!" - }, - { - "title": "1 HOUR OF THE BEST HIP HOP SONGS", - "id": "KARAOKE WITH LYRICS BY EMINEM, SNOOP DOGG, 2PAC, NELLY, & MORE!" - }, - { - "title": "Betty (Get Money) - Yung Gravy", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Bones - Imagine Dragons", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "TIKTOK TRENDING HITS 2022 VOL 2", - "id": "KARAOKE WITH LYRICS FEAT. YUNG GRAVY, LIZZO, HARRY STYLES, & MORE!" - }, - { - "title": "2 Be Loved (Am I Ready) - Lizzo", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Cool Kids - Echosmith", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "What's My Name - Rihanna feat. Drake", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "BEST POP SONGS (KARAOKE WITH LYRICS) FEAT. OLIVIA RODRIGO, LADY GAGA, HARRY STYLES, DUA LIPA & MORE", - "id": "_AtO50HYg3c" - }, - { - "title": "Unstoppable - Sia", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Ojitos Lindos - Bad Bunny feat. Bomba Estรฉreo", - "id": "KARAOKE (WITH LYRICS/CON LETRA)" - }, - { - "title": "BEST 2010s SONGS (KARAOKE WITH LYRICS)", - "id": "MUSIC FROM LADY GAGA, THE WEEKND, BILLIE EILISH, AND MORE!" - }, - { - "title": "Fireflies - Owl City", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Titรญ Me Preguntรณ - Bad Bunny", - "id": "KARAOKE (WITH LYRICS/LETRA)" - }, - { - "title": "BEST COUNTRY SONGS (KARAOKE WITH LYRICS) FEAT. CARRIE UNDERWOOD, DOLLY PARTON, LUKE BRYAN & MORE!", - "id": "gt7LcEtz-d4" - }, - { - "title": "I Like You (A Happier Song) - Post Malone feat. Doja Cat", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Left and Right - Charlie Puth feat. Jung Kook of BTS", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Big Energy - Latto (Karaoke Version)", - "id": "AK5CiwVODLc" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME VOL. 23", - "id": "BEST MUSIC FROM ARIANA GRANDE, QUEEN, ABBA & MORE!" - }, - { - "title": "Ring of Fire - Johnny Cash (Karaoke Version)", - "id": "6X0nToOJEyE" - }, - { - "title": "BEST '80s and '90s KARAOKE SONGS WITH LYRICS", - "id": "vZeSiLtC6m4" - }, - { - "title": "SWEET CAROLINE (Good Times Never Seemed So Good) by Neil Diamond", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "GIVE ME EVERTHING (DUET) by Pitbull feat Ne-Yo Afrojack & Nayer", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "BEST 2000s HITS feat. Beyoncรฉ, Lady Gaga, Taylor Swift, Eminem, & more!", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Music For A Sushi Restaurant - Harry Styles", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Love Story (Taylor's Version) - Taylor Swift", - "id": "pUZi8qOK73Q" - }, - { - "title": "One Kiss - Calvin Harris & Dua Lipa (Karaoke With Lyrics)", - "id": "TJePE5eHedI" - }, - { - "title": "TikTok Trending Hits Karaoke Compilation VIRAL MUSIC from Kate Bush, Harry Styles, Doja Cat, & more!", - "id": "9iNsBDqQMrc" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 22): BEST MUSIC from Adele, Rihanna, Nirvana, Seal, Pearl Jam", - "id": "-0it4rzFODQ" - }, - { - "title": "1990's Music Hits You Forgot About (Karaoke) Toni Braxton, Ace Of Base, Backstreet Boys, 2Pac & More", - "id": "4UGNxI4putg" - }, - { - "title": "BAD BUNNY - VETE", - "id": "YHLQMDLG (Karaoke with Lyrics)" - }, - { - "title": "Michael Jackson - Will You Be There (Karaoke with Lyrics)", - "id": "ziN3CSCHGlw" - }, - { - "title": "1980's Music Hits You Forgot About (Karaoke Version) The Police, Madonna, Richard Marx, Cher & More!", - "id": "hIzxz_1Wtew" - }, - { - "title": "Metallica - Nothing Else Matters (Karaoke with Lyrics)", - "id": "uHFaBttlSSM" - }, - { - "title": "Pet Shop Boys - West End Girls (Karaoke with Lyrics)", - "id": "9Tqq_BAbUKg" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 21): BEST MUSIC from Alesso, Ariana Grande, Bruno Mars & Adele", - "id": "e3OaLyABG0U" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 20): BEST MUSIC from Oasis, Panic At The Disco, Green Day", - "id": "z6VB2efQdXA" - }, - { - "title": "Beyoncรฉ - Crazy In Love ft. JAY Z (Karaoke With Lyrics)", - "id": "-RwFOzjG6o0" - }, - { - "title": "Toto - Rosanna (Karaoke With Lyrics)", - "id": "hBYqyp7rHLw" - }, - { - "title": "Garth Brooks - Two Pina Coladas (Karaoke With Lyrics)", - "id": "pER7XqQMl3U" - }, - { - "title": "Abba - Money, Money, Money (Karaoke With Lyrics)", - "id": "POXcSzSxPE4" - }, - { - "title": "Milli Vanilli - Girl You Know It's True (Karaoke With Lyrics)", - "id": "UgZ2zcyWMs4" - }, - { - "title": "Michael Jackson - Donโ€™t Stop 'Til You Get Enough (Karaoke With Lyrics)", - "id": "GXHquFwJmo0" - }, - { - "title": "BEST KARAOKE WITH LYRICS (1 HOUR) Non Stop Karaoke Party Presented by @StingrayKaraoke", - "id": "zEUYsSaY9y4" - }, - { - "title": "Mabel, 24kGoldn - Overthinking (Karaoke With Lyrics)", - "id": "F9AF0HhJ3H0" - }, - { - "title": "Lady Gaga - Hold My Hand (Karaoke With Lyrics)", - "id": "I3TVy4Jp6Xo" - }, - { - "title": "Harry Styles - Late Night Talking (Karaoke)", - "id": "b22Sd5AtS3c" - }, - { - "title": "2 HOUR KARAOKE NON STOP Karaoke With Lyrics Best Music from the '80s, '90s, Y2K, 2010's & Today", - "id": "Annfz6PbVko" - }, - { - "title": "George Michael - Father Figure (Karaoke With Lyrics)", - "id": "jgle8ahOfLs" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 19): BEST MUSIC from George Michael, Madonna, Dua Lipa & More!", - "id": "FCvbWu6Att4" - }, - { - "title": "Sade - Smooth Operator (Karaoke With Lyrics)", - "id": "cvdqX1GwpYc" - }, - { - "title": "Kool & The Gang - Cherish (Karaoke With Lyrics)", - "id": "Jt3bP8swPpM" - }, - { - "title": "Baltimora - Tarzan Boy (Karaoke With Lyrics)", - "id": "m67p5ddhFxw" - }, - { - "title": "Madonna - Vogue (Karaoke With Lyrics) @StingrayKaraoke", - "id": "H5KByefD0rA" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 18): BEST MUSIC from Def Leppard, Sheryl Crow, Sia & More!", - "id": "DZttXf_riCI" - }, - { - "title": "Avril Lavigne - Complicated (Karaoke With Lyrics) @StingrayKaraoke", - "id": "PJCWNWoALZo" - }, - { - "title": "Michael Bolton - How Am I Supposed To Live Without You (Karaoke With Lyrics) @StingrayKaraoke", - "id": "SROOh1yO5RI" - }, - { - "title": "BEST SOFT ROCK SONGS from the '70s, '80s & 90s", - "id": "Elton John, Queen, Aerosmith, Garth Brooks & More!" - }, - { - "title": "HIP HOP & RAP KARAOKE PLAYLIST Karaoke with Lyrics by @StingrayKaraoke", - "id": "xeVEgAEV7Jw" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 17): BEST MUSIC from Michael Jackson, The Police, David Bowie", - "id": "TXkJAi3EZac" - }, - { - "title": "TOP 20 BEST KARAOKE WITH LYRICS from the '80s, '90s, Y2K, 2010's & Today!", - "id": "d3rHQ1zpH9w" - }, - { - "title": "Kate Bush - Running Up That Hill (Karaoke With Lyrics) @StingrayKaraoke", - "id": "gSxdcAnn00I" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 16): BEST MUSIC from Whitney Houston, Bonnie Tyler & More!", - "id": "DSyYxoA7QGc" - }, - { - "title": "BEST KARAOKE WITH LYRICS: POP MUSIC from the '80s, '90s, Y2K, 2010's & Today", - "id": "wMXkNn-LFEc" - }, - { - "title": "TOP 30 BEST KARAOKE WITH LYRICS from the '80s, '90s, Y2K, 2010's & Today!", - "id": "I4XIzerwNlc" - }, - { - "title": "TOP 30 BEST KARAOKE WITH LYRICS from the '80s & '90s", - "id": "Queen, Pink Floyd, Europe & More!" - }, - { - "title": "2021 - 2022 TOP HITS KARAOKE WITH LYRICS (Best Hit Music Playlist)", - "id": "Presented by @StingrayKaraoke" - }, - { - "title": "TOP 50 BEST '80s SONGS", - "id": "KARAOKE WITH LYRICS @StingrayKaraoke" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 15): BEST MUSIC from Tina Turner, a-ha, Michael Jackson & More!", - "id": "TveMs3UlrT4" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 14): BEST MUSIC from Michael Jackson, ABBA, Cรฉline Dion & More!", - "id": "zYGXZzfLpmU" - }, - { - "title": "Spandau Ballet - True (Karaoke With Lyrics) @StingrayKaraoke", - "id": "Wlqga9_77z8" - }, - { - "title": "Technotronic - Pump Up The Jam (Karaoke With Lyrics) @StingrayKaraoke", - "id": "Sx8L7X2MBXw" - }, - { - "title": "R.E.M. - Losing My Religion (Karaoke With Lyrics) @StingrayKaraoke", - "id": "U_sGRlm746s" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 13): BEST MUSIC from Metallica, Queen, Ozzy Osbourne, Green Day", - "id": "fl1tH7uA_sk" - }, - { - "title": "BEST OF '80s & '90s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "BEST OF '80s MUSIC", - "id": "Non Stop Karaoke With Lyrics @StingrayKaraoke John Lennon, Bon Jovi & More!" - }, - { - "title": "Scorpions - Still Loving You (Karaoke With Lyrics) @StingrayKaraoke", - "id": "41wclfz5maI" - }, - { - "title": "BEST OF '90s MUSIC", - "id": "Non Stop Karaoke With Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "The Clash - Should I Stay or Should I Go (Karaoke With Lyrics) @StingrayKaraoke", - "id": "XBkGgsPij78" - }, - { - "title": "The Verve - Bitter Sweet Symphony (Karaoke With Lyrics) @StingrayKaraoke", - "id": "MFzbC_x-4vg" - }, - { - "title": "Whitney Houston - I Will Always Love You (Karaoke With Lyrics) @StingrayKaraoke", - "id": "6BXivcr9uvE" - }, - { - "title": "Nirvana - Smells Like Teen Spirit (Karaoke With Lyrics) @StingrayKaraoke", - "id": "ZMi842RMVB4" - }, - { - "title": "BEST OF '80s & '90s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "Coolio - Gangsta's Paradise (feat. L.V.) (Karaoke With Lyrics)@StingrayKaraoke", - "id": "mIRmaR3VYuQ" - }, - { - "title": "Michael Jackson - Dirty Diana (Karaoke With Lyrics)@StingrayKaraoke", - "id": "AmcY3P2siSU" - }, - { - "title": "Jack Harlow - First Class (Karaoke With Lyrics) @StingrayKaraoke", - "id": "Z4V3OB6nEGc" - }, - { - "title": "Harry Styles - As It Was (Karaoke With Lyrics)@StingrayKaraoke", - "id": "qRZ31dAKIe0" - }, - { - "title": "Lizzo - About Damn Time (Karaoke With Lyrics)@StingrayKaraoke", - "id": "xJLJkMi7GkY" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 12): BEST MUSIC from Roxette, Oasis, Nirvana, Hoobastank & More", - "id": "3q_JbCKhoxk" - }, - { - "title": "Alice Cooper - Poison (Karaoke With Lyrics) @StingrayKaraoke", - "id": "8YDBelzzbGc" - }, - { - "title": "Roxette - It Must Have Been Love (Karaoke With Lyrics) @StingrayKaraoke", - "id": "vfseyAAQ4aY" - }, - { - "title": "Roxette - Listen To Your Heart (Karaoke With Lyrics) @StingrayKaraoke", - "id": "YSeHF46sCM4" - }, - { - "title": "Tears For Fears - Everybody Wants To Rule The World (Karaoke With Lyrics)@StingrayKaraoke", - "id": "hpb6RDVpqHk" - }, - { - "title": "Bruce Springsteen - Dancing In the Dark (Karaoke With Lyrics) @StingrayKaraoke", - "id": "PDd-cm2xrlk" - }, - { - "title": "Edith Whiskers - Home (Karaoke With Lyrics) @StingrayKaraoke", - "id": "KW6GCLit52I" - }, - { - "title": "Patrick Swayze - She's Like The Wind (Karaoke With Lyrics) @StingrayKaraoke", - "id": "pxE93OuR_A8" - }, - { - "title": "SATURDAY NIGHT KARAOKE PARTY", - "id": "Oldies but Goldies Non Stop Karaoke With Lyrics@StingrayKaraoke" - }, - { - "title": "Dead Or Alive - You Spin Me Round (Like a Record) (Karaoke With Lyrics)@StingrayKaraoke", - "id": "Gl5siTIFtnU" - }, - { - "title": "Laura Branigan - Self Control (Karaoke With Lyrics)@StingrayKaraoke", - "id": "ujpirIs7h0Q" - }, - { - "title": "Journey - Don't Stop Believin' (Karaoke With Lyrics)@StingrayKaraoke", - "id": "H9jyacXmVTQ" - }, - { - "title": "Dire Straits - Walk Of Life (Karaoke With Lyrics)@StingrayKaraoke", - "id": "lsNBGDpmedw" - }, - { - "title": "The Outfield - Your Love (Karaoke With Lyrics)@StingrayKaraoke", - "id": "48mNqTE5t3g" - }, - { - "title": "Berlin - Take My Breath Away (Karaoke With Lyrics)@StingrayKaraoke", - "id": "6zrfAyIMuos" - }, - { - "title": "BEST OF '80s & '90s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "Foreigner - I Want To Know What Love Is (Karaoke With Lyrics)@StingrayKaraoke", - "id": "FIQ_qcYckRQ" - }, - { - "title": "Madonna - La Isla Bonita (Karaoke With Lyrics)@StingrayKaraoke", - "id": "iJPwkBqJRyQ" - }, - { - "title": "AC/DC - Back In Black (Karaoke With Lyrics)@StingrayKaraoke", - "id": "s-dMoiDQ_II" - }, - { - "title": "Bobby McFerrin - Don't Worry Be Happy (Karaoke With Lyrics)@StingrayKaraoke", - "id": "bLpjpPaxi0A" - }, - { - "title": "The Police - Every Breath You Take (Karaoke With Lyrics)@StingrayKaraoke", - "id": "IhHUEenR3EU" - }, - { - "title": "U2 - I Still Haven't Found What I'm Looking For (Karaoke With Lyrics)@StingrayKaraoke", - "id": "PI2yFTLIgz8" - }, - { - "title": "BEST OF MICHAEL JACKSON", - "id": "1 Hour Non Stop Karaoke with Lyrics Presented by @StingrayKaraoke" - }, - { - "title": "BEST OF '80s & '90s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "BEST OF '80s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "BEST OF '90s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "BEST OF '90s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "BEST OF '80s & '90s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "BEST OF '80s & '90s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "BEST OF '80s & '90s MUSIC", - "id": "Karaoke with Lyrics Hosted by @StingrayKaraoke" - }, - { - "title": "GAYLE - abcdefu (Karaoke with Lyrics)", - "id": "vU2tS4HquBI" - }, - { - "title": "BEST OF '80s MUSIC", - "id": "3 HOURS NON STOP KARAOKE PARTY Hosted by @StingrayKaraoke" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 11): BEST MUSIC from Beyoncรฉ, Eminem, Kelly Clarkson & More!", - "id": "Hu45Z450Sz8" - }, - { - "title": "BEST SONGS FROM 2007 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "Y2K: BEST OF 2005 & 2006 MUSIC", - "id": "Karaoke with Lyrics presented by @StingrayKaraoke" - }, - { - "title": "Imagine Dragons - Enemy (Karaoke with Lyrics)", - "id": "0RcRWiFGhhE" - }, - { - "title": "Y2K: BEST OF 2002, 2003 & 2004 MUSIC", - "id": "Karaoke with Lyrics presented by @StingrayKaraoke" - }, - { - "title": "Y2K: BEST OF 2000 & 2001 MUSIC", - "id": "Karaoke with Lyrics presented by @StingrayKaraoke" - }, - { - "title": "Charlie Puth - Light Switch (Karaoke with Lyrics)", - "id": "JJNbCsdjL9c" - }, - { - "title": "DEF LEPPARD - Pour Some Sugar On Me", - "id": "Karaoke with Lyrics by @StingrayKaraoke" - }, - { - "title": "Adele - I Drink Wine (Karaoke With Lyrics)", - "id": "UDbMGOpPbzQ" - }, - { - "title": "3 HOURS NON STOP BEST KARAOKE WITH LYRICS", - "id": "Best Of '60s, '70s, '80s, '90s, Y2K & Today!" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 10): BEST MUSIC from Alicia Keys, Michael Bublรฉ, David Bowie", - "id": "K4Mi39LQ91s" - }, - { - "title": "TOP 30 BEST LOVE SONGS", - "id": "KARAOKE WITH LYRICS@StingrayKaraoke (2 HOURS NON STOP)" - }, - { - "title": "Alan Walker - Faded (Karaoke With Lyrics)", - "id": "0GdIMGbTH2U" - }, - { - "title": "AURORA - Runaway (Karaoke With Lyrics)", - "id": "daFwCVNJFtk" - }, - { - "title": "The Carpenters - Top Of The World (Karaoke With Lyrics)", - "id": "KNcY61AZYt0" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 9): BEST MUSIC from Lady Gaga, Katy Perry, Rihanna & More!", - "id": "fnTJX-Llfes" - }, - { - "title": "TOP 10 BEST LOVE SONGS FROM THE '80s", - "id": "Karaoke with Lyrics @StingrayKaraoke" - }, - { - "title": "TOP 10 BEST LOVE SONGS FROM THE '90s", - "id": "Cรฉline Dion, Mariah Carey, Backstreet Boys & More!" - }, - { - "title": "TOP 10 BEST LOVE SONGS FROM THE '60s & THE '70s", - "id": "The Rolling Stones, Carpenters, ABBA, Cher & More!" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 8): BEST MUSIC from Cher, Poison, Pet Shop Boys & More!", - "id": "hJ3jfg2_jaw" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 7): BEST MUSIC from Beyoncรฉ, Rihanna, Eminem & More!", - "id": "ra110USUqz8" - }, - { - "title": "t.A.T.u. - All The Things She Said (Karaoke With Lyrics)", - "id": "CXmJZOCRS8Y" - }, - { - "title": "Fireboy DML & Ed Sheeran - Peru (Karaoke With Lyrics)", - "id": "7Qh1i_xw3OE" - }, - { - "title": "Charlie Puth - Light Switch (Karaoke With Lyrics)", - "id": "r-vA6tHslos" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 6): BEST MUSIC from the '70s, '80s', '90s & Y2K by Stingray", - "id": "NbdAlvkij14" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 5): BEST MUSIC from the '70s, '80s', '90s & Y2K by Stingray", - "id": "-EHGYYOkwJQ" - }, - { - "title": "Dan + Shay - Glad You Exist (Karaoke With Lyrics)", - "id": "r7BeIgV9ZM8" - }, - { - "title": "TOP 10 BEST KARAOKE WITH LYRICS from 2010 - 2020", - "id": "Female Artist Edition" - }, - { - "title": "Lauren Spencer Smith - Fingers Crossed (Karaoke With Lyrics)", - "id": "T7NraaI5PzE" - }, - { - "title": "The Weeknd - Out Of Time (Karaoke With Lyrics)", - "id": "fOiSsP1Kqhk" - }, - { - "title": "BEST OF '90s KARAOKE WITH LYRICS", - "id": "1 HOUR NON STOP KARAOKE with @StingrayKaraoke" - }, - { - "title": "TOP 30 BEST KARAOKE WITH LYRICS from the '80s, '90s, 2000's and Today! 2 HOURS NON STOP KARAOKE", - "id": "Zs8n49yUYLw" - }, - { - "title": "BEST SONGS FROM 2000 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "Alesso, Katy Perry - When I'm Gone (Karaoke With Lyrics)", - "id": "pPXBbDCRAh0" - }, - { - "title": "The Weeknd - Best Friends (Karaoke With Lyrics)", - "id": "H0DErko0ixg" - }, - { - "title": "The Weeknd - Sacrifice (Karaoke With Lyrics)", - "id": "VeLhfKBxxHg" - }, - { - "title": "BEST SONGS FROM 1990 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "2022 NEW YEAR'S EVE NON STOP KARAOKE WITH LYRICS", - "id": "BEST OF '70s, '80s, '90s, 2000s, 2010s & Today" - }, - { - "title": "BEST OF 2021 MUSIC IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1999 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1995 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1997 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "2021 CHRISTMAS SONGS NON STOP PLAYLIST", - "id": "Instrumental Holiday Music" - }, - { - "title": "Dolly Parton - Silent Night (Karaoke with Lyrics)", - "id": "AoCHZlnmCs8" - }, - { - "title": "Pentatonix - Hallelujah (Karaoke with Lyrics)", - "id": "2-HdWsxN0v4" - }, - { - "title": "Traditional - Twelve Days Of Christmas (Karaoke with Lyrics)", - "id": "oeiUngUO57A" - }, - { - "title": "Traditional - Jingle Bells (Karaoke with Lyrics)", - "id": "DDXgYDn3XPo" - }, - { - "title": "Traditional - It's The Most Wonderful Time Of The Year (Karaoke with Lyrics)", - "id": "Ulc__ajOqsU" - }, - { - "title": "John Lennon - Happy Xmas (War Is Over) (Karaoke with Lyrics)", - "id": "a57U7dG-Q4s" - }, - { - "title": "Traditional - Frosty The Snowman (Karaoke with Lyrics)", - "id": "UxPkarkl8ns" - }, - { - "title": "Traditional - Deck The Halls (Karaoke with Lyrics)", - "id": "6HQ3OLwF8rg" - }, - { - "title": "Wham! - Last Christmas (Karaoke with Lyrics)", - "id": "1tLggocEjcA" - }, - { - "title": "Perry Como - Have Yourself A Merry Little Christmas (Karaoke with Lyrics)", - "id": "5gBUjUPsmw0" - }, - { - "title": "Traditional - Silver Bells (Karaoke with Lyrics)", - "id": "YBrS7UFZuEE" - }, - { - "title": "Johnny Mathis - Sleigh Ride (Karaoke with Lyrics)", - "id": "xxjYj5iecl4" - }, - { - "title": "Traditional - Winter Wonderland (Karaoke with Lyrics)", - "id": "iXYzjN2uB_c" - }, - { - "title": "Josรฉ Feliciano - Feliz Navidad (Karaoke with Lyrics)", - "id": "C6VkxaOc1iw" - }, - { - "title": "Bobby Helms - Jingle Bell Rock (Karaoke with Lyrics)", - "id": "GzX7FgsTL_0" - }, - { - "title": "Mariah Carey - All I Want for Christmas Is You (Karaoke with Lyrics)", - "id": "0K-uCygyHpo" - }, - { - "title": "BEST SONGS FROM 1994 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1991 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1992 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1998 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1993 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1996 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "Justin Bieber - Christmas Love (Karaoke With Lyrics)", - "id": "OLX4Villo7U" - }, - { - "title": "Taylor Swift- Last Christmas (Karaoke With Lyrics)", - "id": "AZIzBFjvz74" - }, - { - "title": "Dolly Parton - Cuddle Up, Cozy Down Christmas (with Michael Bublรฉ) (Karaoke With Lyrics)", - "id": "xuvdReMmA6U" - }, - { - "title": "Jonas Brothers - Like It's Christmas (Karaoke With Lyrics)", - "id": "UsUFLYwwhWo" - }, - { - "title": "Britney Spears - My Only Wish (This Year) (Karaoke With Lyrics)", - "id": "vps80OZSovc" - }, - { - "title": "Christina Aguilera - Merry Christmas, Baby ft. Dr. John (Karaoke with Lyrics)", - "id": "iNojjfP9zAQ" - }, - { - "title": "Elvis Presley - Blue Christmas (Karaoke with Lyrics)", - "id": "Q-Lx1f51xvY" - }, - { - "title": "Top 10 Most Popular Christmas Holiday Songs in Karaoke with Lyrics by @StingrayKaraoke", - "id": "sU_U9DZMNyQ" - }, - { - "title": "Kelly Clarkson & Ariana Grande - Santa, Canโ€™t You Hear Me (Karaoke With Lyrics)", - "id": "Yx-4M3SCkpk" - }, - { - "title": "Billie Eilish - Male Fantasy (Karaoke With Lyrics)", - "id": "2pwDW43vaXE" - }, - { - "title": "Adele - Oh My God (Karaoke With Lyrics)", - "id": "U6zpQFdlWNI" - }, - { - "title": "Classic Holiday Songs in Karaoke With Lyrics", - "id": "Karaoke with Lyrics by @StingrayKaraoke" - }, - { - "title": "Traditional Holiday Music", - "id": "Christmas Songs Karaoke With Lyrics" - }, - { - "title": "BEST SONGS FROM 1986 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1985 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1982 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1983 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "Adele - To Be Loved (Official Lyric Video)", - "id": "kno1XBKxrgc" - }, - { - "title": "BEST SONGS FROM 1980 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1988 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @Stingray Karaoke" - }, - { - "title": "Taylor Swift - All Too Well (Taylor's Version) (Karaoke With Lyrics)", - "id": "lr3keJ09v24" - }, - { - "title": "BEST SONGS FROM 1981 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1989 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1984 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by @StingrayKaraoke" - }, - { - "title": "BEST SONGS FROM 1987 IN KARAOKE WITH LYRICS", - "id": "Non Stop Karaoke Music Playlist by@StingrayKaraoke" - }, - { - "title": "BEST OF '80s & '90s MUSIC", - "id": "Karaoke with Lyrics presented by @StingrayKaraoke" - }, - { - "title": "Men Without Hats - The Safety Dance (Karaoke with Lyrics)", - "id": "czt8pAHZjzE" - }, - { - "title": "Bruno Mars, Anderson .Paak, Silk Sonic - Smokin Out The Window (Karaoke With Lyrics)", - "id": "moe_1PsUOlU" - }, - { - "title": "Post Malone, The Weeknd - One Right Now (Karaoke with Lyrics)", - "id": "_F-rRZsPj4Y" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 4): BEST MUSIC from the '70s, '80s', '90s & Y2K by Stingray", - "id": "HwICT7iekvM" - }, - { - "title": "Swedish House Mafia and The Weeknd - Moth To A Flame (Karaoke with Lyrics)", - "id": "kcV7moXs2VA" - }, - { - "title": "GIRL POWER MUSIC (Part 2)", - "id": "Karaoke With Lyrics (Cher, Beyoncรฉ, ABBA, Rihanna, Dua Lipa & More! )" - }, - { - "title": "GIRL POWER MUSIC (Part 1)", - "id": "Karaoke With Lyrics (Whitney Houston, Cyndi Lauper, Blondie & More!)" - }, - { - "title": "ABBA - Gimme! Gimme! Gimme! (A Man After Midnight) (Karaoke with Lyrics)", - "id": "g5_bOYO7ExU" - }, - { - "title": "Radiohead - Creep (Radio Version) (Karaoke With Lyrics)", - "id": "DZwTZsA663E" - }, - { - "title": "Rockwell - Somebody's Watching Me (Karaoke With Lyrics)", - "id": "tFsOeoVqCfU" - }, - { - "title": "2 HOURS NON-STOP HALLOWEEN MUSIC Karaoke With Lyrics Playlist presented by @StingrayKaraoke", - "id": "boDGjIorPxM" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 3): BEST MUSIC from the '70s, '80s', '90s & Y2K by Stingray", - "id": "fm0I4MTw4Lc" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 2): BEST MUSIC from the '80s', '90s & Y2K by @StingrayKaraoke", - "id": "bv_MQnwbWA4" - }, - { - "title": "Taylor Swift - Wildest Dreams (Karaoke with Lyrics)", - "id": "A_eu2nqEkZU" - }, - { - "title": "BEST KARAOKE SONGS OF ALL TIME (VOL. 1): BEST MUSIC from the '70s, '80s', '90s & Y2K by Stingray", - "id": "WP8_6jlOVJ8" - }, - { - "title": "Mรฅneskin - MAMMAMIA (Karaoke With Lyrics)", - "id": "yhxyJ-cUN48" - }, - { - "title": "Justin Bieber - Hold On (Karaoke With Lyrics)", - "id": "vrKdg0wRCI4" - }, - { - "title": "Adele - Easy On Me (Karaoke With Lyrics)", - "id": "A_p82uiUXPo" - }, - { - "title": "Eric Church - Hell Of A View (Karaoke with Lyrics)", - "id": "f9zudjFCyKE" - }, - { - "title": "Jason Aldean & Carrie Underwood - If I Didn't Love You (Karaoke With Lyrics)", - "id": "ICiDkTA-Kxk" - }, - { - "title": "Kali Uchis โ€“ telepatรญa (Lyrics)", - "id": "aAQYUzqmGXM" - }, - { - "title": "Giveon - Heartbreak Anniversary (Karaoke with Lyrics)", - "id": "XdqtJ-wAd2M" - }, - { - "title": "1 HOUR NON STOP KARAOKE PARTY: Best songs from Female Artists", - "id": "I4rqM4ZHJrI" - }, - { - "title": "BEST OF POP MUSIC", - "id": "Halloween Karaoke Party" - }, - { - "title": "Frank Sinatra - Witchcraft (Karaoke with Lyrics)", - "id": "gZGHrBuM2w8" - }, - { - "title": "Eminem ft. Rihanna - The Monster (Karaoke With Lyrics)", - "id": "3W3DrVhad_Y" - }, - { - "title": "Rihanna - Disturbia (Karaoke With Lyrics)", - "id": "JNQFMrP39sY" - }, - { - "title": "ABBA - Mamma Mia (Karaoke With Lyrics)", - "id": "iCt0fQlUw3c" - }, - { - "title": "ABBA - Knowing Me, Knowing You (Karaoke With Lyrics)", - "id": "uvXH5aQOqKo" - }, - { - "title": "ABBA - Super Trouper (Karaoke with Lyrics)", - "id": "aklPW7hXxz4" - }, - { - "title": "Michael Bublรฉ - Spiderman Theme (Karaoke with Lyrics)", - "id": "MObaiEZKE_s" - }, - { - "title": "David Guetta - She Wolf (Falling To Pieces) ft. Sia (Karaoke with Lyrics)", - "id": "P9Hm_CrreRM" - }, - { - "title": "twenty one pilots - Heathens ( Karaoke with Lyrics)", - "id": "lAoDvyW1lMo" - }, - { - "title": "Best Of '70s Music", - "id": "Halloween Karaoke Party" - }, - { - "title": "Lady Gaga - Bad Romance (Karaoke with Lyrics)", - "id": "G0gDu5PXho4" - }, - { - "title": "Kiss - I Was Made For Lovin' You (Karaoke with Lyrics)", - "id": "Oz2EWhItdQ0" - }, - { - "title": "BEST OF '80s & '90s HALLOWEEN PARTY SONGS: Ghostbusters, Zombie, Dragula & More!", - "id": "JkpFRuavEZg" - }, - { - "title": "Backstreet Boys - Everybody (Backstreet's Back) (Karaoke with Lyrics)", - "id": "zBQ8f3EsDIU" - }, - { - "title": "Kesha - Cannibal (Karaoke with Lyrics)", - "id": "n2QMpy8AmJo" - }, - { - "title": "Ava Max - Sweet but Psycho (Karaoke with Lyrics)", - "id": "qs_0aICiBGM" - }, - { - "title": "TOP 10 HALLOWEEN SONGS 2021", - "id": "Most Popular Music For Halloween & Spooky Season" - }, - { - "title": "Katy Perry - Dark Horse (Karaoke with Lyrics) ft. Juicy J", - "id": "WGhzNx86Dis" - }, - { - "title": "Taylor Swift - Bad Blood (Karaoke with Lyrics)", - "id": "zuYVnynJ6Uc" - }, - { - "title": "LISA - 'MONEY' (Karaoke With Lyrics)", - "id": "sK3TNXORwH0" - }, - { - "title": "Lil Nas X - AM I DREAMING ft. Miley Cyrus (Karaoke with Lyrics)", - "id": "B8KKEzltoBA" - }, - { - "title": "Lil Nas X - THATS WHAT I WANT (Karaoke with Lyrics)", - "id": "XlvW_HYN1No" - }, - { - "title": "Glass Animals - Heat Waves (Karaoke With Lyrics)", - "id": "6rr8bvYei1w" - }, - { - "title": "BEST MUSIC 2021 in Karaoke with Lyrics presented by @StingrayKaraoke", - "id": "9Hj9ztfE-zU" - }, - { - "title": "BEST OF K-POP: BTS, BLACKPINK, LISA, Stray Kids (Karaoke with Lyrics)", - "id": "qvuNkLHxyJU" - }, - { - "title": "BEST OF ABBA (Part 2): Super Trouper, Fernando, Gimme Gimme Gimme, Dancing Queen & More! (Karaoke)", - "id": "T5A11gHDcFw" - }, - { - "title": "BEST OF ABBA (Part 1): Mamma Mia, Voulez-Vous, Chiquitita, The Winner Takes It All & More (Karaoke)", - "id": "8yeyBmWeC1c" - }, - { - "title": "BEST OF '90s MUSIC in LEAD VOCAL KARAOKE: Whitney Houston, Stevie Wonder, Bonnie Tyler & More!", - "id": "XU2yO-tEya8" - }, - { - "title": "BEST OF '80s MUSIC in LEAD VOCAL KARAOKE: Whitney Houston, Stevie Wonder, Bonnie Tyler & More!", - "id": "IG-Np5a_vg0" - }, - { - "title": "BEST OF '70s MUSIC in LEAD VOCAL KARAOKE: ABBA, Elton John, Lynyrd Skynyrd, Billy Joel & More!", - "id": "WD8OpMMxnMM" - }, - { - "title": "BEST OF '60s MUSIC in LEAD VOCAL KARAOKE: Otis Redding, Creedence Clearwater Revival & Neil Diamond", - "id": "o_hbW1PrzLQ" - }, - { - "title": "LISA - 'LALISA' (Karaoke with Lyrics)", - "id": "Dy1MGuRCygs" - }, - { - "title": "Chlรถe - Have Mercy (Karaoke with Lyrics)", - "id": "i9lrIJ-fj4g" - }, - { - "title": "Walker Hayes - Fancy Like (Karaoke with Lyrics)", - "id": "m8guPsmfDM0" - }, - { - "title": "The Ultimate Feel-Good Playlist In Karaoke with Lead Vocal: Lil Nas X, Luis Fonsi, Katy Perry & More", - "id": "80bZ7NqwjIQ" - }, - { - "title": "1 HOUR BEST OF '80s & '90s in LEAD VOCAL KARAOKE presented by @StingrayKaraoke", - "id": "XYyY4p06LmQ" - }, - { - "title": "Frank Sinatra - New York, New York (Karaoke with Lead Vocal)", - "id": "uKDbSoC2JCM" - }, - { - "title": "Harry Styles - Watermelon Sugar (Lead Vocal Karaoke)", - "id": "Wvov64ATH2o" - }, - { - "title": "Top 10 BEST OF '70s & '80s Karaoke w. Lead Vocal: Creedence Clearwater Revival, Bonnie Tyler & More!", - "id": "IXsVQ7NNJXM" - }, - { - "title": "Stray Kids - Thunderous (Karaoke with Lyrics)", - "id": "vVUfiJyo3ts" - }, - { - "title": "ABBA - I Still Have Faith In You (Karaoke with Lyrics)", - "id": "-EeBolEOW4U" - }, - { - "title": "ABBA - Don't Shut Me Down (Karaoke with Lyrics)", - "id": "fHZlxU9fvB8" - }, - { - "title": "Top 10 Best Music of the '60s & '70s in Lead Vocal Karaoke: Creedence Clearwater Revival, Elton John", - "id": "ioRAXGWzMAQ" - }, - { - "title": "Luis Fonsi - Despacito (Lead Vocal Karaoke)", - "id": "4JjeAd1DUeU" - }, - { - "title": "TOP 5 BEST OF '80s & '90s FEMALE LEAD VOCAL Bonnie Tyler, Cyndi Lauper, Whitney Houston, Cรฉline Dion", - "id": "QDEt6nzF7hM" - }, - { - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Lead Vocal Karaoke with Lyrics)", - "id": "wzB8VkBODwg" - }, - { - "title": "BTS (feat. Megan Thee Stallion) - Butter (Karaoke with Lyrics)", - "id": "Cx4iy47B1Ow" - }, - { - "title": "TOP 5 BEST OF '80s & '90s MALE LEAD VOCAL: Bon Jovi, Poison, Garth Brooks, Scorpions, Brian McKnight", - "id": "fCfGQU83hjI" - }, - { - "title": "Cyndi Lauper - Girls Just Want To Have Fun (Lead Vocal)", - "id": "HA9WxgkBSIE" - }, - { - "title": "Tones and I - Dance Monkey (Lyrics)", - "id": "7fTBdg3EHsg" - }, - { - "title": "Frank Sinatra - New York, New York (Karaoke with Lead Vocal)", - "id": "oE3IHY7Pvg0" - }, - { - "title": "John Legend - All Of Me (Lyrics)", - "id": "VEwKYBb7db0" - }, - { - "title": "ABBA - Dancing Queen (Lyrics)", - "id": "_tJijXOKWy0" - }, - { - "title": "TOP 10 BEST KARAOKE WITH LYRICS (LEAD VOCAL)", - "id": "Luis Fonsi, Katy Perry, Harry Styles, Imagine Dragons" - }, - { - "title": "BEST OF '80s & '90s: MALE KARAOKE WITH LYRICS", - "id": "a-ha, Aerosmith, Elton John, Depeche Mode & More!" - }, - { - "title": "Sia - Chandelier (Karaoke with Lyrics)", - "id": "op3KWf0uxR0" - }, - { - "title": "BEST OF '80s & '90s: FEMALE KARAOKE WITH LYRICS", - "id": "Madonna, Cรฉline Dion, Whitney Houston, TLC" - }, - { - "title": "Alicia Keys - Fallin' (Karaoke with Lyrics)", - "id": "Fn0bzsj6zkA" - }, - { - "title": "Adele - Rolling In The Deep (Karaoke with Lyrics)", - "id": "bpOCVr4vMvo" - }, - { - "title": "BEST OF POP HITS in Karaoke with Lyrics (1 HOUR)", - "id": "Britney Spears, Dua Lipa, Adele, Olivia Rodrigo" - }, - { - "title": "Sub Urban & Bella Poarch - INFERNO (Karaoke with Lyrics)", - "id": "3iAa0nS3vew" - }, - { - "title": "SOFT ROCK SONGS: BEST OF '70s, '80s & '90s (1 HOUR)", - "id": "Karaoke with Lyrics by @StingrayKaraoke" - }, - { - "title": "Lorde - Mood Ring (Karaoke with Lyrics)", - "id": "J0JqF7uyS1c" - }, - { - "title": "TOP 10 BEST KARAOKE WITH LYRICS from the '80s & '90s by @StingrayKaraoke", - "id": "8itnqKa_9uA" - }, - { - "title": "Bon Jovi - Livin' On A Prayer (Karaoke with Lyrics)", - "id": "hzScwAhJY7s" - }, - { - "title": "a-ha - Take On Me (Karaoke with Lyrics)", - "id": "3HumYo7H6k8" - }, - { - "title": "Machine Gun Kelly - papercuts (Karaoke with Lyrics)", - "id": "-eKnoZfnPBk" - }, - { - "title": "Elton John, Dua Lipa - Cold Heart (PNAU Remix) (Karaoke with Lyrics)", - "id": "CvwkoT-kSBg" - }, - { - "title": "TOP 10 BEST KARAOKE WITH LYRICS from the '80s & '90s by @StingrayKaraoke", - "id": "7V24QG8imMs" - }, - { - "title": "Majestic x Boney M. - Rasputin (Karaoke with Lyrics)", - "id": "ed-LipyZziw" - }, - { - "title": "Lizzo - Rumors feat. Cardi B (Karaoke with Lyrics)", - "id": "y3wS3oTVSME" - }, - { - "title": "TOP 10 BEST OF '80s MUSIC: LEAD VOCAL KARAOKE by @StingrayKaraoke", - "id": "ecfG8ihLqKQ" - }, - { - "title": "Motown Greatest Hits of The '60s", - "id": "Best Motown Songs Of All Time in Karaoke Version" - }, - { - "title": "Motown Greatest Hits of The '70s", - "id": "Best Motown Songs Of All Time in Karaoke Version (1 HOUR)" - }, - { - "title": "Lana Del Rey - Summertime Sadness (Karaoke With Lyrics)", - "id": "MXlL4zcgBcY" - }, - { - "title": "Diana Ross - Ain't No Mountain High Enough (Karaoke with Lyrics)", - "id": "L2bHrCbfi18" - }, - { - "title": "The Weeknd - Take My Breath (Karaoke with Lyrics)", - "id": "UW8Wqlpq2Bg" - }, - { - "title": "BRITNEY SPEARS: BEST SONGS OF 2007, 2008 & 2009 Karaoke with Lyrics", - "id": "Gimme More, Circus, Womanizer" - }, - { - "title": "'80s FEEL GOOD MUSIC: Nothing But A Good Time (Karaoke with Lyrics)", - "id": "HyAA-ZK5oEU" - }, - { - "title": "'80s MUSIC: Heartbreak Songs (Kim Wilde, Fleetwood Mac, Michael McDonald, Cutting Crew & Elton John)", - "id": "_zlGRnouuUI" - }, - { - "title": "Billie Eilish - Happier Than Ever (Karaoke with Lyrics)", - "id": "Y9JNROXx4A4" - }, - { - "title": "Bruno Mars, Anderson .Paak, Silk Sonic - Skate (Karaoke with Lyrics)", - "id": "-FSlEP1co9w" - }, - { - "title": "1 HOUR NON STOP SMASH HITS: BEST SONGS of 2021", - "id": "Karaoke with Lyrics presented by @StingrayKaraoke" - }, - { - "title": "BEST HITS JULY 2021", - "id": "Karaoke with Lyrics by @StingrayKaraoke" - }, - { - "title": "Taylor Swift - the lakes (Karaoke with Lyrics)", - "id": "cOojEynUMjI" - }, - { - "title": "Camila Cabello - Don't Go Yet (Karaoke with Lyrics)", - "id": "1gsup6z6OGI" - }, - { - "title": "Lil Nas X, Jack Harlow - INDUSTRY BABY (Karaoke with Lyrics)", - "id": "qv-YyCnw5iY" - }, - { - "title": "BRITNEY SPEARS: BEST SONGS OF 2000, 2001 & 2002 Karaoke with Lyrics", - "id": "Lucky, Stronger, Overprotected" - }, - { - "title": "David Guetta - Titanium (Lyrics) ft. Sia", - "id": "5D2aJxFCcA8" - }, - { - "title": "Christina Aguilera, Lil' Kim, Mya, Pink - Lady Marmalade (Karaoke with Lyrics)", - "id": "J_wmKAqHn1g" - }, - { - "title": "POP BALLADS: Karaoke with Lyrics", - "id": "Best of Britney Spears, Cรฉline Dion, Amy Winehouse, Taylor Swift" - }, - { - "title": "Amy Winehouse Greatest Hits Full Album", - "id": "The Best Of Amy Winehouse in Karaoke with Lyrics" - }, - { - "title": "Amy Winehouse - Rehab (Karaoke with Lyrics)", - "id": "gEJWTLwQ8vU" - }, - { - "title": "Amy Winehouse - Addicted (Karaoke with Lyrics)", - "id": "jIaK2_2eL2Y" - }, - { - "title": "Amy Winehouse - Just Friends (Karaoke with Lyrics)", - "id": "kD3jdgH1zCc" - }, - { - "title": "Amy Winehouse - Monkey Man (Karaoke With Lyrics)", - "id": "50MZwjul98M" - }, - { - "title": "Amy Winehouse - Valerie (Karaoke with Lyrics)", - "id": "EbIsrNm3wxA" - }, - { - "title": "Amy Winehouse - Back To Black (Karaoke with Lyrics)", - "id": "cBx4lzDsl28" - }, - { - "title": "TOP 10 BEST SUMMER HITS 2021 (The Kid LAROI, Post Malone, Doja Cat, Justin Bieber, Polo G, Tiรซsto)", - "id": "FLuSQLFg1h8" - }, - { - "title": "Tiรซsto - The Business (Lyrics)", - "id": "Kme91m0_Ix0" - }, - { - "title": "Mรฅneskin - Beggin' (Karaoke with Lyrics)", - "id": "_ZorDVEuRps" - }, - { - "title": "Shania Twain - That Don't Impress Me Much (Karaoke with Lyrics)", - "id": "LCg8vFCu8Ds" - }, - { - "title": "BEST OF '80s & '90s MEGA HITS", - "id": "Shania Twain, Lenny Kravitz, George Michael, NKOTB & More" - }, - { - "title": "2 HOURS BEST MUSIC OF 2020/2021 - Mรฅneskin, Post Malone, Doja Cat, Billie Eilish, Maroon 5 & More", - "id": "vJ_LkpYHaKs" - }, - { - "title": "Post Malone - Motley Crew (Karaoke With Lyrics)", - "id": "QxQTedRXimY" - }, - { - "title": "TOP 15 BEST OF '80s FEEL GOOD MUSIC", - "id": "Happy Songs" - }, - { - "title": "2021 TOP HITS 1 HOUR in Karaoke Version by@StingrayKaraoke Doja Cat, Justin Bieber, Dua Lipa & More", - "id": "r-Upeqs4-m8" - }, - { - "title": "The Kid LAROI, Justin Bieber - Stay (Karaoke with Lyrics)", - "id": "V2h2sXC-r8I" - }, - { - "title": "Sister Sledge - We Are Family (Karaoke With Lyrics)", - "id": "4LYoebm2tHc" - }, - { - "title": "The Jackson 5 - ABC (Karaoke with Lyrics)", - "id": "zLSNDmj-Rzk" - }, - { - "title": "2 HOURS NON STOP KARAOKE PARTY : BEST KARAOKE WITH LYRICS OF ALL TIME ( 2 HOURS NON STOP MIX)", - "id": "AibX6PpdnFg" - }, - { - "title": "Marshmello x Jonas Brothers - Leave Before You Love Me (Karaoke With Lyrics)", - "id": "38XB8wszWoo" - }, - { - "title": "Billie Eilish - NDA (Karaoke with Lyrics)", - "id": "6kdnP8IaNpo" - }, - { - "title": "TOP 10 BEST SONGS From The '60s", - "id": "Karaoke with Lyrics by @StingrayKaraoke" - }, - { - "title": "Doja Cat, The Weeknd - You Right (Karaoke with Lyrics)", - "id": "qJcjQYmmIr4" - }, - { - "title": "TOP 10 BEST KARAOKE WITH LYRICS: Johnny Cash, Etta James, Alicia Keys, Elton John, Bill Withers", - "id": "51rzj17NPFA" - }, - { - "title": "FUN KARAOKE SONGS to Sing with Friends And Family", - "id": "Epic Karaoke Playlist by @StingrayKaraoke" - }, - { - "title": "Louis Armstrong - What A Wonderful World (Karaoke with Lyrics)", - "id": "ZmVkt7T1NFM" - }, - { - "title": "3 Doors Down - Here Without You (Karaoke with Lyrics)", - "id": "pvYKmAbpc-I" - }, - { - "title": "Bill Withers - Lean On Me (Karaoke with Lyrics)", - "id": "ef2_AleybdY" - }, - { - "title": "The Police - Every Breath You Take (Karaoke with Lyrics)", - "id": "m1IuB25aLsY" - }, - { - "title": "TOP 15 BEST Karaoke with Lyrics from the '80s & '90s", - "id": "presented by @StingrayKaraoke" - }, - { - "title": "TOP 15 BEST Karaoke with Lyrics from the '70s & '80s", - "id": "presented by @StingrayKaraoke" - }, - { - "title": "Queen - Somebody To Love (Karaoke with Lyrics)", - "id": "8i8y972VEGg" - }, - { - "title": "Earth, Wind & Fire - September (Karaoke with Lyrics)", - "id": "gl-iSMU9fI4" - }, - { - "title": "MEGA HITS 2021: BEST MALE KARAOKE WITH LYRICS MAROON 5, Twenty One Pilots, Justin Bieber", - "id": "Z82iutcu97s" - }, - { - "title": "Nelly, Florida Georgia Line - Lil Bit (Karaoke with Lyrics)", - "id": "VCC2zCZWl4o" - }, - { - "title": "MEGA HITS 2021: BEST FEMALE KARAOKE WITH LYRICS OLIVIA RODRIGO, JESSIE J, BILLIE EILISH, DUA LIPA", - "id": "HAhOXlt8yWA" - }, - { - "title": "Maroon 5 - Beautiful Mistakes ft. Megan Thee Stallion (Karaoke with Lyrics)", - "id": "FSnAuPj9EUA" - }, - { - "title": "P!NK - All I Know So Far (Karaoke with Lyrics)", - "id": "fa5XUw6wEvY" - }, - { - "title": "Tate McRae, Khalid - working (Karaoke with Lyrics)", - "id": "Amy2rm_p7g4" - }, - { - "title": "Ariana Grande - pov (Karaoke with Lyrics)", - "id": "IP1CPhpLVRE" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: Van Halen, Madonna, Elton John, Toto, Queen, Diana Ross & More!", - "id": "pjlU4GzTmho" - }, - { - "title": "Maroon 5 - Lost (Karaoke with Lyrics)", - "id": "fqJH2iEWJUk" - }, - { - "title": "Dua Lipa - Levitating Featuring DaBaby (Karaoke with Lyrics)", - "id": "iz77XcTRizQ" - }, - { - "title": "Jessie J - I Want Love (Karaoke with Lyrics)", - "id": "XS2nDjruLP4" - }, - { - "title": "1 HOUR BEST OF '80s & '90s MUSIC", - "id": "Karaoke with Lyrics presented by @StingrayKaraoke" - }, - { - "title": "Elle King, Miranda Lambert - Drunk (And I Don't Wanna Go Home) (Karaoke with Lyrics)", - "id": "B-TGwoxVrXY" - }, - { - "title": "BEST OF '90s LATIN SONGS", - "id": "Karaoke with Lyrics by @StingrayKaraoke" - }, - { - "title": "Josh Groban - You Raise Me Up (Karaoke with Lyrics)", - "id": "d4khIGXJolk" - }, - { - "title": "TOP 5 BEST RETRO SONGS from the '50s & '60s", - "id": "Karaoke with Lyrics presented by @StingrayKaraoke" - }, - { - "title": "The Beatles - Yesterday (Karaoke with Lyrics)", - "id": "i05Wnk5i2pY" - }, - { - "title": "John Lennon - Imagine (Karaoke with Lyrics)", - "id": "HFb6VHlJP7s" - }, - { - "title": "Nightbirde - It's OK (Karaoke with Lyrics)", - "id": "n71ZBYoJr4Y" - }, - { - "title": "KARAOKE CLASSICS ULTIMATE PLAYLIST: Best Songs for Karaoke presented by @StingrayKaraoke", - "id": "DL4xITBWb9Y" - }, - { - "title": "Elvis Presley - Love Me Tender (Karaoke with Lyrics)", - "id": "Tw3RpRFsfVY" - }, - { - "title": "Frank Sinatra - Fly Me To The Moon (Karaoke with Lyrics)", - "id": "CpLvv_CCE6k" - }, - { - "title": "Lorde - Solar Power (Karaoke with Lyrics)", - "id": "FSuLoUDt0SA" - }, - { - "title": "Twenty One Pilots - Shy Away (Karaoke with Lyrics)", - "id": "Mcu5aTfEHBM" - }, - { - "title": "Dua Lipa - Love Again (Karaoke with Lyrics)", - "id": "_-OI6LFavzM" - }, - { - "title": "P!nk - Get The Party Started (Karaoke with Lyrics)", - "id": "dlGgu4PzDZc" - }, - { - "title": "Olivia Rodrigo - hope ur ok (Lyric Video)", - "id": "dzy58YegdQc" - }, - { - "title": "OLIVIA RODRIGO - SOUR (FULL ALBUM)", - "id": "Karaoke with Lyrics by @StingrayKaraoke" - }, - { - "title": "1 HOUR '80s SONGS YOU FORGOT ABOUT", - "id": "KARAOKE WITH LYRICS presented by @StingrayKaraoke" - }, - { - "title": "Afroman - Because I Got High (Karaoke with Lyrics)", - "id": "kgQbHdkV3RQ" - }, - { - "title": "Olivia Rodrigo - jealousy, jealousy (Karaoke with Lyrics)", - "id": "VnrMN2-Z5yM" - }, - { - "title": "BEST OF '90s & 2000's MUSIC", - "id": "MOST POPULAR PARTY SONGS presented by @StingrayKaraoke" - }, - { - "title": "Olivia Rodrigo - favorite crime (Karaoke with Lyrics)", - "id": "VbRnJJA77U8" - }, - { - "title": "Billie Eilish - Lost Cause (Karaoke with Lyrics)", - "id": "YMSL8fw_FYs" - }, - { - "title": "Snow Patrol - Chasing Cars (Karaoke With Lyrics)", - "id": "yEdgdJnx62Q" - }, - { - "title": "TOP 5 BEST '90s PARTY HITS", - "id": "@StingrayKaraoke" - }, - { - "title": "Enrique Iglesias - Bailamos (Karaoke with Lyrics)", - "id": "Lga9NMAfE74" - }, - { - "title": "Enrique Iglesias - Hero (Karaoke with Lyrics)", - "id": "EyWsI4rUA34" - }, - { - "title": "Ricky Martin - Livin' La Vida Loca (Karaoke with Lyrics)", - "id": "rOp9v9IhP8s" - }, - { - "title": "Lou Bega - Mambo No. 5 (A Little Bit of...) (Karaoke with Lyrics)", - "id": "g0S7uSIV7KA" - }, - { - "title": "*NSYNC - Tearin' Up My Heart (Karaoke with Lyrics)", - "id": "HwyUps8EzBk" - }, - { - "title": "TOP 10 BEST KARAOKE SONGS FROM THE '80s & '90s", - "id": "Eric Clapton, Wham!, Lou Bega, Bonnie Tyler & More!" - }, - { - "title": "Bruno Mars - Talking To The Moon (Karaoke with Lyrics)", - "id": "iVluaTSgu_w" - }, - { - "title": "Gabby Barrett - The Good Ones (Karaoke with Lyrics)", - "id": "49zxT084ncQ" - }, - { - "title": "Olivia Rodrigo - happier (Karaoke with Lyrics)", - "id": "UXG1MJAXirM" - }, - { - "title": "Olivia Rodrigo - traitor (Karaoke with Lyrics)", - "id": "AtE8K2PrOqg" - }, - { - "title": "Olivia Rodrigo - brutal (Karaoke with Lyrics)", - "id": "uOkAJOnIKBA" - }, - { - "title": "KALEO - Way Down We Go (Karaoke with Lyrics)", - "id": "_v486Sei3pI" - }, - { - "title": "BEST HITS 2021 : BEST KARAOKE WITH LYRICS (BTS, J. Cole, Olivia Rodrigo, Bella Poarch & More!)", - "id": "R3YF6yKcLp4" - }, - { - "title": "Pop Smoke - What You Know Bout Love (Lyrics)", - "id": "0ElYk6jyO78" - }, - { - "title": "Machine Gun Kelly ft. blackbear - my ex's best friend (Official Music Video)", - "id": "T7Ufke9-PLE" - }, - { - "title": "2 HOURS NON STOP KARAOKE WITH LYRICS: ULTIMATE '90s BEST HITS", - "id": "PheNqKrAgh8" - }, - { - "title": "Olivia Rodrigo - enough for you (Karaoke With Lyrics)", - "id": "jZcbpmixoxQ" - }, - { - "title": "TOP 10 BEST SONGS FOR KARAOKE: Hits from the '60s, '70s, '80s & '90s", - "id": "@StingrayKaraoke" - }, - { - "title": "BTS - Butter (Karaoke With Lyrics)", - "id": "UF7luu4Gz5A" - }, - { - "title": "BEST OF '90s KARAOKE WITH LYRICS: Seal, Britney Spears, Backstreet Boys, Jennifer Lopez & More!", - "id": "3XlIzf3Aw54" - }, - { - "title": "Bella Poarch - Build A B*tch (Lyrics)", - "id": "VslXIckTIrQ" - }, - { - "title": "TOP SONGS 2021 : BEST KARAOKE WITH LYRICS (Lil Nas X, Justin Bieber, Olivia Rodrigo, Billie Eilish)", - "id": "TUKf4uCQsdU" - }, - { - "title": "Ashe & FINNEAS - Till Forever Falls Apart (Karaoke with Lyrics)", - "id": "939D0YP9jvo" - }, - { - "title": "J. Cole - a m a r i (Karaoke with Lyrics)", - "id": "1GhgHk_tggM" - }, - { - "title": "Billie Eilish - Your Power (Karaoke with Lyrics)", - "id": "A7G5z7mtmcc" - }, - { - "title": "J. Cole - m y . l i f e feat. 21 Savage, Morray (Karaoke With Lyrics)", - "id": "NHI1ZWXwczA" - }, - { - "title": "Polo G - RAPSTAR (Karaoke with Lyrics)", - "id": "UviH0iiLnf8" - }, - { - "title": "Lil Nas X - MONTERO (Call Me By Your Name) (Karaoke with Lyrics)", - "id": "Ymidn4gPLmU" - }, - { - "title": "Olivia Rodrigo - good 4 u (Karaoke with Lyrics)", - "id": "a6Q0HuDGWME" - }, - { - "title": "'90s MUSIC PARTY HITS (Karaoke With Lyrics) Vengaboys, The New Kids On The Block, The Offspring", - "id": "3PWB_5spz2U" - }, - { - "title": "Doja Cat - Kiss Me More (Karaoke with Lyrics) ft. SZA", - "id": "tDSbCkKfTAE" - }, - { - "title": "BEST KARAOKE WITH LYRICS from the '90s: Nirvana, Green Day, Barenaked Ladies, Foo Fighters", - "id": "QaXeOy9JkAQ" - }, - { - "title": "Tate McRae - you broke me first (Karaoke with Lyrics)", - "id": "nEZfwURLi1I" - }, - { - "title": "Justin Bieber - Peaches ft. Daniel Caesar, Giveon (Karaoke with Lyrics)", - "id": "ocskW7Ir5gc" - }, - { - "title": "BEST KARAOKE WITH LYRICS: BRUNO MARS", - "id": "1 HOUR NON STOP KARAOKE WITH LYRICS" - }, - { - "title": "Kane Brown - Good As You (Karaoke With Lyrics)", - "id": "y08_XIgWMY0" - }, - { - "title": "'90s BEST KARAOKE WITH LYRICS : Britney Spears, Elton John, Mary J Blige, Santana & More!", - "id": "0tpS59ALtCU" - }, - { - "title": "AMERICAN MUSIC KARAOKE: Best Songs from the '70, '80s, '90s and Today", - "id": "1 HOUR NON STOP KARAOKE" - }, - { - "title": "TOP 30 BEST KARAOKE WITH LYRICS from the '60s, '70s, '80s, '90s, 2000's and Today! 2 HOURS NON STOP", - "id": "ypcVYB9T32o" - }, - { - "title": "BEST KARAOKE WITH LYRICS: Imagine Dragons, The Weeknd, Harry Styles & The Greatest Showman Ensemble", - "id": "vOWrEdNOvcw" - }, - { - "title": "Katy Perry - Roar (Karaoke With Lyrics)", - "id": "mrwmKZQYpRg" - }, - { - "title": "BEST KARAOKE WITH LYRICS: Lil Nas X, Miley Cyrus, Katy Perry, Tones and I, Lewis Capaldi", - "id": "K_VIgNLenyg" - }, - { - "title": "BEST OF CLASSIC KARAOKE SONGS: Elton John, Bill Withers, Lynyrd Skynyrd, Cher, Cyndi Lauper & More!", - "id": "DH-hbSLeV5s" - }, - { - "title": "KARAOKE CLASSICS BEST OF '60s MUSIC / Frank Sinatra, Creedence Clearwater Revival, Etta James & More", - "id": "J7F3XkFkNQI" - }, - { - "title": "MOST POPULAR KARAOKE SONGS from EARLY 2000s: STRONG VOCALS EDITION: Alicia Keys, Imagine Dragons", - "id": "r9fBqW2hvkk" - }, - { - "title": "OLD TIME KARAOKE CLASSICS: Best of '60s & '70s Music: Queen, Cher, Aretha Franklin, Lynyrd Skynyrd", - "id": "NX9Hbedrqmg" - }, - { - "title": "BEST KARAOKE WITH LYRICS: '70s MUSIC / Creedence Clearwater Revival, Don McLean, Boston & More !", - "id": "Uo7kIXp_Jm4" - }, - { - "title": "Bruno Mars, Anderson .Paak, Silk Sonic - Leave the Door Open [Karaoke With Lyrics]", - "id": "IztOpOpKDQ4" - }, - { - "title": "Amy Winehouse - Rehab (Karaoke With Lyrics)", - "id": "pKU_Noja0C4" - }, - { - "title": "BEST KARAOKE WITH LYRICS: '70s MUSIC EDITION / Queen, Cher, Lynyrd Skynyrd, Bob Seger, The Guess Who", - "id": "uhKlX3x0JHE" - }, - { - "title": "Cher - Strong Enough (Karaoke With Lyrics)", - "id": "0AMhlUge0mU" - }, - { - "title": "Whitney Houston - I'm Every Woman (Karaoke With Lyrics)", - "id": "0q9nS5wQ2LA" - }, - { - "title": "Tina Turner - Proud Mary (Karaoke With Lyrics)", - "id": "4skz0LHaxpk" - }, - { - "title": "EPIC '90s MUSIC Karaoke With Lyrics: Aerosmith, Cรฉline Dion, 2Pac, Notorious BIG, No Doubt & More", - "id": "5T6z21yp2pE" - }, - { - "title": "LADY GAGA 1 HOUR NON STOP KARAOKE WITH LYRICS / Poker Face, Just Dance, Bad Romance, Born This Way", - "id": "oCBy0RMPd08" - }, - { - "title": "ELTON JOHN: Best Music Karaoke With Lyrics / Tiny Dancer, Rocket Man, Sad Songs, Your Song & More!", - "id": "zGpKezNBzEA" - }, - { - "title": "Chill Music Karaoke With Lyrics/ 1 Hour Non Stop Karaoke Marathon (Lauryn Hill, Cรฉline Dion, Adele)", - "id": "D73BWZ2Zx2Y" - }, - { - "title": "EPIC '90s MUSIC KARAOKE MIX: Karaoke with Lyrics Non Stop Marathon Best of '90s @StingrayKaraoke", - "id": "pVxsZIjIlfo" - }, - { - "title": "BEST KARAOKE WITH LYRICS- 1 Hour Non Stop Songs Medley - Selena Gomez, Adele, Taylor Swift, Dua Lipa", - "id": "6uJ0bgHRh5k" - }, - { - "title": "BEST KARAOKE WITH LYRICS FEMALE ARTISTS: Dua Lipa, Taylor Swift, Demi Lovato & Adele", - "id": "8CRAFO4DXek" - }, - { - "title": "3 HOURS NON STOP KARAOKE PARTY with @StingrayKaraoke", - "id": "WiVuYFXiS14" - }, - { - "title": "FRIDAY NIGHT 5 HOURS NON STOP KARAOKE PARTY", - "id": "8ehaS3UvWdU" - }, - { - "title": "THE KARAOKE CHALLENGE: CAN YOU GUESS THE HIP HOP SONG BY LYRICS?", - "id": "btmdkEOKp6s" - }, - { - "title": "DMX - X Gon' Give It To Ya (Karaoke With Lyrics)", - "id": "3a9zsCXf4wU" - }, - { - "title": "Jon Batiste - It's All Right (From \"Soul\"/ Karaoke With Lyrics)", - "id": "JBtCVkgYoXw" - }, - { - "title": "TOP 10 BEST KARAOKE WITH LYRICS from the '80s & '90s by @Stingray Karaoke", - "id": "9RPn2Atih6g" - }, - { - "title": "Taylor Swift - Love Story (Taylorโ€™s Version) (Karaoke With Lyrics)", - "id": "1layuASCZV4" - }, - { - "title": "DEMI LOVATO KARAOKE WITH LYRICS VIDEO Part 4 by @Stingray Karaoke", - "id": "BCAi9jPuDLk" - }, - { - "title": "DEMI LOVATO KARAOKE WITH LYRICS VIDEO Part 3 by @Stingray Karaoke", - "id": "nOre4Q2dao0" - }, - { - "title": "DEMI LOVATO KARAOKE WITH LYRICS VIDEO Part 2 by @Stingray Karaoke", - "id": "x2MheuZXZwo" - }, - { - "title": "DEMI LOVATO KARAOKE WITH LYRICS VIDEO Part 1 by @StingrayKaraoke", - "id": "aRKqNydbBtA" - }, - { - "title": "SATURDAY NIGHT KARAOKE PARTY: Aretha Franklin, Kelly Clarkson, Elvis Presley, Whitney Houston & More", - "id": "PjM4jQjXde4" - }, - { - "title": "TOP 15 BEST KARAOKE WITH LYRICS from the '80s & '90s Part 2 by @Stingray Karaoke", - "id": "gZxfMH0H3wE" - }, - { - "title": "BEST OF Cร‰LINE DION '90s : KARAOKE WITH LYRICS", - "id": "QSFpOvacNLU" - }, - { - "title": "BEST OF Cร‰LINE DION 2002 - 2018 : KARAOKE WITH LYRICS", - "id": "1mb1I1tOo64" - }, - { - "title": "BEST KARAOKE WITH LYRICS DANCE HITS '80s: David Bowie, The Romantics, Cyndi Lauper, Whitney Houston", - "id": "aZtHcNEPOvk" - }, - { - "title": "1 HOUR NON STOP CLUB HITS - BEST KARAOKE WITH LYRICS: Hip Hop, Rap, Dance and Pop Hits", - "id": "1T4Obcze2HQ" - }, - { - "title": "BEST OF '80s & '90s MUSIC in Karaoke with Lyrics presented by @StingrayKaraoke", - "id": "E-iidk3e26Q" - }, - { - "title": "BEST KARAOKE WITH LYRICS: FEEL GOOD MUSIC / Justin Bieber, Rihanna, Dua Lipa, Post Malone, Quavo", - "id": "pKPLLdIUDYw" - }, - { - "title": "Khalid - Talk (Karaoke with Lyrics)", - "id": "Vkfqnk20oPw" - }, - { - "title": "Megan Thee Stallion - Savage Remix (feat. Beyoncรฉ) (Karaoke With Lyrics)", - "id": "4xIOsRonsF0" - }, - { - "title": "Cardi B - Bodak Yellow (Karaoke With Lyrics)", - "id": "VVb-YKQi6dA" - }, - { - "title": "Aretha Franklin - Respect (Karaoke with Lyrics)", - "id": "7wKGE_b2PCk" - }, - { - "title": "EARLY 2000s HITS KARAOKE WITH LYRICS: @kylieminogue @AliciaKeys @blink182 @vanessacarlton", - "id": "tMmM4F68Hs0" - }, - { - "title": "BEST KARAOKE WITH LYRICS: Aretha Franklin, Cher, Bonnie Tyler, Elvis Presley, Queen & More!", - "id": "sWyGgjsIUx0" - }, - { - "title": "BEST OF JUSTIN BIEBER 2020 (Karaoke with Lyrics)", - "id": "HwyayJicxJQ" - }, - { - "title": "DUA LIPA KARAOKE WITH LYRICS by @StingrayKaraoke", - "id": "JQp0rdvj8lY" - }, - { - "title": "Maroon 5 - Moves Like Jagger (Karaoke with Lyrics)", - "id": "iBtbCc1Ea9E" - }, - { - "title": "Maroon 5 - Sugar (Karaoke with Lyrics)", - "id": "JcKuK3cHekw" - }, - { - "title": "Pharrell Williams - Happy (Karaoke with Lyrics)", - "id": "k8XiuhSImZs" - }, - { - "title": "Lorde - Royals (Karaoke with Lyrics)", - "id": "P5G4bZ1NH2Q" - }, - { - "title": "MEGA HITS: BEST MALE KARAOKE WITH LYRICS", - "id": "Maroon 5, Pharrell Williams, Sam Smith, Lil Nas" - }, - { - "title": "MEGA HITS: BEST FEMALE KARAOKE WITH LYRICS LORDE, BEYONCE, JESSIE J, TAYLOR SWIFT, ADELE, RIHANNA", - "id": "U0maM4yuOMI" - }, - { - "title": "BEST BREAKUP SONGS", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Kelly Clarkson - Since U Been Gone", - "id": "M7K6BXzUAV4" - }, - { - "title": "Aretha Franklin - (You Make Me Feel Like) A Natural Woman (Karaoke With Lyrics)", - "id": "Epy7MCu1cBo" - }, - { - "title": "Gloria Gaynor - I Will Survive (Karaoke With Lyrics)", - "id": "tClP0J3fpWA" - }, - { - "title": "BILLIE EILISH BEST HITS 2016, 2017 & 2018 : KARAOKE WITH LYRICS by Stingray Karaoke", - "id": "Xw-_yOmuD90" - }, - { - "title": "SATURDAY NIGHT NON STOP KARAOKE PARTY - BEST OF '80s Karaoke with Lyrics by Stingray Karaoke", - "id": "wHfvFoYGcQo" - }, - { - "title": "BILLIE EILISH BEST HITS 2019 - 2020 : KARAOKE WITH LYRICS by Stingray Karaoke", - "id": "sTfUnEAVOF0" - }, - { - "title": "BEST OF '90s KARAOKE WITH LYRICS", - "id": "POP MEGA HITS Britney Spears, Christina Aguilera, Backstreet Boys" - }, - { - "title": "Adele - Someone Like You (Karaoke With Lyrics)", - "id": "9OCGGaKinQE" - }, - { - "title": "Adele - Chasing Pavements (Karaoke With Lyrics)", - "id": "YEj-kAKCJ_Y" - }, - { - "title": "Dua Lipa - New Rules (Karaoke With Lyrics)", - "id": "aqmKQ3IKgCM" - }, - { - "title": "2Pac - California Love (Karaoke With Lyrics)", - "id": "u7lqddLaqWU" - }, - { - "title": "'90s NON STOP KARAOKE WITH LYRICS: Lauryn Hill, The Notorious BIG, Chris Isaak, Savage Garden & More", - "id": "HkvKfTe2Q00" - }, - { - "title": "TOP 25 HITS KARAOKE with Justin Bieber, Dua Lipa, Ariana Grande, Taylor Swift, The Weeknd, Cardi B", - "id": "xFGhHFAK7sA" - }, - { - "title": "MEGA HITS BEST MALE KARAOKE WITH LYRICS Justin Bieber, The Weeknd, Bruno Mars, Harry Styles & More", - "id": "sal7yvBaI0o" - }, - { - "title": "MEGA HITS BEST FEMALE KARAOKE WITH LYRICS DUA LIPA, ARIANA GRANDE, BEYONCร‰, CARDI B, BILLIE EILISH", - "id": "BTcCAuvWp_Y" - }, - { - "title": "Adele - Set Fire To The Rain", - "id": "rW6HhmTYqgM" - }, - { - "title": "ADELE KARAOKE MIX: BEST HITS 2011", - "id": "Someone Like You, Set Fire To The Rain, One And Only and More!" - }, - { - "title": "1 HOUR NON STOP KARAOKE WITH LYRICS - BEST OF '90s MIXTAPE: Britney Spears, Backstreet Boys, Santana", - "id": "VQffQoKdfP4" - }, - { - "title": "TOP 10 TAYLOR SWIFT SONGS 2006 - 2009", - "id": "Karaoke With Lyrics by @StingrayKaraoke" - }, - { - "title": "POST MALONE KARAOKE: Congratulations, Rockstar, Circles, Better Now, Wow, Sunflower", - "id": "STINGRAY" - }, - { - "title": "QUEEN: BEST SONGS IN KARAOKE", - "id": "Radio Ga-Ga, Under Pressure, Another One Bites The Dust & More!" - }, - { - "title": "BLACKPINK - 'Ice Cream (with Selena Gomez)' Karaoke With Lyrics", - "id": "pDSmNbMunu0" - }, - { - "title": "LOVE SONGS from the '80s, 90s, 2000's and Today / 1 HOUR Non Stop Karaoke With Lyrics", - "id": "tRvwO-TcTA8" - }, - { - "title": "3 HOURS NON STOP KARAOKE WITH LYRICS - BEST OF '80s MIX PARTY", - "id": "ytRWEdjf9lk" - }, - { - "title": "POPULAR STINGRAY KARAOKE SONGS", - "id": "Karaoke with Lyrics by @StingrayKaraoke" - }, - { - "title": "BEST OF '80s LIGHT ROCK KARAOKE WITH LYRICS: Heart, Living Color, Midnight Oil, Eric Carmen", - "id": "OTzH9Ui1auA" - }, - { - "title": "Jason Derulo - Take You Dancing (Karaoke With Lyrics)", - "id": "yPkJUsrpa18" - }, - { - "title": "BEST OF '80s LIGHT ROCK KARAOKE WITH LYRICS: Talking Heads, Kenny Loggins, Michael McDonald & More!", - "id": "uVWx_FOqkdY" - }, - { - "title": "Heart - What About Love?", - "id": "tbt0Pu9AGMU" - }, - { - "title": "Heart - Alone (Karaoke With Lyrics)", - "id": "kshpT5aBXsk" - }, - { - "title": "THE WEEKND 1 HOUR NON STOP KARAOKE WITH LYRICS - BEST OF THE WEEKND SONGS", - "id": "zKuXDCBEeM4" - }, - { - "title": "1 HOUR NON STOP BEST OF '80s MUSIC - FEMALE ARTISTS - KARAOKE WITH LYRICS", - "id": "HAENkh7CTaU" - }, - { - "title": "BEST OF '80s POP KARAOKE WITH LYRICS: Paula Abdul, Samantha Fox, The Vapors, New Order & More", - "id": "MMGXTxUU-gY" - }, - { - "title": "BEST OF '80s POP KARAOKE WITH LYRICS: New Kids On The Block, Kim Wilde, Go-Gos, The Outfield", - "id": "qL6P3wcKoi0" - }, - { - "title": "Cyndi Lauper - All Through the Night (Karaoke With Lyrics)", - "id": "Yc7SkDtgSkA" - }, - { - "title": "Evanescence - Bring Me To Life (Karaoke With Lyrics)", - "id": "UvDnD200X2E" - }, - { - "title": "Madonna - Like A Virgin (Karaoke With Lyrics)", - "id": "SE8R1FCbytw" - }, - { - "title": "Justin Bieber - Holy ft. Chance The Rapper (Karaoke With Lyrics)", - "id": "G7R5Eo93s2M" - }, - { - "title": "Madonna - Holiday (Karaoke With Lyrics)", - "id": "sprUuTaV2DM" - }, - { - "title": "George Michael - Faith (Karaoke With Lyrics)", - "id": "JNctDfC6JgE" - }, - { - "title": "Paula Abdul - Straight Up (Karaoke with Lyrics)", - "id": "2zOqnB2RPCc" - }, - { - "title": "BEST OF '80s CLASSIC ROCK MUSIC: Elton John, Steve Winwood, Huey Lewis & The News, Fleetwood Mac", - "id": "BZgoskObx7c" - }, - { - "title": "BEST OF '80s LIGHT ROCK MUSIC: Police, Billy Joel, Fleetwood Mac, New Order", - "id": "SkQ2Ev7d1IQ" - }, - { - "title": "BEST OF '80s POP: General Public, Deniece Williams, Cutting Crew, The Boomtown Rats, Debbie Gibson", - "id": "wvaq8UjALGc" - }, - { - "title": "BEST OF '80s POP MUSIC: Pet Shop Boys, George Michaels, Phil Collins, Yaz & Trio", - "id": "cxbGJtXsGvQ" - }, - { - "title": "Aerosmith - I Don't Want to Miss a Thing (Karaoke With Lyrics)", - "id": "pLc0yw7a_Rk" - }, - { - "title": "1 HOUR NON STOP BEST OF '80s MUSIC - KARAOKE WITH LYRICS", - "id": "KTl8hqgnODo" - }, - { - "title": "1 HOUR NON STOP BEST OF '80s MUSIC - KARAOKE WITH LYRICS", - "id": "1cwiFQPHM0Q" - }, - { - "title": "1 HOUR BILLIE EILISH KARAOKE WITH LYRICS MARATHON", - "id": "4S8TTgrRgI4" - }, - { - "title": "BEST OF RIHANNA : Karaoke with Lyrics", - "id": "WSCd_DDf2_4" - }, - { - "title": "Olivia Rodrigo - drivers license (1 Hour) Karaoke With Lyrics", - "id": "DeA-uqnkfRk" - }, - { - "title": "Olivia Rodrigo - drivers license (Karaoke With Lyrics)", - "id": "-WswYreb5io" - }, - { - "title": "MADONNA '80s MUSIC: BEST OF KARAOKE WITH LYRICS", - "id": "oM8niuQGQxA" - }, - { - "title": "BEST OF BON JOVI : Karaoke with Lyrics", - "id": "4EtGAafSCx4" - }, - { - "title": "BEST of '80s ROCK MUSIC: David Bowie, Queen, Bon Jovi, Def Leppard, Foreigner - KARAOKE WITH LYRICS", - "id": "2RcXYWw_LI8" - }, - { - "title": "Rick Astley - Never Gonna Give You Up (Karaoke With Lyrics)", - "id": "5bCwue1d9Js" - }, - { - "title": "Soft Cell - Tainted Love", - "id": "8jhSkrjniV8" - }, - { - "title": "RETRO HIP HOP KARAOKE WITH LYRICS: MC Hammer, Sir Mix-A-Lot & The Sugar Hill Gang", - "id": "brHAOS0qYwM" - }, - { - "title": "Bobby McFerrin - Don't Worry Be Happy (Karaoke With Lyrics)", - "id": "L5SpK4yJBhM" - }, - { - "title": "The Weeknd - Save Your Tears (Karaoke With Lyrics)", - "id": "ttnwqSjino4" - }, - { - "title": "Lady Gaga - Just Dance ft. Colby O'Donis (Karaoke With Lyrics)", - "id": "a4EecfTfRy8" - }, - { - "title": "'80s MUSIC KARAOKE CHALLENGE FRIDAY NIGHT KARAOKE PARTY BEST OF '80s KARAOKE WITH LYRICS", - "id": "-J0n4Pju-oU" - }, - { - "title": "'90s Music Karaoke With Lyrics: Tevin Campbell, Santana & Rob Thomas, Barenaked Ladies, Go Go Dolls", - "id": "FO0y_jU-qDo" - }, - { - "title": "Sean Kingston, Justin Bieber - Eenie Meenie (Karaoke With Lyrics)", - "id": "JtVgeNHdS3Y" - }, - { - "title": "Becky G - Shower (Karaoke With Lyrics)", - "id": "UT3Fj42GY4Y" - }, - { - "title": "TOP HITS - BEST OF PLAYLIST - KARAOKE WITH LYRICS - BEST OF '80s, '90s & Today MUSIC", - "id": "BnOny4vKMM0" - }, - { - "title": "BEST OF '90s MUSIC: MALE ARTISTS - Aerosmith, Usher, Elton John, Backstreet Boys, Los Del Rio & More", - "id": "YHl0eqmrVl8" - }, - { - "title": "BEST OF '90s MUSIC: FEMALE ARTISTS - Whitney Houston, Mariah Carey, Alanis Morissette, Tina Turner", - "id": "bNF7RMFXUcg" - }, - { - "title": "Country Music Karaoke With Lyrics: Blake Shelton, Luke Combs, Ingrid Andress, Kane Brown & Lee Brice", - "id": "O4PQ3z28X-g" - }, - { - "title": "OMC - How Bizarre (Karaoke With Lyrics)", - "id": "KzySHcV2aDk" - }, - { - "title": "Billie Eilish - Therefore I Am (Karaoke With Lyrics)", - "id": "zgyisRUAvkA" - }, - { - "title": "Queen - Radio Ga Ga (Karaoke With Lyrics)", - "id": "pepH2e4yQkw" - }, - { - "title": "Cher - Believe (Karaoke With Lyrics)", - "id": "-2FOTPGx7pc" - }, - { - "title": "Cyndi Lauper - Time After Time (Karaoke With Lyrics)", - "id": "LlxGOJgGU8U" - }, - { - "title": "Ke$ha - TiK ToK (Karaoke With Lyrics)", - "id": "JIyaahZWK4M" - }, - { - "title": "Alicia Keys - If I Ain't Got You (Karaoke With Lyrics)", - "id": "rjICJO4ZqwA" - }, - { - "title": "50 Cent - In Da Club (Karaoke With Lyrics)", - "id": "B8cLvA9BNh4" - }, - { - "title": "Eminem - The Real Slim Shady (Karaoke With Lyrics)", - "id": "kXItUMJRAOE" - }, - { - "title": "Cyndi Lauper - Girls Just Want To Have Fun (Karaoke With Lyrics)", - "id": "acNC4PEHdrk" - }, - { - "title": "Madonna - Papa Don't Preach (Karaoke With Lyrics)", - "id": "XMTagRGlNVw" - }, - { - "title": "No Doubt - Don't Speak (Karaoke With Lyrics)", - "id": "GO0yTOx82sM" - }, - { - "title": "MC Hammer - U Can't Touch This (Karaoke With Lyrics)", - "id": "jBJB7eC1Tf0" - }, - { - "title": "Pink Floyd - Another Brick In The Wall (Karaoke With Lyrics)", - "id": "kEreWbn4ozg" - }, - { - "title": "Aqua - Barbie Girl (Karaoke With Lyrics)", - "id": "xIjLFYz2Zc4" - }, - { - "title": "Stevie Wonder - I Just Called To Say I Love You (Karaoke With Lyrics)", - "id": "DE_VF0OWW58" - }, - { - "title": "Toto - Africa (Karaoke With Lyrics)", - "id": "w7JU07uH7N4" - }, - { - "title": "Sister Act 2 - Oh Happy Day (Karaoke With Lyrics)", - "id": "oVD01QmutF8" - }, - { - "title": "Cรฉline Dion - It's All Coming Back To Me Now (Karaoke With Lyrics)", - "id": "5ueLNyqpT94" - }, - { - "title": "Toni Basil - Mickey (Karaoke With Lyrics)", - "id": "OPungxPzpYQ" - }, - { - "title": "Billy Ray Cyrus - Achy Breaky Heart (Karaoke With Lyrics)", - "id": "EVGLDmzTYWo" - }, - { - "title": "Britney Spears - Toxic (Karaoke With Lyrics)", - "id": "NuvxOtM6iv8" - }, - { - "title": "BEST OF '80s MUSIC - 3 HOURS NON STOP - KARAOKE WITH LYRICS", - "id": "qlyLqkQlZT8" - }, - { - "title": "BEST OF POP MUSIC EARLY 2000s - Britney Spears, *NSYNC, Christina Aguilera, Destiny's Child", - "id": "w7YV2Azq194" - }, - { - "title": "THE BEYONCร‰ MIX - KARAOKE WITH LYRICS", - "id": "gVxxejAdxMU" - }, - { - "title": "Dolly Parton - Silent Night (Karaoke with Lyrics)", - "id": "QfAQTKb1F7U" - }, - { - "title": "Hallelujah - Pentatonix (Karaoke with Lyrics)", - "id": "k0QAHBAPRW8" - }, - { - "title": "Bobby Helms - Jingle Bell Rock (Karaoke With Lyrics)", - "id": "3hxgiRpcn-w" - }, - { - "title": "You're A Mean One, Mr. Grinch - Thurl Ravenscroft (Karaoke With Lyrics)", - "id": "6e_Fum7_nKk" - }, - { - "title": "Twelve Days of Christmas Karaoke with Lyrics Christmas Carol & Song", - "id": "FDCxyhcjG74" - }, - { - "title": "Justin Bieber - Mistletoe (Karaoke With Lyrics)", - "id": "nDsTVviKUTE" - }, - { - "title": "Perry Como - Have Yourself a Merry Little Christmas (Karaoke With Lyrics)", - "id": "leTK_jPxtYQ" - }, - { - "title": "Traditional - Silver Bells (Karaoke With Lyrics)", - "id": "WDEI_nC7VpI" - }, - { - "title": "Happy Xmas (War Is Over) - John Lennon (Karaoke With Lyrics)", - "id": "tN90L_4i0-g" - }, - { - "title": "Ariana Grande - Santa Tell Me (Karaoke with Lyrics)", - "id": "p3t0mND2n0c" - }, - { - "title": "We Wish You a Merry Christmas - Traditional (Karaoke with Lyrics)", - "id": "XA7AnqpYfAQ" - }, - { - "title": "Frosty the Snowman - Traditional (Karaoke With Lyrics)", - "id": "8hINXuDyyvs" - }, - { - "title": "Elvis Presley - Here Comes Santa Claus (Right Down Santa Claus Lane) (Karaoke With Lyrics)", - "id": "GfdaPxHo4qI" - }, - { - "title": "Feliz Navidad- Jose Feliciano (Karaoke with Lyrics)", - "id": "EiCiJUdQ52I" - }, - { - "title": "BEST CHRISTMAS SONGS: Wham!, Mariah Carey, Bing Crosby (Karaoke With Lyrics)", - "id": "PAzBM7vsnCk" - }, - { - "title": "BEST CHRISTMAS SONGS: Ariana Grande, Michael Buble, Pentatonix, Justin Bieber (Karaoke With Lyrics)", - "id": "o7vYoRDYKKE" - }, - { - "title": "THE BEST CHRISTMAS MUSIC By Elvis Presley, Stevie Wonder (KARAOKE WITH LYRICS)", - "id": "iPvHPBkvYvw" - }, - { - "title": "BEST CHRISTMAS MUSIC (KARAOKE WITH LYRICS) Holiday Classics: Perry Como, John Lennon, Jose Feliciano", - "id": "CPQdOSbs594" - }, - { - "title": "TRADITIONAL CLASSIC CHRISTMAS SONGS /Holiday Classics Jingle Bells, Winter Wonderland, Silver Bells", - "id": "rsoWu8Xmado" - }, - { - "title": "BEST OF '90s FEMALE POP: Britney Spears, Christina Aguilera, Mariah Carey (KARAOKE WITH LYRICS)", - "id": "g3hbvt28PCk" - }, - { - "title": "BEST OF '90s HIP HOP: 2Pac,The Notorious B.I.G., Lauryn Hill, Kris Kross (KARAOKE WITH LYRICS)", - "id": "dvjVdlgt0Qs" - }, - { - "title": "BEST OF '90s KARAOKE WITH LYRICS: ULTIMATE PARTY MEGA HITS", - "id": "21MVb1KL6PY" - }, - { - "title": "MEGA HITS 2020: BEST FEMALE KARAOKE WITH LYRICS BILLIE EILISH, ARIANA GRANDE, DUA LIPA, CARDI B", - "id": "OY5TumPcwhg" - }, - { - "title": "Josh Turner - Your Man (Karaoke With Lyrics)", - "id": "ErcIZmfq3r0" - }, - { - "title": "Creedence Clearwater Revival - Have You Ever Seen The Rain (Karaoke With Lyrics)", - "id": "9L5CUU0sUtI" - }, - { - "title": "KARAOKE WITH LYRICS MEGA MIX : BEST OF '80s", - "id": "neCvVba95L4" - }, - { - "title": "BEST KARAOKE HITS WITH LYRICS: Celine Dion, Etta James, Sister Act 2", - "id": "N2OfRzg9L2c" - }, - { - "title": "FRANK SINATRA - NEW YORK, NEW YORK (KARAOKE WITH LYRICS)", - "id": "YHnbK4A1oiI" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: Toto, Kenny Loggins, The Police, Phil Collins", - "id": "lXXVGhF9dl4" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: Culture Club, Toni Basil, Tiffany, Dexys Midnight Runners", - "id": "TYRmby4CZWs" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: Rick James, The B-52'S, The Bangles, The Romantics", - "id": "ZWPV1bhStt4" - }, - { - "title": "Wham! - Last Christmas", - "id": "Ohv3Qju0_gg" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: Queen, Billy Joel, Survivor", - "id": "plcIjgA-M_4" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: Stevie Wonder, Lionel Ritchie, Rick James", - "id": "Hjv5e3GLmj8" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: a-ha, The Romantics, Pat Benatar, Poison", - "id": "M5wdPxjOAh8" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: Madonna, Whitney Houston, Cyndi Lauper", - "id": "sYaoPD92Q-M" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: Starship, Cher, Air Supply, Bill Medley & Jennifer Warnes", - "id": "rFwd9ezIi98" - }, - { - "title": "BEST OF '80s KARAOKE WITH LYRICS: Toni Basil, Bonnie Tyler, Cyndi Lauper, Rick Astley", - "id": "grPxTMCGjRQ" - }, - { - "title": "BEST KARAOKE SONGS WITH LYRICS: BTS, BLACKPINK, Dua Lipa, The Weeknd, Regard, Roddy Rich, Kygo", - "id": "LjFGub0ocD4" - }, - { - "title": "BEST KARAOKE SONGS WITH LYRICS: Shawn Mendes, SAINt JHN, Arizona Zervas, AJR, Lewis Capaldi", - "id": "hmV73GM8eLs" - }, - { - "title": "BEST KARAOKE SONGS WITH LYRICS: Cardi B, Post Malone, Justin Bieber, Ariana Grande, BLACKPINK", - "id": "9lY-8umIsKo" - }, - { - "title": "BEST KARAOKE SONGS WITH LYRICS: Harry Styles, Megan Thee Stallion, Beyonce, The Weeknd, Surfaces", - "id": "wvgVx3Udh-g" - }, - { - "title": "BEST KARAOKE SONGS WITH LYRICS: Justin Bieber, Dua Lipa, Maroon 5, Tones and I, blackbear, DaBaby", - "id": "S3lluJn_4ps" - }, - { - "title": "BEST KARAOKE SONGS WITH LYRICS: Ariana Grande, Billie Eilish, Khalid, The Weeknd, Selena Gomez", - "id": "BN6TZzsymRA" - }, - { - "title": "Bananarama - Cruel Summer (Karaoke with Lyrics)", - "id": "SZVGKgxEjEQ" - }, - { - "title": "Cardi B - WAP feat. Megan Thee Stallion (Karaoke with Lyrics)", - "id": "mKN3KP7opkI" - }, - { - "title": "Katy Perry - Dark Horse ft. Juicy J (Karaoke with Lyrics)", - "id": "LYLLYYB3VOI" - }, - { - "title": "Madness - Our House (Karaoke with Lyrics)", - "id": "mzzaXmwz3yg" - }, - { - "title": "Juice WRLD - Bandit ft. NBA Youngboy (Karaoke with Lyrics)", - "id": "0hSiiyru2V4" - }, - { - "title": "Blur - Song 2 (Karaoke with Lyrics)", - "id": "fwrBZNNHpfw" - }, - { - "title": "Cher - If I Could Turn Back Time (Karaoke With Lyrics)", - "id": "Jj1AaspNWc4" - }, - { - "title": "J. Balvin, Dua Lipa, Bad Bunny, Tainy - UN DIA (ONE DAY)", - "id": "KgIhS3iVxPw" - }, - { - "title": "Carly Rae Jepsen - I Really Like You (Karaoke With Lyrics)", - "id": "byOxfm8gg6Q" - }, - { - "title": "Culture Club - Do You Really Want To Hurt Me (Karaoke with Lyrics)", - "id": "FF8I7fZvRhc" - }, - { - "title": "Bruce Springsteen & The E-street band - Jersey Girl (Karaoke with Lyrics)", - "id": "L5CokDWaSmM" - }, - { - "title": "Luke Combs - Six Feet Apart (Karaoke with Lyrics)", - "id": "WBn7gFN_Kb4" - }, - { - "title": "Lee Brice - One of Them Girls (Karaoke with Lyrics)", - "id": "PyuMn_LJhxc" - }, - { - "title": "Ariana Grande & Justin Bieber - Stuck with U (Karaoke with Lyrics)", - "id": "JybjIYrJ5ck" - }, - { - "title": "Sammy Davis Jr - The Candy Man (Karaoke with Lyrics)", - "id": "Ej3bv8WU1Mk" - }, - { - "title": "Bobby \"Boris\" Pickett & The Crypt-Kickers- MONSTER MASH (Karaoke with Lyrics)", - "id": "ZGr_CTWhN4w" - }, - { - "title": "Pat Benatar - Love Is A Battlefield (Karaoke with Lyrics)", - "id": "SoGW3XJ_oqE" - }, - { - "title": "Van Halen - Right Now (Karaoke with Lyrics)", - "id": "6FoAgEv8R4s" - }, - { - "title": "Van Halen - Dreams (Karaoke with Lyrics)", - "id": "aLdN2A91B9k" - }, - { - "title": "Van Halen - Hot For Teacher (Karaoke with Lyrics)", - "id": "a6bL5CGi6x8" - }, - { - "title": "Van Halen - Jump (Karaoke with Lyrics)", - "id": "2L-ftfl1la0" - }, - { - "title": "Van Halen - Dance The Night Away (Karaoke with Lyrics)", - "id": "ykpkqHXoS70" - }, - { - "title": "Van Halen - Why Can't This Be Love (Karaoke with Lyrics)", - "id": "B6v3l93B-nA" - }, - { - "title": "Van Halen - Ain't Talkin' 'Bout Love (Karaoke with Lyrics)", - "id": "qjiKbE0bsLM" - }, - { - "title": "Van Halen - Jamie's Cryin (Karaoke with Lyrics)", - "id": "9aU_sFKRZUU" - }, - { - "title": "Van Halen - Runnin' With The Devil (Karaoke with Lyrics)", - "id": "0J7vRKVQqR8" - }, - { - "title": "Van Halen - Panama (Karaoke with Lyrics)", - "id": "itLSSduy1LA" - }, - { - "title": "Van Halen - And The Cradle Will Rock (Karaoke with Lyrics)", - "id": "SoUEkmTseRY" - }, - { - "title": "Van Halen - Beautiful Girls (Karaoke with Lyrics)", - "id": "Artt3Sq148s" - }, - { - "title": "Arizona Zervas - ROXANNE (Karaoke with Lyrics)", - "id": "9V5lMk3TeZc" - }, - { - "title": "Voyage voyage : Desireless", - "id": "Karaokรฉ avec paroles" - }, - { - "title": "Carla Bruni - Quelqu'un m'a dit (Karaokรฉ avec paroles)", - "id": "dqMCayv-h6s" - }, - { - "title": "Les Rita Mitsouko - Marcia Baรฏla (Karaoke with lyrics)", - "id": "KUjXydfKNUw" - }, - { - "title": "Marc Hamilton - Comme j'ai toujours envie d'aimer (Karaokรฉ avec paroles)", - "id": "Wj3Xj103TsU" - }, - { - "title": "Culture Club - Karma Chameleon (Karaoke with Lyrics)", - "id": "cHpsZVlL254" - }, - { - "title": "Des'ree - You Gotta Be (Karaoke with Lyrics)", - "id": "OVowL0Belmg" - }, - { - "title": "Don Omar - Pura Vida (Karaoke with Lyrics)", - "id": "dbrDcpa_ihA" - }, - { - "title": "Helen Reddy - I Am Woman (Karaoke with Lyrics)", - "id": "MknO6HqYi2Y" - }, - { - "title": "Cheap Trick - I want you to want me (Karaoke with Lyrics)", - "id": "W0UGsXi6_YI" - }, - { - "title": "Dua Lipa - Levitating (Karaoke with Lyrics)", - "id": "sE3KIuXtzTA" - }, - { - "title": "Bachman Turner Overdrive-Taking care of business (Karaoke with Lyrics)", - "id": "Vz1bP9BYtz0" - }, - { - "title": "Paula Abdul - Straight Up (Karaoke with Lyrics)", - "id": "T-c8xNf_3XA" - }, - { - "title": "7 Summers : Morgan Wallen", - "id": "Karaoke with Lyrics" - }, - { - "title": "This Is Me : Keala Settle & The Greatest Showman Ensemble", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Panic! At the Disco: High Hopes", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "ABBA: Dancing Queen", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Ziv Zaifman, Hugh Jackman, Michelle Williams & The Greatest Showman Ensemble: A Million Dreams", - "id": "nkUTMZuzrjc" - }, - { - "title": "The Beatles: Let It Be", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "The Tokens: The Lion Sleeps Tonight", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Lewis Capaldi: Someone You Loved", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Lizzo: Truth Hurts", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Nelly: Just A Dream", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Justin Bieber: Yummy", - "id": "Karaoke with Lyrics" - }, - { - "title": "BLACKPINK: How You Like That", - "id": "Karaoke with Lyrics" - }, - { - "title": "BLACKPINK: How You Like That", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Justin Bieber: Yummy", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "AJR: Bang!", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lionel Richie: Hello", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Tones and I: Dance Monkey", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Nelly: Just A Dream", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bruno Mars: Just The Way You Are", - "id": "Karaoke with Lyrics" - }, - { - "title": "Gotye feat. Kimbra: Somebody That I Used To Know (Duet)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Diana Ross & Lionel Richie: Endless Love (Duet)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Marvin Gaye & Tammi Terrell: Ain't No Mountain High Enough (Duet)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Je l'aime ร  mourir : Francis Cabrel", - "id": "Karaoke with Lyrics" - }, - { - "title": "Femme like u : K Maro", - "id": "Karaokรฉ avec paroles" - }, - { - "title": "Les Champs-ร‰lysรฉes : Joe Dassin", - "id": "Karaokรฉ avec paroles" - }, - { - "title": "On ne change pas : Cรฉline Dion", - "id": "Karaokรฉ avec paroles" - }, - { - "title": "Femme libรฉrรฉe : Cooky Dingler", - "id": "Karaokรฉ avec paroles" - }, - { - "title": "Dรฉgรฉnรฉrations : Mes Aรฏeux", - "id": "Karaokรฉ avec paroles" - }, - { - "title": "C'est zรฉro : Julie Masse", - "id": "Karaokรฉ avec paroles" - }, - { - "title": "Calvaire : La Chicane", - "id": "Karaokรฉ avec paroles" - }, - { - "title": "Megan Thee Stallion - Savage Remix (feat. Beyoncรฉ) (Karaoke with Lyrics)", - "id": "MtG3nVkf2AU" - }, - { - "title": "I Should Probably Go To Bed : Dan + Shay", - "id": "Karaoke with Lyrics" - }, - { - "title": "Downtown : J Balvin & Anitta", - "id": "Karaoke with Lyrics" - }, - { - "title": "Nobody's Love : Maroon 5", - "id": "Karaoke with Lyrics" - }, - { - "title": "Believe : Shawn Mendes", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dynamite : BTS", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hall Of Fame (Duet) : The Script feat. will.i.am", - "id": "Karaoke with Lyrics" - }, - { - "title": "Jesus, Take The Wheel : Carrie Underwood", - "id": "Karaoke with Lyrics" - }, - { - "title": "See You Again (Duet) : Wiz Khalifa feat. Charlie Puth", - "id": "Karaoke with Lyrics" - }, - { - "title": "It's The Hard-Knock Life : Annie (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Livin' La Vida Loca : Ricky Martin", - "id": "Karaoke with Lyrics" - }, - { - "title": "God's Country : Blake Shelton", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lose You To Love Me : Selena Gomez", - "id": "Karaoke with Lyrics" - }, - { - "title": "Good As Hell : Lizzo", - "id": "Karaoke with Lyrics" - }, - { - "title": "Jolene : Dolly Parton", - "id": "Karaoke with Lyrics" - }, - { - "title": "She Drives Me Crazy : Brett Kissel", - "id": "Karaoke with Lyrics" - }, - { - "title": "9 To 5 : Dolly Parton", - "id": "Karaoke with Lyrics" - }, - { - "title": "Billie Eilish - my future (Karaoke with Lyrics)", - "id": "SVpamNZNDEQ" - }, - { - "title": "Come & Go : Juice WRLD & Marshmello", - "id": "Karaoke with Lyrics" - }, - { - "title": "What's Love Got to Do With It : Kygo & Tina Turner", - "id": "Karaoke with Lyrics" - }, - { - "title": "Wishing Well : Juice WRLD", - "id": "Karaoke with Lyrics" - }, - { - "title": "Mammas Don't Let Your Babies Grow Up To Be Cowboys (Duet) : Waylon Jennings & Willie Nelson", - "id": "Kar..." - }, - { - "title": "Before You Go : Lewis Capaldi", - "id": "Karaoke with Lyrics" - }, - { - "title": "Happy Birthday : Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dream A Little Dream Of Me : Mama Cass", - "id": "Karaoke with Lyrics" - }, - { - "title": "Balance ton quoi : Angรจle", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rewrite The Stars : The Greatest Showman: Reimagined (Anne-Marie & James Arthur)", - "id": "Karaoke (with ..." - }, - { - "title": "Fight Song : Rachel Platten", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "More Hearts Than Mine : Ingrid Andress", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Rewrite The Stars : The Greatest Showman: Reimagined (Anne-Marie & James Arthur)", - "id": "Karaoke" - }, - { - "title": "More Hearts Than Mine : Ingrid Andress", - "id": "Karaoke with Lyrics" - }, - { - "title": "Happy : Pharrell Williams", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Old Town Road : Lil Nas X feat. Billy Ray Cyrus", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Dance Monkey : Tones and I", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "I Love Me : Demi Lovato", - "id": "Karaoke with Lyrics" - }, - { - "title": "She : Harry Styles", - "id": "Karaoke with Lyrics" - }, - { - "title": "Friends In Low Places (Studio Version) : Garth Brooks", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Let Her Go : Passenger", - "id": "Karaoke with Lyrics" - }, - { - "title": "A Thousand Years : Christina Perri", - "id": "Karaoke with Lyrics" - }, - { - "title": "All Of Me : John Legend", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Happier : Marshmello feat. Bastille", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "All Of Me : John Legend", - "id": "Karaoke with Lyrics" - }, - { - "title": "Happier : Marshmello feat. Bastille", - "id": "Karaoke with Lyrics" - }, - { - "title": "Listen : Beyoncรฉ", - "id": "Karaoke with Lyrics (with lead vocal)" - }, - { - "title": "Listen : Beyoncรฉ", - "id": "Karaoke with Lyrics" - }, - { - "title": "You Are The Reason : Calum Scott", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Will Always Love You : Whitney Houston", - "id": "Karaoke with Lyrics" - }, - { - "title": "Idontwannabeyouanymore : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Just Give Me A Reason (Duet) : Pink feat. Nate Ruess", - "id": "Karaoke with Lyrics" - }, - { - "title": "Shut Up and Dance : WALK THE MOON", - "id": "Karaoke with Lyrics" - }, - { - "title": "You Belong With Me : Taylor Swift", - "id": "Karaoke with Lyrics" - }, - { - "title": "If The World Was Ending : JP Saxe feat. Julia Michaels", - "id": "Karaoke with Lyrics" - }, - { - "title": "Uptown Funk : Mark Ronson feat. Bruno Mars", - "id": "Karaoke with Lyrics" - }, - { - "title": "ร‡a fait rire les oiseaux : La Compagnie Crรฉole", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hey There Delilah : Plain White T's", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ademnood : Linda, Roos & Jessica", - "id": "Karaoke with Lyrics" - }, - { - "title": "Atemlos durch die nacht : Helene Fischer", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Hope : Gabby Barrett", - "id": "Karaoke with Lyrics" - }, - { - "title": "Blank Space : Taylor Swift", - "id": "Karaoke with Lyrics" - }, - { - "title": "Shallow : Lady Gaga & Bradley Cooper", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dance Monkey : Tones and I", - "id": "Karaoke with Lyrics" - }, - { - "title": "Als de morgen is gekomen : Jan Smit", - "id": "Karaoke with Lyrics" - }, - { - "title": "Du Hast (German Version) : Rammstein", - "id": "Karaoke with Lyrics" - }, - { - "title": "Girls Like You : Maroon 5 feat. Cardi B", - "id": "Karaoke with Lyrics" - }, - { - "title": "X : Jonas Brothers feat. Karol G", - "id": "Karaoke with Lyrics" - }, - { - "title": "99 Luftballons : Nena", - "id": "Karaoke with Lyrics" - }, - { - "title": "Faded : Alan Walker", - "id": "Karaoke with Lyrics" - }, - { - "title": "Get Lucky : Daft Punk", - "id": "Karaoke with Lyrics" - }, - { - "title": "Creep (Radio Version) : Radiohead", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rockstar : DaBaby feat. Roddy Ricch", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ze lijkt net niet op jou : Nick & Simon", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Can Only Imagine : MercyMe", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sunflower : Post Malone & Swae Lee", - "id": "Karaoke with Lyrics" - }, - { - "title": "La vie en rose : ร‰dith Piaf", - "id": "Karaoke with Lyrics" - }, - { - "title": "Pour Some Sugar On Me : Def Leppard", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lovely : Billie Eilish & Khalid", - "id": "Karaoke with Lyrics" - }, - { - "title": "Eye Of The Tiger : Survivor", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Real Slim Shady (Radio Version) : Eminem", - "id": "Karaoke with Lyrics" - }, - { - "title": "Nuthin' But A \"G\" Thang : Dr. Dre feat. Snoop Doggy Dogg", - "id": "Karaoke with Lyrics" - }, - { - "title": "Weak : AJR", - "id": "Karaoke with Lyrics" - }, - { - "title": "Tusa : Karol G & Nicki Minaj", - "id": "Karaoke with Lyrics" - }, - { - "title": "Fishin' In The Dark : Nitty Gritty Dirt Band", - "id": "Karaoke with Lyrics" - }, - { - "title": "Tubthumping : Chumbawamba", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sucker : Jonas Brothers", - "id": "Karaoke with Lyrics" - }, - { - "title": "High Hopes : Panic! At the Disco", - "id": "Karaoke with Lyrics" - }, - { - "title": "Build Me Up, Buttercup : The Foundations", - "id": "Karaoke with Lyrics" - }, - { - "title": "Cotton Eye Joe : Rednex", - "id": "Karaoke with Lyrics" - }, - { - "title": "Youngblood : 5 Seconds Of Summer", - "id": "Karaoke with Lyrics" - }, - { - "title": "Worldwide Beautiful : Kane Brown", - "id": "Karaoke with Lyrics" - }, - { - "title": "Learn To Fly : Surfaces & Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Friends In Low Places (Live Version) : Garth Brooks", - "id": "Karaoke with Lyrics" - }, - { - "title": "De soldaat : Nick & Simon", - "id": "Karaoke with Lyrics" - }, - { - "title": "We Are The Champions : Queen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sing a duet with country artist Brett Kissel!", - "id": "Yokee Karaoke" - }, - { - "title": "Roar : Katy Perry", - "id": "Karaoke with Lyrics" - }, - { - "title": "I'm Gonna Be (500 Miles) : Proclaimers", - "id": "Karaoke with Lyrics" - }, - { - "title": "Truth Hurts : Lizzo", - "id": "Karaoke with Lyrics" - }, - { - "title": "Love Shack : The B-52's", - "id": "Karaoke with Lyrics" - }, - { - "title": "Old Town Road : Lil Nas X", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hopelessly Devoted To You : Olivia Newton-John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Better Now : Post Malone", - "id": "Karaoke with Lyrics" - }, - { - "title": "Peaceful Easy Feeling : Eagles", - "id": "Karaoke with Lyrics" - }, - { - "title": "MIA : Bad Bunny feat. Drake", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lucid Dreams : Juice WRLD", - "id": "Karaoke with Lyrics" - }, - { - "title": "Never Enough : The Greatest Showman Ensemble", - "id": "Karaoke with Lyrics" - }, - { - "title": "This Is Me : Keala Settle & The Greatest Showman Ensemble", - "id": "Karaoke with Lyrics" - }, - { - "title": "Boyfriend : Ariana Grande", - "id": "Karaoke with Lyrics" - }, - { - "title": "Chasin' You : Morgan Wallen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ocean Eyes : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lights Up : Harry Styles", - "id": "Karaoke with Lyrics" - }, - { - "title": "No Time To Die : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Perfect Strangers : Jonas Blue feat. JP Cooper", - "id": "Karaoke with Lyrics" - }, - { - "title": "Shut Up & Drive : Rihanna", - "id": "Karaoke with Lyrics" - }, - { - "title": "Wild Things : Alessia Cara", - "id": "Karaoke with Lyrics" - }, - { - "title": "Daisies : Katy Perry", - "id": "Karaoke with Lyrics" - }, - { - "title": "Is This Love : Bob Marley & The Wailers", - "id": "Karaoke with Lyrics" - }, - { - "title": "Beautiful : Christina Aguilera", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Rush : Young T & Bugsey feat. Headie One", - "id": "Karaoke with Lyrics" - }, - { - "title": "Say So (Remix) : Doja Cat feat. Nicki Minaj", - "id": "Karaoke with Lyrics" - }, - { - "title": "Savage : Megan Thee Stallion", - "id": "Karaoke with Lyrics" - }, - { - "title": "Get The Party Started (Radio Version) : Pink", - "id": "Karaoke with Lyrics" - }, - { - "title": "Where Are รœ Now : Skrillex & Diplo feat. Justin Bieber", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lose Yourself (Radio Version) : Eminem", - "id": "Karaoke with Lyrics" - }, - { - "title": "Can't Get You Out Of My Head : Kylie Minogue", - "id": "Karaoke with Lyrics" - }, - { - "title": "Three Little Birds : Bob Marley & The Wailers", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Middle : Jimmy Eat World", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Look Back In Anger : Oasis", - "id": "Karaoke with Lyrics" - }, - { - "title": "What's Up : 4 Non Blondes", - "id": "Karaoke with Lyrics" - }, - { - "title": "Footloose : Kenny Loggins", - "id": "Karaoke with Lyrics" - }, - { - "title": "Together : Sia", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sunday Best : Surfaces", - "id": "Karaoke with Lyrics" - }, - { - "title": "The House That Built Me : Miranda Lambert", - "id": "Karaoke with Lyrics" - }, - { - "title": "I'm Just A Kid : Simple Plan", - "id": "Karaoke with Lyrics" - }, - { - "title": "Homesick : Kane Brown", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rare: Selena Gomez", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Love Me: Demi Lovato", - "id": "Karaoke with Lyrics" - }, - { - "title": "Falling: Trevor Daniel", - "id": "Karaoke with Lyrics" - }, - { - "title": "Whiskey Glasses : Morgan Wallen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Everything I Wanted : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Just You And I : Tom Walker", - "id": "Karaoke with Lyrics" - }, - { - "title": "Juice : Lizzo", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Start Now : Dua Lipa", - "id": "Karaoke with Lyrics" - }, - { - "title": "Be Alright : Dean Lewis", - "id": "Karaoke with Lyrics" - }, - { - "title": "Let Me Down Slowly : Alec Benjamin", - "id": "Karaoke with Lyrics" - }, - { - "title": "Say So : Doja Cat", - "id": "Karaoke with Lyrics" - }, - { - "title": "One Man Band : Old Dominion", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ride It: Regard", - "id": "Karaoke with Lyrics" - }, - { - "title": "Harry Styles - Watermelon Sugar (Karaoke With Lyrics)", - "id": "-f6F45Mnf9M" - }, - { - "title": "Our Karaoke tribe is 1 million strong!", - "id": "IVoZ9wOL20U" - }, - { - "title": "Roses (Imanbek Remix) : SAINt JHN", - "id": "Karaoke with Lyrics" - }, - { - "title": "Break My Heart : Dua Lipa", - "id": "Karaoke with Lyrics" - }, - { - "title": "Level of Concern : TWENTY ร˜NE PILร˜TS", - "id": "Karaoke with Lyrics" - }, - { - "title": "In Your Eyes : The Weeknd", - "id": "Karaoke with Lyrics" - }, - { - "title": "Justin Bieber - Intentions (Karaoke with Lyrics) ft. Quavo", - "id": "cKddbZeQKkE" - }, - { - "title": "Hot Girl Bummer : blackbear", - "id": "Karaoke with Lyrics" - }, - { - "title": "Circles : Post Malone", - "id": "Karaoke with Lyrics" - }, - { - "title": "Thank U, Next : Ariana Grande", - "id": "Karaoke with Lyrics" - }, - { - "title": "Memories : Maroon 5", - "id": "Karaoke with Lyrics" - }, - { - "title": "break up with your girlfriend, i'm bored : Ariana Grande", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rapper's Delight : Sugarhill Gang", - "id": "Karaoke with Lyrics" - }, - { - "title": "Better : Khalid", - "id": "Karaoke with Lyrics" - }, - { - "title": "Blinding Lights : The Weeknd", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hot Stuff : Donna Summer", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lady Marmalade : Patti LaBelle", - "id": "Karaoke with Lyrics" - }, - { - "title": "Boogie Wonderland : Earth, Wind & Fire", - "id": "Karaoke with Lyrics" - }, - { - "title": "Celebration : Kool & The Gang", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Love The Nightlife (Disco 'round) : Alicia Bridges", - "id": "Karaoke with Lyrics" - }, - { - "title": "You Sexy Thing : Hot Chocolate", - "id": "Karaoke with Lyrics" - }, - { - "title": "Forever And Ever, Amen : Randy Travis", - "id": "Karaoke with Lyrics" - }, - { - "title": "Black : Pearl Jam", - "id": "Karaoke with Lyrics" - }, - { - "title": "Budapest : George Ezra", - "id": "Karaoke with Lyrics" - }, - { - "title": "Wrecking Ball : Miley Cyrus", - "id": "Karaoke with Lyrics" - }, - { - "title": "Titanium : David Guetta feat. Sia", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lady : Kenny Rogers", - "id": "Karaoke with Lyrics" - }, - { - "title": "Downtown : Petula Clark", - "id": "Karaoke with Lyrics" - }, - { - "title": "Teenage Dirtbag : Wheatus", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't You (Forget About Me) : Simple Minds", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Think We're Alone Now : Tiffany", - "id": "Karaoke with Lyrics" - }, - { - "title": "Mi Gente : Willy William & J Balvin", - "id": "Karaoke with Lyrics" - }, - { - "title": "Do You Love Me : The Contours", - "id": "Karaoke with Lyrics" - }, - { - "title": "Love Me Tender : Elvis Presley", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Feel It Coming : The Weeknd feat. Daft Punk", - "id": "Karaoke with Lyrics" - }, - { - "title": "Oceaan : Racoon", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Box : Roddy Ricch", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hot Blooded : Foreigner", - "id": "Karaoke with Lyrics" - }, - { - "title": "Someone You Loved : Lewis Capaldi", - "id": "Karaoke with Lyrics" - }, - { - "title": "Boot Scootin' Boogie : Brooks & Dunn", - "id": "Karaoke with Lyrics" - }, - { - "title": "Wish You Were Gay : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Love You : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Copycat : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dreams : Jackie Evancho", - "id": "Karaoke with Lyrics" - }, - { - "title": "She Used To Be Mine : Jackie Evancho", - "id": "Karaoke with Lyrics" - }, - { - "title": "Watch : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "A Million Dreams : Pink", - "id": "Karaoke with Lyrics" - }, - { - "title": "I'm Still Standing : Taron Egerton", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lost On You : LP", - "id": "Karaoke with Lyrics" - }, - { - "title": "Best Part : Daniel Caesar feat. H.E.R.", - "id": "Karaoke with Lyrics" - }, - { - "title": "All the Good Girls Go to Hell : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Robbery : Juice WRLD", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hua Tian Cuo : Leehom Wang", - "id": "Karaoke with Lyrics" - }, - { - "title": "Back To You : Selena Gomez", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Let Me Down : The Chainsmokers feat. Daya", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bruises : Lewis Capaldi", - "id": "Karaoke with Lyrics" - }, - { - "title": "Last Hurrah : Bebe Rexha", - "id": "Karaoke with Lyrics" - }, - { - "title": "Wolves : Selena Gomez feat. Marshmello", - "id": "Karaoke with Lyrics" - }, - { - "title": "Call Out My Name : The Weeknd", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ransom : Lil Tecca", - "id": "Karaoke with Lyrics" - }, - { - "title": "Get the Party Started with Stingray Karaoke!", - "id": "zuprYIC6YiQ" - }, - { - "title": "Danza Kuduro : Don Omar feat. Lucenzo", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bathwater : No Doubt", - "id": "Karaoke with Lyrics" - }, - { - "title": "New : No Doubt", - "id": "Karaoke with Lyrics" - }, - { - "title": "What A Fool Believes : The Doobie Brothers", - "id": "Karaoke with Lyrics" - }, - { - "title": "Underneath It All (Radio Version) : No Doubt & Lady Saw", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ex-Girlfriend : No Doubt", - "id": "Karaoke with Lyrics" - }, - { - "title": "Simple Kind Of Life : No Doubt", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Didn't Mean To Turn You On : Robert Palmer", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sunday Morning : No Doubt", - "id": "Karaoke with Lyrics" - }, - { - "title": "Minute By Minute : The Doobie Brothers", - "id": "Karaoke with Lyrics" - }, - { - "title": "Running : No Doubt", - "id": "Karaoke with Lyrics" - }, - { - "title": "Takin' It To The Streets : The Doobie Brothers", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Speak : No Doubt", - "id": "Karaoke with Lyrics" - }, - { - "title": "Matters Of The Heart : Michael McDonald & Vince Gill", - "id": "Karaoke with Lyrics" - }, - { - "title": "Comfortably Numb : Pink Floyd", - "id": "Karaoke with Lyrics" - }, - { - "title": "Higher Love : Kygo & Whitney Houston", - "id": "Karaoke with Lyrics" - }, - { - "title": "Like A Hobo : Charlie Winston", - "id": "Karaoke with Lyrics" - }, - { - "title": "Piece by Piece : Kelly Clarkson", - "id": "Karaoke with Lyrics" - }, - { - "title": "Right Now : SR-71", - "id": "Karaoke with Lyrics" - }, - { - "title": "Help Me : Joni Mitchell", - "id": "Karaoke with Lyrics" - }, - { - "title": "You Turn Me On I'm A Radio : Joni Mitchell", - "id": "Karaoke with Lyrics" - }, - { - "title": "Big Yellow Taxi : Joni Mitchell", - "id": "Karaoke with Lyrics" - }, - { - "title": "If We Make It Through December : Merle Haggard", - "id": "Karaoke with Lyrics" - }, - { - "title": "Santa Looked A Lot Like Daddy : Buck Owens", - "id": "Karaoke with Lyrics" - }, - { - "title": "Santa Claus Is Coming To Town - Traditional (Karaoke with Lyrics)", - "id": "nRXmwLQOM60" - }, - { - "title": "2000 Miles : The Pretenders", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hold On : K.T. Tunstall", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rise Up : Andra Day", - "id": "Karaoke with Lyrics" - }, - { - "title": "In The Summertime : Mungo Jerry", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hallelujah : Alexandra Burke", - "id": "Karaoke with Lyrics" - }, - { - "title": "Fire And Rain : James Taylor", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Let Me Be Lonely Tonight : James Taylor", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sweet Baby James : James Taylor", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Stop Me Now : Queen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Otro trago : Sech feat. Darrell, Nicky Jam, Ozuna & Anuel AA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Christmas (Baby Please Come Home) : Michael Bublรฉ", - "id": "Karaoke with Lyrics" - }, - { - "title": "Canned Heat : Jamiroquai", - "id": "Karaoke with Lyrics" - }, - { - "title": "Christmas Wrapping : The Waitresses", - "id": "Karaoke with Lyrics" - }, - { - "title": "Your Body Is A Wonderland (Radio Version) : John Mayer", - "id": "Karaoke with Lyrics" - }, - { - "title": "Thinking About You : Norah Jones", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Middle : Zedd, Maren Morris & Grey", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lil Nas X - Old Town Road ft. Billy Ray Cyrus (Karaoke With Lyrics)", - "id": "IYujoAixmus" - }, - { - "title": "A Million Dreams : Ziv Zaifman, Hugh Jackman, Michelle Williams & The Greatest Showman Ensemble", - "id": "..." - }, - { - "title": "A Million Dreams (Reprise) : Austyn Johnson, Cameron Seely, Hugh Jackman & The Greatest Showman E...", - "id": "sxAmMMaqaxI" - }, - { - "title": "Down To The Honkytonk : Jake Owen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Shotgun : George Ezra", - "id": "Karaoke with Lyrics" - }, - { - "title": "Always Remember Us This Way : Lady Gaga", - "id": "Karaoke with Lyrics" - }, - { - "title": "HP : Maluma", - "id": "Karaoke with Lyrics" - }, - { - "title": "Synchronicity II : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "Spirits In The Material World : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "So Lonely : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "De Do Do Do, De Da Da Da : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "King Of Pain : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "Walking On The Moon : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "Message In A Bottle : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "Can't Stand Losing You : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bury A Friend : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Wrapped Around Your Finger : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "Oompa Loompa : Willy Wonka And The Chocolate Factory", - "id": "Karaoke with Lyrics" - }, - { - "title": "Roxanne : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sweet But Psycho : Ava Max", - "id": "Karaoke with Lyrics" - }, - { - "title": "Every Breath You Take : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hound Dog : Elvis Presley", - "id": "Karaoke with Lyrics" - }, - { - "title": "Every Little Thing She Does Is Magic : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Devil Went Down To Georgia : Charlie Daniels Band", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ghost : Ella Henderson", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Stand So Close To Me : The Police", - "id": "Karaoke with Lyrics" - }, - { - "title": "My Favorite Things : Diana Ross & The Supremes", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Enjoy Being A Girl : Flower Drum Song (Broadway Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "What's It Gonna Be : H Two O feat. Platnum", - "id": "Karaoke with Lyrics" - }, - { - "title": "Yokee: Sing with the Stars โ€“ Gabriella x Camile โ€“ โ€˜Zombieโ€™ Duet", - "id": "V4qAY_DCT7E" - }, - { - "title": "I Have Confidence : The Sound Of Music (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Edelweiss : The Sound Of Music (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rule The World : Take That", - "id": "Karaoke with Lyrics" - }, - { - "title": "Climb Ev'ry Mountain : The Sound Of Music (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "If A Song Could Get Me You : Marit Larsen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Cornflake Girl : Tori Amos", - "id": "Karaoke with Lyrics" - }, - { - "title": "I'm Gonna Wash That Man Right Outa My Hair : South Pacific (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Forever : Kenny Loggins", - "id": "Karaoke with Lyrics" - }, - { - "title": "Uninvited : Freemasons", - "id": "Karaoke with Lyrics" - }, - { - "title": "So Long, Farewell : The Sound Of Music (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "You'll Never Walk Alone : Elvis Presley", - "id": "Karaoke with Lyrics" - }, - { - "title": "Let Me Be The One : Blessid Union of Souls", - "id": "Karaoke with Lyrics" - }, - { - "title": "When Someone Stops Loving You : Little Big Town", - "id": "Karaoke with Lyrics" - }, - { - "title": "My Favorite Things : The Sound Of Music (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "It Might As Well Be Spring : Dick Haymes", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Prefer The Moonlight : Kenny Rogers", - "id": "Karaoke with Lyrics" - }, - { - "title": "Whenever I Call You \"Friend\" (Duet) : Kenny Loggins & Stevie Nicks", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sunrise, Sunset : Fiddler On The Roof (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Sound Of Music : The Sound Of Music (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sixteen Going On Seventeen : The Sound Of Music (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Alive & Kicking : Simple Minds", - "id": "Karaoke with Lyrics" - }, - { - "title": "When The Party's Over : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lonely Teardrops : Jackie Wilson", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Hellion/Electric Eye : Judas Priest", - "id": "Karaoke with Lyrics" - }, - { - "title": "Oklahoma : Oklahoma (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Quizรกs : Enrique Iglesias", - "id": "Karaoke with Lyrics" - }, - { - "title": "Do-Re-Mi : The Sound Of Music (Movie Version)", - "id": "Karaoke with Lyrics" - }, - { - "title": "Holding Out For A Hero : Bonnie Tyler", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dance Hall Days : Wang Chung", - "id": "Karaoke with Lyrics" - }, - { - "title": "Get Down On It : Kool & The Gang", - "id": "Karaoke with Lyrics" - }, - { - "title": "Can't Get Enough Of Your Love, Babe : Barry White", - "id": "Karaoke with Lyrics" - }, - { - "title": "Get Down Tonight : KC And The Sunshine Band", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dance To This : Troye Sivan feat. Ariana Grande", - "id": "Karaoke with Lyrics" - }, - { - "title": "Wow : Post Malone", - "id": "Karaoke with Lyrics" - }, - { - "title": "You'll Never Find Another Love Like Mine : Lou Rawls", - "id": "Karaoke with Lyrics" - }, - { - "title": "If I Can't Have You : Shawn Mendes", - "id": "Karaoke with Lyrics" - }, - { - "title": "Daddy Cool : Boney M", - "id": "Karaoke with Lyrics" - }, - { - "title": "December, 1963 (Oh, What A Night) : The 4 Seasons", - "id": "Karaoke with Lyrics" - }, - { - "title": "Funkytown : Lipps, Inc.", - "id": "Karaoke with Lyrics" - }, - { - "title": "We Are Family : Sister Sledge", - "id": "Karaoke with Lyrics" - }, - { - "title": "It's Raining Men : The Weather Girls", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bad Girls : Donna Summer", - "id": "Karaoke with Lyrics" - }, - { - "title": "Le Freak : Chic", - "id": "Karaoke with Lyrics" - }, - { - "title": "7 Rings : Ariana Grande", - "id": "Karaoke with Lyrics" - }, - { - "title": "Levon : Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bodak Yellow : Cardi B", - "id": "Karaoke with Lyrics" - }, - { - "title": "Despacito : Luis Fonsi", - "id": "Karaoke with Lyrics" - }, - { - "title": "Talk : Khalid", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ddu-Du Ddu-Du : BLACKPINK", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bad Guy : Billie Eilish", - "id": "Karaoke with Lyrics" - }, - { - "title": "Little Jeannie : Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Daniel : Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Guess That's Why They Call It The Blues : Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Blue Eyes : Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Buy Me A Boat : Chris Janson", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Let The Sun Go Down On Me (Duet) : George Michael & Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bennie And The Jets : Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Elton John - Goodbye Yellow Brick Road (Karaoke with Lyrics)", - "id": "n8fQBYCK0_o" - }, - { - "title": "Coward Of The County : Kenny Rogers", - "id": "Karaoke with Lyrics" - }, - { - "title": "Elton John - Tiny Dancer (Karaoke with Lyrics)", - "id": "TAh67MnJlIU" - }, - { - "title": "Sad Songs (Say So Much) : Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Marry You : Bruno Mars", - "id": "Karaoke with Lyrics" - }, - { - "title": "You Make It Easy : Jason Aldean", - "id": "Karaoke with Lyrics" - }, - { - "title": "Feel It Still : Portugal, the Man", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Go Breaking My Heart (Duet) : Elton John & Kiki Dee", - "id": "Karaoke with Lyrics" - }, - { - "title": "Humble and Kind : Tim McGraw", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Got You Babe (Duet) : Sonny & Cher", - "id": "Karaoke with Lyrics" - }, - { - "title": "Copperhead Road : Steve Earle", - "id": "Karaoke with Lyrics" - }, - { - "title": "Drunk On A Plane : Dierks Bentley", - "id": "Karaoke with Lyrics" - }, - { - "title": "My Church : Maren Morris", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lost In Japan : Shawn Mendes", - "id": "Karaoke with Lyrics" - }, - { - "title": "Born To Be Yours : Kygo & Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "Best Day Of My Life : American Authors", - "id": "Karaoke with Lyrics" - }, - { - "title": "Another Brick In The Wall (Part II) : Pink Floyd", - "id": "Karaoke with Lyrics" - }, - { - "title": "Graduation (Friends Forever) (Radio Version) : Vitamin C", - "id": "Karaoke with Lyrics" - }, - { - "title": "We Like To Party! : Vengaboys", - "id": "Karaoke with Lyrics" - }, - { - "title": "School's Out : Alice Cooper", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dancing in the Street : Martha and the Vandellas", - "id": "Karaoke with Lyrics" - }, - { - "title": "Super Bass : Nicki Minaj", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bad and Boujee : Migos feat. Lil Uzi Vert", - "id": "Karaoke with Lyrics" - }, - { - "title": "My Name Is (Radio Version) : Eminem", - "id": "Karaoke with Lyrics" - }, - { - "title": "Born This Way : Lady Gaga", - "id": "Karaoke with Lyrics" - }, - { - "title": "May We All : Florida Georgia Line feat. Tim McGraw", - "id": "Karaoke with Lyrics" - }, - { - "title": "Scars To Your Beautiful : Alessia Cara", - "id": "Karaoke with Lyrics" - }, - { - "title": "Baby : Justin Bieber feat. Ludacris", - "id": "Karaoke with Lyrics" - }, - { - "title": "Attention : Charlie Puth", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bartender : Lady Antebellum", - "id": "Karaoke with Lyrics" - }, - { - "title": "American Kids : Kenny Chesney", - "id": "Karaoke with Lyrics" - }, - { - "title": "Fancy : Reba McEntire", - "id": "Karaoke with Lyrics" - }, - { - "title": "T-Shirt : Thomas Rhett", - "id": "Karaoke with Lyrics" - }, - { - "title": "Redbone : Childish Gambino", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Have Nothing : Whitney Houston", - "id": "Karaoke with Lyrics" - }, - { - "title": "Strawberry Wine : Deana Carter", - "id": "Karaoke with Lyrics" - }, - { - "title": "IDGAF : Dua Lipa", - "id": "Karaoke with Lyrics" - }, - { - "title": "Mine : Bazzi", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Like It : Cardi B, Bad Bunny & J Balvin", - "id": "Karaoke with Lyrics" - }, - { - "title": "El prรฉstamo : Maluma", - "id": "Karaoke with Lyrics" - }, - { - "title": "Broken : lovelytheband", - "id": "Karaoke with Lyrics" - }, - { - "title": "Jumpsuit : TWENTY ร˜NE PILร˜TS", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rocket Man : Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Jar of Hearts : Christina Perri", - "id": "Karaoke with Lyrics" - }, - { - "title": "You Should Be Here : Cole Swindell", - "id": "Karaoke with Lyrics" - }, - { - "title": "Humble : Kendrick Lamar", - "id": "Karaoke with Lyrics" - }, - { - "title": "Barbie Girl : Aqua", - "id": "Karaoke with Lyrics" - }, - { - "title": "Chiquitita : ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Fighter (Duet) : Keith Urban feat. Carrie Underwood", - "id": "Karaoke with Lyrics" - }, - { - "title": "Congratulations : Post Malone feat. Quavo", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bad At Love : Halsey", - "id": "Karaoke with Lyrics" - }, - { - "title": "Halo : Beyoncรฉ", - "id": "Karaoke with Lyrics" - }, - { - "title": "S.O.S. : ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "When I Was Your Man : Bruno Mars", - "id": "Karaoke with Lyrics" - }, - { - "title": "Vice : Miranda Lambert", - "id": "Karaoke with Lyrics" - }, - { - "title": "Stressed Out : TWENTY ร˜NE PILร˜TS", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lose It : Kane Brown", - "id": "Karaoke with Lyrics" - }, - { - "title": "Crocodile Rock : Elton John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Millionaire : Chris Stapleton", - "id": "Karaoke with Lyrics" - }, - { - "title": "Tequila : Dan + Shay", - "id": "Karaoke with Lyrics" - }, - { - "title": "What Ifs : Kane Brown feat. Lauren Alaina", - "id": "Karaoke with Lyrics" - }, - { - "title": "Light It Up : Luke Bryan", - "id": "Karaoke with Lyrics" - }, - { - "title": "There's Nothing Holdin' Me Back : Shawn Mendes", - "id": "Karaoke with Lyrics" - }, - { - "title": "Love Stinks : The J. Geils Band", - "id": "Karaoke with Lyrics" - }, - { - "title": "Alone Again (Naturally) : Gilbert O'Sullivan", - "id": "Karaoke with Lyrics" - }, - { - "title": "Love Myself : Hailee Steinfeld", - "id": "Karaoke with Lyrics" - }, - { - "title": "Amsterdam : Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dancing On My Own : Calum Scott", - "id": "Karaoke with Lyrics" - }, - { - "title": "What Hurts The Most : Rascal Flatts", - "id": "Karaoke with Lyrics" - }, - { - "title": "Roots : Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "What's Love Got To Do With It : Tina Turner", - "id": "Karaoke with Lyrics" - }, - { - "title": "I'm So Sorry : Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "The End Of The World : Skeeter Davis", - "id": "Karaoke with Lyrics" - }, - { - "title": "Whatever It Takes : Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "Love Hurts : Nazareth", - "id": "Karaoke with Lyrics" - }, - { - "title": "On Top of the World : Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "Party In The USA : Miley Cyrus", - "id": "Karaoke with Lyrics" - }, - { - "title": "Stitches : Shawn Mendes", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Bet My Life : Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "Natural : Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "Only The Lonely : Roy Orbison", - "id": "Karaoke with Lyrics" - }, - { - "title": "Better Man : Pearl Jam", - "id": "Karaoke with Lyrics" - }, - { - "title": "Go Your Own Way : Fleetwood Mac", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dancing On My Own : Robyn", - "id": "Karaoke with Lyrics" - }, - { - "title": "Problem : Ariana Grande feat. Iggy Azalea", - "id": "Karaoke with Lyrics" - }, - { - "title": "Love Will Tear Us Apart : Joy Division", - "id": "Karaoke with Lyrics" - }, - { - "title": "It's My Life : Bon Jovi", - "id": "Karaoke with Lyrics" - }, - { - "title": "No Scrubs : TLC", - "id": "Karaoke with Lyrics" - }, - { - "title": "I'm Not In Love : 10cc", - "id": "Karaoke with Lyrics" - }, - { - "title": "He Stopped Loving Her Today : George Jones", - "id": "Karaoke with Lyrics" - }, - { - "title": "So What (Radio Version) : Pink", - "id": "Karaoke with Lyrics" - }, - { - "title": "Fly Me To The Moon : Frank Sinatra", - "id": "Karaoke with Lyrics" - }, - { - "title": "What Makes You Beautiful (Duet) : One Direction", - "id": "Karaoke with Lyrics" - }, - { - "title": "One and Only : Adele", - "id": "Karaoke with Lyrics" - }, - { - "title": "Endless Love (Duet) : Luther Vandross & Mariah Carey", - "id": "Karaoke with Lyrics" - }, - { - "title": "One Call Away : Charlie Puth", - "id": "Karaoke with Lyrics" - }, - { - "title": "My Girl : The Temptations", - "id": "Karaoke with Lyrics" - }, - { - "title": "Love Story : Taylor Swift", - "id": "Karaoke with Lyrics" - }, - { - "title": "You're The One That I Want (Duet) : John Travolta & Olivia Newton-John", - "id": "Karaoke with Lyrics" - }, - { - "title": "Locked Out Of Heaven : Bruno Mars", - "id": "Karaoke with Lyrics" - }, - { - "title": "Push It : Salt-N-Pepa", - "id": "Karaoke with Lyrics" - }, - { - "title": "Tell Me You Love Me : Demi Lovato", - "id": "Karaoke with Lyrics" - }, - { - "title": "All That She Wants : Ace of Base", - "id": "Karaoke with Lyrics" - }, - { - "title": "La bomba : King Africa", - "id": "Karaoke with Lyrics" - }, - { - "title": "That's What I Like : Bruno Mars", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ride : TWENTY ร˜NE PILร˜TS", - "id": "Karaoke with Lyrics" - }, - { - "title": "Believer : Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "Killing Me Softly : Fugees", - "id": "Karaoke with Lyrics" - }, - { - "title": "24K Magic : Bruno Mars", - "id": "Karaoke with Lyrics" - }, - { - "title": "Cake By The Ocean : DNCE", - "id": "Karaoke with Lyrics" - }, - { - "title": "Amarillo By Morning : George Strait", - "id": "Karaoke with Lyrics" - }, - { - "title": "Stingray Karaoke Mobile App", - "id": "Ia-wSmvzrVA" - }, - { - "title": "Girl Crush : Little Big Town", - "id": "Karaoke with Lyrics" - }, - { - "title": "Picture : Sheryl Crow & Kid Rock", - "id": "Karaoke with Lyrics" - }, - { - "title": "7 Years : Lukas Graham", - "id": "Karaoke with Lyrics" - }, - { - "title": "Fight Song : Rachel Platten", - "id": "Karaoke with Lyrics" - }, - { - "title": "Body Like A Back Road : Sam Hunt", - "id": "Karaoke with Lyrics" - }, - { - "title": "I'll Be Waiting : Adele", - "id": "Karaoke with Lyrics" - }, - { - "title": "Take It All : Adele", - "id": "Karaoke with Lyrics" - }, - { - "title": "Born To Make You Happy (Radio Edit) : Britney Spears", - "id": "Karaoke with Lyrics" - }, - { - "title": "Somebody To Love : Queen & George Michael", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hometown Glory : Adele", - "id": "Karaoke with Lyrics" - }, - { - "title": "Let Me Go : Hailee Steinfeld & Alesso feat. Florida Georgia Line & Watt", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Follow Rivers : Triggerfinger", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Wanna Go : Britney Spears", - "id": "Karaoke with Lyrics" - }, - { - "title": "Piece Of Me : Britney Spears", - "id": "Karaoke with Lyrics" - }, - { - "title": "Gimme More (Radio Version) : Britney Spears", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Love Rock 'n' Roll : Britney Spears", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Little Drummer Boy : Anne Murray", - "id": "Karaoke with Lyrics" - }, - { - "title": "Pรจre Noรซl arrive ce soir : Frรฉdรฉrick De Grandprรฉ", - "id": "Karaoke with Lyrics" - }, - { - "title": "Frosty The Snowman : Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Se va Diciembre : Josรฉ Alfredo Jimรฉnez", - "id": "Karaoke with Lyrics" - }, - { - "title": "Million Years Ago : Adele", - "id": "Karaoke with Lyrics" - }, - { - "title": "You're A Mean One, Mr. Grinch : Thurl Ravenscroft", - "id": "Karaoke with Lyrics" - }, - { - "title": "Someone Like You : Adele", - "id": "Karaoke with Lyrics" - }, - { - "title": "Adele - Set Fire To The Rain (Karaoke with Lyrics)", - "id": "AefF_HnYcMI" - }, - { - "title": "Jingle Bell Rock : Bobby Helms", - "id": "Karaoke with Lyrics" - }, - { - "title": "Adele - When We Were Young (Karaoke with Lyrics)", - "id": "IvThJ3XH8Zk" - }, - { - "title": "Adele - Send My Love (To Your New Lover) (Karaoke with Lyrics)", - "id": "ZRAtAy6sZtg" - }, - { - "title": "Do They Know It's Christmas? : Band Aid", - "id": "Karaoke with Lyrics" - }, - { - "title": "Feliz Navidad : Josรฉ Feliciano", - "id": "Karaoke with Lyrics" - }, - { - "title": "Psycho : Post Malone feat. Ty Dolla $ign", - "id": "Karaoke with Lyrics" - }, - { - "title": "Skyfall : Adele", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hello : Adele", - "id": "Karaoke with Lyrics" - }, - { - "title": "Water Under The Bridge : Adele", - "id": "Karaoke with Lyrics" - }, - { - "title": "Arbolito de Navidad : Los 50 De Joselito", - "id": "Karaoke with Lyrics" - }, - { - "title": "What Christmas Means To Me : Stevie Wonder", - "id": "Karaoke with Lyrics" - }, - { - "title": "She's Always A Woman : Billy Joel", - "id": "Karaoke with Lyrics" - }, - { - "title": "Baby Bumblebee : Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Shutter Island : Jessie Reyez", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rockstar : Post Malone feat. 21 Savage", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hello Goodbye : The Beatles", - "id": "Karaoke with Lyrics" - }, - { - "title": "Devil In Disguise : Elvis Presley", - "id": "Karaoke with Lyrics" - }, - { - "title": "There's No Place Like Home For The Holidays : Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "La canciรณn del tamborilero : Raphael", - "id": "Karaoke with Lyrics" - }, - { - "title": "Born To Be Alive : Patrick Hernandez", - "id": "Karaoke with Lyrics" - }, - { - "title": "God Is A Woman : Ariana Grande", - "id": "Karaoke with Lyrics" - }, - { - "title": "Santa's Coming For Us : Sia", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bicycle Race : Queen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Driving Home For Christmas : Chris Rea", - "id": "Karaoke with Lyrics" - }, - { - "title": "Someday At Christmas : Stevie Wonder", - "id": "Karaoke with Lyrics" - }, - { - "title": "Cold December Night : Michael Bublรฉ", - "id": "Karaoke with Lyrics" - }, - { - "title": "Radio Ga-Ga : Queen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Another One Bites The Dust : Queen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Under Pressure : Queen & David Bowie", - "id": "Karaoke with Lyrics" - }, - { - "title": "Crazy Little Thing Called Love : Queen", - "id": "Karaoke with Lyrics" - }, - { - "title": "One More Night : Phil Collins", - "id": "Karaoke with Lyrics" - }, - { - "title": "Kiwi : Harry Styles", - "id": "Karaoke with Lyrics" - }, - { - "title": "Amar pelos dois : Salvador Sobral", - "id": "Karaoke with Lyrics" - }, - { - "title": "Welcome To Jamrock : Damian \"Jr. Gong\" Marley", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sussudio : Phil Collins", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hallelujah : Pentatonix", - "id": "Karaoke with Lyrics" - }, - { - "title": "Neon Moon : Brooks & Dunn", - "id": "Karaoke with Lyrics" - }, - { - "title": "Girl From Ipanema : Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hero : Namie Amuro", - "id": "Karaoke with Lyrics" - }, - { - "title": "Kill Em With Kindness : Selena Gomez", - "id": "Karaoke with Lyrics" - }, - { - "title": "We Didn't Start The Fire : Billy Joel", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Saw Her Standing There : The Beatles", - "id": "Karaoke with Lyrics" - }, - { - "title": "Younger Now : Miley Cyrus", - "id": "Karaoke with Lyrics" - }, - { - "title": "Call On Me (Ryan Riback Remix) : Starley", - "id": "Karaoke with Lyrics" - }, - { - "title": "Week Without You : Miley Cyrus", - "id": "Karaoke with Lyrics" - }, - { - "title": "Niet voor lief : Andrรฉ Hazes jr", - "id": "Karaoke with Lyrics" - }, - { - "title": "Young Dumb & Broke : Khalid", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Lion Sleeps Tonight : The Tokens", - "id": "Karaoke with Lyrics" - }, - { - "title": "Mack The Knife : Bobby Darin", - "id": "Karaoke with Lyrics" - }, - { - "title": "Fa-fa-fa-fa-fa (Sad Song) : Otis Redding", - "id": "Karaoke with Lyrics" - }, - { - "title": "Humpty Dumpty : Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Faking It : Calvin Harris feat. Kehlani & Lil Yachty", - "id": "Karaoke with Lyrics" - }, - { - "title": "What A Wonderful World : Louis Armstrong", - "id": "Karaoke with Lyrics" - }, - { - "title": "Wind Beneath My Wings : Bette Midler", - "id": "Karaoke with Lyrics" - }, - { - "title": "Border Song : Aretha Franklin", - "id": "Karaoke with Lyrics" - }, - { - "title": "El Perdedor : Maluma feat. Yandel", - "id": "Karaoke with Lyrics" - }, - { - "title": "Think : Aretha Franklin", - "id": "Karaoke with Lyrics" - }, - { - "title": "Chain Of Fools : Aretha Franklin", - "id": "Karaoke with Lyrics" - }, - { - "title": "Wanted Dead Or Alive : Bon Jovi", - "id": "Karaoke with Lyrics" - }, - { - "title": "Make You Miss Me : Sam Hunt", - "id": "Karaoke with Lyrics" - }, - { - "title": "More Than You Know : Axwell & Ingrosso", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sorry Not Sorry : Demi Lovato", - "id": "Karaoke with Lyrics" - }, - { - "title": "What About Us : Pink", - "id": "Karaoke with Lyrics" - }, - { - "title": "You're So Vain : Carly Simon", - "id": "Karaoke with Lyrics" - }, - { - "title": "Stir Fry : Migos", - "id": "Karaoke with Lyrics" - }, - { - "title": "Church Bells in the style of Carrie Underwood", - "id": "Karaoke with Lyrics" - }, - { - "title": "Closer in the style of The Chainsmokers feat. Halsey", - "id": "Karaoke with Lyrics" - }, - { - "title": "Treasure in the style of Bruno Mars", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dangerous Woman in the style of Ariana Grande", - "id": "Karaoke with Lyrics" - }, - { - "title": "1, 2 Step (Duet) in the style of Ciara feat. Missy Elliott", - "id": "Karaoke with Lyrics" - }, - { - "title": "Heathens in the style of TWENTY ร˜NE PILร˜TS", - "id": "Karaoke with Lyrics" - }, - { - "title": "This Little Light Of Mine in the style of Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Fleetwood Mac: Dreams", - "id": "Karaoke with Lyrics" - }, - { - "title": "No One in the style of Alicia Keys", - "id": "Karaoke with Lyrics" - }, - { - "title": "Closing Time in the style of Semisonic", - "id": "Karaoke with Lyrics" - }, - { - "title": "Grandpa (Tell Me 'bout The Good Old Days) in the style of The Judds", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bizarre Love Triangle (Radio Version) in the style of New Order", - "id": "Karaoke with Lyrics" - }, - { - "title": "Thank You For The Music in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Super Trouper in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Have A Dream in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Does Your Mother Know in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Name Of The Game in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "You Give Love A Bad Name in the style of Bon Jovi", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bed Of Roses in the style of Bon Jovi", - "id": "Karaoke with Lyrics" - }, - { - "title": "Fernando in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Knowing Me, Knowing You in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Waterloo in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Take A Chance On Me in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Winner Takes It All in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Gimme! Gimme! Gimme! in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Mamma Mia in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dancing Queen in the style of ABBA", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hit The Road Jack in the style of Ray Charles", - "id": "Karaoke with Lyrics" - }, - { - "title": "Irreplaceable in the style of Beyoncรฉ", - "id": "Karaoke with Lyrics" - }, - { - "title": "Mickey in the style of Toni Basil", - "id": "Karaoke with Lyrics" - }, - { - "title": "California Dreamin' in the style of The Mamas & The Papas", - "id": "Karaoke with Lyrics" - }, - { - "title": "No Me Ames (Duet) in the style of Jennifer Lopez & Marc Anthony", - "id": "Karaoke with Lyrics" - }, - { - "title": "Cover Of \"Rolling Stone\" (Duet) in the style of Dr. Hook", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Got You (I Feel Good) in the style of James Brown", - "id": "Karaoke with Lyrics" - }, - { - "title": "These Boots Are Made For Walkin' in the style of Nancy Sinatra", - "id": "Karaoke with Lyrics" - }, - { - "title": "All Out Of Love in the style of Air Supply", - "id": "Karaoke with Lyrics" - }, - { - "title": "Just The Way You Are in the style of Billy Joel", - "id": "Karaoke with Lyrics" - }, - { - "title": "Losing My Religion in the style of R.E.M.", - "id": "Karaoke with Lyrics" - }, - { - "title": "Mr. Jones in the style of Counting Crows", - "id": "Karaoke with Lyrics" - }, - { - "title": "Baby Got Back in the style of Sir Mix-A-Lot", - "id": "Karaoke with Lyrics" - }, - { - "title": "Achy Breaky Heart in the style of Billy Ray Cyrus", - "id": "Karaoke with Lyrics" - }, - { - "title": "Take Me Out in the style of Franz Ferdinand", - "id": "Karaoke with Lyrics" - }, - { - "title": "Cha Cha Slide in the style of 4 Kidz By Kidz", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hello in the style of Lionel Richie", - "id": "Karaoke with Lyrics" - }, - { - "title": "Walkin' After Midnight in the style of Patsy Cline", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ave Maria in the style of Cรฉline Dion", - "id": "Karaoke with Lyrics" - }, - { - "title": "It's Beginning To Look A Lot Like Christmas in the style of Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Mele Kalikimaka in the style of Jimmy Buffett", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lost Boy in the style of Ruth B", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sleigh Ride in the style of Johnny Mathis", - "id": "Karaoke with Lyrics" - }, - { - "title": "Grandma Got Run Over By A Reindeer in the style of Elmo & Patsy", - "id": "Karaoke with Lyrics" - }, - { - "title": "Santa Claus Is Comin' To Town in the style of The Jackson 5", - "id": "Karaoke with Lyrics" - }, - { - "title": "Malibu in the style of Miley Cyrus", - "id": "Karaoke with Lyrics" - }, - { - "title": "Coldest Winter in the style of Pentatonix", - "id": "Karaoke with Lyrics" - }, - { - "title": "Look What You Made Me Do in the style of Taylor Swift", - "id": "Karaoke with Lyrics" - }, - { - "title": "Livin' On A Prayer: Bon Jovi", - "id": "Karaoke with Lyrics" - }, - { - "title": "Angels We Have Heard On High in the style of Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Turkey In The Straw in the style of Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Like A Surgeon in the style of \"Weird Al\" Yankovic", - "id": "Karaoke with Lyrics" - }, - { - "title": "Stingray Kids' Karaoke", - "id": "qgOspmKOX0s" - }, - { - "title": "Thunder in the style of Imagine Dragons", - "id": "Karaoke with Lyrics" - }, - { - "title": "We Will Rock You/We Are The Champions in the style of Queen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rockabye in the style of Clean Bandit feat. Sean Paul & Anne-Marie", - "id": "Karaoke with Lyrics" - }, - { - "title": "Deacon Blues in the style of Steely Dan", - "id": "Karaoke with Lyrics" - }, - { - "title": "Would I Lie To You? in the style of Charles & Eddie", - "id": "Karaoke with Lyrics" - }, - { - "title": "H.O.L.Y. in the style of Florida Georgia Line", - "id": "Karaoke with Lyrics" - }, - { - "title": "This Girl in the style of Kungs vs Cookin' On 3 Burners", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Got You in the style of Split Enz", - "id": "Karaoke with Lyrics" - }, - { - "title": "West End Girls in the style of Pet Shop Boys", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ties in the style of Years & Years", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rihanna - Diamonds (Karaoke with Lyrics)", - "id": "3e1LNjynz2g" - }, - { - "title": "Sweet Home Chicago (Radio Version) in the style of The Blues Brothers", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bad Medicine in the style of Bon Jovi", - "id": "Karaoke with Lyrics" - }, - { - "title": "El Perdedor in the style of Enrique Iglesias feat. Marco Antonio Solรญs", - "id": "Karaoke with Lyrics" - }, - { - "title": "Break Free in the style of Ariana Grande feat. Zedd", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bette Davis Eyes in the style of Kim Carnes", - "id": "Karaoke with Lyrics" - }, - { - "title": "Young Hearts Run Free in the style of Candi Staton", - "id": "Karaoke with Lyrics" - }, - { - "title": "Remind Me (Duet) in the style of Brad Paisley feat. Carrie Underwood", - "id": "Karaoke with Lyrics" - }, - { - "title": "Landslide in the style of Fleetwood Mac", - "id": "Karaoke with Lyrics" - }, - { - "title": "Original Prankster in the style of The Offspring", - "id": "Karaoke with Lyrics" - }, - { - "title": "Let's Twist Again in the style of Chubby Checker", - "id": "Karaoke with Lyrics" - }, - { - "title": "50 Ways To Say Goodbye in the style of Train", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lido Shuffle in the style of Boz Scaggs", - "id": "Karaoke with Lyrics" - }, - { - "title": "Before You Go in the style of Buck Owens karaoke video", - "id": "6_Ikkgfq3Oo" - }, - { - "title": "A Fallen Star in the style of Jimmy Newman karaoke video", - "id": "8ZlnzhALFxQ" - }, - { - "title": "Close Your Eyes in the style of Aaron Neville karaoke video with lyrics", - "id": "UnKZMxSok4U" - }, - { - "title": "Sam Smith - I'm Not The Only One (Karaoke with Lyrics)", - "id": "8oXUOajiIxA" - }, - { - "title": "Heroes in the style of Mรฅns Zelmerlรถw", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Can't Make You Love Me in the style of George Michael", - "id": "Karaoke with Lyrics" - }, - { - "title": "Yo te recuerdo in the style of Juan Gabriel feat. Marc Anthony", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Bird & The Worm in the style of The Used karaoke video with lyrics", - "id": "pfSGRYY_huI" - }, - { - "title": "Working In The Coal Mine in the style of Devo karaoke song with lyrics", - "id": "ZGxTbEj2hhc" - }, - { - "title": "If I Give My Heart To You in the style of Doris Day karaoke video", - "id": "hCohubmTaoo" - }, - { - "title": "What Are You Doing New Year's Eve? in the style of Harry Connick, Jr.", - "id": "Karaoke with Lyrics" - }, - { - "title": "Animals in the style of Maroon 5", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hark! The Herald Angels Sing (Choir version) in the style of Traditional", - "id": "Karaoke with Lyrics" - }, - { - "title": "Break Up in the Style of \"Gucci Mane & Sean Garrett & Mario\" karaoke video with lyrics", - "id": "tabiZC2wxFQ" - }, - { - "title": "Torn On The Platform in the style of Jack Penate karaoke video", - "id": "rKw9ha8p6nU" - }, - { - "title": "Baby's Coming Back in the style of MCFLY karaoke video", - "id": "hqQ-4cRJLas" - }, - { - "title": "Cadet Rousselle in the style of Traditionnel", - "id": "MhZ2xBVxDaI" - }, - { - "title": "Pirouette cacahuรจte in the style of Traditionnel", - "id": "3PrsXoLunZk" - }, - { - "title": "Meunier tu dors in the style of Traditionnel", - "id": "B_MEN16p_BI" - }, - { - "title": "La mรจre Michel in the style of Traditionnel", - "id": "BSKhxTw5H8w" - }, - { - "title": "Everything's Magic in the style of Angels & Airwaves karaoke lyrics", - "id": "sP-97sAQ6Q0" - }, - { - "title": "Low in the style of \"Flo Rida featuring T-Pain\" karaoke video with lyrics", - "id": "FzKGtxsCrms" - }, - { - "title": "Ball And Chain in the style of Social Distortion karaoke video", - "id": "1ayNq45YTwY" - }, - { - "title": "You Keep Me Hangin' On in the style of Vanilla Fudge", - "id": "WSpqACfTsvA" - }, - { - "title": "Screaming For Vengeance in the style of Judas Priest karaoke video", - "id": "uAGGkFpCoMo" - }, - { - "title": "Suspicions in the style of Tim McGraw karaoke video", - "id": "b3SOfYBFjto" - }, - { - "title": "Fidelity in the style of Regina Spektor karaoke video", - "id": "NlzfEHp0qnU" - }, - { - "title": "The Riddle in the style of Five For Fighting karaoke video with lyrics", - "id": "voXJkNUL_xg" - }, - { - "title": "Love You in the style of Jack Ingram karaoke video", - "id": "vjzWcZdLYPQ" - }, - { - "title": "Take Me In Your Arms in the style of The Doobie Brothers karaoke video", - "id": "1ZpaXK1NBrM" - }, - { - "title": "Would You Go With Me in the style of Josh Turner karaoke video", - "id": "1cg5WZ3h-V8" - }, - { - "title": "Inner City Blues (Make Me Wanna Holler) in the style of Marvin Gaye karaoke video", - "id": "8k_hm-XD_mw" - }, - { - "title": "If I Didn't Know Any Better in the style of Alison Krauss karaoke video", - "id": "rrx8Tw1hM-M" - }, - { - "title": "Psychedelic Shack in the style of The Temptations karaoke video", - "id": "XiE0Py_yRuk" - }, - { - "title": "Send Me Some Lovin' in the style of Sam Cooke karaoke video", - "id": "RJzNAkl96G0" - }, - { - "title": "One Way Ticket (Radio Version) in the style of The Darkness karaoke video", - "id": "ypNWEdH-1vA" - }, - { - "title": "Do You Want To in the style of Franz Ferdinand", - "id": "QfP1t3THzk8" - }, - { - "title": "Goodbye Time in the style of Blake Shelton", - "id": "SjQOZyOznRM" - }, - { - "title": "Date Rape in the style of Sublime karaoke video", - "id": "vfSxAp-CJmI" - }, - { - "title": "Galileo in the style of Indigo Girls karaoke video", - "id": "A25sUTo78t8" - }, - { - "title": "Stupid in the style of Sarah McLachlan karaoke video", - "id": "6Laice0oK7M" - }, - { - "title": "Love Somebody in the style of Rick Springfield karaoke video", - "id": "X5i2l83ejeU" - }, - { - "title": "She's Tight in the style of Cheap Trick karaoke video", - "id": "ar64dxV7Cik" - }, - { - "title": "Country House in the style of Blur karaoke video with lyrics", - "id": "3gKHMLbwSmk" - }, - { - "title": "Tears Are Falling in the style of Kiss karaoke video", - "id": "y_gYRHJEGsc" - }, - { - "title": "I Love It Loud in the style of Kiss karaoke video", - "id": "D7jwM9q9B8M" - }, - { - "title": "Got The Time in the style of Anthrax", - "id": "SyWzsaik4UE" - }, - { - "title": "Turbo Lover in the style of Judas Priest karaoke video", - "id": "8_UiAUOGFfU" - }, - { - "title": "Pretty Baby in the style of Vanessa Carlton karaoke video", - "id": "ChW5-mbJCnY" - }, - { - "title": "He'll Be Back in the style of Lee Ann Womack karaoke video", - "id": "ZBF_d_bdyfI" - }, - { - "title": "Let's Work Together in the style of Canned Heat karaoke video", - "id": "mqZgaaC1YOQ" - }, - { - "title": "F*** And Run in the style of Liz Phair karaoke video", - "id": "AoW5vT05cL4" - }, - { - "title": "Eat The Rich in the style of Krokus karaoke video with lyrics", - "id": "6Ji8teTi8QQ" - }, - { - "title": "Man To Man in the style of Gary Allan karaoke video with lyrics", - "id": "8NaVmJ77nvw" - }, - { - "title": "Still in the style of Brian McKnight karaoke video with lyrics", - "id": "43VCc01vxYA" - }, - { - "title": "I Don't Want To Do Wrong - Gladys Knight & The Pips Karaoke With Lyrics", - "id": "qYNSf9If4AY" - }, - { - "title": "Untitled (How Does It Feel) in the style of D'angelo karaoke singalong lyrics", - "id": "U05LlncTQ5s" - }, - { - "title": "The Woman He Loves in the style of Alabama karaoke video with lyrics", - "id": "jnApuR1JWGQ" - }, - { - "title": "Supernova in the style of Liz Phair karaoke video", - "id": "EA34DQZLnoE" - }, - { - "title": "Burnin' For You in the style of Blue ร–yster Cult", - "id": "aYHMEL1gW1g" - }, - { - "title": "Ain't Too Proud To Beg in the style of The Rolling Stones - karaoke video with lyrics", - "id": "ItmNFgX3PL0" - }, - { - "title": "Avalon in the style of Roxy Music karaoke video", - "id": "gkZYDQoxq8M" - }, - { - "title": "Easy Look in the style of Charlie Rich karaoke video", - "id": "Ea88CZcqzDY" - }, - { - "title": "Dare To Be Stupid in the style of \"Weird\" Al Yankovic karaoke video with lyrics", - "id": "74dSktGibUU" - }, - { - "title": "Here's Some Love in the style of Tanya Tucker karaoke video", - "id": "zkaX6_RxbnQ" - }, - { - "title": "Queen Of The Broken Hearts in the style of Loverboy karaoke video with lyrics", - "id": "DuwGo39n7Ds" - }, - { - "title": "You Are The One in the style of Carl Smith karaoke video", - "id": "ntCdfsdLghw" - }, - { - "title": "Miller's Cave in the style of Hank Snow karaoke video", - "id": "IW3PnjIr8kM" - }, - { - "title": "Castles In The Air in the style of Don McLean karaoke video", - "id": "ScjaplHbmIE" - }, - { - "title": "Billion Dollar Babies in the style of Alice Cooper", - "id": "1sNlKjk8yvI" - }, - { - "title": "Big City in the style of Merle Haggard karaoke video", - "id": "Qng5XBnW6-U" - }, - { - "title": "Creeque Alley in the style of The Mamas & The Papas karaoke video", - "id": "9_y1PGHxGDk" - }, - { - "title": "How 'bout Us in the style of Champaign karaoke video", - "id": "h5Sd5lngx1s" - }, - { - "title": "My Heart Skips A Beat in the style of Buck Owens karaoke video", - "id": "-sMDz3k2XhU" - }, - { - "title": "Love Rears Its Ugly Head in the style of Living Coloรผr karaoke video", - "id": "2VCl5Cd7QLM" - }, - { - "title": "Breaking Us In Two in the style of Joe Jackson karaoke video with lyrics", - "id": "PUOqLoSFRu4" - }, - { - "title": "Woman From Tokyo in the style of Deep Purple karaoke video", - "id": "Pvj77pFGdIA" - }, - { - "title": "Jailbreak in the style of Thin Lizzy karaoke video with lyrics", - "id": "FIYtuyVEdwA" - }, - { - "title": "I Can't Explain in the style of The Who", - "id": "hwY9o3ohXgk" - }, - { - "title": "Goodbye Time in the style of Conway Twitty karaoke video", - "id": "_FefVtE-lW8" - }, - { - "title": "Crystal Ball in the style of Styx karaoke video with lyrics", - "id": "hZn6G5fcBJY" - }, - { - "title": "Dirty Work in the style of Steely Dan karaoke video", - "id": "Zb_VdvHMOzI" - }, - { - "title": "Long Time Gone in the style of Crosby, Stills & Nash karaoke lyrics", - "id": "byQ9rS1gFkg" - }, - { - "title": "Who Cares in the style of Don Gibson karaoke video", - "id": "S8ts7WKMsGo" - }, - { - "title": "So Alive in the style of Love And Rockets karaoke video with lyrics", - "id": "qWuej6HbouU" - }, - { - "title": "The Jamestown Ferry in the style of Tanya Tucker karaoke video", - "id": "FJ-3NyRqumI" - }, - { - "title": "They Don't Make 'em Like My Daddy in the style of Loretta Lynn karaoke video", - "id": "Jy4calP6kIY" - }, - { - "title": "At The Cross in the style of Traditional karaoke video with lyrics", - "id": "2TAPzBtf6eY" - }, - { - "title": "Holy, Holy, Holy in the style of Traditional karaoke video with lyrics", - "id": "nWB1ZZrjdYQ" - }, - { - "title": "On A Carousel in the style of The Hollies karaoke video", - "id": "raKb17Qml3s" - }, - { - "title": "No More, No Less in the style of Collective Soul karaoke video with lyrics", - "id": "kbT_PWywIaw" - }, - { - "title": "Unpretty in the style of TLC karaoke video with lyrics", - "id": "dZjMTLAjG_0" - }, - { - "title": "My Only Love in the style of The Statler Brothers karaoke video", - "id": "Ob5KDoAIk-s" - }, - { - "title": "Shakin' All Over in the style of The Guess Who karaoke video", - "id": "7zOAzpZOaWk" - }, - { - "title": "Montego Bay in the style of Bobby Bloom", - "id": "D75XkgmJvPY" - }, - { - "title": "This Crazy Love in the style of Oak Ridge Boys", - "id": "jrVQAqV8Vfs" - }, - { - "title": "Black Sheep in the style of John Anderson karaoke video", - "id": "4PaUUU6oigI" - }, - { - "title": "You Two-Timed Me One Time Too Often in the style of Tex Ritter karaoke video", - "id": "A1dSjZX-o7k" - }, - { - "title": "Midnight Girl/Sunset Town in the style of Sweethearts Of The Rodeo karaoke video", - "id": "Ux4hp3jHYgw" - }, - { - "title": "I Love You Because in the style of Leon Payne karaoke video", - "id": "DFRNtyVIr8E" - }, - { - "title": "Walking To New Orleans in the style of Fats Domino karaoke video", - "id": "cSxOQcv2QM8" - }, - { - "title": "The Facts Of Life in the style of Various", - "id": "5LFpB3P7AZ8" - }, - { - "title": "Famous Last Words Of A Fool in the style of George Strait karaoke video", - "id": "A876qNLe2kY" - }, - { - "title": "Carolyn in the style of Merle Haggard karaoke video", - "id": "iniGeCnibkU" - }, - { - "title": "Still In Love With You in the style of Travis Tritt karaoke video", - "id": "_cq6cozXqA4" - }, - { - "title": "Most Precarious in the style of Blues Traveler", - "id": "EWrW7rg2Vks" - }, - { - "title": "Honky Cat in the style of Elton John karaoke video", - "id": "hBpOhm2jqak" - }, - { - "title": "Love You Down in the style of Ready For The World karaoke video", - "id": "BuW7xwZguk0" - }, - { - "title": "The Trouble With The Truth in the style of Patty Loveless karaoke video", - "id": "oUflDAJnnRs" - }, - { - "title": "Elegantly Wasted in the style of Inxs karaoke video", - "id": "Qh8Aicb5bVw" - }, - { - "title": "Beneath Still Waters in the style of Emmylou Harris karaoke video", - "id": "B5tAMc4ixHo" - }, - { - "title": "If We Fall In Love Tonight in the style of Rod Stewart karaoke video", - "id": "I_YCYacnlIY" - }, - { - "title": "How Do I Make You in the style of Linda Ronstadt karaoke video", - "id": "j7AP-rwT0G8" - }, - { - "title": "No More Words in the style of Berlin", - "id": "XtvRniQIwgg" - }, - { - "title": "Even It Up in the style of Heart karaoke video", - "id": "kG8CV6W80pY" - }, - { - "title": "Talk Back Trembling Lips in the style of Ernie Ashworth karaoke video", - "id": "6vVGYb91Tzg" - }, - { - "title": "Under Your Spell Again in the style of Buck Owens karaoke video with lyrics", - "id": "9mU68v3DgmI" - }, - { - "title": "Disco Lady in the style of Johnnie Taylor karaoke video", - "id": "KpLAbK1If84" - }, - { - "title": "Again in the style of Mel Torme karaoke video", - "id": "njvU2hgTTYc" - }, - { - "title": "Naked in the style of Goo Goo Dolls karaoke video backing track with lyrics", - "id": "U4K-ckUmOF8" - }, - { - "title": "Flea Fly Song in the style of Traditional karaoke video", - "id": "R_qRKakrnR8" - }, - { - "title": "Sad Caper in the style of Hootie & The Blowfish karaoke video", - "id": "g1C94L88gzE" - }, - { - "title": "Let's Get The Mood Right in the style of Johnny Gill karaoke video", - "id": "buy4fX_emJU" - }, - { - "title": "Step Into Christmas in the style of Elton John karaoke video with lyrics", - "id": "i-CBTc083iU" - }, - { - "title": "She's Sexy & 17 in the style of Stray Cats karaoke video with lyrics", - "id": "ou8TDBM2bWk" - }, - { - "title": "On A Bus To St. Cloud in the style of Trisha Yearwood karaoke video", - "id": "EDxAFiSEs1c" - }, - { - "title": "Chattanooga Choo Choo in the style of Glenn Miller & His Orchestra karaoke video", - "id": "3KjxNuhjr1o" - }, - { - "title": "Work To Do in the style of Average White Band", - "id": "-9k80FgGZpw" - }, - { - "title": "The Tracks Of My Tears in the style of Go West karaoke video", - "id": "LmeUpd0iWD4" - }, - { - "title": "Guess Things Happen That Way in the style of Johnny Cash karaoke video", - "id": "dE9d0u9hF3o" - }, - { - "title": "Lost In Love in the Style of \"Air Supply\" karaoke video with lyrics (no lead vocal)", - "id": "ENo7dIMVSgI" - }, - { - "title": "Just To Be Close To You in the style of Trey Lorenz karaoke video", - "id": "jFbN_K-M888" - }, - { - "title": "Mother-In-Law in the style of Ernie K-Doe karaoke video", - "id": "kvbU7Fnlplk" - }, - { - "title": "Back In My Arms Again in the style of The Supremes karaoke video with lyrics", - "id": "CZFEWPMZIQc" - }, - { - "title": "Busted in the style of Ray Charles karaoke video", - "id": "VXuDWnlfcys" - }, - { - "title": "Gabriel's Message in the style of Sting karaoke video", - "id": "_ENRWZnJp8Q" - }, - { - "title": "Peppermint Twist in the style of Joey Dee & The Starlighters karaoke video with lyrics", - "id": "mImhTuATh-o" - }, - { - "title": "Too Busy Thinking About My Baby in the style of Marvin Gaye karaoke video", - "id": "0IA5YI5hFI0" - }, - { - "title": "Healing Hands in the style of Elton John karaoke video", - "id": "cjvmQrURkFc" - }, - { - "title": "Hard Candy Christmas in the style of Dolly Parton karaoke video with lyrics", - "id": "jSq4sF94eSI" - }, - { - "title": "Bingo in the style of Traditional karaoke video", - "id": "J58K4DOb7Xg" - }, - { - "title": "The Hokey Pokey in the style of Traditional", - "id": "s3I5ZgiWWvY" - }, - { - "title": "Control: Janet Jackson", - "id": "Karaoke with lyrics" - }, - { - "title": "Do You Hear What I Hear in the style of Bing Crosby", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hasta el amanecer in the style of Nicky Jam", - "id": "Karaoke with Lyrics" - }, - { - "title": "It Was A Very Good Year in the style of Frank Sinatra", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hasta que te conoci in the style of Juan Gabriel", - "id": "Karaoke with Lyrics" - }, - { - "title": "Handlebars in the style of Flobots", - "id": "Karaoke with Lyrics" - }, - { - "title": "Fell In Love With A Girl in the style of The White Stripes", - "id": "Karaoke with Lyrics" - }, - { - "title": "I've Got To Use My Imagination in the style of Gladys Knight & The Pips karaoke video", - "id": "lmMrL353ryU" - }, - { - "title": "Hold My Hand in the style of Jess Glynne", - "id": "Karaoke with Lyrics" - }, - { - "title": "I've Always Been Crazy in the style of Waylon Jennings", - "id": "Karaoke with Lyrics" - }, - { - "title": "Asรญ Fue in the style of Juan Gabriel", - "id": "Karaoke with Lyrics" - }, - { - "title": "It's My Life in the style of Bon Jovi", - "id": "Karaoke with Lyrics" - }, - { - "title": "Hasta la raรญz in the style of Natalia Lafourcade", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Boy From New York City in the style of The Ad Libs", - "id": "Karaoke with Lyrics" - }, - { - "title": "White Lines (Don't Don't Do It) in the style of Grandmaster Flash & Melle Mel", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Mess With Bill in the style of The Marvelettes karaoke video", - "id": "bbVwAErceoM" - }, - { - "title": "Te fuiste de aquรญ in the style of Reik", - "id": "Karaoke with Lyrics" - }, - { - "title": "Jackson (Duet) in the style of Johnny Cash & June Carter", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ordinary People in the style of John Legend", - "id": "Karaoke with Lyrics" - }, - { - "title": "Old Macdonald in the style of Traditional", - "id": "7-XiRwXE42U" - }, - { - "title": "This Is My Song in the style of Petula Clark", - "id": "P7k4A6Y6MWg" - }, - { - "title": "Cars in the style of Gary Numan karaoke video with lyrics", - "id": "JIq5ufZu4lY" - }, - { - "title": "All I Wanna Do Is Make Love To You in the style of Heart", - "id": "Karaoke with Lyrics" - }, - { - "title": "Voodoo in the style of Godsmack", - "id": "Karaoke with Lyrics" - }, - { - "title": "Tranquila in the style of J Balvin", - "id": "Karaoke with Lyrics" - }, - { - "title": "Always On My Mind in the style of Willie Nelson", - "id": "Karaoke with Lyrics" - }, - { - "title": "Try in the style of Pink", - "id": "Karaoke with Lyrics" - }, - { - "title": "Never Gonna Give You Up in the style of Rick Astley", - "id": "Karaoke with Lyrics" - }, - { - "title": "Do It Again in the style of Steely Dan", - "id": "Karaoke with Lyrics" - }, - { - "title": "Tennessee Whiskey in the style of Chris Stapleton", - "id": "Karaoke with Lyrics" - }, - { - "title": "Stitches in the style of Shawn Mendes", - "id": "Karaoke with Lyrics" - }, - { - "title": "P.S. (I'm Still Not Over You) in the style of Rihanna", - "id": "Karaoke with Lyrics" - }, - { - "title": "Maroon 5 - Sugar (Karaoke with Lyrics)", - "id": "IqRJShuLrss" - }, - { - "title": "Girl On Fire in the style of Alicia Keys", - "id": "Karaoke with Lyrics" - }, - { - "title": "Don't Put Dirt On My Grave Just Yet in the style of Hayden Panettiere", - "id": "Karaoke with Lyrics" - }, - { - "title": "Baby It's Cold Outside (Duet) in the style of Idina Menzel & Michael Bublรฉ", - "id": "Karaoke with Lyrics" - }, - { - "title": "Baby I in the style of Ariana Grande", - "id": "Karaoke with Lyrics" - }, - { - "title": "Downtown in the style of Lady Antebellum", - "id": "Karaoke with Lyrics" - }, - { - "title": "Save The Best For Last in the style of Vanessa L. Williams", - "id": "Karaoke with Lyrics" - }, - { - "title": "Remind Me (Duet) in the style of Carrie Underwood feat. Brad Paisley", - "id": "Karaoke with Lyrics" - }, - { - "title": "Whip It in the style of Devo", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Want To Come Over in the style of Melissa Etheridge", - "id": "Karaoke with Lyrics" - }, - { - "title": "Red Solo Cup in the style of Toby Keith", - "id": "Karaoke with Lyrics" - }, - { - "title": "The Chicks (fka. The Dixie Chicks) Not Ready To Make Nice :", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bad Blood in the style of Taylor Swift", - "id": "Karaoke with Lyrics" - }, - { - "title": "Lorde - Royals (Karaoke with Lyrics)", - "id": "GIHtP7_2_js" - }, - { - "title": "Cocaine in the style of Eric Clapton", - "id": "Karaoke with Lyrics" - }, - { - "title": "Surfer Girl in the style of The Beach Boys", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rude in the style of MAGIC!", - "id": "Karaoke with Lyrics" - }, - { - "title": "Ode To My Car in the style of Adam Sandler", - "id": "Karaoke with Lyrics" - }, - { - "title": "Feeling Good in the style of Michael Bublรฉ", - "id": "Karaoke with Lyrics" - }, - { - "title": "If I Were A Boy in the style of Beyoncรฉ", - "id": "Karaoke with Lyrics" - }, - { - "title": "M.C. Hammer - U Can't Touch This (Karaoke with Lyrics)", - "id": "IqK4wlCTN24" - }, - { - "title": "Cups (Pitch Perfect's \"When I'm Gone\") in the style of Anna Kendrick", - "id": "Karaoke with Lyrics" - }, - { - "title": "She Wolf (Falling To Pieces) in the style of David Guetta feat. Sia", - "id": "Karaoke with Lyrics" - }, - { - "title": "One Way Or Another (Teenage Kicks) in the style of One Direction", - "id": "Karaoke with Lyrics" - }, - { - "title": "Bulletproof in the style of La Roux", - "id": "Karaoke with Lyrics" - }, - { - "title": "Call Me Maybe in the style of Carly Rae Jepsen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Counting Stars in the style of OneRepublic", - "id": "Karaoke with Lyrics" - }, - { - "title": "Talladega in the style of Eric Church", - "id": "Karaoke with Lyrics" - }, - { - "title": "#Thatpower in the style of will.i.am feat. Justin Bieber", - "id": "Karaoke with Lyrics" - }, - { - "title": "Good Time (Duet) in the style of Owl City feat. Carly Rae Jepsen", - "id": "Karaoke with Lyrics" - }, - { - "title": "Man In The Mirror in the style of Michael Jackson", - "id": "Karaoke with Lyrics" - }, - { - "title": "Cheerleader (Felix Jaehn Remix) in the style of Omi", - "id": "Karaoke with Lyrics" - }, - { - "title": "I Want To Hold Your Hand in the style of The Beatles", - "id": "Karaoke with Lyrics" - }, - { - "title": "Tacky in the style of \"Weird\" Al Yankovic", - "id": "Karaoke with Lyrics" - }, - { - "title": "Dirt in the style of Florida Georgia Line", - "id": "Karaoke with Lyrics" - }, - { - "title": "Sure Be Cool If You Did in the style of Blake Shelton", - "id": "Karaoke with Lyrics" - }, - { - "title": "Let's Get Rocked in the Style of \"Def Leppard\" with lyrics (no lead vocal)", - "id": "Xl6ViSiaWCk" - }, - { - "title": "Bad Day in the Style of \"Daniel Powter\" with lyrics (no lead vocal)", - "id": "zrK4uy3Bpvg" - }, - { - "title": "The Thrill Is Gone in the Style of \"B.B. King\" with lyrics (no lead vocal)", - "id": "x-eIEov-JGs" - }, - { - "title": "El sinaloense in the Style of \"Banda El Recodo\" with lyrics (no lead vocal)", - "id": "ncH7vao67Ag" - }, - { - "title": "Inolvidable in the Style of \"Jenni Rivera\" with lyrics (no lead vocal)", - "id": "91JQ1ZBEhiA" - }, - { - "title": "Copacabana (At The Copa) in the Style of \"Barry Manilow\" with lyrics (no lead vocal)", - "id": "EocWO-urbFg" - }, - { - "title": "Si nos dejan in the Style of \"Luis Miguel\" with lyrics (no lead vocal)", - "id": "Y4kyuqMMkyM" - }, - { - "title": "Conga in the Style of \"Miami Sound Machine\" with lyrics (no lead vocal)", - "id": "34HWxdgCD6w" - }, - { - "title": "El Rey in the Style of \"Josรฉ Alfredo Jimรฉnez\" with lyrics (no lead vocal)", - "id": "trHHwZ2t4og" - }, - { - "title": "Guantanamera in the Style of \"Tradicional\" with lyrics (no lead vocal)", - "id": "99GQTlltU3M" - }, - { - "title": "All About That Bass in the Style of \"Meghan Trainor\" with lyrics (no lead vocal)", - "id": "VPzMl1ksLDM" - }, - { - "title": "22 in the Style of \"Taylor Swift\" with lyrics (no lead vocal)", - "id": "6dIEXYSv3A8" - }, - { - "title": "Lonely Tonight in the Style of \"Blake Shelton feat. Ashley Monroe\" with lyrics (no lead vocal)", - "id": "FK1DMBX72UU" - }, - { - "title": "I Put A Spell On You in the Style of \"Annie Lennox\" with lyrics (no lead vocal)", - "id": "1jDou8z-Wio" - }, - { - "title": "For You in the Style of \"Keith Urban\" with lyrics (no lead vocal)", - "id": "za_qPEjdEjQ" - }, - { - "title": "No More \"I Love You's\" in the Style of \"Annie Lennox\" with lyrics (no lead vocal)", - "id": "fxc7zqI25V4" - }, - { - "title": "Love Me Do in the Style of \"The Beatles\" with lyrics (no lead vocal)", - "id": "yDS6jt37XAk" - }, - { - "title": "Guts Over Fear (Duet) in the Style of \"Eminem feat. Sia\" with lyrics (no lead vocal)", - "id": "d0sobvcS0kY" - }, - { - "title": "Luck Be A Lady in the Style of \"Frank Sinatra\" with lyrics (no lead vocal)", - "id": "mgm5OCtkP4M" - }, - { - "title": "That'll Be The Day in the Style of \"Buddy Holly\" with lyrics (no lead vocal)", - "id": "_bPD-E7pmRU" - }, - { - "title": "I Think I'm Paranoid in the Style of \"Garbage\" with lyrics (no lead vocal)", - "id": "30PCDJtIlo8" - }, - { - "title": "Chandelier in the Style of \"Sia\" with lyrics (no lead vocal)", - "id": "QCQjYBY1LgQ" - }, - { - "title": "Highway Don't Care in the Style of \"Tim McGraw feat. Taylor Swift\" with lyrics (no lead vocal)", - "id": "Mlr2ZlXbID8" - }, - { - "title": "Blank Space in the Style of \"Taylor Swift\" with lyrics (no lead vocal)", - "id": "vD4JrW36Ang" - }, - { - "title": "Taylor Swift - Out of the Woods (Karaoke With Lyrics)", - "id": "PjdUQY8QBdY" - }, - { - "title": "Say Something in the Style of \"A Great Big World & Christina Aguilera\" with lyrics (no lead vocal)", - "id": "dgBlfaaINyI" - }, - { - "title": "Anaconda in the Style of \"Nicki Minaj\" with lyrics (no lead vocal)", - "id": "JaYzTg2tWsk" - }, - { - "title": "Pharrell Williams - Happy (Karaoke With Lyrics)", - "id": "E6lXTnY5bBo" - }, - { - "title": "Brave in the Style of \"Idina Menzel\" with lyrics (no lead vocal)", - "id": "uk2g_IpNI2o" - }, - { - "title": "Mustang Sally in the Style of \"Wilson Pickett\" with lyrics (no lead vocal)", - "id": "he7PCHqnmIw" - }, - { - "title": "Your Song in the Style of \"Elton John\" with lyrics (no lead vocal)", - "id": "ne2ekNXfK1o" - }, - { - "title": "Like The Way I Do in the Style of \"Melissa Etheridge\" with lyrics (no lead vocal)", - "id": "3fGs6Shp-kM" - }, - { - "title": "Tainted Love in the Style of \"Soft Cell\" with lyrics (no lead vocal)", - "id": "auSsJqEEoh4" - }, - { - "title": "Love Shack (Duet) in the Style of \"The B-52's\" with lyrics (no lead vocal)", - "id": "HcR9yHaBOC4" - }, - { - "title": "Neon Light in the Style of \"Blake Shelton\" with lyrics (no lead vocal)", - "id": "23In-oDp_fQ" - }, - { - "title": "A Boy Named Sue in the Style of \"Johnny Cash\" with lyrics (no lead vocal)", - "id": "zkm0_OSbI9U" - }, - { - "title": "Life Of The Party in the Style of \"Shawn Mendes\" with lyrics (no lead vocal)", - "id": "0Z_PZ2C-_y8" - }, - { - "title": "Country Club in the Style of \"Travis Tritt\" with lyrics (no lead vocal)", - "id": "Oj7gCWH7oTY" - }, - { - "title": "We R Who We R in the Style of \"Kesha\" with lyrics (no lead vocal)", - "id": "OHHO-Ca5Zq8" - }, - { - "title": "Our Song (Radio Version) in the Style of \"Taylor Swift\" with lyrics (no lead vocal)", - "id": "MI6q0afV_kg" - }, - { - "title": "Play That Funky Music in the Style of \"Wild Cherry\" with lyrics (no lead vocal)", - "id": "zqr2bn62M7w" - }, - { - "title": "She Wouldn't Be Gone in the Style of \"Blake Shelton\" with lyrics (no lead vocal)", - "id": "15vDvyrdQ7s" - }, - { - "title": "Homegrown Honey in the Style of \"Darius Rucker\" with lyrics (no lead vocal)", - "id": "20w1hwOyfv0" - }, - { - "title": "Taylor Swift - Shake It Off (Karaoke with Lyrics)", - "id": "YiPE3U3QN1I" - }, - { - "title": "I'll Be Home For Christmas in the Style of \"Linda Ronstadt\" with lyrics (no lead vocal)", - "id": "EJ5vgSeqdpI" - }, - { - "title": "It's The Most Wonderful Time Of The Year in the Style of \"Traditional\" with lyrics (no lead vocal)", - "id": "oSR7LzygkiE" - }, - { - "title": "Monster in the Style of \"Imagine Dragons\" with lyrics (no lead vocal)", - "id": "EHYnKVEz83A" - }, - { - "title": "I Want A Hippopotamus For Christmas in the Style of \"Gayla Peevey\" with lyrics (no lead vocal)", - "id": "Wx2D46QngSs" - }, - { - "title": "Away In A Manger in the Style of \"Johnny Cash\" with lyrics (no lead vocal)", - "id": "PbECY5EkAMo" - }, - { - "title": "We Wish You A Merry Christmas!", - "id": "Karaoke with lyrics" - }, - { - "title": "Madonna - Holiday (Karaoke With Lyrics)", - "id": "v4qVoN7V1rc" - }, - { - "title": "Little Saint Nick in the Style of \"The Beach Boys\" with lyrics (no lead vocal)", - "id": "BD0uK70wd38" - }, - { - "title": "Feliz Navidad in the Style of \"Josรฉ Feliciano\" with lyrics (no lead vocal)", - "id": "yK78mzWk-H0" - }, - { - "title": "Mariah Carey - All I Want for Christmas Is You (Karaoke with Lyrics)", - "id": "Pr3s0DR2Q6Q" - }, - { - "title": "Feel That Fire in the Style of \"Dierks Bentley\" with lyrics (no lead vocal)", - "id": "o7cLwd_iz9c" - }, - { - "title": "Walk Like An Egyptian in the Style of \"The Bangles\" with lyrics (no lead vocal)", - "id": "A884lS6cJIc" - }, - { - "title": "Laserlight in the Style of \"Jessie J feat. David Guetta\" with lyrics (no lead vocal)", - "id": "Mv-f1CjkZN8" - }, - { - "title": "Cosmic Love in the Style of \"Florence + the Machine\" with lyrics (no lead vocal)", - "id": "Ut5542EpUbs" - }, - { - "title": "Jessie J, Ariana Grande & Nicki Minaj - Bang Bang (Karaoke with Lyrics)", - "id": "NWQ2faRPU-w" - }, - { - "title": "American Soldier in the Style of \"Toby Keith\" with lyrics (no lead vocal)", - "id": "dTjsFnciaU4" - }, - { - "title": "Skinny Love in the Style of \"Birdy\" with lyrics (no lead vocal)", - "id": "poadWcmdM58" - }, - { - "title": "Maybe I'm Amazed in the Style of \"Paul McCartney\" with lyrics (no lead vocal)", - "id": "17wLc6F97XQ" - }, - { - "title": "Surefire Feeling in the Style of \"Jake Owen\" with lyrics (no lead vocal)", - "id": "bhqAB_8LtQU" - }, - { - "title": "You Da One in the Style of \"Rihanna\" with lyrics (no lead vocal)", - "id": "thdh-1qi1gQ" - }, - { - "title": "All Night Long in the Style of \"Lionel Richie\" with lyrics (no lead vocal)", - "id": "WLoS3mJDq3c" - }, - { - "title": "Casper, The Friendly Ghost in the Style of \"Various\" with lyrics (no lead vocal)", - "id": "yp6fDfmmo24" - }, - { - "title": "Don't Fear The Reaper in the Style of \"Blue ร–yster Cult\" with lyrics (no lead vocal)", - "id": "zcJSOnXezaQ" - }, - { - "title": "Evil Ways in the Style of \"Santana\" with lyrics (no lead vocal)", - "id": "OniupCLUeEw" - }, - { - "title": "A Nightmare On My Street in the Style of \"D.J. Jazzy Jeff & The Fresh Prince\" (no lead vocal)", - "id": "y9yLn0ggXF0" - }, - { - "title": "Everybody (Backstreet's Back) in the Style of \"Backstreet Boys\" with lyrics (no lead vocal)", - "id": "Wwz5I3MqKA4" - }, - { - "title": "Ghostbusters in the Style of \"Ray Parker, Jr.\" with lyrics (no lead vocal)", - "id": "jVKK_tgQ-RA" - }, - { - "title": "Caught Up in the Style of \"Usher\" with lyrics (no lead vocal)", - "id": "-uXbVV0gBxg" - }, - { - "title": "Blow in the Style of \"Kesha\" with lyrics (no lead vocal)", - "id": "FnUa5YaWi9E" - }, - { - "title": "Pretty Fly (For A White Guy) in the Style of \"The Offspring\" with lyrics (no lead vocal)", - "id": "rsKhrM1_n5A" - }, - { - "title": "You've Lost That Lovin' Feeling in the Style of \"The Righteous Brothers\" with lyrics (no lead vocal)", - "id": "6lYoRhRnYj4" - }, - { - "title": "Sharp Dressed Man in the Style of \"ZZ Top\" with lyrics (no lead vocal)", - "id": "8H1dMcl3-jM" - }, - { - "title": "It's Gonna Take A Miracle in the Style of \"Deniece Williams\" with lyrics (no lead vocal)", - "id": "qJiG89HJj6k" - }, - { - "title": "Karma Chameleon in the Style of \"Culture Club\" with lyrics (no lead vocal)", - "id": "kmmvx8Z-F7s" - }, - { - "title": "We Are Golden in the Style of \"Mika\" with lyrics (no lead vocal)", - "id": "xilH2iH9-14" - }, - { - "title": "Lightning Crashes in the Style of \"Live\" with lyrics (no lead vocal)", - "id": "8ewxnGA0YUQ" - }, - { - "title": "Glamorous in the Style of \"Fergie feat. Ludacris\" with lyrics (no lead vocal)", - "id": "H48qc7RqVXo" - }, - { - "title": "A Thousand Miles in the Style of \"Vanessa Carlton\" with lyrics (no lead vocal)", - "id": "CTLJG7UK49w" - }, - { - "title": "Only Happy When It Rains in the Style of \"Garbage\" with lyrics (no lead vocal)", - "id": "a3-R9Ct4GMw" - }, - { - "title": "Maroon 5 - Moves Like Jagger (Karaoke With Lyrics)", - "id": "FJ-tuKvRSdk" - }, - { - "title": "Kiss From A Rose in the Style of \"Seal\" with lyrics (no lead vocal)", - "id": "_3rkp5WntYk" - }, - { - "title": "Dame (Touch Me) in the Style of \"Jennifer Lopez & Chayanne\" with lyrics (no lead vocal)", - "id": "FSjDH694Z2s" - }, - { - "title": "Thank U in the Style of \"Alanis Morissette\" with lyrics (no lead vocal)", - "id": "9ITaPli53QY" - }, - { - "title": "Whataya Want From Me in the Style of \"Adam Lambert\" with lyrics (no lead vocal)", - "id": "HjTdUhHLpQQ" - }, - { - "title": "What Have You Done For Me Lately in the Style of \"Janet Jackson\" with lyrics (no lead vocal)", - "id": "j5hYqlGiF3M" - }, - { - "title": "Dreamgirls in the Style of \"Beyoncรฉ, Jennifer Hudson & Anika Noni Rose\" with lyrics (no lead vocal)", - "id": "16MNPD_2j9g" - }, - { - "title": "Check On It in the Style of \"Beyoncรฉ feat. Slim Thug\" with lyrics (no lead vocal)", - "id": "Ic5DcjrgIyE" - }, - { - "title": "So What (Radio Version) in the Style of \"Pink\" with lyrics (no lead vocal)", - "id": "ikNTCUkSJIE" - }, - { - "title": "I Knew You Were Trouble in the Style of \"Taylor Swift\" with lyrics (no lead vocal)", - "id": "ZryAXHt8mh0" - }, - { - "title": "Whip My Hair in the Style of \"Willow Smith\" with lyrics (no lead vocal)", - "id": "uPI_D0F4siU" - }, - { - "title": "Butterflies in the Style of \"Michael Jackson\" with lyrics (no lead vocal)", - "id": "Yit7yeGKjUg" - }, - { - "title": "Video Killed The Radio Star in the Style of \"The Buggles\" with lyrics (no lead vocal)", - "id": "_77fK5WZjMY" - }, - { - "title": "Talk Dirty To Me in the Style of \"Poison\" with lyrics (no lead vocal)", - "id": "tjPl6LZssDY" - }, - { - "title": "Hold On in the Style of \"Wilson Phillips\" with lyrics (no lead vocal)", - "id": "UJP_mVu48OU" - }, - { - "title": "Homewrecker in the Style of \"Gretchen Wilson\" with lyrics (no lead vocal)", - "id": "bcKquJzfJAM" - }, - { - "title": "That's The Way It Is in the Style of \"Celine Dion\" with lyrics (no lead vocal)", - "id": "Qc0Xnc4OJNk" - }, - { - "title": "What Hurts The Most in the Style of \"Rascal Flatts\" with lyrics (no lead vocal)", - "id": "Urw_9gH8rSc" - }, - { - "title": "Space Oddity in the Style of \"David Bowie\" with lyrics (no lead vocal)", - "id": "67xWcIQhXL4" - }, - { - "title": "Live While We're Young in the Style of \"One Direction\" with lyrics (no lead vocal)", - "id": "b61OWiRG6cY" - }, - { - "title": "Lady Marmalade in the Style of \"Mya, Christina Aguilera, Lil' Kim & Pink\" (no lead vocal)", - "id": "aMqJR0OyLL8" - }, - { - "title": "It's My Life in the Style of \"No Doubt\" with lyrics (no lead vocal)", - "id": "s8NIc8z77Ao" - }, - { - "title": "Nothin' On You in the Style of \"B.o.B. feat. Bruno Mars\" with lyrics (no lead vocal)", - "id": "Red6ZNsSauc" - }, - { - "title": "How Do You Like Me Now?! in the Style of \"Toby Keith\" with lyrics (no lead vocal)", - "id": "SWfoaglCcO0" - }, - { - "title": "Yellow Submarine in the Style of \"The Beatles\" with lyrics (no lead vocal)", - "id": "nvN5kLTT_2k" - }, - { - "title": "Friday I'm In Love in the Style of \"The Cure\" with lyrics (no lead vocal)", - "id": "6ZhN7zhe1XY" - }, - { - "title": "My Immortal (Radio Version) in the Style of \"Evanescence\" with lyrics (no lead vocal)", - "id": "b4455WTckFI" - }, - { - "title": "Learning To Fly in the Style of \"Pink Floyd\" with lyrics (no lead vocal)", - "id": "rnL2sjLtxTs" - }, - { - "title": "Look What The Cat Dragged In in the Style of \"Poison\" with lyrics (no lead vocal)", - "id": "P3QG5Q2PHHs" - }, - { - "title": "Whitney Houston - I Wanna Dance With Somebody (Who Loves Me) (Karaoke With Lyrics)", - "id": "6Ixtluu1mA0" - }, - { - "title": "Tell Her About It in the Style of \"Billy Joel\" with lyrics (no lead vocal)", - "id": "SRfPbPHKXoc" - }, - { - "title": "Africa in the Style of \"Toto\" with lyrics (no lead vocal)", - "id": "E6phnCBu1cI" - }, - { - "title": "Alyssa Lies in the Style of \"Jason Michael Carroll\" with lyrics (no lead vocal)", - "id": "dgxV3jz1MJo" - }, - { - "title": "You Oughta Know in the Style of \"Alanis Morissette\" with lyrics (no lead vocal)", - "id": "DgIWBoq9hg0" - }, - { - "title": "Bad Blood in the Style of \"Bastille\" with lyrics (no lead vocal)", - "id": "HAIitx385FU" - }, - { - "title": "OMG in the Style of \"Usher feat. will.i.am\" with lyrics (no lead vocal)", - "id": "eKNm5AlcyQ8" - }, - { - "title": "Anytime in the Style of \"Brian McKnight\" with lyrics (no lead vocal)", - "id": "nDc-R-w7Buk" - }, - { - "title": "Do Wah Diddy Diddy in the Style of \"Manfred Mann\" with lyrics (no lead vocal)", - "id": "rvUS_ofV6sU" - }, - { - "title": "Suds in the Bucket in the Style of \"Sara Evans\" with lyrics (no lead vocal)", - "id": "rlT-b0hDLyI" - }, - { - "title": "Don't Let The Sun Go Down On Me in the Style of \"Elton John\" with lyrics (no lead vocal)", - "id": "EkEnGNavsdg" - }, - { - "title": "Little Lies in the Style of \"Fleetwood Mac\" with lyrics (no lead vocal)", - "id": "yRhZ4R9v8Xo" - }, - { - "title": "Bitter Sweet Symphony in the Style of \"The Verve\" with lyrics (no lead vocal)", - "id": "fozHiPR-iUs" - }, - { - "title": "11 in the Style of \"Cassadee Pope\" with lyrics (no lead vocal)", - "id": "fwHwjam2hrk" - }, - { - "title": "Me, Myself And I in the Style of \"Beyoncรฉ\" with lyrics (no lead vocal)", - "id": "gF4vnwXPWSI" - }, - { - "title": "Candy Shop (Radio Version) in the Style of \"50 Cent\" with lyrics (no lead vocal)", - "id": "KqzVhRvE_OA" - }, - { - "title": "Somewhere Only We Know in the Style of \"Keane\" with lyrics (no lead vocal)", - "id": "rNMAbIeSu78" - }, - { - "title": "Seasons Of Love in the Style of \"Rent (Broadway Version)\" with lyrics (no lead vocal)", - "id": "PANt7BSyZmI" - }, - { - "title": "Bad Moon Rising in the Style of \"Creedence Clearwater Revival\" with lyrics (no lead vocal)", - "id": "ayjDCxuufNc" - }, - { - "title": "Uptown Girl in the Style of \"Billy Joel\" with lyrics (no lead vocal)", - "id": "GyOSzY3ujBs" - }, - { - "title": "Rhythm Divine in the Style of \"Enrique Iglesias\" with lyrics (no lead vocal)", - "id": "wwf-S6jzwd4" - }, - { - "title": "Can't Help Falling In Love in the Style of \"Elvis Presley\" with lyrics (no lead vocal)", - "id": "G85NWxqj4yY" - }, - { - "title": "Travelin' Band in the Style of \"Creedence Clearwater Revival\" with lyrics (no lead vocal)", - "id": "eXQGfuqRvvA" - }, - { - "title": "Come Sail Away in the Style of \"Styx\" with lyrics (no lead vocal)", - "id": "JpqEukPrb4Q" - }, - { - "title": "Barracuda in the Style of \"Heart\" with lyrics (no lead vocal)", - "id": "wpDOiMYu7xg" - }, - { - "title": "Baby, I Love Your Way in the Style of \"Peter Frampton\" with lyrics (no lead vocal)", - "id": "pUg7tce5au8" - }, - { - "title": "Dreaming Of You in the Style of \"Selena\" with lyrics (no lead vocal)", - "id": "SV1xE4OSII0" - }, - { - "title": "Things We Lost In The Fire in the Style of \"Bastille\" with lyrics (no lead vocal)", - "id": "s1rLwaN_pEk" - }, - { - "title": "I Was Made For Loving You in the Style of \"Kiss\" with lyrics (no lead vocal)", - "id": "zklt_Wkx4Wk" - }, - { - "title": "The Old Rugged Cross in the Style of \"Traditional\" with lyrics (no lead vocal)", - "id": "vRxBYvXe9Oo" - }, - { - "title": "He's My Son in the Style of \"Mark Schultz\" with lyrics (no lead vocal)", - "id": "mnbm2JI6OmU" - }, - { - "title": "Here Comes Peter Cottontail in the Style of \"Traditional\" with lyrics (no lead vocal)", - "id": "NgIAV8-q2d4" - }, - { - "title": "Jesus Loves Me in the Style of \"Traditional\" with lyrics (no lead vocal)", - "id": "lysCux4TyDs" - }, - { - "title": "What A Friend We Have In Jesus in the Style of \"Traditional\" with lyrics (no lead vocal)", - "id": "YZWzNzG5SOU" - }, - { - "title": "Jesu, Joy Of Man's Desiring in the Style of \"Traditional\" with lyrics (no lead vocal)", - "id": "_URKxTk1Sko" - }, - { - "title": "My God Is So Great in the Style of \"Traditional\" with lyrics (no lead vocal)", - "id": "Mfp4gR1KhMY" - }, - { - "title": "This Love in the Style of \"Maroon 5\" with lyrics (no lead vocal)", - "id": "38f_4GPr7nI" - }, - { - "title": "Don't Worry Be Happy: Bobby McFerrin", - "id": "Karaoke with lyrics" - }, - { - "title": "The KARAOKE Channel - Living Legends", - "id": "uD2SxtGz0XI" - }, - { - "title": "Where We Came From in the Style of \"Phillip Phillips\" with lyrics (no lead vocal) karaoke video", - "id": "3VGTk5KwR7Y" - }, - { - "title": "Heartbreaker in the Style of \"will.i.am\" with lyrics (no lead vocal) karaoke video", - "id": "5N9QFUYSmlA" - }, - { - "title": "Galway Bay in the Style of \"Jerry Piper\" with lyrics (no lead vocal) karaoke video", - "id": "IxFCuaXPAAE" - }, - { - "title": "Laura Palmer in the Style of \"Bastille\" with lyrics (no lead vocal) karaoke video", - "id": "PK4OwLVFf0Y" - }, - { - "title": "Danny Boy in the Style of \"Traditional\" with lyrics (no lead vocal) karaoke video", - "id": "l6aPgQjGxQU" - }, - { - "title": "Molly Malone (Cockles & Mussels) in the Style of \"Traditional\" with lyrics (no lead vocal)", - "id": "2APe1ypRt0Y" - }, - { - "title": "The Wild Rover in the Style of \"Traditional\" with lyrics (no lead vocal) Karaoke Video", - "id": "VGuxMnYQJEc" - }, - { - "title": "As Long As You Love Me in the Style of \"Justin Bieber feat. Big Sean\" with lyrics (no lead vocal)", - "id": "JThlXu5drB4" - }, - { - "title": "Head First in the Style of \"The Babys\" with lyrics (no lead vocal) karaoke video", - "id": "AXUuoIHym0M" - }, - { - "title": "Because in the Style of \"The Dave Clark Five\" with lyrics (no lead vocal) Karaoke Video with Lyrics", - "id": "HnnjB0F52EA" - }, - { - "title": "Sing Your Heart Out in the Style of \"Stingray Music\" with lyrics (with lead vocal)", - "id": "zLfSV-JQCgE" - }, - { - "title": "Sing Your Heart Out in the Style of \"Stingray Music\" with lyrics (no lead vocal)", - "id": "sTAD4v8jAp4" - }, - { - "title": "Lay Down (Candles In The Rain) in the Style of \"Melanie & The Edwin Hawkins Singers\" (no lead vocal)", - "id": "ZdLCVGmo1cs" - }, - { - "title": "El Manicero in the Style of \"Tradicional\" with lyrics (no lead vocal) Karaoke Video", - "id": "xHObv7_UhwY" - }, - { - "title": "Girl Watcher in the Style of \"The O'Kaysions\" with lyrics (no lead vocal) Karaoke Video", - "id": "-nJs79s4UB8" - }, - { - "title": "A Simple Life in the Style of \"Ricky Skaggs\" with lyrics (no lead vocal) Karaoke Video", - "id": "MkuEdLbGLMQ" - }, - { - "title": "Good Lovin' in the Style of \"The Young Rascals\" with lyrics (no lead vocal) karaoke video", - "id": "GE9_St1WjiU" - }, - { - "title": "The Search Is Over in the Style of \"Survivor\" with lyrics (no lead vocal) karaoke video", - "id": "gcO9GKNzR6Q" - }, - { - "title": "Yummy, Yummy, Yummy in the Style of \"Ohio Express\" with lyrics karaoke video (no lead vocal)", - "id": "U2XH3WzCZH4" - }, - { - "title": "Last Goodbye in the Style of \"Kenny Wayne Shepherd Band\" with lyrics (no lead vocal) Karaoke Video", - "id": "wcAXkbEl5EA" - }, - { - "title": "Half Heaven-Half Heartache in the Style of \"Gene Pitney\" with lyrics (no lead vocal) karaoke video", - "id": "SG2FYSSdRHE" - }, - { - "title": "Two Out Of Three Ain't Bad in the Style of \"Meat Loaf\" with lyrics (no lead vocal) karaoke video", - "id": "lrFXjQlscS8" - }, - { - "title": "In The Meantime in the Style of \"Spacehog\" with lyrics (no lead vocal) karaoke video", - "id": "dmUwcwnSnKI" - }, - { - "title": "Midnight Blue in the Style of \"Melissa Manchester\" with lyrics (no lead vocal) karaoke video", - "id": "67bwmZjRp8k" - }, - { - "title": "Smile: Lily Allen", - "id": "Karaoke with lyrics" - }, - { - "title": "Big Ten Inch Record in the Style of \"Aerosmith\" with lyrics (no lead vocal) Karaoke Video", - "id": "CxoFvceBb5E" - }, - { - "title": "All Revved Up With No Place To Go in the Style of \"Meat Loaf\" with lyrics (no lead vocal)", - "id": "1SeGm_Ur5ew" - }, - { - "title": "Hair Of The Dog in the Style of \"Nazareth\" with lyrics (no lead vocal) Karaoke Video", - "id": "bSwjTWjT1zg" - }, - { - "title": "You're The Reason I'm Living in the Style of \"Bobby Darin\" with lyrics (no lead vocal)", - "id": "oPwKtiwuI8s" - }, - { - "title": "Maybe This Time in the Style of \"Liza Minnelli\" with lyrics (no lead vocal)", - "id": "6_eB1DuQ0nE" - }, - { - "title": "Making Love Out Of Nothing At All in the Style of \"Air Supply\" karaoke with lyrics (no lead vocal)", - "id": "Bom0W1Dnh9o" - }, - { - "title": "La Mentira in the Style of \"Intocable\" with lyrics (no lead vocal)", - "id": "26vblwJhTi4" - }, - { - "title": "Stagger Lee in the Style of \"Lloyd Price\" with lyrics (no lead vocal)", - "id": "sBrOQcHso14" - }, - { - "title": "We Could Be Together in the Style of \"Debbie Gibson\" with lyrics (no lead vocal)", - "id": "CAJxiVCRopQ" - }, - { - "title": "Just A Little Bit Better in the Style of \"Herman's Hermits\" with lyrics (no lead vocal)", - "id": "nZE-ZUzhNNY" - }, - { - "title": "Pretend in the Style of \"Alvin Stardust\" with lyrics (no lead vocal)", - "id": "yGPtfwnhzVU" - }, - { - "title": "Got My Mind Set On You in the Style of \"George Harrison\" with lyrics (no lead vocal)", - "id": "Phyosh15FCs" - }, - { - "title": "Can't Hold Us in the Style of \"Macklemore & Ryan Lewis feat. Ray Dalton\" with lyrics (no lead vocal)", - "id": "lEsD3VrNQpA" - }, - { - "title": "Paradise By The Dashboard Light in the Style of \"Meat Loaf\" with lyrics (no lead vocal)", - "id": "nWldwwQ9rw8" - }, - { - "title": "Home Again (Single Edit) in the Style of \"Elton John\" with lyrics (no lead vocal)", - "id": "svNlzvRdzuw" - }, - { - "title": "F For You in the Style of \"Disclosure\" with lyrics (no lead vocal)", - "id": "13kgclxpYwA" - }, - { - "title": "Round And Round in the Style of \"Imagine Dragons\" with lyrics (no lead vocal)", - "id": "hApl7JX0A5c" - }, - { - "title": "Under The Boardwalk in the Style of \"The Drifters\" with lyrics (no lead vocal)", - "id": "L2-4CMEz3FA" - }, - { - "title": "Survival (Clean Version) in the Style of \"Eminem\" karaoke singalong with lyrics (no lead vocal)", - "id": "j_ku_ENfO3k" - }, - { - "title": "Karaoke Video: Sing Fever in the Style of \"Peggy Lee\" with lyrics (no lead vocal)", - "id": "ne3Tgfc95gI" - }, - { - "title": "Right Action in the Style of \"Franz Ferdinand\" karaoke video with lyrics (no lead vocal)", - "id": "xkBVhgzDVZM" - }, - { - "title": "Sing Man On The Moon in the Style of \"Phillip Phillips\" karaoke with lyrics (no lead vocal)", - "id": "_zrMKGc_cxY" - }, - { - "title": "Te Deseo in the Style of \"Wisin Y Yandel\" karaoke with lyrics (no lead vocal)", - "id": "dv-A88heRPo" - }, - { - "title": "Christmastime Is Here in the Style of \"Sixpence None the Richer\" karaoke with lyrics (no lead vocal)", - "id": "UkzyDBTWeBM" - }, - { - "title": "Celebrate in the Style of \"Three Dog Night\" karaoke video with lyrics (no lead vocal)", - "id": "fB0u_SItdwU" - }, - { - "title": "Cabaret in the Style of \"Liza Minnelli\" karaoke video with lyrics (no lead vocal)", - "id": "H-NCDCQBIus" - }, - { - "title": "Amsterdam in the Style of \"Imagine Dragons\" karaoke video with lyrics (no lead vocal)", - "id": "AqBtnkQW1jg" - }, - { - "title": "Sing Karaoke: Howl (Single Edit) in the Style of \"Beware of Darkness\" with lyrics (no lead vocal)", - "id": "jWnTX4SLET8" - }, - { - "title": "The Baby in the Style of \"Blake Shelton\" karaoke video with lyrics (no lead vocal)", - "id": "5V42YwXysCs" - }, - { - "title": "Everybody Plays The Fool in the Style of \"The Main Ingredient\" karaoke video with lyrics", - "id": "FRbL_h-L3xM" - }, - { - "title": "Under The Boardwalk in the Style of \"Bette Midler\" karaoke video with lyrics (no lead vocal)", - "id": "9AQ-oui-G1A" - }, - { - "title": "Flaws in the Style of \"Bastille\" karaoke video with lyrics (no lead vocal)", - "id": "YYGoUZngtG0" - }, - { - "title": "Fairytale of New York (Duet) in the Style of \"The Pogues feat. Kirsty MacColl\" karaoke video", - "id": "9uGuvWL4EwI" - }, - { - "title": "What Child Is This? in the Style of \"The Moody Blues\" karaoke video with lyrics (no lead vocal)", - "id": "TgWbUTjRskI" - }, - { - "title": "White Noise in the Style of \"Disclosure feat. AlunaGeorge\" karaoke video with lyrics (no lead vocal)", - "id": "QTvKvGfoH6k" - }, - { - "title": "Adore You in the Style of \"Miley Cyrus\" karaoke video with lyrics (no lead vocal)", - "id": "nhrA_XX2m8g" - }, - { - "title": "I'd Do Anything For Love (But I Won't Do That) in the Style of \"Meat Loaf\" karaoke video", - "id": "hAOcXledTbc" - }, - { - "title": "Please Come Home For Christmas in the Style of \"Jon Bon Jovi\" karaoke video (no lead vocal)", - "id": "5OHgM8tnQ0g" - }, - { - "title": "Bonnie Tyler - Total Eclipse of the Heart (Karaoke With Lyrics)", - "id": "pnJRZU4oAi8" - }, - { - "title": "I Only Want You For Christmas in the Style of \"Alan Jackson\" karaoke video with lyrics", - "id": "sc9hIvM4QZ4" - }, - { - "title": "Bye Bye Bye in the Style of \"*NSYNC\" karaoke video with lyrics (no lead vocal)", - "id": "PEU9mi7HJsc" - }, - { - "title": "Everlong: Foo Fighters", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "Alone in the Style of \"Heart\" karaoke video with lyrics (no lead vocal)", - "id": "LENQ2eRnbkU" - }, - { - "title": "Simple Man in the Style of \"Shinedown\" karaoke video with lyrics (no lead vocal)", - "id": "u7W3lWelyHw" - }, - { - "title": "Bill Withers - Lean On Me (Karaoke with Lyrics)", - "id": "juBHK0RRG2Y" - }, - { - "title": "Ho Hey in the Style of \"The Lumineers\" karaoke video with lyrics (no lead vocal)", - "id": "sDmnZPAJ7j0" - }, - { - "title": "Brian McKnight - Back At One (Karaoke with Lyrics)", - "id": "flf_tv4lMPg" - }, - { - "title": "Head Over Feet in the Style of \"Alanis Morissette\" karaoke with lyrics (no lead vocal)", - "id": "BvSsWpXEfSA" - }, - { - "title": "Zombie in the Style of \"The Cranberries\" karaoke video with lyrics (no lead vocal)", - "id": "muHW6HMVp5U" - }, - { - "title": "As Long As You Love Me in the Style of \"Backstreet Boys\" karaoke lyrics (no lead vocal)", - "id": "PpYbCMOyogQ" - }, - { - "title": "The Script - Breakeven (Karaoke with Lyrics)", - "id": "35du7X_Zork" - }, - { - "title": "My Girl in the Style of \"The Temptations\" karaoke video with lyrics (no lead vocal)", - "id": "foYJiXbbhaU" - }, - { - "title": "Tainted Love in the Style of \"Marilyn Manson\" karaoke video with lyrics (no lead vocal)", - "id": "bNk_dgroDj8" - }, - { - "title": "Sweet Home Alabama in the Style of \"Lynyrd Skynyrd\" karaoke video with lyrics (no lead vocal)", - "id": "c7kOCtBGY9E" - }, - { - "title": "Pump Up The Jam in the Style of \"Technotronic\" karaoke video with lyrics (no lead vocal)", - "id": "WyRis5rbgoQ" - }, - { - "title": "The Twist in the Style of \"Chubby Checker\" karaoke video with lyrics (no lead vocal)", - "id": "0ZdH8BQ5Tyc" - }, - { - "title": "Sexual Healing in the Style of \"Marvin Gaye\" karaoke video with lyrics (no lead vocal)", - "id": "gb8XtcvcwxE" - }, - { - "title": "Can't Fight This Feeling in the Style of \"REO Speedwagon\" karaoke video with lyrics (no lead vocal)", - "id": "f-9Eesk_89Q" - }, - { - "title": "Teardrops On My Guitar in the Style of \"Taylor Swift\" karaoke video with lyrics (no lead vocal)", - "id": "JDrHYz04hpY" - }, - { - "title": "U Remind Me (Radio Version) in the Style of \"Usher\" karaoke video with lyrics (no lead vocal)", - "id": "wljdxVlJAMg" - }, - { - "title": "Ain't No Mountain High Enough in the Style of \"Diana Ross\" karaoke video with lyrics (no lead vocal)", - "id": "ovuGk0WsvVA" - }, - { - "title": "Radioactive in the Style of \"Imagine Dragons\" karaoke video with lyrics (no lead vocal)", - "id": "R2Q0bCQnkKQ" - }, - { - "title": "Same Love (Duet) in the Style of \"Macklemore & Ryan Lewis feat. Mary Lambert\" (no lead vocal)", - "id": "g7m8lGWdwxM" - }, - { - "title": "She's Everything (Radio Version) in the Style of \"Brad Paisley\" with lyrics (no lead vocal)", - "id": "3ggyp7sia3Y" - }, - { - "title": "Mad About You in the Style of \"Belinda Carlisle\" karaoke video with lyrics (no lead vocal)", - "id": "feLvQlhLZ84" - }, - { - "title": "A Fool Such As I in the Style of \"Elvis Presley\" karaoke video with lyrics (no lead vocal)", - "id": "9QRBUrkUx9U" - }, - { - "title": "Don't in the Style of \"Elvis Presley\" karaoke video with lyrics (no lead vocal)", - "id": "tlnN0vRLNeA" - }, - { - "title": "Karaoke Version: Pompeii in the Style of \"Bastille\" with lyrics (no lead vocal)", - "id": "8JENMXlwFVQ" - }, - { - "title": "Weird Science in the Style of \"Oingo Boingo\" karaoke video with lyrics (no lead vocal)", - "id": "BOAvM8zk5Yw" - }, - { - "title": "Spooky in the Style of \"Classics IV\" karaoke video with lyrics (no lead vocal)", - "id": "ILS6vA_HaK8" - }, - { - "title": "Kung Fu Fighting in the Style of \"Carl Douglas\" karaoke video with lyrics (no lead vocal)", - "id": "Fw5USgo6aP0" - }, - { - "title": "Welcome To My Nightmare in the Style of \"Alice Cooper\" karaoke video with lyrics (no lead vocal)", - "id": "DHA07339e1k" - }, - { - "title": "Karaoke Video: Snowblind in the Style of \"Black Sabbath\" with lyrics (no lead vocal)", - "id": "qXjwfRD7q6Y" - }, - { - "title": "Thrift Shop in the Style of \"Macklemore & Ryan Lewis\" karaoke video with lyrics (no lead vocal)", - "id": "adH4KmEcL3A" - }, - { - "title": "War Pigs in the Style of \"Black Sabbath\" karaoke video with lyrics (no lead vocal)", - "id": "-aOD9liLZTE" - }, - { - "title": "Children of the Grave in the Style of \"Black Sabbath\" karaoke video with lyrics (no lead vocal)", - "id": "Gv4-jDFoZTA" - }, - { - "title": "N.I.B. in the Style of \"Black Sabbath\" karaoke video with lyrics (no lead vocal)", - "id": "wS91A1IE2Ic" - }, - { - "title": "The Mob Rules in the Style of \"Black Sabbath\" karaoke video with lyrics (no lead vocal)", - "id": "vG7WYJ5VgMw" - }, - { - "title": "\"On Top of the World\" in the Style of \"Imagine Dragons\" karaoke video with lyrics (no lead vocal)", - "id": "EzyRm4WHJyg" - }, - { - "title": "Neon Knights in the Style of \"Black Sabbath\" karaoke video with lyrics (no lead vocal)", - "id": "xARzm3zoWfg" - }, - { - "title": "Iron Man in the Style of \"Black Sabbath\" karaoke video with lyrics (no lead vocal)", - "id": "X6hPvnYfhA8" - }, - { - "title": "Karaoke Video: Give Peace A Chance in the Style of \"John Lennon\" with lyrics (no lead vocal)", - "id": "NRlMK4wUvHw" - }, - { - "title": "Dear Mr. President in the Style of \"Pink\" karaoke video with lyrics (no lead vocal)", - "id": "-IhT7qnrj2Q" - }, - { - "title": "Demons in the Style of \"Imagine Dragons\" karaoke video with lyrics (no lead vocal)", - "id": "fXRM9fXYzto" - }, - { - "title": "Superstition in the Style of \"Stevie Wonder\" karaoke video with lyrics (no lead vocal)", - "id": "GcQaKfpBAww" - }, - { - "title": "Paranoid: Black Sabbath", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "Evanescence - Bring Me To Life (Karaoke With Lyrics)", - "id": "8nS4ylMD5xw" - }, - { - "title": "Stubborn Love in the Style of \"The Lumineers\" karaoke video with lyrics (no lead vocal)", - "id": "2X26rs6WIQs" - }, - { - "title": "Sgt. Pepper's Lonely Heart Club Band (Live Version) in the Style of \"U2 & Paul McCartney\"", - "id": "zyTZbMe7dbI" - }, - { - "title": "Seasons Change in the Style of \"Exposรฉ\" karaoke video with lyrics (no lead vocal)", - "id": "bJYm2qxO43Q" - }, - { - "title": "Scorpions - Wind Of Change (Karaoke With Lyrics)", - "id": "AAPRtwEp82c" - }, - { - "title": "Give Me Everything in the Style of \"Pitbull feat. Ne-Yo & Afrojack & Nayer\" (no lead vocal)", - "id": "ROHlBUj3fjU" - }, - { - "title": "September in the Style of \"Earth, Wind & Fire\" karaoke video with lyrics (no lead vocal)", - "id": "V81sR30RPU8" - }, - { - "title": "Love The Way You Lie in the Style of \"Eminem feat. Rihanna\" with lyrics (no lead vocal)", - "id": "NkOJVKhrmbY" - }, - { - "title": "Revolution in the Style of \"The Beatles\" karaoke video with lyrics (no lead vocal)", - "id": "xPLNB5dvOmY" - }, - { - "title": "Come Monday in the Style of \"Jimmy Buffett\" karaoke video with lyrics (no lead vocal)", - "id": "RBIphJppuX4" - }, - { - "title": "Sail in the Style of \"AWOLNATION\" karaoke video with lyrics (no lead vocal)", - "id": "tbY6eODtsK8" - }, - { - "title": "Kansas City in the Style of \"Wilbert Harrison\" karaoke video with lyrics (no lead vocal)", - "id": "fQPP7HYlUQA" - }, - { - "title": "Chasing The Sun in the Style of \"The Wanted\" karaoke video with lyrics (no lead vocal)", - "id": "hrYeRuLpxjk" - }, - { - "title": "I Want Crazy in the Style of \"Hunter Hayes\" karaoke video with lyrics (no lead vocal)", - "id": "JSMjyFhgzBY" - }, - { - "title": "My Wife Thinks You're Dead in the Style of \"Junior Brown\" karaoke video with lyrics (no lead vocal)", - "id": "H8Jbv99f104" - }, - { - "title": "Spider-Man Theme in the Style of \"Michael Bublรฉ\" karaoke video with lyrics (no lead vocal)", - "id": "Kh7tOyjGhSk" - }, - { - "title": "Cha-Cha Slide (Radio Version) in the Style of \"Mr. C The Slide Man\" with lyrics (no lead vocal)", - "id": "C4M-p8gy3RM" - }, - { - "title": "Nothing Like Us in the Style of \"Justin Bieber\" karaoke video with lyrics (no lead vocal)", - "id": "1I7sxUGWGzw" - }, - { - "title": "Paint It Black in the Style of \"The Rolling Stones\" karaoke with lyrics (no lead vocal)", - "id": "u0FlMiY-aAk" - }, - { - "title": "The Last Time in the Style of \"The Rolling Stones\" karaoke with lyrics (no lead vocal)", - "id": "kGLK_ZF3tlY" - }, - { - "title": "Let's Spend The Night Together in the Style of \"The Rolling Stones\" karaoke lyrics (no lead vocal)", - "id": "xz6koBezhcY" - }, - { - "title": "Brown Sugar in the Style of \"The Rolling Stones\" karaoke with lyrics (no lead vocal)", - "id": "B3EJfjkK6jg" - }, - { - "title": "Get Off Of My Cloud in the Style of \"The Rolling Stones\" karaoke with lyrics (no lead vocal)", - "id": "2tjmGw64sYM" - }, - { - "title": "(I Can't Get No) Satisfaction in the Style of \"The Rolling Stones\" karaoke lyrics (no lead vocal)", - "id": "vTvYB4GmRDc" - }, - { - "title": "Gimme Shelter in the Style of \"The Rolling Stones\" karaoke video with lyrics (no lead vocal)", - "id": "gzOsnbH6ccU" - }, - { - "title": "Under My Thumb in the Style of \"The Rolling Stones\" karaoke video with lyrics (no lead vocal)", - "id": "GWveLWhMVzA" - }, - { - "title": "You Can't Always Get What You Want in the Style of \"The Rolling Stones\" karaoke lyrics no lead vocal", - "id": "tyG3w0YkQZM" - }, - { - "title": "Baa Baa Black Sheep in the Style of \"Traditional\" karaoke video with lyrics (with lead vocal)", - "id": "fIuNcAp7D04" - }, - { - "title": "Jumpin' Jack Flash in the Style of \"The Rolling Stones\" karaoke video with lyrics (no lead vocal)", - "id": "n5MjdtH1e_M" - }, - { - "title": "Ruby Tuesday in the Style of \"The Rolling Stones\" karaoke with lyrics (no lead vocal)", - "id": "t5kUX9DhJeI" - }, - { - "title": "Wanted in the Style of \"Hunter Hayes\" karaoke video with lyrics (no lead vocal)", - "id": "LWi7_kvSJwA" - }, - { - "title": "Butterfly Kisses in the Style of \"Bob Carlisle\" karaoke video with lyrics (no lead vocal)", - "id": "N8NMY6704JU" - }, - { - "title": "We Are Never Ever Getting Back Together in the Style of \"Taylor Swift\" karaoke lyrics", - "id": "gbLH2fx22XE" - }, - { - "title": "Hold Me in the Style of \"Whitney Houston & Teddy Pendergrass\" with lyrics (no lead vocal)", - "id": "ybPgsVbvAOk" - }, - { - "title": "Heartbreak Hotel in the Style of \"Whitney Houston feat. Kelly Price & Faith Evans\" (no lead vocal)", - "id": "qiiAMeL-5ZM" - }, - { - "title": "It's TIme in the Style of \"Imagine Dragons\" karaoke video with lyrics (no lead vocal)", - "id": "ZKXYTYob8pI" - }, - { - "title": "One More Night in the Style of \"Maroon 5\" karaoke video with lyrics (no lead vocal)", - "id": "dZj7TFeFUDE" - }, - { - "title": "Adorn in the Style of \"Miguel\" karaoke with lyrics (no lead vocal)", - "id": "LNDY9LOX0KU" - }, - { - "title": "I Want You To Want Me in the Style of \"Cheap Trick\" karaoke video with lyrics (no lead vocal)", - "id": "xxkxyKGNMy8" - }, - { - "title": "For These Times in the Style of \"Martina McBride\" karaoke video with lyrics (no lead vocal)", - "id": "FjFpt_WAAc0" - }, - { - "title": "Poison - Every Rose Has Its Thorn (Karaoke With Lyrics)", - "id": "Z3mg4Pcf_GI" - }, - { - "title": "Old Time Rock & Roll in the Style of \"Bob Seger & The Silver Bullet Band\" (no lead vocal)", - "id": "BeU3ihVyg0w" - }, - { - "title": "Let's Dance in the Style of \"David Bowie\" karaoke video with lyrics (no lead vocal)", - "id": "h9zzwh4NJ90" - }, - { - "title": "Pussy Cat, Pussy Cat in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "ptUajs1RUEE" - }, - { - "title": "DJ Jazzy Jeff & The Fresh Prince: Fresh Prince Of Bel-Air", - "id": "Karaoke with Lyrics (no lead vocal)" - }, - { - "title": "Mary Had A Little Lamb in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "8TQlNyDL2Z8" - }, - { - "title": "Crazy in the Style of \"Patsy Cline\" karaoke video with lyrics (no lead vocal)", - "id": "Ruck_YhhJHg" - }, - { - "title": "Diamonds Are A Girl's Best Friend in the Style of \"Marilyn Monroe\" with lyrics (no lead vocal)", - "id": "FA8Wh5oo5Tc" - }, - { - "title": "3 Doors Down - Here Without You (Karaoke With Lyrics)", - "id": "sOQ1hZr3pIE" - }, - { - "title": "Everything Is Fine in the Style of \"Josh Turner\" karaoke video with lyrics (no lead vocal)", - "id": "tgqnqXwMqUk" - }, - { - "title": "Hey Diddle Diddle in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "jDAcqN7eyzg" - }, - { - "title": "Sweet Sacrifice in the Style of \"Evanescence\" karaoke video with lyrics (no lead vocal)", - "id": "QwAbI7m5gf8" - }, - { - "title": "Stole My Heart in the Style of \"One Direction\" karaoke video with lyrics (no lead vocal)", - "id": "KcUKGXHGIxA" - }, - { - "title": "Gangnam Style in the Style of \"PSY\" karaoke video with lyrics (with lead vocal)", - "id": "l39jobCCsfc" - }, - { - "title": "Gangnam Style in the Style of \"PSY\" karaoke video with lyrics (no lead vocal)", - "id": "_Kg1tGSNjRI" - }, - { - "title": "Fame in the Style of \"Irene Cara\" karaoke video with lyrics (no lead vocal)", - "id": "MbOTFNyJkN0" - }, - { - "title": "Silent Night in the Style of \"The Temptations\" karaoke video with lyrics (no lead vocal)", - "id": "6DNfTrp81WE" - }, - { - "title": "I Saw Mommy Kissing Santa Claus in the Style of \"John Mellencamp\" with lyrics (no lead vocal)", - "id": "FvFSVaWK7nE" - }, - { - "title": "A Long December in the Style of \"Counting Crows\" karaoke video with lyrics (no lead vocal)", - "id": "XcQdRbVdWE0" - }, - { - "title": "Only The Good Die Young in the Style of \"Billy Joel\" karaoke video with lyrics (no lead vocal)", - "id": "niI7_onhKZk" - }, - { - "title": "Begin Again: Taylor Swift", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "My Life in the Style of \"Billy Joel\" karaoke video with lyrics (no lead vocal)", - "id": "AIVeVhCLHTs" - }, - { - "title": "Bad To The Bone in the Style of \"George Thorogood\" karaoke lyrics (no lead vocal)", - "id": "EJcu1jWEhTc" - }, - { - "title": "Gloria Gaynor - I Will Survive (Karaoke with Lyrics)", - "id": "HwzIjdiNlhM" - }, - { - "title": "Not Fade Away in the Style of \"The Rolling Stones\" karaoke video with lyrics (no lead vocal)", - "id": "ByAD6lw14Gs" - }, - { - "title": "Twinkle, Twinkle Little Star in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "2IDv34GTsk4" - }, - { - "title": "Independence Day in the Style of \"Martina McBride\" karaoke video with lyrics (no lead vocal)", - "id": "hm3xywMN7wo" - }, - { - "title": "El Rey in the Style of \"Jose Alfredo Jiminez\" karaoke video with lyrics (no lead vocal)", - "id": "GHy8VfIv0jY" - }, - { - "title": "Billy Joel - Piano Man (Karaoke with Lyrics)", - "id": "KXrKCVILWN8" - }, - { - "title": "It's Still Rock And Roll To Me in the Style of \"Billy Joel\" with lyrics (no lead vocal)", - "id": "yvXA9nNEWPM" - }, - { - "title": "If I Never See Your Face Again in the Style of \"Maroon 5 feat. Rihanna\" with lyrics (no lead vocal)", - "id": "KWqOhF4Ihes" - }, - { - "title": "Yesterday: The Beatles", - "id": "Karaoke with Lyrics" - }, - { - "title": "Rumour Has It in the Style of \"Adele\" karaoke video with lyrics (no lead vocal)", - "id": "tgWU-jRITGc" - }, - { - "title": "Turn Me On in the Style of \"David Guetta feat. Nicki Minaj\" with lyrics (no lead vocal)", - "id": "prvwpuBhwS4" - }, - { - "title": "Love Song in the Style of \"Adele\" karaoke video with lyrics (no lead vocal)", - "id": "vS_6Pecwg3k" - }, - { - "title": "Gotta Be You in the Style of \"One Direction\" karaoke video with lyrics (no lead vocal)", - "id": "i0fcQmvrZvw" - }, - { - "title": "Love You Like A Love Song in the Style of \"Selena Gomez & The Scene\" with lyrics (no lead vocal)", - "id": "EwZzBm8Y-nI" - }, - { - "title": "Star Spangled Banner in the Style of \"Whitney Houston\" karaoke video with lyrics (no lead vocal)", - "id": "dbPNKrU36dU" - }, - { - "title": "Good Life in the Style of \"One Republic\" karaoke video lyrics (no lead vocal)", - "id": "v5F4XyVDJWo" - }, - { - "title": "Speak Now in the Style of \"Taylor Swift\" karaoke video with lyrics (no lead vocal)", - "id": "DKrf7OhkJ5A" - }, - { - "title": "The Final Countdown in the Style of \"Europe\" karaoke video with lyrics (no lead vocal)", - "id": "0m31SJnyScE" - }, - { - "title": "When Love Takes Over in the Style of \"David Guetta feat. Kelly Rowland\" with lyrics (no lead vocal)", - "id": "isp8eLOI0kY" - }, - { - "title": "I Wanna Go in the Style of \"Britney Spears\" karaoke video with lyrics (no lead vocal)", - "id": "g_q7ZP9MI68" - }, - { - "title": "O Canada (French) in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "RVYfeHy58Kc" - }, - { - "title": "O Canada (English) in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "-ze27oHhB3k" - }, - { - "title": "Fearless in the Style of \"Taylor Swift\" karaoke video with lyrics (no lead vocal)", - "id": "RqwGX2rldyw" - }, - { - "title": "We Built This City in the Style of \"Starship\" karaoke video with lyrics (no lead vocal)", - "id": "tMMsTJ5sfo8" - }, - { - "title": "Vanilla Twilight in the Style of \"Owl City\" karaoke video with lyrics (no lead vocal)", - "id": "B7HMDObic1o" - }, - { - "title": "Free Bird: Lynyrd Skynyrd", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "I Melt With You in the Style of \"Modern English\" karaoke video with lyrics (no lead vocal)", - "id": "rFZ06npPv-E" - }, - { - "title": "Give Me Everything in the Style of \"Pitbull feat. Ne-Yo & Afrojack & Nayer\" (with lead vocal)", - "id": "E6L6EebIH5o" - }, - { - "title": "Give Me Everything in the Style of \"Pitbull feat. Ne-Yo & Afrojack & Nayer\" (no lead vocal)", - "id": "WVyS5zglKb8" - }, - { - "title": "Do You Wanna Touch Me (Oh Yeah) in the Style of \"Joan Jett & The Blackhearts\" (with lead vocal)", - "id": "cPyyw9aCHa0" - }, - { - "title": "Happy Birthday: Stevie Wonder", - "id": "Karaoke with lyrics (with lead vocal)" - }, - { - "title": "Do You Wanna Touch Me (Oh Yeah) in the Style of \"Joan Jett & The Blackhearts\" (no lead vocal)", - "id": "REaZHvUWsfw" - }, - { - "title": "Happy Birthday: Stevie Wonder", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "Here We Go Loopty Loo in the Style of \"Traditional\" karaoke video with lyrics (with lead vocal)", - "id": "dD4q8pZcYo8" - }, - { - "title": "Didn't We Almost Have It All in the Style of \"Whitney Houston\" with lyrics (no lead vocal)", - "id": "aOys__RL6KQ" - }, - { - "title": "Here We Go Loopty Loo in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "Y97UhYtVUbI" - }, - { - "title": "Elton John - I'm Still Standing (Karaoke with Lyrics)", - "id": "EDB30lQI0EU" - }, - { - "title": "Love Is All Around in the Style of \"Wet Wet Wet\" karaoke video with lyrics (no lead vocal)", - "id": "qFS17oVRZio" - }, - { - "title": "I'm Still Standing in the Style of \"Elton John\" karaoke video with lyrics (with lead vocal)", - "id": "CR7KTLrbi5M" - }, - { - "title": "Stand By Your Man in the Style of \"Tammy Wynette\" karaoke video with lyrics (no lead vocal)", - "id": "1NXeGwmgfrU" - }, - { - "title": "Taxman in the Style of \"The Beatles\" karaoke video with lyrics (with lead vocal)", - "id": "MvtPf_YfOUM" - }, - { - "title": "Crazy Dreams in the Style of \"Carrie Underwood\" karaoke video with lyrics (with lead vocal)", - "id": "KtNA7S5a99g" - }, - { - "title": "Hello Again in the Style of \"Neil Diamond\" karaoke video with lyrics (no lead vocal)", - "id": "TuslNVyPH28" - }, - { - "title": "Crazy Dreams in the Style of \"Carrie Underwood\" karaoke video with lyrics (no lead vocal)", - "id": "Usc_vZI5gqw" - }, - { - "title": "Taxman in the Style of \"The Beatles\" karaoke video with lyrics (no lead vocal)", - "id": "sQeVlr4WWw4" - }, - { - "title": "Your Man - Josh Turner (Karaoke video with lyrics- No Lead Vocal)", - "id": "xEYd27snxCg" - }, - { - "title": "White Horse in the Style of \"Taylor Swift\" karaoke video with lyrics (no lead vocal)", - "id": "uW6csnVeTWE" - }, - { - "title": "Birthday Sex in the style of Jeremih karaoke video with lyrics (no lead vocal track)", - "id": "rU00kUlEShs" - }, - { - "title": "The Cave in the Style of \"Mumford & Sons\" karaoke video with lyrics (with lead vocal)", - "id": "7gQWN7m8GbM" - }, - { - "title": "My Boo - Usher, Alicia Keys (Karaoke with Lyrics - No Lead Vocal)", - "id": "L7S-JV5FFZg" - }, - { - "title": "The Cave in the Style of \"Mumford & Sons\" karaoke video with lyrics (no lead vocal)", - "id": "JlMYNJZYMVM" - }, - { - "title": "Wayfaring Stranger in the Style of \"Eva Cassidy\" karaoke video with lyrics (no lead vocal)", - "id": "XIvv0zBgl9Q" - }, - { - "title": "Wayfaring Stranger in the Style of \"Eva Cassidy\" karaoke video with lyrics (with lead vocal)", - "id": "50YKuw_bwG0" - }, - { - "title": "Little Lion Man in the Style of \"Mumford & Sons\" karaoke video with lyrics (no lead vocal)", - "id": "AdQ3QK1uQiY" - }, - { - "title": "Little Lion Man in the Style of \"Mumford & Sons\" karaoke video with lyrics (with lead vocal)", - "id": "uFHRAn2f8do" - }, - { - "title": "Itchycoo Park in the style of Small Faces karaoke video with lyrics", - "id": "ud0wekPDSI4" - }, - { - "title": "Intergalactic in the style of Beastie Boys karaoke video with lyrics", - "id": "r13A5Wd0H8I" - }, - { - "title": "Sure Shot in the style of Beastie Boys karaoke video with lyrics", - "id": "ktfn6kVXR80" - }, - { - "title": "Borderline in the style of \"Madonna\" karaoke video with lyrics (no lead vocal)", - "id": "GDJ6oG-JkaA" - }, - { - "title": "Heaven in the Style of \"DJ Sammy & Yanou\" karaoke video with lyrics (with lead vocal)", - "id": "Rmb4c_TkxTM" - }, - { - "title": "Heaven in the Style of \"DJ Sammy & Yanou\" karaoke video with lyrics (no lead vocal)", - "id": "NN-mz24sbwQ" - }, - { - "title": "You Don't Bring Me Flowers (Duet) in the Style of \"Barbra Streisand & Neil Diamond\" (no lead vocal)", - "id": "yVVVpH5tmlU" - }, - { - "title": "Dog Days Are Over by Florence and the Machine - Karaoke with lyrics (no lead vocal)", - "id": "wA3drzIZmO8" - }, - { - "title": "Easy in the Style of \"Rascal Flatts feat. Natasha Bedingfield\" with lyrics (with lead vocal)", - "id": "oG9cq8IqVq8" - }, - { - "title": "Dog Days Are Over in the Style of \"Florence and the Machine\" with lyrics (with lead vocal)", - "id": "UQoumBjtO6E" - }, - { - "title": "Easy in the Style of \"Rascal Flatts feat. Natasha Bedingfield\" with lyrics (no lead vocal)", - "id": "pCcZeLVLq2U" - }, - { - "title": "Crimson And Clover in the style of Joan Jett & The Blackhearts - karaoke video", - "id": "OIM7RAu6qEE" - }, - { - "title": "Behind These Hazel Eyes in the Style of \"Kelly Clarkson\" karaoke video with lyrics (with lead vocal)", - "id": "WXFkroNiN50" - }, - { - "title": "Britney Spears - Oops!...I Did It Again (Karaoke with Lyrics)", - "id": "jLA_OvsSGQs" - }, - { - "title": "Behind These Hazel Eyes in the Style of \"Kelly Clarkson\" karaoke video with lyrics (no lead vocal)", - "id": "gRWCryAaIuo" - }, - { - "title": "Move Along in the Style of \"The All-American Rejects\" karaoke video with lyrics (no lead vocal)", - "id": "3oCkQhhB_C8" - }, - { - "title": "Oops!...I Did It Again in the Style of \"Britney Spears\" karaoke video with lyrics (with lead vocal)", - "id": "nhsaYZLhCtk" - }, - { - "title": "Too-Ra-Loo-Ra-Loo-Ral (That's An Irish Lullaby) in the Style of \"Traditional\" (no lead vocal)", - "id": "UcJd0YsKN_0" - }, - { - "title": "Move Along in the Style of \"The All-American Rejects\" karaoke video with lyrics (with lead vocal)", - "id": "pXcBuMfJHH0" - }, - { - "title": "For The First Time in the Style of \"The Script\" karaoke video with lyrics (no lead vocal)", - "id": "sEjTdzittxk" - }, - { - "title": "Country Girl (Shake It For Me) in the Style of \"Luke Bryan\" with lyrics (no lead vocal)", - "id": "45MaxbEvTko" - }, - { - "title": "The KARAOKE Channel App for LG Smart TVs", - "id": "5mY0h8bsXRM" - }, - { - "title": "Fly in the Style of \"Nicki Minaj feat. Rihanna\" karaoke video with lyrics (no lead vocal)", - "id": "HNpJyPCDNFc" - }, - { - "title": "The KARAOKE Channel TV App Promotional Video", - "id": "LNDS033qaw8" - }, - { - "title": "Dragostea din tei in the Style of \"O-Zone\" karaoke video with lyrics (no lead vocal)", - "id": "rhLnMstOSSg" - }, - { - "title": "Nobody But Me in the Style of \"Blake Shelton\" karaoke video with lyrics (with lead vocal)", - "id": "QCFM8n8Dvm8" - }, - { - "title": "Nobody But Me in the Style of \"Blake Shelton\" karaoke video with lyrics (no lead vocal)", - "id": "34NjJ0Jh5DY" - }, - { - "title": "Whitney Houston - Saving All My Love For You (Karaoke With Lyrics)", - "id": "Z_vXoBhc-b4" - }, - { - "title": "Sweet Caroline (Good Times Never Seemed So Good) in the Style of \"Neil Diamond\" (no lead vocal)", - "id": "LsOFR-oYB6w" - }, - { - "title": "Love Me in the Style of \"Justin Bieber\" karaoke video with lyrics (no lead vocal)", - "id": "gfCSTdRuXEs" - }, - { - "title": "Sweet Caroline (Good Times Never Seemed So Good) in the Style of \"Neil Diamond\" (with lead vocal)", - "id": "qe9Rc_goxU4" - }, - { - "title": "Red Red Wine in the Style of \"UB40\" karaoke video with lyrics (no lead vocal)", - "id": "QBSBCT1yx7g" - }, - { - "title": "All I Want For Christmas: Justin Bieber & Mariah Carey", - "id": "Karaoke with lyrics" - }, - { - "title": "Elvis Presley - Blue Christmas (Karaoke With Lyrics)", - "id": "YWcVrKeOVY8" - }, - { - "title": "You're A Mean One, Mr. Grinch in the Style of \"Thurl Ravenscroft\" with lyrics (no lead vocal)", - "id": "CTYcY7af7Vg" - }, - { - "title": "Have Yourself A Merry Little Christmas in the Style of \"Martina McBride\" with lyrics (no lead vocal)", - "id": "3L7uZhxY3r0" - }, - { - "title": "Boogie Woogie Santa Claus in the Style of \"The Brian Setzer Orchestra\" with lyrics (no lead vocal)", - "id": "do8YmQFL4eI" - }, - { - "title": "God Love Her in the Style of \"Toby Keith\" karaoke video with lyrics (no lead vocal)", - "id": "7Q0hOTaXkJ4" - }, - { - "title": "Some Hearts in the Style of \"Carrie Underwood\" karaoke video with lyrics (with lead vocal)", - "id": "wHm_2THcyF4" - }, - { - "title": "Baby, It's Cold Outside (Duet) in the Style of \"Ray Charles & Betty Carter\" (no lead vocal)", - "id": "KRMDKJTRb8A" - }, - { - "title": "#1 Crush in the Style of \"Garbage\" karaoke video with lyrics (with lead vocal)", - "id": "KQK-VDBZtVI" - }, - { - "title": "#1 Crush in the Style of \"Garbage\" karaoke video with lyrics (no lead vocal)", - "id": "kmcZKFhMbhY" - }, - { - "title": "I'm Gonna Miss Her in the Style of \"Brad Paisley\" karaoke video with lyrics (no lead vocal)", - "id": "tU1aEoA7eCs" - }, - { - "title": "Some Hearts in the Style of \"Carrie Underwood\" karaoke video with lyrics (no lead vocal)", - "id": "H3Dvivflr4E" - }, - { - "title": "Baby, It's Cold Outside (Duet) in the Style of \"Ray Charles & Betty Carter\" (with lead vocal)", - "id": "yL_o__nTTHA" - }, - { - "title": "I'm Gonna Miss Her in the Style of \"Brad Paisley\" karaoke video with lyrics (with lead vocal)", - "id": "vXfMfBY0QVI" - }, - { - "title": "Have Yourself A Merry Little Christmas in the Style of \"Perry Como\" with lyrics (no lead vocal)", - "id": "4JL-Ag4Pe94" - }, - { - "title": "JINGLE BELLS Traditional Song (Karaoke With Lyrics)", - "id": "20k80CLK1w0" - }, - { - "title": "Blue Eyes Crying In The Rain in the Style of \"Willie Nelson\" with lyrics (no lead vocal)", - "id": "HXQ7XqcQMm8" - }, - { - "title": "Ribbon In The Sky in the Style of \"Stevie Wonder\" karaoke video with lyrics (no lead vocal)", - "id": "7ntM_oNTis0" - }, - { - "title": "Here Comes Santa Claus in the Style of \"Elvis Presley\" karaoke video with lyrics (no lead vocal)", - "id": "BgMNOIOyjyQ" - }, - { - "title": "Just Might (Make Me Believe) in the Style of \"Sugarland\" karaoke video with lyrics (no lead vocal)", - "id": "ZQT5Ye7oMH4" - }, - { - "title": "Heartbreaker in the Style of \"Pat Benatar\" karaoke video with lyrics (no lead vocal)", - "id": "LLS3hGad4jM" - }, - { - "title": "Your Love in the Style of \"Nicki Minaj\" karaoke video with lyrics (no lead vocal)", - "id": "7rnjIuZNXxw" - }, - { - "title": "Ridin' Solo in the Style of \"Jason Derulo\" karaoke video with lyrics (no lead vocal)", - "id": "fpbz0aAoG-0" - }, - { - "title": "(You Drive Me) Crazy in the Style of \"Britney Spears\" karaoke video with lyrics (no lead vocal)", - "id": "a1evHn0eSOQ" - }, - { - "title": "(You Drive Me) Crazy in the Style of \"Britney Spears\" karaoke video with lyrics (with lead vocal)", - "id": "KRyXDkW4A7I" - }, - { - "title": "How Do I Live in the Style of \"Trisha Yearwood\" karaoke video with lyrics (no lead vocal)", - "id": "p91kwlSbCNI" - }, - { - "title": "Your Love in the Style of \"Nicki Minaj\" karaoke video with lyrics (with lead vocal)", - "id": "kmiQn-kSVhI" - }, - { - "title": "Heartbreaker in the Style of \"Pat Benatar\" karaoke video with lyrics (with lead vocal)", - "id": "5qBeyAeB0ME" - }, - { - "title": "Long Black Train in the Style of \"Josh Turner\" karaoke video with lyrics (no lead vocal)", - "id": "kw9TWkVE8Mw" - }, - { - "title": "Wherever You Will Go (Radio Version) in the Style of \"The Calling\" with lyrics (with lead vocal)", - "id": "iG3AqZPh99k" - }, - { - "title": "Wherever You Will Go (Radio Version) in the Style of \"The Calling\" with lyrics (no lead vocal)", - "id": "m1uSme8TkPY" - }, - { - "title": "45 in the Style of \"Shinedown\" karaoke video with lyrics (no lead vocal)", - "id": "htlaKP5UtSw" - }, - { - "title": "1985 in the Style of \"Bowling for Soup\" karaoke video with lyrics (with lead vocal)", - "id": "g3TBRqK9Tb4" - }, - { - "title": "Let Me Go in the Style of \"3 Doors Down\" karaoke video with lyrics (no lead vocal)", - "id": "0HDmjqMX99w" - }, - { - "title": "I Am A Man Of Constant Sorrow in the Style of \"The Soggy Bottom Boys\" with lyrics (no lead vocal)", - "id": "Dx4KTykMM_M" - }, - { - "title": "1985 in the Style of \"Bowling for Soup\" karaoke video with lyrics (no lead vocal)", - "id": "IRqoNXEpoXM" - }, - { - "title": "I Am A Man Of Constant Sorrow in the Style of \"The Soggy Bottom Boys\" with lyrics (with lead vocal)", - "id": "JxIChS0HgvQ" - }, - { - "title": "Over You in the Style of \"Daughtry\" karaoke video with lyrics (no lead vocal)", - "id": "hMACTHaRsr8" - }, - { - "title": "Let Me Go in the Style of \"3 Doors Down\" karaoke video with lyrics (with lead vocal)", - "id": "JYuo9luWMZc" - }, - { - "title": "I'm Real (Radio Version) in the Style of \"Jennifer Lopez feat. Ja Rule\" with lyrics (no lead vocal)", - "id": "vuYF4FQDsh4" - }, - { - "title": "What the Hell in the Style of \"Avril Lavigne\" karaoke video with lyrics (no lead vocal)", - "id": "1A9dtcUktSY" - }, - { - "title": "What the Hell in the Style of \"Avril Lavigne\" karaoke video with lyrics (with lead vocal)", - "id": "Zg87gpsYoNA" - }, - { - "title": "In My Life in the Style of \"The Beatles\" karaoke lyrics (no lead vocal)", - "id": "fZh_tiybWJM" - }, - { - "title": "In My Life in the Style of \"The Beatles\" karaoke video with lyrics (with lead vocal)", - "id": "DQzCDImZorY" - }, - { - "title": "Rosanna in the Style of \"Toto\" karaoke video with lyrics (no lead vocal)", - "id": "jzO7wdJAk4k" - }, - { - "title": "Just Like A Pill in the Style of \"Pink\" karaoke video with lyrics (no lead vocal)", - "id": "AzJofkoPQoM" - }, - { - "title": "Rosanna in the Style of \"Toto\" karaoke video with lyrics (with lead vocal)", - "id": "Hbeeoe6VtAk" - }, - { - "title": "Locked Up (Radio Version) in the Style of \"Akon feat. Styles\" with lyrics (no lead vocal)", - "id": "UOD3pZ4QJms" - }, - { - "title": "Just Like A Pill in the Style of \"Pink\" karaoke video with lyrics (with lead vocal)", - "id": "GS8YJRO7zhc" - }, - { - "title": "You're Not Sorry in the Style of \"Taylor Swift\" karaoke video with lyrics (no lead vocal)", - "id": "65_Dg1AxMWI" - }, - { - "title": "Alcohol in the Style of \"Brad Paisley\" karaoke video with lyrics (no lead vocal)", - "id": "iNYfTgybcDI" - }, - { - "title": "Alcohol in the Style of \"Brad Paisley\" karaoke video with lyrics (with lead vocal)", - "id": "OwL2jGZQvno" - }, - { - "title": "She's Not There in the Style of \"The Zombies\" karaoke video with lyrics (no lead vocal)", - "id": "7eIH8VGntJM" - }, - { - "title": "I Need You (Duet) in the Style of \"Tim McGraw & Faith Hill\" with lyrics (no lead vocal)", - "id": "AKxLfViJyNE" - }, - { - "title": "Where Could I Go But To The Lord in the Style of \"Elvis Presley\" with lyrics (no lead vocal)", - "id": "5gEGUAfeyeQ" - }, - { - "title": "Where Could I Go But To The Lord in the Style of \"Elvis Presley\" with lyrics (with lead vocal)", - "id": "uTFUu5oTewo" - }, - { - "title": "She's Not There in the Style of \"The Zombies\" with lyrics (with lead vocal)", - "id": "WHVr7z-aPjI" - }, - { - "title": "Blue Suede Shoes by Elvis Presley - Karaoke video with lyrics (no lead vocal)", - "id": "kP3uWmARb5c" - }, - { - "title": "Not Fair in the Style of \"Lily Allen\" karaoke video with lyrics (no lead vocal)", - "id": "ywYudf81R4A" - }, - { - "title": "Hero (Radio Version) in the Style of \"Enrique Iglesias\" karaoke video with lyrics (no lead vocal)", - "id": "YM7iaf7Na8I" - }, - { - "title": "Secrets: OneRepublic", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "Hero (Radio Version) in the Style of \"Enrique Iglesias\" karaoke video with lyrics (with lead vocal)", - "id": "JKNM5XkFafU" - }, - { - "title": "Blue Suede Shoes in the Style of \"Elvis Presley\" karaoke video with lyrics (with lead vocal)", - "id": "0CWaNSXyvOY" - }, - { - "title": "Don't Take Your Love Away in the Style of \"Avant\" karaoke video with lyrics (no lead vocal)", - "id": "U0pxhmSEwwg" - }, - { - "title": "Toxic in the Style of \"Britney Spears\" karaoke video with lyrics (with lead vocal)", - "id": "3NZqK57D0ns" - }, - { - "title": "Ring The Alarm in the Style of \"Beyoncรฉ\" karaoke video with lyrics (no lead vocal)", - "id": "2x5ssmZfhAI" - }, - { - "title": "Charlene in the Style of \"Anthony Hamilton\" karaoke video with lyrics (with lead vocal)", - "id": "_253VzbIxU8" - }, - { - "title": "Toxic in the Style of \"Britney Spears\" karaoke video with lyrics (no lead vocal)", - "id": "2D-x2jzlSWE" - }, - { - "title": "Life Is A Highway in the Style of \"Rascal Flatts\" karaoke video with lyrics (with lead vocal)", - "id": "aFPyZtcBgoQ" - }, - { - "title": "Life Is A Highway in the Style of \"Rascal Flatts\" karaoke lyrics (no lead vocal)", - "id": "Yg6gonfSiRg" - }, - { - "title": "Uninvited in the Style of \"Alanis Morissette\" karaoke video with lyrics (no lead vocal)", - "id": "uA02vAY7ciI" - }, - { - "title": "Uninvited in the Style of \"Alanis Morissette\" with lyrics (with lead vocal)", - "id": "iHyHR6pjroM" - }, - { - "title": "We Got The Beat in the Style of \"Go-Go's\" karaoke video with lyrics (with lead vocal)", - "id": "HEa29ptXVAI" - }, - { - "title": "Stop And Stare in the Style of \"OneRepublic\" karaoke video with lyrics (no lead vocal)", - "id": "aMqJQljzGPQ" - }, - { - "title": "We Got The Beat in the Style of \"Go-Go's\" karaoke video with lyrics (no lead vocal)", - "id": "q_mgS0IB0_k" - }, - { - "title": "It's Not Unusual in the Style of \"Tom Jones\" karaoke lyrics (no lead vocal)", - "id": "1kHCFVh3cBI" - }, - { - "title": "When I Get Where I'm Going in the Style of \"Brad Paisley feat. Dolly Parton\" (no lead vocal)", - "id": "Z8mHaWmXgbE" - }, - { - "title": "When I Get Where I'm Going in the Style of \"Brad Paisley feat. Dolly Parton\" (with lead vocal)", - "id": "dwNcgy6D8Pw" - }, - { - "title": "It's Not Unusual in the Style of \"Tom Jones\" karaoke video with lyrics (with lead vocal)", - "id": "ZzWRC_V52j0" - }, - { - "title": "Close My Eyes Forever in the Style of \"Ozzy Osbourne & Lita Ford\" with lyrics (no lead vocal)", - "id": "1J0TTBClu6A" - }, - { - "title": "You Are The Sunshine Of My Life in the Style of \"Stevie Wonder\" with lyrics (with lead vocal)", - "id": "kWIoyFgF3OY" - }, - { - "title": "Save The Best For Last in the Style of \"Vanessa L. Williams\" with lyrics (no lead vocal)", - "id": "EX9kQOyeBuQ" - }, - { - "title": "You Are The Sunshine Of My Life in the Style of \"Stevie Wonder\" with lyrics (no lead vocal)", - "id": "5dPj76VIRy0" - }, - { - "title": "The Chair in the Style of \"George Strait\" karaoke video with lyrics (no lead vocal)", - "id": "OjEwurgt4yA" - }, - { - "title": "I Wanna Love You in the Style of \"Akon feat. Snoop Dogg\" karaoke video with lyrics (no lead vocal)", - "id": "uB2XgU2IaMQ" - }, - { - "title": "The Fear in the Style of \"Lily Allen\" karaoke video with lyrics (no lead vocal)", - "id": "YcKxMxZ2nTc" - }, - { - "title": "She Will Be Loved in the Style of \"Maroon 5\" karaoke video with lyrics (with lead vocal)", - "id": "i7W89E2kHbk" - }, - { - "title": "She Will Be Loved: Maroon 5", - "id": "Karaoke with lyrics" - }, - { - "title": "Have A Little Faith In Me in the Style of \"Mandy Moore\" karaoke video with lyrics (with lead vocal)", - "id": "oJZXZoZzLeY" - }, - { - "title": "Have A Little Faith In Me in the Style of \"Mandy Moore\" karaoke video with lyrics (no lead vocal)", - "id": "t017-X_f6o8" - }, - { - "title": "Creedence Clearwater Revival - Proud Mary (Karaoke with Lyrics)", - "id": "SgD4oxR1_Hw" - }, - { - "title": "Proud Mary in the Style of \"Creedence Clearwater Revival\" with lyrics (with lead vocal)", - "id": "OiBCNg-WhTA" - }, - { - "title": "The Devil Went Down To Georgia in the Style of \"Charlie Daniels Band\" karaoke lyrics (no lead vocal)", - "id": "1GgNwLyn97c" - }, - { - "title": "The Devil Went Down To Georgia in the Style of \"Charlie Daniels Band\" with lyrics (with lead vocal)", - "id": "WWGF-0tlca4" - }, - { - "title": "Rainy Days And Mondays in the Style of \"Carpenters\" karaoke video with lyrics (no lead vocal)", - "id": "SvKuK85RaRM" - }, - { - "title": "Last Night in the Style of \"Diddy feat. Keyshia Cole\" karaoke video with lyrics (no lead vocal)", - "id": "wMChjbH3e5Y" - }, - { - "title": "Cรฉline Dion - It's All Coming Back To Me Now (Karaoke With Lyrics)", - "id": "BxBjEIncjtM" - }, - { - "title": "Don't Close Your Eyes in the Style of \"Keith Whitley\" karaoke video with lyrics (with lead vocal)", - "id": "Mk_-R3T9AzA" - }, - { - "title": "Keith Whitley - Don't Close Your Eyes (Karaoke with Lyrics)", - "id": "GE_bCwzqQhQ" - }, - { - "title": "Even The Nights Are Better in the Style of \"Air Supply\" karaoke video with lyrics (no lead vocal)", - "id": "zbeWmkvq7mg" - }, - { - "title": "Even The Nights Are Better in the Style of \"Air Supply\" karaoke video with lyrics (with lead vocal)", - "id": "OREBNv0xsow" - }, - { - "title": "Hold It Against Me in the Style of \"Britney Spears\" karaoke video with lyrics (no lead vocal)", - "id": "j1-QnnR-vC4" - }, - { - "title": "You Raise Me Up (Radio Version) in the Style of \"Josh Groban\" with lyrics (no lead vocal)", - "id": "stuaXQkWIwY" - }, - { - "title": "Hero/Heroine in the Style of \"Boys Like Girls\" karaoke video with lyrics (no lead vocal)", - "id": "VjsIStDy8gE" - }, - { - "title": "A Broken Wing: Martina McBride", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "Hold It Against Me in the Style of \"Britney Spears\" karaoke video with lyrics (with lead vocal)", - "id": "s42gzIHf79k" - }, - { - "title": "Hand In My Pocket in the Style of \"Alanis Morissette\" karaoke video with lyrics (with lead vocal)", - "id": "munwPsPbvek" - }, - { - "title": "Daddy's Hands in the Style of \"Holly Dunn\" karaoke video with lyrics (no lead vocal)", - "id": "EheAcEMmtH4" - }, - { - "title": "After The Lovin' in the Style of \"Engelbert Humperdinck\" karaoke video with lyrics (with lead vocal)", - "id": "zGgXZJqV-kI" - }, - { - "title": "After The Lovin' in the Style of \"Engelbert Humperdinck\" karaoke video with lyrics (no lead vocal)", - "id": "DhDKUftFtO0" - }, - { - "title": "Sometimes in the Style of \"Britney Spears\" karaoke video with lyrics (no lead vocal)", - "id": "VyRvDec8Ss0" - }, - { - "title": "Hand In My Pocket in the Style of \"Alanis Morissette\" karaoke video with lyrics (no lead vocal)", - "id": "kQVrJKOgYF4" - }, - { - "title": "Sexy Eyes in the Style of \"Dr. Hook\" karaoke video with lyrics (no lead vocal)", - "id": "59KdA_Hil3Q" - }, - { - "title": "Daddy's Hands in the Style of \"Holly Dunn\" karaoke video with lyrics (with lead vocal)", - "id": "e4LkO6l24_k" - }, - { - "title": "Celeste Aida in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "BwXGVMJs5qo" - }, - { - "title": "Firecracker in the Style of \"Josh Turner\" karaoke video with lyrics (no lead vocal)", - "id": "6dZTX04c9T4" - }, - { - "title": "Ain't No Sunshine in the Style of \"Bill Withers\" karaoke video with lyrics (with lead vocal)", - "id": "g2DPGqLTnUU" - }, - { - "title": "Snow Patrol - Chasing Cars (Karaoke With Lyrics)", - "id": "wGJCB8nd5Bw" - }, - { - "title": "An American Trilogy in the Style of \"Elvis Presley\" karaoke video with lyrics (no lead vocal)", - "id": "CU1ZfqdGAtw" - }, - { - "title": "Celeste Aida in the Style of \"Traditional\" karaoke video with lyrics (with lead vocal)", - "id": "qRYPTaXQFV4" - }, - { - "title": "Snow Patrol - Chasing Cars (Karaoke with Lyrics)", - "id": "ckbqOTFyF1M" - }, - { - "title": "Ain't No Sunshine in the Style of \"Bill Withers\" karaoke video with lyrics (no lead vocal)", - "id": "l0u4yd5Z6Kc" - }, - { - "title": "Firecracker in the Style of \"Josh Turner\" karaoke video with lyrics (with lead vocal)", - "id": "akOKF6DotbA" - }, - { - "title": "Kiss Kiss in the Style of \"Chris Brown feat. T-Pain\" karaoke video with lyrics (with lead vocal)", - "id": "TU9SL9j8Xho" - }, - { - "title": "Kiss Kiss in the Style of \"Chris Brown feat. T-Pain\" karaoke video with lyrics (no lead vocal)", - "id": "mIsmvetnA3U" - }, - { - "title": "Love Is A Losing Game in the Style of \"Amy Winehouse\" karaoke video with lyrics (no lead vocal)", - "id": "Q8fDgr7Jy5Q" - }, - { - "title": "(Night Time Is) The Right Time in the Style of \"Ray Charles\" with lyrics (no lead vocal)", - "id": "1tTTsZWn6OM" - }, - { - "title": "Tears Dry On Their Own in the Style of \"Amy Winehouse\" karaoke video with lyrics (no lead vocal)", - "id": "rb4NPORJg2k" - }, - { - "title": "The Carpenters - Top Of The World (Karaoke With Lyrics)", - "id": "LxKPsEefblc" - }, - { - "title": "Top Of The World in the Style of \"Carpenters\" karaoke video with lyrics (with lead vocal)", - "id": "PDAaArbnuSU" - }, - { - "title": "I Want It That Way in the Style of \"Backstreet Boys\" karaoke video with lyrics (with lead vocal)", - "id": "fYlaRnh10bw" - }, - { - "title": "A Hard Day's Night in the Style of \"The Beatles\" karaoke video with lyrics (with lead vocal)", - "id": "TvPelD39D2U" - }, - { - "title": "I'm A Slave 4 U in the Style of \"Britney Spears\" karaoke video with lyrics (no lead vocal)", - "id": "ke2pMbcHxfA" - }, - { - "title": "A Hard Day's Night in the Style of \"The Beatles\" karaoke video with lyrics (no lead vocal)", - "id": "k_OkwRJ4UpM" - }, - { - "title": "I Want It That Way in the Style of \"Backstreet Boys\" karaoke video with lyrics (no lead vocal)", - "id": "kXXQVir7yTw" - }, - { - "title": "Always Be My Baby in the Style of \"Mariah Carey\" karaoke video with lyrics (no lead vocal)", - "id": "dhgkVlm4aWE" - }, - { - "title": "Stronger in the Style of \"Britney Spears\" karaoke video with lyrics (no lead vocal)", - "id": "jIwa6QUpWzo" - }, - { - "title": "Behind Blue Eyes in the Style of \"The Who\" karaoke video with lyrics (no lead vocal)", - "id": "3eC3dCw_UWk" - }, - { - "title": "Stronger in the Style of \"Britney Spears\" karaoke video with lyrics (with lead vocal)", - "id": "VAlepP7alNQ" - }, - { - "title": "Behind Blue Eyes in the Style of \"The Who\" karaoke video with lyrics (with lead vocal)", - "id": "wW27nC_dRVo" - }, - { - "title": "Santeria in the Style of \"Sublime\" karaoke video with lyrics (no lead vocal)", - "id": "DEYc9CFmncM" - }, - { - "title": "Heartbreak Hotel in the Style of \"Elvis Presley\" karaoke video with lyrics (no lead vocal)", - "id": "501RyZxCXgo" - }, - { - "title": "Together Again in the Style of \"Emmylou Harris\" karaoke video with lyrics (no lead vocal)", - "id": "VR8EeQlsiG4" - }, - { - "title": "Cyndi Lauper - True Colors (Karaoke With Lyrics)", - "id": "1WDSUKbzYzY" - }, - { - "title": "Can't Buy Me Love: The Beatles", - "id": "Karaoke with lyrics (with lead vocal)" - }, - { - "title": "Ode To My Family in the Style of \"The Cranberries\" karaoke video with lyrics (with lead vocal)", - "id": "ZnQQ1zK4VQo" - }, - { - "title": "Can't Buy Me Love: The Beatles", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "Ode To My Family by The Cranberries - Karaoke video with lyrics (no lead vocal)", - "id": "3Z7zXWKnF-c" - }, - { - "title": "Loser in the Style of \"3 Doors Down\" karaoke video with lyrics (with lead vocal)", - "id": "B_KOvRbd9Z8" - }, - { - "title": "Loser in the Style of \"3 Doors Down\" karaoke video with lyrics (no lead vocal)", - "id": "F-3uj2F-RBc" - }, - { - "title": "The Way We Were in the Style of \"Barbra Streisand\" karaoke video with lyrics (no lead vocal)", - "id": "nSte5gJ685I" - }, - { - "title": "Born To Be Wild in the Style of \"Steppenwolf\" karaoke video with lyrics (no lead vocal)", - "id": "QwbFVDwNcsc" - }, - { - "title": "Angel in the Style of \"Shaggy & Rayvon\" karaoke video with lyrics (no lead vocal)", - "id": "-I-wr1u0r3c" - }, - { - "title": "Don McLean - American Pie (Karaoke with Lyrics)", - "id": "sGCVp73RjxQ" - }, - { - "title": "Candle In The Wind in the Style of \"Elton John\" karaoke video with lyrics (no lead vocal)", - "id": "uM7J98XFcaI" - }, - { - "title": "Friends In Low Places (Studio Version) in the Style of \"Garth Brooks\" karaoke lyrics (no lead vocal)", - "id": "wDzfoQIa_ZY" - }, - { - "title": "\"In The Air Tonight\" - Phil Collins", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "A Woman's Worth in the Style of \"Alicia Keys\" karaoke video with lyrics (no lead vocal)", - "id": "s_aU9u6VqI4" - }, - { - "title": "The Wonder Of You in the Style of \"Elvis Presley\" karaoke video with lyrics (with lead vocal)", - "id": "zEDR-kto08I" - }, - { - "title": "Elvis Presley - The Wonder Of You (Karaoke with Lyrics)", - "id": "t-4ZMeWR1S8" - }, - { - "title": "Aretha Franklin - Respect (Karaoke with Lyrics)", - "id": "dLEa9c0-C3Y" - }, - { - "title": "Fancy in the Style of \"Reba McEntire\" karaoke video with lyrics (with lead vocal)", - "id": "QiVEKvJ_P8c" - }, - { - "title": "Fancy in the Style of \"Reba McEntire\" karaoke video with lyrics (no lead vocal)", - "id": "Zf6B0GceRjs" - }, - { - "title": "Help! in the Style of \"The Beatles\" karaoke video with lyrics (no lead vocal)", - "id": "avnVW9frwLE" - }, - { - "title": "Help! in the Style of \"The Beatles\" karaoke video with lyrics (with lead vocal)", - "id": "DAUlZYAF5oY" - }, - { - "title": "Shape Of My Heart in the Style of \"Backstreet Boys\" karaoke video with lyrics (with lead vocal)", - "id": "sGrgQM2Ym1k" - }, - { - "title": "Shape Of My Heart in the Style of \"Backstreet Boys\" karaoke video with lyrics (no lead vocal)", - "id": "Wt_ruR9jVeE" - }, - { - "title": "Just Dance in the Style of \"Lady Gaga feat. Colby O'Donis\" karaoke video with lyrics (no lead vocal)", - "id": "yDpJbzzm_TA" - }, - { - "title": "Just Dance in the Style of \"Lady Gaga feat. Colby O'Donis\" with lyrics (with lead vocal)", - "id": "wbGzMRU3VFk" - }, - { - "title": "Coming Home in the Style of \"Diddy - Dirty Money feat. Skylar Grey\" with lyrics (no lead vocal)", - "id": "dcKCbLngWas" - }, - { - "title": "When You Say Nothing At All in the Style of \"Alison Krauss & Union Station\" (no lead vocal)", - "id": "z-kzKOaK3-s" - }, - { - "title": "Pretty Good at Drinking Beer in the Style of \"Billy Currington\" with lyrics (with lead vocal)", - "id": "TvrRKi3qnUA" - }, - { - "title": "Pretty Good at Drinking Beer in the Style of \"Billy Currington\" with lyrics (no lead vocal)", - "id": "9hGS6w3kl4g" - }, - { - "title": "Hit Me With Your Best Shot: Pat Benatar", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "E lucevan le stelle in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "W8_6NApHMaU" - }, - { - "title": "Poison in the Style of \"Alice Cooper\" karaoke video with lyrics (no lead vocal)", - "id": "YYncOcyMfhc" - }, - { - "title": "Jump Then Fall in the Style of \"Taylor Swift\" karaoke video with lyrics (no lead vocal)", - "id": "gaDRziGyAM4" - }, - { - "title": "Madonna - Like A Virgin (Karaoke With Lyrics)", - "id": "MwX-z5hWmjY" - }, - { - "title": "Lookin' Out My Back Door in the Style of \"Creedence Clearwater Revival\" with lyrics (no lead vocal)", - "id": "eSZzalXOdNs" - }, - { - "title": "The Safety Dance in the Style of \"Men Without Hats\" karaoke video with lyrics (no lead vocal)", - "id": "O1c8-Wkkhw0" - }, - { - "title": "The Safety Dance in the Style of \"Men Without Hats\" karaoke video with lyrics (with lead vocal)", - "id": "kJW1S7DppDw" - }, - { - "title": "We've Only Just Begun in the Style of \"Carpenters\" karaoke video with lyrics (with lead vocal)", - "id": "lJ1fk4HZrow" - }, - { - "title": "California Dreamin' in the Style of \"The Mamas & The Papas\" with lyrics (no lead vocal)", - "id": "paTYxzcjOBU" - }, - { - "title": "I Don't Want To Miss A Thing in the Style of \"Mark Chesnutt\" karaoke lyrics (no lead vocal)", - "id": "oGjNad5_Wk4" - }, - { - "title": "All You Need Is Love by The Beatles - Karaoke video with lyrics (no lead vocal)", - "id": "mux93MqA45w" - }, - { - "title": "Extreme - More Than Words (Karaoke with Lyrics)", - "id": "svzLPvd6b9k" - }, - { - "title": "We've Only Just Begun in the Style of \"Carpenters\" karaoke video with lyrics (no lead vocal)", - "id": "rWVAHXMISKU" - }, - { - "title": "Ironic in the Style of \"Alanis Morissette\" karaoke video with lyrics (with lead vocal)", - "id": "eg9yb9v2cho" - }, - { - "title": "Ironic in the Style of \"Alanis Morissette\" karaoke video with lyrics (no lead vocal)", - "id": "ECShO3joGac" - }, - { - "title": "Lately in the Style of \"Stevie Wonder\" karaoke video with lyrics (no lead vocal)", - "id": "vwRfiPO0630" - }, - { - "title": "Der Hรถlle Rache in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "trbnZ8NHDgw" - }, - { - "title": "Name in the Style of \"Goo Goo Dolls\" karaoke video with lyrics (no lead vocal)", - "id": "zpzldORuX7g" - }, - { - "title": "Der Hรถlle Rache in the Style of \"Traditional\" with lyrics (with lead vocal)", - "id": "HxsX-yVRJ9c" - }, - { - "title": "Che gelida manina in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "NdepbNdYs18" - }, - { - "title": "Listen To Your Heart (Unplugged Version) in the Style of \"D.H.T.\" with lyrics (no lead vocal)", - "id": "HYQAWgoFKH4" - }, - { - "title": "Che gelida manina in the Style of \"Traditional\" karaoke video with lyrics (with lead vocal)", - "id": "I8nx1QN21ec" - }, - { - "title": "The Gambler in the Style of \"Kenny Rogers\" karaoke video with lyrics (with lead vocal)", - "id": "l8bJOwbILts" - }, - { - "title": "The Gambler in the Style of \"Kenny Rogers\" karaoke video with lyrics (no lead vocal)", - "id": "DcbJbCjvdZg" - }, - { - "title": "Take On Me in the Style of \"a-ha\" karaoke video with lyrics (no lead vocal)", - "id": "82ND_6aPyEM" - }, - { - "title": "Take On Me in the Style of \"a-ha\" with lyrics (with lead vocal)", - "id": "mvaA6iJDxb4" - }, - { - "title": "Some Beach in the Style of \"Blake Shelton\" karaoke video with lyrics (no lead vocal)", - "id": "qNo4rOw9ST8" - }, - { - "title": "Adele - Rolling In The Deep (Karaoke with Lyrics)", - "id": "SRn4Fh47kok" - }, - { - "title": "Party Rock Anthem in the Style of \"LMFAO\" karaoke video with lyrics (no lead vocal)", - "id": "0WM9Amg7F5s" - }, - { - "title": "Water in the Style of \"Brad Paisley\" karaoke video with lyrics (no lead vocal)", - "id": "RkG2BG2Hfek" - }, - { - "title": "Stay in the Style of \"Hurts\" karaoke video with lyrics (no lead vocal)", - "id": "w2JPZJfOETg" - }, - { - "title": "Party Rock Anthem in the Style of \"LMFAO\" karaoke video with lyrics (with lead vocal)", - "id": "aK_YH_RmmK0" - }, - { - "title": "So Emotional in the Style of \"Whitney Houston\" karaoke video with lyrics (no lead vocal)", - "id": "vdZ9viMtsqA" - }, - { - "title": "Some Beach in the Style of \"Blake Shelton\" karaoke video with lyrics (with lead vocal)", - "id": "ClzBBHeEcOU" - }, - { - "title": "Besame Mucho in the Style of \"Traditional\" karaoke video with lyrics (with lead vocal)", - "id": "LyC3vRxIRMA" - }, - { - "title": "Good Morning Starshine in the Style of \"Hair (Broadway Version)\" karaoke lyrics (no lead vocal)", - "id": "1scquM2WMWk" - }, - { - "title": "Besame Mucho in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "n3A1kB-qQxI" - }, - { - "title": "I Feel Pretty in the Style of \"West Side Story (Movie Version)\" with lyrics (no lead vocal)", - "id": "8v4oiIrBB2I" - }, - { - "title": "I Feel Pretty in the Style of \"West Side Story (Movie Version)\" with lyrics (with lead vocal)", - "id": "wOU0d4pitNA" - }, - { - "title": "Una voce poco fa in the Style of \"Traditional\" karaoke video with lyrics (with lead vocal)", - "id": "KUEhgWtRy0Y" - }, - { - "title": "Bad Romance in the Style of \"Lady Gaga\" karaoke video with lyrics (no lead vocal)", - "id": "pyp2fnjiegU" - }, - { - "title": "Una voce poco fa in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "yeCXHXzhBPs" - }, - { - "title": "Bad Romance in the Style of \"Lady Gaga\" karaoke video with lyrics (with lead vocal)", - "id": "dneenPrZJD4" - }, - { - "title": "Check Yes Or No in the Style of \"George Strait\" karaoke video with lyrics (no lead vocal)", - "id": "DXZVCQRjXE0" - }, - { - "title": "Vissi d'arte in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "d7_wXik9M_Q" - }, - { - "title": "Check Yes Or No in the Style of \"George Strait\" with lyrics (with lead vocal)", - "id": "Pg0mjxMiARc" - }, - { - "title": "Vissi d'arte in the Style of \"Traditional\" karaoke video with lyrics (with lead vocal)", - "id": "rnt_LBS9RsU" - }, - { - "title": "Fallin' (Radio Version) in the Style of \"Alicia Keys\" karaoke video with lyrics (no lead vocal)", - "id": "Trn3KYG8Jc4" - }, - { - "title": "Mon coeur s'ouvre ร  ta voix in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "23yaIz9HKCg" - }, - { - "title": "Mon coeur s'ouvre ร  ta voix in the Style of \"Traditional\" karaoke with lyrics (with lead vocal)", - "id": "niGsTQg7N-s" - }, - { - "title": "(Sittin' On) The Dock Of The Bay in the Style of \"Otis Redding\" with lyrics (with lead vocal)", - "id": "b2-RPFlYOWM" - }, - { - "title": "Don't It Make My Brown Eyes Blue in the Style of \"Crystal Gayle\" karaoke with lyrics (no lead vocal)", - "id": "d_WmEOIP42Y" - }, - { - "title": "Caro Nome in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "ffn8BbtpNl0" - }, - { - "title": "We Belong in the Style of \"Pat Benatar\" karaoke video with lyrics (no lead vocal)", - "id": "49SArr5ursk" - }, - { - "title": "Sugar, We're Goin' Down in the Style of \"Fall Out Boy\" karaoke video with lyrics (no lead vocal)", - "id": "iFs5tw7wwuQ" - }, - { - "title": "Caro Nome in the Style of \"Traditional\" karaoke video with lyrics (with lead vocal)", - "id": "rm1DMbKDIK8" - }, - { - "title": "Otis Redding - (Sittin' On) The Dock Of The Bay (Karaoke With Lyrics)", - "id": "fcKYWDiqeUU" - }, - { - "title": "Sugar, We're Goin' Down in the Style of \"Fall Out Boy\" karaoke video with lyrics (with lead vocal)", - "id": "SuzdYcMx4JE" - }, - { - "title": "From The Bottom Of My Broken Heart in the Style of \"Britney Spears\" with lyrics (with lead vocal)", - "id": "jIAB1iqYLuE" - }, - { - "title": "Mine in the Style of \"Taylor Swift\" karaoke video with lyrics (no lead vocal)", - "id": "o8YBqnvWhVw" - }, - { - "title": "From The Bottom Of My Broken Heart in the Style of \"Britney Spears\" with lyrics (no lead vocal)", - "id": "F5kbY9AIMME" - }, - { - "title": "Voi che sapete che cosa รจ amor in the Style of \"Traditional\" karaoke with lyrics (no lead vocal)", - "id": "r-vH6UH-68g" - }, - { - "title": "Raise Your Glass in the Style of \"Pink\" karaoke video with lyrics (no lead vocal)", - "id": "zdV8rQQOGp0" - }, - { - "title": "Mine in the Style of \"Taylor Swift\" karaoke video with lyrics (with lead vocal)", - "id": "ccYU6hDGD1o" - }, - { - "title": "The Beatles - Let It Be (Karaoke with Lyrics)", - "id": "SswjdoAAJb8" - }, - { - "title": "Whitney Houston - Greatest Love Of All (Karaoke With Lyrics)", - "id": "58pTjCH2Abk" - }, - { - "title": "Cรฉline Dion - All By Myself (Karaoke With Lyrics)", - "id": "lHufESqfZXQ" - }, - { - "title": "All By Myself in the Style of \"Celine Dion\" karaoke video with lyrics (with lead vocal)", - "id": "CSbVK213aP0" - }, - { - "title": "Baby Got Back in the Style of \"Sir Mix-A-Lot\" karaoke video lyrics (no lead vocal)", - "id": "dAkHD_zrIGA" - }, - { - "title": "I Love Rock 'n' Roll in the Style of \"Joan Jett & The Blackhearts\" karaoke lyrics (no lead vocal)", - "id": "C3sGm6Jauuw" - }, - { - "title": "Ring Of Fire in the Style of \"Johnny Cash\" karaoke video with lyrics (with lead vocal)", - "id": "7MK1OlxPFhQ" - }, - { - "title": "Ring Of Fire in the Style of \"Johnny Cash\" karaoke video with lyrics (no lead vocal)", - "id": "1Ry7lMl75Vo" - }, - { - "title": "Habanera (L'amour est un oiseau rebelle)", - "id": "Karaoke with lyrics (with lead vocal)" - }, - { - "title": "Sarah McLachlan - Angel (Karaoke With Lyrics)", - "id": "Db5cXnnqtiE" - }, - { - "title": "La donna e mobile", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "La donna e mobile", - "id": "Karaoke with lyrics (with lead vocal)" - }, - { - "title": "No Air in the Style of \"Jordin Sparks & Chris Brown\" karaoke video with lyrics (no lead vocal)", - "id": "KoJacQfAB3k" - }, - { - "title": "Home in the Style of \"Daughtry\" karaoke video lyrics (no lead vocal)", - "id": "GspEFe-p_Zo" - }, - { - "title": "Iris in the Style of \"Goo Goo Dolls\" karaoke video with lyrics (no lead vocal)", - "id": "ZsW5Vgc9xuw" - }, - { - "title": "Habanera (L'amour est un oiseau rebelle)", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "Stevie Wonder - I Just Called To Say I Love You (Karaoke with Lyrics)", - "id": "NMdSb3aVGkM" - }, - { - "title": "Ring My Bell in the Style of \"Anita Ward\" karaoke video with lyrics (no lead vocal)", - "id": "29Trb-pkrH4" - }, - { - "title": "I Fall To Pieces in the Style of \"Patsy Cline\" karaoke video with lyrics (no lead vocal)", - "id": "DTCqZjWxl8E" - }, - { - "title": "A Fool Such As I in the Style of \"Elvis Presley\" karaoke video with lyrics (no lead vocal)", - "id": "hj2hQa2ynm8" - }, - { - "title": "Dynamite in the Style of \"Taio Cruz\" karaoke video with lyrics (no lead vocal)", - "id": "o80y38s2RGM" - }, - { - "title": "Girls Just Want To Have Fun in the Style of \"Cyndi Lauper\" karaoke video with lyrics (no lead vocal)", - "id": "-wNax22B4wY" - }, - { - "title": "I Don't Want To Miss A Thing in the Style of \"Aerosmith\" karaoke video with lyrics (no lead vocal)", - "id": "Y3CjJ8iQmPk" - }, - { - "title": "If You're Reading This in the Style of \"Tim McGraw\" karaoke video with lyrics (no lead vocal)", - "id": "9D3G_SHjOhc" - }, - { - "title": "LoveGame in the Style of \"Lady Gaga\" karaoke video with lyrics (no lead vocal)", - "id": "-y9rIc2CGVw" - }, - { - "title": "Forever in the Style of \"Chris Brown\" karaoke video with lyrics (no lead vocal)", - "id": "evYtKbK-3pM" - }, - { - "title": "How To Save A Life in the Style of \"The Fray\" karaoke video with lyrics (no lead vocal)", - "id": "JjzWGI8X55g" - }, - { - "title": "Creedence Clearwater Revival - Have You Ever Seen The Rain (Karaoke with Lyrics)", - "id": "P9UUrX4lwPk" - }, - { - "title": "Michael Jackson - You Are Not Alone (Karaoke With Lyrics)", - "id": "za8tMANFyXI" - }, - { - "title": "Could I Have This Kiss Forever (Duet) in the Style of \"Whitney Houston feat. Enrique Iglesias\"", - "id": "jhQNFQttbPQ" - }, - { - "title": "Dreamer in the Style of \"Ozzy Osbourne\" with lyrics (no lead vocal)", - "id": "LQC8i8Xlwrs" - }, - { - "title": "(I've Had) The Time Of My Life (Duet): Bill Medley & Jennifer Warnes", - "id": "Karaoke with lyrics" - }, - { - "title": "O Holy Night in the Style of \"Celine Dion\" karaoke video with lyrics (no lead vocal)", - "id": "Tm7XMQlzCqM" - }, - { - "title": "Son-Of-A Preacher Man in the Style of \"Dusty Springfield\" karaoke video with lyrics", - "id": "8y5YzpTHBok" - }, - { - "title": "How Am I Supposed To Live Without You in the Style of \"Michael Bolton\" karaoke video with lyrics", - "id": "pCGT9U7KeJc" - }, - { - "title": "I Believe I Can Fly: R. Kelly", - "id": "Karaoke with lyrics" - }, - { - "title": "Always On My Mind in the Style of \"Elvis Presley\" karaoke video with lyrics no lead vocal", - "id": "edxtF-W81KY" - }, - { - "title": "Sister Act 2 - Oh Happy Day (Karaoke With Lyrics)", - "id": "fKR-aQ0UglY" - }, - { - "title": "Amazing Grace in the Style of \"Traditional\" karaoke video with lyrics (no lead vocal)", - "id": "ZsXBZPWhPRs" - }, - { - "title": "God Bless The U.S.A. in the Style of \"Lee Greenwood\" karaoke video with lyrics (no lead vocal)", - "id": "TmBMCYXtxPU" - }, - { - "title": "Out Here On My Own in the style of Irene Cara karaoke video with lyrics (no lead vocal)", - "id": "3MspfyxCIZM" - }, - { - "title": "Save a Horse (Ride a Cowboy) in the style of \"Big & Rich\" karaoke video with lyrics", - "id": "6c9HaM-_kiE" - }, - { - "title": "Since U Been Gone in the style of \"Kelly Clarkson\" karaoke video with lyrics", - "id": "4nTcu5WtTZM" - }, - { - "title": "Cowboy Casanova in the style of \"Carrie Underwood\" karaoke video with lyrics", - "id": "MIlc2uswPto" - }, - { - "title": "Change The World in the style of \"Eric Clapton\" karaoke video with lyrics", - "id": "1ONCX95fb7o" - }, - { - "title": "Say Hey (I Love You) in the style of \"Michael Franti & Spearhead & Cherine Anderson\" karaoke video", - "id": "6JkQtZ0PDKM" - }, - { - "title": "Who Knew in the style of \"Pink\" karaoke video with lyrics (no lead vocal)", - "id": "6vMR7DdKQfk" - }, - { - "title": "Run It! in the style of \"Chris Brown\" karaoke video with lyrics (no lead vocal)", - "id": "fTYaFQdefMA" - }, - { - "title": "Battlefield in the style of \"Jordin Sparks\" karaoke video with lyrics (no lead vocal)", - "id": "LRJP_gHlGMk" - }, - { - "title": "Smoke Gets In Your Eyes in the style of \"The Platters\" karaoke video with lyrics (no lead vocal)", - "id": "bKB-QziMF8s" - }, - { - "title": "Stand By Me in the style of \"Ben E. King\" karaoke video with lyrics (no lead vocal)", - "id": "tWO88Hz5gbI" - }, - { - "title": "Karaoke Opera Montreal 2010 Pride Celebrations", - "id": "aK3ei1MwX4k" - }, - { - "title": "Folsom Prison Blues in the style of \"Johnny Cash\" with lyrics (no lead vocal)", - "id": "2MyLh9o2c04" - }, - { - "title": "Ke$ha- Tik Tok (Karaoke With Lyrics)", - "id": "y9x7qt9QNno" - }, - { - "title": "The Lady In Red in the style of \"Chris DeBurgh\" karaoke video with lyrics (no lead vocal)", - "id": "uD5yCuYuEEE" - }, - { - "title": "American Honey in the style of \"Lady Antebellum\" karaoke video with lyrics (no lead vocal)", - "id": "2U1lBWcYtgg" - }, - { - "title": "One Time in the style of \"Justin Bieber\" karaoke video with lyrics (no lead vocal)", - "id": "u3vljZYcrb4" - }, - { - "title": "Fifteen: Taylor Swift", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "Alejandro in the style of \"Lady Gaga\" karaoke video with lyrics (no lead vocal)", - "id": "OEaUKIFMilw" - }, - { - "title": "Womanizer in the style of \"Britney Spears\" karaoke video with lyrics (no lead vocal)", - "id": "ONGF2BZ_hsQ" - }, - { - "title": "Last Name in the style of \"Carrie Underwood\" karaoke video style with lyrics no lead vocal", - "id": "pLQ-KbFGj5s" - }, - { - "title": "Fire Burning in the style of \"Sean Kingston\" karaoke video with lyrics", - "id": "4sb5diW6AZA" - }, - { - "title": "Funny Karaoke Video by the Karaoke Boys singing Fun Fun Fun in the style of The Beach Boys", - "id": "YPYB2a3Pocc" - }, - { - "title": "Telephone - Lady Gaga", - "id": "KARAOKE WITH LYRICS" - }, - { - "title": "Time for Miracles in the style of \"Adam Lambert\" karaoke video version with lyrics", - "id": "J0xGHLfSLrE" - }, - { - "title": "Me And Bobby McGee in the style of \"Janis Joplin\" karaoke video with lyrics", - "id": "mCKGrnbWsF0" - }, - { - "title": "Replay in the style of \"Iyaz\" karaoke video version with lyrics (no lead vocal)", - "id": "NfcROj5CYX8" - }, - { - "title": "Starstrukk in the style of \"3OH!3\" karaoke video with lyrics", - "id": "fAwa5EsJd_M" - }, - { - "title": "Opera Karaoke - La Nuit Blanche de Montreal 2010", - "id": "s6uqJqHEIl8" - }, - { - "title": "Foreigner - I Want To Know What Love Is (Karaoke With Lyrics)", - "id": "7K9UEh1eoAs" - }, - { - "title": "You Win My Love in the style of Shania Twain, karaoke video version with lyrics", - "id": "WoStBoy01rE" - }, - { - "title": "I Turn To You in the style of Christina Aguilera, karaoke video version with lyrics", - "id": "0Bl2UF0DKT8" - }, - { - "title": "Baby By Me in the style of 50 Cent karaoke video version with lyrics", - "id": "Linh7RB1gZg" - }, - { - "title": "Kiss A Girl in the style of Keith Urban karaoke video track with lyrics", - "id": "HysLkkGh39U" - }, - { - "title": "Russian Roulette in the style of Rihanna karaoke video version with lyrics", - "id": "w8PPg8pIrTQ" - }, - { - "title": "Wild Horses in the style of The Rolling Stones karaoke version with lyrics", - "id": "_297blZxrc4" - }, - { - "title": "How Great Thou Art in the style of Traditional karaoke video", - "id": "5VnAjwBVQTs" - }, - { - "title": "Auld Lang Syne in the style of Traditional karaoke video version with lyrics", - "id": "EOiVmwOOXwE" - }, - { - "title": "Daydream Believer in the style of The Monkees karaoke video with lyrics (no lead vocal)", - "id": "rM2_2y3t6d4" - }, - { - "title": "Fireflies in the style of Owl City, karaoke video with lyrics, no lead vocal", - "id": "xjF3IlDa1Ls" - }, - { - "title": "3 in the style of Britney Spears karaoke video with lyrics", - "id": "b2DpS3Y2gLk" - }, - { - "title": "New Videos Demo Reel", - "id": "b2HsDh4zTqM" - }, - { - "title": "Sweet Dreams in the style of Beyonce karaoke video version", - "id": "8hZmmoI4K2Q" - }, - { - "title": "Sex On Fire in the style of Kings Of Leon karaoke video with lyrics", - "id": "RiUCrkYbIzg" - }, - { - "title": "Radar in the style of Britney Spears karaoke video version with lyrics", - "id": "Yr8pAedMYwg" - }, - { - "title": "Karaoke of Mony, Mony (Live) in the style of Billy Idol", - "id": "dqnmarrTuK4" - }, - { - "title": "Halo karaoke video in the style of Beyoncรฉ karaoke video with lyrics (no lead vocal)", - "id": "GuOye1zkJIw" - }, - { - "title": "Bubbly in the style of Colbie Caillat karaoke video", - "id": "4Fp3_zzIZig" - }, - { - "title": "Handy Man: James Taylor", - "id": "Karaoke with lyrics" - }, - { - "title": "Blue Christmas in the style of Sheryl Crow singalong karaoke video lyrics", - "id": "G_RjuB7ka9s" - }, - { - "title": "Hava Nagila in the style of Traditional karaoke video track with scrolling lyrics", - "id": "NQtaLIEw8E8" - }, - { - "title": "Kings Of Leon - Use Somebody (Karaoke With Lyrics)", - "id": "eDJvl8J0j-0" - }, - { - "title": "Lady Karaoke sings Poker Face in the style of Lady GaGa", - "id": "KWY-Ve589Oo" - }, - { - "title": "Danthe performs Burning Love in the style of Elvis", - "id": "BLobShd_0mg" - }, - { - "title": "Is She Really Going Out With Him? in the style of Joe Jackson karaoke video with lyrics", - "id": "3ux1Z57j8oc" - }, - { - "title": "I Left My Heart In San Francisco in the style of Tony Bennett karaoke video with lyrics", - "id": "844Xo0omhO8" - }, - { - "title": "Yellow Rose Of Texas in the style of Mitch Miller & His Orchestra And Chorus karaoke video", - "id": "e1LslMh_KI8" - }, - { - "title": "I Do in the style of Lisa Loeb karaoke video with lyrics (no lead vocal)", - "id": "1LhSUWFrJMA" - }, - { - "title": "Alicia Keys - If I Ain't Got You (Karaoke with Lyrics)", - "id": "YhV-SF8jeHc" - }, - { - "title": "Yesterday Once More in the style of Carpenters karaoke video", - "id": "NGk-9WqmOQY" - }, - { - "title": "Love Story in the style of Taylor Swift karaoke Video", - "id": "XnQbyr5vkFc" - }, - { - "title": "...Baby One More Time in the style of Britney Spears karaoke video", - "id": "Tr1ZHg-zU3E" - }, - { - "title": "Savez-vous planter les choux? in the style of Traditionnel karaoke video", - "id": "RVLdeGjA0Ew" - }, - { - "title": "I Fall To Pieces in the style of LeAnn Rimes karaoke video", - "id": "GU2BpLXwMGo" - }, - { - "title": "Making Memories Of Us in the style of Keith Urban karaoke video with lyrics", - "id": "a8rrtT1a8zs" - }, - { - "title": "Lips Of An Angel in the style of Hinder karaoke video with lyrics", - "id": "f5a9cj-nD5I" - }, - { - "title": "You Give Good Love in the style of Whitney Houston karaoke video version", - "id": "miRSyw0qfKU" - }, - { - "title": "Karaoke Kings sing Burning Love in the style of Elvis", - "id": "DwTr87dhefs" - }, - { - "title": "Gives You Hell: The All-American Rejects", - "id": "Karaoke with lyrics" - }, - { - "title": "Lynyrd Skynyrd - Simple Man (Karaoke with Lyrics)", - "id": "I_B-pwD-rLw" - }, - { - "title": "Fantasy in the style of Earth, Wind & Fire karaoke video version with lyrics", - "id": "S_6flEif07A" - }, - { - "title": "Goodbye To Love in the style of Carpenters karaoke video lyrics", - "id": "MaYpuUR0594" - }, - { - "title": "I Fought The Law in the style of Green Day karaoke video with lyrics", - "id": "BXxahDRkjTo" - }, - { - "title": "This Train Don't Stop There Anymore in the style of Elton John karaoke video", - "id": "NbeUHldDU3M" - }, - { - "title": "Si No Te Hubiera Conocido in the style of Luis Fonsi karaoke video duet with lyrics", - "id": "Mrb_3EUi09s" - }, - { - "title": "She's Not The Cheatin' Kind in the style of Brooks & Dunn karaoke video singalong with lyrics", - "id": "a5gq4-SrgSI" - }, - { - "title": "Dream Police in the style of Cheap Trick karaoke video", - "id": "U7mSRAUXX4w" - }, - { - "title": "Macarthur Park in the style of Donna Summer karaoke video with lyrics", - "id": "gmfEV5KSHwk" - }, - { - "title": "I Drove All Night in the style of Celine Dion, karaoke video with lyrics", - "id": "RdaLG-nwx8E" - }, - { - "title": "Frank Sinatra - That's Life (Karaoke with Lyrics)", - "id": "hYsLfEUSUY8" - }, - { - "title": "The KARAOKE Channel", - "id": "rILoaAjwgik" - }, - { - "title": "It's Not My Time in the style of 3 Doors Down karaoke video with lyrics", - "id": "NX-aJnX40pw" - }, - { - "title": "Word Up in the style of Cameo karaoke video", - "id": "iuWP3vI-jVw" - }, - { - "title": "Could I Have This Dance in the style of Anne Murray karaoke video with lyrics", - "id": "9tCzU6AlTnA" - }, - { - "title": "What's My Age Again? in the style of Blink 182 karaoke video with lyrics", - "id": "fZV5WQd9dzA" - }, - { - "title": "La Paloma in the style of Traditional singalong karaoke video with lyrics", - "id": "_dP_rdhktU8" - }, - { - "title": "I'm Like A Bird in the style of Nelly Furtado karaoke video with lyrics no lead vocal", - "id": "SyBaHvh3FIo" - }, - { - "title": "When Irish Eyes Are Smiling in the style of Traditional karaoke video with lyrics (no lead vocal)", - "id": "oGwCHCmkG1U" - }, - { - "title": "Hanginaround in the style of Counting Crows karaoke video with lyrics (no lead vocal)", - "id": "R3rsVC92vys" - }, - { - "title": "Somebody's Watching Me in the style of Rockwell karaoke video", - "id": "d7gCNZpobwE" - }, - { - "title": "El รšltimo Adiรณs: Paulina Rubio", - "id": "Karaoke with lyrics" - }, - { - "title": "Crazy Bitch (Radio Version) in the style of Buckcherry karaoke video with lyrics no lead vocal", - "id": "UZVg0dqQOGQ" - }, - { - "title": "Fancy in the style of Reba McEntire karaoke video with scrolling lyrics", - "id": "AHjLG1eoys4" - }, - { - "title": "I'm Bad in the style of LL Cool J karaoke video with lyrics", - "id": "nDOtmWpxWeo" - }, - { - "title": "Can't Smile Without You in the style of Barry Manilow karaoke video with lyrics", - "id": "lYd58fpaEws" - }, - { - "title": "Tired Of Being Sorry in the style of Enrique Iglesias karaoke video with lyrics", - "id": "TFm_GJq9J-0" - }, - { - "title": "Another Day In Paradise in the style of Phil Collins karaoke video with lyrics", - "id": "4w9fJqqt_40" - }, - { - "title": "Alcohol in the style of Brad Paisley karaoke video", - "id": "xVpyng65qr0" - }, - { - "title": "SOS in the style of Jonas Brothers karaoke video with lyrics (no lead vocal track)", - "id": "e6iLX_NrpQI" - }, - { - "title": "Shake It in the style of Metro Station karaoke video with lyrics no lead vocal", - "id": "tWILZafSDKc" - }, - { - "title": "This Ain't A Scene, It's An Arms Race in the style of Fall Out Boy karaoke video", - "id": "gyZm196nFXA" - }, - { - "title": "Tim McGraw in the style of Taylor Swift karaoke video sing-along with lyrics", - "id": "OQYzx7mYGy4" - }, - { - "title": "God Is A Dj in the style of Pink karaoke video with lyrics", - "id": "i0oc_Hp8P0A" - }, - { - "title": "Alfie in the style of Lily Allen karaoke video", - "id": "bbFxLCBVvdA" - }, - { - "title": "Quรญtame Ese Hombre in the style of Pilar Montenegro karaoke video with lyrics", - "id": "xcs5Iaf56f4" - }, - { - "title": "Leavin' On Your Mind in the style of Patsy Cline karaoke video singalong lyrics", - "id": "4C5F66t-Hq0" - }, - { - "title": "Te Ofrezco Un Corazรณn in the style of Banda El Recodo karaoke video", - "id": "YDOi1KQut8g" - }, - { - "title": "Row, Row, Row Your Boat (Round Version) in the style of Traditional karaoke video", - "id": "-3YjBP5MYTY" - }, - { - "title": "Oh! Susanna in the style of Traditional, karaoke video for kids", - "id": "ABlLql1VZio" - }, - { - "title": "I Wanna Love You Forever in the style of Jessica Simpson karaoke video", - "id": "DyAP6OaAjrk" - }, - { - "title": "I'm Still A Guy in the style of Brad Paisley karaoke video with lyrics", - "id": "_4oHPsc5kfQ" - }, - { - "title": "I'm Just A Singer (In A Rock And Roll Band) in the style of The Moody Blues karaoke video", - "id": "vYUg0VN2gVo" - }, - { - "title": "Jennifer Hudson - And I Am Telling You I'm Not Going (Karaoke with Lyrics)", - "id": "iCOiaVKD21M" - }, - { - "title": "Calling All Angels in the style of Jane Siberry karaoke video", - "id": "6THXUyiS_3c" - }, - { - "title": "Excuse Me Miss (Radio Version) in the style of Jay-Z karaoke lyrics", - "id": "GBdjGetFugQ" - }, - { - "title": "Everywhere I Go in the style of Amy Grant karaoke version with lyrics", - "id": "Pz51Uc_ADhc" - }, - { - "title": "Bright Lights in the style of Matchbox Twenty karaoke video with lyrics", - "id": "BIn4txwxjBQ" - }, - { - "title": "Like You'll Never See Me Again in the style of Alicia Keys karaoke version with lyrics", - "id": "9YXs5qMahQ0" - }, - { - "title": "Boogie Down in the style of Al Jarreau", - "id": "1eDJQQlLubY" - }, - { - "title": "Going Back To Cali in the style of LL Cool J karaoke video with lyrics", - "id": "kK3NmHMOdU4" - }, - { - "title": "Helter Skelter in the style of The Beatles, karaoke with lyrics (no lead vocal)", - "id": "yOqOI9W8mfk" - }, - { - "title": "U Don't Have To Call in the style of Usher karaoke video with lyrics (no lead vocal)", - "id": "lLq47P8ZKno" - }, - { - "title": "When You're Gone in the style of The Cranberries karaoke video", - "id": "zWMzTEK5hEs" - }, - { - "title": "Kryptonite in the style of 3 Doors Down", - "id": "APw2kSVZeP0" - }, - { - "title": "That's The Way (I Like It) in the style of KC And The Sunshine Band karaoke", - "id": "rIj8bF5sWrM" - }, - { - "title": "Love Song in the style of Sara Bareilles", - "id": "3KNLaQhONlk" - }, - { - "title": "Your Love: The Outfield", - "id": "Karaoke with lyrics" - }, - { - "title": "Insensitive in the style of Jann Arden karaoke video with lyrics", - "id": "UhUnigsuABA" - }, - { - "title": "December, 1963 (Oh, What A Night) in the style of The 4 Seasons karaoke video", - "id": "6ebWrqcO0yI" - }, - { - "title": "Falls On Me in the style of Fuel karaoke video with lyrics", - "id": "2sCmCA7Y2Bk" - }, - { - "title": "Cat People (Putting Out The Fire) in the style of David Bowie karaoke lyrics", - "id": "8Xmwzsyq1aQ" - }, - { - "title": "Walk The Dinosaur in the style of Was (Not Was) - karaoke video duet with lyrics", - "id": "N3ALsK8KnAs" - }, - { - "title": "(I Never Promised You A) Rose Garden in the style of Martina McBride karaoke video", - "id": "ldgaujkCwTI" - }, - { - "title": "She's Not Cryin' Anymore in the style of Billy Ray Cyrus", - "id": "-SXr10NstkE" - }, - { - "title": "The Rock Show in the style of blink-182 karaoke video with lyrics", - "id": "i9U35hnYUMk" - }, - { - "title": "Poker Face in the style of Lady Gaga karaoke video with lyrics", - "id": "izxZ5uwI0Ok" - }, - { - "title": "Achy Breaky Song in the style of \"Weird\" Al Yankovic karaoke sing along with lyrics", - "id": "-O8BjDRWyEE" - }, - { - "title": "Frank Sinatra - New York, New York (Karaoke with Lyrics)", - "id": "s8lPbGlWd8A" - }, - { - "title": "Love Gun in the style of Kiss karaoke video with lyrics", - "id": "Q6BxQlY523c" - }, - { - "title": "Hush in the style of Deep Purple karaoke video with lyrics", - "id": "z1dOv3twhZc" - }, - { - "title": "Water Runs Dry in the style of Boyz II Men karaoke", - "id": "OdZTuV0oOcU" - }, - { - "title": "9 In The Afternoon in the style of Panic! At The Disco", - "id": "APUuKf_PLS0" - }, - { - "title": "Touch Me When We're Dancing in the style of Carpenters karaoke video with lyrics", - "id": "yIkJals4A3Q" - }, - { - "title": "Two Pina Coladas in the style of Garth Brooks karaoke video lyrics", - "id": "gBhP4Ko4qZQ" - }, - { - "title": "Hungry Eyes in the style of Eric Carmen karaoke video with lyrics", - "id": "IpBjma7d8r0" - }, - { - "title": "She Believes In Me in the style of Kenny Rogers karaoke video with lyrics (no lead vocal)", - "id": "BWGB0HRxb1c" - }, - { - "title": "Adele - Chasing Pavements", - "id": "LrW7Umr_5wM" - }, - { - "title": "You Learn in the style of Alanis Morissette karaoke singalong with lyrics", - "id": "9PqTn7z3eJQ" - }, - { - "title": "The Chicks (fka. The Dixie Chicks) : Goodbye Earl", - "id": "Karaoke with lyrics (no lead vocal)" - }, - { - "title": "Elton John - Sorry Seems To Be The Hardest Word (Karaoke With Lyrics)", - "id": "vI_Zc6Ngmgg" - }, - { - "title": "Every Time I Close My Eyes in the style of Babyface karaoke with lyrics", - "id": "O-zduLwTmdk" - }, - { - "title": "Madonna - Material Girl (Karaoke with Lyrics)", - "id": "Dm64sW1Q31Y" - }, - { - "title": "Rehab in the style of Amy Winehouse karaoke video with lyrics", - "id": "w42pSGRICag" - }, - { - "title": "Country Road in the style of James Taylor karaoke video", - "id": "n6jh4H6zuWE" - }, - { - "title": "America The Beautiful in the style of Traditional karaoke video with lyrics", - "id": "gOhxPoh1hpY" - }, - { - "title": "Etta James - At Last (Karaoke with Lyrics)", - "id": "qyHE5U9pLAs" - }, - { - "title": "Your Mama Don't Dance in the style of Poison karaoke video with lyrics", - "id": "jouQ2ppLzMI" - }, - { - "title": "Don't Wait in the style of Dashboard Confessional - karaoke lyrics", - "id": "7457m88pvIU" - }, - { - "title": "Don't Go Breaking My Heart in the style of Rupaul karaoke video with lyrics", - "id": "mxjVpJjayFM" - }, - { - "title": "I Write Sins Not Tragedies in the style of Panic! At The Disco karaoke video with lyrics", - "id": "kLL8wsFmfZY" - }, - { - "title": "Independent Women Part 1 in the style of Destiny's Child karaoke video with lyrics", - "id": "kIkIC4zZfis" - }, - { - "title": "Everything Is Everything in the style of Lauryn Hill", - "id": "soqFZrDLbOU" - }, - { - "title": "When I Grow Up in the style of The Pussycat Dolls karaoke video", - "id": "J0gj2DHC6-I" - }, - { - "title": "Picture To Burn in the style of Taylor Swift karaoke video with lyrics no lead vocal", - "id": "stJgR_rFmbc" - }, - { - "title": "Blue Velvet in the style of Bobby Vinton karaoke version with lyrics", - "id": "lXwpcRiJra8" - }, - { - "title": "Dixie in the style of Traditional karaoke video", - "id": "MaAODN0wF_I" - }, - { - "title": "I Need To Know in the style of Marc Anthony karaoke with lyrics", - "id": "I9ZirX9Dujc" - }, - { - "title": "Unconditional in the style of The Bravery karaoke with lyrics", - "id": "FMFL4CGIQgw" - }, - { - "title": "The Twelve Days Of Christmas in the style of Traditional karaoke video with lyrics", - "id": "oZppVhQPs4k" - }, - { - "title": "The Little Drummer Boy in the style of Bob Seger & The Silver Bullet Band", - "id": "KZZr4JQ0948" - }, - { - "title": "Nobody Does It Better in the style of Carly Simon karaoke video with lyrics", - "id": "Nisgi3GBO9Q" - }, - { - "title": "Black Horse And The Cherry Tree by K.T. Tunstall - Karaoke video", - "id": "ICfV40BUdHQ" - }, - { - "title": "Somewhere Over The Rainbow (Radio Version) in the style of Katharine McPhee karaoke video", - "id": "BIx1EqL_FR8" - }, - { - "title": "God Must Have Spent A Little More Time On You in the style of Alabama", - "id": "lAxVtnUs234" - }, - { - "title": "Three Times A Lady in the style of Commodores karaoke version with lyrics", - "id": "wCgZgkuIlgo" - }, - { - "title": "Breathe Again in the style of Toni Braxton karaoke video with lyrics", - "id": "t4lVrkFDekw" - }, - { - "title": "La Cucaracha in the style of Traditional karaoke video with lyrics", - "id": "tKhZL-FuS1o" - }, - { - "title": "Disturbia in the style of Rihanna karaoke video with lyrics", - "id": "nK7IP3eMUUs" - }, - { - "title": "Sukiyaki in the style of A Taste Of Honey karaoke version with lyrics", - "id": "xnYooQ1Ywqg" - }, - { - "title": "Jerk It Out in the style of Caesars karaoke track with lyrics (no lead vocal)", - "id": "yiIVgvFRmnQ" - }, - { - "title": "The Flesh Failures (Let The Sunshine In) in the style of Hair (Broadway Version) karaoke video", - "id": "LPQTqzzl9rU" - }, - { - "title": "You've Got The Magic Touch in the style of The Platters karaoke video", - "id": "x7eCkWPpJVk" - }, - { - "title": "Jolly Old Saint Nicholas in the style of Traditional karaoke video with lyrics", - "id": "yaLQZB3n-yI" - }, - { - "title": "From Me To You in the style of The Beatles karaoke video with lyrics", - "id": "2i99IdOi1L0" - }, - { - "title": "Big Me in the style of Foo Fighters karaoke version with lyrics", - "id": "-JgK1glCdAs" - }, - { - "title": "The Jackson 5 - ABC (Karaoke With Lyrics)", - "id": "9hZLB2NSrJE" - }, - { - "title": "Singin' In The Rain in the style of Gene Kelly karaoke with lyrics", - "id": "D8Pkmn0QLkg" - }, - { - "title": "Apologize in the style of OneRepublic karaoke video with lyrics", - "id": "2LNcOM7H6DM" - }, - { - "title": "The First Cut Is The Deepest in the style of Sheryl Crow karaoke video with lyrics no lead vocal", - "id": "W6q059eIgQs" - }, - { - "title": "Deck The Halls in the style of Traditional karaoke video with lyrics", - "id": "dGWofpemt-I" - }, - { - "title": "Better Days in the style of Goo Goo Dolls karaoke video with lyrics", - "id": "1RmzAkHozFA" - }, - { - "title": "Go Tell It On The Mountain in the style of Traditional karaoke video with lyrics", - "id": "ZAahwpVgq8g" - }, - { - "title": "Yankee Doodle in the style of Traditional karaoke video with lyrics (no lead vocal)", - "id": "XTT2R7k_iN0" - }, - { - "title": "O Come All Ye Faithful in the style of Traditional karaoke video with lyrics no lead vocal", - "id": "ZvXHjGOcMbA" - }, - { - "title": "Come On, Let's Go in the style of Ritchie Valens karaoke video with lyrics", - "id": "-xAc95MXUNY" - }, - { - "title": "Joy To The World in the style of Traditional karaoke video with lyrics", - "id": "j02asimThkE" - }, - { - "title": "Ring Around A Rosy in the style of Traditional karaoke video with lyrics", - "id": "BseJcS0tl4o" - }, - { - "title": "Ten Little Indians in the style of Traditional karaoke video", - "id": "mbVUayytvMY" - }, - { - "title": "Alphabet Song in the style of Traditional karaoke video for kids with lyrics", - "id": "8V9XBGiheLs" - }, - { - "title": "Cyndi Lauper - All Through The Night (Karaoke With Lyrics)", - "id": "-Uv9ERMpV2U" - } - ], - "@CCKaraoke": [ - { - "title": "Paramore โ€ข Grudges (CC Karaoke / Instrumental)", - "id": "cMUDvZbaDD0" - }, - { - "title": "Pantera โ€ข I'm Broken (CC Karaoke / Instrumental)", - "id": "Dlo4_Xh2RTU" - }, - { - "title": "Coldplay โ€ข White Shadows (CC Karaoke / Instrumental)", - "id": "_6-_gZu6kkI" - }, - { - "title": "Oasis โ€ข Supersonic (CC Karaoke / Instrumental) [UVR]", - "id": "_81mGkV1iJw" - }, - { - "title": "Oasis โ€ข Slide Away (CC Karaoke / Instrumental) [UVR]", - "id": "F02K5nN8C5I" - }, - { - "title": "girl in red โ€ข dead girl in the pool (CC Karaoke / Instrumental)", - "id": "O8QZGZuAINU" - }, - { - "title": "Korn โ€ข Shoots And Ladders (CC Karaoke / Instrumental) [UVR]", - "id": "s2422LbgHF4" - }, - { - "title": "Dream Theater โ€ข I Walk Beside You (CC Karaoke / Instrumental)", - "id": "N44Q2hDrqw0" - }, - { - "title": "Miike Snow โ€ข Genghis Khan (CC Karaoke / Instrumental)", - "id": "xX3Vd5mZllc" - }, - { - "title": "Gorillaz โ€ข Kids With Guns (CC Karaoke / Instrumental) [UVR]", - "id": "ynaogZg9bD4" - }, - { - "title": "Green Day โ€ข Murder City (CC Karaoke / Instrumental)", - "id": "ys3njzZRTV4" - }, - { - "title": "Red Hot Chili Peppers โ€ข Readymade (CC Karaoke / Instrumental)", - "id": "AKwYt5okAnc" - }, - { - "title": "Jeff Buckley โ€ข Last Goodbye (CC Karaoke / Instrumental) [UVR]", - "id": "POK3yNbTB_s" - }, - { - "title": "Linkin Park โ€ข Nobody's Listening (CC Karaoke / Instrumental)", - "id": "eLdAatTtot0" - }, - { - "title": "Paramore โ€ข Proof (CC Karaoke / Instrumental)", - "id": "GklmhXHIyC0" - }, - { - "title": "Depeche Mode โ€ข Home (CC Karaoke / Instrumental)", - "id": "cB6zRC48gGM" - }, - { - "title": "Green Day โ€ข Revolution Radio (CC Karaoke / Instrumental)", - "id": "orLCgTpPeHE" - }, - { - "title": "Montrose โ€ข Bad Motor Scooter (CC Karaoke / Instrumental)", - "id": "KfAcq4ybrXA" - }, - { - "title": "Coldplay โ€ข Lost! (CC Karaoke / Instrumental)", - "id": "_gGnAqQag7I" - }, - { - "title": "Dream Theater โ€ข Endless Sacrifice (CC Karaoke / Instrumental) [UVR]", - "id": "1q7Oldpc-FY" - }, - { - "title": "Muse โ€ข Cave (CC Karaoke / Instrumental)", - "id": "X-6JUNDT0j8" - }, - { - "title": "Jimi Hendrix โ€ข Little Wing (CC Karaoke / Instrumental)", - "id": "UBZZZPqAM8I" - }, - { - "title": "Red Hot Chili Peppers โ€ข The Getaway (CC Karaoke / Instrumental)", - "id": "UtCGn5T-_ow" - }, - { - "title": "Paramore โ€ข Fast In My Car (CC Karaoke / Instrumental)", - "id": "hr5zFdVjRQQ" - }, - { - "title": "Alice In Chains โ€ข Sea Of Sorrow (CC Karaoke / Instrumental) [UVR]", - "id": "R36TYlbwOXk" - }, - { - "title": "Linkin Park โ€ข In Between (CC Karaoke / Instrumental)", - "id": "-u2T7hwLx2E" - }, - { - "title": "Stone Temple Pilots โ€ข Lady Picture Show (CC Karaoke / Instrumental)", - "id": "wFAhuy0_l6U" - }, - { - "title": "Billy Joel โ€ข The Stranger (CC Karaoke / Instrumental)", - "id": "sqez7U254kw" - }, - { - "title": "Muse โ€ข Panic Station (CC Karaoke / Instrumental)", - "id": "cjyQNyw9leU" - }, - { - "title": "Van Halen โ€ข Little Guitars (CC Karaoke / Instrumental)", - "id": "ha7pitVLMfQ" - }, - { - "title": "Coldplay โ€ข Everything's Not Lost (CC Karaoke / Instrumental)", - "id": "cH-g67ZKCqA" - }, - { - "title": "Third Eye Blind โ€ข Blinded (When I See You) (CC Karaoke / Instrumental)", - "id": "1dLX60tFLVU" - }, - { - "title": "Green Day โ€ข Restless Heart Syndrome (CC Karaoke / Instrumental)", - "id": "Wb-KOPkaRSI" - }, - { - "title": "The Strokes โ€ข Bad Decisions (CC Karaoke / Instrumental)", - "id": "dz5n0RRQltI" - }, - { - "title": "Dream Theater โ€ข Honor Thy Father (CC Karaoke / Instrumental) [UVR]", - "id": "PgqAxpG_TCc" - }, - { - "title": "The Black Keys โ€ข Your Touch (CC Karaoke / Instrumental)", - "id": "QJG0AYGBaqA" - }, - { - "title": "The Smiths โ€ข Stop Me If You Think You've Heard This One Before (CC Karaoke / Instrumental)", - "id": "YDR92rNS3rg" - }, - { - "title": "The Clash โ€ข Train In Vain (Stand By Me) (CC Karaoke / Instrumental)", - "id": "DSdNHSRBBbg" - }, - { - "title": "Panic! At The Disco โ€ข Do You Know What I'm Seeing (CC Karaoke / Instrumental)", - "id": "VNG4OVqpPxc" - }, - { - "title": "Sponge โ€ข Plowed (CC Karaoke / Instrumental)", - "id": "f8xewdh15wE" - }, - { - "title": "Paramore โ€ข Brighter (CC Karaoke / Instrumental)", - "id": "G8shau2p9JE" - }, - { - "title": "Red Hot Chili Peppers โ€ข Death Of A Martian (CC Karaoke / Instrumental)", - "id": "ey_qlMTRgV4" - }, - { - "title": "My Chemical Romance โ€ข I Never Told You What I Do For A Living (CC Karaoke / Instrumental) [UVR]", - "id": "DIeRrF4Tk0A" - }, - { - "title": "Linkin Park โ€ข Blackout (CC Karaoke / Instrumental)", - "id": "l3FUzRCzWAo" - }, - { - "title": "Jimi Hendrix โ€ข May This Be Love (CC Karaoke / Instrumental)", - "id": "SskvCo6TqvQ" - }, - { - "title": "Stone Temple Pilots โ€ข Army Ants (CC Karaoke / Instrumental)", - "id": "PU-ybO4AiEM" - }, - { - "title": "Stone Temple Pilots โ€ข Days Of The Week (CC Karaoke / Instrumental)", - "id": "vlSyxeZCrqo" - }, - { - "title": "Judas Priest โ€ข Fever (CC Karaoke / Instrumental)", - "id": "wF0lVgb077Q" - }, - { - "title": "David Bowie โ€ข Aladdin Sane (CC Karaoke / Instrumental) [UVR]", - "id": "8QcVSLdni6w" - }, - { - "title": "The Clash โ€ข Death Or Glory (CC Karaoke / Instrumental)", - "id": "cceUowYj6Fg" - }, - { - "title": "The High Strung โ€ข The Luck You Got (CC Karaoke / Instrumental)", - "id": "Nmd7KRnJz9s" - }, - { - "title": "Silverchair โ€ข Pure Massacre (CC Karaoke / Instrumental) [UVR]", - "id": "C2DZSAOLd6I" - }, - { - "title": "Green Day โ€ข The Static Age (CC Karaoke / Instrumental)", - "id": "8mbrRw__0HQ" - }, - { - "title": "Jane's Addiction โ€ข Stop! (CC Karaoke / Instrumental)", - "id": "m9oFhjDI1Yk" - }, - { - "title": "Depeche Mode โ€ข Useless (CC Karaoke / Instrumental) [UVR]", - "id": "sph3jPAGH0o" - }, - { - "title": "Dream Theater โ€ข This Dying Soul (CC Karaoke / Instrumental) [UVR]", - "id": "7QzgLP9JJkM" - }, - { - "title": "Muse โ€ข Hate This And I'll Love You (CC Karaoke / Instrumental)", - "id": "cgQUTWCWN2c" - }, - { - "title": "Our Lady Peace โ€ข Thief (CC Karaoke / Instrumental) [UVR]", - "id": "5A27kgJG2-I" - }, - { - "title": "Our Lady Peace โ€ข Automatic Flowers (CC Karaoke / Instrumental) [UVR]", - "id": "is9GvuuNxBE" - }, - { - "title": "Coldplay โ€ข Swallowed In The Sea (CC Karaoke / Instrumental)", - "id": "GoM-n3UozeI" - }, - { - "title": "Red Hot Chili Peppers โ€ข Factory Of Faith (CC Karaoke / Instrumental)", - "id": "0ki_FJOU5jc" - }, - { - "title": "girl in red โ€ข serotonin (CC Karaoke / Instrumental)", - "id": "iDkWOjYL_Uc" - }, - { - "title": "girl in red โ€ข Rue (CC Karaoke / Instrumental)", - "id": "azEuCL_NLrc" - }, - { - "title": "Linkin Park โ€ข Sharp Edges (CC Karaoke / Instrumental)", - "id": "rIQjbtOAI_A" - }, - { - "title": "Kyuss โ€ข Green Machine (CC Karaoke / Instrumental) [UVR]", - "id": "yUtGN3fSadQ" - }, - { - "title": "Coldplay โ€ข Orphans (CC Karaoke / Instrumental)", - "id": "n53LALZbG7I" - }, - { - "title": "Silverchair โ€ข The Greatest View (CC Karaoke / Instrumental) [UVR]", - "id": "rmKGfvk39rQ" - }, - { - "title": "Coldplay โ€ข Birds (CC Karaoke / Instrumental)", - "id": "FxEXTr7wb70" - }, - { - "title": "Grateful Dead โ€ข Alabama Getaway (CC Karaoke / Instrumental)", - "id": "TdIahw4FjP4" - }, - { - "title": "My Chemical Romance โ€ข Sleep (CC Karaoke / Instrumental)", - "id": "PxWqXxRzZNM" - }, - { - "title": "Red Hot Chili Peppers โ€ข Especially In Michigan (CC Karaoke / Instrumental)", - "id": "3Kjhh2ggzo4" - }, - { - "title": "Depeche Mode โ€ข Halo (CC Karaoke / Instrumental) [UVR]", - "id": "gTODh1_dWHY" - }, - { - "title": "Billy Joel โ€ข Big Shot (CC Karaoke / Instrumental)", - "id": "FrRBSst8gBE" - }, - { - "title": "Green Day โ€ข Peacemaker (CC Karaoke / Instrumental)", - "id": "sVZk9tOPDnQ" - }, - { - "title": "Dream Theater โ€ข One Last Time (CC Karaoke / Instrumental)", - "id": "rs5WmodZyk0" - }, - { - "title": "Led Zeppelin โ€ข What Is And What Should Never Be (CC Karaoke / Instrumental)", - "id": "RbZnrK9UyCA" - }, - { - "title": "Dream Theater โ€ข Innocence Faded (CC Karaoke / Instrumental)", - "id": "kLY-u6cxkGU" - }, - { - "title": "Panic! At The Disco โ€ข Trade Mistakes (CC Karaoke / Instrumental) [UVR]", - "id": "E9iqZTzAKME" - }, - { - "title": "Jimi Hendrix โ€ข Are You Experienced (CC Karaoke / Instrumental)", - "id": "KVMkFGKbwDc" - }, - { - "title": "Paramore โ€ข Tell Me How (CC Karaoke / Instrumental)", - "id": "rIJYXSEqzh0" - }, - { - "title": "Foo Fighters โ€ข Waiting On A War (CC Karaoke / Instrumental)", - "id": "Yr_HTI5uBHk" - }, - { - "title": "Foreigner โ€ข Hot Blooded (CC Karaoke / Instrumental)", - "id": "jrlBZnQiaZI" - }, - { - "title": "Stone Temple Pilots โ€ข Wonderful (CC Karaoke / Instrumental)", - "id": "MJZ8gxDMDII" - }, - { - "title": "Muse โ€ข Endlessly (CC Karaoke / Instrumental)", - "id": "-Bk14wX1TU4" - }, - { - "title": "Paramore โ€ข Fences (CC Karaoke / Instrumental)", - "id": "tLxAvVQ-h-w" - }, - { - "title": "Yes โ€ข Long Distance Runaround (CC Karaoke / Instrumental)", - "id": "99qXFt7JYAM" - }, - { - "title": "Judas Priest โ€ข Pain And Pleasure (CC Karaoke / Instrumental)", - "id": "v7scMv-Pudg" - }, - { - "title": "Silverchair โ€ข Straight Lines (CC Karaoke / Instrumental)", - "id": "jEEfCoGuWu0" - }, - { - "title": "Pantera โ€ข 10's (CC Karaoke / Instrumental)", - "id": "O_rP7TpOXf0" - }, - { - "title": "Coldplay โ€ข Charlie Brown (CC Karaoke / Instrumental)", - "id": "NEC1VuKyPac" - }, - { - "title": "Linkin Park โ€ข Until It's Gone (CC Karaoke / Instrumental)", - "id": "WG_QLExqlis" - }, - { - "title": "Stone Temple Pilots โ€ข Silvergun Superman (CC Karaoke / Instrumental)", - "id": "-qxgUO6RGXk" - }, - { - "title": "My Chemical Romance โ€ข Sing (CC Karaoke / Instrumental)", - "id": "OcNWL-k_dNY" - }, - { - "title": "Jimi Hendrix โ€ข Long Hot Summer Night (CC Karaoke / Instrumental)", - "id": "cwG_NqtgPms" - }, - { - "title": "Green Day โ€ข American Eulogy (CC Karaoke / Instrumental)", - "id": "isNG2exineU" - }, - { - "title": "Hayley Williams โ€ข Why We Ever (CC Karaoke / Instrumental)", - "id": "eviZHClVAQ8" - }, - { - "title": "Hayley Williams โ€ข Simmer (CC Karaoke / Instrumental)", - "id": "NhkkBkqreIU" - }, - { - "title": "Motley Crue โ€ข Dr Feelgood (CC Karaoke / Instrumental)", - "id": "dgUABgo2tNs" - }, - { - "title": "Dream Theater โ€ข Strange Deja Vu (CC Karaoke / Instrumental)", - "id": "Fhm0ZrRX7YY" - }, - { - "title": "Billy Joel โ€ข I Go To Extremes (CC Karaoke / Instrumental)", - "id": "r6BES7FmQXk" - }, - { - "title": "Led Zeppelin โ€ข Out On The Tiles (CC Karaoke / Instrumental) [UVR]", - "id": "a5t81s2mWnc" - }, - { - "title": "Panic! At The Disco โ€ข The Calendar (CC Karaoke / Instrumental) [UVR]", - "id": "LgcIR6eaukM" - }, - { - "title": "Dream Theater โ€ข Barstool Warrior (CC Karaoke / Instrumental)", - "id": "wkVRG1_NeGM" - }, - { - "title": "Red Hot Chili Peppers โ€ข Slow Cheetah (CC Karaoke / Instrumental)", - "id": "asgHNLIMwIs" - }, - { - "title": "Foo Fighters โ€ข Something From Nothing (CC Karaoke / Instrumental)", - "id": "qkrUI3lUbwY" - }, - { - "title": "Muse โ€ข Won't Stand Down (CC Karaoke / Instrumental)", - "id": "MiY-Np9xYdA" - }, - { - "title": "Paramore โ€ข Let The Flames Begin (CC Karaoke / Instrumental)", - "id": "sMAdLIQaxRg" - }, - { - "title": "Judas Priest โ€ข Rock Hard Ride Free (CC Karaoke / Instrumental)", - "id": "ISWtb3wxJEU" - }, - { - "title": "Green Day โ€ข Bang Bang (CC Karaoke / Instrumental)", - "id": "F0XZuZCCSf0" - }, - { - "title": "Linkin Park โ€ข Hands Held High (CC Karaoke / Instrumental)", - "id": "rwZtSfGFfPg" - }, - { - "title": "Red Hot Chili Peppers โ€ข Funky Monks (CC Karaoke / Instrumental)", - "id": "57ex_dYqfF4" - }, - { - "title": "Coldplay โ€ข High Speed (CC Karaoke / Instrumental)", - "id": "SKwZaG3Xxlg" - }, - { - "title": "Billy Joel โ€ข Say Goodbye To Hollywood (CC Karaoke / Instrumental)", - "id": "9DJhxh-ZDVg" - }, - { - "title": "David Bowie โ€ข Blackstar (CC Karaoke / Instrumental)", - "id": "OZydS459eE4" - }, - { - "title": "girl in red โ€ข watch you sleep (CC Karaoke / Instrumental)", - "id": "4DbZpCFDxjQ" - }, - { - "title": "Green Day โ€ข Viva La Gloria Little Girl (CC Karaoke / Instrumental)", - "id": "B9Q3k61mXaQ" - }, - { - "title": "girl in red โ€ข Body And Mind (CC Karaoke / Instrumental)", - "id": "5ywMrTEAts4" - }, - { - "title": "Led Zeppelin โ€ข The Song Remains The Same (CC Karaoke / Instrumental) [UVR]", - "id": "4utcpNrwbPk" - }, - { - "title": "Depeche Mode โ€ข Shake The Disease (CC Karaoke / Instrumental) [UVR]", - "id": "blu9ywRiZeo" - }, - { - "title": "Dream Theater โ€ข Never Enough (CC Karaoke / Instrumental)", - "id": "a6JQ_7XquD8" - }, - { - "title": "Foreigner โ€ข Dirty White Boy (CC Karaoke / Instrumental)", - "id": "iJxBITkgPtQ" - }, - { - "title": "Grateful Dead โ€ข Hell In A Bucket (CC Karaoke / Instrumental)", - "id": "ObHOxAV3170" - }, - { - "title": "Gojira โ€ข The Shooting Star (CC Karaoke / Instrumental)", - "id": "_Z6Ve5hCOd4" - }, - { - "title": "My Chemical Romance โ€ข Destroya (CC Karaoke / Instrumental)", - "id": "AyJNNeW5hts" - }, - { - "title": "Foo Fighters โ€ข Arlandria (CC Karaoke / Instrumental)", - "id": "DneFzeDst2Y" - }, - { - "title": "Stone Temple Pilots โ€ข Down (CC Karaoke / Instrumental)", - "id": "J1qjtPKxHa4" - }, - { - "title": "Black Sabbath โ€ข Electric Funeral (CC Karaoke / Instrumental) [UVR]", - "id": "6TSX0rilBCM" - }, - { - "title": "Panic! At The Disco โ€ข Let's Kill Tonight (CC Karaoke / Instrumental) [UVR]", - "id": "t-2krFcUzPM" - }, - { - "title": "Paramore โ€ข Feeling Sorry (CC Karaoke / Instrumental) [UVR]", - "id": "Ea_zZ7pmW1c" - }, - { - "title": "The Psychedelic Furs โ€ข Pretty In Pink (CC Karaoke / Instrumental)", - "id": "7SNiSe_ZWhc" - }, - { - "title": "Depeche Mode โ€ข Waiting For The Night (CC Karaoke / Instrumental)", - "id": "74f8q7vTvo8" - }, - { - "title": "Blur โ€ข She's So High (CC Karaoke / Instrumental)", - "id": "j0ZwcKwwy_s" - }, - { - "title": "Stone Temple Pilots โ€ข Big Bang Baby (CC Karaoke / Instrumental)", - "id": "gXXYOWk0zso" - }, - { - "title": "David Bowie โ€ข Golden Years (CC Karaoke / Instrumental)", - "id": "Jjl5kKsk6IE" - }, - { - "title": "Van Halen โ€ข Hot For Teacher (CC Karaoke / Instrumental)", - "id": "k2K_0xOodQI" - }, - { - "title": "Muse โ€ข Follow Me (CC Karaoke / Instrumental)", - "id": "6rLFtuZkF_s" - }, - { - "title": "Dream Theater โ€ข Anna Lee (CC Karaoke / Instrumental)", - "id": "FcZdnmycXVg" - }, - { - "title": "Jimi Hendrix โ€ข Bold As Love (CC Karaoke / Instrumental)", - "id": "uEI-KVFvISA" - }, - { - "title": "Red Hot Chili Peppers โ€ข Tear (CC Karaoke / Instrumental)", - "id": "mgQvdudgbIo" - }, - { - "title": "Bleachers โ€ข Don't Take The Money (CC Karaoke / Instrumental)", - "id": "K6X4RrmeuK0" - }, - { - "title": "girl in red โ€ข i'll die anyway (CC Karaoke / Instrumental)", - "id": "XzBlmBoCCWI" - }, - { - "title": "Disturbed โ€ข Inside The Fire (CC Karaoke / Instrumental)", - "id": "h-WfphqxpZM" - }, - { - "title": "Green Day โ€ข Scattered (CC Karaoke / Instrumental)", - "id": "3D0PDtzWb0o" - }, - { - "title": "Coldplay โ€ข Magic (CC Karaoke / Instrumental) [UVR]", - "id": "UhFJ2qtlYPs" - }, - { - "title": "Killswitch Engage โ€ข The End Of Heartache (CC Karaoke / Instrumental)", - "id": "T8GatIpk5eY" - }, - { - "title": "Panic! At The Disco โ€ข Ready To Go (Get Me Out Of My Mind) (CC Karaoke / Instrumental) [UVR]", - "id": "fBNUwkBq0pA" - }, - { - "title": "Slipknot โ€ข Gehenna (CC Karaoke / Instrumental)", - "id": "edVSsiAuvVU" - }, - { - "title": "Incubus โ€ข Glass (CC Karaoke / Instrumental)", - "id": "d3qx_7RlTy0" - }, - { - "title": "Matchbox Twenty โ€ข Real World (CC Karaoke / Instrumental)", - "id": "0FWdrtIbd_M" - }, - { - "title": "Paramore โ€ข Born For This (CC Karaoke / Instrumental)", - "id": "B_kjyy0fS2E" - }, - { - "title": "Chevelle โ€ข Face To The Floor (CC Karaoke / Instrumental)", - "id": "2SspM5k5bbg" - }, - { - "title": "Oasis โ€ข Rock N Roll Star (CC Karaoke / Instrumental)", - "id": "YiVKF6kdbIw" - }, - { - "title": "Judas Priest โ€ข The Sentinel (CC Karaoke / Instrumental)", - "id": "rHtUeJCNuMw" - }, - { - "title": "Our Lady Peace โ€ข 4am (CC Karaoke / Instrumental) [UVR]", - "id": "Y5TUp-mWQC4" - }, - { - "title": "Gojira โ€ข Silvera (CC Karaoke / Instrumental)", - "id": "m1FGiluE_0c" - }, - { - "title": "Led Zeppelin โ€ข Living Loving Maid She's Just A Woman (CC Karaoke / Instrumental) [UVR]", - "id": "whzQl1PHTVk" - }, - { - "title": "Red Hot Chili Peppers โ€ข Desecration Smile (CC Karaoke / Instrumental)", - "id": "38VYczMZ8-Y" - }, - { - "title": "Foo Fighters โ€ข Walking After You (CC Karaoke / Instrumental)", - "id": "oFUpURUZUW4" - }, - { - "title": "Pantera โ€ข Hollow (CC Karaoke / Instrumental)", - "id": "DkO9rwfpPbE" - }, - { - "title": "The Lumineers โ€ข Ho Hey (CC Karaoke / Instrumental) [UVR]", - "id": "4aTnVgMwrFc" - }, - { - "title": "Stone Temple Pilots โ€ข Lounge Fly (CC Karaoke / Instrumental)", - "id": "Vvbj8a50lb4" - }, - { - "title": "Coldplay โ€ข Low (CC Karaoke / Instrumental)", - "id": "RM4pT9q_CSg" - }, - { - "title": "Billy Joel โ€ข Captain Jack (CC Karaoke / Instrumental)", - "id": "LzNC_nW2_KY" - }, - { - "title": "Deftones โ€ข Risk (CC Karaoke / Instrumental)", - "id": "pjsF7by18YI" - }, - { - "title": "Coldplay โ€ข Talk (CC Karaoke / Instrumental)", - "id": "wZAH9TF6loI" - }, - { - "title": "Linkin Park โ€ข Wretches And Kings (CC Karaoke / Instrumental)", - "id": "Lgl-nxDKIPg" - }, - { - "title": "Paramore โ€ข Part II (CC Karaoke / Instrumental)", - "id": "gYP15wkvYQg" - }, - { - "title": "Muse โ€ข Muscle Museum (CC Karaoke / Instrumental)", - "id": "4SLAq2okCgM" - }, - { - "title": "David Bowie โ€ข Cat People (CC Karaoke / Instrumental)", - "id": "5xqXkWIv4_g" - }, - { - "title": "Dream Theater โ€ข As I Am (CC Karaoke / Instrumental) [UVR]", - "id": "TUQHG7D1FVk" - }, - { - "title": "Green Day โ€ข No Pride (CC Karaoke / Instrumental)", - "id": "esre-09df-M" - }, - { - "title": "Slipknot โ€ข Goodbye (CC Karaoke / Instrumental)", - "id": "U_oary6OPVA" - }, - { - "title": "Paramore โ€ข Never Let This Go (CC Karaoke / Instrumental)", - "id": "f29kLKrpAHI" - }, - { - "title": "Led Zeppelin โ€ข Over The Hills And Far Away (CC Karaoke / Instrumental) [UVR]", - "id": "I6YVm_L2voI" - }, - { - "title": "Dream Theater โ€ข Take Away My Pain (CC Karaoke / Instrumental)", - "id": "uN6lMn90c6s" - }, - { - "title": "Red Hot Chili Peppers โ€ข Hey (CC Karaoke / Instrumental)", - "id": "EXjcdH-hLuo" - }, - { - "title": "The Guess Who โ€ข Hand Me Down World (CC Karaoke / Instrumental)", - "id": "kKGSLoXVLEY" - }, - { - "title": "Muse โ€ข Uno (CC Karaoke / Instrumental)", - "id": "u45PQlPcPn4" - }, - { - "title": "Green Day โ€ข Brain Stew - Jaded (CC Karaoke / Instrumental)", - "id": "J2oXjiWNrdw" - }, - { - "title": "Grateful Dead โ€ข Sugar Magnolia (CC Karaoke / Instrumental)", - "id": "opvVrADJfuo" - }, - { - "title": "My Chemical Romance โ€ข Hang Em High (CC Karaoke / Instrumental) [UVR]", - "id": "0txNUCMKYaM" - }, - { - "title": "Linkin Park โ€ข Powerless (CC Karaoke / Instrumental)", - "id": "oQ-6SvHK2YY" - }, - { - "title": "Depeche Mode โ€ข Barrel Of A Gun (CC Karaoke / Instrumental) [UVR]", - "id": "maPdz7w1NpE" - }, - { - "title": "Coldplay โ€ข Square One (CC Karaoke / Instrumental)", - "id": "nCi3pinl50c" - }, - { - "title": "Green Day โ€ข Hitchin' A Ride (CC Karaoke / Instrumental)", - "id": "71V45tDnpSU" - }, - { - "title": "Green Day โ€ข Homecoming (CC Karaoke / Instrumental)", - "id": "PPPl-Ki0ZpY" - }, - { - "title": "Green Day โ€ข Before The Lobotomy (CC Karaoke / Instrumental)", - "id": "tWBYxkgNBOk" - }, - { - "title": "Coldplay โ€ข Lovers In Japan (CC Karaoke / Instrumental)", - "id": "TvMphK8hSJA" - }, - { - "title": "Jimi Hendrix โ€ข Fire (CC Karaoke / Instrumental)", - "id": "0ejltmWfbug" - }, - { - "title": "Death โ€ข Spirit Crusher (CC Karaoke / Instrumental) [UVR]", - "id": "19J_0w7Oyog" - }, - { - "title": "My Chemical Romance โ€ข Planetary GO! (CC Karaoke / Instrumental)", - "id": "bPtWAx_71Og" - }, - { - "title": "Silverchair โ€ข Israel's Son (CC Karaoke / Instrumental) [UVR]", - "id": "_W9DYpp96Sk" - }, - { - "title": "The Clash โ€ข Brand New Cadillac (CC Karaoke / Instrumental)", - "id": "hqx6lBfhHkA" - }, - { - "title": "Paramore โ€ข Emergency (CC Karaoke / Instrumental) [UVR]", - "id": "Z6T52-ART0s" - }, - { - "title": "Royal Blood โ€ข Come On Over (CC Karaoke / Instrumental)", - "id": "hd84oBvgkZU" - }, - { - "title": "Royal Blood โ€ข Trouble's Coming (CC Karaoke / Instrumental)", - "id": "z7TieVKQ8SQ" - }, - { - "title": "Avenged Sevenfold โ€ข Shepherd Of Fire (CC Karaoke / Instrumental)", - "id": "M2Ythz25ClI" - }, - { - "title": "Van Halen โ€ข Jump (CC Karaoke / Instrumental)", - "id": "sbYKD5eZl5w" - }, - { - "title": "My Chemical Romance โ€ข This Is How I Disappear (CC Karaoke / Instrumental)", - "id": "CAMIohjctD8" - }, - { - "title": "My Chemical Romance โ€ข Give 'Em Hell, Kid (CC Karaoke / Instrumental) [UVR]", - "id": "pWhb8Mk6eFo" - }, - { - "title": "311 โ€ข Down (CC Karaoke / Instrumental)", - "id": "QTCo0AiKC-E" - }, - { - "title": "Led Zeppelin โ€ข Good Times Bad Times (CC Karaoke / Instrumental) [UVR]", - "id": "EWOZMIjJTM0" - }, - { - "title": "David Bowie โ€ข Thursday's Child (CC Karaoke / Instrumental)", - "id": "n63Z2BMa95M" - }, - { - "title": "Blur โ€ข End Of A Century (CC Karaoke / Instrumental)", - "id": "qxCfiz6JYmY" - }, - { - "title": "The Strokes โ€ข Automatic Stop (CC Karaoke / Instrumental) [UVR]", - "id": "n9pvGoBWybM" - }, - { - "title": "Panic! At The Disco โ€ข Nearly Witches Ever Since We Met (CC Karaoke / Instrumental) [UVR]", - "id": "rNAHT5CIFYc" - }, - { - "title": "Deftones โ€ข Diamond Eyes (CC Karaoke / Instrumental)", - "id": "SLrL4Zg7nPs" - }, - { - "title": "Biffy Clyro โ€ข Mountains (CC Karaoke / Instrumental)", - "id": "IGBaU46VwXc" - }, - { - "title": "Biffy Clyro โ€ข Black Chandelier (CC Karaoke / Instrumental)", - "id": "Axg27pl2scc" - }, - { - "title": "Biffy Clyro โ€ข Many Of Horror (CC Karaoke / Instrumental)", - "id": "zEvr1pb-u9Y" - }, - { - "title": "Linkin Park โ€ข Leave Out All The Rest (CC Karaoke / Instrumental)", - "id": "993G9qF3zZQ" - }, - { - "title": "Iron Maiden โ€ข Flight Of Icarus (CC Karaoke / Instrumental)", - "id": "tyCTPcckFUM" - }, - { - "title": "Stone Temple Pilots โ€ข Still Remains (CC Karaoke / Instrumental)", - "id": "Dz0bWfNfyI8" - }, - { - "title": "Incubus โ€ข A Certain Shade Of Green (CC Karaoke / Instrumental)", - "id": "_4pGwE_vplU" - }, - { - "title": "Judas Priest โ€ข Hell Bent For Leather (CC Karaoke / Instrumental)", - "id": "bUnRzo9TYQk" - }, - { - "title": "Depeche Mode โ€ข John The Revelator (CC Karaoke / Instrumental)", - "id": "6EtZDDPdnRk" - }, - { - "title": "Disturbed โ€ข Asylum (CC Karaoke / Instrumental)", - "id": "a0GMytWbx3Y" - }, - { - "title": "Our Lady Peace โ€ข In Repair (CC Karaoke / Instrumental) [UVR]", - "id": "gFj8ArsbKgg" - }, - { - "title": "Red Hot Chili Peppers โ€ข On Mercury (CC Karaoke / Instrumental) [UVR]", - "id": "D3kRuBCKrx4" - }, - { - "title": "Silverchair โ€ข Shade (CC Karaoke / Instrumental) [UVR]", - "id": "NAgfKkqWpiE" - }, - { - "title": "Alice In Chains โ€ข God Smack (CC Karaoke / Instrumental) [UVR]", - "id": "70-G4LQZkZc" - }, - { - "title": "Green Day โ€ข Geek Stink Breath (CC Karaoke / Instrumental)", - "id": "-0IVoPgDD_c" - }, - { - "title": "Dream Theater โ€ข The Silent Man (CC Karaoke / Instrumental)", - "id": "Tjb46Rd6Doc" - }, - { - "title": "Muse โ€ข Showbiz (CC Karaoke / Instrumental) [UVR]", - "id": "5o9zbmfHOjo" - }, - { - "title": "Arcade Fire โ€ข My Body Is A Cage (CC Karaoke / Instrumental)", - "id": "N008jMdunIU" - }, - { - "title": "Led Zeppelin โ€ข Ten Years Gone (CC Karaoke / Instrumental) [UVR]", - "id": "BWW0bD4SaxE" - }, - { - "title": "Oasis โ€ข I'm Outta Time (CC Karaoke / Instrumental)", - "id": "MOTXMaD1uRg" - }, - { - "title": "Black Sabbath โ€ข After Forever (CC Karaoke / Instrumental)", - "id": "MK_T3Z98Wss" - }, - { - "title": "My Chemical Romance โ€ข It's Not A Fashion Statement, It's A Deathwish (CC Karaoke Instrumental) [UVR]", - "id": "44xa26AAShk" - }, - { - "title": "Paramore โ€ข Hallelujah (CC Karaoke / Instrumental) [UVR]", - "id": "_yGmY0Ecqwo" - }, - { - "title": "Coldplay โ€ข Strawberry Swing (CC Karaoke / Instrumental)", - "id": "1sine7_nJYQ" - }, - { - "title": "Linkin Park โ€ข Nobody Can Save Me (CC Karaoke / Instrumental)", - "id": "yP4OpYIXsNs" - }, - { - "title": "Red Hot Chili Peppers โ€ข Parallel Universe (CC Karaoke / Instrumental)", - "id": "u28dgAXXcyA" - }, - { - "title": "Foo Fighters โ€ข February Stars (CC Karaoke / Instrumental) [UVR]", - "id": "rkCeZDPfndA" - }, - { - "title": "Blur โ€ข The Universal (CC Karaoke / Instrumental)", - "id": "qDAE3y0MYgQ" - }, - { - "title": "Jane's Addiction โ€ข Been Caught Stealing (CC Karaoke / Instrumental)", - "id": "E0VP9pzTVcU" - }, - { - "title": "Anathema โ€ข Deep (CC Karaoke / Instrumental)", - "id": "2ILc9KZqOmY" - }, - { - "title": "Pantera โ€ข Floods (CC Karaoke / Instrumental)", - "id": "t-8Ohqjzrz4" - }, - { - "title": "Panic! At The Disco โ€ข Sarah Smiles (CC Karaoke / Instrumental)", - "id": "13p1JEmndjM" - }, - { - "title": "Jimi Hendrix โ€ข Spanish Castle Magic (CC Karaoke / Instrumental)", - "id": "GVHz-wgjX4s" - }, - { - "title": "Billy Joel โ€ข The Entertainer (CC Karaoke / Instrumental)", - "id": "8gmLIwZmX4E" - }, - { - "title": "Green Day โ€ข Misery (CC Karaoke / Instrumental)", - "id": "HuQusSuCBGI" - }, - { - "title": "girl in red โ€ข summer depression (CC Karaoke / Instrumental)", - "id": "f8nN2j05hII" - }, - { - "title": "Anathema โ€ข Thin Air (CC Karaoke / Instrumental) [UVR]", - "id": "DGLEtHY4JUk" - }, - { - "title": "Red Hot Chili Peppers โ€ข Aeroplane (CC Karaoke / Instrumental)", - "id": "F30YfAaV3_s" - }, - { - "title": "My Chemical Romance โ€ข The Sharpest Lives (CC Karaoke / Instrumental)", - "id": "70tEvFQ4XKo" - }, - { - "title": "Red Hot Chili Peppers โ€ข This Is The Place (CC Karaoke / Instrumental) [UVR]", - "id": "MVrzd3v3gco" - }, - { - "title": "Stone Temple Pilots โ€ข Unglued (CC Karaoke / Instrumental)", - "id": "IHa6UUD0j9I" - }, - { - "title": "Death โ€ข Zombie Ritual (CC Karaoke / Instrumental) [UVR]", - "id": "t6s690Fc9Xg" - }, - { - "title": "Silverchair โ€ข Faultline (CC Karaoke / Instrumental) [UVR]", - "id": "Z0mQt50C73s" - }, - { - "title": "Grateful Dead โ€ข Scarlet Begonias (CC Karaoke / Instrumental)", - "id": "zaGTDFa_498" - }, - { - "title": "Bleachers โ€ข I Wanna Get Better (CC Karaoke / Instrumental)", - "id": "gizpLzkIILk" - }, - { - "title": "Chevelle โ€ข Saturdays (CC Karaoke / Instrumental) [UVR]", - "id": "4dd5VUQBAdw" - }, - { - "title": "City And Colour โ€ข Fragile Bird (CC Karaoke / Instrumental)", - "id": "Ydm0JO2DTJk" - }, - { - "title": "Biffy Clyro โ€ข Space (CC Karaoke / Instrumental)", - "id": "rFMZI1A4BHc" - }, - { - "title": "David Bowie โ€ข Andy Warhol (CC Karaoke / Instrumental) [UVR]", - "id": "ANC42IrkI88" - }, - { - "title": "Black Sabbath โ€ข The Sign Of The Southern Cross (CC Karaoke / Instrumental) [UVR]", - "id": "hvyVJBGtjGs" - }, - { - "title": "Van Halen โ€ข Mean Street (CC Karaoke / Instrumental)", - "id": "xPuqVSyGXSI" - }, - { - "title": "Dream Theater โ€ข Solitary Shell (CC Karaoke / Instrumental) [UVR]", - "id": "UPhkzcquZZw" - }, - { - "title": "Black Sabbath โ€ข Dying For Love (CC Karaoke / Instrumental) [UVR]", - "id": "wz2S65-YOZg" - }, - { - "title": "Depeche Mode โ€ข Stories Of Old (CC Karaoke / Instrumental) [UVR]", - "id": "SyFqsKYiAOk" - }, - { - "title": "Iron Maiden โ€ข Infinite Dreams (CC Karaoke / Instrumental)", - "id": "nLkD5AXBoPs" - }, - { - "title": "Death โ€ข Symbolic (CC Karaoke / Instrumental) [UVR]", - "id": "RwaXDOD_hRY" - }, - { - "title": "Foo Fighters โ€ข Aurora (CC Karaoke / Instrumental) [UVR]", - "id": "N7kp990NDQE" - }, - { - "title": "Tegan and Sara โ€ข I Was A Fool (CC Karaoke / Instrumental)", - "id": "2fQF_bNcw64" - }, - { - "title": "Green Day โ€ข King For A Day (CC Karaoke / Instrumental)", - "id": "na2F8aEPwHA" - }, - { - "title": "David Bowie โ€ข Fashion (CC Karaoke / Instrumental)", - "id": "jVo9_MU6bvY" - }, - { - "title": "Judas Priest โ€ข Riding On The Wind (CC Karaoke / Instrumental)", - "id": "Y9L0g2Q1cl0" - }, - { - "title": "Panic! At The Disco โ€ข New Perspective (CC Karaoke / Instrumental) [UVR]", - "id": "quWVz8m6VHE" - }, - { - "title": "Led Zeppelin โ€ข Ramble On (CC Karaoke / Instrumental) [UVR]", - "id": "GoAJPO0XktY" - }, - { - "title": "The Pretenders โ€ข I'll Stand By You (CC Karaoke / Instrumental)", - "id": "LP3r00kD4M0" - }, - { - "title": "Green Day โ€ข Dilemma (CC Karaoke / Instrumental)", - "id": "wXpIzkHbpOk" - }, - { - "title": "Green Day โ€ข Waiting (CC Karaoke / Instrumental)", - "id": "L0dMe1Xtzd0" - }, - { - "title": "My Chemical Romance โ€ข Thank You For The Venom (CC Karaoke / Instrumental)", - "id": "-DOFnaE1kAk" - }, - { - "title": "My Chemical Romance โ€ข Cemetery Drive (CC Karaoke / Instrumental)", - "id": "DsAeUOX3_6k" - }, - { - "title": "Linkin Park โ€ข The Catalyst (CC Karaoke / Instrumental)", - "id": "fRGy16ON9U8" - }, - { - "title": "Linkin Park โ€ข In Pieces (CC Karaoke / Instrumental)", - "id": "rt-y9JoRCfk" - }, - { - "title": "Paramore โ€ข Rose Colored Boy (CC Karaoke / Instrumental)", - "id": "2Ur1-8DEtyU" - }, - { - "title": "Green Day โ€ข Minority (CC Karaoke / Instrumental)", - "id": "nbPqb6E5pSg" - }, - { - "title": "Coldplay โ€ข The Hardest Part (CC Karaoke / Instrumental)", - "id": "L0Bzi1wIgZQ" - }, - { - "title": "Panic! At The Disco โ€ข House Of Memories (CC Karaoke / Instrumental)", - "id": "ndH6XSGclE8" - }, - { - "title": "Stone Temple Pilots โ€ข Vasoline (CC Karaoke / Instrumental)", - "id": "BWLGrjim_YA" - }, - { - "title": "Stone Temple Pilots โ€ข Dead & Bloated (CC Karaoke / Instrumental)", - "id": "10I8_N86ELY" - }, - { - "title": "Led Zeppelin โ€ข Thank You (CC Karaoke / Instrumental)", - "id": "7FskfySyAsU" - }, - { - "title": "Led Zeppelin โ€ข Dancing Days (CC Karaoke / Instrumental) [UVR]", - "id": "5wf-b_uYiqM" - }, - { - "title": "Led Zeppelin โ€ข All My Love (CC Karaoke / Instrumental) [UVR]", - "id": "qjnz2_JvdW8" - }, - { - "title": "Paramore โ€ข 26 (CC Karaoke / Instrumental)", - "id": "1i886rfQ8us" - }, - { - "title": "My Chemical Romance โ€ข Dead! (CC Karaoke / Instrumental)", - "id": "yzxNYDKTg3Y" - }, - { - "title": "Green Day โ€ข Are We The Waiting - St Jimmy (CC Karaoke / Instrumental)", - "id": "DtY6rsOXrjI" - }, - { - "title": "Red Hot Chili Peppers โ€ข Black Summer (CC Karaoke / Instrumental)", - "id": "-uxzmdV2hZ8" - }, - { - "title": "Skillet โ€ข Feel Invincible (CC Karaoke / Instrumental)", - "id": "PGFvwpqT0FU" - }, - { - "title": "Led Zeppelin โ€ข No Quarter (CC Karaoke / Instrumental) [UVR]", - "id": "Yx5GC0WfH6Y" - }, - { - "title": "Coldplay โ€ข Shiver (CC Karaoke / Instrumental)", - "id": "-odQCsN2Wfo" - }, - { - "title": "Muse โ€ข Citizen Erased (CC Karaoke / Instrumental)", - "id": "d8SJQZt52Es" - }, - { - "title": "Paramore โ€ข For A Pessimist, I'm Pretty Optimistic (CC Karaoke / Instrumental)", - "id": "qW903_To90k" - }, - { - "title": "Jimi Hendrix โ€ข Valleys Of Neptune (CC Karaoke / Instrumental)", - "id": "rElLMmnKMgg" - }, - { - "title": "My Chemical Romance โ€ข The Foundations Of Decay (CC Karaoke / Instrumental)", - "id": "keGX2AIvvU0" - }, - { - "title": "Stone Temple Pilots โ€ข Meatplow (CC Karaoke / Instrumental)", - "id": "wG4xw4qQTK8" - }, - { - "title": "Anathema โ€ข One Last Goodbye (CC Karaoke / Instrumental) [UVR]", - "id": "kTtP6FAIvBc" - }, - { - "title": "Linkin Park โ€ข Invisible (CC Karaoke / Instrumental)", - "id": "yjFPIlmzO_Q" - }, - { - "title": "Green Day โ€ข Stray Heart (CC) [Karaoke] [Instrumental]", - "id": "BZI7RK3kCKo" - }, - { - "title": "Green Day โ€ข Church On Sunday (CC) [Karaoke] [Instrumental]", - "id": "0hgF4hsViMg" - }, - { - "title": "Foo Fighters โ€ข Resolve (CC Karaoke / Instrumental)", - "id": "PU2t-ke72Ss" - }, - { - "title": "WAR โ€ข Low Rider (CC) [Karaoke] [Instrumental]", - "id": "zcpsooiDp1c" - }, - { - "title": "Red Hot Chili Peppers โ€ข My Friends (CC) [Karaoke] [Instrumental] [UVR]", - "id": "XEYGRok7scE" - }, - { - "title": "Black Sabbath โ€ข Country Girl (CC) [Karaoke] [Instrumental] [UVR]", - "id": "tIAD0xG1StY" - }, - { - "title": "Tegan and Sara โ€ข The Con (CC) [Karaoke] [Instrumental]", - "id": "-wcf7eU9Afs" - }, - { - "title": "The Clash โ€ข Jimmy Jazz (CC) [Karaoke] [Instrumental]", - "id": "E8MulVVe0jg" - }, - { - "title": "Alice in Chains โ€ข Brother (Unplugged) (CC) [Karaoke] [Instrumental] [UVR]", - "id": "E5rRyR5o0W4" - }, - { - "title": "Death Cab For Cutie โ€ข Cath (CC) [Karaoke] [Instrumental]", - "id": "tdkGtfFmU1o" - }, - { - "title": "Silverchair โ€ข The Man That Knew Too Much (CC) [Karaoke] [Instrumental] [UVR]", - "id": "ZMIsO0Q1Y9Q" - }, - { - "title": "The Black Keys โ€ข I Got Mine (CC) [Karaoke] [Instrumental]", - "id": "IKhmk9HEd9U" - }, - { - "title": "Motley Crue โ€ข Too Young To Fall In Love (CC) [Karaoke] [Instrumental]", - "id": "jZj8mP1ZQnU" - }, - { - "title": "Grateful Dead โ€ข Uncle John's Band (CC) [Karaoke] [Instrumental]", - "id": "EnXHAHygaV8" - }, - { - "title": "Incubus โ€ข Vitamin (CC) [Karaoke] [Instrumental]", - "id": "Oy9ebAeESvk" - }, - { - "title": "Dream Theater โ€ข Caught In A Web (CC) [Karaoke] [Instrumental]", - "id": "JBH381UGows" - }, - { - "title": "My Chemical Romance โ€ข You Know What They Do To Guys Like Us In Prison (CC Karaoke / Instrumental)", - "id": "DWdcgb7a96g" - }, - { - "title": "Panic! At The Disco โ€ข Memories (CC) [Karaoke] [Instrumental] [UVR]", - "id": "Kfz2JJQ_wpk" - }, - { - "title": "Red Hot Chili Peppers โ€ข Minor Thing (CC) [Karaoke] [Instrumental] [UVR]", - "id": "tn3xusE2Alw" - }, - { - "title": "Muse โ€ข Invincible (CC) [Karaoke] [Instrumental]", - "id": "WNLrtW_-ahI" - }, - { - "title": "Coldplay โ€ข Spies (CC) [Karaoke] [Instrumental]", - "id": "DenOwxKN-RA" - }, - { - "title": "Coldplay โ€ข Don't Panic (CC) [Karaoke] [Instrumental]", - "id": "UFPinfd-9c4" - }, - { - "title": "Our Lady Peace โ€ข Superman's Dead (CC) [Karaoke] [Instrumental] [UVR]", - "id": "D4O8cXkmyyk" - }, - { - "title": "Linkin Park โ€ข Castle Of Glass (CC) [Karaoke] [Instrumental]", - "id": "Yh8hg3EU6DA" - }, - { - "title": "Green Day โ€ข Extraordinary Girl (CC) [Karaoke] [Instrumental]", - "id": "JxgxgV2KBd4" - }, - { - "title": "girl in red โ€ข Apartment 402 (CC) [Karaoke] [Instrumental]", - "id": "E7wHECpHR6M" - }, - { - "title": "Linkin Park โ€ข Papercut (CC) [Karaoke] [Instrumental]", - "id": "QjJfqsKO1SY" - }, - { - "title": "Opeth โ€ข Death Whispered A Lullaby (CC) [Karaoke] [Instrumental] [UVR]", - "id": "deMsJICsgO0" - }, - { - "title": "Opeth โ€ข Hope Leaves (CC) [Karaoke] [Instrumental] [UVR]", - "id": "TDHwlvD_U3k" - }, - { - "title": "Red Hot Chili Peppers โ€ข Stadium Arcadium (CC) [Karaoke] [Instrumental] [UVR]", - "id": "fY7T4vPprnk" - }, - { - "title": "Depeche Mode โ€ข Behind The Wheel (CC) [Karaoke] [Instrumental] [UVR]", - "id": "tLvDhL30l4E" - }, - { - "title": "Death โ€ข Flattening Of Emotions (CC) [Karaoke] [Instrumental] [UVR]", - "id": "rrNcgL8WrSk" - }, - { - "title": "Panic! At The Disco โ€ข That Green Gentlemen (Things Have Changed) (CC) [UVR] [Karaoke] [Instrumental]", - "id": "JjjTdyIKfC0" - }, - { - "title": "Green Day โ€ข Oh Love (CC) [Karaoke] [Instrumental]", - "id": "F6cJpe0cg-4" - }, - { - "title": "Stone Temple Pilots โ€ข Big Empty (CC Karaoke / Instrumental)", - "id": "gdB5_TDWn58" - }, - { - "title": "Our Lady Peace โ€ข Starseed (CC) [Karaoke] [Instrumental] [UVR]", - "id": "Atb0s1_Nf_s" - }, - { - "title": "Our Lady Peace โ€ข Naveed (CC) [Karaoke] [Instrumental] [UVR]", - "id": "2eCwvEh7itE" - }, - { - "title": "Coldplay โ€ข Green Eyes (CC) [Karaoke] [Instrumental]", - "id": "B3bDWdj06LY" - }, - { - "title": "Porcupine Tree โ€ข The Sound Of Muzak (CC) [Karaoke] [Instrumental] [UVR]", - "id": "VD6FTGIiQDs" - }, - { - "title": "Porcupine Tree โ€ข Shesmovedon (CC) [Karaoke] [Instrumental] [UVR]", - "id": "0_-GjfOWN4U" - }, - { - "title": "Led Zeppelin โ€ข Whole Lotta Love (CC) [Karaoke] [Instrumental] [UVR]", - "id": "7_nGVxsHRf0" - }, - { - "title": "Red Hot Chili Peppers โ€ข Snow (Hey Oh) (CC) [Karaoke] [Instrumental]", - "id": "rOnLY0tyHN4" - }, - { - "title": "Paramore โ€ข The Only Exception (CC Karaoke / Instrumental) [UVR]", - "id": "X7jRZqNf-9Q" - }, - { - "title": "Paramore โ€ข Playing God (CC Karaoke / Instrumental)", - "id": "QhH2Z8rPYyE" - }, - { - "title": "Paramore โ€ข Misery Business (CC Karaoke / Instrumental)", - "id": "-_TYszV2E7c" - }, - { - "title": "Linkin Park โ€ข Final Masquerade (CC Karaoke / Instrumental)", - "id": "6qTb6JypeC4" - }, - { - "title": "Linkin Park โ€ข Don't Stay (CC Karaoke / Instrumental)", - "id": "SyhX2_IGAyY" - }, - { - "title": "Red Hot Chili Peppers โ€ข Give It Away (CC Karaoke / Instrumental)", - "id": "yLh5lyw2vuI" - }, - { - "title": "Red Hot Chili Peppers โ€ข Dosed (CC Karaoke / Instrumental)", - "id": "HRd5xxBR-_Q" - }, - { - "title": "Green Day โ€ข Longview (CC Karaoke / Instrumental) [UVR]", - "id": "XeqhccnuG5w" - }, - { - "title": "Green Day โ€ข Whatsername (CC Karaoke / Instrumental)", - "id": "6s4Hb-Si4O4" - }, - { - "title": "Paramore โ€ข Brick By Boring Brick (CC Karaoke / Instrumental)", - "id": "853PKUw12m0" - }, - { - "title": "Paramore โ€ข Hate To See Your Heart Break (CC Karaoke / Instrumental)", - "id": "e3WYEgyy5og" - }, - { - "title": "Led Zeppelin โ€ข Going To California (CC Karaoke / Instrumental)", - "id": "W1yqQW6_a04" - }, - { - "title": "Blue Oyster Cult โ€ข Burnin For You CC", - "id": "QaeCFjT3oSw" - }, - { - "title": "Billy Joel โ€ข She's Always A Woman (CC Karaoke / Instrumental)", - "id": "2oP2r9IFsXQ" - }, - { - "title": "Linkin Park โ€ข A Place For My Head (CC Karaoke / Instrumental)", - "id": "DWuxfNXTwD0" - }, - { - "title": "Linkin Park โ€ข Battle Symphony (CC Karaoke / Instrumental)", - "id": "hqVMbANf55Y" - }, - { - "title": "Linkin Park โ€ข Runaway (CC Karaoke / Instrumental)", - "id": "pEyEN8EB8j4" - }, - { - "title": "Linkin Park โ€ข The Messenger (CC Karaoke / Instrumental)", - "id": "7Rj7n4GeANE" - }, - { - "title": "Paramore โ€ข Crushcrushcrush (CC Karaoke / Instrumental)", - "id": "DqUk7Talo64" - }, - { - "title": "Paramore โ€ข Last Hope (CC Karaoke / Instrumental)", - "id": "IOxKQU3tdEQ" - }, - { - "title": "Linkin Park โ€ข From The Inside (CC Karaoke / Instrumental)", - "id": "dRBTU7Dq7dk" - }, - { - "title": "Linkin Park โ€ข Shadow Of The Day (CC Karaoke / Instrumental)", - "id": "hRpyFwsWjFY" - }, - { - "title": "Linkin Park โ€ข Burn It Down (CC Karaoke / Instrumental)", - "id": "V5OzDvASeJA" - }, - { - "title": "Led Zeppelin โ€ข Rock And Roll (CC Karaoke / Instrumental) [UVR]", - "id": "mg-bmPbOyFY" - }, - { - "title": "Stone Temple Pilots โ€ข Creep (CC Karaoke / Instrumental)", - "id": "v_SNbbDtJmw" - }, - { - "title": "My Chemical Romance โ€ข Cancer (CC Karaoke / Instrumental)", - "id": "WMRFm5iPZTc" - }, - { - "title": "Green Day โ€ข Good Riddance (Time Of Your Life) (CC Karaoke / Instrumental)", - "id": "9z_xdsRP060" - }, - { - "title": "Green Day โ€ข Jesus Of Suburbia (CC Karaoke / Instrumental)", - "id": "fhqYDOrXXd4" - }, - { - "title": "Green Day โ€ข American Idiot (CC Karaoke / Instrumental)", - "id": "Wz6FullCRwQ" - }, - { - "title": "Muse โ€ข Time Is Running Out (CC Karaoke / Instrumental) [UVR]", - "id": "anNZtfmyTV0" - }, - { - "title": "Muse โ€ข Resistance (CC Karaoke / Instrumental)", - "id": "QXpvg4hIM3U" - }, - { - "title": "Muse โ€ข Uprising (CC Karaoke / Instrumental)", - "id": "hsHRb-k5riw" - }, - { - "title": "Disturbed โ€ข The Sound Of Silence (CC Karaoke / Instrumental)", - "id": "wjUyurHj9CM" - }, - { - "title": "Red Hot Chili Peppers โ€ข Dark Necessities (CC Karaoke / Instrumental)", - "id": "hUTEqB1bmdc" - }, - { - "title": "Red Hot Chili Peppers โ€ข By The Way (CC Karaoke / Instrumental)", - "id": "ujmT4UuBXy4" - }, - { - "title": "Red Hot Chili Peppers โ€ข Dani California (CC Karaoke / Instrumental)", - "id": "r4wFjeDlQ6U" - }, - { - "title": "Coldplay โ€ข Clocks (CC Karaoke / Instrumental)", - "id": "rfmp5R80fIk" - }, - { - "title": "Coldplay โ€ข In My Place (CC Karaoke / Instrumental)", - "id": "E6I-UM9SuHE" - }, - { - "title": "Coldplay โ€ข Trouble (CC Karaoke / Instrumental)", - "id": "wgbHSSIVy-c" - }, - { - "title": "Linkin Park โ€ข One Step Closer (CC Karaoke / Instrumental)", - "id": "FAM5ndohqvE" - }, - { - "title": "Linkin Park โ€ข Faint (CC Karaoke / Instrumental)", - "id": "OPna4C6qPAw" - }, - { - "title": "Linkin Park Waiting For The End (No BV) (CC Karaoke / Instrumental)", - "id": "deAmx_lhr50" - }, - { - "title": "Linkin Park โ€ข Waiting For The End (with Mike as Backing Vocal) (CC Karaoke / Instrumental)", - "id": "ZsM0eGFkTQE" - }, - { - "title": "Avenged Sevenfold โ€ข Nightmare (CC Karaoke / Instrumental)", - "id": "3eRN_LeUJEY" - }, - { - "title": "Avenged Sevenfold โ€ข Danger Line (CC Karaoke / Instrumental)", - "id": "Xwnilku6CKY" - }, - { - "title": "My Chemical Romance โ€ข I'm Not Okay I Promise (CC Karaoke / Instrumental)", - "id": "fn30mIyC2r4" - }, - { - "title": "My Chemical Romance โ€ข Disenchanted (CC Karaoke / Instrumental)", - "id": "UMFlCr4RGv8" - }, - { - "title": "My Chemical Romance โ€ข The Ghost Of You (CC Karaoke / Instrumental)", - "id": "1lK3xYvX0po" - }, - { - "title": "Deftones โ€ข Change In The House Of Flies (CC Karaoke / Instrumental)", - "id": "Vm0akhYCMsA" - }, - { - "title": "David Bowie โ€ข Space Oddity (CC Karaoke / Instrumental)", - "id": "ORkYhw98N5E" - }, - { - "title": "David Bowie โ€ข Starman (CC Karaoke / Instrumental)", - "id": "WwFd6nrKthk" - }, - { - "title": "David Bowie โ€ข Ziggy Stardust (CC Karaoke / Instrumental)", - "id": "l_Jj-Drhn4k" - }, - { - "title": "Paramore โ€ข That's What You Get (CC Karaoke / Instrumental)", - "id": "5PZGMItLdoI" - }, - { - "title": "Paramore โ€ข All I Wanted (CC Karaoke / Instrumental)", - "id": "A5M6pF-xJ3U" - }, - { - "title": "Paramore โ€ข Ain't It Fun (CC Karaoke / Instrumental)", - "id": "MwYEkVbrAds" - }, - { - "title": "Linkin Park โ€ข Breaking The Habit (CC Karaoke / Instrumental)", - "id": "HCG3QFQfpfk" - }, - { - "title": "Linkin Park โ€ข New Divide (CC Karaoke / Instrumental)", - "id": "EDC6wkanT6Y" - }, - { - "title": "Linkin Park โ€ข What I've Done (CC Karaoke / Instrumental)", - "id": "SZ41hVg3cZg" - }, - { - "title": "Green Day โ€ข Wake Me Up When September Ends (CC Karaoke / Instrumental)", - "id": "vgaCRszhyYY" - }, - { - "title": "Green Day โ€ข Basket Case (CC Karaoke / Instrumental)", - "id": "v1E0bVAIixI" - }, - { - "title": "Avenged Sevenfold โ€ข Buried Alive (CC Karaoke / Instrumental)", - "id": "lARf23Pbb3Y" - }, - { - "title": "The Doors โ€ข Break On Through To The Other Side (CC Karaoke / Instrumental)", - "id": "80KbB5rmfIo" - }, - { - "title": "The Doors โ€ข Light My Fire (CC Karaoke / Instrumental)", - "id": "674ptmQJ2FM" - }, - { - "title": "The Doors โ€ข Riders On The Storm (CC Karaoke / Instrumental)", - "id": "mQAlZDTF82w" - }, - { - "title": "Dream Theater โ€ข The Spirit Carries On (CC Karaoke / Instrumental)", - "id": "nNTrwqTAV5E" - }, - { - "title": "Slipknot โ€ข Snuff (CC Karaoke / Instrumental)", - "id": "_hW3tbtfvUo" - }, - { - "title": "Red Hot Chili Peppers โ€ข Under The Bridge (CC Karaoke / Instrumental)", - "id": "-0eMBII6JC0" - }, - { - "title": "Red Hot Chili Peppers โ€ข Can't Stop (CC Karaoke / Instrumental)", - "id": "_JkURlVZnno" - }, - { - "title": "Red Hot Chili Peppers โ€ข Californication (CC Karaoke / Instrumental)", - "id": "GOIFq6bzABk" - }, - { - "title": "Muse โ€ข Unintended (CC Karaoke / Instrumental) [UVR]", - "id": "ASumctCzcRI" - }, - { - "title": "Muse โ€ข Starlight (CC Karaoke / Instrumental)", - "id": "5E0eUcVrjFs" - }, - { - "title": "Linkin Park โ€ข Crawling (CC Karaoke / Instrumental)", - "id": "eqfe70PuOS0" - }, - { - "title": "Linkin Park โ€ข Numb (CC Karaoke / Instrumental)", - "id": "P-MVmxrEjU4" - }, - { - "title": "Linkin Park โ€ข Somewhere I Belong (CC Karaoke / Instrumental)", - "id": "uweqHpeLlOc" - }, - { - "title": "My Chemical Romance โ€ข I Don't Love You (CC Karaoke / Instrumental)", - "id": "G7ehhSUY7TQ" - }, - { - "title": "Paramore โ€ข Decode (CC Karaoke / Instrumental) [UVR]", - "id": "4DB7C-cPtuI" - }, - { - "title": "Green Day โ€ข 21 Guns (CC Karaoke / Instrumental)", - "id": "rZJwmocTO-4" - }, - { - "title": "Coldplay โ€ข Fix You (CC Karaoke / Instrumental)", - "id": "B86z2Jfm_wA" - }, - { - "title": "Coldplay โ€ข Viva La Vida (CC Karaoke / Instrumental)", - "id": "_mE0Mx0LL-0" - }, - { - "title": "Led Zeppelin โ€ข Stairway To Heaven (CC Karaoke / Instrumental) [UVR]", - "id": "1VmXdKsI14M" - }, - { - "title": "Linkin Park โ€ข One More Light (CC Karaoke / Instrumental)", - "id": "Ya8RqonFsQw" - }, - { - "title": "Linkin Park โ€ข Given Up (CC Karaoke / Instrumental)", - "id": "75Os2v5vP-c" - }, - { - "title": "Red Hot Chili Peppers โ€ข Otherside (CC Karaoke / Instrumental)", - "id": "6M8ReyFNFhM" - }, - { - "title": "Red Hot Chili Peppers โ€ข Scar Tissue (CC Karaoke / Instrumental)", - "id": "9Yq1ajqAdcY" - }, - { - "title": "Green Day โ€ข When I Come Around (CC Karaoke / Instrumental)", - "id": "p3921HTlsLk" - }, - { - "title": "Green Day โ€ข Welcome To Paradise (CC Karaoke / Instrumental)", - "id": "fw8uW-XTyk8" - }, - { - "title": "Radiohead โ€ข Creep (CC Karaoke / Instrumental)", - "id": "ZFg3XnyILPk" - }, - { - "title": "Coldplay โ€ข The Scientist (CC Karaoke / Instrumental)", - "id": "inhK1WbEbpg" - }, - { - "title": "Avenged Sevenfold โ€ข Afterlife (CC) [Karaoke] [Instrumental]", - "id": "YGD6GsHT_VM" - }, - { - "title": "Green Day โ€ข Still Breathing (CC) [Karaoke] [Instrumental]", - "id": "ydH-IhlqP2E" - }, - { - "title": "Death โ€ข Lack Of Comprehension (CC) [Karaoke] [Instrumental]", - "id": "Khhlp_VTxqo" - }, - { - "title": "Slipknot โ€ข Unsainted (CC) [Karaoke] [Instrumental]", - "id": "iaqR15Ru9Cw" - }, - { - "title": "Trapt โ€ข Headstrong (CC) [Karaoke] [Instrumental]", - "id": "Ga2ePPLWIsQ" - }, - { - "title": "Gorillaz โ€ข Tomorrow Comes Today (CC) [UVR] [Karaoke] [Instrumental]", - "id": "BRLUA1f9ZpI" - }, - { - "title": "Echo & The Bunnymen โ€ข The Killing Moon (CC) [Karaoke] [Instrumental]", - "id": "zCzxDvmZc9Y" - }, - { - "title": "Led Zeppelin โ€ข Heartbreaker (CC) [Karaoke] [Instrumental]", - "id": "FF4rgBkzITc" - }, - { - "title": "Talking Heads โ€ข Take Me To The River (CC) [UVR] [Karaoke] [Instrumental]", - "id": "VVRGKLXuTzY" - }, - { - "title": "Disturbed โ€ข Immortalized (CC) [Karaoke] [Instrumental]", - "id": "SupIqSAvUf4" - }, - { - "title": "The Black Keys โ€ข Tighten Up (CC) [Karaoke] [Instrumental]", - "id": "oEDk9x7iogA" - }, - { - "title": "Matchbox Twenty โ€ข Unwell (CC) [Karaoke] [Instrumental]", - "id": "7Oiu0Sg-EkI" - }, - { - "title": "Deftones โ€ข Digital Bath (CC) [Karaoke] [Instrumental]", - "id": "czHQrxQ4JVI" - }, - { - "title": "Panic! At The Disco โ€ข Northern Downpour (CC) [UVR] [Karaoke] [Instrumental]", - "id": "MP4PIejH6as" - }, - { - "title": "Panic! At The Disco โ€ข Nine In the Afternoon (CC) [Karaoke] [Instrumental]", - "id": "PmRmjJ4NCRc" - }, - { - "title": "Buffalo Springfield โ€ข For What It's Worth (CC) [Karaoke] [Instrumental]", - "id": "OtPRuNGXebc" - }, - { - "title": "Slipknot โ€ข The Devil In I (CC) [Karaoke] [Instrumental]", - "id": "PRxMWLeDcNY" - }, - { - "title": "My Chemical Romance โ€ข Helena (CC) [Karaoke] [Instrumental]", - "id": "wIb3M-vLbPg" - }, - { - "title": "Muse โ€ข Plug In Baby (CC) [Karaoke] [Instrumental]", - "id": "C2-UyiPo9aE" - }, - { - "title": "My Chemical Romance โ€ข Famous Last Words (CC) [Karaoke] [Instrumental]", - "id": "S_I8_dxGxUI" - }, - { - "title": "Led Zeppelin โ€ข Friends (CC) [Karaoke] [Instrumental]", - "id": "yzE41LFVX8M" - }, - { - "title": "Paramore โ€ข When It Rains (CC) [UVR] [Karaoke] [Instrumental]", - "id": "df9RvbfJB80" - }, - { - "title": "ACDC โ€ข Shot Down In Flames (CC) [Karaoke] [Instrumental]", - "id": "4wvEhh8f9yk" - }, - { - "title": "Nickelback โ€ข How You Remind Me (CC) [Karaoke] [Instrumental]", - "id": "1UJ__iUsWkU" - }, - { - "title": "Slipknot โ€ข Psychosocial (CC) [Karaoke] [Instrumental]", - "id": "VFgfxgd1L_8" - }, - { - "title": "Oasis โ€ข Up In The Sky (CC) [UVR] [Karaoke] [Instrumental]", - "id": "U6jMB7XQ_NA" - }, - { - "title": "Gorillaz โ€ข On Melancholy Hill (CC) [UVR] [Karaoke] [Instrumental]", - "id": "nY7aVBskxxU" - }, - { - "title": "Spin Doctors โ€ข Two Princes (CC) [Karaoke] [Instrumental]", - "id": "1-6GpbVP3A0" - }, - { - "title": "Bad Company โ€ข Shooting Star (CC) [Karaoke] [Instrumental]", - "id": "bD5q2z_4eDE" - }, - { - "title": "Oasis โ€ข Some Might Say (CC) [Karaoke] [Instrumental]", - "id": "Rfa2HL14d_c" - }, - { - "title": "Bruce Springsteen โ€ข The River (CC) [Karaoke] [Instrumental]", - "id": "BFvrA-GJ_cI" - }, - { - "title": "My Chemical Romance โ€ข Welcome To The Black Parade (CC) [Karaoke] [Instrumental]", - "id": "0AWvuWs00Ss" - }, - { - "title": "Red Hot Chili Peppers โ€ข This Velvet Glove (CC) [UVR] [Karaoke] [Instrumental]", - "id": "gGZqtHIP_Q8" - }, - { - "title": "Paramore โ€ข Ignorance (CC) [UVR] [Karaoke] [Instrumental]", - "id": "il2_UaX6h9Q" - }, - { - "title": "Porcupine Tree โ€ข Lightbulb Sun (CC) [Karaoke] [Instrumental]", - "id": "qvfjBmjfBQQ" - }, - { - "title": "Dream Theater โ€ข Misunderstood (CC) [UVR] [Karaoke] [Instrumental]", - "id": "PCm59OpTpuM" - }, - { - "title": "Our Lady Peace โ€ข Clumsy (CC) [UVR] [Karaoke] [Instrumental]", - "id": "Z7vb9I9-wL8" - }, - { - "title": "Train โ€ข Hey, Soul Sister (CC) [Karaoke] [Instrumental]", - "id": "F1Q5F2IExzE" - }, - { - "title": "The Stooges โ€ข I Wanna Be Your Dog (CC) [Karaoke] [Instrumental]", - "id": "kW8BB-od160" - }, - { - "title": "Lou Bega โ€ข Mambo No 5 (CC) [Karaoke] [Instrumental]", - "id": "X_MI5kCzkSo" - }, - { - "title": "America โ€ข Ventura Highway (CC) [Karaoke] [Instrumental]", - "id": "cXwLwKCRwzQ" - }, - { - "title": "Iron Maiden โ€ข Wasted Years (CC) [Karaoke] [Instrumental]", - "id": "li6gMxBGmwE" - }, - { - "title": "Joan Jett & The Blackhearts โ€ข I Love Rock N Roll (CC) [Karaoke] [Instrumental]", - "id": "mDayWwqHONk" - }, - { - "title": "Chicago โ€ข Make Me Smile (CC) [Karaoke] [Instrumental]", - "id": "4NBRhP99TlE" - }, - { - "title": "Linkin Park โ€ข With You (CC) [Karaoke] [Instrumental]", - "id": "cZrbSmOfOs4" - }, - { - "title": "Billy Joel โ€ข Zanzibar (CC) [Karaoke] [Instrumental]", - "id": "P6HyG-k-y3c" - }, - { - "title": "Alexisonfire โ€ข Young Cardinals (CC) [Karaoke] [Instrumental]", - "id": "v1pUa2tGET8" - }, - { - "title": "Blur โ€ข To The End (CC) [Karaoke] [Instrumental]", - "id": "JCXKqusC8d8" - }, - { - "title": "Coldplay โ€ข Warning Sign (CC) [Karaoke] [Instrumental]", - "id": "qlqGSEYOYiQ" - }, - { - "title": "Death Cab For Cutie โ€ข I Will Possess Your Heart (CC) [Karaoke] [Instrumental]", - "id": "0xQBuMUX5ew" - }, - { - "title": "Red Hot Chili Peppers โ€ข Tell Me Baby (CC) [Karaoke] [Instrumental]", - "id": "ECODiFKsCmI" - }, - { - "title": "Stone Temple Pilots โ€ข Interstate Love Song (CC) [Karaoke] [Instrumental]", - "id": "z9yz3PsPZjQ" - }, - { - "title": "Linkin Park โ€ข Roads Untraveled (CC) [Karaoke] [Instrumental]", - "id": "BNcrNdECEh4" - }, - { - "title": "Coldplay โ€ข Life In Technicolor II (CC) [Karaoke] [Instrumental]", - "id": "vKgw_nQAyEU" - }, - { - "title": "Bruce Springsteen โ€ข Born To Run (CC) [Karaoke] [Instrumental]", - "id": "uyZv_jkW7uM" - }, - { - "title": "Motley Crue โ€ข Shout At The Devil (CC) [Karaoke] [Instrumental]", - "id": "-CiDtBw4t5U" - }, - { - "title": "Motley Crue โ€ข Kickstart My Heart (CC) [Karaoke] [Instrumental]", - "id": "yJ1wWi0NHuY" - }, - { - "title": "Grateful Dead โ€ข I Need A Miracle (CC) [Karaoke] [Instrumental]", - "id": "YvnFNQJ3siY" - }, - { - "title": "Iron Maiden โ€ข Phantom Of The Opera (CC) [Karaoke] [Instrumental]", - "id": "2BzjGmkSO94" - }, - { - "title": "Night Ranger โ€ข (You Can Still) Rock In America (CC) [Karaoke] [Instrumental]", - "id": "If3gpqdm9IM" - }, - { - "title": "Linkin Park โ€ข Iridescent (CC) [Karaoke] [Instrumental]", - "id": "fsDNKJCoD7s" - }, - { - "title": "Hoobastank โ€ข The Reason (CC) [Karaoke] [Instrumental]", - "id": "FDg_IThF1bs" - }, - { - "title": "Amber Run โ€ข I Found (CC) [Karaoke] [Instrumental]", - "id": "1uhsdevli0w" - }, - { - "title": "Red Hot Chili Peppers โ€ข Don't Forget Me (CC) [Karaoke] [Instrumental]", - "id": "nYBae15_gjM" - }, - { - "title": "REO Speedwagon โ€ข Take It On The Run (CC) [Karaoke] [Instrumental]", - "id": "SLFtw6woVTU" - }, - { - "title": "Red Hot Chili Peppers โ€ข Wet Sand (CC) [Karaoke] [Instrumental]", - "id": "oHwGrHmj1iA" - }, - { - "title": "Jimi Hendrix โ€ข The Wind Cries Mary (CC) [Karaoke] [Instrumental]", - "id": "J6epizgdXf0" - }, - { - "title": "Hall & Oates โ€ข Private Eyes (CC) [Karaoke] [Instrumental]", - "id": "HSEWLwk-2Uo" - }, - { - "title": "Billy Joel โ€ข Movin Out (Anthony's Song) (CC) [Karaoke] [Instrumental]", - "id": "hZ8dnE5xMug" - }, - { - "title": "Jimi Hendrix โ€ข Castles Made Of Sand (CC) [Karaoke] [Instrumental]", - "id": "4Kmkbjs9f98" - }, - { - "title": "Foreigner โ€ข Cold As Ice (CC) [Karaoke] [Instrumental]", - "id": "TZ-GDRnThgY" - }, - { - "title": "Red Hot Chili Peppers โ€ข The Zephyr Song (CC) [Karaoke] [Instrumental]", - "id": "CqdGFzAIYdI" - }, - { - "title": "Avenged Sevenfold โ€ข So Far Away (With Backing Vocals) (CC) [Karaoke] [Instrumental]", - "id": "roXoxRRTNUU" - }, - { - "title": "Molly Hatchet โ€ข Flirtin With Disaster (CC) [Karaoke] [Instrumental]", - "id": "R_X7Im3OPIU" - }, - { - "title": "Linkin Park โ€ข Points Of Authority (CC) [Karaoke] [Instrumental]", - "id": "AWRXGV8Ve0k" - }, - { - "title": "Billy Joel โ€ข It's Still Rock And Roll To Me (CC) [Karaoke] [Instrumental]", - "id": "vhNDSI38iNo" - }, - { - "title": "Coldplay โ€ข Sparks (CC) [Karaoke] [Instrumental]", - "id": "TusRXioXgVo" - }, - { - "title": "Foreigner โ€ข Juke Box Hero (CC) [Karaoke] [Instrumental]", - "id": "8BFwmO5akoc" - }, - { - "title": "The Bangles โ€ข Walk Like An Egyptian (CC) [Karaoke] [Instrumental]", - "id": "KbeoLNEyIUw" - }, - { - "title": "Linkin Park โ€ข Heavy (feat Kiiara) (CC) [Karaoke] [Instrumental]", - "id": "gTTIkncvJJ4" - }, - { - "title": "Blue Oyster Cult โ€ข Godzilla (CC) [Karaoke] [Instrumental]", - "id": "kDO648hBwZE" - }, - { - "title": "Eddie Money โ€ข Two Tickets To Paradise (CC) [Karaoke] [Instrumental]", - "id": "5lJM96CJ0cw" - }, - { - "title": "Scandal โ€ข The Warrior (CC) [Karaoke] [Instrumental]", - "id": "WdYwQG5Ufhw" - }, - { - "title": "Cheap Trick โ€ข Dream Police (CC) [Karaoke] [Instrumental]", - "id": "ByNlR5Ft2Uo" - }, - { - "title": "Men At Work โ€ข Overkill (CC) [Karaoke] [Instrumental]", - "id": "GWSOodRcS-A" - }, - { - "title": "Chicago โ€ข You're The Inspiration (CC) [Karaoke] [Instrumental]", - "id": "wsNzfajtiD8" - }, - { - "title": "Billy Joel โ€ข Only The Good Die Young (CC) [Karaoke] [Instrumental Lyrics]", - "id": "3Fwa5hZUPMc" - }, - { - "title": "Coldplay โ€ข A Sky Full Of Stars (CC) [Karaoke] [Instrumental Lyrics]", - "id": "UoWgwPWfr1c" - }, - { - "title": "My Chemical Romance โ€ข House Of Wolves (CC) [Karaoke] [Instrumental Lyrics]", - "id": "0KKv6O1ba70" - }, - { - "title": "Foo Fighters โ€ข Another Round (CC) [Karaoke] [Instrumental Lyrics]", - "id": "p699CJwRYXg" - }, - { - "title": "Lily Allen โ€ข The Fear (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ubVUwZBAoLc" - }, - { - "title": "Jane's Addiction โ€ข Jane Says (CC) [Karaoke] [Instrumental Lyrics]", - "id": "t0fxK1CoN8I" - }, - { - "title": "Epica โ€ข Storm The Sorrow (CC) [Karaoke] [Instrumental Lyrics]", - "id": "9nz1ASMbkjI" - }, - { - "title": "Talking Heads โ€ข And She Was (CC) [Karaoke] [Instrumental Lyrics]", - "id": "2aRFwrbshng" - }, - { - "title": "Morcheeba โ€ข Enjoy The Ride (feat Judy Tzuke) (CC) [Karaoke] [Instrumental Lyrics]", - "id": "CljVtWe6T_g" - }, - { - "title": "Wallows โ€ข Are You Bored Yet (feat Clairo) (CC) [Karaoke] [Instrumental Lyrics]", - "id": "G7LWTIGH8F4" - }, - { - "title": "Dashboard Confessional โ€ข Hands Down (CC) [Karaoke] [Instrumental Lyrics]", - "id": "NblnkvnxhOw" - }, - { - "title": "Ed Sheeran โ€ข All Of The Stars (CC) [Karaoke] [Instrumental Lyrics]", - "id": "rAPefvYoymA" - }, - { - "title": "Jonathan Coulton โ€ข Skullcrusher Mountain (CC) [Karaoke] [Instrumental Lyrics]", - "id": "RB9lIY8tur0" - }, - { - "title": "Joy Division โ€ข Love Will Tear Us Apart (CC) [Karaoke] [Instrumental Lyrics]", - "id": "42Nij5mkhV4" - }, - { - "title": "Abnormality โ€ข Visions (CC) [Karaoke] [Instrumental Lyrics]", - "id": "5GyDBA58X80" - }, - { - "title": "Nickelback โ€ข Rockstar (CC) [Karaoke] [Instrumental Lyrics]", - "id": "OnoIpAjNz3Q" - }, - { - "title": "David Bowie โ€ข Lazarus (CC) [Karaoke] [Instrumental Lyrics]", - "id": "zSvcvAHD_zg" - }, - { - "title": "David Bowie โ€ข Heroes (CC) [Karaoke] [Instrumental Lyrics]", - "id": "wuBPU1_wUuw" - }, - { - "title": "Faith No More โ€ข Epic (CC) [Karaoke] [Instrumental Lyrics]", - "id": "qgSWyf9xRi4" - }, - { - "title": "Faith No More โ€ข We Care A Lot (CC) [Karaoke] [Instrumental Lyrics]", - "id": "FQgeXDqWy1Q" - }, - { - "title": "Green Day โ€ข Holiday (CC) [Karaoke] [Instrumental Lyrics]", - "id": "yaEBWqJ2Caw" - }, - { - "title": "Green Day โ€ข Boulevard Of Broken Dreams (CC) [Karaoke] [Instrumental Lyrics]", - "id": "6ZTxc2F8e3c" - }, - { - "title": "Grateful Dead โ€ข Ripple (CC) [Karaoke] [Instrumental Lyrics]", - "id": "fqB_XpOps2c" - }, - { - "title": "The Guess Who โ€ข No Time (CC) [Karaoke] [Instrumental Lyrics]", - "id": "F5OteRR9mog" - }, - { - "title": "Depeche Mode โ€ข Precious (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Fy__Mpsf7K4" - }, - { - "title": "Twenty One Pilots โ€ข Stressed Out (CC) [Karaoke] [Instrumental Lyrics]", - "id": "hFCk54DjZH0" - }, - { - "title": "Twenty One Pilots โ€ข Ride (CC) [Karaoke] [Instrumental Lyrics]", - "id": "QH4ozIW5enc" - }, - { - "title": "Muse โ€ข Guiding Light (CC) [Karaoke] [Instrumental Lyrics]", - "id": "_K2Hlx6hqx8" - }, - { - "title": "Deftones โ€ข Passenger (CC) [Karaoke] [Instrumental Lyrics]", - "id": "H8AXSxx1B2I" - }, - { - "title": "Deftones โ€ข Hole In The Earth (CC) [Karaoke] [Instrumental Lyrics]", - "id": "aI8MVgf3Vg4" - }, - { - "title": "Deftones โ€ข Entombed (CC) [Karaoke] [Instrumental Lyrics]", - "id": "BaAzUcMFDX4" - }, - { - "title": "Deftones โ€ข Cherry Waves (CC) [Karaoke] [Instrumental Lyrics]", - "id": "N5PYOgAobTY" - }, - { - "title": "Lamb Of God โ€ข Redneck (CC) [Karaoke] [Instrumental Lyrics]", - "id": "WLT-gq3GuU8" - }, - { - "title": "Lamb Of God โ€ข Laid To Rest (CC) [Karaoke] [Instrumental Lyrics]", - "id": "KQ0eTKWm3H4" - }, - { - "title": "Pantera โ€ข This Love (CC) [Karaoke] [Instrumental Lyrics]", - "id": "kQmQdsI2v-A" - }, - { - "title": "Red Hot Chili Peppers โ€ข Hard To Concentrate (CC) [Karaoke] [Instrumental Lyrics]", - "id": "jb0jH4gpAkk" - }, - { - "title": "Black Sabbath โ€ข Into The Void (CC) [Karaoke] [Instrumental Lyrics]", - "id": "I-GZZ5PbMyw" - }, - { - "title": "Black Sabbath โ€ข NIB (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ZTFzMHNfkbQ" - }, - { - "title": "Dream Theater โ€ข Wait For Sleep (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ANCwgzq3od0" - }, - { - "title": "Dream Theater โ€ข The Answer Lies Within (CC) [Karaoke] [Instrumental Lyrics]", - "id": "HLUb2p72YcE" - }, - { - "title": "Dream Theater โ€ข Hollow Years (CC) [Karaoke] [Instrumental Lyrics]", - "id": "k3hV8IWDfjk" - }, - { - "title": "Blur โ€ข Song 2 (CC) [Karaoke] [Instrumental Lyrics]", - "id": "cq21c73K1L4" - }, - { - "title": "Blur โ€ข Parklife (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Y1d6BHPZWG0" - }, - { - "title": "The Cars โ€ข My Best Friend's Girl (CC) [Karaoke] [Instrumental Lyrics]", - "id": "7ZJ-QEnr8PU" - }, - { - "title": "Green Day โ€ข Redundant (CC) [Karaoke] [Instrumental Lyrics]", - "id": "-mdV-o_8Ykw" - }, - { - "title": "Green Day โ€ข Platypus (I Hate You) (CC) [Karaoke] [Instrumental Lyrics]", - "id": "fPZKUhYo2w0" - }, - { - "title": "Green Day โ€ข F.O.D. (CC) [Karaoke] [Instrumental Lyrics]", - "id": "TW0pncfFGjM" - }, - { - "title": "Green Day โ€ข Emenius Sleepus (CC) [Karaoke] [Instrumental Lyrics]", - "id": "B8auB0KvFMU" - }, - { - "title": "Iron Maiden โ€ข 2 Minutes To Midnight (CC) [Karaoke] [Instrumental Lyrics]", - "id": "JaxbZQfBcRs" - }, - { - "title": "Iron Maiden โ€ข The Trooper (CC) [Karaoke] [Instrumental Lyrics]", - "id": "gUpLQNtL0i4" - }, - { - "title": "Arctic Monkeys โ€ข Piledriver Waltz (CC) [Karaoke] [Instrumental Lyrics]", - "id": "l0-1M9Hw5Q0" - }, - { - "title": "Motley Crue โ€ข Looks That Kill (CC) [Karaoke] [Instrumental Lyrics]", - "id": "CRKpqm0iaRU" - }, - { - "title": "Joan Jett โ€ข I Hate Myself For Loving You (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Hunxpe05In4" - }, - { - "title": "Matchbox Twenty โ€ข Bent (CC) [Karaoke] [Instrumental Lyrics]", - "id": "TfmCKFGzf7o" - }, - { - "title": "Noel Gallagher's High Flying Birds โ€ข In The Heat Of The Moment (CC) [Karaoke]", - "id": "YJ9fu-DK05c" - }, - { - "title": "Screaming Trees โ€ข Nearly Lost You (CC) [Karaoke] [Instrumental Lyrics]", - "id": "x0Y5rDBWxMU" - }, - { - "title": "Paramore โ€ข Pressure (CC) [Karaoke] [Instrumental Lyrics]", - "id": "juCf_5gBGi4" - }, - { - "title": "Paramore โ€ข Hard Times (CC) [Karaoke] [Instrumental Lyrics]", - "id": "rmKx7qYIqK0" - }, - { - "title": "Panic! At The Disco โ€ข Always (CC) [Karaoke] [Instrumental Lyrics]", - "id": "PhnGppvw-ZA" - }, - { - "title": "HIM โ€ข Wings Of A Butterfly (CC) [Karaoke] [Instrumental Lyrics]", - "id": "d2aWA3uSy8Y" - }, - { - "title": "Black Sabbath โ€ข Children Of The Grave (CC) [Karaoke] [Instrumental Lyrics]", - "id": "VuknzPJZxd0" - }, - { - "title": "Green Day โ€ข Letterbomb (CC) [Karaoke] [Instrumental Lyrics]", - "id": "_w2-yZC-XFY" - }, - { - "title": "Green Day โ€ข In The End (CC) [Karaoke] [Instrumental Lyrics]", - "id": "C8QXyxdZJ6I" - }, - { - "title": "The Flaming Lips โ€ข Yoshimi Battles The Pink Robots Pt 1 (CC) [Karaoke]", - "id": "q7q970H8kpc" - }, - { - "title": "My Chemical Romance โ€ข Na Na Na (CC) [Karaoke] [Instrumental Lyrics]", - "id": "M5dYAKCUvoI" - }, - { - "title": "My Chemical Romance โ€ข Bulletproof Heart (CC) [Karaoke] [Instrumental Lyrics]", - "id": "vIFeZxaN0xU" - }, - { - "title": "Train โ€ข Drops Of Jupiter (CC) [Karaoke] [Instrumental Lyrics]", - "id": "fjOrDT2ICrs" - }, - { - "title": "Van Halen โ€ข You Really Got Me (CC) [Karaoke] [Instrumental Lyrics]", - "id": "RZ9KzltfVug" - }, - { - "title": "Mercyful Fate โ€ข Evil (CC) [Karaoke] [Instrumental Lyrics]", - "id": "cv3G1W2n9-k" - }, - { - "title": "Green Day โ€ข Sassafras Roots (CC) [Karaoke] [Instrumental Lyrics]", - "id": "VDAdy1Lcuqs" - }, - { - "title": "Killswitch Engage โ€ข Starting Over (CC) [Karaoke] [Instrumental Lyrics]", - "id": "NzKoICoHd0k" - }, - { - "title": "Dream Theater โ€ข Wither (CC) [Karaoke] [Instrumental Lyrics]", - "id": "BkOsJIHj8ik" - }, - { - "title": "Yes โ€ข Owner Of A Lonely Heart (CC) [Karaoke] [Instrumental Lyrics]", - "id": "UIaO5lW1rIw" - }, - { - "title": "Blur โ€ข Beetlebum (CC) [Karaoke] [Instrumental Lyrics]", - "id": "rMWmsb9GWLk" - }, - { - "title": "David Bowie โ€ข Suffragette City (CC) [Karaoke] [Instrumental Lyrics]", - "id": "SrLTyLsqpxI" - }, - { - "title": "Linkin Park โ€ข Lost In The Echo (CC) [Karaoke] [Instrumental Lyrics]", - "id": "TryaKF68Scs" - }, - { - "title": "Van Halen โ€ข Runnin With The Devil (CC) [Karaoke] [Instrumental Lyrics]", - "id": "9d73xIKnQW0" - }, - { - "title": "Van Halen โ€ข Ain't Talkin Bout Love (CC) [Karaoke] [Instrumental Lyrics]", - "id": "jt9avLaqPng" - }, - { - "title": "Children Of Bodom โ€ข Are You Dead Yet (CC) [Karaoke] [Instrumental Lyrics]", - "id": "rPAiwB7_67Q" - }, - { - "title": "Panic! At The Disco โ€ข She Had The World (CC) [Karaoke] [Instrumental Lyrics]", - "id": "UkjYTWPz9-4" - }, - { - "title": "Panic! At The Disco โ€ข I Write Sins Not Tragedies (CC) [Karaoke] [Instrumental]", - "id": "Eby9kjH3wXE" - }, - { - "title": "Morcheeba โ€ข Otherwise (CC) [Karaoke] [Instrumental Lyrics]", - "id": "tbjLcutIYGU" - }, - { - "title": "Slipknot โ€ข Left Behind (CC) [Karaoke] [Instrumental Lyrics]", - "id": "CsYKhL0j9dw" - }, - { - "title": "Green Day โ€ข 21st Century Breakdown (CC) [Karaoke] [Instrumental Lyrics]", - "id": "GcgEpq6Lh4U" - }, - { - "title": "Spacehog โ€ข In The Meantime (CC) [Karaoke] [Instrumental Lyrics]", - "id": "J7kob56Glk8" - }, - { - "title": "Ed Sheeran โ€ข BLOW /w Chris Stapleton & Bruno Mars (CC) [Karaoke] [Instrumental]", - "id": "r6v7nMrkrp4" - }, - { - "title": "Shinedown โ€ข Second Chance (CC) [Karaoke] [Instrumental Lyrics]", - "id": "4eH5a1oriRc" - }, - { - "title": "Muse โ€ข Bliss (CC) [Karaoke] [Instrumental Lyrics]", - "id": "k6JZ5C3ZTyM" - }, - { - "title": "Grateful Dead โ€ข Box Of Rain (CC) [Karaoke] [Instrumental Lyrics]", - "id": "PJNwhlq2YRs" - }, - { - "title": "Motley Crue โ€ข Girls, Girls, Girls (CC) [Karaoke] [Instrumental Lyrics]", - "id": "86-iReo3aBQ" - }, - { - "title": "Linkin Park โ€ข Hit The Floor (CC) [Karaoke] [Instrumental Lyrics]", - "id": "mh5l4akND2Q" - }, - { - "title": "Spin Doctors โ€ข Little Miss Can't Be Wrong (CC) [Karaoke] [Instrumental Lyrics]", - "id": "cPPzGPCZpKY" - }, - { - "title": "Kenny Rogers โ€ข The Gambler (CC) [Karaoke] [Instrumental Lyrics]", - "id": "BpDVRLVrcZs" - }, - { - "title": "P.O.D. โ€ข Youth Of The Nation (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Lec-uw2dpc0" - }, - { - "title": "Hootie & The Blowfish โ€ข Hold My Hand (CC) [Karaoke] [Instrumental Lyrics]", - "id": "4a_DwGV5-sA" - }, - { - "title": "Len โ€ข Steal My Sunshine (CC) [Karaoke] [Instrumental Lyrics]", - "id": "wLtAo0MTsUw" - }, - { - "title": "Whitesnake โ€ข Here I Go Again (BVs) (CC) [Karaoke] [Instrumental Lyrics]", - "id": "B4a2RsRoCT8" - }, - { - "title": "Lacuna Coil โ€ข Reckless (CC) [Karaoke] [Instrumental Lyrics]", - "id": "qdue8NsPOVY" - }, - { - "title": "Alphaville โ€ข Forever Young (CC) [Karaoke] [Instrumental Lyrics]", - "id": "fs5bM7c3hg4" - }, - { - "title": "Stone Temple Pilots โ€ข Sour Girl (CC) [Karaoke] [Instrumental Lyrics]", - "id": "0q5iWWRe-gY" - }, - { - "title": "Green Day โ€ข Stuck With Me (CC) [Karaoke] [Instrumental Lyrics]", - "id": "6EQyOuPBBlI" - }, - { - "title": "Death Grips โ€ข Takyon (CC) [Karaoke] [Instrumental Lyrics]", - "id": "POn67licBPw" - }, - { - "title": "Death Grips โ€ข Guillotine (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Zfd8jj7dnfc" - }, - { - "title": "Coldplay โ€ข Adventure Of A Lifetime (CC) [Karaoke] [Instrumental Lyrics]", - "id": "B_nXpPN4c0g" - }, - { - "title": "Coldplay โ€ข Amsterdam (CC) [Karaoke] [Instrumental Lyrics]", - "id": "6znnlIPiKHU" - }, - { - "title": "Hootie & The Blowfish โ€ข Only Wanna Be With You (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ur56gogWZ30" - }, - { - "title": "Hootie & The Blowfish โ€ข Let Her Cry (CC) [Karaoke] [Instrumental Lyrics]", - "id": "fe873f3vf8M" - }, - { - "title": "Stone Temple Pilots โ€ข Trippin On A Hole In A Paper Heart (CC) [Karaoke]", - "id": "BczXgBYqu8Q" - }, - { - "title": "Jonathan Coulton โ€ข Re: Your Brains (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ViajkI2g2Rc" - }, - { - "title": "Jonathan Coulton โ€ข Ikea (CC) [Karaoke] [Instrumental Lyrics]", - "id": "2_8mSxrnX5c" - }, - { - "title": "Jonathan Coulton โ€ข Big Bad World One (CC) [Karaoke] [Instrumental Lyrics]", - "id": "8dLJrPmluxc" - }, - { - "title": "Muse โ€ข Aftermath (CC) [Karaoke] [Instrumental Lyrics]", - "id": "1bDZFkTPcfI" - }, - { - "title": "Ed Sheeran โ€ข Drunk (CC) [Karaoke] [Instrumental Lyrics]", - "id": "AOWJ1tBOcHU" - }, - { - "title": "LCD Soundsystem โ€ข North American Scum (CC) [Karaoke] [Instrumental Lyrics]", - "id": "nIqLI1HKSrk" - }, - { - "title": "The Dillinger Escape Plan โ€ข Limerent Death (CC) [Karaoke] [Instrumental Lyrics]", - "id": "30-oVqThN6Y" - }, - { - "title": "Circa Survive โ€ข Kicking Your Crosses Down (CC) [Karaoke] [Instrumental Lyrics]", - "id": "1Bq_uDrV-tc" - }, - { - "title": "The Bouncing Souls โ€ข The Gold Song (CC) [UVR] [Karaoke] [Instrumental Lyrics]", - "id": "RbdgVXAP8yQ" - }, - { - "title": "Kyuss โ€ข Allen's Wrench (CC) [UVR] [Karaoke] [Instrumental Lyrics]", - "id": "PHhEOb4JuLs" - }, - { - "title": "Alice Cooper โ€ข School's Out (CC) [Karaoke] [Instrumental Lyrics]", - "id": "pPl1Ymnpeag" - }, - { - "title": "Muse โ€ข Defector (CC) [Karaoke] [Instrumental Lyrics]", - "id": "lo5MHPiiuu0" - }, - { - "title": "Breaking Wheel โ€ข Shoulder To The Plow (CC) [Karaoke] [Instrumental Lyrics]", - "id": "6tC_WDKj1no" - }, - { - "title": "Psychostick โ€ข BEER (CC) [Karaoke] [Instrumental Lyrics]", - "id": "i8rMREqNP0A" - }, - { - "title": "Flogging Molly โ€ข The Seven Deadly Sins (CC) [Karaoke] [Instrumental Lyrics]", - "id": "uwnAN5gdj2Q" - }, - { - "title": "In Flames โ€ข Disconnected (CC) [Karaoke] [Instrumental Lyrics]", - "id": "jPqbBIbf224" - }, - { - "title": "The Sword โ€ข Freya (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ZI7AnRUfQFQ" - }, - { - "title": "Action Bronson โ€ข Baby Blue (feat Chance the Rapper) (CC) [Karaoke] [Instrumental Lyrics]", - "id": "TcOVtUHFnKc" - }, - { - "title": "Mastodon โ€ข Blood And Thunder (CC) [Karaoke] [Instrumental Lyrics]", - "id": "IefzXYl_kmQ" - }, - { - "title": "Paramore โ€ข This Is Why (CC) [Karaoke] [Instrumental Lyrics]", - "id": "aweV-ko_zIs" - }, - { - "title": "Disturbed โ€ข Stricken (CC) [Karaoke] [Instrumental Lyrics]", - "id": "7KuiPps4taY" - }, - { - "title": "Stuck In The Sound โ€ข Toy Boy (CC) [Karaoke] [Instrumental Lyrics]", - "id": "cEtXZrBDzzI" - }, - { - "title": "Paramore โ€ข Fake Happy (CC) [Karaoke] [Instrumental Lyrics]", - "id": "LhnMNW_vPsM" - }, - { - "title": "Gorillaz โ€ข Clint Eastwood (CC) [Karaoke] [Instrumental Lyrics]", - "id": "EkA_5M-OLgk" - }, - { - "title": "Lit โ€ข My Own Worst Enemy (CC) [Karaoke] [Instrumental Lyrics]", - "id": "wNelP4rbAKQ" - }, - { - "title": "Bad Religion โ€ข New Dark Ages (CC) [Karaoke] [Instrumental Lyrics]", - "id": "VH-bcRCMms0" - }, - { - "title": "Oasis โ€ข Wonderwall (CC) [Karaoke] [Instrumental Lyrics]", - "id": "I4RwbQ9zUEU" - }, - { - "title": "All Shall Perish โ€ข There Is Nothing Left (CC) [Karaoke] [Instrumental Lyrics]", - "id": "hI7tUAWnKek" - }, - { - "title": "Tom Connors โ€ข I Look Good On You (CC) [Karaoke] [Instrumental Lyrics]", - "id": "DYtYLqJ1-hQ" - }, - { - "title": "Pantera โ€ข Walk (CC) [Karaoke] [Instrumental Lyrics]", - "id": "U6REer3gz6o" - }, - { - "title": "Green Day โ€ข Coming Clean (CC) [Karaoke] [Instrumental Lyrics]", - "id": "x27dzKBgEkw" - }, - { - "title": "Green Day โ€ข Reject (CC) [Karaoke] [Instrumental Lyrics]", - "id": "5dlVkL1Uymc" - }, - { - "title": "Green Day โ€ข Viva La Gloria! (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ArnkUt7fSaQ" - }, - { - "title": "Deftones โ€ข Sextape (CC) [Karaoke] [Instrumental Lyrics]", - "id": "40KZ62JjhtQ" - }, - { - "title": "Deftones โ€ข Minerva (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ULdAjTJ-WQw" - }, - { - "title": "L7 โ€ข Pretend We're Dead (CC) [Karaoke] [Instrumental Lyrics]", - "id": "TxIVpmzXvjU" - }, - { - "title": "Red Hot Chili Peppers โ€ข I Could Have Lied (CC) [Karaoke] [Instrumental Lyrics]", - "id": "fGiIFvOLDTo" - }, - { - "title": "Placebo โ€ข The Bitter End (CC) [Karaoke] [Instrumental Lyrics]", - "id": "d01GarHZjzE" - }, - { - "title": "Stone Temple Pilots โ€ข Kitchenware & Candybars (CC) [Karaoke] [Instrumental Lyrics]", - "id": "asw01mbeLwc" - }, - { - "title": "The Black Keys โ€ข Turn Blue (CC) [Karaoke] [Instrumental Lyrics]", - "id": "8f__YTN64tU" - }, - { - "title": "The Black Keys โ€ข Bullet In The Brain (CC) [Karaoke] [Instrumental Lyrics]", - "id": "AKYM2dc9GjI" - }, - { - "title": "Portugal. The Man โ€ข Feel It Still (CC) [Karaoke] [Instrumental Lyrics]", - "id": "-sxG0D31g7U" - }, - { - "title": "Avenged Sevenfold โ€ข Critical Acclaim (CC) [Karaoke] [Instrumental Lyrics]", - "id": "-EiSM1KjkC8" - }, - { - "title": "Creeper โ€ข Born Cold (CC) [Karaoke] [Instrumental Lyrics]", - "id": "HMi27TnIZGs" - }, - { - "title": "The Black Keys โ€ข Gold On The Ceiling (CC) [Karaoke] [Instrumental Lyrics]", - "id": "rdrI23II6EI" - }, - { - "title": "Franz Ferdinand โ€ข Can't Stop Feeling (CC) [Karaoke] [Instrumental Lyrics]", - "id": "LhyuL0GiPps" - }, - { - "title": "The Doors โ€ข The Crystal Ship (CC) [Karaoke] [Instrumental Lyrics]", - "id": "4Bg_iSGHs7k" - }, - { - "title": "The Doors โ€ข Touch Me (CC) [Karaoke] [Instrumental Lyrics]", - "id": "B18nwO0WKio" - }, - { - "title": "The Doors โ€ข Love Her Madly (CC) [Karaoke] [Instrumental Lyrics]", - "id": "AADzzq2dbHA" - }, - { - "title": "Avenged Sevenfold โ€ข Bat Country (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Bd-MgL6gJSk" - }, - { - "title": "Gojira โ€ข Stranded (CC) [Karaoke] [Instrumental Lyrics]", - "id": "96ZV63CPAsI" - }, - { - "title": "The Doors โ€ข Love Me Two Times (CC) [Karaoke] [Instrumental Lyrics]", - "id": "c5k069lk2CI" - }, - { - "title": "Avenged Sevenfold โ€ข Gunslinger (CC) [Karaoke] [Instrumental Lyrics]", - "id": "aPeBOra6dMI" - }, - { - "title": "Muse โ€ข Sing For Absolution (CC) [Karaoke] [Instrumental Lyrics]", - "id": "p02c4n0xSE4" - }, - { - "title": "Muse โ€ข Sunburn (CC) [Karaoke] [Instrumental Lyrics]", - "id": "CQ3-QibaeQM" - }, - { - "title": "My Chemical Romance โ€ข Teenagers (CC) [Karaoke] [Instrumental Lyrics]", - "id": "H0hdgMMM_Mo" - }, - { - "title": "KoRn โ€ข Coming Undone (CC) [Karaoke] [Instrumental Lyrics]", - "id": "hjRT51mf8Vk" - }, - { - "title": "The Used โ€ข Pretty Handsome Awkward (CC) [Karaoke] [Instrumental Lyrics]", - "id": "-pCQemk2QYw" - }, - { - "title": "David Bowie โ€ข Let's Dance (CC) [Karaoke] [Instrumental Lyrics]", - "id": "YC5orEtpCCI" - }, - { - "title": "The Smiths โ€ข This Charming Man (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Afck_c9wsQA" - }, - { - "title": "The Cars โ€ข Good Times Roll (CC) [Karaoke] [Instrumental Lyrics]", - "id": "5iH4YDgO_sU" - }, - { - "title": "Silverchair โ€ข Tomorrow (CC) [Karaoke] [Instrumental Lyrics]", - "id": "x67sqGsuzr8" - }, - { - "title": "311 โ€ข Amber (CC) [Karaoke] [Instrumental Lyrics]", - "id": "mSA8KMYUqQA" - }, - { - "title": "Sleeping With Sirens โ€ข Can't Hang (CC) [Karaoke] [Instrumental Lyrics]", - "id": "aibjbQ591B8" - }, - { - "title": "Panic At The Disco โ€ข Build God, Then We'll Talk (CC) [Karaoke] [Instrumental]", - "id": "z-GpKZWjOYQ" - }, - { - "title": "Goo Goo Dolls โ€ข Iris (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ICNHJ-uHtsc" - }, - { - "title": "Arctic Monkeys โ€ข Do Me A Favour (CC) [Karaoke] [Instrumental Lyrics]", - "id": "CFYScgROpSI" - }, - { - "title": "My Chemical Romance โ€ข Summertime (CC) [Karaoke] [Instrumental Lyrics]", - "id": "0jICWWhlvX0" - }, - { - "title": "Third Eye Blind โ€ข Semi Charmed Life (CC) [Karaoke] [Instrumental Lyrics]", - "id": "VIzpqhlcD_M" - }, - { - "title": "Chevelle โ€ข The Red (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ASdMdGH2rVI" - }, - { - "title": "Green Day โ€ข Give Me Novacaine, She's A Rebel (CC) [Karaoke] [Instrumental]", - "id": "Sfo7TeZAvIM" - }, - { - "title": "Green Day โ€ข Last Night On Earth (CC) [Karaoke] [Instrumental Lyrics]", - "id": "OMGro9uj7fk" - }, - { - "title": "Slipknot โ€ข Dead Memories (CC) [Karaoke] [Instrumental Lyrics]", - "id": "pSd5QMLF2Co" - }, - { - "title": "Hole โ€ข Celebrity Skin (CC) [Karaoke] [Instrumental Lyrics]", - "id": "w9d3Q9fhIwk" - }, - { - "title": "Paramore โ€ข Still Into You (CC) [Karaoke] [Instrumental Lyrics]", - "id": "4gCDwayFLMc" - }, - { - "title": "Goo Goo Dolls โ€ข Name (CC) [Karaoke] [Instrumental Lyrics]", - "id": "tYaFqThPeR8" - }, - { - "title": "Slipknot โ€ข Wait And Bleed (CC) [Karaoke] [Instrumental Lyrics]", - "id": "NTC3cMGpJ-I" - }, - { - "title": "Dream Theater โ€ข Another Day (CC) [Karaoke] [Instrumental Lyrics]", - "id": "kT8WaiVrt_M" - }, - { - "title": "Foo Fighters โ€ข Best of You (CC) [Karaoke] [Instrumental Lyrics]", - "id": "t6BHmy2o3hQ" - }, - { - "title": "Muse โ€ข Supermassive Black Hole (CC) [Karaoke] [Instrumental Lyrics]", - "id": "PeOgrmDdmOc" - }, - { - "title": "The Smiths โ€ข Heaven Knows I'm Miserable Now (CC) [Karaoke] [Instrumental]", - "id": "LZvRuYB0p8E" - }, - { - "title": "My Chemical Romance โ€ข Mama (CC) [Karaoke] [Instrumental Lyrics]", - "id": "1kBDID9rZDM" - }, - { - "title": "Muse โ€ข Madness (CC) [Karaoke] [Instrumental Lyrics]", - "id": "eXG0p_e8qzs" - }, - { - "title": "Talking Heads โ€ข Psycho Killer (CC) [Karaoke] [Instrumental Lyrics]", - "id": "jF2SQJ6bN9Y" - }, - { - "title": "Green Day โ€ข Macy's Day Parade (CC) [Karaoke] [Instrumental Lyrics]", - "id": "fdR_jtO1OUo" - }, - { - "title": "All Time Low โ€ข Dear Maria, Count Me In (CC) [Karaoke] [Instrumental Lyrics]", - "id": "hlteotxlnIc" - }, - { - "title": "Stone Sour โ€ข Through Glass (CC) [Karaoke] [Instrumental Lyrics]", - "id": "NeT4ZomrfZI" - }, - { - "title": "Stone Temple Pilots โ€ข Plush (CC) [Karaoke] [Instrumental Lyrics]", - "id": "CaEOO19_fNo" - }, - { - "title": "Coldplay โ€ข Yellow (CC) [Karaoke] [Instrumental Lyrics]", - "id": "1Fv5IVf9KAc" - }, - { - "title": "Oasis โ€ข Champagne Supernova (CC) [Karaoke] [Instrumental Lyrics]", - "id": "kwKw7K0uPD8" - }, - { - "title": "Skillet โ€ข Monster (CC) [Karaoke] [Instrumental Lyrics]", - "id": "aACUzL8XiOM" - }, - { - "title": "Oasis โ€ข Live Forever (CC) [Karaoke] [Instrumental Lyrics]", - "id": "GcjimNM1v1c" - }, - { - "title": "Moby โ€ข Extreme Ways (CC) [Karaoke] [Instrumental Lyrics]", - "id": "aDjGAP7ldf0" - }, - { - "title": "Muse โ€ข Hysteria (CC) [Karaoke] [Instrumental Lyrics]", - "id": "_JNGZPNmaVk" - }, - { - "title": "Gorillaz โ€ข Feel Good Inc (CC) [Karaoke] [Instrumental Lyrics]", - "id": "IY6pJuYGUZM" - }, - { - "title": "Nickelback โ€ข Never Gonna Be Alone (CC) [Karaoke] [Instrumental Lyrics]", - "id": "1PBkU-qHiH8" - }, - { - "title": "The Black Keys โ€ข Lonely Boy (CC) [Karaoke] [Instrumental Lyrics]", - "id": "pdoJCExWreY" - }, - { - "title": "Green Day โ€ข Castaway (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Q9KHM0dQO3M" - }, - { - "title": "Nickelback โ€ข Photograph (CC) [Karaoke] [Instrumental Lyrics]", - "id": "qTphCTAUhUg" - }, - { - "title": "Royal Blood โ€ข Figure It Out (CC) [Karaoke] [Instrumental Lyrics]", - "id": "8kAUJY2q6o8" - }, - { - "title": "Royal Blood โ€ข Little Monster (CC) [Karaoke] [Instrumental Lyrics]", - "id": "4RNvLQvC36g" - }, - { - "title": "The Cars โ€ข Just What I Needed (CC) [Karaoke] [Instrumental Lyrics]", - "id": "KC93sqb3uOU" - }, - { - "title": "Green Day โ€ข Outlaws (CC) [Karaoke] [Instrumental Lyrics]", - "id": "eJzZLbx65dk" - }, - { - "title": "Dinosaur Jr โ€ข Feel The Pain (CC) [Karaoke] [Instrumental Lyrics]", - "id": "v5wSVDGroX8" - }, - { - "title": "Slipknot โ€ข Before I Forget (CC) [Karaoke] [Instrumental Lyrics]", - "id": "MmsRaJNzNKE" - }, - { - "title": "Oasis โ€ข Don't Look Back In Anger (CC) [Karaoke] [Instrumental Lyrics]", - "id": "hwDqwdWQzD4" - }, - { - "title": "Converge โ€ข Reap What You Sow (CC) [Karaoke] [Instrumental Lyrics]", - "id": "M7EAdkRGngM" - }, - { - "title": "Talk Talk โ€ข It's My Life (CC) [Karaoke] [Instrumental Lyrics]", - "id": "fUdzDLXRFuc" - }, - { - "title": "Shinedown โ€ข The Crow & The Butterfly (CC) [Karaoke] [Instrumental Lyrics]", - "id": "2AMSfNT2SfI" - }, - { - "title": "girl in red โ€ข I'll Call You Mine (CC) [Karaoke] [Instrumental Lyrics]", - "id": "VWgojUat5ew" - }, - { - "title": "girl in red โ€ข . (CC) [Karaoke] [Instrumental Lyrics]", - "id": "EKrbRAtqPa0" - }, - { - "title": "girl in red โ€ข midnight love (CC) [Karaoke] [Instrumental Lyrics]", - "id": "WjXouewIQgA" - }, - { - "title": "girl in red โ€ข we fell in love in october (CC) [Karaoke] [Instrumental Lyrics]", - "id": "oSJm0XQIWgo" - }, - { - "title": "Peter Cetera โ€ข Glory Of Love (CC) [Karaoke] [Instrumental Lyrics]", - "id": "LWa3_ggRCqE" - }, - { - "title": "A Flock Of Seagulls โ€ข The More You Live, The More You Love (CC) [Karaoke] [Instrumental Lyrics]", - "id": "JCnyWqOOs80" - }, - { - "title": "Bad Religion โ€ข Better Off Dead (CC) [UVR] [Karaoke] [Instrumental Lyrics]", - "id": "26ZKo9iS_Qk" - }, - { - "title": "Green Day โ€ข Amy (CC) [Karaoke] [Instrumental Lyrics]", - "id": "tHo7r3iHWv0" - }, - { - "title": "Green Day โ€ข Baby Eyes (CC) [Karaoke] [Instrumental Lyrics]", - "id": "f3ApYmOVdQg" - }, - { - "title": "Green Day โ€ข Fuck Time (CC) [Karaoke] [Instrumental Lyrics]", - "id": "b4YxCtmU-7U" - }, - { - "title": "The Subways โ€ข Rock & Roll Queen (CC) [Karaoke] [Instrumental Lyrics]", - "id": "mhC-zR1f1X4" - }, - { - "title": "Grateful Dead โ€ข Touch Of Grey (CC) [Karaoke] [Instrumental Lyrics]", - "id": "s7lgc3hXFr8" - }, - { - "title": "Middle Class Rut โ€ข Sad To Know (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Mm4c5-QNNto" - }, - { - "title": "La Dispute โ€ข Rhodonite & Grief (CC) [Karaoke] [Instrumental Lyrics]", - "id": "f1wkTey4L-w" - }, - { - "title": "Damone โ€ข Out Here All Night (CC) [Karaoke] [Instrumental Lyrics]", - "id": "07fx0nRxvDA" - }, - { - "title": "Clutch โ€ข The Mob Goes Wild (CC) [Karaoke] [Instrumental Lyrics]", - "id": "uvYFiaVjC84" - }, - { - "title": "The Used โ€ข The Taste Of Ink (CC) [Karaoke] [Instrumental Lyrics]", - "id": "4QL1-aeZ8Mc" - }, - { - "title": "The Used โ€ข Blood On My Hands (CC) [Karaoke] [Instrumental Lyrics]", - "id": "frPjfwofYOg" - }, - { - "title": "Jonathan Coulton โ€ข Code Monkey (CC) [Karaoke] [Instrumental Lyrics]", - "id": "kDCuYD7Ltrg" - }, - { - "title": "Simple Plan โ€ข Welcome To My Life (CC) [Karaoke] [Instrumental Lyrics]", - "id": "_IFjam3qu-I" - }, - { - "title": "Depeche Mode โ€ข Mercy In You (CC) [Karaoke] [Instrumental Lyrics]", - "id": "M5gNSSlXZsw" - }, - { - "title": "Pet Shop Boys โ€ข Heart (CC) [Karaoke] [Instrumental Lyrics]", - "id": "UFLeCvyCJeY" - }, - { - "title": "Oliver Tree โ€ข Hurt (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Pm9d7F5TqJc" - }, - { - "title": "Converge โ€ข Under Duress (CC) [Karaoke] [Instrumental Lyrics]", - "id": "aFCk_Lcavws" - }, - { - "title": "Tegan And Sara โ€ข Call It Off (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ms2jZKJT9MY" - }, - { - "title": "Our Lady Peace โ€ข Right Behind You (Mafia) (CC) [UVR] [Karaoke] [Instrumental Lyrics]", - "id": "O3iWA5OAiNU" - }, - { - "title": "Green Day โ€ข Warning (CC) [Karaoke] [Instrumental Lyrics]", - "id": "vKe1UcB_wXk" - }, - { - "title": "David Bowie โ€ข Cracked Actor (CC) [Karaoke] [Instrumental Lyrics]", - "id": "O7GROsVerEs" - }, - { - "title": "Black Dresses โ€ข Angel Hair (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Zi9_3o3tWGQ" - }, - { - "title": "Black Dresses โ€ข Left Arm Of Life (CC) [Karaoke] [Instrumental Lyrics]", - "id": "ZnOGaNdytzg" - }, - { - "title": "Bad Religion โ€ข Age Of Unreason (CC) [UVR] [Karaoke] [Instrumental Lyrics]", - "id": "rcEScMaAN8s" - }, - { - "title": "Dream Theater โ€ข Light Fuse And Get Away (CC) [Karaoke] [Instrumental Lyrics]", - "id": "VB_IXSa7jxQ" - }, - { - "title": "Them Crooked Vultures โ€ข New Fang (CC) [Karaoke] [Instrumental Lyrics]", - "id": "Kh_hS4F8IlM" - }, - { - "title": "Run The Jewels โ€ข Blockbuster Night Part 1 (CC) [Karaoke] [Instrumental Lyrics]", - "id": "9S-54lIMj94" - }, - { - "title": "Graham Coxon โ€ข You & I (CC) [Karaoke] [Instrumental Lyrics]", - "id": "722jr2hZJlU" - }, - { - "title": "Graham Coxon โ€ข Standing On My Own Again (CC) [Karaoke] [Instrumental Lyrics]", - "id": "SgTTutlu0pg" - }, - { - "title": "Idlewild โ€ข You Held The World In Your Arms (CC) [Karaoke] [Instrumental Lyrics]", - "id": "nOTRi40ILPs" - }, - { - "title": "Jane's Addiction โ€ข Idiots Rule (CC) [Karaoke] [Instrumental Lyrics]", - "id": "1SE3M3YH1bA" - }, - { - "title": "Motley Crue โ€ข Rattlesnake Shake (CC) [Karaoke Instrumental Lyrics]", - "id": "kS8OrPQ5-qk" - }, - { - "title": "Third Eye Blind โ€ข Don't Believe A Word (CC) [Karaoke Instrumental Lyrics]", - "id": "MBXGTrJhDaA" - }, - { - "title": "Panic! At The Disco โ€ข Hey Look Ma, I Made It (CC) [Karaoke Instrumental Lyrics]", - "id": "1UXfCPh4v6M" - }, - { - "title": "Jane's Addiction โ€ข Mountain Song (CC) [Karaoke Instrumental Lyrics]", - "id": "u6TK4IcwG8k" - }, - { - "title": "Panic! At The Disco โ€ข This is Gospel (CC) [Karaoke Instrumental Lyrics]", - "id": "5Xq4tVWxQRk" - }, - { - "title": "Them Crooked Vultures โ€ข Scumbag Blues (CC) [Karaoke Instrumental Lyrics]", - "id": "Rbef0Ym-vU8" - }, - { - "title": "Them Crooked Vultures โ€ข Dead End Friends (CC) [Karaoke Instrumental Lyrics]", - "id": "0t_vxcseJx4" - }, - { - "title": "Killswitch Engage โ€ข The Arms of Sorrow (CC) [Karaoke Instrumental Lyrics]", - "id": "Rp7knPT4ZAg" - }, - { - "title": "Three Days Grace โ€ข Give Me A Reason (CC) [Karaoke Instrumental Lyrics]", - "id": "w2--C8EIqgg" - }, - { - "title": "Shinedown โ€ข Fly From the Inside (CC) [Karaoke Instrumental Lyrics]", - "id": "1OIs0VStFxw" - }, - { - "title": "Aurelio Voltaire โ€ข Riding a Black Unicorn (CC) [Karaoke Instrumental Lyrics]", - "id": "Jhs0UG_uZiU" - }, - { - "title": "Panic! At The Disco โ€ข Crazy=Genius (CC) [Karaoke Instrumental Lyrics]", - "id": "DNjesaCnMhs" - }, - { - "title": "Midnight Riders โ€ข One Bad Man (CC) [Karaoke Instrumental Lyrics]", - "id": "Bt4i0wh7Cms" - }, - { - "title": "Midnight Riders โ€ข Midnight Ride (CC) [Karaoke Instrumental Lyrics]", - "id": "9fmKZTOt_Rg" - }, - { - "title": "Mastodon โ€ข High Road (CC) [Karaoke Instrumental Lyrics]", - "id": "s_47gsTr6pU" - }, - { - "title": "Miike Snow โ€ข Genghis Khan (CC) [Karaoke Instrumental Lyrics]", - "id": "AxDbA16PrVc" - }, - { - "title": "Pink Floyd โ€ข Shine On You Crazy Diamond (CC) [Karaoke Instrumental Lyrics]", - "id": "os-yunT-AIA" - }, - { - "title": "Pink Floyd โ€ข Brain Damage (CC) [Karaoke Instrumental Lyrics]", - "id": "QC-rD8sRwrQ" - }, - { - "title": "Panic! At The Disco โ€ข Nails For Breakfast, Tacks For Snacks (CC) [Karaoke Instrumental Lyrics]", - "id": "TZRySpEsucE" - }, - { - "title": "Panic! At The Disco โ€ข London Beckoned Songs About Money Written By Machines (CC) [Karaoke]", - "id": "-It5bTYQ35w" - }, - { - "title": "Muse โ€ข Assassin (CC) [Karaoke Instrumental Lyrics]", - "id": "AQ4wx9nxAAs" - }, - { - "title": "KoRn โ€ข Oildale (CC) [Karaoke Instrumental Lyrics]", - "id": "1V5gTJXikLI" - }, - { - "title": "KoRn โ€ข Inside Out (CC) [Karaoke Instrumental Lyrics]", - "id": "SSV4czAE8cI" - }, - { - "title": "Coldplay โ€ข A Whisper (CC) [Karaoke Instrumental Lyrics]", - "id": "CVqcktRT6Ms" - }, - { - "title": "Gorillaz โ€ข Every Planet We Reach Is Dead (CC) [Karaoke Instrumental Lyrics]", - "id": "J6NbRHjN3Ik" - }, - { - "title": "Samhain โ€ข Mother of Mercy (CC) [Karaoke Instrumental Lyrics]", - "id": "776adnMcyiw" - }, - { - "title": "Depeche Mode โ€ข Rush (CC) [Karaoke Instrumental Lyrics]", - "id": "0C7OidQKQXw" - }, - { - "title": "Stan Bush โ€ข Till All Are One (CC) [Karaoke Instrumental Lyrics]", - "id": "tFzR4zZwDXA" - }, - { - "title": "Manowar โ€ข Kings of Metal MMXIV (CC) [Karaoke Instrumental Lyrics]", - "id": "my76LWfksiQ" - }, - { - "title": "Sleeping With Sirens โ€ข If I'm James Dean, You're Audrey Hepburn (CC) [Karaoke Instrumental Lyrics]", - "id": "hir53QC2Qaw" - }, - { - "title": "Green Day โ€ข Last of the American Girls (CC) [Karaoke Instrumental Lyrics]", - "id": "e5lmxjUX5kg" - }, - { - "title": "Jane's Addiction โ€ข Whores (CC) [Karaoke Instrumental Lyrics]", - "id": "MpbOFg69Uds" - }, - { - "title": "The Pretenders โ€ข Blue Christmas (CC) [Karaoke Instrumental Lyrics]", - "id": "pLogsjtgL44" - }, - { - "title": "Hollywood Principle โ€ข Breathing Underwater (CC) [Karaoke Instrumental Lyrics]", - "id": "vG3SuhMieuU" - }, - { - "title": "Blur โ€ข The Puritan (CC) [Karaoke Instrumental Lyrics]", - "id": "aV5AkGTSvwc" - }, - { - "title": "Panic At The Disco โ€ข Hurricane (CC) [Karaoke Instrumental Lyrics]", - "id": "CdhH7iLJzwE" - }, - { - "title": "Alice in Chains โ€ข Got Me Wrong (CC) [Karaoke Instrumental Lyrics]", - "id": "9CyZu0U6QP8" - }, - { - "title": "KoRn โ€ข Last Legal Drug (CC) [Karaoke Instrumental Lyrics]", - "id": "Vxe8rL3tETc" - }, - { - "title": "Adele โ€ข Rolling In The Deep (CC) [Karaoke Instrumental Lyrics]", - "id": "IEw9Pc3AA64" - }, - { - "title": "Pink Floyd โ€ข Another Brick In The Wall (Part 2) (CC) [Karaoke Instrumental Lyrics]", - "id": "xnTRKM7-jGM" - }, - { - "title": "Pink Floyd โ€ข Run Like Hell (CC) [Karaoke Instrumental Lyrics]", - "id": "ukTsK7pQxN8" - }, - { - "title": "Pink Floyd โ€ข Us And Them (CC) [Karaoke Instrumental Lyrics]", - "id": "RM5dHFENVBw" - }, - { - "title": "Death Grips โ€ข Warping (CC) [Karaoke Instrumental Lyrics]", - "id": "jfXysCbS5OM" - }, - { - "title": "Dream Theater โ€ข The Count of Tuscany (Pt2) (CC) [Karaoke Instrumental Lyrics]", - "id": "PFKF0V27Xsc" - }, - { - "title": "The Muffs โ€ข Outer Space (CC) [Karaoke Instrumental Lyrics]", - "id": "yEQthVh0zuY" - }, - { - "title": "Third Eye Blind โ€ข Never Let You Go (CC) [Karaoke Instrumental Lyrics]", - "id": "vZOgDcvC5Yw" - }, - { - "title": "Stone Temple Pilots โ€ข Sex Type Thing (CC) [Karaoke Instrumental Lyrics]", - "id": "ZJ5LgEkR8w4" - }, - { - "title": "Pantera โ€ข Cowboys From Hell (CC) [Karaoke Instrumental Lyrics]", - "id": "aeZYSD5CVIk" - }, - { - "title": "Blur โ€ข Charmless Man (CC) [Karaoke Instrumental Lyrics]", - "id": "hNSu8vnl0UY" - }, - { - "title": "The Mission โ€ข Another Fall From Grace (CC) [Karaoke Instrumental Lyrics]", - "id": "q8Eic7T5MwM" - }, - { - "title": "Radiohead โ€ข High & Dry (CC) [Karaoke Instrumental Lyrics]", - "id": "f75AmOYk0vY" - }, - { - "title": "Porcupine Tree โ€ข Sleep Together (CC) [Karaoke Instrumental Lyrics]", - "id": "Ej77wUCqIlE" - }, - { - "title": "Pink Floyd โ€ข Wish You Were Here (CC) [Karaoke Instrumental Lyrics]", - "id": "tuTX3VOr5oo" - }, - { - "title": "Pink Floyd โ€ข Hey You (CC) [Karaoke Instrumental Lyrics]", - "id": "Yfzrig2TpbY" - }, - { - "title": "Pink Floyd โ€ข Money (CC) [Karaoke Instrumental Lyrics]", - "id": "KJNOON4dNuQ" - }, - { - "title": "Pink Floyd โ€ข Dogs (CC) [Karaoke Instrumental Lyrics]", - "id": "61Nhg-gMNXQ" - }, - { - "title": "Pink Floyd โ€ข Pigs (Three Different Ones) (CC) [Karaoke Instrumental Lyrics]", - "id": "6-q2vgufHUw" - }, - { - "title": "Pink Floyd โ€ข Mother (CC) [Karaoke Instrumental Lyrics]", - "id": "-G0DhI-Djkk" - }, - { - "title": "Muse โ€ข Knights of Cydonia (CC) [Karaoke Instrumental Lyrics]", - "id": "BAihUthMbKU" - }, - { - "title": "Middle Class Rut โ€ข New Low (CC) [Karaoke Instrumental Lyrics]", - "id": "N687U7-U-WI" - }, - { - "title": "Gorillaz โ€ข Demon Days (CC) [Karaoke Instrumental Lyrics]", - "id": "TEn12k1ycwE" - }, - { - "title": "Freezepop โ€ข Science Genius Girl (CC) [Karaoke Instrumental Lyrics]", - "id": "oVQF_nOQCEI" - }, - { - "title": "KoRn โ€ข Shoots and Ladders (CC) [Karaoke Instrumental Lyrics]", - "id": "oXvjAMqPjkU" - }, - { - "title": "KoRn โ€ข Souvenir (CC) [Karaoke Instrumental Lyrics]", - "id": "I8hdm_AAdSY" - }, - { - "title": "KoRn โ€ข Here to Stay (CC) [Karaoke Instrumental Lyrics]", - "id": "5IABGVtcqZs" - }, - { - "title": "Timmy & The Lords of the Underworld โ€ข Timmy (CC) [Karaoke Instrumental Lyrics]", - "id": "4DLlTRuKuH8" - } - ], - "@AtomicKaraoke": [ - { - "title": "RAINDROPS ARE FALLING ON MY HEAD - B.J. Thomas (HD Karaoke)", - "id": "XjgpUTxKdUs" - }, - { - "title": "YOU ARE MY SONG - Martin Nievera (HD Karaoke)", - "id": "8W1bZ0h-wDk" - }, - { - "title": "SOMETHING NEW IN MY LIFE - Stephen Bishop (HD Karaoke)", - "id": "fM94jNLwblU" - }, - { - "title": "WILDFLOWER - Skylark (HD Karaoke)", - "id": "JUqXSVfoTSU" - }, - { - "title": "FIRST LOVE - Seals & Crofts (HD Karaoke)", - "id": "Er5FTsZwUyo" - }, - { - "title": "TIBOK - Earl Agustin (HD Karaoke)", - "id": "-SaFSZu8L7g" - }, - { - "title": "SWEET BABY - George Duke & Stanley Clarke (HD Karaoke)", - "id": "Av11EkgQ7ms" - }, - { - "title": "AS LONG AS YOU LOVE ME - Backstreet Boys (HD Karaoke)", - "id": "h0oahkr7dBk" - }, - { - "title": "HERE, THERE AND EVERYWHERE - The Beatles (HD Karaoke)", - "id": "fBpVo5p0QAY" - }, - { - "title": "TONIGHT I GIVE IN - Angela Boill (HD Karaoke)", - "id": "00x5hBxQ06A" - }, - { - "title": "OUR LOVE (Don't Throw It All Away) - Andy Gibb (HD Karaoke)", - "id": "dFRukOJFWFs" - }, - { - "title": "YOU ARE MY EVERYTHING - Calloway (HD Karaoke)", - "id": "9qihgfEZF58" - }, - { - "title": "I'LL PLAY FOR YOU - Seals & Crofts (HD Karaoke)", - "id": "tz_UwgOi0mk" - }, - { - "title": "HALO - Beyonce (HD Karaoke)", - "id": "zFnPX0eixWc" - }, - { - "title": "AKALA KO'Y LANGIT - Siakol (HD Karaoke)", - "id": "GOBr4oWq1tQ" - }, - { - "title": "PANTROPIKO - BINI (HD Karaoke)", - "id": "dOrmvYNzJNc" - }, - { - "title": "IKAW ANG IIBIGIN KO", - "id": "E4nJcsxhCkg" - }, - { - "title": "HILING - Jay-R Siaboc (HD Karaoke)", - "id": "iwe3B6a-2cc" - }, - { - "title": "MY GIRL - The Temptations (HD Karaoke)", - "id": "YO9o8Evkx3k" - }, - { - "title": "HAVE YOU EVER SEEN THE RAIN - Creedence Clearwater Revival (HD Karaoke)", - "id": "G7bLIuyitvU" - }, - { - "title": "ANYONE CAN SEE - Irene Cara (HD Karaoke)", - "id": "WWYq-5tHIsA" - }, - { - "title": "GETTING TO KNOW EACH OTHER - Ariel Rivera (HD Karaoke)", - "id": "Yz8QVffoiTU" - }, - { - "title": "IF I FELL - The Beatles (HD Karaoke)", - "id": "1PnHFxYnblA" - }, - { - "title": "I COULD NOT ASK FOR MORE - Edwin McCain (HD Karaoke)", - "id": "tuY084gN7fA" - }, - { - "title": "I'D STILL SAY YES - Klimaxx (HD Karaoke)", - "id": "kzaY74eviaM" - }, - { - "title": "GUSTO KO NANG BUMITAW - Morisette Amon (HD Karaoke)", - "id": "7Yb4Prp5IVA" - }, - { - "title": "ANGEL - Fra Lippo Lippi (HD Karaoke)", - "id": "V3XzHTel6EQ" - }, - { - "title": "SPOLARIUM - Eraserheads (HD Karaoke)", - "id": "ee9LfX4P9Us" - }, - { - "title": "SUMAYAW SUMUNOD - Boyfriends (HD Karaoke)", - "id": "KI_tgyDMVpc" - }, - { - "title": "I WANT IT THAT WAY - Backstreet Boys (HD Karaoke)", - "id": "d0kXgwre-Xs" - }, - { - "title": "THE LONG AND WINDING ROAD - The Beatles (HD Karaoke)", - "id": "ETpX2HK8XaE" - }, - { - "title": "KISS ME - Sixpence None The Richer (HD Karaoke)", - "id": "9eZWGqK1T9c" - }, - { - "title": "JEALOUS GUY - John Lennon (HD Karaoke)", - "id": "81_T_mWAzOI" - }, - { - "title": "GIRL ON FIRE - Alicia Keys (HD Karaoke)", - "id": "nyMXI4Izgh4" - }, - { - "title": "SOME PEOPLE - Fra Lippo Lippi (HD Karaoke)", - "id": "a4Sy3ucTTto" - }, - { - "title": "KASALANAN - Orient Pearl (HD Karaoke)", - "id": "MxDe4bM3oeg" - }, - { - "title": "YOU CAN DO MAGIC - America (HD Karaoke)", - "id": "Hv_700W27V4" - }, - { - "title": "AAMININ - 6 Cyclemind (HD Karaoke)`", - "id": "CCwYXIe-LJw" - }, - { - "title": "HALF CRAZY - Johnny Gill (HD Karaoke)", - "id": "I9lujnnRIk4" - }, - { - "title": "THIS TIME I'LL BE SWEETER - Angela Bofill (HD Karaoke)", - "id": "Kylmp3aQHEA" - }, - { - "title": "WORDS GET IN THE WAY - Gloria Estefan & Miami Sound Machine (HD Karaoke)", - "id": "IYRh6wPCw1E" - }, - { - "title": "YOU ARE THE LOVE OF MY LIFE - George Benson & Roberta Flack (HD Karaoke)", - "id": "r7H_9PjsWcU" - }, - { - "title": "IF THE LOVE FITS, WEAR IT - Leslie Pearl (HD Karaoke)", - "id": "bhLx_dNvQR8" - }, - { - "title": "WHEN I WAS YOUR MAN - Bruno Mars (HD Karaoke)", - "id": "7yMA3ek3c2Q" - }, - { - "title": "YOU NEVER TOLD ME YOU LOVE ME - Gabriel (HD Karaoke)", - "id": "nHZI8dI-jjc" - }, - { - "title": "HANGGANG NGAYON - Ogie Alcasid & Regine Velasquez (HD Karaoke)", - "id": "NA6SMVuNWrQ" - }, - { - "title": "IF THE FEELING IS GONE - Ella Mae Saison (HD Karaoke)", - "id": "rNH3nec_j2E" - }, - { - "title": "GIVE ME A CHANCE - Ric Segreto (HD Karaoke)", - "id": "nGJzlPwEV1Y" - }, - { - "title": "I NEED YOU NOW - Alias(HD Karaoke)", - "id": "J68fJRRujwE" - }, - { - "title": "IF I EVER FALL IN LOVE AGAIN - Kenny Rogers & Anne Murray (HD Karaoke)", - "id": "WTN-RRqgmJ0" - }, - { - "title": "THE HURT - Kalapana (HD Karaoke)", - "id": "SDYftFtpPQg" - }, - { - "title": "KAHIT KONTING PAGTINGIN - Ric Segreto (HD Karaoke)", - "id": "wUimn_UZCLU" - }, - { - "title": "LOVE IS THE ANSWER - England Dan & John Ford Coley (HD Karaoke)", - "id": "RVKYzLij8lU" - }, - { - "title": "NATATAWA AKO - Gabriella (HD Karaoke)", - "id": "gvI4y82GPBE" - }, - { - "title": "EVERYTIME I SEE YOU - Fra Lippo Lippi (HD Karaoke)", - "id": "eE8KuTbO-q8" - }, - { - "title": "DIE WITH A SMILE - Lady Gaga & Bruno Mars (HD Karaoke)", - "id": "CzTBXAlid8s" - }, - { - "title": "FLASHLIGHT - Jessie J (HD Karaoke)", - "id": "1f5vdUwJNaE" - }, - { - "title": "I THINK I'M IN LOVE - Kuh Ledesma (HD Karaoke)", - "id": "03_Ky67a8CI" - }, - { - "title": "HINAHANAP HANAP KITA - Rivermaya (HD Karaoke)", - "id": "uCTx8b7r7fE" - }, - { - "title": "ROAR - Katy Perry (HD Karaoke)", - "id": "icyYMD0Fs4Q" - }, - { - "title": "PARTING TIME - Rockstar (HD Karaoke)", - "id": "zQxwLxS_YOw" - }, - { - "title": "APT - Rose & Bruno Mars (HD Karaoke)", - "id": "vOgBxn_PZFc" - }, - { - "title": "LISTEN - Beyonce (HD Karaoke)", - "id": "C_zvTrtj0fk" - }, - { - "title": "EYE IN THE SKY - The Allan Parsons Project (HD Karaoke)", - "id": "BQ3pKsLi2kk" - }, - { - "title": "AND I LOVE HER - Beatles (HD Karaoke)", - "id": "pvbFxxMg8jw" - }, - { - "title": "I'LL NEVER GET OVER YOU GETTING OVER ME - Expose (HD Karaoke)", - "id": "W-CaIQ0QECU" - }, - { - "title": "HOW DID YOU KNOW - Gary Valenciano (HD Karaoke)", - "id": "9kz3q41rSZY" - }, - { - "title": "SIRENA - Gloc-9 feat. Ebe Dancel (HD Karaoke)", - "id": "DRS1oLHFB4Q" - }, - { - "title": "SUDDENLY - Olivia Newton John feat. Cliff Richard (HD Karaoke)", - "id": "6S6yC5EuVfs" - }, - { - "title": "STUPID LOVE - Salbakuta (HD Karaoke)", - "id": "sQOIU-tO3SA" - }, - { - "title": "WHEN LOVE AND HATE COLLIDE - Def Leppard (HD Karaoke)", - "id": "WXgQf_XHKXc" - }, - { - "title": "IKAW LANG ANG AKING MAHAL - Brownman Revival (HD Karaoke)", - "id": "UE5Zm45eqWc" - }, - { - "title": "YOU'RE STILL MY MAN - Whitney Houston (HD Karaoke)", - "id": "34bpqW3Ipz4" - }, - { - "title": "COOL OFF - Yeng Constantino (HD Karaoke)", - "id": "otlBgx8ksGo" - }, - { - "title": "SHE - Elvis Costello (HD Karaoke)", - "id": "A0gP971wvY4" - }, - { - "title": "TOGETHER IN ELECTRIC DREAMS - Philip Oakley & Giorgio Moroder (HD Karaoke)", - "id": "ZVDhb-ush24" - }, - { - "title": "FEELS LIKE HEAVEN - Fiction Factory (HD Karaoke)", - "id": "qLeYLm8im5g" - }, - { - "title": "LAPIT - Yeng Constantino (HD Karaoke)", - "id": "NJMK-9gCMdo" - }, - { - "title": "FLOWERS - Miley Cyrus (HD Karaoke)", - "id": "BG5bJRa3sBQ" - }, - { - "title": "I DON'T WANT TO LOSE YOUR LOVE - John O'Banion (HD Karaoke)", - "id": "S2LlzOQlBFk" - }, - { - "title": "ESPECIALLY FOR YOU - Kylie Minogue & Jason Donovan (HD Karaoke)", - "id": "L48ZimFM-6U" - }, - { - "title": "PALAGI - TJ Monterde (HD Karaoke)", - "id": "-Ji_rJnKB_c" - }, - { - "title": "I JUST CALLED TO SAY I LOVE YOU - Stevie Wonder (HD Karaoke)", - "id": "psNE9XUiTjU" - }, - { - "title": "ALIPIN AKO - Liezel Garcia (HD Karaoke)", - "id": "vOGR8oT0dD4" - }, - { - "title": "WHERE DO I GO FROM HERE - England Dan & John Ford Coley (HD Karaoke)", - "id": "yxOyt5_lmaY" - }, - { - "title": "NEVER GONNA LET YOU GO - Sergio Mendes (HD Karaoke)", - "id": "E9KcmhwjFwg" - }, - { - "title": "ANYTHING FOR YOU - Gloria Estefan & Miami Sound Machine (HD Karaoke)", - "id": "WAKYTaBM0BU" - }, - { - "title": "NOTHING'S GONNA CHANGE MY LOVE FOR YOU - George Benson (HD Karaoke)", - "id": "3TTZeLN1nnc" - }, - { - "title": "TWO STEPS BEHIND - Def Leppard (HD Karaoke)", - "id": "6Be8Uvdc1A8" - }, - { - "title": "IPAGPATAWAD MO - Mayonnaise (HD Karaoke)", - "id": "Z0XCugg8WSc" - }, - { - "title": "YOU'VE LOST THAT LOVIN' FEELIN' - Hall & Oates (HD Karaoke)", - "id": "sqGlZvrmWtA" - }, - { - "title": "SALAMIN, SALAMIN -BINI (HD Karaoke)", - "id": "_D4d9oRGrlY" - }, - { - "title": "EWAN - Imago (HD Karaoke)", - "id": "t4Rh3cmIGao" - }, - { - "title": "I CAN'T TELL YOU WHY - Eagles (HD Karaoke)", - "id": "Iswb5lEX_QM" - }, - { - "title": "NGAYON AT KAILANMAN - Basil Valdez (HD Karaoke)", - "id": "1fv44ho6UxU" - }, - { - "title": "DANCE WITH MY FATHER - Luther Vandross (HD Karaoke)", - "id": "-l24u_d_OJk" - }, - { - "title": "I LOVE YOU - Celine Dion (HD Karaoke)", - "id": "i1mkfHnyVhY" - }, - { - "title": "WHY DO WE ALWAYS HURT THE ONES WE LOVE - Dan Hill (HD Karaoke)", - "id": "B3qbUTzG0Ak" - }, - { - "title": "Il MONDO - Engelbert Humperdinck (HD Karaoke)", - "id": "aAX_p13Idwo" - }, - { - "title": "SARA - Starship (HD Karaoke)", - "id": "Xlsp19llwJM" - }, - { - "title": "WE'VE GOT TONIGHT - Kenny Rogers & Sheena Easton (HD Karaoke)", - "id": "PudSOYRO76E" - }, - { - "title": "FROM A DISTANCE - Bette Midler (HD Karaoke)", - "id": "32QDVtc8yaI" - }, - { - "title": "HINDI NA NGA - This Band (HD Karaoke)", - "id": "VzmvNleHcvE" - }, - { - "title": "WHERE DO BROKEN HEARTS GO - Whitney Houston (HD Karaoke)", - "id": "vruUrZl_xt0" - }, - { - "title": "PERPEKTO - Dong Abay (HD Karaoke)", - "id": "j-2Tb-q_lgw" - }, - { - "title": "LOVE OF MY LIFE - Queen (HD Karaoke)", - "id": "hRI6Y36kffQ" - }, - { - "title": "SANA - I Belong to the Zoo (HD Karaoke)", - "id": "rzIAgwNn6SQ" - }, - { - "title": "DON'T LET ME DOWN - The Beatles (HD Karaoke)", - "id": "BCgbBfTDEOU" - }, - { - "title": "SALAMAT - Yeng Constantino (HD Karaoke)", - "id": "fV0d0CLFj9Q" - }, - { - "title": "SA SUSUNOD NA HABANG BUHAY - Ben&Ben (HD Karaoke)", - "id": "IFldyh7IPiw" - }, - { - "title": "PUSONG LIGAW - Jericho Rosales (HD Karaoke)", - "id": "QKE_flf1RQk" - }, - { - "title": "MAHAL KO O MAHAL AKO - KZ Tandingan (HD Karaoke)", - "id": "4vfIqydNC4o" - }, - { - "title": "IKAW ANG SAGOT - Tom Rodriguez (HD Karaoke)", - "id": "sQdwuYVyG4k" - }, - { - "title": "YAKAP SA DILIM - Orange & Lemons (HD Karaoke)", - "id": "mOy--c3W9to" - }, - { - "title": "SA NGALAN NG PAG IBIG - December Avenue (HD Karaoke)", - "id": "3j3buH5jukE" - }, - { - "title": "RAINING IN MANILA - Lola Amour (HD Karaoke)", - "id": "2jJMEAfSZa0" - }, - { - "title": "IKAW LANG - Nobita (HD Karaoke)", - "id": "YIgowrg8jIg" - }, - { - "title": "YOUR EYES - Cook da Books (HD Karaoke)", - "id": "4VF_zZnfsPo" - }, - { - "title": "MAYBE THIS TIME - Sarah Geronimo (HD Karaoke)", - "id": "N9rJxn7OpIg" - }, - { - "title": "HEAVEN KNOWS (This Angel Has Flown) - Orange & Lemons (HD Karaoke)", - "id": "HhUSUhhwWGE" - }, - { - "title": "WAG NA WAG MONG SASABIHIN - Kitchie Nadal (HD Karaoke)", - "id": "bgvUTnfZav4" - }, - { - "title": "ONE LAST CRY - Brian McKnight (HD Karaoke)", - "id": "T32OK3R60t4" - }, - { - "title": "TWO LESS LONELY PEOPLE IN THE WORLD (Kita Kita OST) - KZ Tandingan (HD Karaoke)", - "id": "7Z-YposXHIU" - }, - { - "title": "THE ONLY EXCEPTION - Paramore (HD Karaoke)", - "id": "H2n_goCa0bE" - }, - { - "title": "WHEN YOU SAY NOTHING AT ALL - Ronan Keating (HD Karaoke)", - "id": "IpXuQdPhj7Q" - }, - { - "title": "DI NA MULI - Janine Teรฑoso (HD Karaoke)", - "id": "YdHLg9XiYUY" - }, - { - "title": "CRAZIER - Taylor Swift (HD Karaoke)", - "id": "ruKEx0lqhxc" - }, - { - "title": "I'LL NEVER GET ENOUGH OF YOU - Air Supply (HD Karaoke)", - "id": "5R3U-8S1qfk" - }, - { - "title": "SELOS - Shaira (HD Karaoke)", - "id": "1zop4XR66-w" - }, - { - "title": "PLEASE DON'T ASK ME - John Farnham (HD Karaoke)", - "id": "crF8R6qiBp0" - }, - { - "title": "FALLIN - Janno Gibbs (HD Karaoke)", - "id": "Otqd1tuYitk" - }, - { - "title": "SUPERSTAR - Carpenters (HD Karaoke)", - "id": "XDI7UYfyMQA" - }, - { - "title": "DON'T FORGET TO REMEMBER - Bee Gees (HD Karaoke)", - "id": "VQJKXVy67K0" - }, - { - "title": "CHANCES - Air Supply (HD Karaoke)", - "id": "WNV7TqlgwAo" - }, - { - "title": "PANGARAP KO ANG IBIGIN KA - Regine Velasquez (HD Karaoke)", - "id": "v7pVBAebzkw" - }, - { - "title": "CRAZY - Kenny Rogers (HD Karaoke)", - "id": "khnsjOmPZ4A" - }, - { - "title": "YUN KA - Willie Revillame (HD Karaoke)", - "id": "zNdkgTPF2cc" - }, - { - "title": "HANGGANG NGAYON - Kyla (HD Karaoke)", - "id": "BB7tnLs3LBY" - }, - { - "title": "KAHIT SANDALI - Jennylyn Mercado (HD Karaoke)", - "id": "5dzG2208-AU" - }, - { - "title": "SAY THAT YOU LOVE ME - Martin Nievera (HD Karaoke)", - "id": "ws1g8m2ASwc" - }, - { - "title": "ARAW-GABI - Regine Velasquez (HD Karaoke)", - "id": "uaDxrvzuelk" - }, - { - "title": "IKAW - Yeng Constantino (HD Karaoke)", - "id": "rd521RNIpwE" - }, - { - "title": "TAGPUAN - Moira Dela Torre (HD Karaoke)", - "id": "khQ2RENULtY" - }, - { - "title": "I'D RATHER - Luther Vandross (HD Karaoke)", - "id": "dsKVA9n2uhA" - }, - { - "title": "HABANG AKO'Y NABUBUHAY - Sanshai (HD Karaoke)", - "id": "ZCPGpu30OLM" - }, - { - "title": "WANDERING - James Taylor (HD Karaoke)", - "id": "ei5gggNr5B8" - }, - { - "title": "BUT IF YOU LEAVE ME - Junior (HD Karaoke)", - "id": "L6cFarUExQc" - }, - { - "title": "PUT YOUR HEAD ON MY SHOULDER - Paul Anka (HD Karaoke)", - "id": "jVH4lQDOQrM" - }, - { - "title": "NO MORE LONELY NIGHTS - Paul McCartney (HD Karaoke)", - "id": "PPDDOoByMHA" - }, - { - "title": "IN MY LIFE - Beatles (HD Karaoke)", - "id": "CtOEDEPD_lw" - }, - { - "title": "DI KO NA MAPIPIGILAN - SexBomb Dancers (HD Karaoke)", - "id": "HNy41EFCJcs" - }, - { - "title": "I LOVE YOU - Climax Blues Band (HD Karaoke)", - "id": "R-SkTXHlvME" - }, - { - "title": "KUNG PARA SA 'YO - Willie Revillame (HD Karaoke)", - "id": "QM7wlr4rcek" - }, - { - "title": "I WON'T HOLD YOU BACK - Toto (HD Karaoke)", - "id": "9Bl8lqIzo0w" - }, - { - "title": "LET IT GO - Idina Menzel (HD Karaoke)", - "id": "azxIUnRmK3c" - }, - { - "title": "DANCING QUEEN - ABBA (HD Karaoke)", - "id": "qjMSGIfB1j8" - }, - { - "title": "BED OF ROSES - Bon Jovi (HD Karaoke)", - "id": "9F0mAiipcwM" - }, - { - "title": "SABIHIN MONG LAGI - Men Oppose (HD Karaoke)", - "id": "nCkbvLtMmks" - }, - { - "title": "BABALIK SA'YO - Moira Dela Torre (HD Karaoke)", - "id": "i3D4C4QIVkA" - }, - { - "title": "DOORS - Michael Johnson (HD Karaoke)", - "id": "ywm77POHDf8" - }, - { - "title": "IKAW NA NGA - Willie Revillame (HD Karaoke)", - "id": "5ElC2IWkfIM" - }, - { - "title": "BROKEN VOW - Lara Fabian (HD Karaoke)", - "id": "QBdeFNVilrE" - }, - { - "title": "KALEIDOSCOPE WORLD - Francis Magalona (HD Karaoke)", - "id": "zqVTe3bZmvA" - }, - { - "title": "LIWANAG SA DILIM - Rivermaya (HD Karaoke)", - "id": "leP8DEWLkZc" - }, - { - "title": "HABANG BUHAY - Zack Tabudlo (HD Karaoke)", - "id": "k62xV4XNpEc" - }, - { - "title": "IF - Rivermaya (HD Karaoke)", - "id": "vM3jTjZ20Wo" - }, - { - "title": "KATHANG ISIP - Ben&Ben (HD Karaoke)", - "id": "4RTKcnMQUtA" - }, - { - "title": "AT MY WORST - Pink Sweat$ (HD Karaoke)", - "id": "7nER8VC0Dos" - }, - { - "title": "A VERY SPECIAL LOVE - Sarah Geronimo (HD Karaoke)", - "id": "bYp40CBJl5s" - }, - { - "title": "I CAN WAIT FOREVER - Air Supply (HD Karaoke)", - "id": "t-JpDQ7WcWA" - }, - { - "title": "LOVE OF MY LIFE - South Border (HD Karaoke)", - "id": "-OVKlnY_WNU" - }, - { - "title": "MAMIMISS KITA - Father & Sons (HD Karaoke)", - "id": "8LLh1VCfT6U" - }, - { - "title": "BINIBINI - Zack Tabudlo (HD Karaoke)", - "id": "is0SQqGDyTI" - }, - { - "title": "A MAN WITHOUT LOVE - Engelbert Humperdinck (HD Karaoke)", - "id": "tUkyQWWV4bk" - }, - { - "title": "I DON'T LIKE TO SLEEP ALONE - Paul Anka (HD Karaoke)", - "id": "PZIz3-1AmKg" - }, - { - "title": "I'VE BEEN WAITING FOR YOU - Guys Next Door (HD karaoke)", - "id": "q44hThFjiuA" - }, - { - "title": "MAHAL KITA - Renz Verano (HD Karaoke)", - "id": "sb2laNtuK18" - }, - { - "title": "WAITING FOR A GIRL LIKE YOU - Foreigner (HD Karaoke)", - "id": "umsfEMINMPM" - }, - { - "title": "A THOUSAND YEARS - Christina Perri (HD Karaoke)", - "id": "evszo_wT7Gs" - }, - { - "title": "GLORY OF LOVE- Peter Cetera (HD Karaoke)", - "id": "vG328QYUELk" - }, - { - "title": "YOU BELONG WITH ME - Taylor Swift (HD Karaoke)", - "id": "I3_FaKKyKPg" - }, - { - "title": "OF ALL THE THINGS - Dennis Lambert (HD Karaoke)", - "id": "CGEPRtZrhMo" - }, - { - "title": "LOVE STORY - Taylor Swift (HD Karaoke)", - "id": "-pXQTGMJ8IU" - }, - { - "title": "SONG FOR YOU - Chicago (HD Karaoke)", - "id": "EB4eCWHcZSI" - }, - { - "title": "WITHOUT YOU - Mariah Carey (HD Karaoke)", - "id": "kv6VeRIA0ec" - }, - { - "title": "INSENSITIVE - Jann Arden (HD Karaoke)", - "id": "xGwDTv9BhKY" - }, - { - "title": "PRICE TAG - Jessie J feat. B.o.B. (HD Karaoke)", - "id": "HseRUhNQNxg" - }, - { - "title": "TOO MUCH LOVE WILL KILL YOU - Queen (HD Karaoke)", - "id": "iZu6jvCAxvc" - }, - { - "title": "TRY IT ON MY OWN - Whitney Houston (HD Karaoke)", - "id": "N9KEdZSnj2A" - }, - { - "title": "LOVE ME - Michael Cretu (HD Karaoke)", - "id": "HF9h1TuszeY" - }, - { - "title": "CUPID - Fifty Fifty / Twin Version (HD Karaoke)", - "id": "dbIMY5ny5K0" - }, - { - "title": "LOWBAT NA BA - Ganny Brown (HD Karaoke)", - "id": "iuVKHJkeymg" - }, - { - "title": "HEART OF MINE - Bobby Caldwell (HD Karaoke)", - "id": "je_zdhlSIrk" - }, - { - "title": "THE LADY IN RED - Chris De Burgh (HD Karaoke)", - "id": "Lbohqhuo28s" - }, - { - "title": "IF I AIN'T GOT YOU - Alicia Keys (HD Karaoke)", - "id": "_dvqAgTDILc" - }, - { - "title": "IF THIS IS LOVE - Melissa Manchester (HD Karaoke)", - "id": "mK_heq8qCLg" - }, - { - "title": "TUNAY NA MAHAL - Lani Misalucha (HD Karaoke)", - "id": "goivWp1ZMmg" - }, - { - "title": "YOU ARE THE REASON - Ketama (HD Karaoke)", - "id": "v75DGFLKzVk" - }, - { - "title": "BROKEN HEARTED ME - Anne Murray (HD Karaoke)", - "id": "vS-CNKykzfQ" - }, - { - "title": "CALLING YOUR NAME AGAIN - Richard Carpenter (HD Karaoke)", - "id": "8-5X4R93Z5s" - }, - { - "title": "AT ANG HIRAP - Angeline Quinto (HD Karaoke)", - "id": "s2pTc51DHSc" - }, - { - "title": "THE FLAME - Cheap Trick (HD Karaoke)", - "id": "J9JIHwuLOis" - }, - { - "title": "WILL OF THE WIND - Jim Photoglo (HD Karaoke)", - "id": "Eur6c6fvYg8" - }, - { - "title": "THAT'S THE WAY IT IS - Celine Dion (HD Karaoke)", - "id": "dkTGmwSd_7U" - }, - { - "title": "SAILING - Rod Stewart (HD Karaoke)", - "id": "5zNgHnbxeYo" - }, - { - "title": "ANGELS BROUGHT ME HERE - Guy Sebastian (HD Karaoke)", - "id": "VRs5ZBH2YzM" - }, - { - "title": "PASILYO - SunKissed Lola (HD Karaoke)", - "id": "05TCevz9MTY" - }, - { - "title": "TERMINAL - Rupert Holmes (HD Karaoke)", - "id": "m5OqpwJo4ec" - }, - { - "title": "UHAW - Dilaw (HD Karaoke)", - "id": "ZDgyfqricXs" - }, - { - "title": "LATER - Fra Lippo Lippi (HD Karaoke)", - "id": "WKwYHj-csjg" - }, - { - "title": "I FALL ALL OVER AGAIN - Dan Hill (HD Karaoke)", - "id": "XCUfT_47ADg" - }, - { - "title": "REALITY - Richard Sanderson (HD Karaoke)", - "id": "6KoIxt4oGlU" - }, - { - "title": "YOU LIGHT UP MY LIFE - Debby Boone (HD Karaoke)", - "id": "EViMTVxc_0A" - }, - { - "title": "SUDDENLY - Billy Ocean (HD Karaoke)", - "id": "M2fCeZRd_Dk" - }, - { - "title": "EBONY AND IVORY - Paul McCartney and Stevie Wonder (HD Karaoke)", - "id": "lYP7Ibvy_uk" - }, - { - "title": "DREAM ON - Nazareth (HD Karaoke)", - "id": "HfXGbqZ2_hg" - }, - { - "title": "CAN'T BE WITH YOU TONIGHT - Judy Boucher (HD Karaoke)", - "id": "BWN3KQNV2QQ" - }, - { - "title": "LOVE WILL KEEP US ALIVE - The Eagles (HD Karaoke)", - "id": "4C6GaF7z6rU" - }, - { - "title": "MISS YOU LIKE CRAZY - The Moffatts (HD Karaoke)", - "id": "YuOIP-SNLV4" - }, - { - "title": "WE DON'T HAVE TO SAY THE WORDS - Gerard Joling (HD Karaoke)", - "id": "OoQfdv012KA" - }, - { - "title": "I'VE BEEN AWAY TOO LONG - George Baker (HD Karaoke)", - "id": "IQDvxuPiVsk" - }, - { - "title": "SOME HEARTS ARE DIAMONDS - Chris Norman (HD Karaoke)", - "id": "FXGGA7udd1c" - }, - { - "title": "ALL I HAVE TO DO IS DREAM - Everly Brothers (HD Karaoke)", - "id": "Qh-TzqXpkrs" - }, - { - "title": "WE COULD HAVE IT ALL - Maureen McGovern (HD Karaoke)", - "id": "3oJU8Nu1vGc" - }, - { - "title": "SAID I LOVED YOU BUT I LIED - Michael Bolton (HD Karaoke)", - "id": "gDtRncb2DWE" - }, - { - "title": "BACK TO ME - Cueshe (HD Karaoke)", - "id": "_BfKBvY9bMs" - }, - { - "title": "TADHANA - Up Dharma Down (HD Karaoke)", - "id": "LHQ9rBDE7QA" - }, - { - "title": "COME IN OUT OF THE RAIN - Sheryn Regis (HD Karaoke)", - "id": "6q1-BA_ZgcU" - }, - { - "title": "KUMPAS - Moira Dela Torre (HD Karaoke)", - "id": "1-iOGZ762kY" - }, - { - "title": "MY WAY - Frank Sinatra (HD Karaoke)", - "id": "c7qAHxBt-z4" - }, - { - "title": "DITO KA LANG - Moira Dela Torre (HD Karaoke)", - "id": "nJEdf5DBAOY" - }, - { - "title": "TIMES OF YOUR LIFE - Paul Anka (HD Karaoke)", - "id": "wcUoOaBuYJI" - }, - { - "title": "MAYBE - Neocolours (HD Karaoke)", - "id": "CHMEBotLjas" - }, - { - "title": "CAN'T TAKE MY EYES OFF YOU - Morten Harket (HD Karaoke)", - "id": "rMH45OMIjBE" - }, - { - "title": "ALWAYS REMEMBER US THIS WAY - Lady Gaga (HD Karaoke)", - "id": "jf3FaRGJdR4" - }, - { - "title": "SWAY - Bic Runga (HD Karaoke)", - "id": "O1eOOmeSLPE" - }, - { - "title": "HOLIDAY - Scorpions (HD Karaoke)", - "id": "2QuEvkJMIow" - }, - { - "title": "TERRIFIED - Katharine McPhee ft. Zachary Levi (HD Karaoke)", - "id": "azF7fA79Rls" - }, - { - "title": "MIGRAINE - Moonstar88 (HD Karaoke)", - "id": "KS2IJmFpokM" - }, - { - "title": "LAKAS TAMA - Siakol (HD Karaoke)", - "id": "OO74kqi5PGE" - }, - { - "title": "SWEET DREAMS - Air Supply (HD Karaoke)", - "id": "mPRfAefDTl0" - }, - { - "title": "CLOSE TO YOU - Whigfield (HD Karaoke)", - "id": "IChBReXQjkc" - }, - { - "title": "DIANA - Paul Anka (HD Karaoke)", - "id": "lk7wtCxOME4" - }, - { - "title": "TOUCH BY TOUCH - Joy (HD Karaoke)", - "id": "Ee7cb8alwy8" - }, - { - "title": "IKAW AT AKO - Moira Dela Torre & Jason Marvin (HD Karaoke)", - "id": "j1sUqmZOM8A" - }, - { - "title": "HERO - Mariah Carey (HD Karaoke)", - "id": "1nNdPl6O5Sc" - }, - { - "title": "HIMIG NG PAG IBIG - Asin (HD Karaoke)", - "id": "C9JLDJDrykc" - }, - { - "title": "FALLIN' - Teri DeSario (HD Karaoke)", - "id": "_q9xg1eW_9E" - }, - { - "title": "AKIN KA NA LANG - Morissette Amon (HD Karaoke)", - "id": "hrN0jz16aBw" - }, - { - "title": "CALIFORNIA KING BED - Rihanna (HD Karaoke)", - "id": "8NXGzWPGOwk" - }, - { - "title": "JOPAY - Mayonnaise (HD Karaoke)", - "id": "sxMsnOTfM_w" - }, - { - "title": "UMIIYAK ANG PUSO - April Boy Regino (HD Karaoke)", - "id": "Yc0_NKnjqJA" - }, - { - "title": "RAINBOW - South Border (HD Karaoke)", - "id": "1IWqURONwoA" - }, - { - "title": "WE'LL NEVER HAVE TO SAY GOODBYE AGAIN - England Dan & John Ford Coley (HD Karaoke)", - "id": "tmbDxbFnyvI" - }, - { - "title": "I'M GONNA BE AROUND - Michael Learns To Rock (HD Karaoke)", - "id": "gg-IH38V3rE" - }, - { - "title": "I BELIEVE - Jimmy Bondoc (HD Karaoke)", - "id": "DD41jYFPAsE" - }, - { - "title": "FROM THIS MOMENT ON - Shania Twain (HD Karaoke)", - "id": "WmJv-I0RF2o" - }, - { - "title": "NO MORE RHYME - Debbie Gibson (HD Karaoke)", - "id": "BSOSaubwmEY" - }, - { - "title": "LASON MONG HALIK - Katrina Velarde (HD Karaoke0", - "id": "P_dEU80pPQo" - }, - { - "title": "LET IT BE ME - Everly Brothers (HD Karaoke)", - "id": "v07XFgbH-AA" - }, - { - "title": "DJ NG AKING RADYO - April Boy Regino (HD Karaoke)", - "id": "zm4ylBloB8c" - }, - { - "title": "ALL OR NOTHING - O-Town (HD Karaoke)", - "id": "8bGNGbF36wY" - }, - { - "title": "GREEN, GREEN GRASS OF HOME - Tom Jones (HD Karaoke)", - "id": "UZyhw7bYmrw" - }, - { - "title": "THINK I'M IN LOVE AGAIN - Paul Anka (HD Karaoke)", - "id": "EW6l4oJSlJ0" - }, - { - "title": "THE POWER OF LOVE - Celine Dion (HD Karaoke)", - "id": "8pamveVxYYk" - }, - { - "title": "BABY CAN I HOLD YOU TONIGHT - Boyzone (HD Karaoke)", - "id": "Wki4rJ9pBbc" - }, - { - "title": "NAMUMURO KA NA - Lukas (HD Karaoke)", - "id": "pWTTUugASJ8" - }, - { - "title": "I LOVE YOU GOODBYE - Celine Dion (HD Karaoke)", - "id": "zmogyh_t_II" - }, - { - "title": "BUKAS NA LANG KITA MAMAHALIN - Lani Misalucha (HD Karaoke)", - "id": "oE6JwOqvscc" - }, - { - "title": "WARRIOR IS A CHILD - Gary Valenciano (HD Karaoke)", - "id": "mId2SKcpGtY" - }, - { - "title": "MAKE IT REAL - The Jets (HD Karaoke)", - "id": "H3mOAB3ptus" - }, - { - "title": "SHOWER ME WITH YOUR LOVE - Surface (HD Karaoke)", - "id": "0E_xFepFp3U" - }, - { - "title": "I CAN'T SAY GOODBYE TO YOU - Helen Reddy (HD Karaoke)", - "id": "kqDLnfDOa6s" - }, - { - "title": "LIKE A ROSE - A1 (HD Karaoke)", - "id": "xjCXya-IfT8" - }, - { - "title": "I HAVE YOU - Carpenters (HD Karaoke)", - "id": "iRX332y5YKE" - }, - { - "title": "I'D RATHER LEAVE WHILE I'M IN LOVE - Rita Coolidge (HD Karaoke)", - "id": "DIj0oPB5XmE" - }, - { - "title": "SWEAR IT AGAIN - Westlife (HD Karaoke)", - "id": "89m6pBct3DQ" - }, - { - "title": "THERE'S NO EASY WAY - James Ingram (HD Karaoke)", - "id": "Tr_vcq7kVng" - }, - { - "title": "DELILAH - Tom Jones (HD Karaoke)", - "id": "qMgjT6ZIT9M" - }, - { - "title": "REMEMBER ME THIS WAY - Jordan Hill (HD Karaoke)", - "id": "ksH4p2h6XYY" - }, - { - "title": "STAY - Cueshe (HD Karaoke)", - "id": "moDJiGgIt-I" - }, - { - "title": "HEAVEN BY YOUR SIDE - A1 (HD Karaoke)", - "id": "8GlRnyKR_jo" - }, - { - "title": "AFTER ALL THESE YEARS - Journey (HD Karaoke)", - "id": "cd8Lbf0PnaQ" - }, - { - "title": "LAGING TAPAT - Jolina Magdangal (HD Karaoke)", - "id": "QigK_Cf3vhM" - }, - { - "title": "UPSIDE DOWN - 6cyclemind (HD Karaoke)", - "id": "H1TAEeO5YlE" - }, - { - "title": "HEAVEN - Warrant (HD Karaoke)", - "id": "if_AdrLU7h4" - }, - { - "title": "IKAW LAMANG - Silent Sanctuary (HD Karaoke)", - "id": "9m259jYJClU" - }, - { - "title": "TAKE ME TO YOUR HEART - Michael Learns To Rock (HD Karaoke)", - "id": "EIwW76OyJ3U" - }, - { - "title": "I CAN'T LET GO - Air Supply (HD Karaoke)", - "id": "9hg4YU0hiBs" - }, - { - "title": "FOOL AGAIN - Westlife (HD Karaoke)", - "id": "SMhWV33sjjQ" - }, - { - "title": "THE LAST WALTZ - Engelbert Humperdinck (HD Karaoke)", - "id": "kv5ddBfEyPg" - }, - { - "title": "BEFORE I LET YOU GO - Freestyle (HD Karaoke)", - "id": "-Fv4N9beaoA" - }, - { - "title": "PASSENGER SEAT - Stephen Speaks (HD Karaoke)", - "id": "eOlM0yAwwjc" - }, - { - "title": "FOOLISH BEAT - Debbie Gibson (HD Karaoke)", - "id": "6T8aIuNb3ks" - }, - { - "title": "CAN YOU FEEL THE LOVE TONIGHT - Elton John (HD Karaoke)", - "id": "8SdNqJ0M6kE" - }, - { - "title": "KNOCKIN' ON HEAVEN'S DOOR - Guns N' Roses (HD Karaoke)", - "id": "jpLGPTvq9K0" - }, - { - "title": "WAIT FOR ME - J. Brothers (HD Karaoke)", - "id": "oCz2e48avLM" - }, - { - "title": "HEAVEN KNOWS - Rick Price (HD Karaoke)", - "id": "rkffxLtRe3I" - }, - { - "title": "YOU AND I - Scorpions (HD Karaoke)", - "id": "SI1PzCvyImo" - }, - { - "title": "BREAKING MY HEART - Michael Learns To Rock (HD Karaoke)", - "id": "W5bn7sj2AWg" - }, - { - "title": "PROBLEMANG PUSO - Jude Michael (HD Karaoke)", - "id": "Xe6InUyxabM" - }, - { - "title": "THIS I PROMISE YOU - NSYNC (HD Karaoke)", - "id": "pH7qXILrnTs" - }, - { - "title": "MAGBALIK - Callalily (HD Karaoke)", - "id": "W5rH86cWhkg" - }, - { - "title": "WHEN SHE CRIES - Restless Heart (HD Karaoke)", - "id": "6Ns3Y7whX68" - }, - { - "title": "DESPERADO - Eagles (HD Karaoke)", - "id": "QNkM8K0e3hQ" - }, - { - "title": "NERBYOSO - Rivermaya (HD Karaoke)", - "id": "b8k60cVvszM" - }, - { - "title": "LOOKS LIKE WE MADE IT - Barry Manilow (HD Karaoke)", - "id": "M4Mgx6do0kM" - }, - { - "title": "HARI NG SABLAY - Sugarfree (HD Karaoke)", - "id": "CLngXGkzslg" - }, - { - "title": "UPTOWN GIRL - Westlife (HD Karaoke)", - "id": "vD2eFk10dPw" - }, - { - "title": "KUNG WALA KA - Hale (HD Karaoke)", - "id": "O0Tr8kjBJlk" - }, - { - "title": "21 GUNS - Green Day (HD Karaoke)", - "id": "CNVkvHUhDqA" - }, - { - "title": "IBANG IBA KA NA - Renz Verano (HD Karaoke)", - "id": "s2hrEFkU3_c" - }, - { - "title": "PANGARAP KA NA LANG BA - Jamie Rivera (HD Karaoke)", - "id": "sfs3TpxEuhI" - }, - { - "title": "THE DAY YOU SAID GOODNIGHT - Hale (HD Karaoke)", - "id": "zfEaYbWoxko" - }, - { - "title": "KEEP ON LOVING YOU - REO Speedwagon (HD Karaoke)", - "id": "NFtxy0Qz980" - }, - { - "title": "DON'T SPEAK - No Doubt (HD Karaoke)", - "id": "36JrsH1yaMY" - }, - { - "title": "HOW DID YOU KNOW - Chiqui Pineda (HD Karaoke)", - "id": "Yg0vMQzAPoQ" - }, - { - "title": "SLEEPING CHILD - Michael Learns To Rock (HD Karaoke)", - "id": "VqTnq2u5ZQ4" - }, - { - "title": "UNCHAINED MELODY - Righteous Brothers (HD Karaoke)", - "id": "C9Pp6-8s8Nc" - }, - { - "title": "MULING IBALIK - First Cousins (HD Karaoke)", - "id": "eOGZvmEIymg" - }, - { - "title": "WAITING FOR YOUR LOVE - Stevie B (HD Karaoke)", - "id": "LReGw4kwbmA" - }, - { - "title": "SEASONS IN THE SUN - Westlife (HD Karaoke)", - "id": "VnqbnzxdOxI" - }, - { - "title": "ULAN - Rivermaya (HD Karaoke)", - "id": "1_BIp7uvLsQ" - }, - { - "title": "I'VE NEVER BEEN TO ME - Charlene (HD Karaoke)", - "id": "wuqNn2UZ2os" - }, - { - "title": "I KNEW I LOVED YOU - Savage Garden (HD Karaoke)", - "id": "lmjX_M_SObk" - }, - { - "title": "BALELENG - Roel Cortez (HD Karaoke)", - "id": "FsiMzu0-1PM" - }, - { - "title": "YOU TOOK MY HEART AWAY - Michael Learns To Rock (HD Karaoke)", - "id": "-Fkvp8jKux0" - }, - { - "title": "IN MY DREAMS - REO Speedwagon (HD Karaoke)", - "id": "2vHp74mrXAk" - }, - { - "title": "MY ELUSIVE DREAMS - Tom Jones (HD Karaoke)", - "id": "Ho07BPxvy7U" - }, - { - "title": "LET ME BE THE ONE - Jimmy Bondoc (HD Karaoke)", - "id": "uX2sgJXY3_U" - }, - { - "title": "THANK YOU FOR LOVING ME - Bon Jovi (HD Karaoke)", - "id": "eDasI4SAugI" - }, - { - "title": "OH, PRETTY WOMAN - Roy Orbison (HD Karaoke)", - "id": "pFe1XHea5LI" - }, - { - "title": "WAY BACK INTO LOVE - Hugh Grant & Haley Bennett (HD Karaoke)", - "id": "Z8WAgphj2oc" - }, - { - "title": "DON'T STOP BELIEVIN' - Journey (HD Karaoke)", - "id": "1pOFPExPDCY" - }, - { - "title": "NATUTULOG BA ANG DIYOS - Gary Valenciano (HD Karaoke)", - "id": "nF0qxXx8r5Q" - }, - { - "title": "I'M SORRY MY LOVE - Victor Wood (HD Karaoke)", - "id": "FjtN7ppnp4w" - }, - { - "title": "PAANO - Shamrock (HD Karaoke)", - "id": "YbC4ahMRv4k" - }, - { - "title": "DREAM ABOUT YOU - Stevie B (HD Karaoke)", - "id": "EWkqvY8iK5c" - }, - { - "title": "THERE'S A KIND OF HUSH - Carpenters (HD Karaoke)", - "id": "dft1-gkkXZQ" - }, - { - "title": "THAT WONDERFUL SOUND - Tom Jones (HD Karaoke)", - "id": "ZgR1aEGdEao" - }, - { - "title": "WHEN YOU TELL ME THAT YOU LOVE ME - Diana Ross (HD Karaoke)", - "id": "ksqDc3I83k4" - }, - { - "title": "PAG IBIG KO SAYO'Y DI MAGBABAGO", - "id": "jKvCfHPFV0w" - }, - { - "title": "ULAN - Cueshe (HD Karaoke)", - "id": "aLF6DlxMr4g" - }, - { - "title": "THAT'S WHY YOU GO AWAY - Michael Learns To Rock (HD Karaoke)", - "id": "-FMRWINfzTY" - }, - { - "title": "IKAW ANG DAHILAN - Jerry Angga (HD Karaoke)", - "id": "X_OO6h5zqe8" - }, - { - "title": "UNWELL - Matchbox Twenty (HD Karaoke)", - "id": "i_nNeeRs8ig" - }, - { - "title": "YOU TAKE MY BREATH AWAY - Rex Smith (HD Karaoke)", - "id": "j1SowyZKj1U" - }, - { - "title": "IBIGAY MO NA - Jessa Zaragoza (HD Karaoke)", - "id": "8eYgvMalgM4" - }, - { - "title": "NAKAPAGTATAKA - Sponge Cola (HD Karaoke)", - "id": "gfzb3lcZjRg" - }, - { - "title": "BALIW NA PUSO - Jessa Zaragoza (HD Karaoke)", - "id": "K2R4b0gP2mw" - }, - { - "title": "WILD WORLD", - "id": "pzWiY14cPK4" - }, - { - "title": "ETERNALLY - Victor Wood (HD Karaoke)", - "id": "Jj_hCagVn2o" - }, - { - "title": "KUNG SAKALING IKAW AY LALAYO - J Brothers (HD Karaoke)", - "id": "K0RJ4s786WU" - }, - { - "title": "ISLANDS IN THE STREAM - Kenny Rogers & Dolly Parton (HD Karaoke)", - "id": "306fj13ywKE" - }, - { - "title": "IKAKASAL KA NA - Jessa Zaragoza (HD Karaoke)", - "id": "XUV95IKPK50" - }, - { - "title": "MINAHAL KITA - Michael Laygo (HD Karaoke)", - "id": "WFuUJJVfUMQ" - }, - { - "title": "THAT'S WHAT FRIENDS ARE FOR - Dionne Warwick (HD Karaoke)", - "id": "YX6y9tGG_BU" - }, - { - "title": "TRUE COLORS - Cyndi Lauper (HD Karaoke)", - "id": "9A_eefDCbPA" - }, - { - "title": "KAPAG TUMIBOK ANG PUSO - Donna Cruz (HD Karaoke)", - "id": "jCL5_b4Ke48" - }, - { - "title": "IF I NEVER SING ANOTHER SONG - Matt Monro (HD Karaoke)", - "id": "ZG48c0pWNoA" - }, - { - "title": "GOODBYE YELLOW BRICK ROAD - Elton John (HD Karaoke)", - "id": "mqXy8PoGJ1w" - }, - { - "title": "LAUGHTER IN THE RAIN - Neil Sedaka (HD Karaoke)", - "id": "Yxalrx1EYfE" - }, - { - "title": "UNDER THE SAME SUN - Scorpions (HD Karaoke)", - "id": "1uI4J61i2Ts" - }, - { - "title": "CREEP - Radiohead (HD Karaoke)", - "id": "8mK_remhVlM" - }, - { - "title": "ONLY YOU - The Platters (HD Karaoke)", - "id": "NiLHHg5S6ZI" - }, - { - "title": "JUST WHEN I NEEDED YOU MOST - Randy VanWarmer (HD Karaoke)", - "id": "gdwZ_7sdoXM" - }, - { - "title": "IF YOU WALKED AWAY - David Pomeranz (HD Karaoke)", - "id": "xe_eBbauWOk" - }, - { - "title": "TAYONG DALAWA - Rey Valera (HD Karaoke)", - "id": "sC0p-JJdwSo" - }, - { - "title": "DI BA'T IKAW - Jessa Zaragoza (HD Karaoke)", - "id": "KSL6_SMYPH0" - }, - { - "title": "CALL ME - Dennis DeYoung (HD Karaoke)", - "id": "nby0WKiFVIc" - }, - { - "title": "SOMEONE WHO BELIEVES IN YOU - Air Supply (HD Karaoke)", - "id": "6w7klo7AMgM" - }, - { - "title": "PUT YOU HEAD ON MY SHOULDER - Paul Anka (HD Karaoke)", - "id": "bi0tcrwJvCc" - }, - { - "title": "DI NA KO AASA PA - Introvoys (HD Karaoke)", - "id": "H6RqJRCWPT4" - }, - { - "title": "I'LL BE - Edwin McCain (HD Karaoke)", - "id": "i8tG8AriwVM" - }, - { - "title": "YOU'RE MY EVERYTHING - Santa Esmeralda (HD Karaoke)", - "id": "EcFwPXcGfqU" - }, - { - "title": "BAKIT - Aegis (HD Karaoke)", - "id": "lnZYwgqU2pc" - }, - { - "title": "MAGASIN - Eraserheads (HD Karaoke)", - "id": "L4yEVy3mT2g" - }, - { - "title": "YOU'LL BE SAFE HERE - Rivermaya (HD Karaoke)", - "id": "P4ApYxP0kos" - }, - { - "title": "THE ONE THAT YOU LOVE - Air Supply (HD Karaoke)", - "id": "WLGzdCndIlE" - }, - { - "title": "KUNG AYAW MO HUWAG MO - Rivermaya (HD Karaoke)", - "id": "wtT8_8ig8F0" - }, - { - "title": "SHE'S GONE - Steelheart (HD Karaoke)", - "id": "EdGwI4J5pDw" - }, - { - "title": "MISS YOU LIKE CRAZY - Natalie Cole (HD Karaoke)", - "id": "9HjrPsCmjKw" - }, - { - "title": "ALWAYS BE MY BABY - David Cook (HD Karaoke)", - "id": "zcUz-skZjdQ" - }, - { - "title": "LUHA - Aegis (HD Karaoke)", - "id": "fbk5bwNCIng" - }, - { - "title": "HOW COULD YOU SAY YOU LOVE ME - Sarah Geronimo (HD Karaoke)", - "id": "ZSaTQSpjxKc" - }, - { - "title": "GOD GAVE ME YOU - Bryan White (HD Karaoke)", - "id": "M-f9FAIEcNM" - }, - { - "title": "PHOTOGRAPH - Ariel Rivera (HD Karaoke)", - "id": "0byb_Suv854" - }, - { - "title": "STARS - Simply Red (HD Karaoke)", - "id": "FLJN0xZ-CxA" - }, - { - "title": "OLD PHOTOGRAPHS - Jim Capaldi (HD Karaoke)", - "id": "WynfCEiXEkM" - }, - { - "title": "CATCH ME I'M FALLING - Toni Gonzaga (HD Karaoke)", - "id": "tyaN9cR7tKY" - }, - { - "title": "FOREVER - Rex Smith (HD Karaoke)", - "id": "P65-ylKRd6Q" - }, - { - "title": "STARTING OVER AGAIN - Natalie Cole (HD Karaoke)", - "id": "49shDqjfCH0" - }, - { - "title": "ONE HELLO - Randy Crawford (HD Karaoke)", - "id": "h8kXWB9rSm0" - }, - { - "title": "I CAN'T FIND THE WORDS TO SAY GOODBYE - David Gates (HD Karaoke)", - "id": "6xhrfOdd200" - }, - { - "title": "THE ONE YOU LOVE - Glenn Frey (HD Karaoke)", - "id": "wVnvYKLfjlg" - }, - { - "title": "WHERE ARE YOU NOW - Nazareth (HD Karaoke)", - "id": "-EZDyHlMrc8" - }, - { - "title": "I'LL HAVE TO SAY I LOVE YOU IN A SONG - Jim Croce (HD Karaoke)", - "id": "i94NkhIaIck" - }, - { - "title": "MY LOVE - Westlife (HD Karaoke)", - "id": "aopznAD6m9w" - }, - { - "title": "SO IT'S YOU - Raymond Lauchengco (HD Karaoke)", - "id": "DGd2rZu2AQc" - }, - { - "title": "FIRST LOVE NEVER DIES - White Lies (HD Karaoke)", - "id": "MzBkG_nfpHU" - }, - { - "title": "BLUER THAN BLUE - Michael Johnson (HD Karaoke)", - "id": "ZBBX09K9MQg" - }, - { - "title": "WE'VE ONLY JUST BEGUN - Carpenters (HD Karaoke)", - "id": "DJbAWDPLGsA" - }, - { - "title": "I NEED YOU - America (HD Karaoke)", - "id": "VL9R3uvkagM" - }, - { - "title": "A LOVE SONG - Kenny Rogers (HD Karaoke)", - "id": "dmc4ibkcHYY" - }, - { - "title": "MIDNIGHT BLUE - Electric Light Orchestra (HD Karaoke)", - "id": "RBkvds0qOiI" - }, - { - "title": "I NEED YOU BACK - Raymond Lauchengco (HD Karaoke)", - "id": "R2OtimCmtDE" - }, - { - "title": "LOST IN YOUR EYES - Debbie Gibson (HD Karaoke)", - "id": "0z9dheefCoU" - }, - { - "title": "BEAUTIFUL IN MY EYES - Joshua Kadison (HD Karaoke)", - "id": "LruQapGkZSI" - }, - { - "title": "WHAT'S FOREVER FOR - Michael Martin Murphy (HD Karaoke)", - "id": "QkdjSDXTrQk" - }, - { - "title": "WHEN I SEE YOU SMILE - Bad English (HD Karaoke)", - "id": "8E_Y82H3550" - }, - { - "title": "PANIWALAAN MO - Brownman Revival (HD Karaoke)", - "id": "G9CXps_mhd4" - }, - { - "title": "LIGHT AND SHADE - Fra Lippo Lippi (HD Karaoke)", - "id": "qvEZODh3Zyw" - }, - { - "title": "BAKIT SINTA - Paul Sapiera (HD Karaoke)", - "id": "bh-n0Q0nxO0" - }, - { - "title": "SABIHIN MO NA - Top Suzara (HD Karaoke)", - "id": "7bJV6JDv8KM" - }, - { - "title": "ALL THE LOVE IN THE WORLD - The Corrs (HD Karaoke)", - "id": "MjfEJChi3B4" - }, - { - "title": "IF TOMORROW NEVER COMES - Ronan Keating (HD Karaoke)", - "id": "D5vvcRaZYOU" - }, - { - "title": "I NEVER CRY - Alice Cooper (HD Karaoke)", - "id": "lLJ839ozNIY" - }, - { - "title": "FOR THE FIRST TIME - Kenny Loggins (HD Karaoke)", - "id": "Bau5wK5iWz8" - }, - { - "title": "SA AKING PUSO - Ariel Rivera (HD Karaoke)", - "id": "wFSh-KAbun8" - }, - { - "title": "YOU WERE THERE - Southern Sons (HD Karaoke)", - "id": "eyDqltDIyeA" - }, - { - "title": "LAMOK - Sean AI x WHAMOS (HD Karaoke)", - "id": "KvbHTMO1ROA" - }, - { - "title": "WHEN I NEED YOU - Leo Sayer (HD Karaoke)", - "id": "36xzdQsb3IY" - }, - { - "title": "TRULY - Lionel Richie (HD Karaoke)", - "id": "jXveNm55i_w" - }, - { - "title": "JUST THE WAY YOU ARE - Billy Joel (HD Karaoke)", - "id": "Emx4Y-B1VF8" - }, - { - "title": "TILL DEATH DO US PART - White Lion (HD Karaoke)", - "id": "_8ODBL8mW3k" - }, - { - "title": "DESERT MOON - Dennis DeYoung (HD Karaoke)", - "id": "yiFwLzrY388" - }, - { - "title": "I WAS ONLY JOKING - Rod Stewart (HD Karaoke)", - "id": "LCohCDs7OyI" - }, - { - "title": "LOVE IS ALL THAT MATTERS - Eric Carmen (HD Karaoke)", - "id": "aPdwM-sRzg8" - }, - { - "title": "PARA SA AKIN - Sitti Navarro (HD Karaoke)", - "id": "8ebEJCqmneM" - }, - { - "title": "TOTAL ECLIPSE OF THE HEART - Bonnie Tyler (HD Karaoke)", - "id": "Ul0qKMU1Jpo" - }, - { - "title": "TAKE ME I'LL FOLLOW - Bobby Caldwell (HD Karaoke)", - "id": "-HF3E9gr-os" - }, - { - "title": "THE GUITAR MAN - Bread (HD Karaoke)", - "id": "Fn6UUME4LxU" - }, - { - "title": "MR KUPIDO - Rachel Alejandro (HD Karaoke)", - "id": "RSbCNBrXvTs" - }, - { - "title": "PAKISABI NA LANG - Aiza \"Ice\" Seguerra (HD Karaoke)", - "id": "GYRSVgWwJ10" - }, - { - "title": "STILL LOVING YOU - Scorpions (HD Karaoke)", - "id": "u4yRckWcFNg" - }, - { - "title": "TIME AFTER TIME - Cyndi Lauper (HD Karaoke)", - "id": "QasKjOyz1Ww" - }, - { - "title": "RIGHT HERE WAITING - Richard Marx (HD Karaoke)", - "id": "B3sf0kXaolM" - }, - { - "title": "MUNTIK NA KITANG MINAHAL - Carol Banawa (HD Karaoke)", - "id": "VI4ZJfqRb6A" - }, - { - "title": "THE JOURNEY - Lea Salonga (HD Karaoke)", - "id": "fAG3jt3k7H0" - }, - { - "title": "BURN - Tina Arena (HD Karaoke)", - "id": "89Mo4dC1lXI" - }, - { - "title": "ONE OF US - Joan Osborne (HD Karaoke)", - "id": "fbivHweiPWg" - }, - { - "title": "WALANG KAPALIT - Rey Valera", - "id": "D3lFz_giJ4s" - }, - { - "title": "NAG-IISANG IKAW - Louie Heredia (HD Karaoke)", - "id": "kAW5yb6qzSs" - }, - { - "title": "BABY, NOW THAT I'VE FOUND YOU - Alison Krauss (HD Karaoke)", - "id": "hca9aiOsdto" - }, - { - "title": "NOTHING TO LOSE - Michael Learns To Rock (HD Karaoke)", - "id": "ciCu9ChkyPE" - }, - { - "title": "WE'RE ALL ALONE - Boz Scaggs (HD Karaoke)", - "id": "VyP4RTPlS3o" - }, - { - "title": "LET'S MAKE A MEMORY - Rex Smith (HD Karaoke)", - "id": "y2dDXdG8_yU" - }, - { - "title": "KAHIT GAANO KALAKI - Alyanna (HD Karaoke)", - "id": "lsh5TKo-agI" - }, - { - "title": "TAKE ME HOME COUNTRY ROADS - John Denver (HD Karaoke)", - "id": "ps8vopZaouw" - }, - { - "title": "WE ALL FALL IN LOVE SOMETIMES - Elton John (HD Karaoke)", - "id": "l7bd_w-IbLU" - }, - { - "title": "DAHIL TANGING IKAW - Jaya (HD Karaoke)", - "id": "rtSrJtz4EDk" - }, - { - "title": "STAY THE SAME - Joey Mcintyre (HD Karaoke)", - "id": "9A0VWuaZeXA" - }, - { - "title": "TILL MY HEARTACHES END - Ella Mae Saison (HD Karaoke)", - "id": "274oIUNfFGc" - }, - { - "title": "HUWAG MO NANG ITANONG - Eraserheads (HD Karaoke)", - "id": "TJEUq3iKbas" - }, - { - "title": "I LIVE MY LIFE FOR YOU - Firehouse (HD Karaoke)", - "id": "lJjhy4LzO4I" - }, - { - "title": "NAPUPUYAT - Freddie Aguilar (HD Karaoke)", - "id": "6YuGycre0pk" - }, - { - "title": "MAHAL NA MAHAL KITA - Rosselle Nava (HD Karaoke)", - "id": "0tXtl2UGrQ0" - }, - { - "title": "STARLIGHT EXPRESS - El DeBarge (HD Karaoke)", - "id": "aR3FKPjyN9k" - }, - { - "title": "LOVE WILL LEAD YOU BACK - Taylor Dane (HD Karaoke)", - "id": "USPjwV0YlYA" - }, - { - "title": "ALMOST OVER YOU - Sheena Easton (HD Karaoke)", - "id": "-iaEnsGL0ks" - }, - { - "title": "TORN - Natalie Imbruglia (HD Karaoke)", - "id": "xAFnrql49oU" - }, - { - "title": "IKAW LANG - Chad Borja (HD Karaoke)", - "id": "NJ47-1CJYP4" - }, - { - "title": "MASTERPIECE - Atlantic Starr (HD Karaoke)", - "id": "PhC6dTP4aJc" - }, - { - "title": "I WILL BE HERE - Gary Valenciano (HD Karaoke)", - "id": "2D9ewpAAe2c" - }, - { - "title": "DON'T CRY OUT LOUD - Melissa Manchester (HD Karaoke)", - "id": "ZvsN2sPWXFU" - }, - { - "title": "MEET ME HALF WAY - Kenny Logins (HD Karaoke)", - "id": "fT_lvd8xPpw" - }, - { - "title": "I MISS YOU - Klymaxx (HD Karaoke)", - "id": "QCyWYO4lvkU" - }, - { - "title": "SIMPLY JESSIE - Rex Smith (HD Karaoke)", - "id": "Oqbcxk5n3Yg" - }, - { - "title": "DON'T GIVE UP ON US - David Soul (HD Karaoke)", - "id": "0dEjrRqk3wY" - }, - { - "title": "RAINY DAYS AND MONDAYS - Carpenters (HD Karaoke)", - "id": "n5BaL5bzZsU" - }, - { - "title": "NAPAKASAKIT KUYA EDDIE - Roel Cortez (HD Karaoke)", - "id": "GtKu-Xi3QlA" - }, - { - "title": "NO MATTER WHAT - Boyzone (HD Karaoke)", - "id": "V6aYlRB5k0c" - }, - { - "title": "ALL AT ONCE - Whitney Houston (HD Karaoke)", - "id": "bE42M7JxHd8" - }, - { - "title": "ARTHUR'S THEME - Christopher Cross (HD Karaoke)", - "id": "2DtdFrpM4C0" - }, - { - "title": "EVEN NOW - Barry Manilow (HD Karaoke)", - "id": "RO4LNLy4ud8" - }, - { - "title": "BECAUSE - Dave Clark Five (HD Karaoke)", - "id": "RKt8aBAmgiE" - }, - { - "title": "KASALANAN BA - Men Oppose (HD Karaoke)", - "id": "-eAZUkXoEDQ" - }, - { - "title": "THE GIFT - Jim Brickman ft. Susan Ashton & Collin Raye (HD Karaoke)", - "id": "HafN0c2ra5w" - }, - { - "title": "ALAPAAP - Eraserheads (HD Karaoke)", - "id": "nci9aK4fboU" - }, - { - "title": "I SWEAR - All 4 One (HD Karaoke)", - "id": "jXDa2YJAQ4s" - }, - { - "title": "I WILL ALWAYS LOVE YOU - Kenny Rogers (HD Karaoke)", - "id": "4gfObdeRNqI" - }, - { - "title": "TOGETHER FOREVER (You and I) - Rico J Puno (HD Karaoke)", - "id": "msCT3pzdpkE" - }, - { - "title": "CRAZY FOR YOU - Madonna (HD Karaoke)", - "id": "lb_-GT9ZLgU" - }, - { - "title": "SOMETIMES LOVE JUST AIN'T ENOUGH - Patty Smyth ft. Don Henley (HD Karaoke)", - "id": "UAdGa_yYdXw" - }, - { - "title": "LET IT BE Beatles - The Beatles (HD Karaoke)", - "id": "XKiK7Wc4I3U" - }, - { - "title": "BUKO - Jireh Lim (HD Karaoke)", - "id": "B5W9Guo_6a4" - }, - { - "title": "I'LL ALWAYS LOVE YOU - Michael Johnson (HD Karaoke)", - "id": "TmYKSqONCdM" - }, - { - "title": "PERFECT - Simple Plan (HD Karaoke)", - "id": "HUsiUwHv71M" - }, - { - "title": "SIGARILYO - Freddie Aguilar (HD Karaoke)", - "id": "TT-S9py0VhY" - }, - { - "title": "CARRIE - Europe (HD Karaoke)", - "id": "Wrsr6cOpLc8" - }, - { - "title": "IT MUST HAVE BEEN LOVE - Roxette (HD Karaoke)", - "id": "7KEUcJIhiB0" - }, - { - "title": "YOU'RE ALL I NEED - White Lion (HD Karaoke)", - "id": "_e1HuFYETmk" - }, - { - "title": "COUNT ON YOU - Tommy Shaw (HD Karaoke)", - "id": "XGB8gmhwWzU" - }, - { - "title": "YOU'RE THE INSPIRATION - Chicago (HD Karaoke)", - "id": "YqcheaurrF0" - }, - { - "title": "SOLDIER OF FORTUNE - Deep Purple (HD Karaoke)", - "id": "IPI2zPSaddo" - }, - { - "title": "THROUGH THE FIRE - Chaka Khan (HD Karaoke)", - "id": "LcopdhhWjbM" - }, - { - "title": "YOU GOT IT ALL - The Jets (HD Karaoke)", - "id": "J9jDB1nrXbk" - }, - { - "title": "I JUST FALL IN LOVE AGAIN - Anne Murray (HD Karaoke)", - "id": "5sVOFufOw1I" - }, - { - "title": "EVERYDAY I LOVE YOU - Boyzone (HD Karaoke)", - "id": "bfXwC1RHzVw" - }, - { - "title": "IF I LET YOU GO - Westlife (HD Karaoke)", - "id": "fIUiiBUrfOU" - }, - { - "title": "HOW DO I LIVE - Leann Rimes (HD Karaoke)", - "id": "UJzU_Q8xo_U" - }, - { - "title": "I NEED TO BE IN LOVE - The Carpenters (HD Karaoke)", - "id": "fnjBflvo5B0" - }, - { - "title": "LOSING MY RELIGION - R.E.M. (HD Karaoke)", - "id": "6vU1KNm9W9I" - }, - { - "title": "SAYANG NA SAYANG - Aegis (HD Karaoke)", - "id": "6_FbZmjePBE" - }, - { - "title": "SIGE - 6 Cyclemind (HD Karaoke)", - "id": "MC16yYL0qrw" - }, - { - "title": "I'D LOVE YOU TO WANT ME - Lobo (HD Karaoke)", - "id": "HUmfghYpiTo" - }, - { - "title": "IF YOU'RE NOT HERE - Menudo (HD Karaoke)", - "id": "T2wUGJ7WbAY" - }, - { - "title": "THE SEARCH IS OVER - Survivor (HD Karaoke)", - "id": "HM3Hz1Zxrjk" - }, - { - "title": "LOOKING THROUGH THE EYES OF LOVE - Melissa Manchester (HD Karaoke)", - "id": "h_fCf1FCSdg" - }, - { - "title": "HONESTY - Billy Joel (HD Karaoke)", - "id": "uZXpd4l9Lxw" - }, - { - "title": "PANAKIP BUTAS - Hajji Alejandro (HD Karaoke)", - "id": "VCvad8Embk0" - }, - { - "title": "CAN'T FIGHT THIS FEELING - REO Speedwagon (HD Karaoke)", - "id": "Nkg85jgmqKI" - }, - { - "title": "KILLING ME SOFTLY WITH HIS SONG - Roberta Flack (HD Karaoke)", - "id": "Ky96EO_hixs" - }, - { - "title": "VICTIMS OF LOVE - Joe Lamont (HD Karaoke)", - "id": "Dew9g8fTd6I" - }, - { - "title": "HELLO - Lionel Richie (HD Karaoke)", - "id": "d1EQoqZ2ehY" - }, - { - "title": "LOVER'S MOON - Glenn Frey (HD Karaoke)", - "id": "wXDk_Rkanbo" - }, - { - "title": "I WANT TO KNOW WHAT LOVE IS - Foreigner (HD Karaoke)", - "id": "HLAsYlFuGEg" - }, - { - "title": "TAO - Sampaguita (HD Karaoke)", - "id": "epB1B0QVjZs" - }, - { - "title": "BINIBINI - Janno Gibbs (HD Karaoke)", - "id": "P2K4ZmIrGbI" - }, - { - "title": "I WON'T LAST A DAY WITHOUT YOU - The Carpenters (HD Karaoke)", - "id": "00uLY0yCurE" - }, - { - "title": "TIL THEY TAKE MY HEART AWAY - Clair Marlo (HD Karaoke)", - "id": "VTUHhZU25-U" - }, - { - "title": "MAHAL KITA WALANG IBA - Ogie Alcasid (HD Karaoke)", - "id": "QRfR15SGesI" - }, - { - "title": "EVER SINCE THE WORLD BEGAN - Survivor (HD Karaoke)", - "id": "NfNgX8-62Hs" - }, - { - "title": "IN YOUR EYES - George Benson (HD Karaoke)", - "id": "OPg_EqQgL50" - }, - { - "title": "IKAW ANG MISS UNIVERSE NG BUHAY KO - Hotdog (HD Karaoke)", - "id": "epRb29YApLM" - }, - { - "title": "MALING AKALA - Eraserheads (HD Karaoke)", - "id": "8icA8_ZA4Tc" - }, - { - "title": "YOU RAISE ME UP - Josh Groban (HD Karaoke)", - "id": "nVe0FnEZCTY" - }, - { - "title": "ON THIS DAY - David Pomeranz (HD Karaoke)", - "id": "QFaIqalFcdo" - }, - { - "title": "PAINT MY LOVE - Michael Learns to Rock (HD Karaoke)", - "id": "5daPd5DtuHg" - }, - { - "title": "NOTHING'S GONNA STOP US NOW - Starship (HD Karaoke)", - "id": "fpf7Pzb_kiE" - }, - { - "title": "KING AND QUEEN OF HEARTS - David Pomeranz (HD Karaoke)", - "id": "ADBNPozUDI0" - }, - { - "title": "ANG BUHAY KO - Asin (HD Karaoke)", - "id": "dVIiKN33upk" - }, - { - "title": "TWO LESS LONELY PEOPLE - Air Supply (HD Karaoke)", - "id": "tYPAxX8fdzQ" - }, - { - "title": "YOU AND I - Kenny Rogers (HD Karaoke)", - "id": "qP86F775hUA" - }, - { - "title": "MANDY - Barry Manilow (HD Karaoke)", - "id": "ws55ifkzNGE" - }, - { - "title": "TOP OF THE WORLD - Carpenters (HD Karaoke)", - "id": "tY8o1TD_frk" - }, - { - "title": "STITCHES AND BURNS - Fra Lippo Lippi (HD Karaoke)", - "id": "jbR_ETkUUgI" - }, - { - "title": "BORN FOR YOU - David Pomeranz (HD Karaoke)", - "id": "Y6ir5F4y4-Y" - }, - { - "title": "HUWAG KANG MATAKOT - Eraserheads (HD Karaoke)", - "id": "oe3km-yPWVg" - }, - { - "title": "JUST TELL ME YOU LOVE ME - England Dan & John Ford Coley (HD Karaoke)", - "id": "8LYHpHpJ428" - }, - { - "title": "IF - Bread (HD Karaoke)", - "id": "CVKZW6obgUw" - }, - { - "title": "YOU MADE ME LIVE AGAIN - Janet Basco (HD Karaoke)", - "id": "hvhcrmDhSqg" - }, - { - "title": "BEAUTY AND MADNESS - Fra Lippo Lippi (HD Karaoke)", - "id": "w64Fks8cRPw" - }, - { - "title": "ONE IN A MILLION YOU - Larry Graham (HD Karaoke)", - "id": "Z_agW5K8BiM" - }, - { - "title": "LOVE OF A LIFETIME - Firehouse (HD Karaoke)", - "id": "UdBzcfdGHLk" - }, - { - "title": "PROBLEMA - Freddie Aguilar (HD Karaoke)", - "id": "VXBBHI9wocg" - }, - { - "title": "I'LL BE THERE FOR YOU - Bon Jovi (HD Karaoke)", - "id": "DxlV1lYmq6Q" - }, - { - "title": "INSPECTOR MILLS - America (HD Karaoke)", - "id": "y0W64Oy79HY" - }, - { - "title": "AGAINST ALL ODDS - Phil Collins (HD Karaoke)", - "id": "BJyUEsNC-_s" - }, - { - "title": "ZOMBIE - The Cranberries (HD Karaoke)", - "id": "37cKEVu-Z-Y" - }, - { - "title": "CAN'T HELP FALLING IN LOVE - Elvis Presley (HD Karaoke)", - "id": "-2hvWP9Hulg" - }, - { - "title": "HOPELESSLY DEVOTED TO YOU", - "id": "06sNZc7OBi0" - }, - { - "title": "ANG PAG IBIG KONG ITO - Leah Navarro (HD Karaoke)", - "id": "-F1B2Vs9w5M" - }, - { - "title": "NOW AND FOREVER - Air Supply (HD Karaoke)", - "id": "Ktp9Q6tqP1s" - }, - { - "title": "OCEAN DEEP - Cliff Richard (HD Karaoke)", - "id": "kUzHS6rwcEI" - }, - { - "title": "BRIDGE OVER TROUBLED WATER - Simon and Garfunkel (HD Karaoke)", - "id": "KCI3qN_c3k0" - }, - { - "title": "I'LL NEVER LOVE THIS WAY AGAIN - Dionne Warwick (HD Karaoke)", - "id": "xhvuBi9oe2s" - }, - { - "title": "THE ONE I LOVE - REM (HD Karaoke)", - "id": "tln_JDVERmw" - }, - { - "title": "DUST IN THE WIND - Kansas (HD Karaoke)", - "id": "GKlOQWXTZcw" - }, - { - "title": "PULUBI - Freddie Aguilar (HD Karaoke)", - "id": "rNEQuOMgLfI" - }, - { - "title": "NILUNOK KONG LAHAT - Selina Sevilla (HD Karaoke)", - "id": "x16rjEk4J2k" - }, - { - "title": "NEVER SAY GOODBYE - Bon Jovi (HD Karaoke)", - "id": "N2G8Z9Bx2N0" - }, - { - "title": "KEEPING THE LOVE ALIVE - Air Supply (HD Karaoke)", - "id": "KqWPfb8ChS8" - }, - { - "title": "BEAUTIFUL IN WHITE - Westlife (HD Karaoke)", - "id": "fZyW-T0w0X4" - }, - { - "title": "THANKS TO YOU - Tyler Collins (HD Karaoke)", - "id": "4skzjtHLsNs" - }, - { - "title": "MAMA - Spice Girls (HD Karaoke)", - "id": "fi_hvM6R4hE" - }, - { - "title": "IINGATAN KA - Carol Banawa (HD Karaoke)", - "id": "HWQGeGpT7aw" - }, - { - "title": "LONELY IS THE NIGHT - Air Supply (HD Karaoke)", - "id": "V4ufEYPrOWI" - }, - { - "title": "LOVE ME FOR WHAT I AM - The Carpenters (HD Karaoke)", - "id": "-utCxwPuOvQ" - }, - { - "title": "MY VALENTINE - Martina McBride (HD Karaoke)", - "id": "RlJkXsKWFLg" - }, - { - "title": "WHEN THE SMOKE IS GOING DOWN - Scorpions (HD Karaoke)", - "id": "cX5F8LQ84bU" - }, - { - "title": "ALL THIS TIME - Tiffany (HD Karaoke)", - "id": "EWoj6AeYGe4" - }, - { - "title": "LADY - Kenny Rogers (HD Karaoke)", - "id": "4YWuTk_6c94" - }, - { - "title": "IKAW PA LAMANG - Rodel Naval (HD Karaoke)", - "id": "hnm_rZM8_oU" - }, - { - "title": "EXCHANGE OF HEARTS - David Slater (HD Karaoke)", - "id": "QJkuXjgv6XY" - }, - { - "title": "LOVE ME WITH ALL OF YOUR HEART - Engelbert Humperdinck (HD Karaoke)", - "id": "T843m6-nLgk" - }, - { - "title": "THE PAST - Ray Parker (HD Karaoke)", - "id": "b4w7NFOv2rg" - }, - { - "title": "I DON'T WANT TO TALK ABOUT IT - Rod Stewart (HD Karaoke)", - "id": "uq4v8tWmUfA" - }, - { - "title": "WHEN I'M GONE - Albert Hammond (HD Karaoke)", - "id": "TJUxIwLTfsQ" - }, - { - "title": "KAHIT SINO - Richard Reynoso (HD Karaoke)", - "id": "IF6PT1UMEIM" - }, - { - "title": "KABA - Tootsie Guevara (HD Karaoke)", - "id": "n73Fd0CzsAk" - }, - { - "title": "ONE FRIEND - Dan Seals (HD Karaoke)", - "id": "b3dwgcK38dM" - }, - { - "title": "CHANGES IN MY LIFE - Mark Sherman (HD Karaoke)", - "id": "0pPTVakg5Hs" - }, - { - "title": "IF WE HOLD ON TOGETHER - Diana Ross (HD Karaoke)", - "id": "QWUnq-ULS6E" - }, - { - "title": "HERE I AM - Air Supply (HD Karaoke)", - "id": "x-5yXc-qGo0" - }, - { - "title": "BULAG PIPI AT BINGI - Freddie Aguilar (HD Karaoke)", - "id": "xbXzMEXD14M" - }, - { - "title": "PANAHON NA NAMAN - Rivermaya (HD Karaoke)", - "id": "LW5jKwdCnwY" - }, - { - "title": "THROUGH THE YEARS - Kenny Rogers (HD Karaoke)", - "id": "8sejFUfH_eE" - }, - { - "title": "JUST AS I AM - Air Supply (HD Karaoke)", - "id": "koWZkAMOIyU" - }, - { - "title": "IT'S SAD TO BELONG - England Dan & John Ford Coley (HD Karaoke)", - "id": "34WrcbCHsMU" - }, - { - "title": "NEVER THOUGHT - Dan Hill (HD Karaoke)", - "id": "zNxtIn0AcAs" - }, - { - "title": "MACHO GWAPITO - RIco J. Puno (HD Karaoke)", - "id": "gOmiPplVli4" - }, - { - "title": "SI AIDA, SI LORNA, O SI FE - Marco Sison (HD Karaoke)", - "id": "l2-QNMWXWrY" - }, - { - "title": "EVEN IF - Jam Morales (HD Karaoke)", - "id": "rYJqg-ZE8SE" - }, - { - "title": "WITH A SMILE - Eraserheads (HD Karaoke)", - "id": "4QdkGihjFoM" - }, - { - "title": "ONE MOMENT IN TIME - Whitney Houston (HD Karaoke)", - "id": "48exO-I4Jkw" - }, - { - "title": "YOU'VE GOT A FRIEND - James Taylor (HD Karaoke)", - "id": "WX8e5XDxAzE" - }, - { - "title": "YESTERDAY ONCE MORE - The Carpenters (HD Karaoke)", - "id": "GuCYENZX9dg" - }, - { - "title": "BASANG-BASA SA ULAN - Aegis Band (HD Karaoke)", - "id": "hHLKw2SmWz0" - }, - { - "title": "KNIFE - Rockwell (HD Karaoke)", - "id": "0vkBPMkeM34" - }, - { - "title": "SOMETIMES WHEN WE TOUCH - Dan Hill (HD Karaoke)", - "id": "PVrpB2ZHaqg" - }, - { - "title": "TORN BETWEEN TWO LOVERS - Mary MacGregor (HD Karaoke)", - "id": "erGf0TgP4Ho" - }, - { - "title": "YOU DECORATED MY LIFE - Kenny Rogers (HD Karaoke)", - "id": "yU2Nq12FQJE" - }, - { - "title": "STUCK ON YOU - Lionel Ritchie (HD Karaoke)", - "id": "eqaGeqNZQJI" - }, - { - "title": "YESTERDAY - The Beatles (HD Karaoke)", - "id": "peZsODaB1vc" - }, - { - "title": "KUNG TAYO'Y MAGKAKALAYO - Rey Valera (HD Karaoke)", - "id": "EJBsKnrjz5w" - }, - { - "title": "LAGING NAROON KA - Jaya (HD Karaoke)", - "id": "4uvmXPZUf5Q" - }, - { - "title": "THE WAY IT USED TO BE - Engelbert Humperdinck (HD Karaoke)", - "id": "2lnFQWakxHM" - }, - { - "title": "SHE BELIEVES IN ME - Kenny Rogers (HD Karaoke)", - "id": "xhsrMGdMSXA" - }, - { - "title": "LEADER OF THE BAND - Dan Fogelberg (HD Karaoke)", - "id": "LEJ-duQejeA" - }, - { - "title": "A SMILE IN YOUR HEART - Jam Morales (HD Karaoke)", - "id": "8XA2lWhHPe4" - }, - { - "title": "FEELINGS - Morris Albert (HD Karaoke)", - "id": "PiRqVTtal0Y" - }, - { - "title": "EACH DAY WITH YOU - Martin Nievera (HD Karaoke)", - "id": "uHp7YXWWksY" - }, - { - "title": "GUSTO KITA - Gino Padilla (HD Karaoke)", - "id": "jrbDYxJj2hk" - }, - { - "title": "RELEASE ME - Engelbert Humperdick (HD Karaoke)", - "id": "NwtZBRdr138" - }, - { - "title": "MAYBE THIS TIME - Michael Murphy (HD Karaoke)", - "id": "CyyKmoXBK2Q" - }, - { - "title": "OUT OF THE BLUE - Michael Learns To Rock (HD Karaoke)", - "id": "QRa19qdlq0k" - }, - { - "title": "SANA DALAWA ANG PUSO KO - Bodjie's Law of Gravity (HD Karaoke)", - "id": "eeXyRBwqRzY" - }, - { - "title": "ESPERANZA - April Boy Regino (HD Karaoke)", - "id": "q0jCdoFMs1U" - }, - { - "title": "LEMON TREE - Fool's Garden (HD Karaoke)", - "id": "pMU0kaYIJ3M" - }, - { - "title": "MAY BUKAS PA - Rico J. Puno (HD Karaoke)", - "id": "JLqV4duuo-o" - }, - { - "title": "GOT TO BELIVE IN MAGIC - David Pomeranz (HD Karaoke)", - "id": "wOkF68KvsNs" - }, - { - "title": "PANGAKO - Regine Velasquez (HD Karaoke)", - "id": "cpxfRMs9fK4" - }, - { - "title": "GOODBYE - Air Supply (HD Karaoke)", - "id": "ddg8qEuN_oM" - }, - { - "title": "WOMAN - John Lennon (HD Karaoke)", - "id": "lWZlDh-Cx4I" - }, - { - "title": "MALAYO PA ANG UMAGA - Rey Valera (HD Karaoke)", - "id": "DFql04XctUg" - }, - { - "title": "LOVE HURTS - Nazareth (HD Karaoke)", - "id": "rW91hAdDe4g" - }, - { - "title": "SOMEWHERE DOWN THE ROAD - Barry Manilow (HD Karaoke)", - "id": "YJltYcnDogw" - }, - { - "title": "DAHIL MAHAL KITA - Ogie Alcasid (HD Karaoke)", - "id": "p8c9nadtkJE" - }, - { - "title": "FAITHFULLY - Journey (HD Karaoke)", - "id": "Kz2BS8Nk3Ho" - }, - { - "title": "ALWAYS - Bon Jovi (HD Karaoke)", - "id": "zVkP4Qd1S10" - }, - { - "title": "KUMUSTA KA - Freddie Aguilar (HD Karaoke)", - "id": "5DL9pMJVLvc" - }, - { - "title": "I DON'T WANT TO MISS A THING - Aerosmith (HD Karaoke)", - "id": "oES8iN59_nE" - }, - { - "title": "ISANG LAHI - Regine Velasquez (HD Karaoke)", - "id": "shdzpc-qvJs" - }, - { - "title": "BAKIT PA BA - Jay R (HD Karaoke)", - "id": "-hHonDPzjdM" - }, - { - "title": "TELL ME - Joey Albert (HD Karaoke)", - "id": "daoN4dozwq8" - }, - { - "title": "BOULEVARD - Bert Dominic (HD Karaoke)", - "id": "2L2WdZlI7QE" - }, - { - "title": "HINDI MAGBABAGO - Randy Santiago (HD Karaoke)", - "id": "I2EH-aYZ1vU" - }, - { - "title": "BAWAL NA GAMOT - Willie Garte (HD Karaoke)", - "id": "j-vA4ty_-sQ" - }, - { - "title": "BAKIT BA - Siakol (HD Karaoke)", - "id": "lDJLEHzFJfo" - }, - { - "title": "HARANA - Parokya Ni Edgar (HD Karaoke)", - "id": "2QcJ8lwbtsE" - }, - { - "title": "BAKIT KUNG SINO PA - Lloyd Umali (HD Karaoke)", - "id": "7lBSDaXj750" - }, - { - "title": "KUNG MAIBABALIK KO LANG - Regine Velasquez (HD Karaoke)", - "id": "rjAJ1VDCO6E" - }, - { - "title": "MAHIRAP MAGMAHAL NG SYOTA NG IBA - The APO Hiking Society (HD Karaoke)", - "id": "d7e-7NwjjWc" - }, - { - "title": "BIKINING ITIM - Bert Dominic (HD Karaoke)", - "id": "_Im8pND8dGk" - }, - { - "title": "WAG NA INIT ULO BABY - Rivermaya (HD Karaoke)", - "id": "_ciw7VaKfac" - }, - { - "title": "AWIT NG BARKADA - The APO Hiking Society (HD Karaoke)", - "id": "bQRFXdX6Aho" - }, - { - "title": "ALIPIN - Shamrock (HD Karaoke)", - "id": "Ch8WawV8Js0" - }, - { - "title": "PANGAKO - Kindred Garden (HD Karaoke)", - "id": "6_x-jUpib_M" - }, - { - "title": "I REMEMBER THE BOY - Joey Albert (HD Karaoke)", - "id": "YQkMXCGJlqw" - }, - { - "title": "PITONG GATANG - Fred Panopio (HD Karaoke)", - "id": "MtH1Co4-snI" - }, - { - "title": "TUKSO - Eva Eugenio (HD Karaoke)", - "id": "9UzMLtLY8CE" - }, - { - "title": "MAGHINTAY KA LAMANG - Ted Ito (HD Karaoke)", - "id": "IRy6mTzv2VE" - }, - { - "title": "HIGH SCHOOL LIFE - Sharon Cuneta (HD Karaoke)", - "id": "_-POsNoXJwY" - }, - { - "title": "COOL OFF - Session Road (HD Karaoke)", - "id": "3gvv2UU2tgo" - }, - { - "title": "Mr. DJ - Sharon Cuneta (HD Karaoke)", - "id": "kFbPf03B700" - }, - { - "title": "LABANAN NATIN ANG TUKSO - J Brothers (HD Karaoke)", - "id": "KEyTl9RiZno" - }, - { - "title": "MUNDO - IV of Spades (HD Karaoke)", - "id": "qTWdhI1bMJs" - }, - { - "title": "MAHAL KA SA AKIN - Tootsie Guevara (HD Karaoke)", - "id": "vowNp8mWovQ" - }, - { - "title": "DAHIL IKAW - True Faith (HD Karaoke)", - "id": "jiZnJYJ0pAM" - }, - { - "title": "HOW AM I SUPPOSED TO LIVE WITHOUT YOU - Michael Bolton (HD Karaoke)", - "id": "l3zNhIpRWZI" - }, - { - "title": "EVEN THE NIGHTS ARE BETTER - Air Supply (HD Karaoke)", - "id": "mszM6TkVWKg" - }, - { - "title": "ESTUDYANTE BLUES - Freddie Aguilar (HD Karaoke)", - "id": "5KnNqaLtXRM" - }, - { - "title": "CHINITO - Yeng Constantino (HD Karaoke)", - "id": "Zd5fGGRZWaA" - }, - { - "title": "SALAMAT - The Dawn (HD Karaoke)", - "id": "iUVpH20XKW8" - }, - { - "title": "KISAPMATA - Rivermaya (HD Karaoke)", - "id": "rAqrj4Fse8k" - }, - { - "title": "AWIT NG KABATAAN - Rivermaya (HD Karaoke)", - "id": "h2gGsFRm90Q" - }, - { - "title": "KAPAYAPAAN - Tropical Depression (HD Karaoke)", - "id": "-uIEdI4-ETU" - }, - { - "title": "PRINSESA - The Teeth (HD Karaoke)", - "id": "WBOGNGP4row" - }, - { - "title": "NAAALALA KA - Rey Valera (HD Karaoke)", - "id": "-0hd-x_4i1Y" - }, - { - "title": "KAHIT KAILAN - South Border (HD Karaoke)", - "id": "LZKvwF6kQTc" - }, - { - "title": "TULOY PA RIN - Neocolours (HD Karaoke)", - "id": "E1ljQmmLx0Q" - }, - { - "title": "TUNAY NA PAG IBIG - April Boys (HD Karaoke)", - "id": "MUsKcXgjcw0" - }, - { - "title": "NO TOUCH - Juan Dela Cruz Band (HD Karaoke)", - "id": "5V7xeuh-J2w" - }, - { - "title": "PEKSMAN - Siakol (HD Karaoke)", - "id": "ydwNXkmni1A" - }, - { - "title": "TUTULUNGAN KITA - Roel Cortez (HD Karaoke)", - "id": "YOdDput1-pw" - }, - { - "title": "HANGGANG KAILAN - Orange and Lemons (HD Karaoke)", - "id": "6j7JDJvKMiM" - }, - { - "title": "TUWING UMUULAN AT KAPILING KA - Eraserheads (HD Karaoke)", - "id": "xEzDg1Be8wE" - }, - { - "title": "BINALEWALA - Michael Dutchi Libranda", - "id": "pgZdn5xbR-A" - }, - { - "title": "EVERY WOMAN IN THE WORLD - Air Supply (HD Karaoke)", - "id": "L0mM6ouDCV0" - }, - { - "title": "SIMPLE LANG - Ariel Rivera (HD Karaoke)", - "id": "rVeG1z6y1gk" - }, - { - "title": "MINAMAHAL KITA - Freddie Aguilar (HD Karaoke)", - "id": "dq912y_GK3o" - }, - { - "title": "ISANG LINGGONG PAG IBIG - Imelda Papin (HD Karaoke)", - "id": "P5FHXnFBGfs" - }, - { - "title": "FOREVER - Kenny Loggins (HD Karaoke)", - "id": "HrD3aTIu-vg" - }, - { - "title": "IF EVER YOU'RE IN MY ARMS AGAIN - Peobo Bryson (HD Karaoke)", - "id": "zHS2O6YKbT4" - }, - { - "title": "LARAWANG KUPAS - Jerome Abalos (HD Karaoke)", - "id": "m1g28gwYYl4" - }, - { - "title": "REMEMBER ME - Renz Verano (HD Karaoke)", - "id": "emJq5hYQtBk" - }, - { - "title": "LAKI SA LAYAW - Mike Hanopol (HD Karaoke)", - "id": "cBO0_dhukb4" - }, - { - "title": "HAVING YOU NEAR ME - Air Supply (HD Karaoke)", - "id": "VHWSzzzs1co" - }, - { - "title": "HONEY MY LOVE SO SWEET - April Boys (HD Karaoke)", - "id": "0m8vJvC39ec" - }, - { - "title": "SANA'Y LAGING MAGKAPILING - April Boy Regino (HD Karaoke)", - "id": "R9G-jr4Uv3Y" - }, - { - "title": "EWAN - APO Hiking Society (HD Karaoke)", - "id": "9AtpnFEQnGs" - }, - { - "title": "CLOSER YOU AND I - Gino Padilla (HD Karaoke)", - "id": "pvgScUhloHM" - }, - { - "title": "NAIS KO - Rodel Naval (HD Karaoke)", - "id": "NcJ1Q49ce_E" - }, - { - "title": "NAIS KONG MALAMAN MO - Boyfriends (HD Karaoke)", - "id": "SSKFQA6yJlg" - }, - { - "title": "BEER - Itchy Worms (HD Karaoke)", - "id": "46wZBopt41E" - }, - { - "title": "KAILANGAN KO'Y IKAW - Regine Velasquez (HD Karaoke)", - "id": "LbSfG88dJJo" - }, - { - "title": "NGITI - Ronnie Liang (HD Karaoke)", - "id": "-xvdThoW9CE" - }, - { - "title": "I'LL NEVER GO - Nexxus (HD Karaoke)", - "id": "qxUqHwU5sOo" - }, - { - "title": "INIIBIG KITA - Roel Cortez (HD Karaoke)", - "id": "clPnRGflATI" - }, - { - "title": "SA KANYA - Ogie Alcasid (HD Karaoke)", - "id": "pRudjEmhWP0" - }, - { - "title": "IF - Nelson Del Castillo (HD Karaoke)", - "id": "FNi1l5zn_eA" - }, - { - "title": "ALONE - Heart (HD Karaoke)", - "id": "EybjIqR_aD0" - }, - { - "title": "SINAKTAN MO ANG PUSO KO - Michael V (HD Karaoke)", - "id": "kKoduKyhwIM" - }, - { - "title": "BAKIT PA - Jessa Zaragoza (HD Karaoke)", - "id": "71Nu2m_zA_U" - }, - { - "title": "MAGDALENA - Freddie Aguilar (HD Karaoke)", - "id": "Zj9Q4XBX2_w" - }, - { - "title": "KAILANGAN KITA - Gary Valenciano (HD Karaoke)", - "id": "iO-cj4M-vsI" - }, - { - "title": "NAKAPAGTATAKA - The APO Hiking Society (HD Karaoke)", - "id": "pVWa_8_68kA" - }, - { - "title": "BAKIT BA IKAW - Michael Pangilinan (HD Karaoke)", - "id": "2DyfczmSP1I" - }, - { - "title": "FOREVER'S NOT ENOUGH - Sarah Geronimo (HD Karaoke)", - "id": "llHTc2DmmpE" - }, - { - "title": "GITARA - Parokya ni Edgar (HD Karaoke)", - "id": "1MwpsJdi7MM" - }, - { - "title": "ORDINARY SONG - Marc Velasco (HD Karaoke)", - "id": "2C4zyDx0zR4" - }, - { - "title": "MINSAN LANG KITA IIBIGIN - Ariel Rivera (HD Karaoke)", - "id": "4qOqUQ8e78g" - }, - { - "title": "DADALHIN - Regine Velasquez (HD Karaoke)", - "id": "AKZGAUjFGHM" - }, - { - "title": "BULONG - Kitchie Nadal (HD Karaoke)", - "id": "O2aq65azxpM" - }, - { - "title": "KAHIT AYAW MO NA - This Band (HD Karaoke)", - "id": "mbKOHjak9Xo" - }, - { - "title": "IMAHE - Magnus Haven (HD Karaoke)", - "id": "8u-6ixGJYI4" - }, - { - "title": "YOU - Basil Valdez (HD Karaoke)", - "id": "Kbh--yAhjAE" - }, - { - "title": "BAKIT NGA BA MAHAL KITA - Roselle Nava (HD Karaoke)", - "id": "GwPgYdRcWUQ" - }, - { - "title": "HALIK - Aegis Band (HD Karaoke)", - "id": "AN5_Zi0nLGU" - }, - { - "title": "YOU'RE STILL THE ONE - Shania Twain (HD Karaoke)", - "id": "olNhg2b_ClA" - }, - { - "title": "NANGHIHINAYANG - Jeremiah (HD Karaoke)", - "id": "CDVYjRyw_aM" - }, - { - "title": "WALA NA BANG PAG IBIG - Jaya (HD Karaoke)", - "id": "0BZOrtPsRJc" - }, - { - "title": "SA MATA MAKIKITA - Roel Cortez (HD Karaoke)", - "id": "VNuiZgNAZ20" - }, - { - "title": "SPAGHETTI SONG - Sexbomb Girls (HD Karaoke)", - "id": "MCPy3T-PUcs" - }, - { - "title": "ABOT KAMAY - Orange and Lemons (HD Karaoke)", - "id": "2EVf8pYUOf0" - }, - { - "title": "ANAK - Freddie Aguilar (HD Karaoke)", - "id": "v5_CXC8HVzI" - }, - { - "title": "TAKE ME NOW - David Gates (HD Karaoke)", - "id": "_NJDasyDhIQ" - }, - { - "title": "BABY I LOVE YOU - J Brothers (HD Karaoke)", - "id": "BoUpKb8R9CM" - }, - { - "title": "SINTA - Aegis (HD Karaoke)", - "id": "cCDUODOIrqc" - }, - { - "title": "AKAP - Imago (HD Karaoke)", - "id": "xuGZr7WWpkM" - }, - { - "title": "ALWAYS SOMEWHERE - Scorpions (HD Karaoke)", - "id": "VdoFZ7BE5QY" - }, - { - "title": "SKYLINE PIGEON - Elton John (HD Karaoke)", - "id": "r2Z3FJT8teg" - }, - { - "title": "HOW CAN I TELL HER - Lobo (HD Karaoke)", - "id": "x0SMymUchOM" - }, - { - "title": "COTABATO - Asin (HD Karaoke)", - "id": "OPBqkqcxsZM" - }, - { - "title": "NO ARMS CAN EVER HOLD YOU - Chris Norman (HD Karaoke)", - "id": "k2mHKrpF6to" - }, - { - "title": "IPAGLALABAN KO - Freddie Aguilar (HD Karaoke)", - "id": "H8k1iK0dHZY" - }, - { - "title": "BREATHLESS - The Corrs (HD Karaoke)", - "id": "pEW3KcJ0m-0" - }, - { - "title": "MAKE BELIEVE - Marco Sison (HD Karaoke)", - "id": "FOuF12H3ftk" - }, - { - "title": "NOBELA - Join The Club (HD Karaoke)", - "id": "DuqjG3vWiUo" - }, - { - "title": "CHINITA GIRL - Lil Vincey ft. Guel (HD Karaoke)", - "id": "jud7FQLLrOU" - }, - { - "title": "MARIKIT - Juan Caoile & Kyle (HD Karaoke)", - "id": "okVcKc4wbn8" - }, - { - "title": "BUWAN - Juan Carlos Labajo (HD Karaoke)", - "id": "F9qjC5G9jj8" - }, - { - "title": "HANDOG - Florante (HD Karaoke)", - "id": "qQXdeb0H434" - }, - { - "title": "BULOY - Parokya Ni Edgar (HD Karaoke)", - "id": "Wox-FfUpwCg" - }, - { - "title": "KAILANMAN - Introvoys (HD Karaoke)", - "id": "xOv6__Hk5mY" - }, - { - "title": "IKAW ANG LAHAT SA AKIN - Martin Nievera (HD Karaoke)", - "id": "tOLBndyCqvg" - }, - { - "title": "HOW CAN I ASK FOR MORE - Ryan Relayo (HD Karaoke)", - "id": "rl5NXVGuX40" - }, - { - "title": "AYOKO NA SANA - Ariel Rivera (HD Karaoke)", - "id": "pXgQ5LRComU" - }, - { - "title": "TILL I MET YOU - Kuh Ledesma (HD Karaoke)", - "id": "OHmOH7x-n-M" - }, - { - "title": "YAKAP SA DILIM - APO Hiking Society", - "id": "CvuqT8hatVQ" - }, - { - "title": "HINDI KO KAYA - Richard Reynoso (HD Karaoke)", - "id": "k6Zzo1jzlRI" - }, - { - "title": "KANLUNGAN - Noel Cabangon (HD Karaoke)", - "id": "rDDfFT0vkN4" - }, - { - "title": "SANA KAHIT MINSAN - Ariel Rivera (HD Karaoke)", - "id": "kM1a312lizk" - }, - { - "title": "WHEN I MET YOU - APO Hiking Society (HD Karaoke)", - "id": "h6z5eM-tjmg" - }, - { - "title": "DAHIL MAHAL KITA - Boyfriends (HD Karaoke)", - "id": "krDW47ggmaM" - }, - { - "title": "25 MINUTES - Michael Learns To Rock (HD Karaoke)", - "id": "fMlyH-A4wzg" - }, - { - "title": "BE MY LADY - Martin Nievera (HD Karaoke)", - "id": "UclCZ6Si7kY" - }, - { - "title": "KUNG AKO NA LANG SANA - Bituin Escalante (HD Karaoke)", - "id": "ZFBdzKUp-JI" - }, - { - "title": "NANDITO AKO - Ogie Alcasid (HD Karaoke)", - "id": "SrE38_6BuBc" - }, - { - "title": "ALL MY LIFE - America (HD Karaoke)", - "id": "IcQ8noPu8hQ" - }, - { - "title": "MULI - Rodel Naval (HD Karaoke)", - "id": "1IHl20MeoII" - }, - { - "title": "PAMINSAN-MINSAN - Richard Reynoso (HD Karaoke)", - "id": "fSvWKigYk_Y" - }, - { - "title": "YOU ARE MY SONG - Regine Velasquez (HD Karaoke)", - "id": "G-0OOkpCe_Q" - }, - { - "title": "LUMAYO KA MAN SA AKIN - Rodel Naval (HD Karaoke)", - "id": "lg9GBTPnaXY" - }, - { - "title": "MAGING SINO KA MAN - Rey Valera (HD Karaoke)", - "id": "EIe03DLVvcU" - }, - { - "title": "BAWAL LUMABAS (Full Version) - Kim Chiu (HD Karaoke)", - "id": "sAoiF6jqPTQ" - }, - { - "title": "PANGAKO - Rey Valera (HD Karaoke)", - "id": "FhIN9flqqR4" - }, - { - "title": "AKALA MO - Aiza Seguerra (HD Karaoke)", - "id": "L9X5QthJLRA" - }, - { - "title": "IKAW SANA - Ogie Alcasid (HD Karaoke)", - "id": "Su8Q_K7npE8" - }, - { - "title": "LAGUNA - Sampaguita (HD Karaoke)", - "id": "7Q8dKX2wYY4" - }, - { - "title": "HEAL THE WORLD - Michael Jackson (HD Karaoke)", - "id": "MM06Ax8W2ts" - }, - { - "title": "USOK - Asin (HD Karaoke)", - "id": "iqUdOY75tEk" - }, - { - "title": "LINE TO HEAVEN - Introvoys (HD Karaoke)", - "id": "kIZD_ejk3q8" - }, - { - "title": "PUSONG BATO - Alon Band (HD Karaoke)", - "id": "w2Kz25t0JI8" - }, - { - "title": "ALAB NG PUSO - Rivermaya (HD Karaoke Version)", - "id": "90BBDnH-ZWI" - }, - { - "title": "TOYANG - Eraserheads (HD Karaoke Version)", - "id": "ebQMmao5tjw" - }, - { - "title": "KAILAN - Eraserheads (HD Karaoke)", - "id": "8zj5ojdmiiI" - }, - { - "title": "BAKIT NGAYON KA LANG - Ogie Alcasid (HD Karaoke)", - "id": "KnSsOL-n9r0" - }, - { - "title": "ANG BOYFRIEND KONG BADUY - Cinderella (HD Karaoke)", - "id": "TnkBcWakJCc" - }, - { - "title": "KAWAWANG COWBOY - Fred Panopio (HD Karaoke)", - "id": "qOsgFrv7zrI" - }, - { - "title": "WAG MO NA SANA - Parokya Ni Edgar (HD Karaoke)", - "id": "aZrHWYFHhuo" - }, - { - "title": "KUNG MAWAWALA KA - Ogie Alcasid (HD Karaoke)", - "id": "Pq2i8ToJD5w" - }, - { - "title": "HALAGA - Parokya ni Edgar (HD Karaoke)", - "id": "DaDWBKABYmU" - }, - { - "title": "NARDA - Kamikazee (HD Karaoke)", - "id": "uJV0avAF_FU" - }, - { - "title": "KALIWETE - Eraserheads (HD Karaoke)", - "id": "3BP2C4Zt07c" - }, - { - "title": "DON'T KNOW WHAT TO SAY - Ric Segreto (HD Karaoke)", - "id": "nxtzuzmwb7M" - }, - { - "title": "NOSI BA LASI - Sampaguita (HD Karaoke)", - "id": "8846-5w-MlA" - }, - { - "title": "MAKE IT WITH YOU (OST) - Ben and Ben (HD Karaoke)", - "id": "lZJyrZloD2Y" - }, - { - "title": "ESEM - Yano (HD Karaoke)", - "id": "aSKUfgAdLqw" - }, - { - "title": "FAREWELL - Raymond Lauchengco (HD Karaoke)", - "id": "U52fJixWyro" - }, - { - "title": "KUMUSTA KA - Rey Valera (HD Karaoke)", - "id": "1r79uNY10_Y" - }, - { - "title": "KUNG DI RIN LANG IKAW - December Avenue feat. Moira Dela Torre (HD Karaoke)", - "id": "pzrxRxJl6XE" - }, - { - "title": "HUWAG NA LANG KAYA - True Faith (HD Karaoke)", - "id": "MfLJk_rZJyw" - }, - { - "title": "FRIEND OF MINE - Odette Quesada (HD Karaoke)", - "id": "zaAEriINEsg" - }, - { - "title": "PARE KO - Eraserheads (HD Karaoke)", - "id": "Zy1rjdnjGg8" - }, - { - "title": "PINOY AKO - Orange and Lemons (HD Karaoke)", - "id": "f9-DjRVuzgk" - }, - { - "title": "BANYO QUEEN - Andrew E (HD Karaoke)", - "id": "3N5pMZOsxb8" - }, - { - "title": "ALAALA MO - White Lies (HD Karaoke)", - "id": "iUUI4JNgY8U" - }, - { - "title": "IKA'Y MAHAL PA RIN - Rockstar 2 (HD Karaoke)", - "id": "kw1Pk9L0qi4" - }, - { - "title": "AKO'Y SA'YO IKA'Y AKIN - IAXE Band (HD Karaoke)", - "id": "aPtjHNYmBPs" - }, - { - "title": "TUNAY NA LIGAYA - Ariel Rivera (HD Karaoke)", - "id": "C8jvm3WlnQ8" - }, - { - "title": "BAKIT DI TOTOHANIN - Carol Banawa (HD Karaoke)", - "id": "2GZyiXPAS3M" - }, - { - "title": "ITANONG MO SA MGA BATA - Asin (HD Karaoke)", - "id": "vVLl7sjo4p4" - }, - { - "title": "ANG UMAAYAW AY DI NAGWAWAGI - Freddie Aguilar (HD Karaoke)", - "id": "5p7Toc0Y70Q" - }, - { - "title": "BAKIT LABIS KITANG MAHAL - Boyfriends (HD Karaoke)", - "id": "4DfXGMnl0QA" - }, - { - "title": "IPAGPATAWAD MO - VST & Company (HD Karaoke)", - "id": "px0HSx2mTTg" - }, - { - "title": "KUNG KAILANGAN MO AKO - Rey Valera (HD Karaoke)", - "id": "RMI5XPR0NAo" - }, - { - "title": "CAN'T SMILE WITHOUT YOU - Barry Manilow (HD Karaoke)", - "id": "CPVqcnYOZPw" - }, - { - "title": "LAKLAK - The Teeth (HD Karaoke)", - "id": "5jZ_o03npqI" - }, - { - "title": "HULING EL BIMBO - Eraserheads (HD Karaoke)", - "id": "1hAmBPNhaFs" - }, - { - "title": "KAHIT MAPUTI NA ANG BUHOK KO - Rey Valera (HD Karaoke)", - "id": "Ym38LjJsE7Q" - }, - { - "title": "SIGAW NG PUSO - Father and Sons (HD Karaoke)", - "id": "2vMgtp7T5lg" - }, - { - "title": "BANAL NA ASO SANTONG KABAYO - Yano (HD Karaoke)", - "id": "eaJXriSSzts" - }, - { - "title": "YOUR LOVE - Alamid (HD Karaoke)", - "id": "ffMi2Hz7ySI" - }, - { - "title": "TORETE - Moonstar88 (HD Karaoke)", - "id": "tBvLeaU411w" - }, - { - "title": "PAGSUBOK - Orient Pearl (HD Karaoke)", - "id": "FMAD7SvcHeA" - }, - { - "title": "MAHAL PA RIN KITA - Rockstar (HD Karaoke)", - "id": "CJhy0Vv45gw" - }, - { - "title": "MASDAN MO ANG KAPALIGIRAN - Asin (Karaoke)", - "id": "0cy7c3b0gCE" - }, - { - "title": "214 - Rivermaya (Karaoke Version)", - "id": "hNmgGtSTqb8" - }, - { - "title": "MANOK NA PULA (Karaoke Version) - Vic Desucatan", - "id": "10QvN2MOBVM" - }, - { - "title": "LIGAYA - Eraserheads (HD Karaoke)", - "id": "DJvFbnk8Ax8" - }, - { - "title": "LOST WITHOUT YOUR LOVE - Bread (HD Karaoke)", - "id": "Z8ahKRl4_N4" - }, - { - "title": "ELESI - Rivermaya (HD Karaoke)", - "id": "5DojxsfqkHg" - }, - { - "title": "HINAHANAP-HANAP KITA - Regine Velasquez (HD Karaoke)", - "id": "jPyx8LBB4ZI" - }, - { - "title": "PANALANGIN - APO Hiking Society (HD Karaoke)", - "id": "Hzu15dgluSk" - }, - { - "title": "ANG AKING AWITIN - Bong Gabriel (HD Karaoke)", - "id": "eb_z25dXna4" - }, - { - "title": "EASY - The Commodores (HD Karaoke)", - "id": "AwnEOyr2_uM" - }, - { - "title": "BAD ROMANCE - Lady Gaga (HD Karaoke)", - "id": "16pmW7LGntU" - }, - { - "title": "BRING ME TO LIFE - Evanescence (HD Karaoke)", - "id": "AQ8FzsNIYFg" - }, - { - "title": "BUILD ME UP BUTTERCUP - The Foundations (HD Karaoke)", - "id": "NdvQblg9Uqc" - }, - { - "title": "YOU SHOULD BE DANCING - Bee Gees (HD Karaoke)", - "id": "fSAplxG3fBA" - }, - { - "title": "SAVING ALL MY LOVE FOR YOU - Whitney Houston (HD Karaoke)", - "id": "RmvJE1BUpCo" - }, - { - "title": "BECAUSE YOU LOVE ME - Celine Dion (HD Karaoke)", - "id": "XP1W7CTdwCs" - }, - { - "title": "MY HEART WILL GO ON - Celine Dion (HD Karaoke)", - "id": "QAFwc9zmZvU" - }, - { - "title": "IF I CAN'T HAVE YOU - Bee Gees (HD Karaoke)", - "id": "u8QQuMJeJ24" - }, - { - "title": "I WANNA DANCE WITH SOMEBODY - Whitney Houston (HD Karaoke)", - "id": "_uHMopThWDk" - }, - { - "title": "I HAVE NOTHING - Whitney Houston (HD Karaoke)", - "id": "xNSV4gYiWZE" - }, - { - "title": "THE GREATEST LOVE OF ALL - Whitney Houston (HD Karaoke)", - "id": "NnDIRVt9CIA" - }, - { - "title": "DIDN'T WE ALMOST HAVE IT ALL - Whitney Houston (HD Karaoke)", - "id": "BzyS0G3zb3M" - }, - { - "title": "OPEN ARMS - Journey (HD Karaoke)", - "id": "8XsRCvIReiM" - }, - { - "title": "MORE THAN A WOMAN - Bee Gees (HD Karaoke)", - "id": "VgUHQUMjewY" - }, - { - "title": "WONDERFUL TONIGHT - Eric Clapton (HD Karaoke)", - "id": "MWaZVzM3xQs" - }, - { - "title": "JUST ONCE - James Ingram (HD Karaoke)", - "id": "vYYxov5T-VQ" - }, - { - "title": "I WILL SURVIVE - Gloria Gaynor (HD Karaoke)", - "id": "ycotHxAZTLE" - }, - { - "title": "CARELESS WHISPER - George Michael (HD Karaoke)", - "id": "oVV-bZYTbLw" - }, - { - "title": "BABY I'M A WANT YOU - Bread (HD Karaoke)", - "id": "Pt7zZcikuYU" - }, - { - "title": "FATHER AND SON - Boyzone (HD Karaoke)", - "id": "JmH8knykOJk" - }, - { - "title": "PICTURE OF YOU - Boyzone (HD Karaoke)", - "id": "GgNzx4-OlCo" - }, - { - "title": "IMAGINE - John Lennon (HD Karaoke)", - "id": "Ub00kefhUPs" - }, - { - "title": "HEY JUDE - Beatles (HD Karaoke)", - "id": "7UH54ia45GI" - }, - { - "title": "HERE COMES THE SUN - Beatles (HD Karaoke)", - "id": "Po1MworiHuM" - }, - { - "title": "LOST IN LOVE - Air Supply (HD Karaoke)", - "id": "G2fejrK7bNw" - }, - { - "title": "MASSACHUSETTS - Bee Gees (HD Karaoke)", - "id": "kcLkrMn2JEQ" - }, - { - "title": "CRAZY LITTLE THING CALLED LOVE - Queen (HD Karaoke)", - "id": "F6RDBxnCfkE" - }, - { - "title": "LOVE ME FOR A REASON - Boyzone (HD Karaoke)", - "id": "tkQ9Wq8suOA" - }, - { - "title": "Bohemian Rhapsody - Queen (HD Karaoke)", - "id": "j1DfXFCHLDI" - }, - { - "title": "PERFECT - Ed Sheeran (HD Karaoke)", - "id": "JIxz6_VsmD4" - }, - { - "title": "YOU'RE BEAUTIFUL - James Blunt (HD Karaoke)", - "id": "Fgr4azpiWhg" - }, - { - "title": "I'M YOURS - Jason Mraz (HD Karaoke)", - "id": "MVPh2Ap7y7A" - }, - { - "title": "SOMEONE LIKE YOU (Karaoke Version) Adele", - "id": "We4opYlYBjk" - }, - { - "title": "ROLLING IN THE DEEP (Karaoke Version) Adele", - "id": "UlX9ShYyWWM" - }, - { - "title": "I KISSED A GIRL - Katy Perry (HD Karaoke)", - "id": "4A2QBKLgtzY" - }, - { - "title": "VERSACE ON THE FLOOR - Bruno Mars (HD Karaoke)", - "id": "e2Up_I0DvP4" - }, - { - "title": "JUST THE WAY YOU ARE - Bruno Mars (HD Karaoke)", - "id": "6cR3fIOoRl4" - }, - { - "title": "COUNT ON ME - Bruno Mars (HD Karaoke)", - "id": "MB3FLNrP2Rs" - }, - { - "title": "TREASURE - Bruno Mars (HD Karaoke)", - "id": "kQ77SVl2_io" - }, - { - "title": "NOW and FOREVER - Richard Marx (HD Karaoke)", - "id": "o5-o2VvtC-k" - }, - { - "title": "EXTREME - More than words (Karaoke Version)", - "id": "J1SiPYj9SaU" - }, - { - "title": "BACK STREET BOYS - All I have to give (HD Karaoke Version)", - "id": "PVAIZc4Km5w" - }, - { - "title": "YOU NEEDED ME - Anne Murray (HD Karaoke)", - "id": "lFj5f4SyJoA" - }, - { - "title": "SWEET LOVE - Anita Baker (HD Karaoke)", - "id": "BeKXR0AhzYE" - }, - { - "title": "COMPLICATED - Avril Lavigne (HD Karaoke)", - "id": "UyqfPaIzdTY" - }, - { - "title": "ON THE WINGS OF LOVE - Jeffrey Osborne (HD Karaoke)", - "id": "sKLUOzl4r10" - }, - { - "title": "RUNAWAY - The Corrs (HD Karaoke)", - "id": "iRkmanKLRlI" - }, - { - "title": "SO YOUNG - The Corrs (HD Karaoke)", - "id": "C_r2bjOxdJo" - }, - { - "title": "EVERYTHING I OWN - Bread (HD Karaoke)", - "id": "0ZBs517zZ8Y" - }, - { - "title": "DIARY - Bread (HD Karaoke)", - "id": "LZAdidauMGM" - }, - { - "title": "AUBREY - Bread (HD Karaoke)", - "id": "kTiDwKd8zKo" - }, - { - "title": "TO LOVE YOU MORE - Celine Dion (HD Karaoke)", - "id": "AF3PjkjjcqI" - }, - { - "title": "DREAMING OF YOU - Selena (HD Karaoke)", - "id": "7UswGEcTf0M" - }, - { - "title": "TAKE THAT - Back For Good (Karaoke Version)", - "id": "LFA26Ln1IT4" - }, - { - "title": "BABE - Styx (HD Karaoke)", - "id": "IHWkNgnBlIY" - }, - { - "title": "FIVE FOR FIGHTING - Superman (It's Not Easy) - Karaoke version", - "id": "ws473GuF8nw" - }, - { - "title": "SWEET CHILD O' MINE - Guns N' Roses (HD Karaoke)", - "id": "XhzOaPIegWA" - }, - { - "title": "WORDS - Bee Gees (HD Karaoke)", - "id": "A7Lhy0gULK8" - }, - { - "title": "TOO MUCH HEAVEN - Bee Gees (HD Karaoke)", - "id": "21SLE60O9Kk" - }, - { - "title": "BEE GEES - To Love Somebody (Karaoke version)", - "id": "pamtZb6qFy8" - }, - { - "title": "I STARTED A JOKE - Bee Gees (HD Karaoke)", - "id": "X9BESBcuEuU" - }, - { - "title": "WHEREVER YOU WILL GO - The Calling (HD Karaoke)", - "id": "Q3iQHu9kdA4" - }, - { - "title": "THINKING OUT LOUD - Ed Sheeran (HD Karaoke)", - "id": "bvmPzew90Ps" - }, - { - "title": "COME WHAT MAY - Air Supply (HD Karaoke)", - "id": "y5LtVfddlCQ" - }, - { - "title": "ALL OUT OF LOVE - Air Supply (HD Karaoke)", - "id": "t-Y0k7impLM" - }, - { - "title": "ALL OF ME - John Legend (HD Karaoke)", - "id": "V-NjGmD26tM" - }, - { - "title": "LIVIN' ON A PRAYER - Bon Jovi (HD Karaoke)", - "id": "rK5T5gAhqpM" - }, - { - "title": "IT'S MY LIFE - Bon Jovi (HD Karaoke)", - "id": "ix-3_rhX1U0" - }, - { - "title": "YOU - The Carpenters (HD Karaoke)", - "id": "tEU77i0RjN4" - }, - { - "title": "CLOSE TO YOU - The Carpenters (HD Karaoke)", - "id": "kWTCtLNLAVU" - }, - { - "title": "SUNDAY MORNING - Maroon 5 (HD Karaoke)", - "id": "qua_24HSUXY" - }, - { - "title": "STAYING ALIVE - Bee Gees (HD Karaoke)", - "id": "w-bGMo4q-aA" - }, - { - "title": "HOW DEEP IS YOUR LOVE - Bee Gees (HD Karaoke)", - "id": "DGe7YLb8ajU" - }, - { - "title": "IT MIGHT BE YOU - Stephen Bishop (HD Karaoke)", - "id": "LLeRvcagCZk" - } - ], - "@sing2karaoke": [ - { - "title": "Foo Fighters Today's Song", - "id": "IFhs7sWPGRE" - }, - { - "title": "Zara Larsson Midnight Sun", - "id": "SidjKoMWg-s" - }, - { - "title": "Lewis Capaldi Survive (Karaoke Version) Lyrics", - "id": "azZprPziFXk" - }, - { - "title": "Imagine Dragons, J I D Enemy", - "id": "4pG3MAR2LQA" - }, - { - "title": "Jonas Blue, Why Don't We Don't Wake Me Up", - "id": "9RlR0fLkIaU" - }, - { - "title": "Rex Orange County Pluto Projector", - "id": "nUO-nvE70Mg" - }, - { - "title": "Charlie Puth Light Switch", - "id": "lBQqcTvYL6E" - }, - { - "title": "Luke Chiang Shouldn't Be", - "id": "yb4-OjSbeWM" - }, - { - "title": "Lauren Spencer Smith Fingers Crossed", - "id": "QKcQjKxOhBU" - }, - { - "title": "Tems Crazy Tings", - "id": "lirWswoqxL0" - }, - { - "title": "Calvin Harris, Clementine Douglas Blessings (Karaoke Version) Lyrics", - "id": "YITpE_z6MLk" - }, - { - "title": "Morgan Wallen I'm The Problem (Karaoke Version) Lyrics", - "id": "ziLu2VgizEA" - }, - { - "title": "Miley Cyrus More To Lose (Karaoke Version) Lyrics", - "id": "IzE_7nwc1to" - }, - { - "title": "Peach Tree Rascals Mariposa (Karaoke Version) Lyrics", - "id": "pWPFp2LdIfI" - }, - { - "title": "David Guetta , Sia Floating Through Space", - "id": "bpQhRb-7cxg" - }, - { - "title": "RAYE, Rudimental Regardless", - "id": "I8GrRdI8MQg" - }, - { - "title": "Banners Someone To You", - "id": "JFcPMmPXOok" - }, - { - "title": "Lily Allen Mr Blue Sky", - "id": "paRrmkc2UJ8" - }, - { - "title": "Carole's Daughter Violent", - "id": "DyUOlHn2k70" - }, - { - "title": "Campsite Dream Here Comes the Sun", - "id": "Q_Z3uVUH-3g" - }, - { - "title": "Birdy Surrender (Karaoke Version) Lyrics", - "id": "E4JL6mVx83A" - }, - { - "title": "MOD SUN, Avril Lavigne Flames (Karaoke Version) Lyrics", - "id": "cA2Yboh8BpE" - }, - { - "title": "Jason DeRulo, Adam Levine Lifestyle (Karaoke Version) Lyrics", - "id": "56rpjUQobQA" - }, - { - "title": "Jonas Brothers Love Me To Heaven", - "id": "M1OT468tpEA" - }, - { - "title": "Mother Mother Hayloft (Karaoke Version) Lyrics", - "id": "HudblsqVOso" - }, - { - "title": "Shawn Mendes Look Up At The Stars (Karaoke Version) Lyrics", - "id": "_yPP1K434ZE" - }, - { - "title": "Joshua Bassett Lie Lie Lie (Karaoke Version) Lyrics", - "id": "qd5dfNzXcjE" - }, - { - "title": "Shane Codd Get Out My Head (Karaoke Version) Lyrics", - "id": "Ad5W-qxIp7U" - }, - { - "title": "The Neighbourhood Stargazing (Karaoke Version) Lyrics", - "id": "zkJ4_Rkg59Y" - }, - { - "title": "Kid Laroi WITHOUT YOU (Karaoke Version) Lyrics", - "id": "ZOCm1ZZsQGI" - }, - { - "title": "Miley Cyrus End of the World (Karaoke Version) Lyrics", - "id": "ZpPBYYEJ0Qs" - }, - { - "title": "Ed Sheeran Azizam (Karaoke Version) Lyrics", - "id": "rAo5vUgt0BA" - }, - { - "title": "Chappell Roan The Giver (Karaoke Version) Lyrics", - "id": "aML-2WCtUY0" - }, - { - "title": "Doechii Anxiety (Karaoke Version) Lyrics", - "id": "QW70H3-aPZc" - }, - { - "title": "Silk City, Ellie Goulding New Love (Karaoke Version) Lyrics", - "id": "5zp3ZjrlTes" - }, - { - "title": "Taylor Swift it's time to go (Karaoke Version) Lyrics", - "id": "wbWrMOt1feE" - }, - { - "title": "Kings Of Leon The Bandit (Karaoke Version) Lyrics", - "id": "oGjo7HknhRw" - }, - { - "title": "Ava Max My Head & My Heart (Karaoke Version) Lyrics", - "id": "yv5_yByX2A0" - }, - { - "title": "Anne Marie, KSI, Digital Farm Animals Donโ€™t Play (Karaoke Version) Lyrics", - "id": "qoMMYWaI9jI" - }, - { - "title": "Gwen Stefani Let Me Reintroduce Myself", - "id": "qfz8hhkmerA" - }, - { - "title": "David Guetta, MORTEN, Lanie Gardner Dreams (Karaoke Version) Lyrics", - "id": "cVr3_SxIIAo" - }, - { - "title": "Wilbur Soot Your New Boyfriend (Karaoke Version) Lyrics", - "id": "LCcDyjlycAE" - }, - { - "title": "The Weeknd Save Your Tears (Karaoke Version) Lyrics", - "id": "BDbzSchB_4A" - }, - { - "title": "Justin Bieber Anyone (Karaoke Version) Lyrics", - "id": "KpUNglpISo8" - }, - { - "title": "Jack Harlow Tyler Herro! (Karaoke Version) Lyrics", - "id": "q-S_ZJatVBU" - }, - { - "title": "Justin Bieber, benny blanco Lonely (Karaoke Version) Lyrics", - "id": "t_KiFnX3tfQ" - }, - { - "title": "EYEDRESS JEALOUS (Karaoke Version) Lyrics", - "id": "aFBERgc8Wxg" - }, - { - "title": "Not The End Of The World Katy Perry (Karaoke Version) Lyrics", - "id": "ttZqEoec4z4" - }, - { - "title": "Jason Derulo, Nuka Love Not War The Tampa Beat (Karaoke Version) Lyrics", - "id": "YRU2hqyJ2vs" - }, - { - "title": "Sia Courage to Change (Karaoke Version) Lyrics", - "id": "sSz0YEgLggY" - }, - { - "title": "Shawn Mendes, Justin Bieber Monster (Karaoke Version) Lyrics", - "id": "WZuqmqlE9EY" - }, - { - "title": "Tate McRae r u ok (Karaoke Version) Lyrics", - "id": "81QdILxMAcw" - }, - { - "title": "Studio Killers Jenny (Karaoke Version) Lyrics", - "id": "nB8wzJIGIvM" - }, - { - "title": "Miley Cyrus Plastic Hearts (Karaoke Version) Lyrics", - "id": "DUp6869RfTU" - }, - { - "title": "Alex Warren Ordinary (Karaoke Version) Lyrics", - "id": "oK4e0rSdcgs" - }, - { - "title": "Sabrina Carpenter โ€“ Busy Woman (Karaoke Version) Lyrics", - "id": "WH_p-4ciWT8" - }, - { - "title": "Michael Jackson Leave Me Alone (Karaoke Version) Lyrics", - "id": "UMcSAv91U8M" - }, - { - "title": "James Arthur - Say You Won't Let Go (Karaoke Version) Lyrics", - "id": "sBl-ssZCGV4" - }, - { - "title": "Perry Como As Time Goes By (Karaoke Version) Lyrics", - "id": "XPv17onmLfI" - }, - { - "title": "Paul Anka Lonely Boy (Karaoke Version) Lyrics", - "id": "OuxxcRmHZ_s" - }, - { - "title": "Stereophonics Indian Summer (Karaoke Version) Lyrics", - "id": "16nBs5x-Ygc" - }, - { - "title": "Rod Stewart The First Cut Is The Deepest (Karaoke Version) Lyrics", - "id": "2n5gSoinUzY" - }, - { - "title": "Chappell Roan Pink Pony Club (Karaoke Version) Lyrics", - "id": "n8A2XpVdE2E" - }, - { - "title": "Robbie Williams No Regrets (Karaoke Version) Lyrics", - "id": "Bo3fOotmjf0" - }, - { - "title": "Queen A Kind Of Magic (Karaoke Version) Lyrics", - "id": "lKnpLXGUIro" - }, - { - "title": "Oasis Supersonic (Karaoke Version) Lyrics", - "id": "jsCwcD17hFs" - }, - { - "title": "Queen Killer Queen (Karaoke Version) Lyrics", - "id": "H7zHY3j_HYc" - }, - { - "title": "The Black Eyed Peas Rock That Body (Karaoke Version) Lyrics", - "id": "tNohXv7asCI" - }, - { - "title": "Rihanna S&M (Karaoke Version) Lyrics", - "id": "j2Cqq4TTpdI" - }, - { - "title": "One Direction Midnight Memories (Karaoke Version) Lyrics", - "id": "wCyV201eiq8" - }, - { - "title": "Oasis Roll With It (Karaoke Version) Lyrics", - "id": "H9gxMmZ24CA" - }, - { - "title": "Rihanna Disturbia (Karaoke Version) Lyrics", - "id": "iy4EVbvwDiE" - }, - { - "title": "Michael Jackson Bad (Karaoke Version) Lyrics", - "id": "APOFDAYk3mM" - }, - { - "title": "Stereophonics Have A Nice Day (Karaoke Version) Lyrics", - "id": "FlEoFLjbYKE" - }, - { - "title": "Rod Stewart This Old Heart Of Mine Is Weak For You (Karaoke Version) Lyrics", - "id": "8JNFBkcJ_fg" - }, - { - "title": "Lady Gaga Applause (Karaoke Version) Lyrics", - "id": "ew4jQ6HFpPQ" - }, - { - "title": "Kylie Minogue Wouldn't Change A Thing (Karaoke Version) Lyrics", - "id": "8r-Diak8QPI" - }, - { - "title": "Kendrick Lamar Not Like Us (Karaoke Version) Lyrics", - "id": "v0KVO6KrQEk" - }, - { - "title": "Eminem Real Slim Shady (Karaoke Version) Lyrics", - "id": "OW7EWanekPU" - }, - { - "title": "Ed Sheeran You Need Me I Don't Need You (Karaoke Version) Lyrics", - "id": "2NB_PFstV4A" - }, - { - "title": "Eminem Cleanin' Out My Closet (Karaoke Version) Lyrics", - "id": "A6ee_3Qtm1I" - }, - { - "title": "Kylie Minogue Step Back In Time (Karaoke Version) Lyrics", - "id": "IGM9SH8cLIM" - }, - { - "title": "Kylie Minogue Never Too Late (Karaoke Version) Lyrics", - "id": "EDG2wOPeix4" - }, - { - "title": "This Is The Last Time (Karaoke Version) Lyrics", - "id": "ZUJS6gn-I90" - }, - { - "title": "Keane Everybody's Changing (Karaoke Version) Lyrics", - "id": "RTnkzkwNPoc" - }, - { - "title": "Elton John Tiny Dancer (Karaoke Version) Lyrics", - "id": "P4ZxSsndR3s" - }, - { - "title": "Elton John I Want Love (Karaoke Version) Lyrics", - "id": "BkUQ770eNYw" - }, - { - "title": "Elton John Electricity (Karaoke Version) Lyrics", - "id": "EstFA1tfhjA" - }, - { - "title": "David Bowie Modern Love (Karaoke Version) Lyrics", - "id": "zXxWtOc63Ac" - }, - { - "title": "David Guetta, Alphaville, Ava Max Forever Young (Karaoke Version) Lyrics", - "id": "piIWyYB8euI" - }, - { - "title": "Tate McRae Sports Car (Karaoke Version) Lyrics", - "id": "s89hjT1ytFo" - }, - { - "title": "Lady Gaga Abracadabra (Karaoke Version) Lyrics", - "id": "VbkR79iiUs4" - }, - { - "title": "Jason Derulo, DJ Lucas Beat & Sia You Can Do Anything (Karaoke Version) Lyrics", - "id": "pfWsGLahAPI" - }, - { - "title": "BABYMONSTER CLIK CLAK (Karaoke Version) Lyrics", - "id": "mByJJry7FCE" - }, - { - "title": "Sonny Fodera, Jazzy, D O D Somedays (Karaoke Version) Lyrics", - "id": "2TO1IheHI9Q" - }, - { - "title": "Jazzy, CamrinWatsin Touching Heaven (Karaoke Version) Lyrics", - "id": "eB-o-HkG9Ek" - }, - { - "title": "Tyla PUSH 2 START (Karaoke Version) Lyrics", - "id": "Q9rw0Zf0_gE" - }, - { - "title": "Rose Number One Girl (Karaoke Version) Lyrics", - "id": "m4MX6z3al_M" - }, - { - "title": "Adam Port, Stryv, Camila Cabello, Malachiii Move (Karaoke Version) Lyrics", - "id": "Hf5W53bdPfE" - }, - { - "title": "Shaboozey Good News (Karaoke Version) Lyrics", - "id": "ncGAGqCYu-s" - }, - { - "title": "Alexia Evellyn Savage Daughters (Karaoke Version) Lyrics", - "id": "TvdWM5YuWfU" - }, - { - "title": "Linkin Park Two Faced (Karaoke Version) Lyrics", - "id": "a7LQezJxwR4" - }, - { - "title": "Mumford & Sons Rushmere (Karaoke Version) Lyrics", - "id": "LUTDpTTdFj4" - }, - { - "title": "Kylie Minogue Give Me Just A Little More Time (Karaoke Version) Lyrics", - "id": "1Blanhg6pC0" - }, - { - "title": "Kylie Minogue Confide In Me (Karaoke Version) Lyrics", - "id": "lLGF_zoskHU" - }, - { - "title": "Jordan Davis I Ain't Sayin' (Karaoke Version) Lyrics", - "id": "101v_ChrVb4" - }, - { - "title": "Elton John Goodbye Yellow Brick Road (Karaoke Version) Lyrics", - "id": "SHTIlMH31S4" - }, - { - "title": "Elton John Blue Eyes (Karaoke Version) Lyrics", - "id": "R4pWcdtGk4M" - }, - { - "title": "Martin Garrix, Jex Told You So (Karaoke Version) Lyrics", - "id": "UCyKRo_9f94" - }, - { - "title": "Lola Young Messy (Karaoke Version) Lyrics", - "id": "YANBVM2vVP4" - }, - { - "title": "Chrystal The Days (Karaoke Version) Lyrics", - "id": "5EKKw2kZ6iE" - }, - { - "title": "Elton John Are You Ready For Love (Karaoke Version) Lyrics", - "id": "85J0mvVgWKg" - }, - { - "title": "David Bowie Dancing In The Street (Karaoke Version) Lyrics", - "id": "J4Dt7rAJN9g" - }, - { - "title": "David Bowie China Girl (Karaoke Version) Lyrics", - "id": "bkr0iGnhdzM" - }, - { - "title": "Elliot James Reay Boy In Love (Karaoke Version) Lyrics", - "id": "RdiNSuMlApc" - }, - { - "title": "The Beatles Nowhere Man (Karaoke Version) Lyrics", - "id": "ElE-cZjVYpo" - }, - { - "title": "Take That Up All Night (Karaoke Version) Lyrics", - "id": "lzYpRjW3UNo" - }, - { - "title": "Scouting For Girls Love How It Hurts (Karaoke Version) Lyrics", - "id": "LABJd-ohnw0" - }, - { - "title": "Paloma Faith New York (Karaoke Version) Lyrics", - "id": "Pt4fvM3jR6A" - }, - { - "title": "Mumford & Sons Winter Winds (Karaoke Version) Lyrics", - "id": "mauna6gOCOs" - }, - { - "title": "Meghan Trainor Me Too (Karaoke Version) Lyrics", - "id": "U1Plnwr6eiI" - }, - { - "title": "Fine Young Cannibals Suspicious Minds (Karaoke Version) Lyrics", - "id": "AuUJSCfisQQ" - }, - { - "title": "Elbow One Day Like This (Karaoke Version) Lyrics", - "id": "3vxc-V-AGao" - }, - { - "title": "Damiano David Born With A Broken Heart (Karaoke Version) Lyrics", - "id": "NE77LX-vdAI" - }, - { - "title": "Ed Sheeran Dive (Karaoke Version) Lyrics", - "id": "Ke8XiV9SXkg" - }, - { - "title": "Britney Spears Over Protected (Karaoke Version) Lyrics", - "id": "zVCwbb3zB34" - }, - { - "title": "No One Noticed The Marรญas (Karaoke Version) Lyrics", - "id": "6AK5mX7HNno" - }, - { - "title": "OneRepublic, Jelly Roll Hurt (Karaoke Version) Lyrics", - "id": "rOpJPNc2VJk" - }, - { - "title": "aespa Whiplash (Karaoke Version) Lyrics", - "id": "YAbMXZofj9w" - }, - { - "title": "Chase Atlantic Swim (Karaoke Version) Lyrics", - "id": "bIApwz4FbWY" - }, - { - "title": "Morgan Wallen Smile (Karaoke Version) Lyrics", - "id": "zRVRy1ZP7Yk" - }, - { - "title": "Sabrina Carpenter Good Luck, Babe (Karaoke Version) Lyrics", - "id": "gn-n2rVJWFI" - }, - { - "title": "Linkin Park Over Each Other (Karaoke Version) Lyrics", - "id": "c4D4ihky8vg" - }, - { - "title": "ROSร‰ toxic till the end (Karaoke Version) Lyrics", - "id": "2Vc_5Xwevi4" - }, - { - "title": "David Kushner Empty Bench (Karaoke Version) Lyrics", - "id": "b-T3k-vEVw0" - }, - { - "title": "Zedd, Remi Wolf Lucky (Karaoke Version) Lyrics", - "id": "3c-2DBzhbkA" - }, - { - "title": "Melanie Martinez SPIDER WEB (Karaoke Version) Lyrics", - "id": "IWrN49NQanI" - }, - { - "title": "Elton John Saturday Night's Alright For Fighting (Karaoke Version) Lyrics", - "id": "hQsfssvgVNI" - }, - { - "title": "Will Young Changes (Karaoke Version) Lyrics", - "id": "Pu79i7NncYk" - }, - { - "title": "Sugababes Change (Karaoke Version) Lyrics", - "id": "N4EqU0XH-5I" - }, - { - "title": "Motorhead Ace of Spades (Karaoke Version) Lyrics", - "id": "7uqLtsha0KY" - }, - { - "title": "Lily Allen 22 (Karaoke Version) Lyrics", - "id": "ZPORCJ8tVdw" - }, - { - "title": "Leon Jackson Don't Call This Love (Karaoke Version) Lyrics", - "id": "v7TJVw6Am3k" - }, - { - "title": "Aleshia Dixon Breathe Slow (Karaoke Version) Lyrics", - "id": "7gtt7Xjrxsc" - }, - { - "title": "Taylor Swift feat The Civil Wars Safe & Sound", - "id": "GmoATdNGwPM" - }, - { - "title": "McFly feat Taio Cruz Shine A Light (Karaoke Version) Lyrics", - "id": "OatWY7EP9OY" - }, - { - "title": "Robbie Williams And Gary Barlow Shame (Karaoke Version) Lyrics", - "id": "_Fkcx1KdTb0" - }, - { - "title": "Auli'i Cravalho How Far I'll Go (Karaoke Version) Lyrics", - "id": "TxLVZjXfFGo" - }, - { - "title": "Amy Winehouse Tears Dry On Their Own (Karaoke Version) Lyrics", - "id": "R45lZTq4uVE" - }, - { - "title": "The Beatles Blackbird (Karaoke Version) Lyrics", - "id": "TXuEOV8Us_Y" - }, - { - "title": "Sigala Easy Love (Karaoke Version) Lyrics", - "id": "GCI7axgSfTQ" - }, - { - "title": "MGMT Kids (Karaoke Version) Lyrics", - "id": "9mNwu-PIMB0" - }, - { - "title": "Lawson Feat BOB Broken Hearted (Karaoke Version) Lyrics", - "id": "3cKioSI_eNg" - }, - { - "title": "Jordin Sparks Battlefield (Karaoke Version) Lyrics", - "id": "hl9u80cO5pQ" - }, - { - "title": "Alok, Clementine Douglas Body Talk (Karaoke Version) Lyrics", - "id": "AaiC523OLmk" - }, - { - "title": "Amy Winehouse Between The Cheats (Karaoke Version) Lyrics", - "id": "SLnFXtJznDM" - }, - { - "title": "Amy Winehouse & Tony Bennett Body & Soul (Karaoke Version) Lyrics", - "id": "N4C3x1CMxjc" - }, - { - "title": "Sia Alive (Karaoke Version) Lyrics", - "id": "LgLFALizweg" - }, - { - "title": "Jessie J Do It Like A Dude (Karaoke Version) Lyrics", - "id": "Au978NTJees" - }, - { - "title": "Come And Get It Selena Gomez (Karaoke Version) Lyrics", - "id": "kGJY3I2r9C4" - }, - { - "title": "Will Young Jealousy (Karaoke Version) Lyrics", - "id": "UBHTFRKFVIk" - }, - { - "title": "Royal Blood Little Monster (Karaoke Version) Lyrics", - "id": "8rkD6FcPGVQ" - }, - { - "title": "Pixie Lott Kiss The Stars (Karaoke Version) Lyrics", - "id": "XAuBBpdqczU" - }, - { - "title": "Mumford And Sons I Will Wait (Karaoke Version) Lyrics", - "id": "7bv-rh6s9T0" - }, - { - "title": "Lawson Learn To Love Again (Karaoke Version) Lyrics", - "id": "UbPknVRZQRY" - }, - { - "title": "Katy Perry Last Friday Night (Karaoke Version) Lyrics", - "id": "NsfJgld5FXk" - }, - { - "title": "Jake Bugg Lightning Bolt (Karaoke Version) Lyrics", - "id": "TPTSxlcaS3o" - }, - { - "title": "Imagine Dragons I Bet My Life (Karaoke Version) Lyrics", - "id": "CGND0GR5v2M" - }, - { - "title": "Green Day Know Your Enemy (Karaoke Version) Lyrics", - "id": "mcbbBuUW18Y" - }, - { - "title": "Ed Sheeran Lego House (Karaoke Version) Lyrics", - "id": "M1AHx0GeSRA" - }, - { - "title": "Westlife Safe (Karaoke Version) Lyrics", - "id": "yt1h-XL49LQ" - }, - { - "title": "The Wanted Show Me Love America (Karaoke Version) Lyrics", - "id": "UVmliFhGiPs" - }, - { - "title": "Sugababes Wear My Kiss (Karaoke Version) Lyrics", - "id": "wb5egNd7ANA" - }, - { - "title": "Stooshe Slip (Karaoke Version) Lyrics", - "id": "W8nDpgZOZCU" - }, - { - "title": "Selena Gomez And The Scene Slow Down (Karaoke Version) Lyrics", - "id": "qFTV2l-9Zis" - }, - { - "title": "Pink Sober (Karaoke Version) Lyrics", - "id": "1JS2cOr1IdA" - }, - { - "title": "Jigsaw Sky High (Karaoke Version) Lyrics", - "id": "4DoX9B7oSH4" - }, - { - "title": "Example Kickstarts (Karaoke Version) Lyrics", - "id": "eNFqPLDA5nE" - }, - { - "title": "Sia Snowman (Karaoke Version) Lyrics", - "id": "mP0LWqs3m1w" - }, - { - "title": "Idina Menzel, AURORA Into the Unknown (Karaoke Version) Lyrics", - "id": "R-egfUFJsa4" - }, - { - "title": "Jin Running Wild (Karaoke Version) Lyrics", - "id": "AMrQRGq1cP0" - }, - { - "title": "Zedd feat (Karaoke Version) Lyrics", - "id": "Norhi5OdMu8" - }, - { - "title": "Paramore Still Into You (Karaoke Version) Lyrics", - "id": "GD9uOcR4WO0" - }, - { - "title": "Lawson Standing In The Dark (Karaoke Version) Lyrics", - "id": "gw9YsFdytG0" - }, - { - "title": "Gym Class Heroes Feat Adam Levine Stereo Hearts (Karaoke Version) Lyrics", - "id": "HNWjl_tSZuw" - }, - { - "title": "Glee Cast Take A Bow (Karaoke Version) Lyrics", - "id": "geBOuM9Okkc" - }, - { - "title": "Celeste This Is Who I Am from The Day of the Jackal (Karaoke Version) Lyrics", - "id": "lbseS5Z61-U" - }, - { - "title": "Addison Rae Diet Pepsi (Karaoke Version) Lyrics", - "id": "jIBXbqMLxOk" - }, - { - "title": "Billie Eilish WILDFLOWER (Karaoke Version) Lyrics", - "id": "5JTAxnmzdm0" - }, - { - "title": "Fun Some Nights (Karaoke Version) Lyrics", - "id": "nvxgdiH7zNE" - }, - { - "title": "Florence + The Machine Shake It Out (Karaoke Version) Lyrics", - "id": "jjwcEKwGNVE" - }, - { - "title": "Cher Lloyd Swagger Jagger (Karaoke Version) Lyrics", - "id": "EOp7Q5p_9dk" - }, - { - "title": "Calvin Harris feat (Karaoke Version) Lyrics", - "id": "6iFqz6ejEEA" - }, - { - "title": "Ed Sheeran Small Bump (Karaoke Version) Lyrics", - "id": "Iu_e_FnyIPQ" - }, - { - "title": "Take That The Garden (Karaoke Version) Lyrics", - "id": "VpJPOR2hIl8" - }, - { - "title": "Paloma Faith Stone Cold Sober (Karaoke Version) Lyrics", - "id": "CaHhRgnHIKY" - }, - { - "title": "Olly Murs Thinking Of Me (Karaoke Version) Lyrics", - "id": "TROjdR-6Azo" - }, - { - "title": "Katy Perry Teenage Dream (Karaoke Version) Lyrics", - "id": "NdRmu_INkEo" - }, - { - "title": "Joe McElderry The Climb (Karaoke Version) Lyrics", - "id": "QfKPI3Lrhks" - }, - { - "title": "JLS The Club Is Alive (Karaoke Version) Lyrics", - "id": "R8u7V7unA-0" - }, - { - "title": "JLS Take A Chance On Me (Karaoke Version) Lyrics", - "id": "Z6Sp5uItcZM" - }, - { - "title": "Example Say Nothing (Karaoke Version) Lyrics", - "id": "pVEpXS-6VNA" - }, - { - "title": "Alexandra Burke The Silence (Karaoke Version) Lyrics", - "id": "0WJSkyThLUo" - }, - { - "title": "Adele Take It All (Karaoke Version) Lyrics", - "id": "-_O5WY6KCJI" - }, - { - "title": "The Black Eyed Peas The Time Dirty Bit (Karaoke Version) Lyrics", - "id": "pDtu6uV7CH4" - }, - { - "title": "Taylor Swift The Story Of Us (Karaoke Version) Lyrics", - "id": "1lFEPj5PRvY" - }, - { - "title": "Paloma Faith Upside Down (Karaoke Version) Lyrics", - "id": "rjgqGef_f6E" - }, - { - "title": "Matt Cardle Run For Your Life (Karaoke Version) Lyrics", - "id": "Z88NYxgFKcY" - }, - { - "title": "alt j Left Hand Free (Karaoke Version) Lyrics", - "id": "itB7s7Rd2VE" - }, - { - "title": "Kygo, Imagine Dragons Stars Will Align (Karaoke Version) Lyrics", - "id": "AgWBPuVnx5s" - }, - { - "title": "Myles Smith Nice To Meet You (Karaoke Version) Lyrics", - "id": "bTp-l6NrsHY" - }, - { - "title": "Jimin Who (Karaoke Version) Lyrics", - "id": "w9JEImtId10" - }, - { - "title": "KSI, Trippie Redd Thick Of It (Karaoke Version) Lyrics", - "id": "PqBFD4qttvI" - }, - { - "title": "Katy Perry Waking Up In Vegas (Karaoke Version) Lyrics", - "id": "EO7y-2rRq2g" - }, - { - "title": "Gorgon City feat Zak Abel Unmissable (Karaoke Version) Lyrics", - "id": "oR7L-lMengc" - }, - { - "title": "Enrique Iglesias Feat Ludacris & DJ Frank E Tonight I'm Lovin' You (Karaoke Version) Lyrics", - "id": "nNzYUwhalwk" - }, - { - "title": "Cover Drive Twilight (Karaoke Version) Lyrics", - "id": "v2Yom2-nGes" - }, - { - "title": "Adele Turning Tables (Karaoke Version) Lyrics", - "id": "KSTbkay39bA" - }, - { - "title": "Halsey Panic Attack (Karaoke Version) Lyrics", - "id": "N0tHbcUKbls" - }, - { - "title": "Sam Fender People Watching (Karaoke Version) Lyrics", - "id": "0fh9S0vf4ss" - }, - { - "title": "APT ROSร‰, Bruno Mars (Karaoke Version) Lyrics", - "id": "MuJGsKIvpB0" - }, - { - "title": "Selena Gomez & The Scene Who Says (Karaoke Version) Lyrics", - "id": "iOwiDyqm7Ys" - }, - { - "title": "Rudimental feat Ella Eyre Waiting All Night (Karaoke Version) Lyrics", - "id": "H0zTwJpufCY" - }, - { - "title": "Paloma Faith Trouble With My Baby (Karaoke Version) Lyrics", - "id": "QvemWhQAc5Q" - }, - { - "title": "Little Mix Wings (Karaoke Version) Lyrics", - "id": "HpPwICt5ugs" - }, - { - "title": "Katy Perry Walking On Air (Karaoke Version) Lyrics", - "id": "SmUHRH6VvYU" - }, - { - "title": "Jessie J Who's Laughing Now (Karaoke Version) Lyrics", - "id": "Wh_dBX8Laok" - }, - { - "title": "Duffy Well Well Well (Karaoke Version) Lyrics", - "id": "NzEgxSBq1-w" - }, - { - "title": "Disclosure Feat Aluna George White Noise (Karaoke Version) Lyrics", - "id": "KA7XZPk0QoE" - }, - { - "title": "Charlene Soraia Wherever You Will Go (Karaoke Version) Lyrics", - "id": "o7ygm8dzjlY" - }, - { - "title": "Alex Clare Too Close (Karaoke Version) Lyrics", - "id": "Aod73dVltN4" - }, - { - "title": "Morgan Wallen Love Somebody (Karaoke Version) Lyrics", - "id": "UbEQO-wckuo" - }, - { - "title": "Akon Akon's Beautiful Day (Karaoke Version) Lyrics", - "id": "cLufIc-uUWs" - }, - { - "title": "Teddy Swims Bad Dreams (Karaoke Version) Lyrics", - "id": "nQgZXGuFmq0" - }, - { - "title": "Shawn Mendes Heart Of Gold (Karaoke Version) Lyrics", - "id": "t4V47tYhLOM" - }, - { - "title": "Gigi Perez Sailor Song (Karaoke Version) Lyrics", - "id": "O9Llg6bHsCc" - }, - { - "title": "The Wanted Warzone (Karaoke Version) Lyrics", - "id": "cMSNk7I-Um0" - }, - { - "title": "Robbie Williams You Know Me (Karaoke Version) Lyrics", - "id": "ZG52vscl8_0" - }, - { - "title": "Loveable Rogues What A Night", - "id": "ApiwnmPmURM" - }, - { - "title": "Lawson When She Was Mine (Karaoke Version) Lyrics", - "id": "rpx8cy07lws" - }, - { - "title": "Coldplay All My Love (Karaoke Version) Lyrics", - "id": "X9Y7495MYOg" - }, - { - "title": "Lady Gaga Disease (Karaoke Version) Lyrics", - "id": "2QcmZbOYTVM" - }, - { - "title": "LISA Moonlit Floor (Karaoke Version) Lyrics", - "id": "uADWh8TlvCU" - }, - { - "title": "JENNIE Mantra (Karaoke Version) Lyrics", - "id": "66B5OJRLRLI" - }, - { - "title": "Katy Perry Wide Awake (Karaoke Version) Lyrics", - "id": "LsOkm0012so" - }, - { - "title": "James Blunt Wiseman (Karaoke Version) Lyrics", - "id": "mmrXcqCBq4c" - }, - { - "title": "Lana Del Rey Young & Beautiful (Karaoke Version) Lyrics", - "id": "wbzcHG6QiKM" - }, - { - "title": "The Chainsmokers, Kim Petras Don't Lie (Karaoke Version) Lyrics", - "id": "9j64FrmIOnI" - }, - { - "title": "James Arthur You're Nobody Till Somebody Loves You (Karaoke Version) Lyrics", - "id": "pz3Di4WuwHo" - }, - { - "title": "Cher Lloyd With Ur Love (Karaoke Version) Lyrics", - "id": "chYTlSmKDig" - }, - { - "title": "Amelia Lily You Bring Me Joy (Karaoke Version) Lyrics", - "id": "h4bINrIg0RE" - }, - { - "title": "Charlie XCX, Ariana Grande Sympathy is a knife (Karaoke Version) Lyrics", - "id": "JIvQqzSdlQU" - }, - { - "title": "Tulisa Young (Karaoke Version) Lyrics", - "id": "v7laP5499EY" - }, - { - "title": "Kylie Minogue Get Outta My Way (Karaoke Version) Lyrics", - "id": "mm_DoOqkugs" - }, - { - "title": "Shaboozey Highway (Karaoke Version) Lyrics", - "id": "w5IZ4WRIYRk" - }, - { - "title": "KATSEYE Touch (Karaoke Version) Lyrics", - "id": "nAMVBoPBqj8" - }, - { - "title": "Jason Derulo Don't Wanna Go Home (Karaoke Version) Lyrics", - "id": "66fN3BDd3bo" - }, - { - "title": "Imagine Dragons It's Time (Karaoke Version) Lyrics", - "id": "cMT9s9lmD4I" - }, - { - "title": "Elya Fox Do It All Over Again (Karaoke Version) Lyrics", - "id": "PtEkuV89SqI" - }, - { - "title": "Ed Sheeran Give Me Love (Karaoke Version) Lyrics", - "id": "QNFLZSliSCQ" - }, - { - "title": "Chris Brown Don't Wake Me Up (Karaoke Version) Lyrics", - "id": "SxvBDpRea8s" - }, - { - "title": "Ash Girl From Mars (Karaoke Version) Lyrics", - "id": "L0QhPoNnHik" - }, - { - "title": "Gracie Abrams - That's So True (Karaoke Version) Lyrics", - "id": "t3EFupAy0Aw" - }, - { - "title": "Blink 182 TAKE ME IN (Karaoke Version) Lyrics", - "id": "k09asAP1h5I" - }, - { - "title": "Linkin Park The Emptiness Machine (Karaoke Version) Lyrics", - "id": "B2_HtOXbgYM" - }, - { - "title": "David Guetta, Alesso, Madison Love Never Going Home Tonight no backing vocals", - "id": "5hKnlxMWvrQ" - }, - { - "title": "Myles Smith Stargazing (Karaoke Version) Lyrics", - "id": "ubbdCZlE-yA" - }, - { - "title": "Livin' Joy Dreamer (Karaoke Version) Lyrics", - "id": "PS8hmn8sQ0I" - }, - { - "title": "Zedd Feat Foxes Clarity (Karaoke Version) Lyrics", - "id": "ngCqOlFrx2c" - }, - { - "title": "The Script For The First Time", - "id": "vM7gwcLKrdM" - }, - { - "title": "The Saturdays Ego (Karaoke Version) Lyrics", - "id": "xq3XiY98V5c" - }, - { - "title": "Pink Fuckin' Perfect (Karaoke Version) Lyrics", - "id": "yohxnnOsN2Q" - }, - { - "title": "Ed Sheeran Drunk (Karaoke Version) Lyrics", - "id": "TwUad3VqeDo" - }, - { - "title": "Coldplay Every Teardrop Is A Waterfall (Karaoke Version) Lyrics", - "id": "npWdFchmE90" - }, - { - "title": "Coldplay Charlie Brown (Karaoke Version) Lyrics", - "id": "2Xqltnaa0NA" - }, - { - "title": "Cascada Evacuate The Dance Floor (Karaoke Version) Lyrics", - "id": "-JWPWODRPxE" - }, - { - "title": "Alexis Jordan Happiness (Karaoke Version) Lyrics", - "id": "EMZHgP7lvm0" - }, - { - "title": "Alex Day Forever Yours (Karaoke Version) Lyrics", - "id": "QRgoptZA5cw" - }, - { - "title": "The Korgis Everybody's Got To Learn Sometime (Karaoke Version) Lyrics", - "id": "0MP7IdZ_yTE" - }, - { - "title": "The Coral Dreaming Of You (Karaoke Version) Lyrics", - "id": "cxO1pCTuM18" - }, - { - "title": "Rolling Stones Doom & Gloom (Karaoke Version) Lyrics", - "id": "e9kpGNu-CaI" - }, - { - "title": "Kesha Die Young (Karaoke Version) Lyrics", - "id": "b7BHENBqe_E" - }, - { - "title": "JLS Eyes Wide Shut (Karaoke Version) Lyrics", - "id": "mfDL9u2W-uo" - }, - { - "title": "Fleetwood Mac Everywhere (Karaoke Version) Lyrics", - "id": "FPWJf3d2sgc" - }, - { - "title": "Cee Lo Green Cry Baby (Karaoke Version) Lyrics", - "id": "IGSVKf-hQcY" - }, - { - "title": "Wilkinson Afterglow (Karaoke Version) Lyrics", - "id": "FHZIZ9wHf-k" - }, - { - "title": "Kylie Minogue Lights Camera Action (Karaoke Version) Lyrics", - "id": "cU4b_i3HYBY" - }, - { - "title": "Madison Avenue Don't Call Me Baby", - "id": "3kYQTVagSMY" - }, - { - "title": "Modjo Lady Hear Me Tonight (Karaoke Version) Lyrics", - "id": "m6GvwhfYgvA" - }, - { - "title": "The Offspring Make It All Right (Karaoke Version) Lyrics", - "id": "6j9urTgCLf0" - }, - { - "title": "Gracie Abrams Close To You (Karaoke Version) Lyrics", - "id": "pUO4_TFbK4c" - }, - { - "title": "Camila Cabello, Drake HOT UPTOWN (Karaoke Version) Lyrics", - "id": "XrZ-QWwZHKU" - }, - { - "title": "Rita Ora, Kylie Cantrall, Brandy, Malia Baker, Disney Love Ain't It (Karaoke Version) Lyrics", - "id": "xt84QVg_9Mo" - }, - { - "title": "Oliver Heldens, David Guetta FAST BOY Chills Feel My Love (Karaoke Version) Lyrics", - "id": "ojUuOIRG3P8" - }, - { - "title": "The Weeknd Dancing In The Flames (Karaoke Version) Lyrics", - "id": "V1SgBNamCnk" - }, - { - "title": "Linkin Park Heavy Is The Crown (Karaoke Version) Lyrics", - "id": "iW2cb-xyBVQ" - }, - { - "title": "Lady Gaga Happy Mistake (Karaoke Version) Lyrics", - "id": "Hr9plWD3vsM" - }, - { - "title": "David Guetta, Alesso, Madison Love Never Going Home Tonight", - "id": "487as40BEic" - }, - { - "title": "Spiller, Sophie Ellis Bextor Groovejet If This Ain't Love (Karaoke Version) Lyrics", - "id": "5dj8HemhIq4" - }, - { - "title": "Gracie Abrams I Love You, I'm Sorry (Karaoke Version) Lyrics", - "id": "B0I25EeE0CQ" - }, - { - "title": "Deee Lite Groove Is In The Heart (Karaoke Version) Lyrics", - "id": "PswZlrwntms" - }, - { - "title": "Noisettes Wild Young Hearts (Karaoke Version) Lyrics", - "id": "jE76yfQE2QQ" - }, - { - "title": "The Four Seasons Rag Doll (Karaoke Version) Lyrics", - "id": "ox74hxXwtKI" - }, - { - "title": "Jim Reeves I Love You Because (Karaoke Version) Lyrics", - "id": "hn-vBtDotxM" - }, - { - "title": "Andy Williams Can't Get Used To Losing You (Karaoke Version) Lyrics", - "id": "VQG8drkkbZE" - }, - { - "title": "Sam Harris Bridge Over Troubled Water (Karaoke Version) Lyrics", - "id": "MmzT0C5tVcQ" - }, - { - "title": "Michael Buble Some Kind Of Wonderful (Karaoke Version) Lyrics", - "id": "dAyxPG2THYY" - }, - { - "title": "Perry Como As Time Goes By (Karaoke Version) Lyrics", - "id": "SR1J9bTG-k0" - }, - { - "title": "Bruno Mars Treasure (Karaoke Version) Lyrics", - "id": "Jul2sE8u70o" - }, - { - "title": "Black Eyed Peas Meet Me Halfway (Karaoke Version) Lyrics", - "id": "dj9EzC9_dzw" - }, - { - "title": "Shawn Mendes Nobody Knows (Karaoke Version) Lyrics", - "id": "lXiEfz1T-J8" - }, - { - "title": "Elton John Saturday Night's Alright For Fighting (Karaoke Version) Lyrics", - "id": "saaqFybzAec" - }, - { - "title": "Oasis Little By Little (Karaoke Version) Lyrics", - "id": "54FE2e2np1A" - }, - { - "title": "Rod Stewart The First Cut Is The Deepest (Karaoke Version) Lyrics", - "id": "p4n4B7PkkoE" - }, - { - "title": "Rod Stewart This Old Heart Of Mine (Karaoke Version) Lyrics", - "id": "vzU8v40GrDA" - }, - { - "title": "Halle Because I Love You (Karaoke Version) Lyrics", - "id": "ArPGIufnA-Q" - }, - { - "title": "The Blessed Madonna, Kylie Minogue Edge of Saturday Night", - "id": "eQihU263r64" - }, - { - "title": "Halsey Ego (Karaoke Version) Lyrics", - "id": "jHzdLPZ-oV0" - }, - { - "title": "Shawn Mendes Why Why Why (Karaoke Version) Lyrics", - "id": "1DwmK2g_Ft8" - }, - { - "title": "Sabrina Carpenter Taste (Karaoke Version) Lyrics", - "id": "g9wyeoNkSTE" - }, - { - "title": "Maddox Batson X's (Karaoke Version) Lyrics", - "id": "vaOdNowDLn4" - }, - { - "title": "Post Malone, Chris Stapleton California Sober (Karaoke Version) Lyrics", - "id": "o7q8oHZYIKI" - }, - { - "title": "Hozier Nobody's Soldier (Karaoke Version) Lyrics", - "id": "Z8WjIbIvixs" - }, - { - "title": "OneRepublic Sink Or Swim (Karaoke Version) Lyrics", - "id": "4c9ON3r7nFk" - }, - { - "title": "Marshmello, Kane Brown Miles On It (Karaoke Version) Lyrics", - "id": "xBjwo9j9x4c" - }, - { - "title": "Clean Bandit, Anne Marie, David Guetta Cry Baby (Karaoke Version) Lyrics", - "id": "MiSzm8P0tFw" - }, - { - "title": "Lady Gaga, Bruno Mars Die With A Smile (Karaoke Version) Lyrics", - "id": "yANrbAO91SM" - }, - { - "title": "Kylie Minogue, Bebe Rexha, Tove Lo My Oh My (Karaoke Version) Lyrics", - "id": "XAXFFuqhVjg" - }, - { - "title": "Beabadoobie Beaches (Karaoke Version) Lyrics", - "id": "ejlTXkBSmvQ" - }, - { - "title": "Katy Perry LIFETIMES (Karaoke Version) Lyrics", - "id": "MDGniCU_pSA" - }, - { - "title": "Tiรซsto, Alana Springsteen Hot Honey (Karaoke Version) Lyrics", - "id": "U2WRHAT0K0A" - }, - { - "title": "mgk, Jelly Roll Lonely Road (Karaoke Version) Lyrics", - "id": "HFCa-4qsJiE" - }, - { - "title": "Mimi Webb Erase You (Karaoke Version) Lyrics", - "id": "5srXzx2QrBU" - }, - { - "title": "Chappell Roan HOT TO GO! (Karaoke Version) Lyrics", - "id": "QkuUrXsIrEw" - }, - { - "title": "JADE Angel Of My Dreams (Karaoke Version) Lyrics", - "id": "Xv3KuR4r8rg" - }, - { - "title": "Charli XCX, Billie Eilish Guess (Karaoke Version) Lyrics", - "id": "7QgxzQ6BLy8" - }, - { - "title": "Swedish House Mafia, Niki & The Dove Lioness (Karaoke Version) Lyrics", - "id": "qtV1GD3ebAU" - }, - { - "title": "Mabel Female Intuition (Karaoke Version) Lyrics", - "id": "ZxSPE7BDOOE" - }, - { - "title": "Calvin Harris, Ellie Goulding Free (Karaoke Version) Lyrics", - "id": "q0kNr7YT_xs" - }, - { - "title": "Sigala, Trevor Daniel, 24kGoldn It's A Feeling (Karaoke Version) Lyrics", - "id": "bR-j21A9GFE" - }, - { - "title": "Jason Derulo, Frozy, Tomo From The Islands Kompa Passion NO BACKING VOCALS", - "id": "TK2fFun3CcI" - }, - { - "title": "Stephen Sanchez Baby Blue Bathing Suit (Karaoke Version) Lyrics", - "id": "b02Lk86XAnY" - }, - { - "title": "Lindsey Stirling, Walk off the Earth Survive (Karaoke Version) Lyrics", - "id": "cLgAAH72Qrc" - }, - { - "title": "Alan Walker, Inna Wroldsen Barcelona (Karaoke Version) Lyrics", - "id": "xd4WKyO146I" - }, - { - "title": "The Kid LAROI GIRLS (Karaoke Version) Lyrics", - "id": "nvj4qaC1LVA" - }, - { - "title": "Ayra Starr, Giveon Last Heartbreak Song (Karaoke Version) Lyrics", - "id": "uT-8P-WQroY" - }, - { - "title": "BL3SS, CamrinWatsin, bbyclose Kisses (Karaoke Version) Lyrics", - "id": "cHftceAmxUo" - }, - { - "title": "Chappell Roan Good Luck, Babe! (Karaoke Version) Lyrics", - "id": "VTUO0H84yo4" - }, - { - "title": "Katy Perry WOMAN'S WORLD (Karaoke Version) Lyrics", - "id": "upMo7XCCUjE" - }, - { - "title": "Victoria Monรฉt Alright (Karaoke Version) Lyrics", - "id": "hN50bj53M3k" - }, - { - "title": "Kehlani After Hours (Karaoke Version) Lyrics", - "id": "1i1Vrioku2Y" - }, - { - "title": "Twenty One Pilots Paladin Strait (Karaoke Version) Lyrics", - "id": "jKA4wVZDaeI" - }, - { - "title": "Imagine Dragons Wake Up (Karaoke Version) Lyrics", - "id": "0wIQN0R12ck" - }, - { - "title": "Baddiel & Skinner Three Lions On a Shirt (New Karaoke Version) Lyrics", - "id": "ZzEnDLuNsvY" - }, - { - "title": "Camila Cabello - Chanel No.5 (Karaoke Version) Lyrics", - "id": "hG_Gcmjs8z0" - }, - { - "title": "Olivia Dean Time (Karaoke Version) Lyrics", - "id": "BlGW33WR_H8" - }, - { - "title": "Billie Eilish BIRDS OF A FEATHER (Karaoke Version) Lyrics", - "id": "sy7co32U7ic" - }, - { - "title": "Coldplay feelslikeimfallinginlove (Karaoke Version) Lyrics", - "id": "EFnKckjTMfo" - }, - { - "title": "Little Mix Change Your Life (Karaoke Version) Lyrics", - "id": "IQN4LyYtiZg" - }, - { - "title": "John Newman Come and Get It (Karaoke Version) Lyrics", - "id": "67KTg1mgO-U" - }, - { - "title": "John Newman Cheating (Karaoke Version) Lyrics", - "id": "HH_ZeU7r1Uk" - }, - { - "title": "David Kushner Hero (Karaoke Version) Lyrics", - "id": "oyVPg2tKKHU" - }, - { - "title": "Tommy Richman MILLION DOLLAR BABY (Karaoke Version) Lyrics", - "id": "_PkpLwsBZ80" - }, - { - "title": "Meghan Trainor Whoops (Karaoke Version) Lyrics # New karaoke", - "id": "E8d2AT5Fn-s" - }, - { - "title": "Charli XCX Talk Talk (Karaoke Version) Lyrics #New Karaoke", - "id": "X32xB_oHm3s" - }, - { - "title": "Billie Eilish CHIHIRO (Karaoke Version) Lyrics", - "id": "kCPjk1vApGs" - }, - { - "title": "Foxes Glorious (Karaoke Version) Lyrics", - "id": "oQT0L1hkFTA" - }, - { - "title": "Sigma ft Ella Henderson Glitterball (Karaoke Version) Lyrics", - "id": "OO2SBm0Cgxk" - }, - { - "title": "Florence & The Machine Dog Days Are Over (Karaoke Version) Lyrics", - "id": "r6J5dTAGIbE" - }, - { - "title": "Charli XCX = Famous (Karaoke Version) Lyrics", - "id": "4ZaxOejyo8w" - }, - { - "title": "The 1975 Chocolate (Karaoke Version) Lyrics", - "id": "0T3YakM_zWE" - }, - { - "title": "Paolo Nutini Candy (Karaoke Version) Lyrics", - "id": "DhuX8g9vn6U" - }, - { - "title": "Pink Blow Me One Last Kiss (Karaoke Version) Lyrics", - "id": "0lSAbH8hl0I" - }, - { - "title": "Rihanna California King Bed (Karaoke Version) Lyrics", - "id": "eo0tlUW7RMs" - }, - { - "title": "Taylor Swift Begin Again (Karaoke Version) Lyrics", - "id": "OW6OVOtIcPA" - }, - { - "title": "Train 50 Ways To Say Goodbye (Karaoke Version) Lyrics", - "id": "4HgSjJggJJ8" - }, - { - "title": "Sabrina Carpenter Please Please Please ( New Karaoke Version) Lyrics", - "id": "umk6RfrCWYk" - }, - { - "title": "Falling in Reverse, Jelly Roll All My Life (Karaoke Version) Lyrics", - "id": "oa1Uv1WoYww" - }, - { - "title": "Post Malone feat Morgan Wallen I Had Some Help (Karaoke Version) Lyrics New Karaoke", - "id": "cZyMXaJxY4M" - }, - { - "title": "Eminem Houdini (Karaoke Version) Lyrics # (New Karaoke", - "id": "hAFVIj9T14w" - }, - { - "title": "Twenty One Pilots Midwest Indigo (Karaoke Version) Lyrics", - "id": "8E_0qxX3iho" - }, - { - "title": "Jason Derulo, Frozy, Tomo From The Islands Kompa Passion (Karaoke Version) Lyrics", - "id": "7RNt9vu6NqA" - }, - { - "title": "Cheryl Cole Call My Name (Karaoke Version) Lyrics", - "id": "g6aAWIN1bYI" - }, - { - "title": "Beyonce Best Thing I Never Had", - "id": "vzvucYApmE0" - }, - { - "title": "Bastille Flaws (Karaoke Version) Lyrics", - "id": "c4nCbG-ALHU" - }, - { - "title": "Adele Send My Love To Your New Lover (Karaoke Version) Lyrics", - "id": "DKsRTmaEyoI" - }, - { - "title": "OneRepublic Nobody from Kaiju No 8", - "id": "QskK1MtcwqU" - }, - { - "title": "Ylvis The Fox What Does The Fox Say (Karaoke Version) Lyrics", - "id": "gSQyPTXJEkU" - }, - { - "title": "The Chainsmokers feat Daya Don't Let Me Down (Karaoke Version) Lyrics", - "id": "kUJysIOlCr8" - }, - { - "title": "Naughty Boy ft Sam Smith La La La (Karaoke Version) Lyrics", - "id": "L25OVoIyHqI" - }, - { - "title": "Imagine Dragons Nice to Meet You (Karaoke Version) Lyrics", - "id": "oR3-oyoqhQ0" - }, - { - "title": "Becky Hill Multiply (Karaoke Version) Lyrics", - "id": "woOunQprHoU" - }, - { - "title": "The Chainsmokers No Shade at Pitti (Karaoke Version) Lyrics", - "id": "cc2nZDP9KN8" - }, - { - "title": "Kygo, Zak Abel, Nile Rodgers For Life (Karaoke Version) Lyrics", - "id": "XEs-jq3ctZ8" - }, - { - "title": "Lost Frequencies, David Kushner In My Bones (Karaoke Version) Lyrics", - "id": "MqWmpHzSqCc" - }, - { - "title": "Bon Jovi Legendary (Karaoke Version) Lyrics", - "id": "EPICuaMt17M" - }, - { - "title": "Taylor Swift Whoโ€™s Afraid of Little Old Me (Karaoke Version) Lyrics", - "id": "5qSI_bAJ4B8" - }, - { - "title": "Billie Eilish Lunch (Karaoke Version) Lyrics", - "id": "jnP1FSdDbzc" - }, - { - "title": "Twenty One Pilots Next Semester (Karaoke Version) Lyrics", - "id": "XbLxDEeOuq0" - }, - { - "title": "Drake Hotline Bling (Karaoke Version) Lyrics", - "id": "ADElkpgWpOk" - }, - { - "title": "Disclosure Feat Lorde Magnets (Karaoke Version) Lyrics", - "id": "NZtcseqDTPI" - }, - { - "title": "Rudimental ft Ed Sheeran Lay It All On Me (Karaoke Version) Lyrics", - "id": "x2Qhi0GJneo" - }, - { - "title": "Charli XCX 360 (Karaoke Version) Lyrics", - "id": "9IQRmCNIFqA" - }, - { - "title": "R City Feat Adam Levine Locked Away (Karaoke Version) Lyrics", - "id": "gNl1RUEHePQ" - }, - { - "title": "Bars & Melody Hopeful (Karaoke Version) Lyrics", - "id": "AXrcr61Vbfk" - }, - { - "title": "Becky Hill Right Here (Karaoke Version) Lyrics", - "id": "XURbuGHn-Tc" - }, - { - "title": "Perrie Forget About Us (Karaoke Version) Lyrics", - "id": "LC4WPbQyq24" - }, - { - "title": "Pierces Kings (Karaoke Version) Lyrics", - "id": "fPmFj0un3X8" - }, - { - "title": "Parra for Cuva Feat Anna Naklab Wicked Games (Karaoke Version) Lyrics", - "id": "my-vPsw_ryw" - }, - { - "title": "Kiesza What Is Love (Karaoke Version) Lyrics", - "id": "2TW0CiElP7o" - }, - { - "title": "Hypaton, David Guetta Feeling Good (Karaoke Version) Lyrics", - "id": "PmacHhifKJg" - }, - { - "title": "Dua Lipa These Walls", - "id": "wPtpiDcQ-E4" - }, - { - "title": "Jo Jo Siwa Karma (Karaoke Version) Lyrics", - "id": "F_CsKYXrbPE" - }, - { - "title": "Teddy Swims The Door (Karaoke Version) Lyrics", - "id": "kog8ES0oB6M" - }, - { - "title": "Pixie Lott Caravan Of Love (Karaoke Version) Lyrics", - "id": "8dU7rDB9pSg" - }, - { - "title": "Kiesza Giant In My Heart (Karaoke Version) Lyrics", - "id": "kVkEPS-9BlY" - }, - { - "title": "Jacob & Goliath Eyes Conveyed (Karaoke Version) Lyrics", - "id": "i8fJKmVCD0s" - }, - { - "title": "Galantis, David Guetta, 5 Seconds of Summer Lighter (Karaoke Version) Lyrics", - "id": "J4mZTmf_wHk" - }, - { - "title": "Taylor Swift Welcome To New York (Karaoke Version) Lyrics", - "id": "DGShoDzDHi4" - }, - { - "title": "Demi Lovato Cool for the Summer (Karaoke Version) Lyrics", - "id": "tORsrK_NTdA" - }, - { - "title": "Bring Me The Horizon Drown (Karaoke Version) Lyrics", - "id": "cNO_1JolvP8" - }, - { - "title": "Shaboozey A Bar Song (Karaoke Version) Lyrics", - "id": "Y9DN0vFwL9E" - }, - { - "title": "Years & Years Desire (Karaoke Version) Lyrics", - "id": "cmavSMz3Rp4" - }, - { - "title": "Rizzle Kicks Tell Her (Karaoke Version) Lyrics", - "id": "5b6BAeKLiQ4" - }, - { - "title": "Paolo Nutini Ten Out Of Ten (Karaoke Version) Lyrics", - "id": "qRRzyXVywF4" - }, - { - "title": "Birds In The Sky NewEra, Allie Sherlock Birds In The Sky Acoustic (Karaoke Version) Lyrics", - "id": "8vAilAsRX_s" - }, - { - "title": "Bethan Ledley Safe Lined (Karaoke Version) Lyrics", - "id": "O5fgAQP8n_k" - }, - { - "title": "George Ezra Listen To The Man (Karaoke Version) Lyrics", - "id": "wwoQfePPcj0" - }, - { - "title": "The Chainsmokers #Selfie (Karaoke Version) Lyrics", - "id": "KGgyKpFyt2E" - }, - { - "title": "Redfoo New Thang (Karaoke Version) Lyrics", - "id": "kRrjCddvHkQ" - }, - { - "title": "Rae Morris Under the Shadows (Karaoke Version) Lyrics", - "id": "b_Yzk8IxTtM" - }, - { - "title": "Abe Parker it is what it is (Karaoke Version) Lyrics", - "id": "QHkDSxYHFsw" - }, - { - "title": "I Can Do Taylor Swift I Can Do It With a Broken Heart (Karaoke Version) Lyrics", - "id": "GOAtXFeAgo8" - }, - { - "title": "YG Marley Praise Jah in the Moonlight (Karaoke Version) Lyrics", - "id": "cMNFi8CN3gc" - }, - { - "title": "Diplo, Kareen Lomax Heaven Or Not (Karaoke Version) Lyrics", - "id": "Zewfe0MgARM" - }, - { - "title": "Porter Robinson Cheerleader (Karaoke Version) Lyrics", - "id": "084RmzhiJws" - }, - { - "title": "Kings Of Leon Split Screen (Karaoke Version) Lyrics", - "id": "279XTVgnmHE" - }, - { - "title": "Imagine Dragons Eyes Closed (Karaoke Version) Lyrics", - "id": "liOc-XS2_mk" - }, - { - "title": "Taylor Swift, Post Malone Fortnight (Karaoke Version) Lyrics", - "id": "q2CjtRYesWk" - }, - { - "title": "David Guetta, OneRepublic I Don't Wanna Wait (Karaoke Version) Lyrics", - "id": "qYSyQegA87o" - }, - { - "title": "Tyla ART (Karaoke Version) Lyrics", - "id": "yxcfPSFSjLo" - }, - { - "title": "Dua Lipa Illusion (Karaoke Version) Lyrics", - "id": "5cLDgoZpXoE" - }, - { - "title": "Jessie Ware You & I Forever (Karaoke Version) Lyrics", - "id": "3vrvGqGa27w" - }, - { - "title": "Fall Out Boy Centuries (Karaoke Version) Lyrics", - "id": "-EZEzI-zBYg" - }, - { - "title": "Echosmith Cool Kids (Karaoke Version) Lyrics", - "id": "xXkh5NE5mv8" - }, - { - "title": "Clean Bandit feat Stylo G Come Over (Karaoke Version) Lyrics", - "id": "nAzG821ffyg" - }, - { - "title": "Calvin Harris Feat John Newman Blame", - "id": "T7NFypXCYnE" - }, - { - "title": "The Vamps Feat Demi Lovato Somebody To You (Karaoke Version) Lyrics", - "id": "ty3beX9KxBg" - }, - { - "title": "The Saturdays Not Giving Up (Karaoke Version) Lyrics", - "id": "HaXvNb4_JEo" - }, - { - "title": "Sigma Feat Paloma Faith Changing (Karaoke Version) Lyrics", - "id": "OHXv2KS1s-c" - }, - { - "title": "Neon Jungle Louder (Karaoke Version) Lyrics", - "id": "zVxvgQ2ehjM" - }, - { - "title": "Mausi My Friend Has A Swimming Pool (Karaoke Version) Lyrics", - "id": "Ml1U1ho_Z54" - }, - { - "title": "Maroon 5 Maps (Karaoke Version) Lyrics", - "id": "cdoYu7xqShI" - }, - { - "title": "Lethal Bizzle Feat JME & Tempa T Rariworkout (Karaoke Version) Lyrics", - "id": "XQXwE_qdDGk" - }, - { - "title": "Kove Feat Melissa Steel Way We Are (Karaoke Version) Lyrics", - "id": "vhRw-E9J2gY" - }, - { - "title": "Katy Perry This Is How We Do (Karaoke Version) Lyrics", - "id": "k8I6WtCLyCA" - }, - { - "title": "GRL Ugly Heart (Karaoke Version) Lyrics", - "id": "plgfM9W_DK8" - }, - { - "title": "Will I Am ft Cody Wise It's My Birthday (Karaoke Version) Lyrics", - "id": "ksF6hoYpB8Q" - }, - { - "title": "Rixton Me And My Broken Heart (Karaoke Version) Lyrics", - "id": "QxPbKLNCnNY" - }, - { - "title": "Nicki Minaj Pills N Potions (Karaoke Version) Lyrics", - "id": "a1MBuywCBj8" - }, - { - "title": "MKTO Classic (Karaoke Version) Lyrics", - "id": "28FZlav5ip8" - }, - { - "title": "MK Route 94 ft Alana Always (Karaoke Version) Lyrics", - "id": "TwWpcUU-T9g" - }, - { - "title": "Kodaline Brand New Day (Karaoke Version) Lyrics", - "id": "U0eie-KjLhI" - }, - { - "title": "Jay Z Jungle Remix (Karaoke Version) Lyrics", - "id": "ZUtVkPloZIY" - }, - { - "title": "Ella Eyre If I go (Karaoke Version) Lyrics", - "id": "dYUJ_vYuE3M" - }, - { - "title": "Becky G Shower (Karaoke Version) Lyrics", - "id": "cmQiJjOULIU" - }, - { - "title": "Usher Good Kisser (Karaoke Version) Lyrics", - "id": "nKePYnjkfvI" - }, - { - "title": "Nicole Scherzinger Your Love (Karaoke Version) Lyrics", - "id": "Yz1Kg17YOEE" - }, - { - "title": "Lily Allen Sheezus (Karaoke Version) Lyrics", - "id": "nOXpHfxaPi0" - }, - { - "title": "Kodaline All I Want (Karaoke Version) Lyrics", - "id": "gYBBxU2QhP0" - }, - { - "title": "Jennifer Lopez First Love (Karaoke Version) Lyrics", - "id": "7aq7CpkM19k" - }, - { - "title": "Haim Don't Save Me (Karaoke Version) Lyrics", - "id": "NHwlTw8WAx4" - }, - { - "title": "Birdy Tee Shirt (Karaoke Version) Lyrics", - "id": "x8XFtXV3NOk" - }, - { - "title": "Bastille Bad Blood (Karaoke Version) Lyrics", - "id": "a-76LZrjS-s" - }, - { - "title": "Arctic Monkeys Snap Out Of It (Karaoke Version) Lyrics", - "id": "aZ8L3PyjPL0" - }, - { - "title": "Sigma Nobody To Love (Karaoke Version) Lyrics", - "id": "OucA9kLzaT0" - }, - { - "title": "Second City I Wanna Feel (Karaoke Version) Lyrics", - "id": "0BGLAcKuct4" - }, - { - "title": "Kiesza Hideaway (Karaoke Version) Lyrics", - "id": "XU6qpow3VEY" - }, - { - "title": "Inna Cola Song (Karaoke Version) Lyrics", - "id": "AUuFhtm_OdQ" - }, - { - "title": "Group Love Let Me In (Karaoke Version) Lyrics", - "id": "uDZI_T3qQjc" - }, - { - "title": "David Guetta & Showtek Feat Vassy Bad (Karaoke Version) Lyrics", - "id": "qtUu-5tIiRs" - }, - { - "title": "Sabrina Carpenter Espresso (Karaoke Version) Lyrics", - "id": "b2ipzEpe29U" - }, - { - "title": "Austin Dasha with BV Vocals (Karaoke Version) Lyrics", - "id": "GcBJmrGaMxQ" - }, - { - "title": "Boom clap Charli XCX (Karaoke Version) Lyrics", - "id": "XrZ4AYpZCPA" - }, - { - "title": "End of the line Boy & Bear (Karaoke Version) Lyrics", - "id": "GKeKmy2y1kI" - }, - { - "title": "5 Seconds Of Summer Don't Stop (Karaoke Version) Lyrics", - "id": "e2SQO-Pc03s" - }, - { - "title": "Zedd ft Matthew Koma & Miriam Bryant Find You (Karaoke Version) Lyrics", - "id": "3e3sN25q53Y" - }, - { - "title": "Twin Atlantic Heart and Soul (Karaoke Version) Lyrics", - "id": "OOtO7NQs5oQ" - }, - { - "title": "Tiesto ft Matthew Koma Wasted (Karaoke Version) Lyrics", - "id": "7vVLKb6ld-E" - }, - { - "title": "Real Estate Talking Backwards (Karaoke Version) Lyrics", - "id": "oDy80_jxrlk" - }, - { - "title": "Magic Rude (Karaoke Version) Lyrics", - "id": "Vk7BWjkCptQ" - }, - { - "title": "Lethal Bizzle The Drop (Karaoke Version) Lyrics", - "id": "2lOih7R4jCU" - }, - { - "title": "Kasabian Eez eh (Karaoke Version) Lyrics", - "id": "l5JxcRRPKCs" - }, - { - "title": "Jake Bugg Simple as this (Karaoke Version) Lyrics", - "id": "OgTvH-CTH0A" - }, - { - "title": "Gorgon City & Laura Walsh Here For You (Karaoke Version) Lyrics", - "id": "Sp_KDqQa9Ho" - }, - { - "title": "DJ Cassidy Feat Robin Thicke & Jessie J Calling All Hearts J (Karaoke Version) Lyrics", - "id": "nleLQg2kD_8" - }, - { - "title": "Lily Allen Our Time", - "id": "xxBRjeVgc9I" - }, - { - "title": "Lana Del Rey West Coast (Karaoke Version) Lyrics", - "id": "vdxD_8CO4bY" - }, - { - "title": "Jason Derulo ft Snoop Dogg Wiggle (Karaoke Version) Lyrics", - "id": "mg_faVVT6g4" - }, - { - "title": "Foxes Holding on to Heaven (Karaoke Version) Lyrics", - "id": "z3Y-lNdqN2I" - }, - { - "title": "Broken Bells After the Disco (Karaoke Version) Lyrics", - "id": "kfZHLM5k5Ts" - }, - { - "title": "Bipolar Sunshine Where Did the Love Go (Karaoke Version) Lyrics", - "id": "9Lf4ZX2XnjM" - }, - { - "title": "Aneta Sablik The One (Karaoke Version) Lyrics", - "id": "SY_2YOTg9Pg" - }, - { - "title": "Artemas i like the way you kiss me (Karaoke Version) Lyrics", - "id": "tfu-xw1PHIM" - }, - { - "title": "Ariana Grande Problem (Karaoke Version) Lyrics", - "id": "XUQulEALR8E" - }, - { - "title": "Ariana Grande the boy is mine with BV (Karaoke Version) Lyrics", - "id": "npi-bXbpLJg" - }, - { - "title": "5 Seconds Of Summer Good Girls (Karaoke Version) Lyrics", - "id": "Uhr1LPsZCTA" - }, - { - "title": "WILLOW Symptom Of Life (Karaoke Version) Lyrics", - "id": "GztNM8eKIW8" - }, - { - "title": "Olivia Rodrigo Obsessed with BV (Karaoke Version) Lyrics", - "id": "yMYrYJNvrXQ" - }, - { - "title": "Dasha Austin (Karaoke Version) Lyrics", - "id": "x2ah-wh2y6I" - }, - { - "title": "Benson Boone Slow It Down (Karaoke Version) Lyrics", - "id": "ug8FsDbARhU" - }, - { - "title": "Hozier Too Sweet (Karaoke Version) Lyrics", - "id": "wQD1WMChXe4" - }, - { - "title": "Ed Sheeran One (Karaoke Version) Lyrics", - "id": "6VWsQJtWfhs" - }, - { - "title": "Tegan & Sara ft The Lonely Island Everything Is Awesome (Karaoke Version) Lyrics", - "id": "6C8yxDonwco" - }, - { - "title": "Shift K3Y Touch (Karaoke Version) Lyrics", - "id": "CZElO8h4T90" - }, - { - "title": "Pitbull & G R L Wild Wild Love (Karaoke Version) Lyrics", - "id": "eyRFjZi_vYg" - }, - { - "title": "Neon Jungle Welcome To The Jungle (Karaoke Version) Lyrics", - "id": "QhRTJZ_iBIY" - }, - { - "title": "Kings of Leon Temple (Karaoke Version) Lyrics", - "id": "4daQYcb0QU8" - }, - { - "title": "Justin Timberlake Not A Bad Thing (Karaoke Version) Lyrics", - "id": "U-Sf6TTQbV4" - }, - { - "title": "Indiana Solo Dancing (Karaoke Version) Lyrics", - "id": "qoEkMN1FzlU" - }, - { - "title": "Eminem ft Rihanna Monster (Karaoke Version) Lyrics", - "id": "iiQd6qxqENY" - }, - { - "title": "Birdy Wings (Karaoke Version) Lyrics", - "id": "DB4YyCku_ig" - }, - { - "title": "Avril Lavigne Hello Kitty (Karaoke Version) Lyrics", - "id": "24o3LgD_nz0" - }, - { - "title": "TEXAS HOLD 'EM Beyonce with backing vocals (Karaoke Version) Lyrics", - "id": "-B45DkywCAU" - }, - { - "title": "Shakira & Rihanna Can't Remember To Forget You (Karaoke Version) Lyrics", - "id": "yDn_lPv5jRQ" - }, - { - "title": "Rihanna Jump (Karaoke Version) Lyrics", - "id": "bm22CznRJCA" - }, - { - "title": "Pitbull & Enrique Iglesias I'm A Freak (Karaoke Version) Lyrics", - "id": "xfLZApxE9Z0" - }, - { - "title": "Paulo Nutini Scream Funk My Life Up (Karaoke Version) Lyrics", - "id": "mZa_GDOYua0" - }, - { - "title": "Meghan Trainor, T Pain Been Like This (Karaoke Version) Lyrics", - "id": "1rl3Fa35mjc" - }, - { - "title": "Ariana Grande The boy is mine", - "id": "u5Ytx_ZDq5M" - }, - { - "title": "Lady GaGa & R Kelly Do What You Want (Karaoke Version) Lyrics", - "id": "muEOLE-5H-U" - }, - { - "title": "David Guetta Feat Skylar Grey Shot Me Down (Karaoke Version) Lyrics", - "id": "EndBMP1cBRA" - }, - { - "title": "Bastille Of The Night (Karaoke Version) Lyrics", - "id": "SOrGTKnYlmw" - }, - { - "title": "American Authors Best Day Of My Life (Karaoke Version) Lyrics", - "id": "oGIeceAo1EI" - }, - { - "title": "Aloe Blacc The Man (Karaoke Version) Lyrics", - "id": "rMycjjnpm1w" - }, - { - "title": "Alesso vs OneRepublic If I Lose Myself (Karaoke Version) Lyrics", - "id": "lR09Gv29t_Y" - }, - { - "title": "New Kids On The Block Kids (Karaoke Version) Lyrics", - "id": "ASgaagVDx24" - }, - { - "title": "Justin Timberlake No Angels (Karaoke Version) Lyrics", - "id": "vCc5NHitzdM" - }, - { - "title": "Beyoncรฉ, Miley Cyrus II MOST WANTED (Karaoke Version) Lyrics", - "id": "dRdPSdWJY4k" - }, - { - "title": "Olivia Rodrigo Obsessed (Karaoke Version) Lyrics", - "id": "WO1c8Wt4M18" - }, - { - "title": "Tiesto Red Lights (Karaoke Version) Lyrics", - "id": "r4WbPLnE-lk" - }, - { - "title": "The Beloved Sweet Harmony (Karaoke Version) Lyrics", - "id": "sz7gZP8UAHk" - }, - { - "title": "NEEDTOBREATHE Wasteland (Karaoke Version) Lyrics", - "id": "F8RI-uiilwI" - }, - { - "title": "Monaco What Do You Want From Me (Karaoke Version) Lyrics", - "id": "-BuWq-EqGQg" - }, - { - "title": "Little Mix Word Up (Karaoke Version) Lyrics", - "id": "RzDic6P0e70" - }, - { - "title": "Kylie Minogue Into The Blue (Karaoke Version) Lyrics", - "id": "MbhQ_mx4FdY" - }, - { - "title": "Jason Derulo Stupid Love (Karaoke Version) Lyrics", - "id": "NbQAJ3g3ieQ" - }, - { - "title": "David Correy The World Is Ours (Karaoke Version) Lyrics", - "id": "z-ge-osjdM4" - }, - { - "title": "Calvin Harris Summer (Karaoke Version) Lyrics", - "id": "gMddXUWZPf4" - }, - { - "title": "5 Seconds To Summer She Looks So Perfect (Karaoke Version) Lyrics", - "id": "XEtIrCS3O0E" - }, - { - "title": "The Lemonheads Mrs Robinson (Karaoke Version) Lyrics", - "id": "RmH09zZNc6g" - }, - { - "title": "Pixie Lott Nasty (Karaoke Version) Lyrics", - "id": "tVE2LPC2Ut8" - }, - { - "title": "Johnny Rivers Memphis Tennessee (Karaoke Version) Lyrics", - "id": "k6utXKhaPHg" - }, - { - "title": "Gorgon City Feat MNEK Ready For Your Love (Karaoke Version) Lyrics", - "id": "RsqwodP7AKI" - }, - { - "title": "Flo Rida How I Feel (Karaoke Version) Lyrics", - "id": "TNeabyg1_gU" - }, - { - "title": "DJ Fresh VS Jay Fay Feat Ms Dynamite Dibby Dibby Sound (Karaoke Version) Lyrics", - "id": "xKCHKHmIL74" - }, - { - "title": "Chris Malinchak If U Got It (Karaoke Version) Lyrics", - "id": "PU3vJmhN3WQ" - }, - { - "title": "The Rumble Strips Girls & Boys In Love (Karaoke Version) Lyrics", - "id": "FAje1H6TLKc" - }, - { - "title": "Pink Are We All We Are (Karaoke Version) Lyrics", - "id": "uIWAuri-SU8" - }, - { - "title": "Maren Morris Dancing with Myself (Karaoke Version) Lyrics", - "id": "YkAWGy5HTdo" - }, - { - "title": "Ariana Grande We can't be friends wait for your love (Karaoke Version) Lyrics", - "id": "N0mblhTr9Cg" - }, - { - "title": "Kacey Musgraves Deeper Well (Karaoke Version) Lyrics", - "id": "o2zBq2gZYOU" - }, - { - "title": "Matrix and Futurebound Feat Max Marshall Control (Karaoke Version) Lyrics", - "id": "lOusxRaj9gM" - }, - { - "title": "Lupe Fiasco ft Ed Sheeran Old School (Karaoke Version) Lyrics", - "id": "1eiQ6m5_MJc" - }, - { - "title": "London Grammer Strong (Karaoke Version) Lyrics", - "id": "RdpitS_3J6I" - }, - { - "title": "Hardwell ft Matthew Koma Dare You (Karaoke Version) Lyrics", - "id": "0TVgEaOt3l0" - }, - { - "title": "Britney Spears Perfume (Karaoke Version) Lyrics", - "id": "rbbdZ3RNW_Y" - }, - { - "title": "Breach Feat Andreya Triana Everything You Never Had (Karaoke Version) Lyrics", - "id": "dqx4oDRhXJY" - }, - { - "title": "Badder Than Bad Feat Fuse ODG Million Pound Girl (Karaoke Version) Lyrics", - "id": "wCoRO7kYLVA" - }, - { - "title": "Afrojack & Spree Wilson The Spark (Karaoke Version) Lyrics", - "id": "QhQHAnjs9KI" - }, - { - "title": "Charli XCX Von dutch (Karaoke Version) Lyrics", - "id": "wGoIXqNtxFY" - }, - { - "title": "Pitbull Feat Kesha Timber (Karaoke Version) Lyrics", - "id": "UXDtFC_S2CU" - }, - { - "title": "Lorde Team (Karaoke Version) Lyrics", - "id": "PMgDpyv-pJU" - }, - { - "title": "Little Mix Little Me (Karaoke Version) Lyrics", - "id": "WKShwY5PG4U" - }, - { - "title": "Jessie J Thunder (Karaoke Version) Lyrics", - "id": "7rwQgPgtU3I" - }, - { - "title": "The Vamps Can We Dance (Karaoke Version) Lyrics", - "id": "c6nce5yYx3E" - }, - { - "title": "Jeremih ft YG Don't Tell 'Em (Karaoke Version) Lyrics", - "id": "HbRZkpmsnck" - }, - { - "title": "James Arthur Recovery (Karaoke Version) Lyrics", - "id": "AvMw2UE45Jk" - }, - { - "title": "Montgomery Gentry Tattoos & Scars (Karaoke Version) Lyrics", - "id": "beUIVi9bLyg" - }, - { - "title": "Wilkinson ft Talay Riley Dirty Love (Karaoke Version) Lyrics", - "id": "MpIYQfWt_AA" - }, - { - "title": "The Magician Feat Years & Years Sunlight (Karaoke Version) Lyrics", - "id": "JKvYa2UfLDc" - }, - { - "title": "Sia You're never fully dressed without a smile (Karaoke Version) Lyrics", - "id": "Y6ZbASq7CCU" - }, - { - "title": "Pitbull Celebrate (Karaoke Version) Lyrics", - "id": "k75d40F7nK0" - }, - { - "title": "James Newton Howard The Hanging Tree (Karaoke Version) Lyrics", - "id": "qmkCpcQmWcc" - }, - { - "title": "Fifth Harmony Bo$$ (Karaoke Version) Lyrics", - "id": "Z7m1O18zijo" - }, - { - "title": "David Guetta ft Sam Martin Dangerous (Karaoke Version) Lyrics", - "id": "H63RExSkh_k" - }, - { - "title": "Blonde Feat Melissa Steel I Loved You (Karaoke Version) Lyrics", - "id": "R5nKSc4cWqI" - }, - { - "title": "Becky Hill Caution To The Wind (Karaoke Version) Lyrics", - "id": "1sW2tDTvETQ" - }, - { - "title": "The Spinners O o h Child (Karaoke Version) Lyrics", - "id": "Y5ixxBO6dhE" - }, - { - "title": "The Veronicas You Ruin Me (Karaoke Version) Lyrics", - "id": "Xse2lf0645E" - }, - { - "title": "Troye Sivan Happy Little Pill (Karaoke Version) Lyrics", - "id": "s1ITwJTUucQ" - }, - { - "title": "The Vamps Wake Up (Karaoke Version) Lyrics", - "id": "w5wr_DQf1mU" - }, - { - "title": "SIA Big Girls cry (Karaoke Version) Lyrics", - "id": "8T39bL3VIz8" - }, - { - "title": "One Republic I Lived (Karaoke Version) Lyrics", - "id": "yFDA-yNfLmc" - }, - { - "title": "Jack Soveretti Tie Me Down (Karaoke Version) Lyrics", - "id": "05ZBc2Sbjz8" - }, - { - "title": "Duke Dumont Ocean Drive", - "id": "sc118fKZpHI" - }, - { - "title": "Break The Rules Charli XCX (Karaoke Version) Lyrics", - "id": "jhq__s-tqDo" - }, - { - "title": "Ben Haenow ft Kelly Clarkson Second Hand Heart (Karaoke Version) Lyrics", - "id": "KOH45fdrlNY" - }, - { - "title": "Avicii The Nights (Karaoke Version) Lyrics", - "id": "7XQgbLh3bmY" - }, - { - "title": "Dizzy Olly Alexander Years & Years (Karaoke Version) Lyrics", - "id": "1o0hGDGPLN4" - }, - { - "title": "Kanye West, Ty Dolla $ign, Lil Baby Everybody (Karaoke Version) Lyrics", - "id": "wOaorf4F_I8" - }, - { - "title": "Paloma Faith Beauty Remains (Karaoke Version) Lyrics", - "id": "hRZJ3HWbMt0" - }, - { - "title": "Neon Jungle Braveheart (Karaoke Version) Lyrics", - "id": "hxk70LbVGTA" - }, - { - "title": "Labrinth Jealous (Karaoke Version) Lyrics", - "id": "BNPJ7ojJPrk" - }, - { - "title": "John Martin Anywhere For You (Karaoke Version) Lyrics", - "id": "9WaV18mR9eY" - }, - { - "title": "Jack Johnson Angel (Karaoke Version) Lyrics", - "id": "rIfFB0OWGUM" - }, - { - "title": "Deorro & Chris Brown Five More Hours (Karaoke Version) Lyrics", - "id": "zHd4e1FGz58" - }, - { - "title": "Dappy Beautiful Me (Karaoke Version) Lyrics", - "id": "KIOBwkg6rdw" - }, - { - "title": "Calvin Harris, Rag 'n' Bone Man Lovers In A Past Life (Karaoke Version) Lyrics", - "id": "kQx8uE1zSY0" - }, - { - "title": "Madison Beer Make You Mine (Karaoke Version) Lyrics", - "id": "QniGx92P2E4" - }, - { - "title": "Clean Bandit feat Jess Glynne Real Love (Karaoke Version) Lyrics", - "id": "L0d5Z9FBlxA" - }, - { - "title": "Taylor Swift, Ice Spice Karma (Karaoke Version) Lyrics", - "id": "ll9rJb7xnnw" - }, - { - "title": "Birds Of Tokyo Lion (Karaoke Version) Lyrics", - "id": "xZ1pihNYD1w" - }, - { - "title": "Tygo ft Chris Brown Aygo (Karaoke Version) Lyrics", - "id": "soxfPDV9yog" - }, - { - "title": "5 seconds of summer amnesia (Karaoke Version) Lyrics", - "id": "4WQYeipwcS0" - }, - { - "title": "Conan Gray Lonely Dancers (Karaoke Version) Lyrics", - "id": "SOWhWKrBCXI" - }, - { - "title": "Ting Tings Only Love (Karaoke Version) Lyrics", - "id": "2I943LmFL3Q" - }, - { - "title": "The Pierces The devil is a lonely night (Karaoke Version) Lyrics", - "id": "o1MjwcjKeHI" - }, - { - "title": "St Raymond Fall At Your Feet (Karaoke Version) Lyrics", - "id": "23zVBtJI6cs" - }, - { - "title": "Karen Harding Say Something (Karaoke Version) Lyrics", - "id": "cpBnuUCYKPI" - }, - { - "title": "The Rolling Stones Mess It Up (Karaoke Version) Lyrics", - "id": "WQonwqy9Cy0" - }, - { - "title": "Kanye West Feat Paul McCartney Only One (Karaoke Version) Lyrics", - "id": "W-rBaW20fak" - }, - { - "title": "Fifth Harmony Sledgehammer (Karaoke Version) Lyrics", - "id": "LdwpIdGmAEI" - }, - { - "title": "Fall Out Boy Uma Thurman (Karaoke Version) Lyrics", - "id": "nUKHqvx6UZY" - }, - { - "title": "Ella Henderson Mirror Man (Karaoke Version) Lyrics", - "id": "OxPMf6B8niU" - }, - { - "title": "Circa Waves Fossil (Karaoke Version) Lyrics", - "id": "lbFCTGwWi0I" - }, - { - "title": "Alex Adair Make me feel better (Karaoke Version) Lyrics", - "id": "WbGH5o10r9o" - }, - { - "title": "Robin Shultz ft Jasmine Thompson Sun Goes Down (Karaoke Version) Lyrics", - "id": "oj66AXVb9v0" - }, - { - "title": "Rihanna Towards the sun (Karaoke Version) Lyrics", - "id": "_7pYm2f1NKo" - }, - { - "title": "Mumford & Sons Believe (Karaoke Version) Lyrics", - "id": "BxAOUPQFPV0" - }, - { - "title": "Mike Mago & Dragonette Outlines (Karaoke Version) Lyrics", - "id": "_dPBsavCSvg" - }, - { - "title": "LuvBug Revive Say Something (Karaoke Version) Lyrics", - "id": "OOp0VrhJoFA" - }, - { - "title": "Kodaline Honest (Karaoke Version) Lyrics", - "id": "O_Xhk_sMkmU" - }, - { - "title": "Hudson Taylor Just a Thought (Karaoke Version) Lyrics", - "id": "Cv3cw9LBWSI" - }, - { - "title": "Florrie Too Young to Remember (Karaoke Version) Lyrics", - "id": "XVaO4OrbFmw" - }, - { - "title": "Echosmith Bright (Karaoke Version) Lyrics", - "id": "z62A7pQLaZI" - }, - { - "title": "Ariana Grade One Last Time (Karaoke Version) Lyrics", - "id": "0T2ddJhxL9I" - }, - { - "title": "Pharrell Williams, Miley Cyrus Doctor Work It Out (Karaoke Version) Lyrics", - "id": "mhzrkuJTQP0" - }, - { - "title": "Djo End Of Beginning (Karaoke Version) Lyrics", - "id": "IciLJV___L0" - }, - { - "title": "Zedd ft Selena Gomez I Want You To Know (Karaoke Version) Lyrics", - "id": "v8hhQXHEq7k" - }, - { - "title": "Tove Lo Talking Body (Karaoke Version) Lyrics", - "id": "SXGA0X173cE" - }, - { - "title": "Tough Love So Freakin' Tight (Karaoke Version) Lyrics", - "id": "YMe6OTsia3I" - }, - { - "title": "Stevie McCrorie Lost Stars (Karaoke Version) Lyrics", - "id": "wrNx6Lu-UxU" - }, - { - "title": "Rihanna Bitch Better Have My Money (Karaoke Version) Lyrics", - "id": "GI5HXPHWda0" - }, - { - "title": "Natalie La Rose ft Jeremih Somebody (Karaoke Version) Lyrics", - "id": "wiPV-iHvP0Y" - }, - { - "title": "Lethal Bizzle ft Diztortion Fester Skank (Karaoke Version) Lyrics", - "id": "QjF_VN_JL8w" - }, - { - "title": "Joshua Radin Beautiful Day (Karaoke Version) Lyrics", - "id": "JXrB_gwVaCY" - }, - { - "title": "Iggy Azalea & Jennifer Hudson Trouble (Karaoke Version) Lyrics", - "id": "lqd6CUxYJ0A" - }, - { - "title": "Andy Grammer Honey I'm Good (Karaoke Version) Lyrics", - "id": "nm1_RMfyCFU" - }, - { - "title": "Keith Urban Straight Line (Karaoke Version) Lyrics", - "id": "Qq4fuIZ9XLM" - }, - { - "title": "Tom Odell Long Way Down (Karaoke Version) Lyrics", - "id": "boPO0i5jGuI" - }, - { - "title": "Nick Jonas Chains (Karaoke Version) Lyrics", - "id": "dCSQXHI-W2c" - }, - { - "title": "Peace Money (Karaoke Version) Lyrics", - "id": "svXojzHt0yc" - }, - { - "title": "Michael Calfan Treasured Soul (Karaoke Version) Lyrics", - "id": "94qQD9iB1aQ" - }, - { - "title": "Kodaline The One (Karaoke Version) Lyrics", - "id": "uQM7EhIDnFc" - }, - { - "title": "Kiesza Sound Of A Woman (Karaoke Version) Lyrics", - "id": "o9pl38tNZpM" - }, - { - "title": "Jessie Ware Champagne Kisses (Karaoke Version) Lyrics", - "id": "KlRfL4Gqp-Y" - }, - { - "title": "Hosier Someone New (Karaoke Version) Lyrics", - "id": "HPRE7RWv-vU" - }, - { - "title": "Freddie Dickson Speculate (Karaoke Version) Lyrics", - "id": "JOJDJTgCON4" - }, - { - "title": "Alesso Feat Roy English Cool (Karaoke Version) Lyrics", - "id": "dh8IUDdRBj0" - }, - { - "title": "CYRIL Stumblin IN (Karaoke Version) Lyrics", - "id": "FqRanpPRRx0" - }, - { - "title": "Becky Hill, Sonny Fodera Never Be Alone (Karaoke Version) Lyrics", - "id": "m7YAEUwt2SU" - }, - { - "title": "Marshmello, venbee No Man's Land (Karaoke Version) Lyrics", - "id": "CPw6vMJPB2I" - }, - { - "title": "Love on Selena Gomez (Karaoke Version) Lyrics", - "id": "BKmpmECj_qY" - }, - { - "title": "Sia, Kylie Minogue Dance Alone (Karaoke Version) Lyrics", - "id": "UdROVRBabNQ" - }, - { - "title": "Ella Henderson, Rudimental Alibi (Karaoke Version) Lyrics", - "id": "NPrIbU7atK4" - }, - { - "title": "Melanie Martinez Tunnel Vision (Karaoke Version) Lyrics", - "id": "gM0w4HGShDk" - }, - { - "title": "Alan Walker The Drum (Karaoke Version) Lyrics", - "id": "nKH2-DL36Lc" - }, - { - "title": "Marshmello, venbee No Man's Land (Karaoke Version) Lyrics", - "id": "qsNpYDxiyfg" - }, - { - "title": "AJR Maybe Man (Karaoke Version) Lyrics", - "id": "P8mbGq26FXA" - }, - { - "title": "Stephen Sanchez High (Karaoke Version) Lyrics", - "id": "EJBX2LHEhT0" - }, - { - "title": "Oliver Heldens & Becky Hill Gecko Overdrive (Karaoke Version) Lyrics", - "id": "KyjRqrD34yA" - }, - { - "title": "Nina Nesbitt Don't Stop (Karaoke Version) Lyrics", - "id": "KyHneei3Yxk" - }, - { - "title": "Lily Allen Air Balloon (Karaoke Version) Lyrics", - "id": "WcHgBs4bdjA" - }, - { - "title": "Jess Glynne Right here (Karaoke Version) Lyrics", - "id": "MbjM7xyCItU" - }, - { - "title": "Inna In Your Eyes (Karaoke Version) Lyrics", - "id": "hIDSxqcEXAY" - }, - { - "title": "Elyar Fox A Billion Girls (Karaoke Version) Lyrics", - "id": "QlZfoYvNcjc" - }, - { - "title": "DJ Fresh Feat Little Nikki Make U Bounce (Karaoke Version) Lyrics", - "id": "seHcSOFfjl8" - }, - { - "title": "Demi Lovato Neon Lights (Karaoke Version) Lyrics", - "id": "q5CuFnayKMw" - }, - { - "title": "Chase & Status Alive (Karaoke Version) Lyrics", - "id": "E4gfdN6WAtQ" - }, - { - "title": "Avicii Addicted To You (Karaoke Version) Lyrics", - "id": "IFPctbJ6kbA" - }, - { - "title": "Beyonce Feat Jay Z Deja Vu (Karaoke Version) Lyrics", - "id": "VfcFTtC6QUo" - }, - { - "title": "Kylie Minogue Wow (Karaoke Version) Lyrics", - "id": "aOEyJj-ccgY" - }, - { - "title": "The Weeknd The Hills (Karaoke Version) Lyrics", - "id": "umbrKwF77KU" - }, - { - "title": "Martin Garrix Feat Usher Don't Look Down (Karaoke Version) Lyrics", - "id": "NIeAKmyKwHQ" - }, - { - "title": "Little Big Town Girl Crush (Karaoke Version) Lyrics", - "id": "zHB0ESsYA_k" - }, - { - "title": "Leona Lewis Fire Under My Feet (Karaoke Version) Lyrics", - "id": "7KgWHpwyYE0" - }, - { - "title": "Iggy Azalea feat Charli XCX Fancy ) (Karaoke Version) Lyrics", - "id": "3SF3wOlaM3s" - }, - { - "title": "Galantis Runaway U and I (Karaoke Version) Lyrics", - "id": "1VAvw8gcFYM" - }, - { - "title": "Florence + the Machine Ship To Wreck (Karaoke Version) Lyrics", - "id": "yepFqOiqcpA" - }, - { - "title": "Disclosure Feat Gregory Porter Holding On (Karaoke Version) Lyrics", - "id": "b_56gmN2QBQ" - }, - { - "title": "Blonde Feat Alex Newell All Cried Out (Karaoke Version) Lyrics", - "id": "OR1gzEu-05A" - }, - { - "title": "Michael Jackson I Just Can't Stop Loving You (Karaoke Version) Lyrics", - "id": "wAXVEn3Ris4" - }, - { - "title": "Pink Don't Let Me Get Me (Karaoke Version) Lyrics", - "id": "YbMBnBSBAo8" - }, - { - "title": "Dua Lipa Training Season (Karaoke Version) Lyrics", - "id": "t2Z46bSU164" - }, - { - "title": "Beyonce TEXAS HOLD 'EM (Karaoke Version) Lyrics", - "id": "UkM6DeCuoN4" - }, - { - "title": "Nathan Sykes Kiss Me Quick (Karaoke Version) Lyrics", - "id": "_E6_fTYS6Sw" - }, - { - "title": "Mark Ronson Feat Mystikal Feel Right (Karaoke Version) Lyrics", - "id": "njExYjLEoRQ" - }, - { - "title": "Mans Zelmerlow Heroes (Karaoke Version) Lyrics", - "id": "YjSuu77Ht7c" - }, - { - "title": "Kygo Feat Parson James Stole The Show (Karaoke Version) Lyrics", - "id": "mmUaDS3sXpU" - }, - { - "title": "Lorde Everybody Wants To Rule The World (Karaoke Version) Lyrics", - "id": "aR7FR1w3kfw" - }, - { - "title": "Lawson Roads (Karaoke Version) Lyrics", - "id": "SzxYM-JkFLg" - }, - { - "title": "Kelly Clarkson Invincible (Karaoke Version) Lyrics", - "id": "uyFdo5T0Blc" - }, - { - "title": "Imagine Dragons Shots (Karaoke Version) Lyrics", - "id": "XFuBxtCWp5M" - }, - { - "title": "Axwell & Ingrosso Sun Is Shining", - "id": "juiiboU7Zo8" - }, - { - "title": "Avicii Waiting For Love (Karaoke Version) Lyrics", - "id": "aIOXxTmw-84" - }, - { - "title": "Adam Lambert Ghost Town (Karaoke Version) Lyrics", - "id": "9Kr6-oxC2Jc" - }, - { - "title": "Michael Buble Cry Me A River (Karaoke Version) Lyrics", - "id": "TJbYsUGeoVY" - }, - { - "title": "Shirley Bassey Goldfinger (Karaoke Version) Lyrics", - "id": "-wJt10DCgTU" - }, - { - "title": "Boyzone Love You Anyway (Karaoke Version) Lyrics", - "id": "76ldwHhFn4w" - }, - { - "title": "Alan Jackson Small Town Southern Man (Karaoke Version) Lyrics", - "id": "Lq4J13t7Gvo" - }, - { - "title": "JLS Do You Feel What I Feel (Karaoke Version) Lyrics", - "id": "Dce7677JRIg" - }, - { - "title": "Leah McFall I Will Survive (Karaoke Version) Lyrics", - "id": "3bUEWgU3m_k" - }, - { - "title": "Little Boots Remedy (Karaoke Version) Lyrics", - "id": "KWdSuEihHc0" - }, - { - "title": "Kenny Loggins Danger Zone (Karaoke Version) Lyrics", - "id": "X5msDbmI7Bw" - }, - { - "title": "The Four Seasons Walk Like A Man (Karaoke Version) Lyrics", - "id": "kjvLpobs-70" - }, - { - "title": "Bruce Springsteen Hungry Heart (Karaoke Version) Lyrics", - "id": "ITb23NljS24" - }, - { - "title": "Union J Carry You (Karaoke Version) Lyrics", - "id": "FDFh5LZxCwc" - }, - { - "title": "Tom Petty Free Fallin' (Karaoke Version) Lyrics", - "id": "nwjhxT-uDdk" - }, - { - "title": "Neil Sedaka Laughter In The Rain (Karaoke Version) Lyrics", - "id": "0Xz7DC_A7fg" - }, - { - "title": "Lady Gaga Marry The Night (Karaoke Version) Lyrics", - "id": "urEk4fQMkTs" - }, - { - "title": "Lady Gaga Judas (Karaoke Version) Lyrics", - "id": "jUOlANs1zJk" - }, - { - "title": "James Blunt High (Karaoke Version) Lyrics", - "id": "P1WFRV8kinM" - }, - { - "title": "Englebert Humperdink Love Will Set You Free (Karaoke Version) Lyrics", - "id": "qAm0hjb3TCc" - }, - { - "title": "Emeli Sande Heaven (Karaoke Version) Lyrics", - "id": "1JBj8YC_W8o" - }, - { - "title": "Demi Lovato Heart Attack (Karaoke Version) Lyrics", - "id": "iqvpAnRBjFk" - }, - { - "title": "Why Don't We & Macklemore I Don't Belong In This Club (Karaoke Version) Lyrics", - "id": "-4mXb6hUCbc" - }, - { - "title": "Marshmello Feat CHVRCHES Here With Me (Karaoke Version) Lyrics", - "id": "aSlq4mb2nCU" - }, - { - "title": "Meduza ft Goodboys Piece Of Your Heart (Karaoke Version) Lyrics", - "id": "L4aj4Wlu0xo" - }, - { - "title": "Benson Boone Beautiful Things (Karaoke Version) Lyrics", - "id": "fyAdX2p2sR8" - }, - { - "title": "Luis Fonsi Sola (Karaoke Version) Lyrics", - "id": "s0ht8hqeQkc" - }, - { - "title": "Ava Max So Am I (Karaoke Version) Lyrics", - "id": "DyjLI__rrRk" - }, - { - "title": "Tame Impala Patience (Karaoke Version) Lyrics", - "id": "FHfY7irbySA" - }, - { - "title": "Maggie Rogers Light On (Karaoke Version) Lyrics", - "id": "Gv1DBRnZEEM" - }, - { - "title": "Lauv & Troye Sivan I'm so Tired (Karaoke Version) Lyrics", - "id": "j1N26QZZhrQ" - }, - { - "title": "Billie Eilish I wish you were gay (Karaoke Version) Lyrics", - "id": "uNXmdNOKQFw" - }, - { - "title": "Banners Got It In You Acoustic (Karaoke Version) Lyrics", - "id": "m0wUpq2Y5Ko" - }, - { - "title": "Sigrid Don't Feel Like Crying (Karaoke Version) Lyrics", - "id": "Wc41iqam6-M" - }, - { - "title": "Billie Eilish bad guy (Karaoke Version) Lyrics", - "id": "hqcOSdcUS9k" - }, - { - "title": "Russ Aint Goin Back (Karaoke Version) Lyrics", - "id": "qMGQORRg4m0" - }, - { - "title": "Simple Minds Promised You A Miracle (Karaoke Version) Lyrics", - "id": "ncKUzNtGwXY" - }, - { - "title": "Armin van Buuren, Goodboys Forever Stay Like This (Karaoke Version) Lyrics", - "id": "Lwv70OiPvJI" - }, - { - "title": "Zack Bryan Nine Ball ( Karaoke Version ) lyrics", - "id": "mspAx9HgJcc" - }, - { - "title": "Lauren Daigle You Say ( Karaoke Version ) lyrics", - "id": "iJ-DWzZtqeI" - }, - { - "title": "The Chainsmokers Ft 5 Seconds Of Summer Who Do You love (Karaoke Version) Lyrics", - "id": "6yy5Ny8CAFA" - }, - { - "title": "Little Mix ft Ty Dolla $ign Think About Us (Karaoke Version) Lyrics", - "id": "q4nYuCRsn8o" - }, - { - "title": "Khalid, Disclosure Talk (Karaoke Version) Lyrics", - "id": "CwTVzB8FwuA" - }, - { - "title": "Jonas Brothers Sucker (Karaoke Version) Lyrics", - "id": "gbm847qiYgw" - }, - { - "title": "Ruth B Slow Fade (Karaoke Version) Lyrics", - "id": "YToKM_sQlfY" - }, - { - "title": "Ella Mai Shot Clock (Karaoke Version) Lyrics", - "id": "AVt8oFmZ25Q" - }, - { - "title": "ames Bay Ft Julia Michaels Peer Pressure (Karaoke Version) Lyrics", - "id": "b5AvsnWhhxA" - }, - { - "title": "NSG Options (Karaoke Version) Lyrics", - "id": "poCrIFcNGmM" - }, - { - "title": "Kehlani ft Ty Dolla $ign Nights Like This ( #Karaoke #Version #King with sing along Lyrics )", - "id": "EdPvAGljB8U" - }, - { - "title": "X Ambassadors No Strings ( Karaoke Version) Lyrics", - "id": "5VGg-7rshII" - }, - { - "title": "Tom Walker Just You And I (Karaoke Version) Lyrics", - "id": "x9Ly8wEyjfE" - }, - { - "title": "Mabel Don't Call Me Up (Karaoke Version) Lyrics", - "id": "Smo2cZcaGQc" - }, - { - "title": "Tori Kelly Change Your Mind (Karaoke Version) Lyrics", - "id": "FBvVywXhc6s" - }, - { - "title": "Julia Michaels Ft Selena Gomez Anxiety (Karaoke Version) Lyrics", - "id": "ZOB7LKZM5ag" - }, - { - "title": "YUNGBLUD, Halsey ft Travis Barker 11 Minutes ( #Karaoke #Version #King with sing along Lyrics )", - "id": "eECcAcMhfFQ" - }, - { - "title": "Tyla Truth or Dare (Karaoke Version) Lyrics", - "id": "O-d7Tm-Hgwo" - }, - { - "title": "George Ezra Anyone For You ( #Karaoke #Version #King with sing along Lyrics )", - "id": "CB4wBgJvV10" - }, - { - "title": "PInkfong Baby Shark (Karaoke Version) Lyrics", - "id": "WDkCO0OlQ1E" - }, - { - "title": "Tom Walker Head Underwater (Karaoke Version) Lyrics", - "id": "jAKqw196Dhw" - }, - { - "title": "P!nk Walk Me Home (Karaoke Version) Lyrics", - "id": "vVY5PbhM5Sk" - }, - { - "title": "Justin Timberlake Selfish (Karaoke Version) Lyrics", - "id": "WxUuV3_viMQ" - }, - { - "title": "Dominic Fike 3 Nights (Karaoke Version) Lyrics", - "id": "KGQm7NTqy0w" - }, - { - "title": "Ariana Grande needy ( #Karaoke #Version #King with sing along Lyrics )", - "id": "nmvJy5oDeDY" - }, - { - "title": "Gabrielle Aplin My Mistake ( #Karaoke #Version #King with sing along Lyrics )", - "id": "pO2XphLQlZ0" - }, - { - "title": "Tate McRae We're not alike (Karaoke Version) Lyrics", - "id": "-8YWwi1veX4" - }, - { - "title": "Joe Dolce Shaddap You Face (Karaoke Version) Lyrics", - "id": "zlsg3RRVZ2s" - }, - { - "title": "Dua Lipa Swan Song (Karaoke Version) Lyrics", - "id": "gD-3g-7tob0" - }, - { - "title": "Noah Kahan & Sam Fender Homesick (Karaoke Version) Lyrics", - "id": "YokwDRGjl-w" - }, - { - "title": "Celine Dion My Heart Will Go On (Karaoke Version) Lyrics", - "id": "OBZ9Yl_ZhWA" - }, - { - "title": "Troye Sivan Got Me Started ( #Karaoke #Version #King with sing along Lyrics )", - "id": "VzCPrNyianc" - }, - { - "title": "Ed Sheeran Perfect (Karaoke Version) Lyrics", - "id": "9xWSdaMlr1Y" - }, - { - "title": "No Candle No Light Zayne feat Nicki Minaj (Karaoke Version) Lyrics", - "id": "HWDpx6WI1_U" - }, - { - "title": "Post Malone Wow ( #Karaoke #Version #King with sing along Lyrics )", - "id": "4550HMLaYj0" - }, - { - "title": "The 1975 Sincerity Is Scary ( #Karaoke #Version #King with sing along Lyrics )", - "id": "pYiEzCsrP20" - }, - { - "title": "Mr Probz Praying To A God ( #Karaoke #Version #King with sing along Lyrics )", - "id": "o0Qu9HLAwtI" - }, - { - "title": "Jax Jones, Years & Years Play ( #Karaoke #Version #King with sing along Lyrics )", - "id": "6df0PcGzzIg" - }, - { - "title": "The Carpenters Can't Smile Without You (Karaoke Version) Lyrics", - "id": "OJFedETrWTo" - }, - { - "title": "Perfect To Me Anne Marie ( #Karaoke #Version #King with sing along Lyrics )", - "id": "pmW2Gb-MU14" - }, - { - "title": "Lovelytheband Broken ( #Karaoke #Version #King with sing along Lyrics )", - "id": "AhnYED3AZr0" - }, - { - "title": "Cry Alone Lil Peep ( #Karaoke #Version #King with sing along Lyrics )", - "id": "yUhKSYjo7JY" - }, - { - "title": "Kiam Waiting ( #Karaoke #Version #King with sing along Lyrics )", - "id": "d-jU5y8eFts" - }, - { - "title": "Trolls Can't Stop The Feeling ( #Karaoke #Version #King with sing along Lyrics )", - "id": "rvftEa98NKc" - }, - { - "title": "Bobby Darin Things ( #Karaoke #Version #King with sing along Lyrics )", - "id": "FUN1xTwDN6k" - }, - { - "title": "Engelbert Humperdinck Quando Quando Quando ( #Karaoke #Version #King with sing along Lyrics )", - "id": "rN1Nx77NLTg" - }, - { - "title": "Harry Connick Jr Goodnight My Love ( #Karaoke #Version #King with sing along Lyrics )", - "id": "u5nWI5orDZY" - }, - { - "title": "Paul Anka Diana (Karaoke Version) Lyrics", - "id": "qnO3q9QgdlA" - }, - { - "title": "Beautiful People Stay High The Black Keys ( #Karaoke #Version #King with sing along Lyrics )", - "id": "5ZFlN8ZWmEA" - }, - { - "title": "Tony Christie I Did What I Did For Maria ( #Karaoke #Version #King with sing along Lyrics )", - "id": "T_akGgyP_5Y" - }, - { - "title": "Taylor Swift Shake it off ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ZjyZW2j1_VE" - }, - { - "title": "Jennifer Lopez Can't Get Enough ( #Karaoke #Version #King with sing along Lyrics )", - "id": "yGNMWH8XLD0" - }, - { - "title": "Taylor Swift Call It What You Want ( #Karaoke #Version #King with sing along Lyrics )", - "id": "tDh4A-xBX0s" - }, - { - "title": "Taylor Swift Gorgeous ( #Karaoke #Version #King with sing along Lyrics )", - "id": "_MRWYzvqego" - }, - { - "title": "Justin Bieber Love Yourself ( #Karaoke #Version #King with sing along Lyrics )", - "id": "8f_uoNOyOZc" - }, - { - "title": "Calum Scott Dancing On My Own ( #Karaoke #Version #King with sing along Lyrics )", - "id": "v2sIKYU2Du4" - }, - { - "title": "Alan Walker Faded (Karaoke Version) Lyrics", - "id": "xSE2DZ82q-w" - }, - { - "title": "NF If You Want Love", - "id": "VBN0sghgxVM" - }, - { - "title": "Benny Blanco & Calvin Harris I Found You ( #Karaoke #Version #King with sing along Lyrics )", - "id": "N6uyh4ovIBc" - }, - { - "title": "Gesaffelstein ft The Weeknd Lost In The Fire ( #Karaoke #Version #King with sing along Lyrics )", - "id": "naPTQ9kaq-A" - }, - { - "title": "Diamond Heart Alan Walker ft Sophia Somajo ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Yg8Axkpn2Mg" - }, - { - "title": "Bellyache Billie Eilish ( #Karaoke #Version #King with sing along Lyrics )", - "id": "M_jubGkGqz8" - }, - { - "title": "Billie Eilish Come Out and Play ( #Karaoke #Version #King with sing along Lyrics )", - "id": "8Hm9fTuzLOo" - }, - { - "title": "Olly Murs Ft Snoop Dogg Moves ( #Karaoke #Version #King with sing along Lyrics )", - "id": "os2n0Gti964" - }, - { - "title": "Only Want You Rita Ora ( #Karaoke #Version #King with sing along Lyrics )", - "id": "dT0o_lFdwMM" - }, - { - "title": "Sucker Punch Sigrid ( #Karaoke #Version #King with sing along Lyrics )", - "id": "DO99-d_YAn0" - }, - { - "title": "Mark Ronson Ft Miley Cyrus Nothing Breaks Like A Heart ( #Karaoke #Version with Lyrics )", - "id": "kaBHcsKY_f4" - }, - { - "title": "Khalid Saturday Nights ( #Karaoke #Version #King with sing along Lyrics )", - "id": "jWUvhNTR-Pk" - }, - { - "title": "Jonas Blue ft Liam Payne & Lennon Stella Polaroid ( #Karaoke #Version with sing along Lyrics )", - "id": "r7wWNgUyr9w" - }, - { - "title": "Ellie Goulding, Diplo, Swae Lee Close To Me ( #Karaoke #Version #King with sing along Lyrics )", - "id": "5PLtgkOrTVg" - }, - { - "title": "George Ezra Hold My Girl (Karaoke Version) Lyrics", - "id": "g_3EnLE9SPI" - }, - { - "title": "Freya Ridings Lost Without You ( #Karaoke #Version #King with sing along Lyrics )", - "id": "VZvq97UTm5g" - }, - { - "title": "Bring Me The Horizon Wonderful Life ( #Karaoke #Version #King with sing along Lyrics )", - "id": "n2pyeYRl1jc" - }, - { - "title": "Ava Max Sweet But Psycho ( #Karaoke #Version #King with sing along Lyrics )", - "id": "gy15IamouZg" - }, - { - "title": "Vance Joy Rock It ( #Karaoke #Version #King with sing along Lyrics )", - "id": "IbfwKwVgEjc" - }, - { - "title": "Rod Stewart Rhythm Of My Heart ( #Karaoke #Version #King with sing along Lyrics )", - "id": "zs4N0r90jNk" - }, - { - "title": "Queen You're My Best Friend ( #Karaoke #Version #King with sing along Lyrics )", - "id": "B798frxFDPU" - }, - { - "title": "Zara Larsson Ruin My Life ( #Karaoke #Version #King with sing along Lyrics )", - "id": "JAMWHLnKfaM" - }, - { - "title": "The Chainsmokers ft Kelsea Ballerini This Feeling ( #Karaoke #Version sing along Lyrics )", - "id": "eQTt-p2Cm4I" - }, - { - "title": "The Chainsmokers Ft Emily Warren Side Effects ( #Karaoke #Version #King with sing along Lyrics )", - "id": "0BYRyP-sQYs" - }, - { - "title": "Pink A Million Dreams ( #Karaoke #Version #King with sing along Lyrics )", - "id": "fHVKlgUCWws" - }, - { - "title": "Morgan Evans & Kelsea Ballerini Dance With Me ( #Karaoke #Version #King with sing along Lyrics )", - "id": "BYTjuZWGnHo" - }, - { - "title": "Little Mix Joan Of Arc ( #Karaoke #Version #King with sing along Lyrics )", - "id": "IaTbK0JyWm0" - }, - { - "title": "Lady GaGa Is That Alright (Karaoke Version) Lyrics", - "id": "QI8bXp8MEp4" - }, - { - "title": "Lady GaGa Always Remember Us This Way ( #Karaoke #Version #King with sing along Lyrics )", - "id": "08Pw2M8-au8" - }, - { - "title": "Joji Slow Dancing In The Dark ( #Karaoke #Version #King with sing along Lyrics )", - "id": "SskYni5O4tE" - }, - { - "title": "Jess Glynne Thursday ( #Karaoke #Version #King with sing along Lyrics )", - "id": "GKSoqWhHQZA" - }, - { - "title": "Kygo, Ava Max Whatever ( #Karaoke #Version #King with sing along Lyrics )", - "id": "0J8WQ9ySTN4" - }, - { - "title": "Jason Mraz feat Meghan Trainor More Than Friends ( #Karaoke #Version sing along Lyrics )", - "id": "Aj2nK6pflc0" - }, - { - "title": "Imagine Dragons Zero ( #Karaoke #Version #King with sing along Lyrics )", - "id": "BGT1HhnwxgM" - }, - { - "title": "Imagine Dragons Bad Liar ( #Karaoke #Version #King with sing along Lyrics )", - "id": "EDtIK_f2xgk" - }, - { - "title": "Dynoro & Gigi Dโ€™Agostino In My Mind ( #Karaoke #Version #King with sing along Lyrics )", - "id": "_j5zZG8NAOc" - }, - { - "title": "Charli XCX Troye Sivan 1999 ( #Karaoke #Version #King with sing along Lyrics )", - "id": "FkHAdbOmSg4" - }, - { - "title": "David Kushner Skin and Bones ( #Karaoke #Version #King with sing along Lyrics )", - "id": "lF_7y2r0GHU" - }, - { - "title": "Ariana Grande Thank U Next ( #Karaoke #Version #King with sing along Lyrics )", - "id": "kqI6iHQtGiw" - }, - { - "title": "Dua Lipa & BLACKPINK Kiss And Make Up ( #Karaoke #Version #King with sing along Lyrics )", - "id": "XadkhK-jbaA" - }, - { - "title": "Billie Eilish When The Party's Over ( #Karaoke #Version #King with sing along Lyrics )", - "id": "vmkb29y0hZM" - }, - { - "title": "Ariana Grande Better Off ( #Karaoke #Version #King with sing along Lyrics )", - "id": "uXN_FZs2G5s" - }, - { - "title": "Sophie Ellis Bextor Murder On The Dance Floor ( #Karaoke #Version #King with sing along Lyrics )", - "id": "3vXjyJDcrTQ" - }, - { - "title": "Sam Fender Seventeen Going Under ( #Karaoke #Version #King with sing along Lyrics )", - "id": "cxE3RQodCXs" - }, - { - "title": "Tom Odell Loving You Will Be The Death Of Me ( #Karaoke #Version #King with sing along Lyrics )", - "id": "IdUHTSlU6gA" - }, - { - "title": "Morgan Wallen -Thinkin' Bout Me short ( #Karaoke #Version #King with sing along Lyrics )", - "id": "demp4DZxyfg" - }, - { - "title": "Zach Bryan I Remember Everything (Karaoke Version) -YouTube", - "id": "wPJAgFPrPqw" - }, - { - "title": "Fire! Alan Walker, YUQI from GI DLE, JVKE (Karaoke) -YouTube", - "id": "H1C2h9swoGM" - }, - { - "title": "Lil Nas X J CHRIST ( Karaoke Version ) - YouTube", - "id": "ugrersugjdE" - }, - { - "title": "Ariana Grande Yes And? Karaoke -YouTube", - "id": "WtsBtFj-Ieg" - }, - { - "title": "Shaboozey Let It Burn Karaoke -YouTube", - "id": "I6lXMjako3k" - }, - { - "title": "Diplo, Maren Morris 42 ( #Karaoke #Version #King with sing along Lyrics )", - "id": "TMgf11xpUsw" - }, - { - "title": "Noah Kahan Stick Season (Karaoke Version) - YouTube", - "id": "Y_Irws9h9hA" - }, - { - "title": "Travis Scott SICKO MODE ( #Karaoke #Version #King with sing along Lyrics )", - "id": "xWQmbRzDViY" - }, - { - "title": "LSD Ft Sia, Diplo & Labrinth Thunderclouds ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Wg-KeIN4MDw" - }, - { - "title": "Sigala, Ella Eyre & Meghan Trainor Just Got Paid ( #Karaoke #Version #King with sing along Lyrics )", - "id": "tEkK1MDq3oA" - }, - { - "title": "Rudy Mancuso Lento ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Sx_Jt6sHx4w" - }, - { - "title": "Rita Ora Let You Love Me ( #Karaoke #Version #King with sing along Lyrics )", - "id": "V8P3_kAc6y0" - }, - { - "title": "Cardi B ft Kehlani Ring ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Z5YIRzOkIo0" - }, - { - "title": "Twenty One Pilots My Blood ( #Karaoke #Version #King with sing along Lyrics )", - "id": "puiLuPcDkQg" - }, - { - "title": "Mumford & Sons Guiding Light ( #Karaoke #Version #King with sing along Lyrics )", - "id": "fS6sRExeUB4" - }, - { - "title": "Marshmello Ft Bastille Happier ( #Karaoke #Version #King with sing along Lyrics )", - "id": "HgTK_740OLY" - }, - { - "title": "Lukas Graham Love Someone ( #Karaoke #Version #King with sing along Lyrics )", - "id": "u0EQ0QmoBp4" - }, - { - "title": "Loud Luxury Ft Brando Body ( #Karaoke #Version #King with sing along Lyrics )", - "id": "sI9mZyBQ6yo" - }, - { - "title": "Noah Cyrus, Lil Xan Live Or Die ( #Karaoke #Version #King with sing along Lyrics )", - "id": "LNUt2N_1JUY" - }, - { - "title": "Little Mix & Nicki Minaj Woman Like Me ( #Karaoke #Version #King with sing along Lyrics )", - "id": "VofE7SH_GqU" - }, - { - "title": "Lany If You See Her ( #Karaoke #Version #King with sing along Lyrics )", - "id": "jkzUlO7X_uc" - }, - { - "title": "Jess Glynne All I Am ( #Karaoke #Version #King with sing along Lyrics )", - "id": "z0Fei2C9RC4" - }, - { - "title": "Halsey Without Me ( #Karaoke #Version #King with sing along Lyrics )", - "id": "hkGYtG0TP84" - }, - { - "title": "Silk City, Dua Lipa ft Diplo, Mark Ronson Electricity #Karaoke", - "id": "j8r0_gPwzQQ" - }, - { - "title": "Taylor Swift Cardigan ( #Karaoke #Version #King with sing along Lyrics )", - "id": "HKN3Y1rjbbo" - }, - { - "title": "Little Mix Holiday ( #Karaoke #Version #King with sing along Lyrics )", - "id": "pz3jxYQ8bws" - }, - { - "title": "Tones And I Ur So Fking cOol ( #Karaoke #Version #King with sing along Lyrics )", - "id": "8CYT-grCvL0" - }, - { - "title": "Drake, J Cole First Person Shooter ( #Karaoke #Version #King with sing along Lyrics )", - "id": "tl2QwemdodQ" - }, - { - "title": "Ed Sheeran Curtains ( #Karaoke #Version #King with sing along Lyrics )", - "id": "0Ezu1mi3nTU" - }, - { - "title": "Anne Marie, Shania Twain UNHEALTHY ( #Karaoke #Version #King with sing along Lyrics )", - "id": "PbWYX2CHQpc" - }, - { - "title": "Olivia Dean Dive (Karaoke Version) Lyrics", - "id": "sn3km5PoAZE" - }, - { - "title": "ITZY YEJI Crown On My Head ( #Karaoke #Version #King with sing along Lyrics )", - "id": "V_nBbJo-7-E" - }, - { - "title": "ZAYN Love Like This( #Karaoke #Version #King with sing along Lyrics )", - "id": "N3lL_N5hUEA" - }, - { - "title": "Will.i.am, Britney Spears - MIND YOUR BUSINESS ( #Karaoke #Version #King with sing along Lyrics )", - "id": "bwfuqgcdcPs" - }, - { - "title": "The Stooges I Wanna Be Your Dog ( #Karaoke #Version #King with sing along Lyrics )", - "id": "8fBVYRorYZw" - }, - { - "title": "Oliver Tree One & Only ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Ar4rZJCJD1w" - }, - { - "title": "Joni Mitchell Both Sides, Now ( #Karaoke #Version #King with sing along Lyrics )", - "id": "nXHdXzeZUpk" - }, - { - "title": "Jelly Roll Need A Favor ( #Karaoke #Version #King with sing along Lyrics )", - "id": "8jPi5tUMAKo" - }, - { - "title": "Iniko Jericho ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ezsv4RuvbJ4" - }, - { - "title": "Luke Combs Fast Car ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Z5EehkYN5jE" - }, - { - "title": "Blind Faith Can't Find My Way Home ( #Karaoke #Version #King with sing along Lyrics )", - "id": "jS_77tepkGE" - }, - { - "title": "The Weeknd, Playboi Carti, Madonna Popular ( #Karaoke #Version #King with sing along Lyrics )", - "id": "m5xBpXUMB58" - }, - { - "title": "Stephen Sanchez Be More ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Q8wxThX2_-w" - }, - { - "title": "Mitski Bug Like an Angel ( #Karaoke #Version #King with sing along Lyrics )", - "id": "oCfT5mJiQs4" - }, - { - "title": "Kylie Minogue Tension ( #Karaoke #Version #King with sing along Lyrics )", - "id": "4JDfa1vFHZk" - }, - { - "title": "Ed Sheeran Life Goes On ( #Karaoke #Version #King with sing along Lyrics )", - "id": "2F9ChxLKmsc" - }, - { - "title": "Crash Adams Sugar Mommy ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ol37bsjZqvE" - }, - { - "title": "Conan Gray Winner ( #Karaoke #Version #King with sing along Lyrics )", - "id": "1NnQhDtFel4" - }, - { - "title": "Oliver Tree, Super Computer Essence ( #Karaoke #Version #King with sing along Lyrics )", - "id": "F1ixYa3PgqY" - }, - { - "title": "Oliver Anthony Rich Men North Of Richmond ( #Karaoke #Version #King with sing along Lyrics )", - "id": "e-78LnsD1H8" - }, - { - "title": "blink 182 ONE MORE TIME ( #Karaoke #Version #King with sing along Lyrics )", - "id": "mL08wCRYysE" - }, - { - "title": "Aurora Your Blood ( #Karaoke #Version #King with sing along Lyrics )", - "id": "-Cd7cwfYrjg" - }, - { - "title": "goddard , Cat Burns Wasted Youth ( #Karaoke #Version #King with sing along Lyrics )", - "id": "fXVFYi9MGn0" - }, - { - "title": "Teddy Swims Lose Control ( #Karaoke #Version #King with sing along Lyrics )", - "id": "wA29P0L68hY" - }, - { - "title": "BABYMONSTER DREAM ( #Karaoke #Version #King with sing along Lyrics )", - "id": "aSuxV6S7YRk" - }, - { - "title": "Soloman Burke Cry to Me ( #Karaoke #Version #King with sing along Lyrics )", - "id": "eemEC4bcxl4" - }, - { - "title": "Billy Joel Just The Way You Are ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Fq2Mj4dOknA" - }, - { - "title": "Lewis Capaldi Strangers ( #Karaoke #Version #King with sing along Lyrics )", - "id": "hiGKSiDri4U" - }, - { - "title": "Dove Cameron White Glove ( #Karaoke #Version #King with sing along Lyrics )", - "id": "OMRliocazbk" - }, - { - "title": "BABYMONSTER BATTER UP ( #Karaoke #Version #King with sing along Lyrics )", - "id": "7nIduSIQAaE" - }, - { - "title": "Jerry Lee Lewis Great Balls of Fire ( #Karaoke #Version #King with sing along Lyrics )", - "id": "jufF4GnyIgI" - }, - { - "title": "Fairground Attraction Perfect ( #Karaoke #Version #King with sing along Lyrics )", - "id": "jtcrFnpzLzo" - }, - { - "title": "Wilson Pickett Mustang Sally ( #Karaoke #Version #King with sing along Lyrics )", - "id": "JW_k4n9dGLg" - }, - { - "title": "MK, Sonny Fodera, Clementine Douglas Asking ( #Karaoke #Version #King with sing along Lyrics )", - "id": "E07tA6mFQUA" - }, - { - "title": "The Kid LAROI, Jung Kook, Central Cee Too Much ( #Karaoke #Version #King with sing along Lyrics )", - "id": "6MU8KhKmJ5Y" - }, - { - "title": "Becky G The Fire Inside ( #Karaoke #Version #King with sing along Lyrics )", - "id": "IDXeA35GcOM" - }, - { - "title": "Bruno Mars Marry You ( #Karaoke #Version #King with sing along Lyrics )", - "id": "7Dx4GjqPbHs" - }, - { - "title": "Mitzski My Love Mine All Mine ( #Karaoke #Version #King with sing along Lyrics )", - "id": "8aYueyrgczo" - }, - { - "title": "Celtic Version Auld Lang Syne ( #Karaoke #Version #King with sing along Lyrics )", - "id": "pv5XLjS5IxM" - }, - { - "title": "Elvis Presley Can't Help Falling in Love ( #Karaoke #Version #King with sing along Lyrics )", - "id": "FP0z3xrjZ98" - }, - { - "title": "Abba Waterloo ( #Karaoke #Version #King with sing along Lyrics )", - "id": "29YZTJ_Uuys" - }, - { - "title": "Ariana Grande Love Me Harder ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Ctoo9CjNoVg" - }, - { - "title": "Scouting For Girls I Wish I Was James Bond ( #Karaoke #Version #King with sing along Lyrics )", - "id": "y-g4OJmoXOs" - }, - { - "title": "The Vamps Oh Cecilia Breaking My Heart ( #Karaoke #Version #King with sing along Lyrics )", - "id": "2lSKukdX5Zw" - }, - { - "title": "Guns 'N' Roses Knocking On Heaven's Door ( #Karaoke #Version #King with sing along Lyrics )", - "id": "4-Cf_iXzM2w" - }, - { - "title": "Abba Does Your Mother Know ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Gm6feSHr5os" - }, - { - "title": "The Ink Spots, Ella Fitzgerald Into Each Life Some Rain Must Fall ( #Karaoke # sing along Lyrics )", - "id": "0bK01PWujsk" - }, - { - "title": "Bing Crosby, The Andrews Sisters Don't Fence Me In ( #Karaoke #Version with sing along Lyrics )", - "id": "f7cgZg3DfOE" - }, - { - "title": "David Bowie Boys Keep Swinging ( #Karaoke #Version #King with sing along Lyrics )", - "id": "XMFUM0ymxA4" - }, - { - "title": "Scouting For Girls Elvis Ain't Dead ( #Karaoke #Version #King with sing along Lyrics )", - "id": "vYW_Zs6hJxM" - }, - { - "title": "Alexandra Burke Hallelujah ( #Karaoke #Version #King with sing along Lyrics )", - "id": "AyHDHlYaHcE" - }, - { - "title": "David Bowie & Queen Under Pressure ( #Karaoke #Version #King with sing along Lyrics )", - "id": "pAPFhAlHgpA" - }, - { - "title": "David Bowie Absolute Beginnrers ( #Karaoke #Version #King with sing along Lyrics )", - "id": "XGqEaglp_Ug" - }, - { - "title": "The Beatles Penny Lane ( #Karaoke #Version #King with sing along Lyrics )", - "id": "0zGpgIIZLZc" - }, - { - "title": "Oasis Stand By Me ( #Karaoke #Version #King with sing along Lyrics )", - "id": "JgaieKG2_XQ" - }, - { - "title": "Dolly Parton 9 to 5 ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Ck9zFqCpowM" - }, - { - "title": "Michael Jackson Beat It ( #Karaoke #Version #King with sing along Lyrics )", - "id": "yCBX1Ut8VVc" - }, - { - "title": "Bing Crosby White Christmas ( #Karaoke #Version #King with sing along Lyrics )", - "id": "5imuvuo3zu0" - }, - { - "title": "Matt Costa All I Want for Christmas ( #Karaoke #Version #King with sing along Lyrics )", - "id": "uXOg3H5rN2Y" - }, - { - "title": "Bon Jovi Livin' On A Prayer ( #Karaoke #Version #King with sing along Lyrics )", - "id": "xj6wdZHfz7A" - }, - { - "title": "Carly Rae Jepsen Call Me Maybe ( #Karaoke #Version #King with sing along Lyrics )", - "id": "iWOW-PE8JGU" - }, - { - "title": "Kenny Rogers and Dolly Parton Islands In The Stream ( #Karaoke #Version sing along Lyrics )", - "id": "FpLR2YJGRhg" - }, - { - "title": "Taylor Swift Love Story ( #Karaoke #Version #King with sing along Lyrics )", - "id": "mlx07-uoyjM" - }, - { - "title": "Dolly Parton DIVORCE ( #Karaoke #Version #King with sing along Lyrics )", - "id": "lb-ame5W1MY" - }, - { - "title": "The Killers Mr Brightside ( #Karaoke #Version #King with sing along Lyrics )", - "id": "2PxeqXOlPow" - }, - { - "title": "Brenda Lee Rockin' Around The Christmas Tree Rocked Up ( #Karaoke #Version with sing along Lyrics )", - "id": "R8dlMFkkEo0" - }, - { - "title": "Lord Huron The Night We Met ( #Karaoke #Version #King with sing along Lyrics )", - "id": "eDBZXs7Xv2o" - }, - { - "title": "Kylie Minogue Tears On My Pillow ( #Karaoke #Version #King with sing along Lyrics )", - "id": "I1Bp0jd2QXc" - }, - { - "title": "Keane Is It Any Wonder ( #Karaoke #Version #King with sing along Lyrics )", - "id": "X2ed8mwHxgw" - }, - { - "title": "Justin Bieber Sorry ( #Karaoke #Version #King with sing along Lyrics )", - "id": "YgjrDGZ3v30" - }, - { - "title": "One Direction History ( #Karaoke #Version #King with sing along Lyrics )", - "id": "QjhUNeBcY_0" - }, - { - "title": "Tate McRae Run for the hills ( #Karaoke #Version #King with sing along Lyrics )", - "id": "RO4N8ZTOJJ4" - }, - { - "title": "Taylor Swift You're Losing Me From The Vault ( #Karaoke #Version #King with sing along Lyrics )", - "id": "hGcQn5RKjMQ" - }, - { - "title": "Meghan Trainor Mother ( #Karaoke #Version #King with sing along Lyrics )", - "id": "uZOYAPj70s4" - }, - { - "title": "Miley Cyrus River ( #Karaoke #Version #King with sing along Lyrics )", - "id": "h2VZn5ySLIU" - }, - { - "title": "Alok, The Chainsmokers, Mae Stephens Jungle ( #Karaoke #Version #King with sing along Lyrics )", - "id": "5GUOOXoEcWg" - }, - { - "title": "Chris Brown Iffy ( #Karaoke #Version #King with sing along Lyrics )", - "id": "xhiXNsCXh8w" - }, - { - "title": "Years & Years Night Call ( #Karaoke #Version #King with sing along Lyrics )", - "id": "2Di2Q32tcQ4" - }, - { - "title": "Ariana Grande, Kid Cudi Just Look Up ( #Karaoke #Version #King with sing along Lyrics )", - "id": "i1mBfdBj5Jc" - }, - { - "title": "Sabrina Carpenter Feather ( #Karaoke #Version #King with sing along Lyrics )", - "id": "o1CXooxxD5w" - }, - { - "title": "Lil Nas X THATS WHAT I WANT ( #Karaoke #Version #King with sing along Lyrics )", - "id": "96WU0RCKeJI" - }, - { - "title": "Juice WRLD Justin Bieber Wandered To LA ( #Karaoke #Version #King with sing along Lyrics )", - "id": "-sRDtuyUE7g" - }, - { - "title": "Sean Paul, Inna Up ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Emhj7kgQYkk" - }, - { - "title": "The Weeknd Sacrifice ( #Karaoke #Version #King with sing along Lyrics )", - "id": "kpCIwoKsDes" - }, - { - "title": "Doja Cat Woman ( #Karaoke #Version #King with sing along Lyrics )", - "id": "FXq8n78W9Bc" - }, - { - "title": "The Walters I Love You So ( #Karaoke #Version #King with sing along Lyrics )", - "id": "S8cDSTz7zBE" - }, - { - "title": "Adele Oh My God ( #Karaoke #Version #King with sing along Lyrics )", - "id": "NqyTzyA76IM" - }, - { - "title": "Shawn Mendes It'll be ok ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ZGK5zoEQK04" - }, - { - "title": "Oliver Tree Cowboys Don't Cry ( #Karaoke #Version #King with sing along Lyrics )", - "id": "5pKyfmlUk2I" - }, - { - "title": "Gayle abcdefu ( #Karaoke #Version #King with sing along Lyrics )", - "id": "_XsgoJ1wEVo" - }, - { - "title": "Foals Wake Me Up ( #Karaoke #Version #King with sing along Lyrics )", - "id": "sdy47NBc3EU" - }, - { - "title": "Dinah Shore Buttons and Bows ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ctvoMnq0fvw" - }, - { - "title": "Doris Day Again ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Mmv4v4X8dd0" - }, - { - "title": "Ava Max Torn ( #Karaoke #Version #King with sing along Lyrics )", - "id": "4SRHOo5kE0I" - }, - { - "title": "Billy Gillies, Hannah Boleyn DNA Loving You ( #Karaoke #Version #King with sing along Lyrics )", - "id": "gP_Qu3F_pu0" - }, - { - "title": "Coldplay Christmas Lights ( #Karaoke #Version #King with sing along Lyrics )", - "id": "OoznvcHQ-yU" - }, - { - "title": "The Darkness Christmas Time Don't Let The Bells End ( #Karaoke #Version sing along Lyrics )", - "id": "9cZnilbMJzQ" - }, - { - "title": "Bobby Helms Jingle Bell Rock ( #Karaoke #Version #King with sing along Lyrics )", - "id": "LiuZEy8RJj8" - }, - { - "title": "P!NK All Out Of Fight ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Ryz6H3eDxlM" - }, - { - "title": "David Kushner Dead Man ( #Karaoke #Version #King with sing along Lyrics )", - "id": "jDZ8mtmpz68" - }, - { - "title": "Shania Twain Waking Up Dreaming ( #Karaoke #Version #King with sing along Lyrics )", - "id": "k8_9fLHgjxg" - }, - { - "title": "Taylor Swift - Is It Over Now (Taylor's Version) ( #Karaoke #Version with sing along Lyrics )", - "id": "6eDONgaF3pk" - }, - { - "title": "Ed Sheeran, Elton John Merry Christmas ( #Karaoke #Version #King with sing along Lyrics )", - "id": "2IcAtqFBYQw" - }, - { - "title": "Offset, Travis Scott Say My Grace ( #Karaoke #Version #King with sing along Lyrics )", - "id": "3dmVivkLADA" - }, - { - "title": "The Sweet Peppermint Twist ( #Karaoke #Version #King with sing along Lyrics )", - "id": "zfcq9lk6iNg" - }, - { - "title": "Lewis Capald Someone You Loved ( #Karaoke #Version #King with sing along Lyrics )", - "id": "roa9FuNPrsM" - }, - { - "title": "Old Town Road Remix Lil Nas X ft Billy Ray Cyrus ( #Karaoke #Version #King with sing along Lyrics )", - "id": "y9z3SJ2rDBM" - }, - { - "title": "P!nk Hustle ( #Karaoke #Version #King with sing along Lyrics )", - "id": "JPqZtYkWSog" - }, - { - "title": "Sammy Kaye Daddy ( #Karaoke #Version #King with sing along Lyrics )", - "id": "GyD73EpA94Y" - }, - { - "title": "The King Cole Trio Straighten Up and Fly Right ( #Karaoke #Version #King with sing along Lyrics )", - "id": "GgFMcsevaVY" - }, - { - "title": "The Ink Spots I Don't Want to Set the World on Fire ( #Karaoke #Version with sing along Lyrics )", - "id": "mbp41LtdedE" - }, - { - "title": "Jimmie Davis You Are My Sunshine ( #Karaoke #Version #King with sing along Lyrics )", - "id": "2GyJ0REYXlU" - }, - { - "title": "Hank Williams With His Drifting Cowboys I'm So Lonesome I Could Cry #Karaoke #Version", - "id": "S265bJyOvig" - }, - { - "title": "The Mills Brothers You Always Hurt the One You Love ( #Karaoke #Version with sing along Lyrics )", - "id": "6SeATZwiChY" - }, - { - "title": "Jack Harlow Lovin On Me ( #Karaoke #Version #King with sing along Lyrics )", - "id": "cjkvJHtmS7I" - }, - { - "title": "Bob Dylan Tangled up in Blue ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Tu-JdT9oO7c" - }, - { - "title": "Loreen Is It Love ( #Karaoke #Version #King with sing along Lyrics )", - "id": "fqXzoPC-nrs" - }, - { - "title": "Jersey Boys Sherry ( #Karaoke #Version #King with sing along Lyrics )", - "id": "r63Ks6cmra4" - }, - { - "title": "Jersey Boys Dawn ( #Karaoke #Version #King with sing along Lyrics )", - "id": "OJUBytU1a4g" - }, - { - "title": "Jersey Boys My Eyes Adored You ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ParG7SqEyiM" - }, - { - "title": "Mรฅneskin VALENTINE ( #Karaoke #Version #King with sing along Lyrics )", - "id": "G4zf72YUwrs" - }, - { - "title": "Celine Dion Ashes ( #Karaoke #Version #King with sing along Lyrics )", - "id": "hIjKkC_BZeM" - }, - { - "title": "Eddie Cochran Three Steps To Heaven ( #Karaoke #Version #King with sing along Lyrics )", - "id": "zCj_Vl-haYU" - }, - { - "title": "Buddy Holly - That'll be the day ( #Karaoke #Version #King with sing along Lyrics )", - "id": "w8484Dprugg" - }, - { - "title": "Ricky Valance Tell Laura I Love Her ( #Karaoke #Version #King with sing along Lyrics )", - "id": "tf9QUdckzgI" - }, - { - "title": "Tate McRae exes ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ZIJ7k4BUKbM" - }, - { - "title": "Fats Domino Blueberry Hill ( #Karaoke #Version #King with sing along Lyrics )", - "id": "AqMRhV3gbIs" - }, - { - "title": "Dan & Shay Tequila ( #Karaoke #Version #King with sing along Lyrics )", - "id": "b9u_9y-qXkk" - }, - { - "title": "Ariana Grande 7 Rings ( #Karaoke #Version #King with sing along Lyrics )", - "id": "mPpxDzYmp50" - }, - { - "title": "Sam Smith, Normani Dancing With A Stranger ( #Karaoke #Version #King with sing along Lyrics )", - "id": "fhpNn4nb7uA" - }, - { - "title": "Jordin Sparks Call My Name ( #Karaoke #Version #King with sing along Lyrics )", - "id": "V4WkhLma7nM" - }, - { - "title": "The Mavericks Dance The Night Away ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Fo0WrkZGOAA" - }, - { - "title": "Steps Tragedy ( #Karaoke #Version #King with sing along Lyrics )", - "id": "uEgSdrvDIus" - }, - { - "title": "One Direction One Way or Another ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Qe3BBHtYCpE" - }, - { - "title": "Mark Ronson ft Amy Winehouse Valerie ( #Karaoke #Version #King with sing along Lyrics )", - "id": "e1uMlcZbtUs" - }, - { - "title": "Lady Antebellum Need You Now ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ctQbJEpCGiQ" - }, - { - "title": "Katy Perry ROAR ( #Karaoke #Version #King with sing along Lyrics )", - "id": "141lcftZrug" - }, - { - "title": "Tom Jones Green Green Grass Of Home ( #Karaoke #Version #King with sing along Lyrics )", - "id": "7gq96uNBRyY" - }, - { - "title": "The Beatles Day Tripper ( #Karaoke #Version #King with sing along Lyrics )", - "id": "-0HCnuvrjd0" - }, - { - "title": "Bad Finger Baby Blue ( #Karaoke #Version #King with sing along Lyrics )", - "id": "5EgVImP4qXk" - }, - { - "title": "Crosby, Stills, Nash & Young Our House ( #Karaoke #Version #King with sing along Lyrics )", - "id": "_UMJP56eE3g" - }, - { - "title": "Olivia Rodrigo Can't Catch Me Now ( #Karaoke #Version #King with sing along Lyrics )", - "id": "EAxKPq52oAc" - }, - { - "title": "Taylor Swift Bejeweled ( #Karaoke #Version #King with sing along Lyrics )", - "id": "0TYRc--ORpE" - }, - { - "title": "Charlie Puth Loser ( #Karaoke #Version #King with sing along Lyrics )", - "id": "1oCuzvS4je8" - }, - { - "title": "Ava Max Weapons ( #Karaoke #Version #King with sing along Lyrics )", - "id": "kmkMtpTiles" - }, - { - "title": "Harry Styles Music for a Sushi Restaurant ( #Karaoke #Version #King with sing along Lyrics )", - "id": "P0_8a9E_qqY" - }, - { - "title": "Taylor Swift Anti Hero ( #Karaoke #Version #King with sing along Lyrics )", - "id": "AP_2LIUhfoY" - }, - { - "title": "James Arthur Car's Outside ( #Karaoke #Version #King with sing along Lyrics )", - "id": "OgJJYCpfxLI" - }, - { - "title": "Eliza Rose, Calvin Harris Body Moving ( #Karaoke #Version #King with sing along Lyrics )", - "id": "WPZlWfr376s" - }, - { - "title": "Taylor Swift The Story Of Us ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ukZ5ZLhsIBM" - }, - { - "title": "Sugababes Wear My Kiss ( #Karaoke #Version #King with sing along Lyrics )", - "id": "4kgiSczbtZ0" - }, - { - "title": "Black Eyed Peas Boom Boom Pow ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Cg1SOB1B_NE" - }, - { - "title": "Paul Russell Lil Boo Thang ( #Karaoke #Version #King with sing along Lyrics )", - "id": "7NoshpB670U" - }, - { - "title": "Take That Up All Night ( #Karaoke #Version #King with sing along Lyrics )", - "id": "7sILqN246zc" - }, - { - "title": "Scouting For Girls Love How It Hurts ( #Karaoke #Version #King with sing along Lyrics )", - "id": "_rxyGCXvUkw" - }, - { - "title": "Paloma Faith New York ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Zs4HJXEk_ag" - }, - { - "title": "Mumford & Sons Winter Winds ( #Karaoke #Version #King with sing along Lyrics )", - "id": "HGXOCVrDlD8" - }, - { - "title": "Meghan Trainor Me Too ( #Karaoke #Version #King with sing along Lyrics )", - "id": "ePAW-Km9_gI" - }, - { - "title": "Fine Young Cannibals Suspicious Minds ( #Karaoke #Version #King with sing along Lyrics )", - "id": "MJ2h2MP5Bis" - }, - { - "title": "Elbow One Day Like This ( #Karaoke #Version #King with sing along Lyrics )", - "id": "H42XvZoGV2o" - }, - { - "title": "Ed Sheeran Dive ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Wi6g-875kOI" - }, - { - "title": "Britney Spears Overprotected ( #Karaoke #Version #King with sing along Lyrics )", - "id": "Wqe_Lmuh_64" - }, - { - "title": "David Bowie Dancing In The Street ( #Karaoke #Version #King with sing along Lyrics )", - "id": "snLykSJijdc" - }, - { - "title": "Rod Stewart Sailing ( #Karaoke #Version #King with sing along Lyrics )", - "id": "vXysfF8RHpA" - }, - { - "title": "Alan Walker, Daya Heart over Mind ( #Karaoke #Version with sing along Lyrics )", - "id": "mnEhpAsUvS0" - }, - { - "title": "Foo Fighters Shame Shame ( #Karaoke #Version with sing along Lyrics )", - "id": "t4ATLt1wWoI" - }, - { - "title": "Harry Styles Golden ( #Karaoke #Version with sing along Lyrics )", - "id": "jdUXKvjcpOU" - }, - { - "title": "Tones & I Fly Away ( #Karaoke #Version with sing along Lyrics )", - "id": "xp11H-V-Emg" - }, - { - "title": "Taylor Swift willow ( #Karaoke #Version with sing along Lyrics )", - "id": "fIt9jcJtz5M" - }, - { - "title": "Dua Lipa Houdini ( #Karaoke #Version with sing along Lyrics )", - "id": "tie409AKXUA" - }, - { - "title": "Shocking Blue Venus ( #Karaoke #Version with sing along Lyrics )", - "id": "xpjUU_LDHDA" - }, - { - "title": "Peaches & Herb Reunited ( #Karaoke #Version with sing along Lyrics )", - "id": "SA7ApiZpFsY" - }, - { - "title": "Ace How Long ( #Karaoke #Version with sing along Lyrics )", - "id": "YgbQCmYaQf4" - }, - { - "title": "Stealers Wheel Stuck in the Middle with You ( #Karaoke #Version with sing along Lyrics )", - "id": "oBeAWcUOIxs" - }, - { - "title": "Kylie Minogue Can't Get You Out of My Head ( #Karaoke #Version with sing along Lyrics )", - "id": "t_055q58ge4" - }, - { - "title": "Linda Rondstadt You're No Good ( #Karaoke #Version with sing along Lyrics )", - "id": "vce6z8r3ZCk" - }, - { - "title": "Spice Girls Wannabe ( #Karaoke #Version with sing along Lyrics )", - "id": "dP14QjMC4ZE" - }, - { - "title": "Abba Dancing Queen ( #Karaoke #Version with sing along Lyrics )", - "id": "HEWWazYZqbw" - }, - { - "title": "Robbie Williams Angels ( #Karaoke #Version with sing along Lyrics )", - "id": "bfDXoYnsetg" - }, - { - "title": "Queen Bohemian Rhapsody ( #Karaoke #Version with sing along Lyrics )", - "id": "h0FD-yDFJW4" - }, - { - "title": "T rex Get It On ( #Karaoke #Version with sing along Lyrics )", - "id": "CqVICIyM50g" - }, - { - "title": "The Knack My Sharona ( #Karaoke #Version with sing along Lyrics )", - "id": "F_XntfhFxxY" - }, - { - "title": "Four Seasons Oh What A Night ( #Karaoke #Version with sing along Lyrics )", - "id": "GhG6gKfXNAY" - }, - { - "title": "The Stranglers Golden Brown ( #Karaoke #Version with sing along Lyrics )", - "id": "7sszSw_60dA" - }, - { - "title": "The Pogues The Fairytale Of New York ( #Karaoke #Version with sing along Lyrics )", - "id": "xMOyBcFWBIU" - }, - { - "title": "Inna, The Victor Dance Alone ( #Karaoke #Version with sing along Lyrics )", - "id": "U16P4pYTGDk" - }, - { - "title": "Mariah Carey All I Want For Christmas Is You ( #Karaoke #Version with sing along Lyrics )", - "id": "xi33fFdvdb8" - }, - { - "title": "Wham Last Christmas ( #Karaoke #Version with sing along Lyrics )", - "id": "sc8yezgDv2Q" - }, - { - "title": "David Bowie Sorrow ( #Karaoke #Version with sing along Lyrics )", - "id": "OZbsr-UmXjc" - }, - { - "title": "Boyzone Every Day I Love You ( #Karaoke #Version with sing along Lyrics )", - "id": "K8GPaZdGzAE" - }, - { - "title": "Amy Winehouse Will You Still Love Me Tomorrow ( #Karaoke #Version with sing along Lyrics )", - "id": "zQiJKPgob90" - }, - { - "title": "Nathan Dawe, Bebe Rexha Heart Still Beating ( #Karaoke #Version with sing along Lyrics )", - "id": "GQ3odxTgiZs" - }, - { - "title": "Britney Spears I Love Rock 'n' Roll ( #Karaoke #Version with sing along Lyrics )", - "id": "Tm3bd8e5_tE" - }, - { - "title": "David Bowie Rebel Rebel ( #Karaoke #Version with sing along Lyrics )", - "id": "P8xuzmAKI4s" - }, - { - "title": "Jason Derulo, Meghan Trainor Hands On Me( #Karaoke #Version with sing along Lyrics )", - "id": "_muTtTRCVpA" - }, - { - "title": "Elton John Tiny Dancer ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "BJQRxBw_UgY" - }, - { - "title": "Keane Everybody's Changing ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "3lCyMeeklE4" - }, - { - "title": "Oasis Roll With It ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "RYqQDo8vXMs" - }, - { - "title": "Queen I Want It All ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "7shdDpAW_gs" - }, - { - "title": "Rod Stewart Hot Legs ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "TD0MONeKC-s" - }, - { - "title": "Stereophonics Have A Nice Day ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "2Ls2XiV1v9s" - }, - { - "title": "Robbie Williams Old Before I Die ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "eyetYIMoRto" - }, - { - "title": "Michael Jackson Bad ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "sYtbRNVndPY" - }, - { - "title": "Jason DeRulo Trumpets ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "SWcYH_taWWE" - }, - { - "title": "James Arther Recovery ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "jvEgtXSeuz8" - }, - { - "title": "Bruno Mars Gorilla ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "yJ-BneyfQpM" - }, - { - "title": "Katy Perry Unconditionally ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "lVgvt0fLOq0" - }, - { - "title": "George Ezra Shotgun ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "4KU4meOxKgg" - }, - { - "title": "Lady Gaga & Bradley Cooper Shallow ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "SCmyR-CvPvI" - }, - { - "title": "The Lovin' Spoonful Daydream ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "rqcw9JZO6xQ" - }, - { - "title": "Simon & Garfunkel Homeward Bound ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "-eQoIl-KEmI" - }, - { - "title": "Don't Leave Me Alone David Guetta ft Anne Marie ( #Karaoke #Version with sing along Lyrics )", - "id": "hpQ9KTZ8HkA" - }, - { - "title": "Funky Friday Dave ft Fredo ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "7GRh3RF8T04" - }, - { - "title": "Bebe Rexha, David Guetta One in a Million ( #Karaoke #Version with sing along Lyrics )", - "id": "0WFzZaskhvs" - }, - { - "title": "Patricia Florence & The Machine ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "kzJAUkYaQqM" - }, - { - "title": "Ella Mai Boo'd Up ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "nb1FyL1rUPU" - }, - { - "title": "One Republic Connection ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "OPJQiGJXUsk" - }, - { - "title": "Bring Me The Horizon Mantra ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "g7Spiqb6AfM" - }, - { - "title": "cassรถ, RAYE, D Block Europe Prada ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "_srIVmJv6S8" - }, - { - "title": "Lizzo Boys ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "wNLnwT2EkyY" - }, - { - "title": "AJR Role Models ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "UATSZpsB_j4" - }, - { - "title": "Avril Lavigne Head Above Water ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "TejjPLAW7mg" - }, - { - "title": "Bazzi & Camila Cabello Beautiful ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "_S7nxkEXx7E" - }, - { - "title": "Cecilia Krull My Life Is Going On ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "yqxengqfCJg" - }, - { - "title": "Drake Virginia Beach ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "yFTpamo_emc" - }, - { - "title": "Calvin Harris & Sam Smith Promises ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "qfXbApGD7h4" - }, - { - "title": "Ariana Grande Breathin ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "uHZfnDmfRAY" - }, - { - "title": "Take That These Days ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "ylYwYqToSRk" - }, - { - "title": "Adele Take It All ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "o3D_Sq4W8UA" - }, - { - "title": "Dreaming Marshmello, PiNK, Sting ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "rkIJ0TAwa5o" - }, - { - "title": "Year 3000 Jonas Brothers ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "2auP6pMQd3c" - }, - { - "title": "NSYNC, Justin Timberlake Better Place From TROLLS Band Together #Karaoke", - "id": "PZZRJ4yFZeg" - }, - { - "title": "Paloma Faith Make Your Own Kind Of Music ( #Karaoke #Version with sing along Lyrics )", - "id": "eyesjGJh_4A" - }, - { - "title": "The Beatles Nowhere Man ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "tV2ELYsPEzc" - }, - { - "title": "Elton John, Dua Lipa Cold Heart PNAU Remix ( #Karaoke #Version with sing along Lyrics )", - "id": "8EB7wUVcUg4" - }, - { - "title": "Jessica Mauboy, Jason Derulo Give You Love ( #Karaoke #Version with sing along Lyrics )", - "id": "3Jr0r2jT69M" - }, - { - "title": "Olivia Rodrigo Traitor ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "b2ByshgLziw" - }, - { - "title": "10cc Dreadlock Holiday ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "3IT8trNdM0k" - }, - { - "title": "The Undertones Teenage kicks ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "6G048nymLXY" - }, - { - "title": "The Beatles - Now And Then ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "BJ8UQ-1BFXs" - }, - { - "title": "Vera Lynn We'll Meet Again ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "O1KhBBInOwo" - }, - { - "title": "Taylor Swift I Can See You ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "YBdC1YHbAZY" - }, - { - "title": "Beautiful Morning The Rascals ( #Karaoke #King of Karaoke #Version with sing along Lyrics )", - "id": "4aKju5x2cAo" - }, - { - "title": "Billy J Kramer with the Dakotas Bad To Me ( #Karaoke #Version with sing along Lyrics )", - "id": "HRU9NdjB8DI" - }, - { - "title": "Sia Gimme Love ( #Karaoke #King of Karaoke Version with sing along Lyrics )", - "id": "4j6FXEbg0cA" - }, - { - "title": "Ed Sheeran Afterglow ( #Karaoke #King of Karaoke Version with sing along Lyrics )", - "id": "icAWlcvhbEU" - }, - { - "title": "Ava Max My Head & My Heart ( #Karaoke #King of Karaoke Version with sing along Lyrics )", - "id": "99BGGTHJCvY" - }, - { - "title": "Bring Me The Horizon DArkside ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "JM7JDzBke2s" - }, - { - "title": "Lizzo Cuz I Love You ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "4lze1yZecYs" - }, - { - "title": "Paul Anka Put Your Head on My Shoulder ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "W4QFPpp8pEc" - }, - { - "title": "Patsy Cline Walkin' After Midnight ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "tWR1RkCGsZg" - }, - { - "title": "Madison Beer Sweet Relief ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "cyF608GzTW8" - }, - { - "title": "Chuck Berry School Days ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "WgPQqTCy06w" - }, - { - "title": "Doris Day Que Sera, Sera ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "2szzCGhw2ps" - }, - { - "title": "Kate Bush Running Up That Hill ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "vqt5OuVVzQg" - }, - { - "title": "Elvis Presley Hound Dog ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "iOFofzH3amA" - }, - { - "title": "Isabel LaRosa Older ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "HjP-4SI5EXE" - }, - { - "title": "Elvis Presley Blue Suede Shoes ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "naa1qiX05eQ" - }, - { - "title": "David Guetta, Bebe Rexha I'm Good Blue ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "8gvdfgOxU5I" - }, - { - "title": "George Harrison My Sweet Lord ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "yxa1tOWxWW4" - }, - { - "title": "Cat Burns Go ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "u2LXBsprLdU" - }, - { - "title": "Tyla Water ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "uIe-8YN3ohU" - }, - { - "title": "Lady Gaga Hold My Hand ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "87Z2fhrrVbU" - }, - { - "title": "Bryan Adams So Happy It Hurts ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "gkNRRYR7PMk" - }, - { - "title": "ENCANTO We Don't Talk About Bruno ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "_fqn6aSRz7U" - }, - { - "title": "Commodores Easy ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "vUsrXo9eMcg" - }, - { - "title": "Martin Garrix, Lloyiso Real Love ( #Karaoke #singkaraoke Version with sing along Lyrics ) short", - "id": "eMUw7tD9V50" - }, - { - "title": "Lewis Capaldi Before You Go ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "xUKiKuQWRUc" - }, - { - "title": "Adore You Harry Styles ( #Karaoke #singkaraoke Version with sing along Lyrics ) short", - "id": "3LFNE-TLLB0" - }, - { - "title": "Halsey Die 4 Me ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "uCNLsF7RoIo" - }, - { - "title": "Neil Young Only Love Can Break Your Heart ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "KXrmq2FtM6I" - }, - { - "title": "The Rolling Stones Angry ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "l3FGlj4AeqI" - }, - { - "title": "Sum 41 Landmines ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "PhZKNmsc75c" - }, - { - "title": "Whitney Houston I Wanna Dance With Somebody ( #Karaoke Version with sing along Lyrics )", - "id": "-msr8uxxZEg" - }, - { - "title": "Queen A Kind Of Magic ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "erhSMTI7SUc" - }, - { - "title": "Ed Sheeran Galway Girl ( #Karaoke #singkaraoke Version with sing along Lyrics )", - "id": "nJF4Jhf2rVM" - }, - { - "title": "Chris Stapleton Tennessee Whiskey ( #Karaoke Version with sing along Lyrics )", - "id": "2h1H7156ADY" - }, - { - "title": "Troye Sivan One Of Your Girls ( #Karaoke Version with sing along Lyrics )", - "id": "FWQ2NxZuZRY" - }, - { - "title": "The Tremeloes Silence Is Golden ( #Karaoke Version with sing along Lyrics )", - "id": "4t6rJuTeanA" - }, - { - "title": "The Zombies This Will Be Our Year ( #Karaoke Version with sing along Lyrics )", - "id": "HmKGkY0xOeQ" - }, - { - "title": "Buffalo Springfield For What It's Worth ( #Karaoke Version with sing along Lyrics )", - "id": "o_6t9wNyuF4" - }, - { - "title": "The Lovin' Spoonful Do You Believe in Magic ( #Karaoke Version with sing along Lyrics )", - "id": "omJv2b3tt3w" - }, - { - "title": "Mott the Hoople All the Young Dudes ( #Karaoke Version with sing along Lyrics )", - "id": "VfGT_GqGrws" - }, - { - "title": "Little Mix Black Magic short ( #Karaoke Version with sing along Lyrics ) short", - "id": "ZZQaynmgbn0" - }, - { - "title": "Mark Ronson ft Bruno Mars Uptown Funk ( #Karaoke Version with sing along Lyrics )", - "id": "4NuG3DsWcEs" - }, - { - "title": "The Bellamy Brothers Let Your Love Flow ( #Karaoke Version with sing along Lyrics )", - "id": "NCg_pHSrJNQ" - }, - { - "title": "Anne Marie SAD B!TCH ( #Karaoke Version with sing along Lyrics )", - "id": "YhIlwNrSdg4" - }, - { - "title": "John Paul Young Love Is In the Air ( #Karaoke Version with sing along Lyrics )", - "id": "jBAVOUQlD4k" - }, - { - "title": "Anne Marie TRAINWRECK ( #Karaoke Version with sing along Lyrics )", - "id": "opWk6yQ9lF4" - }, - { - "title": "Kenya Grace Strangers ( #Karaoke Version with sing along Lyrics )", - "id": "bYlxBVDDEXo" - }, - { - "title": "Dionne Warwick What the World Needs Now Is Love ( #Karaoke Version with sing along Lyrics )", - "id": "moD7cfTqCvc" - }, - { - "title": "The Velvet Underground Sunday Morning ( #Karaoke Version with sing along Lyrics )", - "id": "6e1Uo-iEnpw" - }, - { - "title": "Creedence Clearwater Revival Down on the Corner ( #Karaoke Version with sing along Lyrics )", - "id": "Mm9E7rNBcHo" - }, - { - "title": "Usher Boyfriend ( #Karaoke Version with sing along Lyrics )", - "id": "Bl7T-rI_oqE" - }, - { - "title": "Better Off Alone, Pt III Alan Walker, Dash Berlin & Vikksta", - "id": "cnz3ZEv2S8I" - }, - { - "title": "The Moody Blues Go Now ( #Karaoke Version with sing along Lyrics )", - "id": "Zn7vb-3rLqk" - }, - { - "title": "The Band The Weight ( #Karaoke Version with sing along Lyrics )", - "id": "Zsp8V-VXK1w" - }, - { - "title": "The Turtle Happy Together ( #Karaoke Version with sing along Lyrics )", - "id": "wlVKzVXiWWI" - }, - { - "title": "The Beach Boys Wouldn't It Be Nice ( #Karaoke Version with sing along Lyrics )", - "id": "DSx8GVQCzeM" - }, - { - "title": "Scott McKenzie San Francisco ( #Karaoke Version with sing along Lyrics )", - "id": "GLYSaQjYnmo" - }, - { - "title": "The Seekers Never Find Another You ( #Karaoke Version with sing along Lyrics )", - "id": "dHFClpevslw" - }, - { - "title": "Jorja Smith Broken Is The Man ( #Karaoke Version with sing along Lyrics )", - "id": "JaN17f1knu4" - }, - { - "title": "The Byrds Turn Turn Turn ( #Karaoke Version with sing along Lyrics )", - "id": "GtIbm9VM9JQ" - }, - { - "title": "The Searchers Needles & Pins ( #Karaoke Version with sing along Lyrics )", - "id": "yKEU0-jCdJ4" - }, - { - "title": "The Isley Brothers This old heart of mine ( #Karaoke Version with sing along Lyrics )", - "id": "Rj9OYhDbvIA" - }, - { - "title": "The Archies Sugar Sugar ( #Karaoke Version with sing along Lyrics )", - "id": "RqLoMJcUnQw" - }, - { - "title": "Creedence Clearwater Revival Bad Moon Rising ( #Karaoke Version with sing along Lyrics )", - "id": "0-ECGgWAjZg" - }, - { - "title": "Rhianna Lift Me Up ( #Karaoke Version with sing along Lyrics )", - "id": "jV2YmqVpVX0" - }, - { - "title": "BoyWithUke Migraine ( #Karaoke Version with sing along Lyrics )", - "id": "aJq8w6rTqwc" - }, - { - "title": "The Rolling Stones Jumpin' Jack Flash ( #Karaoke Version with sing along Lyrics )", - "id": "Bbgmob_RW-Y" - }, - { - "title": "Stevie Wonder For Once in My Life ( #Karaoke Version with sing along Lyrics )", - "id": "gnxLvVdSk9o" - }, - { - "title": "John Denver Leaving on a Jet Plane ( #Karaoke Version with sing along Lyrics )", - "id": "u31z7cDMVFg" - }, - { - "title": "Harry Nilsson Everybody's Talkin' ( #Karaoke Version with sing along Lyrics )", - "id": "RZnrOi7OIz4" - }, - { - "title": "Niall Horan Heaven ( #Karaoke Version with sing along Lyrics )", - "id": "JxQg0wkG3NI" - }, - { - "title": "Lovejoy Normal People Things ( #Karaoke Version with sing along Lyrics )", - "id": "EwtFzdT9PYs" - }, - { - "title": "Gerry And The Pacemakers You'll Never Walk Alone ( #Karaoke Version with sing along Lyrics )", - "id": "xJjuEUIukiw" - }, - { - "title": "The Foundations Build Me Up Buttercup ( #Karaoke Version with sing along Lyrics )", - "id": "dhq_cTKOC-4" - }, - { - "title": "Roy Orbison Only the Lonely ( #Karaoke Version with sing along Lyrics )", - "id": "BZ3HYLjfRcE" - }, - { - "title": "Sunny Afternoon The Kinks ( #Karaoke Version with sing along Lyrics )", - "id": "ZUN448Endw8" - }, - { - "title": "The Kinks Dedicated Follower of Fashion ( #Karaoke Version with sing along Lyrics )", - "id": "MFymr4JN924" - }, - { - "title": "U2 Atomic City ( #Karaoke Version with sing along Lyrics ) SHORT", - "id": "-c3GJvw9Bwg" - }, - { - "title": "Neil Diamond Sweet Caroline ( #Karaoke Version with sing along Lyrics )", - "id": "E1rcWo5jNFA" - }, - { - "title": "The Monkees I'm a Believer ( #Karaoke Version with sing along Lyrics )", - "id": "ppbQ-M3g7xU" - }, - { - "title": "Roy Orbison Oh Pretty Woman ( #Karaoke Version with sing along Lyrics )", - "id": "Jhdn_M0A7mk" - }, - { - "title": "Sam Cooke Cupid ( #Karaoke Version with sing along Lyrics )", - "id": "HlYs9QpYC7E" - }, - { - "title": "The Monkees Last Train To Clarksville ( #Karaoke Version with sing along Lyrics )", - "id": "TAVZNEQVh44" - }, - { - "title": "Van Morrison Brown Eyed Girl ( #Karaoke Version with sing along Lyrics )", - "id": "gXi8LnkhJP4" - }, - { - "title": "Johnny Mathis Chances Are ( #Karaoke Version with sing along Lyrics )", - "id": "fWAqdXHPSME" - }, - { - "title": "The Coasters Yakety Yak ( #Karaoke Version with sing along Lyrics )", - "id": "e2NNuXc5OOY" - }, - { - "title": "Richie Valens Donna ( #Karaoke Version with sing along Lyrics )", - "id": "XYjiexvuVKw" - }, - { - "title": "Neil Sedaka Oh! Carol ( #Karaoke Version with sing along Lyrics )", - "id": "YERerv3qArI" - }, - { - "title": "Bobby Darin Splish Splash ( #Karaoke Version with sing along Lyrics )", - "id": "eMxTS-td23A" - }, - { - "title": "Olivia Rodrigo Bad idea right ( #Karaoke Version with sing along Lyrics )", - "id": "zHHMQdOYtcI" - }, - { - "title": "Jack Harlow Denver ( #Karaoke Version with sing along Lyrics )", - "id": "LmrX9r7LkCU" - }, - { - "title": "BoyWithUke Toxic ( #Karaoke Version with sing along Lyrics )", - "id": "96YUmI8F_h0" - }, - { - "title": "BoyWithUke Trauma ( #Karaoke Version with sing along Lyrics )", - "id": "doieY5VYxGE" - }, - { - "title": "Selena Gomez Single Soon ( #Karaoke Version with sing along Lyrics )", - "id": "P6m1XZk8yp0" - }, - { - "title": "Sam Smith How Do You Sleep ( #Karaoke Version with sing along Lyrics )", - "id": "8ppeXGHnc1w" - }, - { - "title": "Mae Stephens, Meghan Trainor Mr Right ( #Karaoke Version with sing along Lyrics )", - "id": "aJ9jdDcHgDQ" - }, - { - "title": "Imagine Dragons Children of the Sky a Starfield song ( #Karaoke Version with sing along Lyrics )", - "id": "y6yGnJaurAg" - }, - { - "title": "Tones & I Bad Child ( #Karaoke Version with sing along Lyrics )", - "id": "5GLpK8x2WJo" - }, - { - "title": "Bad Idea Ariana Grande ( #Karaoke Version with sing along Lyrics )", - "id": "YiLWHOzk6d4" - }, - { - "title": "Sam Smith Fire On Fire ( #Karaoke Version with sing along Lyrics )", - "id": "0YnxYgeVifs" - }, - { - "title": "Kylie Minogue Padam Padam ( #Karaoke Version with sing along Lyrics )", - "id": "WXjJv1QyvMU" - }, - { - "title": "George Ezra Green Green Grass ( #Karaoke Version with sing along Lyrics )", - "id": "NAoOLCLIrP8" - }, - { - "title": "Rod Wave Call Your Friends ( #Karaoke Version with sing along Lyrics )", - "id": "iPgGZo7LwYA" - }, - { - "title": "Joel Corry Hey DJ ( #Karaoke Version with sing along Lyrics )", - "id": "PTGOseGHyxI" - }, - { - "title": "RYAN GOSLING I'M JUST KEN ( #Karaoke Version with sing along Lyrics )", - "id": "JzrFilMAx8s" - }, - { - "title": "Doja Cat Demons ( #Karaoke Version with sing along Lyrics )", - "id": "hmSMivbvUxM" - }, - { - "title": "Charli XCX Speed Drive ( #Karaoke Version with sing along Lyrics )", - "id": "r8D_sPIEDNA" - }, - { - "title": "Tones And I Dance Monkey ( #Karaoke Version with sing along Lyrics )", - "id": "F1ZvjiWigqg" - }, - { - "title": "Charlie Puth Lipstick ( #Karaoke Version with sing along Lyrics )", - "id": "W_V7x0joYYM" - }, - { - "title": "Jaded Miley Cyrus ( #Karaoke Version with sing along Lyrics )", - "id": "ztsEILomYbk" - }, - { - "title": "Olivia Rodrigo Drivers License ( #Karaoke Version with sing along Lyrics )", - "id": "uk3S3CxlL2c" - }, - { - "title": "Pink Runaway ( #Karaoke Version with sing along Lyrics )", - "id": "MxOPLQvaYyo" - }, - { - "title": "Harry Styles Satellite ( #Karaoke Version with sing along Lyrics )", - "id": "j3Hv7Vhmm-8" - }, - { - "title": "Zara Larsson, David Guetta On My Love ( #Karaoke Version with sing along Lyrics )", - "id": "o8PMpW1XEfc" - }, - { - "title": "Lewis Capaldi Pointless ( Karaoke Version with sing along Lyrics )", - "id": "db2oCAr4ta8" - }, - { - "title": "Ed Sheeran Eyes Closed ( Karaoke Version with sing along Lyrics )", - "id": "UA9vQgYluOA" - }, - { - "title": "Lewis Capaldi Wish You The Best ( Karaoke Version with sing along Lyrics )", - "id": "LLoYLaFkVj0" - }, - { - "title": "Calvin Harris, Ellie Goulding Miracle ( Karaoke Version with sing along Lyrics )", - "id": "tAoBQr8Ou08" - }, - { - "title": "Olivia Rodrigo Vampire ( Karaoke Version with sing along Lyrics )", - "id": "EiqB82rLP5A" - }, - { - "title": "Flowers Miley Cyrus ( Karaoke Version with sing along Lyrics )", - "id": "a9e3i8o8xG0" - }, - { - "title": "Used To Be Young Miley Cyrus ( Karaoke Version with sing along Lyrics )", - "id": "FjdIDMWK8yU" - }, - { - "title": "Tate McRae Greedy ( Karaoke Version )", - "id": "Xe6Zvlc7JD8" - }, - { - "title": "What Was I Made For Billie Eilish ( Karaoke Version )", - "id": "3X8WOJ_nHwA" - }, - { - "title": "Rush Troye Sivan ( Karaoke Version )", - "id": "2RPeo0bbQ1U" - }, - { - "title": "Dance The Night Dua Lipa ( Karaoke Version )", - "id": "nDNtUcsxvNg" - }, - { - "title": "Cruel Summer Taylor Swift ( Karaoke Version )", - "id": "9r_rBDgiOAs" - }, - { - "title": "Sprinter Central Cee, Dave ( Karaoke Version )", - "id": "slGaon4yJAU" - }, - { - "title": "American Town Ed Sheeran ( Karaoke Version )", - "id": "5gP72vyAVac" - }, - { - "title": "Get Him Back! Olivia Rodrigo ( Karaoke Version )", - "id": "HxwqI_h13p8" - }, - { - "title": "Doja Cat Paint the Town Red ( Karaoke Version )", - "id": "eJ3_OaDar_Q" - }, - { - "title": "Made You Look Meghan Trainor ( Karaoke Version )", - "id": "MbsVJ-WQkaE" - }, - { - "title": "whistle Flo-Rida", - "id": "cQEoH2SvIdU" - } - ], - "@KaraokeOnVEVO": [ - { - "title": "Little Richard - Long Tall Sally (Karaoke)", - "id": "EqnQRiKjf_s" - }, - { - "title": "Iggy Pop, Kate Pierson - Candy (Karaoke)", - "id": "-NLxIT8ZKsg" - }, - { - "title": "Lobo - Me And You And A Dog Named Boo (Karaoke)", - "id": "yrrrAhPxSXM" - }, - { - "title": "Porter Wagoner - Eat, Drink And Be Merry (For Tomorrow You'll Cry) (Karaoke)", - "id": "pSVCCkfCY4A" - }, - { - "title": "Royal Teens - Short Shorts (Karaoke)", - "id": "mA8ajWD5euw" - }, - { - "title": "Shocking Blue - Venus (Karaoke)", - "id": "tg_oPxwUezA" - }, - { - "title": "Pratt & McClain - Happy Days (Karaoke)", - "id": "or_C2CfOXg8" - }, - { - "title": "George Jones - A Picture Of Me (Without You) (Karaoke)", - "id": "kqOG_vp-h0c" - }, - { - "title": "Little Anthony & The Imperials - Shimmy Shimmy Ko-Ko-Bop (Karaoke)", - "id": "Xj8WvlE4MUU" - }, - { - "title": "Hairspray - I Can Hear The Bells (Karaoke)", - "id": "WgZMLj6CdIg" - }, - { - "title": "The Beatles - All My Loving (Karaoke)", - "id": "SxEdFRUUawo" - }, - { - "title": "James Taylor - Sweet Baby James (Karaoke)", - "id": "Rt3j983FMS0" - }, - { - "title": "Phil Collins - Sussudio (Karaoke)", - "id": "FQG0A8I3HCI" - }, - { - "title": "McCoury Brothers - Walk Out In The Rain (Karaoke)", - "id": "v49eTQRPnG0" - }, - { - "title": "Anthony Smith - John J. Blanchard (Karaoke)", - "id": "u1A0G_mZsk8" - }, - { - "title": "Lykke LI - I'm Good, I'm Gone (Karaoke)", - "id": "q3t1PY-Gdc0" - }, - { - "title": "Tanya Tucker - It's Only Over For You (Karaoke)", - "id": "HuprH66nTNc" - }, - { - "title": "Avril Lavigne - Things I'll Never Say (Karaoke)", - "id": "8N3l8QpRZSo" - }, - { - "title": "Aretha Franklin, Whitney Houston - It Isn't, It Wasn't, It Ain't Never Gonna Be (Karaoke)", - "id": "3vvoWo2nEVs" - }, - { - "title": "Rob Thomas - Her Diamonds (Karaoke)", - "id": "QNKk5FgxYIE" - }, - { - "title": "Darius Rucker - History In The Making (Karaoke)", - "id": "TW8s0bFID-U" - }, - { - "title": "Sevyn Streeter - It Won't Stop (Karaoke) ft. Chris Brown", - "id": "Py_kgBr0ph8" - }, - { - "title": "Calvin Harris - Faith (Karaoke)", - "id": "Bv6p8qDrowg" - }, - { - "title": "Glen Campbell - I Have You (Karaoke)", - "id": "1N4pxLSaVxc" - }, - { - "title": "No Doubt - Platinum Blonde Life (Karaoke)", - "id": "vrLlsx6A8X0" - }, - { - "title": "Def Leppard - Bringin' On The Heartbreak (Karaoke)", - "id": "nipEHxAh-8w" - }, - { - "title": "No Doubt - Rock Steady (Karaoke)", - "id": "ZJTOiPwsrDE" - }, - { - "title": "Ultravox - Vienna (Karaoke)", - "id": "K2oUsNxutEc" - }, - { - "title": "Calvin Harris - Outside (Karaoke) ft. Ellie Goulding", - "id": "JKGaqEwWp44" - }, - { - "title": "Celine Dion - My love (Karaoke)", - "id": "-PaupE1ohOo" - }, - { - "title": "Def Leppard - Two Steps Behind (Karaoke)", - "id": "lYl0JF3bBmI" - }, - { - "title": "Carly Simon - All I Want Is You (Karaoke)", - "id": "q9zEEBs6cjk" - }, - { - "title": "Sugarland - All I Want To Do (Karaoke)", - "id": "hPaLoh8ayL4" - }, - { - "title": "John Cougar Mellencamp - Ain't Even Done With The Night (Karaoke)", - "id": "YW7LWZ-1bEc" - }, - { - "title": "P.O.D. - Thinking About Forever (Karaoke)", - "id": "G7iiftlhUDI" - }, - { - "title": "Alive And Kicking - Tighter, Tighter (Karaoke)", - "id": "4Tb4lcDc7mE" - }, - { - "title": "George Strait - Go On (Karaoke)", - "id": "XIF0LBHT-FQ" - }, - { - "title": "Songs from Grease - Those Magic Changes (Karaoke)", - "id": "xvm716-62Pc" - }, - { - "title": "Songs from You're A Good Man, Charlie Brown - Snoopy (Karaoke)", - "id": "W068Ripc0bg" - }, - { - "title": "Songs from You're A Good Man, Charlie Brown - Happiness (Karaoke)", - "id": "VMrUtmeVZrE" - }, - { - "title": "Sammy Davis Jr. - That Old Black Magic (Karaoke)", - "id": "Rhf6Cwh20K4" - }, - { - "title": "Marshmello - Light It Up (Karaoke) ft. Tyga, Chris Brown", - "id": "S8EXK2wDBWY" - }, - { - "title": "Songs from Grease - Mooning (Karaoke)", - "id": "amouLflmnio" - }, - { - "title": "Mavericks - There Goes My Heart (Karaoke)", - "id": "sfXcWveq-0U" - }, - { - "title": "Martina McBride - God's Will (Karaoke)", - "id": "OvZxa6_AYRk" - }, - { - "title": "B. J. Thomas - Everybody Loves A Rain Song (Karaoke)", - "id": "3jl9xygPLog" - }, - { - "title": "Songs from Grease - Freddy, My Love (Karaoke)", - "id": "cKif-C5baJs" - }, - { - "title": "Songs from Grease - We Go Together (Karaoke)", - "id": "HfHa_Kt5IIU" - }, - { - "title": "Songs from Grease - There Are Worse Things I Could Do (Karaoke)", - "id": "8dABLWBzJ2c" - }, - { - "title": "Ndotz - Embrace It (Karaoke)", - "id": "22hbFZ_ra7M" - }, - { - "title": "Buddy Holly - Rave On (Karaoke)", - "id": "snPcIod8eA8" - }, - { - "title": "Barefoot Jerry - Barefootin' (Karaoke)", - "id": "Uz7ClstyPMk" - }, - { - "title": "Howlin' Wolf - I Ain't Superstitious (Karaoke)", - "id": "1FyxC1SEU70" - }, - { - "title": "Louis Armstrong - Hello Dolly (Karaoke)", - "id": "Ekrd1EGm5pI" - }, - { - "title": "Hollywood Argyles - Alley Oop (Karaoke)", - "id": "5XfXfXwy3Uw" - }, - { - "title": "Buddy Holly - Not Fade Away (Karaoke)", - "id": "1gMfpa4UtY4" - }, - { - "title": "Oasis - Whatever (Karaoke)", - "id": "jQnK7L8Hmxs" - }, - { - "title": "Swedish House Mafia - Don't You Worry Child (Karaoke) ft. John Martin", - "id": "HOHzIVPE5xo" - }, - { - "title": "Howlin' Wolf - Smokestack Lightning (Karaoke)", - "id": "56mwvrgqJ7M" - }, - { - "title": "Anne-Marie, Marshmello - Friends (Karaoke)", - "id": "-uCdDPsGYlk" - }, - { - "title": "Carole King - Only Love Is Real (Karaoke)", - "id": "uwLzHqcWcHo" - }, - { - "title": "Wings - With A Little Luck (Karaoke)", - "id": "k_rLWWfYrP4" - }, - { - "title": "Charley Pride - The Happiness Of Having You (Karaoke)", - "id": "T_qqEn_X9oY" - }, - { - "title": "Paul McCartney - Spies Like Us (Karaoke)", - "id": "jO1gpIqAYTI" - }, - { - "title": "Elvis Presley - My Wish Came True (Karaoke)", - "id": "WMKPCLlgpd4" - }, - { - "title": "The Judds - Turn It Loose (Karaoke)", - "id": "LFZMyTgiDoY" - }, - { - "title": "Pearl Jam - The Fixer (Karaoke)", - "id": "X5NDZLl5mLI" - }, - { - "title": "The Chainsmokers - The One (Karaoke)", - "id": "7TCfReIeVcc" - }, - { - "title": "Ciara - Promise (Karaoke)", - "id": "74-WTFIBHSQ" - }, - { - "title": "Ferlin Husky - I Feel Better All Over (More Than Anywhere's Else) (Karaoke)", - "id": "t5W2YOCyifw" - }, - { - "title": "Collective Soul - Run (Karaoke)", - "id": "oKbuGSMF_h0" - }, - { - "title": "Filter - Take A Picture (Karaoke)", - "id": "bbIau9PkQ-s" - }, - { - "title": "Gwen Stefani - What You Waiting For (Karaoke)", - "id": "JmzaOJFFWsE" - }, - { - "title": "James Taylor - Don't Let Me Be Lonely Tonight (Karaoke)", - "id": "xjlqbO44iaA" - }, - { - "title": "Elvis Presley - I Beg Of You (Karaoke)", - "id": "H6hsWQ1W4WA" - }, - { - "title": "Usher - More (Karaoke)", - "id": "uY2MsUnaOBs" - }, - { - "title": "Chuck Wicks - Hold That Thought (Karaoke)", - "id": "lVJ8W43eodE" - }, - { - "title": "Michael Marcagi - Scared To Start (Karaoke)", - "id": "5DKiCQAisCg" - }, - { - "title": "Alice In Chains - Your Decision (Karaoke)", - "id": "1DIQ1Id7m4A" - }, - { - "title": "Bryan Adams - Back To You (Karaoke)", - "id": "mGGZG4bPKhU" - }, - { - "title": "Rihanna - We Ride (Karaoke)", - "id": "u65AEjgiwnE" - }, - { - "title": "Mary J. Blige - I Feel Good (Karaoke)", - "id": "aCXmlH3grrg" - }, - { - "title": "George Jones - When The Grass Grows Over Me (Karaoke)", - "id": "nHMGpeVtwNM" - }, - { - "title": "Blackhawk - Postmarked Birmingham (Karaoke)", - "id": "9HjyvfMMqsc" - }, - { - "title": "Darryl Worley - A Good Day To Run (Karaoke)", - "id": "2Z2DYdrGlDI" - }, - { - "title": "Stray Kids - Lose My Breath (Karaoke) ft. Charlie Puth", - "id": "pO4jEn3TaSk" - }, - { - "title": "Dasha - Austin (Boots Stop Workin') (Karaoke)", - "id": "RWlfeRjtDYY" - }, - { - "title": "Songs from Grease - It's Raining On Prom Night (Karaoke)", - "id": "cpPCZlmZUHg" - }, - { - "title": "Songs from Grease - Born To Hand Jive (Karaoke)", - "id": "4jexbViv5rM" - }, - { - "title": "Avicii - Addicted To You (Karaoke)", - "id": "7zdM2hKk-l8" - }, - { - "title": "Chappell Roan - Pink Pony Club (Karaoke)", - "id": "2-6I0fkz-5M" - }, - { - "title": "Aerosmith - I Don't Want To Miss A Thing (Karaoke)", - "id": "erkFP3pQkBA" - }, - { - "title": "Buddy Holly - It's So Easy (Karaoke)", - "id": "Vv3PIuiMFZ4" - }, - { - "title": "Martina McBride - So Magical (Karaoke)", - "id": "N-llU610oPI" - }, - { - "title": "Wings - Silly Love Songs (Karaoke)", - "id": "7wwc_bSF4AE" - }, - { - "title": "Chris Kenner - I Like It Like That (Karaoke)", - "id": "p7VQlJS6Chk" - }, - { - "title": "Olivia Rodrigo - Canโ€™t Catch Me Now (Karaoke)", - "id": "i84LjKNVwTI" - }, - { - "title": "Chappell Roan - Red Wine Supernova (Karaoke)", - "id": "TA2GG5a7paA" - }, - { - "title": "Kelly Rowland - Freak (Karaoke)", - "id": "LBECUIGrVVA" - }, - { - "title": "Fairground Attraction - Perfect (Karaoke)", - "id": "PmcjAsGUgh4" - }, - { - "title": "Buddy Holly - That'll Be The Day (Karaoke)", - "id": "A6L4OXMqQR8" - }, - { - "title": "Train - Save Me, San Francisco (Karaoke)", - "id": "FILJDnz4baw" - }, - { - "title": "Rhett Akins - Friday Night In Dixie (Karaoke)", - "id": "ANdcBCL4Pqo" - }, - { - "title": "Songs from Grease - Beauty School Dropout (Karaoke)", - "id": "4cUKfoIN8iM" - }, - { - "title": "Paul McCartney and Wings - Listen To What The Man Said (Karaoke)", - "id": "07VBqeccWjk" - }, - { - "title": "Gwen Stefani - The Sweet Escape", - "id": "Nen4EQcRmSM" - }, - { - "title": "Ke$ha - Cannibal", - "id": "A91kGolNoSU" - }, - { - "title": "Olivia Rodrigo - Obsessed", - "id": "LkPWx8LAgAA" - }, - { - "title": "Songs from Grease - Look At Me, I'm Sandra Dee", - "id": "GVZpYgziJ4w" - }, - { - "title": "Garth Brooks - To Make You Feel My Love", - "id": "E0OWjTa5zEk" - }, - { - "title": "Porter Wagoner, Dolly Parton - Tomorrow Is Forever", - "id": "UmMpGaLkwNI" - }, - { - "title": "Good Charlotte - I Just Wanna Live", - "id": "KXi_mdHtCHc" - }, - { - "title": "Gwen Stefani - Cool", - "id": "63iGqrEWiK0" - }, - { - "title": "Seether - Country Song", - "id": "oasCumxfOE8" - }, - { - "title": "Calvin Harris - I Need Your Love ft. Ellie Goulding", - "id": "o91UaSUO_Sg" - }, - { - "title": "kygo - Remind Me To Forget ft. Miguel", - "id": "MEsjMh-DNG0" - }, - { - "title": "Rockin' Randall and Honkabilly Blues Band - Walkin' After Midnight", - "id": "DT_xFaUX_II" - }, - { - "title": "Jimin - Who", - "id": "0Ma093X9erY" - }, - { - "title": "George Strait - Peace Of Mind", - "id": "n9Fln_Mm8bQ" - }, - { - "title": "Elvis Presley - One Night", - "id": "bzUx9cuspeA" - }, - { - "title": "The Judds - Girls Night Out", - "id": "1lmoOFGDpjE" - }, - { - "title": "Clint Black - Nobody's Home", - "id": "a9pxZYoCoDk" - }, - { - "title": "John Cougar Mellencamp - Peaceful World", - "id": "YF0KwKY8Mr8" - }, - { - "title": "Songs from Grease - Summer Nights", - "id": "Wzh-J0fjAHs" - }, - { - "title": "Songs from Grease - Greased Lightning", - "id": "IOiRrB9IYN0" - }, - { - "title": "Blackhawk - One Night In New Orleans (Karaoke)", - "id": "pV58LXsTpX4" - }, - { - "title": "Cowboy Copas - Tis Sweet To Be Remembered (Karaoke)", - "id": "mSoS9J7GHG0" - }, - { - "title": "Barbra Streisand, Neil Diamond - You Don't Bring Me Flowers (Karaoke)", - "id": "_UCdUfzWC-k" - }, - { - "title": "Charley Pride - Burgers And Fries (Karaoke)", - "id": "y1Cp2ZZxrpg" - }, - { - "title": "Barry Manilow - Somewhere In The Night (Karaoke)", - "id": "wIkAhZk68GQ" - }, - { - "title": "Christina Aguilera - Love Will Find A Way (Karaoke)", - "id": "EhqmMl013Pw" - }, - { - "title": "Christopher Cross - Sailing (Karaoke)", - "id": "2RLiCzxMwVI" - }, - { - "title": "Drake White - Livin' The Dream", - "id": "ugz1JGYyOEg" - }, - { - "title": "Porter Wagoner, Dolly Parton - Daddy Was An Old Time Preacher Man", - "id": "t0JG1oYYrYI" - }, - { - "title": "Enrique Iglesias - Sad Eyes", - "id": "GWLB5TvI4HA" - }, - { - "title": "Billie Eilish - Wildflower", - "id": "DDp8VgoEL-0" - }, - { - "title": "Akon - Beautiful ft. Colbie O'Donis, Kardinal Offishall", - "id": "1DOXxKdpMu4" - }, - { - "title": "Dierks Bentley - Home", - "id": "qSVNWRNpUsE" - }, - { - "title": "Clay Walker - What's It To You", - "id": "hJhtbL7sQ6s" - }, - { - "title": "Hardwell - Dare You", - "id": "RH3j-KjFJPM" - }, - { - "title": "The Essex - Easier Said Than Done", - "id": "Ele_cJHtsx8" - }, - { - "title": "Archer Park - Where There's Smoke", - "id": "MFNJHug3WBg" - }, - { - "title": "Ariana Grande, John Legend - Beauty And The Beast", - "id": "mvlVHZ-aEGI" - }, - { - "title": "Cole Swindell - Single Saturday Night", - "id": "HkiI8Zaj-tI" - }, - { - "title": "Eric Clapton - I'm Tore Down", - "id": "0CuAI1LgrwY" - }, - { - "title": "George Strait - She'll Leave You With A Smile", - "id": "T79zCUcXOZA" - }, - { - "title": "Three Days Grace - Lost In You", - "id": "Rc2rYy93pXY" - }, - { - "title": "Carly Simon - That's The Way I've Always Heard It Should Be", - "id": "EgwTn0IYO3Q" - }, - { - "title": "Donna Summer - Last Dance", - "id": "vfB4Hb5402s" - }, - { - "title": "Charley Pride - Mississippi Cotton Pickin' Delta Town", - "id": "gluCTZ9NAL8" - }, - { - "title": "Porter Wagoner, Dolly Parton - Jeannie's Afraid Of The Dark", - "id": "e0omnYVjCYw" - }, - { - "title": "Trisha Yearwood - Better Your Heart Than Mine", - "id": "92y9fVTBbAY" - }, - { - "title": "Elvis Presley - Memories", - "id": "98JkwxdUOiI" - }, - { - "title": "The Alan Parsons Project - Don't Answer Me", - "id": "wN7WkP5dH1o" - }, - { - "title": "Dorothy - Down to the Bottom", - "id": "h0bvAE8JcyI" - }, - { - "title": "Trace Adkins - 'Til The Last Shot's Fired", - "id": "IDWrLdzr23M" - }, - { - "title": "Ricky Nelson - Just A Little Too Much", - "id": "54ABGPXwK7g" - }, - { - "title": "John Anderson - Takin' The Country Back", - "id": "0ta5V2UxGkQ" - }, - { - "title": "Porter Wagoner, Dolly Parton - Please Don't Stop Loving Me", - "id": "2nX1gPUYDn8" - }, - { - "title": "John Cougar Mellencamp - Key West Intermezzo (I Saw You First)", - "id": "uz0Rw9kM5aQ" - }, - { - "title": "Ariana Grande - The Boy Is Mine (clean)", - "id": "ojcc36B7TGM" - }, - { - "title": "Patsy Cline - I Fall To Pieces", - "id": "6aklCWoJFro" - }, - { - "title": "Mark Ambor - Belong Together", - "id": "6VxkR8C9LSs" - }, - { - "title": "Fleetwood Mac - I Can't Hold Out", - "id": "vU8buC_jja4" - }, - { - "title": "Charli XCX - Apple", - "id": "nLdiIzax5yU" - }, - { - "title": "Billie Eilish - Lunch", - "id": "nC2om3ag01E" - }, - { - "title": "Eels - Royal Pain", - "id": "l10K-McFSG8" - }, - { - "title": "Alan Jackson - Long Way To Go", - "id": "l9TJN-Z3Sgc" - }, - { - "title": "Patsy cline - Pick Me Up On Your Way Down", - "id": "PCPmMnNe3c8" - }, - { - "title": "Buck Owens - I've Got A Tiger By The Tail", - "id": "M7CzYceZA_g" - }, - { - "title": "Jelly Roll - Winning Streak", - "id": "_U-zJnM7l4A" - }, - { - "title": "Trisha Yearwood - XXX's And OOO's", - "id": "JKYMHGgeIgM" - }, - { - "title": "Gracie Abrams - Thatโ€™s So True (Karaoke)", - "id": "i95N9ZhTJ2o" - }, - { - "title": "Muddy Waters - Hoochie Coochie Man (Karaoke)", - "id": "AOT525Qsqgo" - }, - { - "title": "Falling In Reverse - All My Life (Clean) (Karaoke) ft. Jelly Roll", - "id": "436vfTBupME" - }, - { - "title": "Merle Haggard - My Own Kind Of Hat (Karaoke)", - "id": "rfhKGlQBHWs" - }, - { - "title": "John Butler Trio - What You Want (Karaoke)", - "id": "YrcpqeJ8juM" - }, - { - "title": "George Jones - Shine On (Shine All Your Sweet Love On Me) (Karaoke)", - "id": "rmx-eJwMhJg" - }, - { - "title": "Moe Bandy - I Cheated Me Right Out Of You (Karaoke)", - "id": "K58YNAS16nY" - }, - { - "title": "Travis Tritt - Foolish Pride (Karaoke)", - "id": "w7acyfmfSEE" - }, - { - "title": "James Brown - Living In America (Karaoke)", - "id": "knVaWD15wbY" - }, - { - "title": "Lonestar - Amazed (Karaoke)", - "id": "IVT29RUWZ6o" - }, - { - "title": "Halsey - Now Or Never (Karaoke)", - "id": "i9Lho0PSRd4" - }, - { - "title": "Howlin' Wolf - Spoonful (Karaoke)", - "id": "YaQ9-xPqRGs" - }, - { - "title": "Lainey Wilson - Good Horses (Karaoke) ft. Miranda Lambert", - "id": "MivzRPbvr7I" - }, - { - "title": "Olivia Rodrigo - Drivers License (clean) (Karaoke)", - "id": "EvC3fbae44g" - }, - { - "title": "Jordin Sparks - I Am Woman (Karaoke)", - "id": "RCnIEkfGZxg" - }, - { - "title": "Darryl Worley - Awful, Beautiful Life (Karaoke)", - "id": "6z4cXyMgKpA" - }, - { - "title": "Enrique Iglesias - Addicted (Karaoke)", - "id": "tYkafaq593M" - }, - { - "title": "Eddy Arnold - Texarkana Baby (Karaoke)", - "id": "OdnvUxY-HGE" - }, - { - "title": "Mary J. Blige - No More Drama (Karaoke)", - "id": "-mfQTX7B79Y" - }, - { - "title": "Billie Eilish - Birds Of A Feather (clean) (Karaoke)", - "id": "zw3qgaZH1IA" - }, - { - "title": "Conway Twitty - It's Only Make Believe (Karaoke)", - "id": "Ss3A1uY-NgY" - }, - { - "title": "Coldplay - Viva La Vida (Karaoke)", - "id": "d0VSUsCIivY" - }, - { - "title": "Myles Smith - Stargazing (Karaoke)", - "id": "6Wckm6Y2Lbo" - }, - { - "title": "Chris Young - Voices (Karaoke)", - "id": "YtR0JqRCzMQ" - }, - { - "title": "From \"Godspell\" - Light Of The World (Karaoke)", - "id": "WDysCx6BSCM" - }, - { - "title": "Chris Cagle - I Breathe In, I Breathe Out (Karaoke)", - "id": "MhD11nf7LKA" - }, - { - "title": "Freddie Scott - Hey, Girl (Karaoke)", - "id": "bJrSSHg-LvQ" - }, - { - "title": "Duran Duran - Reflex (Karaoke)", - "id": "GqewjCdj6aA" - }, - { - "title": "Tom MacDonald - Snowflakes (Karaoke)", - "id": "t3SrB7t_AFw" - }, - { - "title": "A Tribe Called Quest - Can I Kick It (Karaoke)", - "id": "pp2H_VFLdbQ" - }, - { - "title": "Lady Gaga - Disease (Karaoke)", - "id": "g41a4jOGwWk" - }, - { - "title": "Rudimental - These Days (Karaoke) ft. Dan Caplen, Jess Glynne, Macklemore", - "id": "7HkyNzDLKf0" - }, - { - "title": "Florence+The Machine - Cosmic Love (Karaoke)", - "id": "yVd7j_5xxWE" - }, - { - "title": "Montgomery Gentry - Where I Come From (Karaoke)", - "id": "nXbrToX5zKY" - }, - { - "title": "KT Tunstall - Come On, Get In (Karaoke)", - "id": "54_slX--ZVA" - }, - { - "title": "Mitch Miller - Sweet Adeline (Karaoke)", - "id": "xVpHLfisAc0" - }, - { - "title": "Julianne Hough - My Hallelujah Song (Karaoke)", - "id": "SBOzw_w5MUc" - }, - { - "title": "Chris Cagle - Walmart Parking Lot (Karaoke)", - "id": "ZDdl1w9_AK4" - }, - { - "title": "Hardwell ftg. Matthew Koma - Dare You (Karaoke)", - "id": "Dy_TrlkQc9E" - }, - { - "title": "The Who - Magic Bus (Karaoke)", - "id": "aAidp8u675w" - }, - { - "title": "5 Seconds of Summer - Want You Back (Karaoke)", - "id": "axoay1LSdZE" - }, - { - "title": "Travis Tritt - Best Of Intentions (Karaoke)", - "id": "77X4km1zh2Q" - }, - { - "title": "Eric Church - Darkest Hour (Helene Edit) (Karaoke)", - "id": "YE6vUawxq5A" - }, - { - "title": "Boston - Peace Of Mind (Karaoke)", - "id": "JwuIKk03qO0" - }, - { - "title": "Tommy Richman - Million Dollar Baby (Karaoke)", - "id": "6cpv6F3BG2Y" - }, - { - "title": "Cadillac Three, feat. Dierks Bentley, Florida Georgia Line, Mike Eli - The South (Karaoke)", - "id": "-pbsS9z0_ZM" - }, - { - "title": "Rod Stewart - My Heart Can't Tell You No (Karaoke)", - "id": "tlGeYr4HhnM" - }, - { - "title": "Halsey - Alone (Karaoke) ft. Big Sean, Stefflon Don", - "id": "mIgJbADM5L0" - }, - { - "title": "Maroon 5 - Sunday Morning (Karaoke)", - "id": "mZcvInSyRro" - }, - { - "title": "George Jones - She's Mine", - "id": "eAgHQKjIQEg" - }, - { - "title": "Chappell Roan - Hot To Go! (Karaoke)", - "id": "CYD2Hwoe7Is" - }, - { - "title": "Kane Brown, Marshmello - Miles On It (Karaoke)", - "id": "I_iiLr0nhc0" - }, - { - "title": "Jason Mraz - The Remedy (I Won't Worry) (Karaoke)", - "id": "vrR74y8UQUA" - }, - { - "title": "Kenny Loggins - Danger Zone (Karaoke)", - "id": "vQq1JdCibFw" - }, - { - "title": "Beyonce - Jolene (Karaoke)", - "id": "wFWXbfQkNdU" - }, - { - "title": "John Cougar Mellencamp - Crumblin' Down (Karaoke)", - "id": "lXmPIIxRVDE" - }, - { - "title": "The Band - Up On Cripple Creek (Karaoke)", - "id": "jhKTcJVam8w" - }, - { - "title": "Lady Gaga - Poker Face (Karaoke)", - "id": "VsRLpApSJdk" - }, - { - "title": "The Charlie Daniels Band - South's Gonna Do It Again (Karaoke)", - "id": "RJtBHjnVmtM" - }, - { - "title": "Sugar Ray - Is She Really Going Out With Him (Karaoke)", - "id": "j03SN3bAUw8" - }, - { - "title": "Lola Young - Messy (Karaoke)", - "id": "LnI79OE4ve8" - }, - { - "title": "Olivia Rodrigo - Get Him Back (Karaoke)", - "id": "9yrPu1TjkpY" - }, - { - "title": "John Cougar Mellencamp - Pink Houses (Karaoke)", - "id": "1eEg24C3D3g" - }, - { - "title": "The Judds - Girls Night Out (Karaoke)", - "id": "wSvRozf-fLE" - }, - { - "title": "Peter, Paul & Mary - Blowin' In The Wind (Karaoke)", - "id": "dHIdKxa__EU" - }, - { - "title": "Peter, Paul & Mary - Don't Think Twice, It's All Right (Karaoke)", - "id": "w4EhPbzJKm4" - }, - { - "title": "Simple Minds - See The Lights (Karaoke)", - "id": "uRcvrmgpk7A" - }, - { - "title": "Zedd - The Middle (Karaoke) ft. Grey, Maren Morris", - "id": "gYVO85JsNPo" - }, - { - "title": "Eddy Arnold - What Is Life Without Love (Karaoke)", - "id": "rCEh-0YHMHY" - }, - { - "title": "Pearl Jam - Just Breathe (Karaoke)", - "id": "LT7Hme5kfso" - }, - { - "title": "Dr. Hook - When You're In Love With A Beautiful Woman (Karaoke)", - "id": "wzE5pqbLdGs" - }, - { - "title": "James Taylor, Alison Krauss - How's The World Treating You (Karaoke)", - "id": "K7E5v6me8K4" - }, - { - "title": "Lionel Richie - Still (Karaoke)", - "id": "-rtj5YVHR-k" - }, - { - "title": "Bryan Adams - Heat Of The Night (Karaoke)", - "id": "QbJEh2GIeRc" - }, - { - "title": "Boston - Long Time (Karaoke)", - "id": "pYyZghzFfJU" - }, - { - "title": "Brooks & Dunn - That Ain't No Way To Go (Karaoke)", - "id": "oYmS1pUjYko" - }, - { - "title": "Elle King - Shame (Karaoke)", - "id": "FguO7FnU3ew" - }, - { - "title": "Diana Krall - Narrow Daylight (Karaoke)", - "id": "6TvYQQOecVM" - }, - { - "title": "Elton John - Island Girl (Karaoke)", - "id": "SZhZHa5NBy4" - }, - { - "title": "Climax - Precious And Few (Karaoke)", - "id": "Hn9bnpizH7s" - }, - { - "title": "Duran Duran - A View To Kill (Karaoke)", - "id": "HAECuD3nn0A" - }, - { - "title": "Bobby Vinton - Blue Velvet (Karaoke)", - "id": "tsvjILbp-4M" - }, - { - "title": "Chiffons - He's So Fine (Karaoke)", - "id": "Epz9Xfv62x0" - }, - { - "title": "DeFranco Family feat. Tony DeFranco - Heartbeat It's A Lovebeat (Karaoke)", - "id": "ZwMsOabeASA" - }, - { - "title": "Drake - God's Plan (clean) (Karaoke)", - "id": "hf3rtNRArGA" - }, - { - "title": "Calvin Harris feat. Dua Lipa - One Kiss (Karaoke)", - "id": "cpZZjCd2l2o" - }, - { - "title": "B.B King - Thrill Is Gone (The Thrill Is Gone) (Karaoke)", - "id": "-jAMygTYnKg" - }, - { - "title": "Carole King - Smackwater Jack (Karaoke)", - "id": "KD8-AoYLsWA" - }, - { - "title": "Chicago - Hard Habit To Break (Karaoke)", - "id": "MC1YiOyDGGU" - }, - { - "title": "Cranberries - Zombie (Karaoke)", - "id": "QdaIMN7K2xY" - }, - { - "title": "Ann Wilson, Mike Reno - Almost Paradise (Karaoke)", - "id": "Adc3D1805cs" - }, - { - "title": "Damn Yankees - High Enough (Karaoke)", - "id": "WJ5EmIm7oWk" - }, - { - "title": "Crystal Gayle - Talking In Your Sleep (Karaoke)", - "id": "NsUHVF1An2k" - }, - { - "title": "Quartjar - Sasquatch Surfs With Santa (Karaoke)", - "id": "LPYGcahYGas" - }, - { - "title": "UB40 - Can't Help Falling In Love (Karaoke)", - "id": "sHfOAUmI9Tc" - }, - { - "title": "White Stripes - Seven Nation Army (Karaoke)", - "id": "L2OtImijjGc" - }, - { - "title": "The Police - Roxanne (Karaoke)", - "id": "0Lx4-r7GG4I" - }, - { - "title": "Zac Brown Band - Free (Karaoke)", - "id": "rvvYJdc2wQs" - }, - { - "title": "Peter Gabriel - Sledgehammer (Karaoke)", - "id": "kpgxUhrb-K4" - }, - { - "title": "Kenny Loggins - This Is It (Karaoke)", - "id": "wcIS8QBHQ6k" - }, - { - "title": "Kenny Loggins - I'm Alright (Karaoke)", - "id": "SiI3625ip_Y" - }, - { - "title": "Jordin Sparks - Candy Cane Lane (Karaoke)", - "id": "hmpe0V0kHVU" - }, - { - "title": "John Cougar Mellencamp - Hurts So Good (Karaoke)", - "id": "39KP2hRxpmY" - }, - { - "title": "John Cougar Mellencamp - Jack & Diane (Karaoke)", - "id": "hC7kf8kVfzg" - }, - { - "title": "Reba McEntire - Til The Season Comes 'Round Again (Karaoke)", - "id": "WmExjT_FCEE" - }, - { - "title": "Louis Armstrong and the Commanders - Cool Yule (Karaoke)", - "id": "LZtEFRxrz3A" - }, - { - "title": "Helen Cornelius - O' Holy Night (Karaoke)", - "id": "oz3p8q_yZOE" - }, - { - "title": "MARTY STUART - EVEN SANTA CLAUS GETS THE BLUES (Karaoke)", - "id": "TxmAGamMKNY" - }, - { - "title": "Country Christmas - White Christmas (Karaoke)", - "id": "8a_wZC_ewSI" - }, - { - "title": "Reba McEntire - The Christmas Guest (Karaoke)", - "id": "GGpbMmzP8cU" - }, - { - "title": "Kenny Rogers, Dolly Parton - A Christmas To Remember (Karaoke)", - "id": "kSxliISMbpo" - }, - { - "title": "Louise Mandrell - All I Want For Christmas (Dear Is You) (Karaoke)", - "id": "7jgfT8Jd-D8" - }, - { - "title": "Humoro Christmas - Jingle Bells, Batman Smells (Karaoke)", - "id": "hMiYayKhfQM" - }, - { - "title": "Kid's Christmas - Silver Bells (Karaoke)", - "id": "Oxbv75Xbhog" - }, - { - "title": "Bruce Springsteen & The E Street Band - Jersey Girl (Karaoke)", - "id": "mzKpaDIbCcU" - }, - { - "title": "Hairspray - You Can't Stop The Beat (Karaoke)", - "id": "ZlYGJTcp430" - }, - { - "title": "Gloria Estefan - Rhythm Is Gonna Get You (Karaoke)", - "id": "4WS4KJd_C-g" - }, - { - "title": "Gloria Estefan - Get On Your Feet (Karaoke)", - "id": "Jyf4UsYjWgM" - }, - { - "title": "George Thorogood & The Destroyers - I Drink Alone (Karaoke)", - "id": "TqIuk4LlZcE" - }, - { - "title": "Gene Kelly - Good Morning (Karaoke)", - "id": "51ouRdsE19E" - }, - { - "title": "Frank Sinatra - That Old Black Magic (Karaoke)", - "id": "LIqgcSqHiOI" - }, - { - "title": "Duran Duran - Rio (Karaoke)", - "id": "ADh9fwce1bw" - }, - { - "title": "Donna Summer - MacArthur Park (Karaoke)", - "id": "2VSXfvfbh3Y" - }, - { - "title": "Carly Simon - Haven't Got Time For The Pain (Karaoke)", - "id": "mxb2V5EtAmQ" - }, - { - "title": "Brad Paisley - I'm Still A Guy (Karaoke)", - "id": "N2a_GH4dXXw" - }, - { - "title": "Boston - Amanda (Karaoke)", - "id": "lnthmOiHZkA" - }, - { - "title": "Billy Joel - A Matter Of Trust (Karaoke)", - "id": "U0gHI7v4-Ag" - }, - { - "title": "Barry Manilow - Daybreak (Karaoke)", - "id": "7rYvGPAV3ys" - }, - { - "title": "Avenged Sevenfold - Dear God (Karaoke)", - "id": "QSDpMokemkM" - }, - { - "title": "Atlanta Rhythm Section - So Into You (Karaoke)", - "id": "_dK9HfTXrtQ" - }, - { - "title": "Anne Murray - Do You Hear What I Hear (Karaoke)", - "id": "iW_SDd9AYB8" - }, - { - "title": "Amy Winehouse - Addicted (clean) (Karaoke)", - "id": "lobNtrI8a0o" - }, - { - "title": "Alicia Keys - Like You'll Never See Me Again (Karaoke)", - "id": "DNdoY7qk22U" - }, - { - "title": "Alabama 3 - Woke Up This Morning (Karaoke)", - "id": "y7JJkECbo0k" - }, - { - "title": "Alabama - Backwoods Boogie (Karaoke)", - "id": "-O8NE6UU_vI" - }, - { - "title": "AJR - The Good Part (Karaoke)", - "id": "LSjAJEh-Jco" - }, - { - "title": "AJR - Way Less Sad (Karaoke)", - "id": "kk-316V-qjo" - }, - { - "title": "Air Supply - Young Love (Karaoke)", - "id": "UMtzbDZVPK8" - }, - { - "title": "Frank Sinatra - Have Yourself A Merry Little Christmas (Karaoke)", - "id": "VemTw8KFDM8" - }, - { - "title": "Suzy Bogguss - Two-Step Around The Christmas Tree (Karaoke)", - "id": "tvbO7QujNH0" - }, - { - "title": "Waitresses - Christmas Wrapping (Karaoke)", - "id": "q29H6bFurFU" - }, - { - "title": "Dana - Itโ€™s Gonna Be A Cold Cold Christmas (Karaoke)", - "id": "Ixm9d06G6qs" - }, - { - "title": "Run DMC - Christmas In Hollis (Karaoke)", - "id": "Z6EXHvLQ48U" - }, - { - "title": "Bruce Springsteen - Hungry Heart (Karaoke)", - "id": "uSIiMc1ZQeY" - }, - { - "title": "Falling In Reverse - Voices In My Head (clean) (Karaoke)", - "id": "9haGTLe7uSo" - }, - { - "title": "Jonas Brothers - Cool (Karaoke)", - "id": "DNtW3QCDb1M" - }, - { - "title": "Psy - Gangnam Style (Karaoke)", - "id": "8xj9NamxX3w" - }, - { - "title": "Rod Stewart - You're In My Heart (Karaoke)", - "id": "3DpJTAytuYo" - }, - { - "title": "Electric Light Orchestra - Mr. Blue Sky (Karaoke)", - "id": "1DQ8IT2CQrs" - }, - { - "title": "Oasis - Champagne Supernova (Karaoke)", - "id": "r41DZJkJ3gY" - }, - { - "title": "George Jones - Walk Through This World With Me (Karaoke)", - "id": "SaoxZW_1FRo" - }, - { - "title": "The Beatles - Maxwell's Silver Hammer (Karaoke)", - "id": "OvudY0pO3K8" - }, - { - "title": "Ricky Skaggs - Lovin' Only Me (Karaoke)", - "id": "g1vF6AuJZMA" - }, - { - "title": "George Jones - The Door (Karaoke)", - "id": "zcElaIUBg5s" - }, - { - "title": "Prince And The Revolution - Raspberry Beret (Karaoke)", - "id": "Xc4umUFW_KY" - }, - { - "title": "The Cure - Love Song (Karaoke)", - "id": "fOgV5llpP70" - }, - { - "title": "Carole King - So Far Away (Karaoke)", - "id": "8i--pv0D_1Q" - }, - { - "title": "Don McLean - Vincent (Starry Starry Night) (Karaoke)", - "id": "kxW9JAZWE8E" - }, - { - "title": "The Four Tops - Bernadette (Karaoke)", - "id": "KDLQsXEiYSw" - }, - { - "title": "Richard Marx - Endless Summer Nights (Karaoke)", - "id": "SCOVSqI0mVY" - }, - { - "title": "Bread - Everything I Own (Karaoke)", - "id": "3KCam__lJgw" - }, - { - "title": "Billy Joel - For The Longest Time (Karaoke)", - "id": "HycStc56PC8" - }, - { - "title": "Dolly Parton - Jolene (Karaoke)", - "id": "kWYXiG46mxY" - }, - { - "title": "The Drifters - Under the Boardwalk (Karaoke)", - "id": "Lu0y9dftBn8" - }, - { - "title": "Tom Petty And The Heartbreakers - American Girl (Karaoke)", - "id": "VwL-gM7LCC4" - }, - { - "title": "Tom Petty And The Heartbreakers - Don't Do Me Like That (Karaoke)", - "id": "IASCOTDCunM" - }, - { - "title": "Dan Hartman - I Can Dream About You (Karaoke)", - "id": "9tWxYp53Ydo" - }, - { - "title": "Billy Joel - It's Still Rock And Roll To Me (Karaoke)", - "id": "xo3PZiaqyzE" - }, - { - "title": "Merle Haggard - Today I Started Loving You Again (Karaoke)", - "id": "3s6BX1oPbfk" - }, - { - "title": "Bonnie Raitt - I Can't Make You Love Me (Karaoke)", - "id": "Ie2XX37ooiw" - }, - { - "title": "Alabama - My Home's In Alabama (Karaoke)", - "id": "7JXl-_kEEns" - }, - { - "title": "George Jones & Tammy Wynette - Golden Ring (Karaoke)", - "id": "eKdxN-6YdWA" - }, - { - "title": "Brooks & Dunn - My Next Broken Heart (Karaoke)", - "id": "l4reHT815m8" - }, - { - "title": "Amy Winehouse - Rehab (Karaoke)", - "id": "7wNtcOzIsJM" - }, - { - "title": "Alanis Morissette - You Oughta Know (Karaoke)", - "id": "wnA2lfboSCk" - }, - { - "title": "The Drifters - Some Kind Of Wonderful (Karaoke)", - "id": "GYZxGjtTH7E" - }, - { - "title": "The Silhouettes - Get A Job (Karaoke)", - "id": "JGn4yCK_dJk" - }, - { - "title": "The Oak Ridge Boys - Elvira (Karaoke)", - "id": "qLRCu4F_1Tg" - }, - { - "title": "Hank Williams - I'm So Lonesome I Could Cry (Karaoke)", - "id": "aVjmAhI2fBg" - }, - { - "title": "Brownsville Station - Smokin' In The Boys Room (Karaoke)", - "id": "hOk0suFfK2s" - }, - { - "title": "Lou Reed - Walk On The Wild Side (Karaoke)", - "id": "8uGZSrjBrlo" - }, - { - "title": "Cyndi Lauper - Girls Just Wanna Have Fun (Karaoke)", - "id": "UWfkdBwMGms" - }, - { - "title": "Paul Simon - Kodachrome (Karaoke)", - "id": "k6A5aXQ2jHw" - }, - { - "title": "The Temptations - Get Ready (Karaoke)", - "id": "DDuxHLkShz4" - }, - { - "title": "Jesus Jones - Right Here, Right Now (Karaoke)", - "id": "gsRTFDmJbuM" - }, - { - "title": "The Beatles - Getting Better All The Time (Karaoke)", - "id": "y6rMN67M5Wo" - }, - { - "title": "Willie Nelson - Always On My Mind (Karaoke)", - "id": "UbTy8hxPRsc" - }, - { - "title": "Chicago - Just You And Me (Karaoke)", - "id": "mzI5PQl6ows" - }, - { - "title": "Jackie DeShannon - What The World Needs Now (Karaoke)", - "id": "a9quooZ98T4" - }, - { - "title": "Linda Ronstadt - It's So Easy (Karaoke)", - "id": "WDOZF6lhNBw" - }, - { - "title": "The Young Rascals - I've Been Lonely Too Long (Karaoke)", - "id": "iQAn5ZLH1e4" - }, - { - "title": "The Association - Windy (Karaoke)", - "id": "eQpDIu21hMU" - }, - { - "title": "The Young Rascals - Groovin' (Karaoke)", - "id": "la2S7Aob44o" - }, - { - "title": "The Youngbloods - Get Together (Karaoke)", - "id": "sIEYNjm_2SU" - }, - { - "title": "Jim Croce - You Don't Mess Around With Jim (Karaoke)", - "id": "eWncf5M1eBM" - }, - { - "title": "Jan & Dean - Surf City (Karaoke)", - "id": "ukGqCGP6ehw" - }, - { - "title": "The Beach Boys - Sloop John B (Karaoke)", - "id": "BC9E7iJ0SJ8" - }, - { - "title": "The Temptations - Just My Imagination (Karaoke)", - "id": "9ncGKzdvC20" - }, - { - "title": "The Turtles - Happy Together (Karaoke)", - "id": "3Aq95YQqJPQ" - }, - { - "title": "Roy Drusky - Second Hand Rose (Karaoke)", - "id": "akCTBjmdyaI" - }, - { - "title": "Richard Marx - Straight From My Heart (Karaoke)", - "id": "lR6l82fs9gc" - }, - { - "title": "The Rascals - People Got To Be Free (Karaoke)", - "id": "nRNly0XbFfs" - }, - { - "title": "Indian Reservation (The Lament Of The Cherokee Reservation Indian) (Karaoke)", - "id": "DxKMVFptmbA" - }, - { - "title": "Pat Benatar - We Belong (Karaoke)", - "id": "HQXtRG2zjRI" - }, - { - "title": "Norah Jones and Willie Nelson - Wurlitzer Prize (Karaoke)", - "id": "shUGmmQjV-s" - }, - { - "title": "Fine Young Cannibals - Good Thing (Karaoke)", - "id": "hWoaDVSuryM" - }, - { - "title": "Sade - Sweetest Taboo (Karaoke)", - "id": "4Zq1A0MgPck" - }, - { - "title": "Elvis Presley - How Great Thou Art (Karaoke)", - "id": "M12Lco98bdY" - }, - { - "title": "Brad Paisley, Jimmie Allen - Freedom Was A Highway (Karaoke)", - "id": "wLSfYUGGs5g" - }, - { - "title": "Fleetwood Mac - Rhiannon (Karaoke)", - "id": "iRSIxyYcSgM" - }, - { - "title": "Rod Stewart - Reason To Believe (Karaoke)", - "id": "dfopvRFxeh8" - }, - { - "title": "REO Speedwagon - Can't Fight This Feeling (Karaoke)", - "id": "ydIhvqjg1Qc" - }, - { - "title": "Neil Diamond - Holly Holy (Karaoke)", - "id": "GxZ6M-3sAH8" - }, - { - "title": "Marty Robbins - El Paso (Karaoke)", - "id": "XGGW9lwG01g" - }, - { - "title": "Richard Marx - Hold On To The Nights (Karaoke)", - "id": "RKT09_CIMog" - }, - { - "title": "Elvis Presley - Polk Salad Annie (Karaoke)", - "id": "e1MB5n2Qw40" - }, - { - "title": "Elvis Presley - Heartbreak Hotel (Karaoke)", - "id": "u91LbrKGqb8" - }, - { - "title": "Natalie Cole - Pink Cadillac (Karaoke)", - "id": "zcTFcZdASbw" - }, - { - "title": "The Rembrandts - I'll Be There For You (Theme From \"Friends\") (Karaoke)", - "id": "ax4Wm0BRdv0" - }, - { - "title": "Phil Collins - I Wish It Would Rain Down (Karaoke)", - "id": "XQBaXIIQcNU" - }, - { - "title": "Ariana Grande - Goodnight N Go (Karaoke)", - "id": "vIMeOQpm0mI" - }, - { - "title": "Roy Acuff - The Great Speckled Bird (Karaoke)", - "id": "trkRFg9hoBk" - }, - { - "title": "The Outlaws - Green Grass & High Tides (Karaoke)", - "id": "XoNnClZgXDE" - }, - { - "title": "Elvis Presley - C. C. Rider (Karaoke)", - "id": "PDEKTe_0rs4" - }, - { - "title": "Gene Vincent - Be-Bop-A-Lula (Karaoke)", - "id": "ngC9QultPRU" - }, - { - "title": "Elvis Presley - It's Now Or Never (Karaoke)", - "id": "CX7k7C4P5T0" - }, - { - "title": "A Flock Of Seagulls - Wishing (If I Had A Photograph Of You) (Karaoke)", - "id": "8veuQzD-cHc" - }, - { - "title": "The Buzzcocks - Ever Fallen In Love With Someone You Shouldn't've (Karaoke)", - "id": "EN6_PqhQyUs" - }, - { - "title": "Blood Sweat & Tears - Spinning Wheel (Karaoke)", - "id": "OpXGlkb4HCU" - }, - { - "title": "Brad Paisley ftg. Dolly Parton - When I Get Where I'm Going (Karaoke)", - "id": "LGtTWsbrzcY" - }, - { - "title": "Eric Church - Desperate Man (Karaoke)", - "id": "8FiJjOP85OQ" - }, - { - "title": "Fleetwood Mac - You Make Loving Fun (Karaoke)", - "id": "wtQXPtkgvoE" - }, - { - "title": "Pat Benatar - Heartbreaker (Karaoke)", - "id": "jm3JF8Ugx6s" - }, - { - "title": "Pet Shop Boys - West End Girls (Karaoke)", - "id": "xiLrCIR0sO0" - }, - { - "title": "R.E.M. - Man On The Moon (Karaoke)", - "id": "UFD_5vvJpZQ" - }, - { - "title": "Orleans - Dance With Me (Karaoke)", - "id": "wvtiE_6Odgg" - }, - { - "title": "Rickie Lee Jones - Chuck E's In Love (Karaoke)", - "id": "mG1yEsOn97Y" - }, - { - "title": "Phil Collins - You'll Be In My Heart (Karaoke)", - "id": "rCLmKYo3gm8" - }, - { - "title": "Pearl Jam - Last Kiss (Karaoke)", - "id": "6HRp1Vp4Co8" - }, - { - "title": "Pat Benatar - Love Is A Battlefield (Karaoke)", - "id": "pel0TUplNsA" - }, - { - "title": "Roy Acuff - Wabash Cannonball (Karaoke)", - "id": "Ya6BFQvV3QU" - }, - { - "title": "Roxy Music - Love Is The Drug (Karaoke)", - "id": "Ewqc8dUQ4oQ" - }, - { - "title": "Peaches & Herb - Shake Your Groove Thing (Karaoke)", - "id": "Bv1gbt44hp0" - }, - { - "title": "Paul Simon - Slip Slidin' Away (Karaoke)", - "id": "fZOblm9iG7E" - }, - { - "title": "Rent - I'll Cover You (Karaoke)", - "id": "oS3tMgKxhVg" - }, - { - "title": "Elton John - I'm Still Standing (Karaoke)", - "id": "nrHkGACtQkY" - }, - { - "title": "Elvis Presley - Don't be Cruel (Karaoke)", - "id": "uw7b_w9Hork" - }, - { - "title": "Otis Day & The Knights - Shout (Karaoke)", - "id": "VYer0qCfMp4" - }, - { - "title": "Paul McCartney - Maybe I'm Amazed (Karaoke)", - "id": "dC7PhDB3rJY" - }, - { - "title": "R.E.M. - Everybody Hurts (Karaoke)", - "id": "AlI1vCxp-yM" - }, - { - "title": "The Romantics - What I Like About You (Karaoke)", - "id": "TtHSGh2qIwU" - }, - { - "title": "Rick Astley - Together Forever (Karaoke)", - "id": "SMj_IUEcPmc" - }, - { - "title": "REO Speedwagon - Keep On Loving You (Karaoke)", - "id": "CO3IR_WLb9Y" - }, - { - "title": "Pearl Jam - Jeremy (Karaoke)", - "id": "Eri20_jNFHQ" - }, - { - "title": "Panic! At The Disco - LA Devotee (Karaoke)", - "id": "pgL4-7Ks2XM" - }, - { - "title": "Pink - What About Us (Karaoke)", - "id": "7XHJARykNhY" - }, - { - "title": "Orleans - Still The One (Karaoke)", - "id": "QDCmzBb-WFA" - }, - { - "title": "Oasis - Wonderwall (Karaoke)", - "id": "n5FHM_1qOh4" - }, - { - "title": "Roy Orbison - Oh, Pretty Woman (Karaoke)", - "id": "mR9yspUCdX4" - }, - { - "title": "Rod Stewart - You're In My Heart (Karaoke)", - "id": "gwW5mya9G9g" - }, - { - "title": "Richard Marx - Right Here Waiting (Karaoke)", - "id": "XZ8CWZ4-SU4" - }, - { - "title": "Ringo Starr - Photograph (Karaoke)", - "id": "pe_hx6p4QPE" - }, - { - "title": "Redbone - Come And Get Your Love (Karaoke)", - "id": "xNnyhIe7Rp0" - }, - { - "title": "Neil Diamond - Cracklin' Rosie (Karaoke)", - "id": "1cIho4FQceY" - }, - { - "title": "Beauty And The Beast Movie - Be Our Guest (Karaoke)", - "id": "Sz5ZswMU8sA" - }, - { - "title": "Oklahoma The Musical - Oh, What a Beautiful Mornin' (Karaoke)", - "id": "Ecsi-sh8uTc" - }, - { - "title": "NSYNC - Bye Bye Bye (Karaoke)", - "id": "bv8t9XhXht4" - }, - { - "title": "The Outlaws - There Goes Another Love Song (Karaoke)", - "id": "JFr_NuvAsv4" - }, - { - "title": "The Partridge Family - I Think I Love You (Karaoke)", - "id": "CZfDgDvO1cQ" - }, - { - "title": "Paula Abdul - Straight Up (Karaoke)", - "id": "Umh9HkAAP1Y" - }, - { - "title": "R. E. M - Radio Free Europe (Karaoke)", - "id": "mp4-6NYCBOY" - }, - { - "title": "Orchestral Manoeuvres In The Dark, OMD - Enola Gay (Karaoke)", - "id": "pK9ogSWrG_g" - }, - { - "title": "Peter Allen - I Go To Rio (Karaoke)", - "id": "DqfxPWbRkXY" - }, - { - "title": "Peter, Paul & Mary - Leaving On A Jet Plane (Karaoke)", - "id": "ynofK1sEl_w" - }, - { - "title": "Petula Clark - Downtown (Karaoke)", - "id": "DFhN_M-2izU" - }, - { - "title": "Peter Andre - Kiss The Girl (Karaoke)", - "id": "Fn-n0Am8Z8I" - }, - { - "title": "R.E.M. - Losing My Religion (Karaoke)", - "id": "Aklp4TzjifA" - }, - { - "title": "Pixies - Here Comes Your Man (Karaoke)", - "id": "BCLCAsOo42E" - }, - { - "title": "Porter Wagoner - Misery Loves Company (Karaoke)", - "id": "QmsqJImShG4" - }, - { - "title": "Phil Collins - Against All Odds (Karaoke)", - "id": "GdqrdhvISsA" - }, - { - "title": "The Platters - Smoke Gets In Your Eyes (Karaoke)", - "id": "N87_SjydHoY" - }, - { - "title": "The Carpenters - We've Only Just Begun (Karaoke)", - "id": "cYrJbSlcz2E" - }, - { - "title": "Norman Greenbaum - Spirit In The Sky (Karaoke)", - "id": "fwNXKT79UMI" - }, - { - "title": "Mary Poppins - Chim Chim Cheree (Karaoke)", - "id": "jKDyP2cq1pg" - }, - { - "title": "Elvis Presley - Can't Help Falling In Love (Karaoke)", - "id": "NiYUGcvgNZM" - }, - { - "title": "From the Broadway Musical the Wizard of OZ - Over The Rainbow (Karaoke)", - "id": "8Yfz1c_eBc4" - }, - { - "title": "The Carpenters - Close To You (Karaoke)", - "id": "u_-87zd5d-I" - }, - { - "title": "Neil Diamond - Song Sung Blue (Karaoake)", - "id": "TgjjOWjxulY" - }, - { - "title": "Neil Diamond - I Am...I Said (Karaoke)", - "id": "16PkWNP0SHk" - }, - { - "title": "Frank Sinatra - On The Sunny Side Of The Street (Karaoke)", - "id": "Q8C73lZCoko" - }, - { - "title": "Mary Poppins - Supercalifragilisticexpialidocious (Karaoke)", - "id": "wvmc7GHoWtY" - }, - { - "title": "Elvis Presley - (Let Me Be Your) Teddy Bear (Karaoke)", - "id": "3dKz5M44GH0" - }, - { - "title": "Gene Chandler - Duke Of Earl (Karaoke)", - "id": "OWFkEMq6qoc" - }, - { - "title": "Blake Shelton - No Body (Karaoke)", - "id": "98QgDO_zgzg" - }, - { - "title": "Elvis Presley - Amazing Grace (Karaoke)", - "id": "HJqttz4NgaU" - }, - { - "title": "Elton John - I Just Can't Wait To Be King (Karaoke)", - "id": "296W3HosfHQ" - }, - { - "title": "The Four Tops - It's The Same Old Song (Karaoke)", - "id": "m44j9U4giE0" - }, - { - "title": "The Four Tops - Reach Out I'll Be There (Karaoke)", - "id": "xYIGN3MFbzk" - }, - { - "title": "Billy Joel - Piano Man (Karaoke)", - "id": "vh3sd9Cwnvw" - }, - { - "title": "Godspell the Musical - Day By Day (Karaoke)", - "id": "1rkDvXgI5AE" - }, - { - "title": "Elton John - Levon (Karaoke)", - "id": "Ln51X0Nznss" - }, - { - "title": "Otis Redding - Try A Little Tenderness (Karaoke)", - "id": "bY1w-MSfx3w" - }, - { - "title": "Gary Numan - Cars (Karaoke)", - "id": "jPEF2cDZN6U" - }, - { - "title": "Dusty Springfield - Son Of A Preacher Man (Karaoke)", - "id": "3t-I-nAipZ4" - }, - { - "title": "Eric Clapton - Tulsa Time (Karaoke)", - "id": "HHPHUhiqrsw" - }, - { - "title": "Darius Rucker - Wagon Wheel (Karaoke)", - "id": "Fx6c5q7hoXU" - }, - { - "title": "Buster Poindexter - Hot, Hot, Hot (Karaoke)", - "id": "NwQYNqZvnSQ" - }, - { - "title": "Frank Sinatra - New York, New York (Karaoke)", - "id": "K3cmOysZB6A" - }, - { - "title": "Bonnie Raitt - Not The Only One (Karaoke)", - "id": "EyAoZpWvk6c" - }, - { - "title": "Fastball - Out Of My Head (Karaoke)", - "id": "XXmb9YITvUg" - }, - { - "title": "Faith Hill - Breathe (Karaoke)", - "id": "lVbIkL6NEo8" - }, - { - "title": "C. W. McCall - Convoy (Karaoke)", - "id": "hHQoqIW8sq8" - }, - { - "title": "Brad Paisley, Chely Wright - Hard To Be A Husband, Hard To Be A Wife (Karaoke)", - "id": "ELCvMwp3RQI" - }, - { - "title": "Fine Young Cannibals - She Drives Me Crazy (Karaoke)", - "id": "KrGzJKh3w1c" - }, - { - "title": "Elton John - Can You Feel The Love Tonight (Karaoke)", - "id": "enRymDBUAjM" - }, - { - "title": "En Vogue - My Lovin' (You're Never Gonna Get It)", - "id": "keVrAiLmPEs" - }, - { - "title": "Bobby Day - Rockin' Robin (Karaoke)", - "id": "lDWkOyQMJMg" - }, - { - "title": "Flo Rida, T Pain - Low (Karaoke)", - "id": "c9BCSbOlVUo" - }, - { - "title": "Blue Oyster Cult - Don't Fear The Reaper (Karaoke)", - "id": "ZSV5cp4F-JA" - }, - { - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Karaoke)", - "id": "6dvf7Ue1fYU" - }, - { - "title": "Eric Clapton - I Shot The Sheriff (Karaoke)", - "id": "AW4Ob9pNWyw" - }, - { - "title": "Elton John - Philadelphia Freedom (Karaoke)", - "id": "F7v0tLS82Z8" - }, - { - "title": "Bobbie Gentry - Ode To Billy Joe (Karaoke)", - "id": "SqConCsGBRY" - }, - { - "title": "Eminem - Lose Yourself (Karaoke)", - "id": "UjGavfVqxP8" - }, - { - "title": "Eminem ftg. Rihanna - Love The Way You Lie (Karaoke)", - "id": "skzAtCUZRws" - }, - { - "title": "The Everly Brothers - Bye Bye Love (Karaoke)", - "id": "byBOZ2gArHY" - }, - { - "title": "The Everly Brothers - Wake Up Little Susie (Karaoke)", - "id": "Iuh1Ycwl3P0" - }, - { - "title": "Harry Styles - Watermelon Sugar (Karaoke)", - "id": "KtJ8kLO-lOQ" - }, - { - "title": "Elton John - Tiny Dancer (Karaoke)", - "id": "NN6wJaGeVlI" - }, - { - "title": "Elton John - Your Song (Karaoke)", - "id": "hpueVcWLGa4" - }, - { - "title": "Freda Payne - Band Of Gold (Karaoke)", - "id": "JJVccXN7u30" - }, - { - "title": "Elton John - Crocodile Rock (Karaoke)", - "id": "BWGK8po13OE" - }, - { - "title": "Janis Joplin - Me And Bobby McGee (Karaoke)", - "id": "MX2SNNBQkqc" - }, - { - "title": "Elvis Presley - Love Me Tender (Karaoke)", - "id": "0WYXHUdVKKk" - }, - { - "title": "Motley Crue - Smokin' In The Boys Room (Karaoke)", - "id": "_crtclMzQ6s" - }, - { - "title": "Whitney Houston - So Emotional (Karaoke)", - "id": "aHuT0TIbq3w" - }, - { - "title": "Don McLean - American Pie (Karaoke)", - "id": "4SnTrWFH-ac" - }, - { - "title": "Elton John - Candle In The Wind (Karaoke)", - "id": "XeroxaqQBFU" - }, - { - "title": "Linda Ronstadt & James Ingram - Somewhere Out There (Karaoke)", - "id": "2coG7Tn3Doc" - }, - { - "title": "Billie Eilish - Bad Guy (Karaoke)", - "id": "6SDQMhNjcM8" - }, - { - "title": "All American Rejects - Dirty Little Secret (Karaoke)", - "id": "W5Gp788W_rU" - }, - { - "title": "American Hi-Fi - Flavor Of The Weak (Karaoke)", - "id": "2uj_WQzu1RI" - }, - { - "title": "America - You Can Do Magic (Karaoke)", - "id": "rVLRPTDz-fg" - }, - { - "title": "Al Green - Tired Of Being Alone (Karaoke)", - "id": "4Uop1CSKRNI" - }, - { - "title": "Alan Jackson ftg. Lee Ann Womack - Ring Of Fire (Karaoke)", - "id": "PAfOh2yiCVY" - }, - { - "title": "Ben Harper - Steal My Kisses (Karaoke)", - "id": "8PAOiiuXPi4" - }, - { - "title": "ABC - Poison Arrow (Karaoke)", - "id": "vMsAFjmNPNU" - }, - { - "title": "Billy Joel - Uptown Girl (Karaoke)", - "id": "gx418mFi308" - }, - { - "title": "Bryan Adams - Straight From The Heart (Karaoke)", - "id": "a-Y_GmGWAJI" - }, - { - "title": "Neil Diamond - Red Red Wine (Karaoke)", - "id": "fk6S7hslh4w" - }, - { - "title": "The Animals - House Of The Rising Sun (Karaoke)", - "id": "Xnf0q6nWAkg" - }, - { - "title": "A Flock Of Seagulls - I Ran (So Far Away) (Karaoke)", - "id": "WabAJElSc1M" - }, - { - "title": "Bette Midler - Under The Boardwalk (Karaoke)", - "id": "SByZp91JiJA" - }, - { - "title": "Bette Midler - Boogie Woogie Bugle Boy (Karaoke)", - "id": "r-OY-6173fQ" - }, - { - "title": "Anna Nalick - Breathe (2 AM) (Karaoke)", - "id": "Hc3aFH0A27Q" - }, - { - "title": "Andy Williams - Where Do I Begin (Karaoke)", - "id": "89ydwBefnBI" - }, - { - "title": "Adele - Make You Feel My Love (Karaoke)", - "id": "_HNbmwdO4ms" - }, - { - "title": "Al Dexter And His Troopers - Pistol Packin' Mama (Karaoke)", - "id": "Ke9pl5RCJVc" - }, - { - "title": "The Beatles - Get Back (Karaoke)", - "id": "jC2qzZxkcVU" - }, - { - "title": "Alison Krauss & Union Station - When You Say Nothing At All (Karaoke)", - "id": "AK7nF2LO90M" - }, - { - "title": "B. J. Thomas - Another Somebody Done Somebody Wrong Song (Karaoke)", - "id": "5Qnsjo3ExyA" - }, - { - "title": "Alan Jackson - Gone Country (Karaoke)", - "id": "c9DnPFObzjs" - }, - { - "title": "5th Dimension - Wedding Bell Blues (Karaoke)", - "id": "IWoCvljNTKY" - }, - { - "title": "Beastie Boys - (You Gotta) Fight For Your Right (To Party) (Karaoke)", - "id": "tYfZzxRLZdE" - }, - { - "title": "Aaron Neville - Everybody Plays The Fool (Karaoke)", - "id": "779AikTXSlk" - }, - { - "title": "Beach Boys - Help Me Rhonda (Karaoke)", - "id": "vlGZZ80JNbA" - }, - { - "title": "Beach Boys - Kokomo (Karaoke)", - "id": "FyKtHWzeCuU" - }, - { - "title": "The Fray - Syndicate (Karaoke)", - "id": "JjT_cYfHAZE" - }, - { - "title": "Sonny James - Young Love (Karaoke)", - "id": "lpA6CMafllM" - }, - { - "title": "Mary Chapin Carpenter - Quittin' Time (Karaoke)", - "id": "RvnLUApiUAA" - }, - { - "title": "Tom Jones - I Believe (Karaoke)", - "id": "YyHVONBWq0Y" - }, - { - "title": "Tommy Roe - Some Such Foolishness (Karaoke)", - "id": "YGwe9mjh44I" - }, - { - "title": "Brenda Lee - Sweet Nothings (Karaoke)", - "id": "BAkaN5jImpA" - }, - { - "title": "Alabama - Dancin', Shaggin' On The Boulevard (Karaoke)", - "id": "7fB4WlOX_Po" - }, - { - "title": "Michelle Wright - Take It Like A Man (Karaoke)", - "id": "sm7OfHzEtu0" - }, - { - "title": "The Forester Sisters - Men (Karaoke)", - "id": "0zDNMUI8AHk" - }, - { - "title": "Ren - Illest Of Our Time (clean) (Karaoke)", - "id": "-NB_kddsvgk" - }, - { - "title": "Frankie Ballard - Sunshine And Whiskey (Karaoke)", - "id": "Mmes_vrFKZ0" - }, - { - "title": "Mudvayne - Fear (Karaoke)", - "id": "Z_HOhayx5aw" - }, - { - "title": "98 Degrees - Invisible Man (Karaoke)", - "id": "ob8YZiU5UxY" - }, - { - "title": "Slipknot - The Chapeltown Rag (clean) (Karaoke)", - "id": "EEVl3unFVvE" - }, - { - "title": "Vince Gill - Pretty Little Adriana (Karaoke)", - "id": "nNUUJGpsg2Y" - }, - { - "title": "Matchbox Twenty - Downfall (Karaoke)", - "id": "41ZUb9yPiMA" - }, - { - "title": "Train - If It's Love (Karaoke)", - "id": "72ybCFKoZAU" - }, - { - "title": "Travis Tritt - Bible Belt (Karaoke)", - "id": "D29yEfx3660" - }, - { - "title": "Charley Pride - All His Children (Karaoke)", - "id": "1m8j0O2e8o4" - }, - { - "title": "Mandy Moore - Cry (Karaoke)", - "id": "7bMH2jdwvvs" - }, - { - "title": "Prince - Thieves In The Temple (Karaoke)", - "id": "5ormoEg0jbY" - }, - { - "title": "Reba McEntire - Roses (Karaoke)", - "id": "vssryxoVD68" - }, - { - "title": "Ben E. King - Stand By Me (Unplugged) (Karaoke)", - "id": "OvubyBfGAq0" - }, - { - "title": "Pink - Gone To California (Karaoke)", - "id": "QM-LPcjibv4" - }, - { - "title": "Swedish House Mafia Feat. Pharrell - One (Your Name) (Karaoke)", - "id": "d5FBPfMESS0" - }, - { - "title": "Kelly Clarkson - One Minute (Karaoke)", - "id": "bLlvbYNTunE" - }, - { - "title": "Miranda Lambert - Roots And Wings (Karaoke)", - "id": "fxEHX6QOyGY" - }, - { - "title": "Lady Gaga - Stupid Love (Karaoke)", - "id": "O0GFuXwLX6A" - }, - { - "title": "Train - Cab (Karaoke)", - "id": "l9e9aQZQ_Ho" - }, - { - "title": "Jesus Jones - Real, Real, Real (Karaoke)", - "id": "BSWxE-IZdSw" - }, - { - "title": "Wynonna - Sing (Karaoke)", - "id": "4Rv2MtSnWDA" - }, - { - "title": "Hanson - Weird (Karaoke)", - "id": "h94-25HR6-k" - }, - { - "title": "Jessica Simpson - With You (Karaoke)", - "id": "wssXhnMOWyE" - }, - { - "title": "Electric Light Orchestra, ELO - Last Train To London (Karaoke)", - "id": "6sgIzQwDX98" - }, - { - "title": "Good Charlotte - Last Night (Karaoke)", - "id": "UHSLRcgN5nw" - }, - { - "title": "Neil Sedaka - You Mean Everything To Me (Karaoke)", - "id": "IoGepksGTiQ" - }, - { - "title": "Brad Paisley - In Times Like These (Karaoke)", - "id": "izfqrg3sSJg" - }, - { - "title": "Dixie Chicks - Voice Inside My Head (Karaoke)", - "id": "441mKh2Zn-o" - }, - { - "title": "Nicki Minaj - Super Freaky Girl (clean) (Karaoke)", - "id": "D4Xya8hrCo4" - }, - { - "title": "Lykke Li - Breaking It Up (Karaoke)", - "id": "4s-EOvgkIno" - }, - { - "title": "Muse - Euphoria (Karaoke)", - "id": "t7R841Kpb5c" - }, - { - "title": "Lady Gaga - Hold My Hand (Karaoke)", - "id": "uo6smeUUyjo" - }, - { - "title": "5 Seconds Of Summer - Easier (Karaoke)", - "id": "pcTT2m4dZMA" - }, - { - "title": "Bowling For Soup - 1985 (Karaoke)", - "id": "YBVGwfdz6is" - }, - { - "title": "Pussycat Dolls - Buttons (Karaoke)", - "id": "rala-xzi088" - }, - { - "title": "Reba McEntire - What Do You Say (Karaoke)", - "id": "kotEFlst_ig" - }, - { - "title": "Depeche Mode - Enjoy The Silence (Karaoke)", - "id": "oNdygxtrE8Y" - }, - { - "title": "Ruth B - Lost Boy (Karaoke)", - "id": "VfVGxDSQjOs" - }, - { - "title": "Sammy Kershaw - Yard Sale (Karaoke)", - "id": "CZGbnou8MjI" - }, - { - "title": "Travis Tritt - Between An Old Memory And Me (Karaoke)", - "id": "-q7vI9rZWjE" - }, - { - "title": "John Denver - Leaving On A Jet Plane (Karaoke)", - "id": "vX7AYbQRPQ8" - }, - { - "title": "Whitney Houston - I Will Always Love You (Karaoke)", - "id": "l0C-ttwGXCE" - }, - { - "title": "Backstreet Boys - More Than That (Karaoke)", - "id": "lwJSm1Zs_7A" - }, - { - "title": "Alessia Cara - Scars To Your Beautiful (Karaoke)", - "id": "ql4nsCYXUb8" - }, - { - "title": "Eli Young Band - Say Goodnight (Karaoke)", - "id": "I19gtjmLz0Y" - }, - { - "title": "Alicia Keys - Superwoman (Karaoke)", - "id": "sld2Ongxeo0" - }, - { - "title": "Brad Paisley - This Is Country Music (Karaoke)", - "id": "hd7tne_yIS4" - }, - { - "title": "Alison Krauss - Simple Love (Karaoke)", - "id": "0_J4yAP2DlY" - }, - { - "title": "Brooks & Dunn - Neon Moon (Karaoke)", - "id": "eJ10EBb2yBA" - }, - { - "title": "Wade Hayes - Tore Up From The Floor Up (Karaoke)", - "id": "vrJ2jdfGwPg" - }, - { - "title": "Tracy Byrd - Take Me With You When You Go (Karaoke)", - "id": "UcoDWVArSBY" - }, - { - "title": "Nelly Furtado - On The Radio (Remember The Days) (Karaoke)", - "id": "3yYU6m4sQVQ" - }, - { - "title": "Fantasia Barrino - Truth Is (Karaoke)", - "id": "B0StiR1VXwk" - }, - { - "title": "Duke Robillard - Pony Blues (Karaoke)", - "id": "OGd-YUrzguo" - }, - { - "title": "Louis Tomlinson - Angels Fly (Karaoke)", - "id": "IP1l4bDJ2Kk" - }, - { - "title": "Chandler Kinney with Pearce Joza and Baby Ariel - We Own The Night (From Zombies 2) (Karaoke)", - "id": "YImH41IxXFo" - }, - { - "title": "Big & Rich - Big Time (Karaoke)", - "id": "-OA33l6BQf0" - }, - { - "title": "Avril Lavigne - Complicated (Karaoke)", - "id": "CiBiHK1BAaA" - }, - { - "title": "Dierks Bentley - Feel That Fire (Karaoke)", - "id": "Pif-a1kzUew" - }, - { - "title": "America - One In A Million (Karaoke)", - "id": "vBIpqAU2NKI" - }, - { - "title": "Sam Hunt - Kinfolks (Karaoke)", - "id": "_13NF1WWHbM" - }, - { - "title": "Dua Lipa and BLACKPINK - Kiss And Make Up (Karaoke)", - "id": "k5GDoMWr-EE" - }, - { - "title": "Depeche Mode - It's No Good (Karaoke)", - "id": "zOKg-Xf398E" - }, - { - "title": "Simon And Garfunkel - The 59th Street Bridge Song (Feelin' Groovy) (Karaoke)", - "id": "74852YFfgGM" - }, - { - "title": "David Archuleta - Touch My Hand (Karaoke)", - "id": "QZRk7Mn_yuo" - }, - { - "title": "Calvin Harris - Feels So Close (Karaoke)", - "id": "Adk1ud0yTW8" - }, - { - "title": "98 Degrees - Give Me Just One Night (Una Noche) (Karaoke)", - "id": "8Y5hkkJHpt0" - }, - { - "title": "Daughtry - Used To (Karaoke)", - "id": "2WAgSfvzhA0" - }, - { - "title": "Amy Winehouse - Some Unholy War (Karaoke)", - "id": "bfeW1zaF5LY" - }, - { - "title": "David Guetta, Becky Hill and Ella Henderson - Crazy What Love Can Do (Karaoke)", - "id": "BnuSJoDpC9c" - }, - { - "title": "Vince Gill - Shoot Straight From Your Heart (Karaoke)", - "id": "nWSk7EX5-kQ" - }, - { - "title": "Pink - Leave Me Alone (I'm Lonely) (Karaoke)", - "id": "88aKBeKcw9w" - }, - { - "title": "Alesia Cara - Wild Things (Karaoke)", - "id": "OuQJrAh4wLI" - }, - { - "title": "P.O.D. - Boom (Karaoke)", - "id": "tg4UiRJ82gY" - }, - { - "title": "Elmore James - The Sky Is Crying (Karaoke)", - "id": "kfMA5elbgH0" - }, - { - "title": "Moe Bandy - It Was Always So Easy (To Find An Unhappy Woman) (Karaoke)", - "id": "0TrTc041yX8" - }, - { - "title": "Patsy Cline - Half As Much (Karaoke)", - "id": "BD7bOVC12TY" - }, - { - "title": "Lykke Li - Little Bit (Karaoke)", - "id": "pZfuDAsycs4" - }, - { - "title": "Akon ftg. Snoop Dogg - I Wanna Love You (Karaoke)", - "id": "veNgSGcbtAg" - }, - { - "title": "Faron Young - Riverboat (Karaoke)", - "id": "GMQOiYUTKWI" - }, - { - "title": "The Band Perry - Gentle On My Mind (Karaoke)", - "id": "6guDSFwMUtg" - }, - { - "title": "Elvis Presley - I'm So Lonesome I Could Cry (Karaoke)", - "id": "1BKZVW066Ic" - }, - { - "title": "Damn Yankees - Coming Of Age (Karaoke)", - "id": "zNMPVvN8vXw" - }, - { - "title": "Barry Manilow - Come Dance With Me / Come Fly With Me (Karaoke)", - "id": "v4vFUI6vwkI" - }, - { - "title": "Simon And Garfunkel - The Sound Of Silence (Karaoke)", - "id": "rHJ64OWFYPE" - }, - { - "title": "The Who - My Generation (Karaoke)", - "id": "XENlYE_7PNQ" - }, - { - "title": "Doja Cat - Paint The Town Red (clean) (Karaoke)", - "id": "cl0ZbMwy-6o" - }, - { - "title": "Prince And The Revolution - Pop Life (Karaoke)", - "id": "sAGDVkIiW1Y" - }, - { - "title": "Matchbox Twenty - Last Beautiful Girl (Karaoke)", - "id": "9_fFkdGXRig" - }, - { - "title": "Panic! At The Disco - Lyin' Is The Most Fun A Girl Can Have Without Taking Her Clothes Off (Karaoke)", - "id": "4DXY-PJkWLk" - }, - { - "title": "The Fray - How To Save A Life (Karaoke)", - "id": "mJmOE7JLgQQ" - }, - { - "title": "Diamond Rio - Wrinkles (Karaoke)", - "id": "c2lwKSxovI0" - }, - { - "title": "DJ Khaled ft. T-Pain, Ludacris, Snoop Dogg and Rick Ross - All I Do Is Win (Karaoke)", - "id": "RYic2XyjlPA" - }, - { - "title": "Pink - Nobody Knows (Karaoke)", - "id": "1hHmzinb6es" - }, - { - "title": "Albert Hammond - It Never Rains In Southern California (Karaoke)", - "id": "0mRND0iBk9k" - }, - { - "title": "The Psychedelic Furs - The Ghost In You (Karaoke)", - "id": "vQkX8htLmzc" - }, - { - "title": "Halle Bailey - Part of Your World (From Little Mermaid) (Karaoke)", - "id": "xkgq7lqcpc8" - }, - { - "title": "Awkwafina And Daveed Diggs - The Scuttlebutt (From Little Mermaid) (Karaoke)", - "id": "PR5c-B4ei40" - }, - { - "title": "Prince And The Revolution - I Would Die 4 U (Karaoke)", - "id": "tevHF2_lNjk" - }, - { - "title": "Jonah Hauer-King - Wild Uncharted Waters (From Little Mermaid) (Karaoke)", - "id": "T_tdw0XogkI" - }, - { - "title": "Imagine Dragons - Follow You (Karaoke)", - "id": "j_-7j6n7AB0" - }, - { - "title": "Calum Scott - Biblical (Karaoke)", - "id": "n4E54xhcFM0" - }, - { - "title": "James Blunt - I'll Be Your Man (Karaoke)", - "id": "wdeo0mJJsIY" - }, - { - "title": "Billie Eilish - Lost Cause (Karaoke)", - "id": "TsLS5Qja-GU" - }, - { - "title": "Kelly Clarkson - Down To You (Karaoke)", - "id": "R_qVCcMrO0Y" - }, - { - "title": "Jordin Sparks - Battlefield (Karaoke)", - "id": "QHahYb0Kj0c" - }, - { - "title": "Fatboy Slim - The Rockafeller Skank (Karaoke)", - "id": "LSOEyP3p4R4" - }, - { - "title": "Calvin Harris - Summer (Karaoke)", - "id": "aYsLEkfsf8g" - }, - { - "title": "Frankie Goes To Hollywood - Relax (Karaoke)", - "id": "RCZmFmo5FlM" - }, - { - "title": "Avicii ftg. Aloe Blacc - Wake Me Up (Karaoke)", - "id": "L3KPQx7wtZE" - }, - { - "title": "George Strait and Alan Jackson - Murder On Music Row (Karaoke)", - "id": "dY4PJv-fhiA" - }, - { - "title": "Tanya Tucker - Down To My Last Teardrop (Karaoke)", - "id": "SlXGhMtzf24" - }, - { - "title": "Brandy - Almost Doesn't Count (Karaoke)", - "id": "D_jk1f-Abdo" - }, - { - "title": "Dwight Yoakam - Thinking About Leaving (Karaoke)", - "id": "AXtrTxN_dDw" - }, - { - "title": "Air Supply - Two Less Lonely People In The World (Karaoke)", - "id": "k652MGvZZnE" - }, - { - "title": "Wynonna - My Angel Is Here (Karaoke)", - "id": "dElRqVSlDHk" - }, - { - "title": "Prince And The New Power Generation - Diamonds And Pearls (Karaoke)", - "id": "A3p1Wbl41Wo" - }, - { - "title": "Reba McEntire - You're The First Time I Thought About Leaving (Karaoke)", - "id": "OlIsDlHPwJc" - }, - { - "title": "Vince Gill - Pocket Full Of Gold (Karaoke)", - "id": "UGCdQHnWkIo" - }, - { - "title": "Taio Cruz and Kylie Minogue - Higher (Karaoke)", - "id": "iRF9ZXvN_-U" - }, - { - "title": "Ne-Yo - So Sick (Karaoke)", - "id": "f3FsWGtYEtY" - }, - { - "title": "Kelly Clarkson - Already Gone (Karaoke)", - "id": "rWwpoiJMWTE" - }, - { - "title": "Ashton Shepherd - Sounds So Good (Karaoke)", - "id": "rJr8_K3NEtU" - }, - { - "title": "David Houston - Have A Little Faith (Karaoke)", - "id": "hvVj10RFaoA" - }, - { - "title": "Standard - Buttons And Bows (Karaoke)", - "id": "WT-Oe-8UB8g" - }, - { - "title": "Pam Tillis - Please (Karaoke)", - "id": "p_AQCwb9i58" - }, - { - "title": "Children's Fun Songs - The Hokey Pokey (Karaoke)", - "id": "i0z0iWzr0Bc" - }, - { - "title": "Pearl Jam - I Am Mine (Karaoke)", - "id": "tZYqxhmrgdI" - }, - { - "title": "Manfred Mann's Earth Band - Blinded By The Light (Karaoke)", - "id": "v17uEgaRs_E" - }, - { - "title": "Madonna - Papa Don't Preach (Karaoke)", - "id": "Sv1QqOByHzM" - }, - { - "title": "Mary J. Blige - Love @ 1st Sight (Karaoke)", - "id": "9fe1nP3sx-8" - }, - { - "title": "Ray J - One Wish (Karaoke)", - "id": "zhhng63Ff8U" - }, - { - "title": "Blackbear - Dirty Laundry (clean) (Karaoke)", - "id": "vMAeSHz30DE" - }, - { - "title": "Akon - Angel (Karaoke)", - "id": "uuR4XJBGiog" - }, - { - "title": "Extreme - Get The Funk Out (Karaoke)", - "id": "y-CAiZSaUcg" - }, - { - "title": "Selena Gomez - Come & Get It (Karaoke)", - "id": "jgTfTNz26og" - }, - { - "title": "Diamond Rio - Stuff (Karaoke)", - "id": "DBVscONIUPw" - }, - { - "title": "Daryle Singletary - Too Much Fun (Karaoke)", - "id": "Vk8U4jQMRlI" - }, - { - "title": "Natasha Bedingfield - Single (Karaoke)", - "id": "ChCWBfHhRcg" - }, - { - "title": "LeAnn Rimes - I Believe (Karaoke)", - "id": "dPIpsKnLEOI" - }, - { - "title": "Gretchen Wilson ftg. John Rich - Come To Bed (Karaoke)", - "id": "gx1wK7dfaKQ" - }, - { - "title": "98 Degrees - The Hardest Thing (Karaoke)", - "id": "92iyKsGpON4" - }, - { - "title": "98 Degrees - Why (Are We Still Friends) (Karaoke)", - "id": "7I9KuKOI5Ls" - }, - { - "title": "Goo Goo Dolls - Let Love In (Karaoke)", - "id": "jUCtjK8RWi0" - }, - { - "title": "Good Charlotte - We Believe (Karaoke)", - "id": "aQv2GBHbAf4" - }, - { - "title": "Luther Vandross - Love Don't Love You Anymore (Karaoke)", - "id": "nv979ziIkik" - }, - { - "title": "Skeeter Davis - I'm Saving My Love (Karaoke)", - "id": "cU72T2JavwU" - }, - { - "title": "Mindy McCready - A Girl's Gotta Do (What A Girl's Gotta Do) (Karaoke)", - "id": "d7Kq146JCPw" - }, - { - "title": "Bowling For Soup - Almost (Karaoke)", - "id": "hlbj9m0N62Y" - }, - { - "title": "Joe Diffie - Home (Karaoke)", - "id": "bQeEobnJaRQ" - }, - { - "title": "Gary Allan - I'll Take Today (Karaoke)", - "id": "E3VcJhzyYqQ" - }, - { - "title": "Colbie Caillat - The Little Things (Karaoke)", - "id": "vC4cPN3SHeM" - }, - { - "title": "Miranda Lambert - Heart Like Mine (Karaoke)", - "id": "3bsFyxiJreM" - }, - { - "title": "Darius Rucker - If I Told You (Karaoke)", - "id": "unzR5qiZdko" - }, - { - "title": "Crash Test Dummies - God Shuffled His Feet (Karaoke)", - "id": "iblIxY-7NpY" - }, - { - "title": "Tammy Wynette - I Believe (Karaoke)", - "id": "K3u3Pq7FwPQ" - }, - { - "title": "Alicia Keys - Teenage Love Affair (Karaoke)", - "id": "dz3itVO__Tk" - }, - { - "title": "Color Me Badd - Remember When (Karaoke)", - "id": "1-dIaLHuWXI" - }, - { - "title": "Avril Lavigne - What The Hell (Karaoke)", - "id": "cozZRYdL2GA" - }, - { - "title": "Avril Lavigne - Girlfriend (Karaoke)", - "id": "YSMHNuSwNU0" - }, - { - "title": "Amy Dalley - Living Together (Karaoke)", - "id": "4zbKPh2R6nQ" - }, - { - "title": "Allison Moorer - Dancing Barefoot (Karaoke)", - "id": "2xNRnnauScA" - }, - { - "title": "Avicii - Waiting For Love (Karaoke)", - "id": "k-punlBaMbU" - }, - { - "title": "Ronnie Milsap - Pure Love (Karaoke)", - "id": "miJBdMn8oA8" - }, - { - "title": "Goo Goo Dolls - Sympathy (Karaoke)", - "id": "FP4UbJKoeFc" - }, - { - "title": "Mark Chesnutt - Your Love Is A Miracle (Karaoke)", - "id": "pPqh9Py-YEQ" - }, - { - "title": "Conway Twitty - Julia (Karaoke)", - "id": "09tDMyAKStA" - }, - { - "title": "Steely Dan - Black Cow (Karaoke)", - "id": "U5hHZYRd_RU" - }, - { - "title": "Steely Dan - Dirty Work (Karaoke)", - "id": "wY68eENUzcY" - }, - { - "title": "Tommy James & The Shondells - Mony Mony (Karaoke)", - "id": "55lCDyl6Bw4" - }, - { - "title": "Tommy James & The Shondells - Draggin' The Line (Karaoke)", - "id": "BptuArg9Tn0" - }, - { - "title": "Tommy James & The Shondells - Crystal Blue Persuasion (Karaoke)", - "id": "H0JV1yVMkfU" - }, - { - "title": "Alabama - High Cotton (Karaoke)", - "id": "eqRL6H6qluw" - }, - { - "title": "Jackson 5 - ABC (Karaoke)", - "id": "7Im_zjKXVO8" - }, - { - "title": "Tommy James & The Shondells - I Think We're Alone Now (Karaoke)", - "id": "yUHjDOCspRQ" - }, - { - "title": "The Temptations - Ain't Too Proud To Beg (Karaoke)", - "id": "92E95qO-Nxc" - }, - { - "title": "Bachman Turner Overdrive - Takin' Care Of Business (Karaoke)", - "id": "R73zGxh8nhs" - }, - { - "title": "Alabama - Born Country (Karaoke)", - "id": "ngTeowTqm88" - }, - { - "title": "Conway Twitty - Image Of Me (Karaoke)", - "id": "Ytz2vK3PUEw" - }, - { - "title": "Conway Twitty - Don't Take It Away (Karaoke)", - "id": "RfgV6UIjqsk" - }, - { - "title": "Irish - Traditional - My Wild Irish Rose (Karaoke)", - "id": "X6MaLp-jn3M" - }, - { - "title": "The Psychedelic Furs - Love My Way (Karaoke)", - "id": "Ei3UVqbqoqc" - }, - { - "title": "Squeeze - Tempted (Karaoke)", - "id": "-sT7mfiKBcE" - }, - { - "title": "Tom Jones - What's New Pussycat (Karaoke)", - "id": "8Twb4CIWA1Q" - }, - { - "title": "Tina Turner (w/ Ike) - Proud Mary (Karaoke)", - "id": "Ptqm6LDUXu8" - }, - { - "title": "The Statler Brothers - I'll Go To My Grave Loving You (Karaoke)", - "id": "l_l8ScMJQU0" - }, - { - "title": "The Statler Brothers - The Class Of '57 (Karaoke)", - "id": "4t3D2iMoacQ" - }, - { - "title": "Tom T. Hall - I Like Beer (Karaoke)", - "id": "uqjZhMXZHz0" - }, - { - "title": "Toby Keith - I Love This Bar (Karaoke)", - "id": "gP_P-tsf1zM" - }, - { - "title": "Tommy James & The Shondells - Crimson And Clover (Karaoke)", - "id": "bG43-AKneTs" - }, - { - "title": "Irish Standard - Isle Of Innisfree (Karaoke)", - "id": "N4QjEBlAcJE" - }, - { - "title": "Irish - Traditional - Galway Bay (Karaoke)", - "id": "svREp-XX2F4" - }, - { - "title": "Irish - Traditional - Cockles And Mussels (Karaoke)", - "id": "1S0jLN-Mltc" - }, - { - "title": "Irish - Traditional - I'll Take You Home Again Kathleen (Karaoke)", - "id": "Kypp_zg3DVo" - }, - { - "title": "The Association - Along Comes Mary (Karaoke)", - "id": "7zZUmaL2tgw" - }, - { - "title": "B 52s - Love Shack (Karaoke)", - "id": "8-bdvtoPUMo" - }, - { - "title": "Aloe Blacc - I Need A Dollar (Karaoke)", - "id": "hXiJayBxEjo" - }, - { - "title": "Alicia Keys - No One (Karaoke)", - "id": "G78LqO-gEoY" - }, - { - "title": "Amy Winehouse - Back To Black (Karaoke)", - "id": "DCI3JjGUn1w" - }, - { - "title": "Aretha Franklin - You Make Me Feel Like A Natural Woman (Karaoke)", - "id": "Pod2V2sMVFs" - }, - { - "title": "Aretha Franklin & George Michael - I Knew You Were Waiting (Karaoke)", - "id": "Aea8qlsstak" - }, - { - "title": "Aretha Franklin - Respect (Karaoke)", - "id": "DwlIDHzOUD8" - }, - { - "title": "B. J. Thomas - Raindrops Keep Fallin' On My Head (Karaoke)", - "id": "1pPnXuSIog0" - }, - { - "title": "Alanis Morissette - Ironic (Karaoke)", - "id": "_R5C4-P2hN0" - }, - { - "title": "Anita Baker - Sweet Love (Karaoke)", - "id": "TSZembPeVdM" - }, - { - "title": "Anne Murray - Snowbird (Karaoke)", - "id": "z_kRRc2jb9c" - }, - { - "title": "The Association - Cherish (Karaoke)", - "id": "xbigkhOlMR8" - }, - { - "title": "Carly Simon - You're So Vain (Karaoke)", - "id": "c0XUOBadzmc" - }, - { - "title": "Joni Mitchell - Big Yellow Taxi (Karaoke)", - "id": "Rr1YivvNssM" - }, - { - "title": "Alabama - Mountain Music (Karaoke)", - "id": "v8eAKELKS4A" - }, - { - "title": "The Doobie Brothers - Minute By Minute (Karaoke)", - "id": "sOb9N3_2AXI" - }, - { - "title": "Harry Styles - Adore You (Karaoke)", - "id": "gz231XMRyUw" - }, - { - "title": "Fleetwood Mac - Don't Stop (Karaoke)", - "id": "C0NMF19_IgU" - }, - { - "title": "Johnny Cash - Ring Of Fire (Karaoke)", - "id": "pdrYwbzBI7c" - }, - { - "title": "The Beatles - Here Comes The Sun (Karaoke)", - "id": "fv7w5iHmwdE" - }, - { - "title": "The Byrds - Mr. Tambourine Man (Karaoke)", - "id": "L_zgc1f6p9c" - }, - { - "title": "Pee Wee King - Tennessee Waltz (Karaoke)", - "id": "9VbK1sjQXk4" - }, - { - "title": "Kristen Bell ftg. Agatha Lee Monn & Latie Lopez - Do You Want To Build A Snowman? (Karaoke)", - "id": "xNAGATP73As" - }, - { - "title": "Randy Newman - You've Got A Friend In Me (Karaoke)", - "id": "SvFhGKJrs6I" - }, - { - "title": "James Taylor - How Sweet It Is (To Be Loved By You) (Karaoke)", - "id": "IpLWWjB6lkg" - }, - { - "title": "Britney Spears - Toxic (Karaoke)", - "id": "bud94lHzI8w" - }, - { - "title": "Chaka Khan - I'm Every Woman (Karaoke)", - "id": "keWq2czDkN0" - }, - { - "title": "Etta James - At Last (Karaoke)", - "id": "t2ZpE_7M9MQ" - }, - { - "title": "Fleetwood Mac - Everywhere (Karaoke)", - "id": "e9vYOZ9JNlU" - }, - { - "title": "Steely Dan - Rikki Don't Lose That Number (Karaoke)", - "id": "KyKKqLkrJik" - }, - { - "title": "Tim McGraw - Humble And Kind (Karaoke)", - "id": "i2gpJGhJN9I" - }, - { - "title": "Loretta Lynn - You Ain't Woman Enough To Take My Man (Karaoke)", - "id": "yY43uT0jcpc" - }, - { - "title": "Olivia Newton John - Let Me Be There (Karaoke)", - "id": "Ch_oazLt4go" - }, - { - "title": "The Beatles - Let It Be (Karaoke)", - "id": "tPkUnTvBzMQ" - }, - { - "title": "The Beatles - Back In The USSR (Karaoke)", - "id": "un51TmVYMp8" - }, - { - "title": "Eddie Rabbitt - I Love A Rainy Night (Karaoke)", - "id": "73zfTWqFhTI" - }, - { - "title": "Albert Hammond - It Never Rains In Southern California (Karaoke)", - "id": "pec3GJF9K5k" - }, - { - "title": "The Fortunes - Here Comes That Rainy Day Feeling Again (Karaoke)", - "id": "UX5y5mjUdPI" - }, - { - "title": "Merle Haggard - When It Rains It Pours (Karaoke)", - "id": "BQ2IoxQjVMc" - }, - { - "title": "James Taylor - Fire And Rain (Karaoke)", - "id": "zcg5k2wsCAw" - }, - { - "title": "Ed Sheeran - Make It Rain (Karaoke)", - "id": "2ZkFYxkITvI" - }, - { - "title": "Creedence Clearwater Revival - Lookin' Out My Back Door (Karaoke)", - "id": "ZXqoOmpFkP4" - }, - { - "title": "Creedence Clearwater Revival - Who'll Stop The Rain (Karaoke)", - "id": "bqsprR6Z4F0" - }, - { - "title": "Creedence Clearwater Revival - Have You Ever Seen The Rain (Karaoke)", - "id": "VY2H_RWPuyw" - }, - { - "title": "Carrie Underwood - Before He Cheats (Karaoke)", - "id": "cKyxaq9YjZY" - }, - { - "title": "Bruce Springsteen - Dancing In The Dark (Karaoke)", - "id": "0BKr8DHuTno" - }, - { - "title": "Billy Ray Cyrus - Achy Breaky Heart (Karaoke)", - "id": "svA80dTJKac" - }, - { - "title": "Billy Ocean - Caribbean Queen (No More Love On The Run) (Karaoke)", - "id": "k9jbpkxpupI" - }, - { - "title": "Billy Preston - Will It Go 'Round In Circles (Karaoke)", - "id": "QqhY09mNqDk" - }, - { - "title": "Three Dog Night - Joy To The World (Karaoke)", - "id": "ZUSOtb66ySg" - }, - { - "title": "Bachman Turner Overdrive - Let It Ride (Karaoke)", - "id": "Y5JdFnu-C30" - }, - { - "title": "Florence And The Machine - Dog Days Are Over (Karaoke)", - "id": "Lk_Xz6YByzY" - }, - { - "title": "Cheap Trick - I Want You To Want Me (Karaoke)", - "id": "gb9wDtLIE38" - }, - { - "title": "Captain & Tennille - Love Will Keep Us Together (Karaoke)", - "id": "KK3EobnfzBU" - }, - { - "title": "Patsy Cline - Walkin' After Midnight (Karaoke)", - "id": "jnggok0brag" - }, - { - "title": "John Denver - Take Me Home Country Roads (Karaoke)", - "id": "Epqsm2KIwO4" - }, - { - "title": "Johnny Cash & June Carter Cash - If I Were A Carpenter (Karaoke)", - "id": "caX-e1JiWn8" - }, - { - "title": "Buggles - Video Killed The Radio Star (Karaoke)", - "id": "CZXoafZTDac" - }, - { - "title": "Bob Seger - Shame On The Moon (Karaoke)", - "id": "dLuKK7phqvU" - }, - { - "title": "Dolly Parton - 9 To 5 (Karaoke)", - "id": "pVSqat1tmSY" - }, - { - "title": "Buck Owens - Act Naturally (Karaoke)", - "id": "9L2iqbnZmWE" - }, - { - "title": "Brooks & Dunn - My Maria (Karaoke)", - "id": "clSlj7c-Rzk" - }, - { - "title": "The Beatles - Rocky Raccoon (Karaoke)", - "id": "DToSAwFcNFw" - }, - { - "title": "Billy Joel - Movin' Out (Anthony's Song) (Karaoke)", - "id": "YkObu1adAB0" - }, - { - "title": "Marc Cohn - Walking In Memphis (Karaoke)", - "id": "Tr21b85QaGE" - }, - { - "title": "The Bellamy Brothers - Let Your Love Flow (Karaoke)", - "id": "EJYhqguKohQ" - }, - { - "title": "Sweet - Ballroom Blitz (Karaoke)", - "id": "9tU91sOUKrk" - }, - { - "title": "The Mamas And The Papas - California Dreamin' (Karaoke)", - "id": "LUSw5DO3LTw" - }, - { - "title": "Fleetwood Mac - Dreams (Karaoke)", - "id": "g2qo5eFwslI" - }, - { - "title": "The Bangles - Manic Monday (Karaoke)", - "id": "cmdKpYfAbXc" - }, - { - "title": "The Mamas And The Papas - Monday Monday (Karaoke)", - "id": "Rung9oEtbzk" - }, - { - "title": "Joan Jett & The Blackhearts - I Love Rock 'N Roll (Karaoke)", - "id": "OVMZwLxzHtg" - }, - { - "title": "Nancy Sinatra - These Boots Are Made For Walkin' (Karaoke)", - "id": "t5u0iEKJGFU" - }, - { - "title": "Oklahoma! on Broadway - Oklahoma (Karaoke)", - "id": "ZEENYKek5Ys" - }, - { - "title": "Juice Newton - Queen Of Hearts (Karaoke)", - "id": "Q8I60Y4ASeg" - }, - { - "title": "Harry Styles - As It Was (Karaoke)", - "id": "YWyRv6SPr4I" - }, - { - "title": "Gloria Gaynor - I Will Survive (Karaoke)", - "id": "Mh1YkKZOKMI" - }, - { - "title": "Men At Work - Who Can It Be Now? (Karaoke)", - "id": "OqHwzd4P4TM" - }, - { - "title": "The Hollies - Long Cool Woman (In A Black Dress) (Karaoke)", - "id": "UXTSbPffsXk" - }, - { - "title": "George Strait - Check Yes Or No (Karaoke)", - "id": "TzJma9ngHa0" - }, - { - "title": "George Jones - The Race Is On (Karaoke)", - "id": "I1j-Wnn5AaI" - }, - { - "title": "George Strait - The Chair (Karaoke)", - "id": "QvppURb31Z8" - }, - { - "title": "Tammy Wynette - Your Good Girl's Gonna Go Bad (Karaoke)", - "id": "wFO5qGOEstU" - }, - { - "title": "Patsy Cline - Blue Moon Of Kentucky (Karaoke)", - "id": "FuijXSwgGHY" - }, - { - "title": "Steppenwolf - Magic Carpet Ride (Karaoke)", - "id": "pLfJm9yWMTY" - }, - { - "title": "Cher - Gypsys, Tramps And Thieves (Karaoke)", - "id": "AGYoUuXjzOQ" - }, - { - "title": "Carole King - Where You Lead (Karaoke)", - "id": "HHndUX8Lm0E" - }, - { - "title": "Marvin Gaye - I Heard It Through The Grapevine (Karaoke)", - "id": "sf-kUcPV6zw" - }, - { - "title": "Little Eva - The Loco Motion (Karaoke)", - "id": "cuemUNVo0qk" - }, - { - "title": "Irene Cara - Fame (Karaoke)", - "id": "dbd8Zr9LxJg" - }, - { - "title": "Whitney Houston - I Wanna Dance With Somebody (Karaoke)", - "id": "KpAIsQw3Sa8" - }, - { - "title": "Cher - If I Could Turn Back Time (Karaoke)", - "id": "tpl0k42Ra-I" - }, - { - "title": "Celine Dion - It's All Coming Back To Me Now (Karaoke)", - "id": "Qlq31WlRIWw" - }, - { - "title": "James Ingram - Just Once (Karaoke)", - "id": "qM6GADpoc1k" - }, - { - "title": "The Kingsmen - Louie Louie (Karaoke)", - "id": "Pa1cy_fqzs8" - }, - { - "title": "Harry Belafonte - Day O (The Banana Boat Song) (Karaoke)", - "id": "3KM7pEKkle4" - }, - { - "title": "Steppenwolf - Born To Be Wild (Karaoke)", - "id": "dMLDCRWV1UM" - }, - { - "title": "Free - All Right Now (Karaoke)", - "id": "CeHyC0_nLGw" - }, - { - "title": "a-ha - Take On Me (Karaoke)", - "id": "WhpKsXV1OUY" - }, - { - "title": "Commodores - Brick House (Karaoke)", - "id": "eE3Mg8Ij55c" - }, - { - "title": "Otis Redding - (Sittin' On) The Dock Of The Bay (Karaoke)", - "id": "o5ssRMnPAz4" - }, - { - "title": "Linda Ronstadt - When Will I Be Loved (Karaoke)", - "id": "1D1x7ljWVLE" - }, - { - "title": "Hank Williams - Your Cheatin' Heart (Karaoke)", - "id": "pmQAtgafR4g" - }, - { - "title": "Patsy Cline - Crazy (Karaoke)", - "id": "fIMhDx5TAUY" - }, - { - "title": "Hank Williams Jr. - Family Tradition (Karaoke)", - "id": "VaQbvhXY7wI" - }, - { - "title": "Tom T. Hall - I Love (Karaoke)", - "id": "DK46De2IX_g" - }, - { - "title": "Elvis Presley - Suspicious Minds (Karaoke)", - "id": "-pmuwwFD6b8" - }, - { - "title": "Ben E. King - Stand By Me (Karaoke)", - "id": "xBO7OikfNBI" - }, - { - "title": "Chicago - Colour My World (Karaoke)", - "id": "4iCWGmWT1Hw" - }, - { - "title": "Linda Ronstadt - Blue Bayou (Karaoke)", - "id": "Tj8j_jhFClw" - }, - { - "title": "George Jones - He Stopped Loving Her Today (Karaoke)", - "id": "UT-qsCJgpgw" - }, - { - "title": "Barry Manilow - I Write The Songs (Karaoke)", - "id": "FVPA91c4FEQ" - }, - { - "title": "Hunter Hayes - Invisible (Karaoke)", - "id": "QdSNsCEfLVs" - }, - { - "title": "Olivia Newton John - Magic (Karaoke)", - "id": "D6rX2xTJes8" - }, - { - "title": "REO Speedwagon - Keep On Loving You (Karaoke)", - "id": "C5W0E5k4G4k" - }, - { - "title": "Brenda Lee - I'm Sorry (Karaoke)", - "id": "pS6oOOSMzEs" - }, - { - "title": "The Beach Boys - Wouldn't It Be Nice (Karaoke)", - "id": "n-CFo8bPTzs" - }, - { - "title": "Fiona Apple - Across The Universe (Karaoke)", - "id": "B1etCMCmCI8" - }, - { - "title": "Toby Keith - A Little Less Talk (And A Lot More Action) (Karaoke)", - "id": "7vk7dllUPNc" - }, - { - "title": "The Osborne Brothers - Rocky Top (Karaoke)", - "id": "pf89fX4pPTY" - }, - { - "title": "Zac Brown Band ftg. Jimmy Buffett - Knee Deep (Karaoke)", - "id": "fSs05X24drM" - }, - { - "title": "The Beatles - Hey Jude (Karaoke)", - "id": "OttnX3Ol1fA" - }, - { - "title": "The Beatles - When I'm Sixty-Four (Karaoke)", - "id": "3jn_qsUYSl4" - }, - { - "title": "Smash Mouth - All Star (Karaoke)", - "id": "u66gshUJKwc" - }, - { - "title": "Bob Dylan - Knockin' On Heaven's Door (Karaoke)", - "id": "TXVjSXgxVF4" - }, - { - "title": "Carly Rae Jepsen - Call Me Maybe (Karaoke)", - "id": "T7t-HzsMd7A" - }, - { - "title": "The Marshall Tucker Band - Heard It In A Love Song (Karaoke)", - "id": "AfPn2SGamcY" - }, - { - "title": "The Marshall Tucker Band - Can't You See (Karaoke)", - "id": "4GJn4TD59a4" - }, - { - "title": "Crosby, Stills, Nash and Young - Our House (Karaoke)", - "id": "saE2jAO1Hgs" - }, - { - "title": "Billie Eilish - What Was I Made For? (Karaoke)", - "id": "gkAMuWGiO2s" - }, - { - "title": "Blackpink - Shut Down (Karaoke)", - "id": "YdtBsnfXCrI" - }, - { - "title": "Fleetwood Mac - Landslide (Karaoke)", - "id": "jFWURYygIGM" - }, - { - "title": "Kane Brown - Leave You Alone (Karaoke)", - "id": "FJP6WE0Z3Fo" - }, - { - "title": "Boston - More Than A Feeling (Karaoke)", - "id": "SorO2xw4hI4" - }, - { - "title": "Black Crowes - Hard To Handle (Karaoke)", - "id": "hJkwreM22YY" - }, - { - "title": "Simon & Garfunkel - Mrs. Robinson (Karaoke)", - "id": "NMtUsShaoys" - }, - { - "title": "Culture Club - Karma Chameleon (Karaoke)", - "id": "sF2Uo9SxtA8" - }, - { - "title": "Dexys Midnight Runners - Come On Eileen (Karaoke)", - "id": "yL1_GQCl83I" - }, - { - "title": "Smokey Robinson & The Miracles - Tracks Of My Tears (Karaoke)", - "id": "_da1LDYXQ5M" - }, - { - "title": "Bob Marley And The Wailers - Could You Be Loved (Karaoke)", - "id": "7bYv6rZT0Bc" - }, - { - "title": "Bob Marley And The Wailers - No Woman No Cry (Karaoke)", - "id": "czo8QCdbXWQ" - }, - { - "title": "Bob Marley - Three Little Birds (Karaoke)", - "id": "3ixbP4IdcwI" - }, - { - "title": "Jelly Roll - She (Karaoke)", - "id": "n1e5o5iNwMQ" - }, - { - "title": "Olivia Rodrigo - Bad Idea Right? (Karaoke)", - "id": "b4ITi2IS1lk" - }, - { - "title": "Pink - Courage (Karaoke)", - "id": "Fq4F5di9dV4" - }, - { - "title": "Jungle - Back On 74 (Karaoke)", - "id": "CNekgI9BYHc" - }, - { - "title": "Depeche Mode - Strangelove (Karaoke)", - "id": "dIJSQiiGx8Y" - }, - { - "title": "Janet Jackson - Miss You Much (Karaoke)", - "id": "sfMoUeoJQEs" - }, - { - "title": "Oasis - Roll With It (Karaoke)", - "id": "jY9-qbBermA" - }, - { - "title": "Trace Adkins - Don't Lie (Karaoke)", - "id": "53Zm3a6gFbY" - }, - { - "title": "Natasha Bedingfield - Strip Me (Karaoke)", - "id": "avubQFZkbeI" - }, - { - "title": "David Archuleta - Crush (Karaoke)", - "id": "_rcH1HbBErQ" - }, - { - "title": "Miranda Lambert - Roots And Wings (Karaoke)", - "id": "RQ-ZoRHwSxw" - }, - { - "title": "Kina feat. Snow - Get You The Moon (Karaoke)", - "id": "0l-DY9-TRqk" - }, - { - "title": "Elton John & Kiki Dee - Don't Go Breaking My Heart (Karaoke)", - "id": "yPRUivDibN4" - }, - { - "title": "Men At Work - Down Under (Karaoke)", - "id": "Uc9pOuLUfVA" - }, - { - "title": "Roger Miller - Do-Wacka-Do (Karaoke)", - "id": "W7p2a9V0dlQ" - }, - { - "title": "Dixie Chicks - Loving Arms (Karaoke)", - "id": "KUNN0NVvAvE" - }, - { - "title": "Frank Sinatra - That's Life (Karaoke)", - "id": "ak1hX71QkTQ" - }, - { - "title": "Garth Brooks - Friends In Low Places (Karaoke)", - "id": "0ps5s9pqHxk" - }, - { - "title": "Carole King - It's Too Late (Karaoke)", - "id": "ilfqCzEdBMo" - }, - { - "title": "Earth, Wind & Fire - September (Karaoke)", - "id": "j2UfCZhGbS0" - }, - { - "title": "Daniel Powter - Bad Day (Karaoke)", - "id": "SKQKB7dhqqg" - }, - { - "title": "The Supremes - Baby Love (Karaoke)", - "id": "lYTHv9ybFLo" - }, - { - "title": "Miranda Lambert - New Strings (Karaoke)", - "id": "dQzocQwgtD4" - }, - { - "title": "Tony Bennett - I Left My Heart In San Francisco (Karaoke)", - "id": "4S6KSbZtAMI" - }, - { - "title": "Leo Sayer - You Make Me Feel Like Dancing (Karaoke)", - "id": "piEHiZvxUMQ" - }, - { - "title": "Rod Stewart - Have I Told You Lately (Karaoke)", - "id": "MUZzqw0CiMI" - }, - { - "title": "Luke Combs - Love You Anyway (Karaoke)", - "id": "gR9HPmf3j1A" - }, - { - "title": "Bruce Springsteen - Tenth Avenue Freeze Out (Karaoke)", - "id": "I1UabHRjUv4" - }, - { - "title": "A Flock Of Seagulls - The More You Live The More You Love (Karaoke)", - "id": "N62LZeR4d4M" - }, - { - "title": "Zac Brown Band - Chicken Fried (Karaoke)", - "id": "Ml0CmqBLMpk" - }, - { - "title": "Neil Diamond - Sweet Caroline (Karaoke)", - "id": "YXaCQpchaHA" - }, - { - "title": "Lady Gaga and Bradley Cooper - Shallow (Karaoke)", - "id": "SamLsTzozvo" - }, - { - "title": "James Taylor - Up On The Roof (Karaoke)", - "id": "gXBPMCsAMhk" - }, - { - "title": "David Bowie - Space Oddity (Karaoke)", - "id": "_HHcqRNuzLo" - }, - { - "title": "Joni Mitchell - Both Sides Now (Karaoke)", - "id": "MSU08NpSmko" - }, - { - "title": "Fleetwood Mac - Gypsy (Karaoke)", - "id": "B4He7RRhuYA" - }, - { - "title": "Alanis Morissette - Hand In My Pocket (Karaoke)", - "id": "0oA4MeO1Qho" - }, - { - "title": "Creed - With Arms Wide Open (Karaoke)", - "id": "p_yVBHNtffs" - }, - { - "title": "Jim Croce - Time In A Bottle (Karaoke)", - "id": "d7GNLFx5Lls" - }, - { - "title": "Jeffrey Osborne - On The Wings Of Love (Karaoke)", - "id": "DA1bnMlzJTg" - }, - { - "title": "Creedence Clearwater Revival - Bad Moon Rising (Karaoke)", - "id": "xhBP-V4JH_g" - }, - { - "title": "Loretta Lynn - Coal Miner's Daughter (Karaoke)", - "id": "BLjJUw2-7Mg" - }, - { - "title": "Loretta Lynn - You Ain't Woman Enough To Take My Man (Karaoke)", - "id": "OvpUV4xIP5s" - }, - { - "title": "Tim McGraw - Humble And Kind (Karaoke)", - "id": "ZDIqy_x-5Gs" - }, - { - "title": "Elton John - Rocket Man (Karaoke)", - "id": "6BbMNfaK1To" - }, - { - "title": "David Allan Coe - You Never Even Called Me By My Name (Karaoke)", - "id": "nqUx6wKtoAc" - }, - { - "title": "Chris Stapleton & Justin Timberlake - Tennessee Whiskey (Karaoke)", - "id": "oiDK2UyWUmM" - }, - { - "title": "R.E.M. - The One I Love (Karaoke)", - "id": "BAxmP9fggAI" - }, - { - "title": "Billy Joel - Just The Way You Are (Karaoke)", - "id": "dlAt9-LUdsc" - }, - { - "title": "Creed - My Sacrifice (Karaoke)", - "id": "pvuN-284L8s" - }, - { - "title": "Ellie Goulding - Anything Could Happen (Karaoke)", - "id": "CZ51ZgZaWbU" - }, - { - "title": "Whitney Houston - The Greatest Love Of All (Karaoke)", - "id": "AMHhjVt8Nes" - }, - { - "title": "Hank Williams - You Win Again (Karaoke)", - "id": "-hq1XG3UVQ0" - }, - { - "title": "Usher - Can U Help Me (Karaoke)", - "id": "aW_LNs3bE14" - }, - { - "title": "Usher - U Remind Me (Karaoke)", - "id": "z3gE1zJG7LI" - }, - { - "title": "Usher and Juicy J - I Don't Mind (Karaoke)", - "id": "zy6jthbi6_M" - }, - { - "title": "Usher, Will.I.Am. - OMG (Karaoke)", - "id": "FGSXsuzcslY" - }, - { - "title": "John Legend - All Of Me (Karaoke)", - "id": "HTjor4xWCZ8" - }, - { - "title": "Olivia Rodrigo - Vampire (Karaoke)", - "id": "zQIJHRTKPSc" - }, - { - "title": "Toby Keith - I Love This Bar (Karaoke)", - "id": "CZKy89K_yTE" - }, - { - "title": "Toby Keith - It's All Good (Karaoke)", - "id": "_j5YTbnHt7c" - }, - { - "title": "Toby Keith - Big Ol' Truck (Karakoe)", - "id": "YChVwPJmuGQ" - }, - { - "title": "Toby Keith and Sting - I'm So Happy I Can't Stop Crying (Karaoke)", - "id": "F7nWVltTyfQ" - }, - { - "title": "Toby Keith And Willie Nelson - Beer For My Horses (Karaoke)", - "id": "IZSf6T9tjtQ" - }, - { - "title": "Noah Kahan and Post Malone - Dial Drunk (Karaoke)", - "id": "0NrxzOdAqow" - }, - { - "title": "Chayce Beckham - 23 (Karaoke)", - "id": "JEyKBg5Q9KY" - }, - { - "title": "Post Malone - Overdrive (Karaoke)", - "id": "FefmrR2C1lw" - }, - { - "title": "Lykke Li - Tonight (Karaoke)", - "id": "G43rFSjMPyc" - }, - { - "title": "Barry Manilow - Venus (Karaoke)", - "id": "bj2pU_LymP0" - }, - { - "title": "Diamond Rio - It's All In Your Head (Karaoke)", - "id": "bPU0NgufXc8" - }, - { - "title": "Rascal Flatts - Why (Karaoke)", - "id": "J5fn1_etcug" - }, - { - "title": "Aaron Lines - It Takes A Man (Karaoke)", - "id": "5z6X65cfezU" - }, - { - "title": "Jamie O'Neal - Every Little Thing (Karaoke)", - "id": "AMZiu3P9tOY" - }, - { - "title": "Collective Soul - Blame (Karaoke)", - "id": "jEDeHGbTY3c" - }, - { - "title": "Tanya Tucker, Paul Davis & Paul Overstreet - I Won't Take Less Than Your Love (Karaoke)", - "id": "hL-l1Cop_pI" - }, - { - "title": "Dierks Bentley - Up On The Ridge (Karaoke)", - "id": "osDYVIyQVYg" - }, - { - "title": "The Notorious B.I.G - Hypnotize (Karaoke)", - "id": "VL_U1oELfBY" - }, - { - "title": "50 Cent - Disco Inferno (Karaoke)", - "id": "AvedELdsk-Y" - }, - { - "title": "NSYNC - Everything I Own (Karaoke)", - "id": "qya_Ncma3VQ" - }, - { - "title": "Kesha - Tik Tok (Karaoke)", - "id": "dugwcptOZAo" - }, - { - "title": "Adam Lambert - Want (Karaoke)", - "id": "9Gjpio9iCWs" - }, - { - "title": "David Houston & Tammy Wynette - My Elusive Dreams (Karaoke)", - "id": "PNwpp4pLQm4" - }, - { - "title": "John Anderson - The Big Revival (Karaoke)", - "id": "zBVnxw5ujMw" - }, - { - "title": "Pink - Irrelevant (Karaoke)", - "id": "I8gJIqmfWzo" - }, - { - "title": "Mickey Gilley - Stand By Me (Karaoke)", - "id": "DEy35Uh5fw8" - }, - { - "title": "Toby Keith - Upstairs Downtown (Karaoke)", - "id": "zR266E_xdoY" - }, - { - "title": "Toby Keith - Wish I Didn't Know Now (Karaoke)", - "id": "8d3GBh761mM" - }, - { - "title": "Toby Keith - Should've Been A Cowboy (Karaoke)", - "id": "1x1GTeDceiY" - }, - { - "title": "Toby Keith - As Good As I Once Was (Karaoke)", - "id": "gr-epcNbcG4" - }, - { - "title": "Toby Keith - Courtesy Of The Red, White And Blue (Karaoke)", - "id": "YdqLYELl8HM" - }, - { - "title": "Toby Keith - Red Solo Cup (Karaoke)", - "id": "T9snBFaUqe8" - }, - { - "title": "Toby Keith - My List (Karaoke)", - "id": "guYku2bV9Mk" - }, - { - "title": "2Pac - I Get Around (Karaoke)", - "id": "v622cEPmrIU" - }, - { - "title": "Jo Dee Messina - Burn (Karaoke)", - "id": "nslHrYV8xKk" - }, - { - "title": "The Roots - Don't Say Nuthin' (Karaoke)", - "id": "8NT8nYUwshg" - }, - { - "title": "Kelly Clarkson - Addicted (Karaoke)", - "id": "QVbKdV-SGR4" - }, - { - "title": "Donna Fargo - Little Girl Gone (Karaoke)", - "id": "SVvx5afS6BU" - }, - { - "title": "Captain & Tennille - Keeping Our Love Warm (Karaoke)", - "id": "oL-SKCpGsIU" - }, - { - "title": "Tanya Tucker - My Arms Stay Open All Night (Karaoke)", - "id": "_oAVVDuDwb0" - }, - { - "title": "Backstreet Boys - Inconsolable (Karaoke)", - "id": "sgZtwEd4s6g" - }, - { - "title": "Elton John - The Bitch Is Back (Karaoke)", - "id": "dCfTxJqcx-o" - }, - { - "title": "Reba McEntire - Read My Mind (Karaoke)", - "id": "AKpaSvI1TOc" - }, - { - "title": "R.E.M. - Stand (Karaoke)", - "id": "ycxLGX9haEo" - }, - { - "title": "ABC - When Smokey Sings (Karaoke)", - "id": "YZ8v_vI0gIQ" - }, - { - "title": "Blur - The Narcissist (Karaoke)", - "id": "8Ab0N5R_48I" - }, - { - "title": "Noah Kahan - Stick Season (Karaoke)", - "id": "AG0GzdUNgEo" - }, - { - "title": "Meredith Brooks - Bitch (Karaoke)", - "id": "f9QASnA7RGk" - }, - { - "title": "Bullet For My Valentine - All These Things (Karaoke)", - "id": "qbayaKR_O_c" - }, - { - "title": "Avril Lavigne - I'm With You (Karaoke)", - "id": "xKxdSwEyxKM" - }, - { - "title": "98 Degrees - My Everything (Karaoke)", - "id": "lvEHupuz8bs" - }, - { - "title": "Craig Morgan - International Harvester (Karaoke)", - "id": "aPUsBRhzqNk" - }, - { - "title": "Charley Pride - Kaw-Liga (Karaoke)", - "id": "bSK08brbdKs" - }, - { - "title": "The Judds - Rockin' With The Rhythm Of The Rain (Karaoke)", - "id": "5NHwQ7AJCwk" - }, - { - "title": "Jim Reeves - Four Walls (Karaoke)", - "id": "RJvMpoJoGuM" - }, - { - "title": "Cole Swindell - Chillin' It (Karaoke)", - "id": "eKQZcTewXOg" - }, - { - "title": "ABC - The Look Of Love (Karaoke)", - "id": "ldFzhFGsgt0" - }, - { - "title": "Simon And Garfunkel - The Boxer (Karaoke)", - "id": "T27eNypseVY" - }, - { - "title": "Annie Lennox & Al Green - Put A Little Love In Your Heart (Karaoke)", - "id": "A9CftG4UfTs" - }, - { - "title": "Louis Tomlinson - Bigger Than Me (Karaoke)", - "id": "FkTz29YCj4U" - }, - { - "title": "Peggy Gou - (It Goes Like) Nanana (Karaoke)", - "id": "1tly1lnOksI" - }, - { - "title": "Olivia Rodrigo - All-American Bitch (Karaoke)", - "id": "hlfEzucBt1I" - }, - { - "title": "Jung Kook feat. Latto - Seven (Duet Version) (clean) (Karaoke)", - "id": "UY0XsQlolwA" - }, - { - "title": "Russ - Nasty (clean) (Karaoke)", - "id": "y_F8FZnEZN8" - }, - { - "title": "Sonya Isaacs - I've Forgotten How You Feel (Karaoke)", - "id": "uTU7s9ipsJI" - }, - { - "title": "Barry Manilow - It's Not For Me To Say (Karaoke)", - "id": "5E3aByhx8mM" - }, - { - "title": "Alan Jackson - Right On The Money (Karaoke)", - "id": "i6K7IXFBYi4" - }, - { - "title": "Anne Murray - Danny's Song (Karaoke)", - "id": "jR6M7zBrEGE" - }, - { - "title": "Melanie - Brand New Key (Karaoke)", - "id": "hDNnQQfZVtQ" - }, - { - "title": "Louis Armstrong - What A Wonderful World (Karaoke)", - "id": "Z9_pAFKHe_w" - }, - { - "title": "R.E.M. - Finest Worksong (Karaoke)", - "id": "7eJwK0HtNdE" - }, - { - "title": "Kenny Chesney - Da Ruba Girl (Karaoke)", - "id": "Cw_bye6EXV0" - }, - { - "title": "The Yeah Yeah Yeahs - Zero (Karaoke)", - "id": "AkBDFNOZJM8" - }, - { - "title": "Dermot Kennedy - Donโ€™t Forget Me (Karaoke)", - "id": "9lWaxCaEaB8" - }, - { - "title": "Bonnie Tyler - Holding Out For A Hero (Karaoke)", - "id": "7wWCNC8zbN4" - }, - { - "title": "Adam Ant - Goody Two Shoes (Karaoke)", - "id": "ceWtFdYnZss" - }, - { - "title": "Crowded House - Don't Dream It's Over (Karaoke)", - "id": "78OY2lj6hUI" - }, - { - "title": "Jelly Roll - Need A Favor (Karaoke)", - "id": "V6FZDlSluTQ" - }, - { - "title": "Jason Aldean - She's Country (Karaoke)", - "id": "HAyehr0BP7Q" - }, - { - "title": "George Strait - Lovesick Blues (Karaoke)", - "id": "EYiCJypp79s" - }, - { - "title": "Colbie Caillatt - I Do (Karaoke)", - "id": "9YTLSwVODpk" - }, - { - "title": "Charley Pride - You're My Jamaica (Karaoke)", - "id": "QUE4xBCW_4s" - }, - { - "title": "Lana Del Rey - Blue Jeans (clean) (Karaoke)", - "id": "368VqgbxS1A" - }, - { - "title": "Pink - Blow Me (One Last Kiss) (clean) (Karaoke)", - "id": "sCYf9-2VakQ" - }, - { - "title": "Pink Ftg. The Indigo Girls - Dear Mr. President (Karaoke)", - "id": "Wvk092M_3Io" - }, - { - "title": "Paula Abdul - Forever Your Girl (Karaoke)", - "id": "WfT4PmbHDPI" - }, - { - "title": "Pink - Trustfall (Karaoke)", - "id": "Zxqk-xbIejY" - }, - { - "title": "Ice Cube - It Was A Good Day (Karaoke)", - "id": "8pZAV9UP4C0" - }, - { - "title": "Reba McEntire feat. Kelly Clarkson - Because Of You (Karaoke)", - "id": "VcUzFUA3b_w" - }, - { - "title": "Oliver - The Musical - Consider Yourself (Karaoke)", - "id": "vjaIQ4Kq3FQ" - }, - { - "title": "Stray Cats - Stray Cat Strut (Karaoke)", - "id": "tTRNBFOLves" - }, - { - "title": "Stray Cats - Rock This Town (Karaoke)", - "id": "GWwwmSqmac4" - }, - { - "title": "Dolly Parton - Don't Make Me Have To Come Down There (Karaoke)", - "id": "6jAlP5ha6tk" - }, - { - "title": "Frank Sinatra - Love And Marriage (Karaoke)", - "id": "o-8h0hhTX5o" - }, - { - "title": "Michael Buble - Come Fly With Me (Karaoke)", - "id": "8CgEB8f4t-0" - }, - { - "title": "Christina Aguilera - Genie In A Bottle (Karaoke)", - "id": "FSO1z0Qk2zc" - }, - { - "title": "Simply Red - Stars (Karaoke)", - "id": "JXm_gyox9wY" - }, - { - "title": "Bob Hope - Thanks For The Memory (Karaoke)", - "id": "uYZH0NW97kQ" - }, - { - "title": "Bob Kuban & The In-Men - The Cheater (Karaoke)", - "id": "AQFX97gslfY" - }, - { - "title": "Jack Blanchard and Misty Morgan - Tennessee Bird Walk (Karaoke)", - "id": "5M05eNv1b4s" - }, - { - "title": "Ke$ha - We R Who We R (Karaoke)", - "id": "pHavBeMz788" - }, - { - "title": "Justin Bieber - Roller Coaster (Karaoke)", - "id": "Ek9BT7ka-00" - }, - { - "title": "Justin Bieber - Favorite Girl (Karaoke)", - "id": "45cc5n0G1pY" - }, - { - "title": "Johnny Mathis - The Twelfth Of Never (Karaoke)", - "id": "z9QHjeHLTjU" - }, - { - "title": "Ingrid Michaelson - The Way I Am (Karaoke)", - "id": "1lz23gemdtA" - }, - { - "title": "Aloe Blacc - I Need A Dollar (Karaoke)", - "id": "78zzgI9HIAM" - }, - { - "title": "Brother Marshall and The Choir of Fire feat. Sturgill Simpson - All The Gold In California (Karaoke)", - "id": "xXerLH8R-98" - }, - { - "title": "Coi Leray - Players (Karaoke)", - "id": "6rs6-tT2FQg" - }, - { - "title": "Divinyls - I Touch Myself (Karaoke)", - "id": "FNqci3xCCjY" - }, - { - "title": "Hellogoodbye - Here (In Your Arms) (Karaoke)", - "id": "vGAZHXlV_zA" - }, - { - "title": "Mama Cass Elliot - Make Your Own Kind Of Music (Karaoke)", - "id": "l_RhavW3DZs" - }, - { - "title": "Charlie Puth - Loser (Karaoke)", - "id": "waZWz6kb3Us" - }, - { - "title": "Shawn Mendes - When You're Gone (Karaoke)", - "id": "B9Yz0l8BG-g" - }, - { - "title": "Pink - Hate Me (Karaoke)", - "id": "nNWjH3oXvE0" - }, - { - "title": "Post Malone - Mourning (Karaoke)", - "id": "6ZpCopQMEzU" - }, - { - "title": "Anne-Marie feat. Shania Twain - Unhealthy (Karaoke)", - "id": "KmFbQsg8nls" - }, - { - "title": "Chicago - Saturday In The Park (Karaoke)", - "id": "wT0NEuKky34" - }, - { - "title": "Celine Dion - My Heart Will Go On (Karaoke)", - "id": "sxnObdNtYhg" - }, - { - "title": "Rick Springfield - Jesse's Girl (Karaoke)", - "id": "IRNyrCjODdI" - }, - { - "title": "Dave Clark Five - Bits And Pieces (Karaoke)", - "id": "ALuNosHpMiM" - }, - { - "title": "One Direction - Infinity (Karaoke)", - "id": "er-drSUlr3I" - }, - { - "title": "Camila Cabello - Cry For Me (Karaoke)", - "id": "4z8hf7yj4tk" - }, - { - "title": "Camila Cabello - Shameless (Karaoake)", - "id": "FxN8M_ggxpw" - }, - { - "title": "Daniel Powter - Bad Day (Karaoke)", - "id": "H6ugZuVNJqI" - }, - { - "title": "Lana Del Rey - Born To Die (Karaoke)", - "id": "J81ocAEJAV0" - }, - { - "title": "Lana Del Rey - Carmen (Karaoke)", - "id": "Y0sQ5vRpaCs" - }, - { - "title": "Lana Del Rey - Ultraviolence (Karaoke)", - "id": "gKbgQL0wFWM" - }, - { - "title": "Olivia Rodrigo - Vampire (Karaoke)", - "id": "KVYmJ2KP1tE" - }, - { - "title": "Pink - Ave Mary A (Karaoke)", - "id": "Wu6fJqE8W9s" - }, - { - "title": "Pink - Missundaztood (Karaoke)", - "id": "lJRP7Olagh4" - }, - { - "title": "Lady Gaga - Beautiful, Dirty, Rich (Karaoke)", - "id": "xM58VAEWzh0" - }, - { - "title": "Amy Winehouse - Love Is A Losing Game (Karaoke)", - "id": "maRnKd9TIjA" - }, - { - "title": "Amy Winehouse - I Heard Love Is Blind (Karaoke)", - "id": "884tn5ShiYA" - }, - { - "title": "Johnny Mathis - Chances Are (Karaoke)", - "id": "q3CIf6c2x7o" - }, - { - "title": "My Chemical Romance - Desolation Row (Karaoke)", - "id": "VJxvXBKa_1Q" - }, - { - "title": "Prince - 1999", - "id": "Dvtqk6sJGZs" - }, - { - "title": "Bruce Springsteen - Glory Days (Karaoke)", - "id": "tuE0PKxgCAs" - }, - { - "title": "Charlie Puth feat. Meghan Trainor - Marvin Gaye (Karaoke)", - "id": "T4bahL9vyxM" - }, - { - "title": "Prince And The Revolution - Kiss (Karaoke)", - "id": "YyhYqTXI0co" - }, - { - "title": "Dixie Chicks - Sin Wagon (Karaoke)", - "id": "ol0EoeNhGdo" - }, - { - "title": "Bruce Springsteen - Thunder Road (Karaoke)", - "id": "iuNpJRzA2As" - }, - { - "title": "Miley Cyrus - Rose Colored Lenses (Karaoke)", - "id": "MVN0tAkKqhY" - }, - { - "title": "Prince And The Revolution - Raspberry Beret (Karaoke)", - "id": "b3KkuhAPnDk" - }, - { - "title": "Prince - Little Red Corvette (Karaoke)", - "id": "j_1sz6tu-QM" - }, - { - "title": "Van Halen - You Really Got Me (Karaoke)", - "id": "Y1e1zZXBr7A" - }, - { - "title": "Sinead O'Connor - Nothing Compares 2 U (Karaoke)", - "id": "2N_olYPA9l8" - }, - { - "title": "One Direction - Drag Me Down (Karaoke)", - "id": "enK1o_65Cyk" - }, - { - "title": "Good Charlotte - The Anthem (Karaoke)", - "id": "XtzfvlQ4cus" - }, - { - "title": "Prince And The Revolution - Purple Rain (Karaoke)", - "id": "K06dZ-834YY" - }, - { - "title": "The Kid LAROI - Love Again (Karaoke)", - "id": "5_QR8KWA7gg" - }, - { - "title": "Patti Smith - Because The Night (Karaoke)", - "id": "k3g4kqZdTYw" - }, - { - "title": "Bruce Springsteen - Badlands (Karaoke)", - "id": "g89b90bQB5k" - }, - { - "title": "Bruce Springsteen - Rosalita (Come Out Tonight) (Karaoke)", - "id": "5eZjPt7YwaM" - }, - { - "title": "Bruce Springsteen - I'm On Fire (Karaoke)", - "id": "5WvvBSopYGo" - }, - { - "title": "PinkPantheress - Angel โ€“ (From Barbie 2023)", - "id": "DOUBWn-1mpY" - }, - { - "title": "Post Malone - Chemical (Karaoke)", - "id": "ssVriLuPYTs" - }, - { - "title": "Miley Cyrus - Jaded (Karaoke)", - "id": "3NZMf6C3ry4" - }, - { - "title": "Fall Out Boy - My Songs Know What You Did In The Dark (Light Em Up) (Karaoke)", - "id": "V3PDgSW6CRw" - }, - { - "title": "The Everly Brothers - Till I Kissed Ya (Karaoke)", - "id": "_Or_pstnERQ" - }, - { - "title": "Jelly Roll - Son Of A Sinner (Karaoke)", - "id": "XrTo3wcf630" - }, - { - "title": "Blake Shelton - No Body (Karaoke)", - "id": "Y0vvJDdPcmA" - }, - { - "title": "Luke Combs - Love You Anyway (Karaoke)", - "id": "wd6BZ8s3YSY" - }, - { - "title": "Paul Simon - Still Crazy After All These Years (Karaoke)", - "id": "mK6RunIfUzo" - }, - { - "title": "Paul Simon - Me And Julio (Down By The Schoolyard) (Karaoke)", - "id": "sCfWuPc96rY" - }, - { - "title": "Paul Simon - Kodachrome (Karaoke)", - "id": "6zYDk2VeBMA" - }, - { - "title": "Jason Derulo feat. Adam Levine - Lifestyle (Karaoke)", - "id": "y_J6lP9lMyc" - }, - { - "title": "Barbra Streisand & Donna Summer - No More Tears (Enough Is Enough) (Karaoke)", - "id": "xepgyRZrl24" - }, - { - "title": "The Clash - I Fought The Law (Karaoke)", - "id": "jgUIEFXYH4A" - }, - { - "title": "Dave Clark Five - Catch Us If You Can (Karaoke)", - "id": "MPW4FPFrRvg" - }, - { - "title": "Paul Simon - You Can Call Me Al (Karaoke)", - "id": "dEOZMKgC68k" - }, - { - "title": "Vince Gill - Someday (Karaoke)", - "id": "3x_05KOhT2k" - }, - { - "title": "Tammy Wynette - I Still Believe In Fairy Tales (Karaoke)", - "id": "PB8i7VfbYgY" - }, - { - "title": "Tammy Wynette - Run Woman Run (Karaoke)", - "id": "aSPHg18YFf4" - }, - { - "title": "Bread - Mother Freedom (Karaoke)", - "id": "sVeofb372nU" - }, - { - "title": "MK - 17 (Karaoke)", - "id": "l9-uh7_4AMs" - }, - { - "title": "Avril Lavigne - When You're Gone (Karaoke)", - "id": "TCgseYhPw5E" - }, - { - "title": "Avicci - You Make Me (Karaoke)", - "id": "gi89OhR0L50" - }, - { - "title": "Gene Autry - Gonna Build A Big Fence Around Texas (Karaoke)", - "id": "ZSGNm2zDEkM" - }, - { - "title": "Patsy Cline - Fingerprints (Karaoke)", - "id": "IgN88BfjjZE" - }, - { - "title": "Patsy Cline - Stop Look And Listen (Karaoke)", - "id": "eQ4vDgaYKPs" - }, - { - "title": "Paul Simon - Slip Slidin' Away (Karaoke)", - "id": "_qgHx4xUmmE" - }, - { - "title": "Patsy Cline - The Heart You Break May Be Your Own (Karaoke)", - "id": "yKsdlo1d-xs" - }, - { - "title": "Patsy Cline - I Can See An Angel (Karaoke)", - "id": "_VBanjpG6c0" - }, - { - "title": "Patsy Cline - I Can't Forget You (Karaoke)", - "id": "NrEKaEJdPxM" - }, - { - "title": "Milky Chance - Stolen Dance (Karaoke)", - "id": "yRp9bOtAwKg" - }, - { - "title": "Diamond Rio - Imagine That (Karaoke)", - "id": "ulv7srA8LMI" - }, - { - "title": "Neal McCoy - The Girls Of Summer (Karaoke)", - "id": "Y2vO2i4wwrc" - }, - { - "title": "Akon - Don't Matter (Karaoke)", - "id": "MBB9Na8amRY" - }, - { - "title": "Paula Cole - Me (Karaoke)", - "id": "7tLY_tccgBU" - }, - { - "title": "Alicia Keys - No One (Karaoke)", - "id": "wRwSnCB3SKA" - }, - { - "title": "Ellie Goulding - Lights (Karaoke)", - "id": "8R_cDCTXf10" - }, - { - "title": "Lana Del Rey - Video Games (Karaoke)", - "id": "PMXcKVb3Fj0" - }, - { - "title": "Matchbox Twenty - Girl Like That (Karaoke)", - "id": "q1yqPossJNM" - }, - { - "title": "Tommy Roe - Heather Honey (Karaoke)", - "id": "5PFX_q3AeZM" - }, - { - "title": "Travis Tritt - It's A Great Day To Be Alive (Karaoke)", - "id": "dFGzmi8PVhk" - }, - { - "title": "Vince Gill - Tryin' To Get Over You (Karaoke)", - "id": "ZKGzzl0Jlcc" - }, - { - "title": "Waylon Jennings - Lucille (You Won't Do Your Daddy's Will) (Karaoke)", - "id": "HaPEZqReHAM" - }, - { - "title": "Travis Tritt - T-r-o-u-b-l-e (Karaoke)", - "id": "Bo5U0Jv1sEA" - }, - { - "title": "Ferlin Husky - My Reason For Living (Karaoke)", - "id": "_zTCZ4Hq_-Y" - }, - { - "title": "Martika - Toy Soldiers (Karaoke)", - "id": "cs2YU_eBW6w" - }, - { - "title": "G-Eazy feat. Jack Harlow - Moana (Duet Version) (clean)", - "id": "uJYYj7OYspY" - }, - { - "title": "Marcie Blane - Bobby's Girl (Karaoke)", - "id": "NvPGl_1K-ts" - }, - { - "title": "Bruce Springsteen - Tenth Avenue Freeze Out (Karaoke)", - "id": "ewynXiJOlxI" - }, - { - "title": "Bruce Springsteen - Dancing In The Dark (Karaoke)", - "id": "KNiFNZ3VGtg" - }, - { - "title": "Faron Young - Sweet Dreams (Karaoke)", - "id": "KYNrnqoUEw4" - }, - { - "title": "Faron Young - Wine Me Up (Karaoke)", - "id": "x6bfTyotuHg" - }, - { - "title": "Aaron Tippin - What This Country Needs (Karaoke)", - "id": "J92m2xUd3yY" - }, - { - "title": "The Bellamy Brothers - Dancin' Cowboys (Karaoke)", - "id": "U0BU1glwTNU" - }, - { - "title": "The Forester Sisters - Letter Home (Karaoke)", - "id": "B30z0mK8JHU" - }, - { - "title": "Bruce Springsteen - My Hometown (Karaoke)", - "id": "a5BxTde7E9o" - }, - { - "title": "Incubus - Nice To Know You (Karaoke EZ Sing)", - "id": "ywM-zA32ysI" - }, - { - "title": "Manfred Mann's Earth Band - Blinded By The Light (Karaoke EZ Sing)", - "id": "pArSbmC-9Ok" - }, - { - "title": "Rod Stewart - Tonight's The Night (Gonna Be Alright) (Karaoke EZ Sing)", - "id": "NUu-gxy6PLY" - }, - { - "title": "Emotions - Best Of My Love (Karaoke EZ Sing)", - "id": "SDnUqbvkFFA" - }, - { - "title": "Paul Davis - I Go Crazy (Karaoke EZ Sing)", - "id": "EU6VOK9Au9E" - }, - { - "title": "En Vogue - Free Your Mind (Karaoke EZ Sing)", - "id": "chuyG05sup4" - }, - { - "title": "R. Kelly - World's Greatest (Karaoke EZ Sing)", - "id": "3XOoPMgmaIc" - }, - { - "title": "BBMak - Back Here (Karaoke EZ Sing)", - "id": "eAxpxrZDb6E" - }, - { - "title": "Mullins-Black - You Didn't Did Ya (Karaoke EZ Sing)", - "id": "vhK17SB4paA" - }, - { - "title": "City High - Caramel (Karaoke EZ Sing)", - "id": "n29asdt4p4s" - }, - { - "title": "Elvis Presley - Where Did They Go Lord (Karaoke EZ Sing)", - "id": "ObxvxFSqemc" - }, - { - "title": "Elvis Presley - C'mon Everybody (Karaoke EZ Sing)", - "id": "QZr3t9A07rQ" - }, - { - "title": "Paul Young - Everytime You Go Away (Karaoke EZ Sing)", - "id": "qW8YUJxAhKA" - }, - { - "title": "SHeDaisy - This Woman Needs (Karaoke EZ Sing)", - "id": "UzhOmVV1NmM" - }, - { - "title": "Christina Aguilera - Love For All Seasons (Karaoke EZ Sing)", - "id": "M5xFll0CUmM" - }, - { - "title": "Mindy McCready - All I Want Is Everything (Karaoke EZ Sing)", - "id": "3FGq300lP-k" - }, - { - "title": "Mary J. Blige - Deep Inside (Karaoke EZ Sing)", - "id": "hqCbT2wXaLU" - }, - { - "title": "Vince Gill - You Better Think Twice (Karaoke)", - "id": "74sZzMpu3RM" - }, - { - "title": "Bruce Springsteen - Land Of Hope And Dreams (Karaoke)", - "id": "Ii_A6AoymeU" - }, - { - "title": "Willie Nelson And Leon Russell - Heartbreak Hotel (Karaoke)", - "id": "TA6O_XJIdX8" - }, - { - "title": "Patsy Cline - Honky Tonk Merry Go Round (Karaoke)", - "id": "iIZIRtJDwVg" - }, - { - "title": "Patsy Cline - Let The Teardrops Fall (Karaoke)", - "id": "hQJQ2ksFDdw" - }, - { - "title": "Patsy Cline - I Don't Wanta (Karaoke)", - "id": "TX9WB90ji_4" - }, - { - "title": "Elvis Presley - Steamroller Blues (Karaoke EZ Sing)", - "id": "Ettiqw3rkyE" - }, - { - "title": "Elvis Presley - Long Tall Sally / Whole Lotta Shakin' (Karaoke EZ Sing)", - "id": "2kat09tY-fw" - }, - { - "title": "Elvis Presley - Rubberneckin' (Karaoke EZ Sing)", - "id": "4L87i_nAhq8" - }, - { - "title": "Travis Tritt - Sign Of The Times (Karaoke EZ Sing)", - "id": "lKQ_mNDeFG8" - }, - { - "title": "R. Kelly - Bump 'N' Grind (Karaoke EZ Sing)", - "id": "bBmZzgbAQYo" - }, - { - "title": "Elvis Presley - Wear My Ring Around Your Neck (Karaoke EZ Sing)", - "id": "G8shx0uAflc" - }, - { - "title": "Reba McEntire - Till You Love Me (Karaoke EZ Sing)", - "id": "dVtmCQSswr4" - }, - { - "title": "Reba McEntire - Read My Mind (Karaoke EZ Sing)", - "id": "UEzmt7pGssc" - }, - { - "title": "Dionne Warwick - I'll Never Love This Way Again (Karaoke EZ Sing)", - "id": "HerGJZ0d6-M" - }, - { - "title": "Dionne Warwick - I Say A Little Prayer (Karaoke EZ Sing)", - "id": "KvMMX1iNA6c" - }, - { - "title": "McCarters - Gift (The Gift) (Karaoke EZ Sing)", - "id": "QI2Vmhr-Hb0" - }, - { - "title": "Michael Bolton - Love Is A Wonderful Thing (Karaoke EZ Sing)", - "id": "42JbXTbw2ms" - }, - { - "title": "Oak Ridge Boys - Soul And Inspiration (You're My Soul And Inspiration) (Karaoke EZ Sing)", - "id": "RuLTPa0uiC8" - }, - { - "title": "Kathy Mattea - Whole Lotta Holes (Karaoke EZ Sing)", - "id": "25Pz_7BB8sI" - }, - { - "title": "Mark Chesnutt - Your Love Is A Miracle (Karaoke EZ Sing)", - "id": "QM75zgun9hU" - }, - { - "title": "Paul Overstreet - Sowin' Love (Karaoke EZ Sing)", - "id": "iEfVe1N18B0" - }, - { - "title": "Extreme - More Than Words (Karaoke EZ Sing)", - "id": "IlE2sjxhc18" - }, - { - "title": "Tanya Tucker - Down To My Last Teardrop (Karaoke EZ Sing)", - "id": "5R89O1p87mQ" - }, - { - "title": "Standard - America The Beautiful (Karaoke EZ Sing)", - "id": "YVacbeCar1w" - }, - { - "title": "Loretta Lynn - They Don't Make 'Em Like My Daddy (Karaoke EZ Sing)", - "id": "4ufVnqIIdIQ" - }, - { - "title": "Madonna - Papa Don't Preach (Karaoke EZ Sing)", - "id": "18lX6QBdqo8" - }, - { - "title": "Annie Lennox & Al Green - Put A Little Love In Your Heart (Karaoke EZ Sing)", - "id": "pJCMyr7Loww" - }, - { - "title": "Exile - Keep It In The Middle Of The Road (Karaoke EZ Sing)", - "id": "rpmqFCn2PHA" - }, - { - "title": "Traditional Christmas - We Wish You A Merry Christmas (Karaoke EZ Sing)", - "id": "KNlCnygVtGg" - }, - { - "title": "Marty Robbins - Singing The Blues (Karaoke EZ Sing)", - "id": "sfSN13IA_rE" - }, - { - "title": "Kathy Mattea - Battle Hymn Of Love (Karaoke EZ Sing)", - "id": "kcp4rmHqL30" - }, - { - "title": "Luke Bryan - She Get Me High (Karaoke EZ Sing)", - "id": "iu1g--tTi-0" - }, - { - "title": "Calvin Harris & Alesso ftg. Hurts - Under Control (Karaoke EZ Sing)", - "id": "YScEXIyRqa0" - }, - { - "title": "Lily Allen - Hard Out Here (Karaoke EZ Sing)", - "id": "BZIf6d2_aAc" - }, - { - "title": "Neighbourhood - Sweater Weather (Karaoke EZ Sing)", - "id": "yTWO0EfeU44" - }, - { - "title": "Danielle Bradbery - Young In America (Karaoke EZ Sing)", - "id": "KJsmU1RnkuM" - }, - { - "title": "Boys Like Girls - Heart Heart Heartbreak (Karaoke EZ Sing)", - "id": "FINE8TvSCfM" - }, - { - "title": "Howlin' Wolf - Smokestack Lightning (Karaoke EZ Sing)", - "id": "G_mGb1dHTbA" - }, - { - "title": "Maxwell - Fistful Of Tears (Karaoke EZ Sing)", - "id": "7-9uD8222Mo" - }, - { - "title": "Pat Benatar - All Fired Up (Karaoke EZ Sing)", - "id": "Ve71Ji8kqQY" - }, - { - "title": "Imagine Dragons - On Top Of The World (Karaoke EZ Sing)", - "id": "KP9uu3-Fwiw" - }, - { - "title": "Christina Aguilera - What A Girl Wants (Karaoke EZ Sing)", - "id": "I-ywO1XrUQE" - }, - { - "title": "Eminem - Survival (Karaoke EZ Sing)", - "id": "85je2WPNku0" - }, - { - "title": "Alice In Chains - Your Decision (Karaoke EZ Sing)", - "id": "f8iUT8Fv6dY" - }, - { - "title": "Rubben Studdard - Don't Make 'Em Like U No More (Karaoke EZ Sing)", - "id": "_bThLLi-DwI" - }, - { - "title": "Justin Bieber - All That Matters (Karaoke EZ Sing)", - "id": "RfG4ZoTBXF8" - }, - { - "title": "Turtles - Happy Together (Karaoke EZ Sing)", - "id": "OPp_59TXP8c" - }, - { - "title": "Owl City - Vanilla Twilight (Karaoke EZ Sing)", - "id": "zpUoNp_Cw2g" - }, - { - "title": "Ruben Studdard - Together (Karaoke EZ Sing)", - "id": "m35ix2tMiC8" - }, - { - "title": "Panic! At The Disco - New Perspective (Karaoke EZ Sing)", - "id": "qk4HHgkGfO8" - }, - { - "title": "Randy Travis - How Do I Wrap My Heart Up For Christmas (Karaoke EZ Sing)", - "id": "twh0rx2e6aY" - }, - { - "title": "Patty Loveless - Can't Stop Myself From Loving You (Karaoke EZ Sing)", - "id": "UzSUs35fCBM" - }, - { - "title": "Laura Branigan - Don't Show Your Love (Karaoke EZ Sing)", - "id": "68APd4XfC5w" - }, - { - "title": "DJ Jazzy Jeff & The Fresh Prince - Parents Just Don't Understand (Karaoke EZ Sing)", - "id": "EkwCd4dTDWg" - }, - { - "title": "Don McLean - Vincent (Starry Starry Night) (Karaoke EZ Sing)", - "id": "Z1g_NwrBvts" - }, - { - "title": "Celine Dion & Peabo Bryson - Beauty And The Beast (Karaoke EZ Sing)", - "id": "5XQp2vb2mq8" - }, - { - "title": "Tanya Tucker& T. Graham Brown - Don't Go Out (Karaoke EZ Sing)", - "id": "XSvxa3FYSGg" - }, - { - "title": "K. T. Oslin - Didn't Expect It To Go Down This Way (Karaoke EZ Sing)", - "id": "TFYRCXHd6fY" - }, - { - "title": "Captain & Tennille - Love Will Keep Us Together (Karaoke EZ Sing)", - "id": "faTH2X036oo" - }, - { - "title": "Porter Wagoner - Y'all Come (Karaoke EZ Sing)", - "id": "_ZODMNOMeKA" - }, - { - "title": "Brad Paisley - Me Neither (Karaoke)", - "id": "iTXjps2YVlE" - }, - { - "title": "One Direction - Strong (Karaoke)", - "id": "6uxKL8RBoyY" - }, - { - "title": "Patsy Cline - How Can I Face Tomorrow? (Karaoke)", - "id": "dLcYu-lvvqY" - }, - { - "title": "Dierks Bentley - My Last Name (Karaoke)", - "id": "FCK2efdnTz4" - }, - { - "title": "One Direction - Rock Me (Karaoke)", - "id": "ppEo61qwmHU" - }, - { - "title": "Lady Gaga - Hair (Karaoke)", - "id": "0E_PfOCMo9Y" - }, - { - "title": "Dierks Bentley - How Am I Doin'? (Karaoke)", - "id": "m30xYwlZulo" - }, - { - "title": "Patsy Cline - You Took Him Off My Hands (Karaoke)", - "id": "k-lE8vJ9M4o" - }, - { - "title": "Pink - What About Us (Karaoke)", - "id": "6Dfw2swh-f4" - }, - { - "title": "Ne-Yo - Beautiful Monster (Karaoke)", - "id": "D3XmPVSeugE" - }, - { - "title": "Tex Ritter & His Texans - Long Time Gone (Karaoke)", - "id": "Rlf67nVh_9M" - }, - { - "title": "Travis Tritt feat. Lari White - Helping Me Get Over You (Karaoke)", - "id": "5cyWbn0_tmg" - }, - { - "title": "Travis Tritt - Start The Car (Karaoke)", - "id": "EOu17DhcQmU" - }, - { - "title": "Travis Tritt - Modern Day Bonnie And Clyde (Karaoke)", - "id": "-IVYbfP71Eg" - }, - { - "title": "Rascal Flatts - Skin (Karaoke)", - "id": "cXLuG1Z0s_Q" - }, - { - "title": "Trace Adkins - I Got My Game On (Karaoke)", - "id": "H8dyg-l1Q0I" - }, - { - "title": "The Band Perry - Hip To My Heart (Karaoke)", - "id": "bqqUoba5Hi0" - }, - { - "title": "Ne-Yo - Part Of The List (Karaoke)", - "id": "Qd6Uy_kvwlA" - }, - { - "title": "Ne-Yo - Miss Independent (Karaoke)", - "id": "M6Vcn6zSVWw" - }, - { - "title": "Exile - Keep It In The Middle Of The Road (Karaoke)", - "id": "JRaOJk2AwxA" - }, - { - "title": "Ernest Tubb - Rainbow At Midnight (Karaoke)", - "id": "5O5dhOUHetw" - }, - { - "title": "Reba McEntire - Take It Back (Karaoke)", - "id": "e_kPBW8QHoE" - }, - { - "title": "Brad Paisley - Welcome To The Future (Karaoke)", - "id": "IzE3vP6PLc4" - }, - { - "title": "Tammy Wynette - Cowboys Don't Shoot Straight (Like They Used To) (Karaoke)", - "id": "rjggBWDw16Q" - }, - { - "title": "Patsy Cline - A Church, A Courtroom And Then Goodbye (Karaoke)", - "id": "q1EdX2RGe_s" - }, - { - "title": "Patsy Cline - I Cried All The Way To The Altar (Karaoke)", - "id": "A0jO_44-E2M" - }, - { - "title": "Conor Maynard - R U Crazy (Karaoke EZ Sing)", - "id": "p8SNgt-Yi4Q" - }, - { - "title": "Kaskade & Project 46 - Last Chance (Karaoke EZ Sing)", - "id": "VAu2f1MHtfg" - }, - { - "title": "Seal - Love's Divine (Karaoke EZ Sing)", - "id": "lpBCqVIjOuk" - }, - { - "title": "Oasis - Songbird (Karaoke EZ Sing)", - "id": "hsSG2FuP28c" - }, - { - "title": "Trisha Yearwood - You Say You Will (Karaoke)", - "id": "cIZrp-WN8ZM" - }, - { - "title": "Glen Campbell - I Love How You Love Me (Karaoke)", - "id": "TRIC4yP2qLE" - }, - { - "title": "Hank Snow - Spanish Fire Ball (Karaoke)", - "id": "WQUD6Ftr7q4" - }, - { - "title": "Hank Locklin - We're Gonna Go Fishin' (Karaoke)", - "id": "i4xsIl_lTEs" - }, - { - "title": "Kathy Mattea - The Star (Karaoke)", - "id": "rOtZXuHmGIQ" - }, - { - "title": "OneRepublic - Rescue Me (Karaoke)", - "id": "Sy55d1jthJw" - }, - { - "title": "Emerson Drive - I Should Be Sleeping (Karaoke)", - "id": "cVkqKefyCiI" - }, - { - "title": "Brad Paisley - Letter To Me (Karaoke)", - "id": "E2QCTLMmCcg" - }, - { - "title": "Five Finger Death Punch - Trouble (clean) (Karaoke EZ Sing)", - "id": "qb2v8VVFxsQ" - }, - { - "title": "Britney Spears - Perfume (Karaoke EZ Sing)", - "id": "HW1g-noV3s8" - }, - { - "title": "Hanson - Get The Girl Back (Karaoke EZ Sing)", - "id": "5c87kimnr9g" - }, - { - "title": "Maroon 5 - Love Somebody (Karaoke EZ Sing)", - "id": "rstiNNnPEJA" - }, - { - "title": "Sky Ferreira - You're Not The One (Karaoke EZ Sing)", - "id": "wyv4AM7WDPU" - }, - { - "title": "Josh Thompson - Cold Beer With Your Name On It (Karaoke EZ Sing)", - "id": "Qv2yqcCi3eE" - }, - { - "title": "Lee Brice - Parking Lot Party (Karaoke EZ Sing)", - "id": "qIj9eIPaqso" - }, - { - "title": "The Wombats - Greek Tragedy (Karaoke EZ Sing)", - "id": "01MfrIFLQxY" - }, - { - "title": "Screaming Trees - Nearly Lost You (Karaoke EZ Sing)", - "id": "5jzb0oh6hkY" - }, - { - "title": "Keith Urban - God Whispered Your Name (Karaoke EZ Sing)", - "id": "sLwNZofv6cE" - }, - { - "title": "Velvet Underground - Rock And Roll (Loaded Version) (Karaoke EZ Sing)", - "id": "3YQa3-QJL0s" - }, - { - "title": "Cadillacs - Speedoo (Karaoke EZ Sing)", - "id": "jTxiun1OyX8" - }, - { - "title": "Luke Bryan - Knockin' Boots (Karaoke EZ Sing)", - "id": "VpytsTwT6xI" - }, - { - "title": "Faith Hill - Dearly Beloved (Karaoke EZ Sing)", - "id": "K1Txju1FjW4" - }, - { - "title": "Morgan Wallen - Sand In My Boots (Karaoke EZ Sing)", - "id": "do4BsZ4Uke4" - }, - { - "title": "Five Finger Death Punch - A Little Bit Off (clean) (Karaoke EZ Sing)", - "id": "MwlJMQdIP4g" - }, - { - "title": "Electric Light Orchestra (ELO) - Evil Woman (US single mix) (Karaoke EZ Sing)", - "id": "N4QbP9pcdGI" - }, - { - "title": "Rod Stewart - Oh No Not My Baby (Karaoke EZ Sing)", - "id": "VFQWt7-Z1eQ" - }, - { - "title": "Lorde - The Love Club (Karaoke EZ Sing)", - "id": "nquBLiwefs4" - }, - { - "title": "Shinedown - Fly From The Inside (Karaoke EZ Sing)", - "id": "xIQdvdqomVU" - }, - { - "title": "Lana Del Rey - Mariners Apartment Complex (clean) (Karaoke EZ Sing)", - "id": "cPTdfVIVgns" - }, - { - "title": "Eric Church - Give Me Back My Hometown (Karaoke EZ Sing)", - "id": "K5Mg1WSwxbo" - }, - { - "title": "Kinks - Come Dancing (Karaoke EZ Sing)", - "id": "6rEm9qea4aY" - }, - { - "title": "Amy Shark - Everybody Rise (Karaoke EZ Sing)", - "id": "d-pluNPKN-o" - }, - { - "title": "Cherub - Doses and Mimosas (clean) (Karaoke EZ Sing)", - "id": "n_wKjSJalv4" - }, - { - "title": "Billy Squier - Rock Me Tonite (Karaoke EZ Sing)", - "id": "8OI02rKYU5g" - }, - { - "title": "Electric Light Orchestra - From Out Of Nowhere (Karaoke EZ Sing)", - "id": "tb02uKYEYqk" - }, - { - "title": "Mabel - Donโ€™t Call Me Up (Karaoke EZ Sing)", - "id": "TdoIwBObaZ8" - }, - { - "title": "Sia - Santa's Coming For Us (Karaoke EZ Sing)", - "id": "aU4fYOolF6Q" - }, - { - "title": "Will Young - I Just Want A Lover (Karaoke EZ Sing)", - "id": "jqdKDb0rMZc" - }, - { - "title": "Little Boots - Earthquake (Karaoke EZ Sing)", - "id": "vBN8D7UEskM" - }, - { - "title": "Ant Saunders - Yellow Hearts (Karaoke EZ Sing)", - "id": "1h3l8UBQrAI" - }, - { - "title": "Joni Mitchell - Woodstock (Karaoke EZ Sing)", - "id": "qe9y5-_blk8" - }, - { - "title": "Molly Hatchet - Bounty Hunter (Karaoke EZ Sing)", - "id": "1JCuzqqYaKM" - }, - { - "title": "Blues Brothers - Minnie The Moocher (Karaoke EZ Sing)", - "id": "-i5knw5RdRs" - }, - { - "title": "Spinal Tap - Tonight I'm Gonna Rock You Tonight (Karaoke EZ Sing)", - "id": "wEOG8Pl2Ge4" - }, - { - "title": "Kane Brown and John Legend - Last Time I Say Sorry (Duet Version) (Karaoke EZ Sing)", - "id": "mWIDK4B58Qo" - }, - { - "title": "Rick James - Give It To Me Baby (Karaoke EZ Sing)", - "id": "4SqlYP7Ql0U" - }, - { - "title": "Martha Reeves And The Vandellas - (Love Is Like A) Heat Wave (Heatwave) (Karaoke EZ Sing)", - "id": "flY92XqaoRk" - }, - { - "title": "Toby Keith - Drunk Americans (clean) (Karaoke EZ Sing)", - "id": "HgW4WhFUAJw" - }, - { - "title": "Chainsmokers - Beach House (Karaoke EZ Sing)", - "id": "qcbEJGQxNtU" - }, - { - "title": "Tiesto with Jonas Blue and Rita Ora - Ritual (Karaoke EZ Sing)", - "id": "M-TRb4d1iSI" - }, - { - "title": "Louis Tomlinson - Kill My Mind (Karaoke EZ Sing)", - "id": "I_NIthYlU1s" - }, - { - "title": "Post Malone ft Ozzy Osbourne and Travis Scott - Take What You Want (Karaoke EZ Sing)", - "id": "l80u63N6bHw" - }, - { - "title": "Mary Wells - You Beat Me To The Punch (Karaoke EZ Sing)", - "id": "oKQ_upxD4M8" - }, - { - "title": "Billy Squier - The Stroke (Karaoke EZ Sing)", - "id": "HD8-iBxtElg" - }, - { - "title": "Mabel - Mad Love (Karaoke EZ Sing)", - "id": "7jLK1N5_NTE" - }, - { - "title": "5 Seconds Of Summer - Girls Talk Boys (Karaoke EZ Sing)", - "id": "8zmVRfV3L-Y" - }, - { - "title": "Velvet Underground - Cool It Down (Karaoke EZ Sing)", - "id": "pBRagdYXvRc" - }, - { - "title": "Why Don't We - Big Plans (Karaoke EZ Sing)", - "id": "oR10kwAY4Qo" - }, - { - "title": "Nicki Minaj - Anaconda (clean) (Karaoke EZ Sing)", - "id": "XUuIegZX8YY" - }, - { - "title": "Eric Church - Heart On Fire (Karaoke EZ Sing)", - "id": "EaV3GN021-M" - }, - { - "title": "Lana Del Rey feat. The Weeknd (The Weekend) - Lust For Life (Karaoke EZ Sing)", - "id": "lkroyY60wB4" - }, - { - "title": "Sub Urban - Cradles (Karaoke EZ Sing)", - "id": "KsiK1IClKCo" - }, - { - "title": "Aron Wright - Look After You (Karaoke EZ Sing)", - "id": "f0rFeTSB_kw" - }, - { - "title": "Five Finger Death Punch - Coming Down (Clean) (Karaoke EZ Sing)", - "id": "5fcuiWkaWQo" - }, - { - "title": "Amy Shark - All Loved Up (Karaoke EZ Sing)", - "id": "5DvEwcPvC58" - }, - { - "title": "Khalid - My Bad (Karaoke EZ Sing)", - "id": "jkVqeGKaTLY" - }, - { - "title": "Pixies - Here Comes Your Man (Karaoke EZ Sing)", - "id": "W2SBRLEpeO8" - }, - { - "title": "Billie Eilish - Happier Than Ever (Karaoke EZ Sing)", - "id": "mUqlRs-SiIw" - }, - { - "title": "Billy Squier - Everybody Wants You (Karaoke EZ Sing)", - "id": "qKJadta6FR4" - }, - { - "title": "Lord Huron - The Night We Met (Karaoke EZ Sing)", - "id": "Q0V7hhjAooY" - }, - { - "title": "Kane Brown - Like A Rodeo (Karaoke EZ Sing)", - "id": "TGECubGfL04" - }, - { - "title": "Pet Shop Boys - What Are We Going To Do About The Rich (Karaoke EZ Sing)", - "id": "f0pIGgVIVrc" - }, - { - "title": "The Chicks - Gaslighter (Karaoke EZ Sing)", - "id": "ZG809_S11hA" - }, - { - "title": "Carrie Underwood and John Legend - Hallelujah (Duet Version) (Karaoke EZ Sing)", - "id": "0oMMkVG0yi0" - }, - { - "title": "Sia - Bird Set Free (Karaoke EZ Sing)", - "id": "LyEFMsHjrUo" - }, - { - "title": "The Beatles - Taxman (Karaoke EZ Sing)", - "id": "CDJUUiW62h8" - }, - { - "title": "R3HAB and Jolin Tsai - Stars Align (Alle Farben Remix) (Karaoke EZ Sing)", - "id": "HGs-HlsHqro" - }, - { - "title": "Imagine Dragons - Wrecked (Karaoke EZ Sing)", - "id": "vQ2mUv3mvaA" - }, - { - "title": "Parmalee with Blanco Brown - Just The Way (Duet Version) (Karaoke EZ Sing)", - "id": "u_ljTkyBJoE" - }, - { - "title": "Mary Wells - One Who Really Loves You (Karaoke EZ Sing)", - "id": "t4VXf0Xy1CM" - }, - { - "title": "Kenny Chesney - The Big Revival (Karaoke EZ Sing)", - "id": "OS9s49ZuH48" - }, - { - "title": "Lana Del Rey - High By The Beach (clean) (Karaoke EZ Sing)", - "id": "deGACOagwM0" - }, - { - "title": "Post Malone feat. Nicki Minaj - Ball For Me (clean) (Karaoke EZ Sing)", - "id": "zjb5MXPngLc" - }, - { - "title": "Bebe Rexha - Last Hurrah (Karaoke EZ Sing)", - "id": "EHhRyhCFYMI" - }, - { - "title": "Ariana Grande - Get Well Soon (Karaoke EZ Sing)", - "id": "D4pmwUfGCv4" - }, - { - "title": "Eric Church - Talladega (Karaoke EZ Sing)", - "id": "oTA4gpG9xOs" - }, - { - "title": "Lana Del Rey - Ride (Karaoke)", - "id": "6WH7tpbYPG0" - }, - { - "title": "Blues Brothers - Rubber Biscuit (Karaoke EZ Sing)", - "id": "ude0Kt3U5OU" - }, - { - "title": "Partridge Family - I Woke Up In Love This Morning (Karaoke EZ Sing)", - "id": "t4IIu7DcKrc" - }, - { - "title": "Depeche Mode - I Just Can't Get Enough (Karaoke EZ Sing)", - "id": "T34EAjjNZz0" - }, - { - "title": "Eric Church - Desperate Man (Karaoke EZ Sing)", - "id": "UIJ0zBQi5Dc" - }, - { - "title": "Demi Lovato - Sorry Not Sorry (Karaoke EZ Sing)", - "id": "7iVn7KkPsu8" - }, - { - "title": "Amy Shark - Mess Her Up (Karaoke EZ Sing)", - "id": "HrZKmEy7CFk" - }, - { - "title": "Ariana Grande feat. Nicki Minaj - The Light Is Coming (Karaoke EZ Sing)", - "id": "SVwrszFGaTI" - }, - { - "title": "Machine Gun Kelly feat. Halsey - Forget Me Too (Duet Version) (Karaoke EZ Sing)", - "id": "PNXnTcRZiJE" - }, - { - "title": "Mammoth WVH - Distance (Karaoke EZ Sing)", - "id": "8NgIK09ewqw" - }, - { - "title": "Post Malone - Only Wanna Be With You (Pokemon 25 Version) (Karaoke EZ Sing)", - "id": "_NN5GnXuH5M" - }, - { - "title": "Machine Gun Kelly - Bloody Valentine (clean) (Karaoke EZ Sing)", - "id": "3Z49NEYZaPw" - }, - { - "title": "Marilyn Manson - God's Gonna Cut You Down (Karaoke EZ Sing)", - "id": "EfWyVCPj770" - }, - { - "title": "Young Rascals - I've Been Lonely Too Long (Karaoke EZ Sing)", - "id": "5xWh_5FwyVM" - }, - { - "title": "Five Finger Death Punch - Full Circle (clean) (Karaoke EZ Sing)", - "id": "Ap5WfKySo_g" - }, - { - "title": "Morgan Wallen - More Than My Hometown (Karaoke EZ Sing)", - "id": "_i6c1rr_lPM" - }, - { - "title": "Megan Thee Stallion - Thot S--t (Karaoke)", - "id": "Lo5_gCjz-KE" - }, - { - "title": "Bring Me The Horizon with Yungblud - Obey (Duet Version) (clean) (Karaoke EZ Sing)", - "id": "YmUxWN_T6d4" - }, - { - "title": "Halsey - You Should Be Sad (Karaoke EZ Sing)", - "id": "MNqZJBzkxL0" - }, - { - "title": "The Outfield - Use Your Love (Karaoke EZ Sing)", - "id": "xkaG3VU7HtE" - }, - { - "title": "Bazzi - Myself (Karaoke)", - "id": "TAkxh8-vE1o" - }, - { - "title": "Craig Morgan - The Father, My Son And The Holy Ghost (Karaoke EZ Sing)", - "id": "FOaQEWfnQ5U" - }, - { - "title": "Jimmie Allen & Brad Paisley - Freedom Was A Highway (Karaoke EZ Sing)", - "id": "O8f7Ge_6EtA" - }, - { - "title": "Yungblud and Halsey feat. Travis Barker - 11 Minutes (Duet Version) (Karaoke)", - "id": "dneu7OXLjR8" - }, - { - "title": "Kane Brown - For My Daughter (Karaoke EZ Sing)", - "id": "c0GvOjqkGYk" - }, - { - "title": "Mary Wells - What's Easy For Two Is So Hard For One (Karaoke EZ Sing)", - "id": "WRr5fMRdJ-I" - }, - { - "title": "Lana Del Rey - Let Me Love You Like A Woman (Karaoke EZ Sing)", - "id": "P9wUsWOY-_o" - }, - { - "title": "Commitments - Do Right Woman Do Right Man (Karaoke EZ Sing)", - "id": "nAVsurYjFh0" - }, - { - "title": "Orleans - Still The One (Karaoke EZ Sing)", - "id": "8bxDZ_K2tMc" - }, - { - "title": "Tiesto and Mabel - God Is A Dancer (Karaoke EZ Sing)", - "id": "mm_xpVdPcpo" - }, - { - "title": "Mitchell Tenpenny - Truth About You (Karaoke EZ Sing)", - "id": "bD4jM6NbigQ" - }, - { - "title": "Billy Squier - My Kinda Lover (Karaoke EZ Sing)", - "id": "RvWJ4nzACCc" - }, - { - "title": "Scotty McCreery - You Time (Karaoke EZ Sing)", - "id": "8l23kpjLuzA" - }, - { - "title": "Cheap Trick - Dream Police (Karaoke EZ Sing)", - "id": "DLYf8R4XF6o" - }, - { - "title": "Ariana Grande - Sweetener (Karaoke EZ Sing)", - "id": "fIcPkwfL3ow" - }, - { - "title": "Elvie Shane - My Boy (Karaoke EZ Sing)", - "id": "_C-IV-FSCyc" - }, - { - "title": "Shinedown - 45 (Karaoke)", - "id": "9w_uccKRX14" - }, - { - "title": "Why Don't We - Cold In LA (Karaoke EZ Sing)", - "id": "cxP1Q9D-mhc" - }, - { - "title": "Machine Gun Kelly feat. blackbear - My Ex's Best Friend (Karaoke)", - "id": "C0N63So7K3w" - }, - { - "title": "Billy Squier - Lonely Is The Night (Karaoke EZ Sing)", - "id": "qh4TIOPVU6Q" - }, - { - "title": "Lana Del Rey - West Coast (Karaoke EZ Sing)", - "id": "ciGse-S_TtY" - }, - { - "title": "The Chainsmokers feat. ROZES - Roses (Karaoke EZ Sing)", - "id": "NsTCi-5ir9w" - }, - { - "title": "Justin Wellington - Iko Iko (Karaoke EZ Sing)", - "id": "mbqSMKl3Jd0" - }, - { - "title": "Miley Cyrus - Midnight Sky (Karaoke EZ Sing)", - "id": "3qW5HIrg8bE" - }, - { - "title": "Keith Urban - We Were (Karaoke EZ Sing)", - "id": "YiEAkvqtyw0" - }, - { - "title": "Lana Del Rey - Hope Is A Dangerous Thing For A Woman Like Me To Have (Karaoke)", - "id": "fEXZlkMougQ" - }, - { - "title": "Lorde - Glory and Gore (Karaoke EZ Sing)", - "id": "XAffbo2Qlpw" - }, - { - "title": "Marshmello - Shockwave (Karaoke EZ Sing)", - "id": "ShoWCwZRifs" - }, - { - "title": "Elton John and Dua Lipa - Cold Heart (PNAU Remix) (Duet Version) (Karaoke EZ Sing)", - "id": "H10UOt61APM" - }, - { - "title": "Maggie Rogers - Light On (Karaoke EZ Sing)", - "id": "0AhGtODSOhk" - }, - { - "title": "Lorde - Team (Karaoke EZ Sing)", - "id": "B_i9TAItMoA" - }, - { - "title": "Chainsmokers - Paris (Karaoke EZ Sing)", - "id": "q3E6dpzJ5wA" - }, - { - "title": "Eric Church - Some Of It (Karaoke EZ Sing)", - "id": "z28C8uufvg4" - }, - { - "title": "Alicia Keys - Piano & I (Karaoke EZ Sing)", - "id": "towKbycfoZo" - }, - { - "title": "Chainsmokers - #SELFIE (Karaoke EZ Sing)", - "id": "jlnqLfA0K9M" - }, - { - "title": "Roy Orbison - Communication Breakdown (Karaoke EZ Sing)", - "id": "K25xGzAFBzc" - }, - { - "title": "Post Malone feat. Quavo - Congratulations (clean) (Karaoke EZ Sing)", - "id": "zMOQt5TVmA4" - }, - { - "title": "Edwin Starr - Twenty(Karaoke)", - "id": "i7WiHf3u3GQ" - }, - { - "title": "Marshmello & Halsey - Be Kind (Karaoke EZ Sing)", - "id": "V7Hacm0B_Zs" - }, - { - "title": "Lana Del Rey - Summertime Sadness (Karaoke EZ Sing)", - "id": "clP7CRbNiQU" - }, - { - "title": "Temptations - Treat Her Like A Lady (Karaoke EZ Sing)", - "id": "deR5GX_gUsw" - }, - { - "title": "Luke Bryan - Light It Up (Karaoke EZ Sing)", - "id": "7NZD9KaXu24" - }, - { - "title": "Lorde - Perfect Places (clean) (Karaoke EZ Sing)", - "id": "tzEnmmP-jBA" - }, - { - "title": "Lorde - Tennis Court (clean) (Karaoke EZ Sing)", - "id": "lCTN7B9El1I" - }, - { - "title": "The Rascals - A Beautiful Morning (Karaoke EZ Sing)", - "id": "jWggH5bxjYU" - }, - { - "title": "Kelly Clarkson - Piece By Piece (Karaoke EZ Sing)", - "id": "NCSfubv7yug" - }, - { - "title": "Lady Gaga - Million Reasons (Karaoke EZ Sing)", - "id": "bDSL_eSlVAk" - }, - { - "title": "Lady Gaga - G.U.Y. (Guy) (Karaoke EZ Sing)", - "id": "SrCyd7-Ifl4" - }, - { - "title": "Kelly Clarkson - Beautiful Disaster (Karaoke EZ Sing)", - "id": "Ny6Jieibf1Y" - }, - { - "title": "Khalid - Talk (Karaoke EZ Sing)", - "id": "1M1i2e0KNVM" - }, - { - "title": "Glass Animals - Heat Waves (Karaoke EZ Sing)", - "id": "mcmq7unQ9So" - }, - { - "title": "Kelly Clarkson - Underneath The Tree (Karaoke EZ Sing)", - "id": "92qvs-bRIDw" - }, - { - "title": "Juice WRLD and Marshmello - Come And Go (clean) (Karaoke EZ Sing)", - "id": "FJlqv_LLqTE" - }, - { - "title": "Juice WRLD feat. NBA YoungBoy - Bandit (Duet Version) (clean) (Karaoke EZ Sing)", - "id": "AI4uLuCiICg" - }, - { - "title": "T. Rex - Get It On (Bang A Gong) (Karaoke EZ Sing)", - "id": "oFqonQHsbzI" - }, - { - "title": "Kelly Clarkson - Just Missed The Train (Karaoke EZ Sing)", - "id": "T_-z6qhdaZY" - }, - { - "title": "Phil Collins - Both Sides Of The Story (Karaoke EZ Sing)", - "id": "W8LnZB_9at4" - }, - { - "title": "Rod Stewart - This Old Heart Of Mine (Karaoke EZ Sing)", - "id": "VNvOd-dCUxg" - }, - { - "title": "Ellie Goulding - How Long Will I Love You (Karaoke EZ Sing)", - "id": "FROeBTJSNr4" - }, - { - "title": "Ellie Goulding - Anything Could Happen (Karaoke EZ Sing)", - "id": "opNFmGM8MnI" - }, - { - "title": "Phil Collins - That's Just The Way It Is (Karaoke EZ Sing)", - "id": "8Sn1__fDiCg" - }, - { - "title": "Billie Eilish and Khalid - Lovely (Karaoke EZ Sing)", - "id": "kJYd0lGakDo" - }, - { - "title": "Amy Winehouse - Me And Mr. Jones (clean) (Karaoke EZ Sing)", - "id": "HX8PbrNdzvs" - }, - { - "title": "Brett Eldredge - Raymond (Karaoke EZ Sing)", - "id": "A-IR4n6Iz-E" - }, - { - "title": "Rod Stewart - I've Got My Love To Keep Me Warm (Karaoke EZ Sing)", - "id": "tikq_NahJqM" - }, - { - "title": "The Moody Blues - Tuesday Afternoon (Karaoke EZ Sing)", - "id": "CiJ0BkyfOSM" - }, - { - "title": "Phil Collins - Thru' These Walls (Karaoke EZ Sing)", - "id": "x3NDuT0AqX4" - }, - { - "title": "Dylan Scott - Nothing To Do Town (Karaoke EZ Sing)", - "id": "cdcrSvcVHcc" - }, - { - "title": "Alicia Keys - Butterflyz (Karaoke EZ Sing)", - "id": "N8NycIOEkz0" - }, - { - "title": "T. Rex - Ride A White Swan (Karaoke EZ Sing)", - "id": "u2Quw1Dvs-c" - }, - { - "title": "Phil Collins - Dance Into The Light (Karaoke EZ Sing)", - "id": "MqFeni2clKE" - }, - { - "title": "Phil Collins - Don't Lose My Number (Karaoke EZ Sing)", - "id": "ttGZXpH0en0" - }, - { - "title": "Phil Collins - I Missed Again (Karaoke EZ Sing)", - "id": "zNws4viSo1k" - }, - { - "title": "Phil Collins - In The Air Tonight (Karaoke EZ Sing)", - "id": "VSobVyoZPZg" - }, - { - "title": "Crosby, Stills, Nash And Young - Our House (Karaoke EZ Sing)", - "id": "DcPVoNxRPmk" - }, - { - "title": "REO Speedwagon - Keep The Fire Burning (Karaoke EZ Sing)", - "id": "sf8LRjdu-6U" - }, - { - "title": "Paula Abdul - Opposites Attract (Karaoke EZ Sing)", - "id": "u-fXIBNmmKo" - }, - { - "title": "Legally Blonde - Whipped Into Shape (Karaoke EZ Sing)", - "id": "C9w8aXgYIl8" - }, - { - "title": "Legally Blonde - Ireland (Karaoke EZ Sing)", - "id": "e32WX3sJnBw" - }, - { - "title": "Maroon 5 - Harder To Breathe (explicit) (Karaoke EZ Sing)", - "id": "FBAscGOV-lI" - }, - { - "title": "Maroon 5 - It Was Always You (Karaoke EZ Sing)", - "id": "y3X7Ie6Rbro" - }, - { - "title": "Waylon Jennings - Can't You See (Karaoke EZ Sing)", - "id": "e-CRMlIiZ_c" - }, - { - "title": "Crosby, Stills And Nash - Wasted On The Way (Karaoke EZ Sing)", - "id": "zBI6RiPGvDU" - }, - { - "title": "Crosby, Stills, Nash And Young - Teach Your Children (Karaoke)", - "id": "iWUue-rQ5lw" - }, - { - "title": "Steve Winwood - While You See A Chance (Karaoke EZ Sing)", - "id": "oNPgp4mOjs4" - }, - { - "title": "Legally Blonde - So Much Better (Karaoke EZ Sing)", - "id": "Qc8UAzF15AE" - }, - { - "title": "Stevie Nicks - Edge Of Seventeen (Karaoke EZ Sing)", - "id": "lemYTaIBLjc" - }, - { - "title": "Stevie Nicks - Planets of the Universe (Karaoke EZ Sing)", - "id": "wtLTedeOeTU" - }, - { - "title": "Waylon Jennings - Bob Wills Is Still The King (live version) (Karaoke EZ Sing)", - "id": "Fx7HuQm6-YI" - }, - { - "title": "Ellie Goulding - Beating Heart (Karaoke EZ Sing)", - "id": "3vHiUN69rhc" - }, - { - "title": "Dwight Yoakam - Back Of Your Hand (Karaoke EZ Sing)", - "id": "ua3fotmtcY4" - }, - { - "title": "Waylon Jennings - Rainy Day Woman (Karaoke EZ Sing)", - "id": "mcmW433AlD0" - }, - { - "title": "Ellie Goulding - Guns And Horses (Karaoke EZ Sing)", - "id": "GwsyYzVlAig" - }, - { - "title": "Stevie Nicks & Don Henley - Leather And Lace (Karaoke EZ Sing)", - "id": "X3T2pEPySA4" - }, - { - "title": "Ellie Goulding feat. Tinie Tempah - Hanging On (explicit) (Karaoke EZ Sing)", - "id": "6C7A-XDOOJA" - }, - { - "title": "Ellie Goulding feat. Tinie Tempah - Hanging On (clean) (Karaoke EZ Sing)", - "id": "0oOMVxczNdk" - }, - { - "title": "Stevie Nicks - If You Ever Did Believe (Karaoke EZ Sing)", - "id": "1krPdiKGLmg" - }, - { - "title": "Ashe - Moral Of The Story (Karaoke) (clean version)", - "id": "4C2ttUi2jJI" - }, - { - "title": "Lil Nas X - Thatโ€™s What I Want (Karaoke) (clean version)", - "id": "9or7Z4eNoJA" - }, - { - "title": "Jonas Brothers - Sucker (Karaoke)", - "id": "LnsSwkscJwM" - }, - { - "title": "Meghan Trainor feat. Nicki Minaj - Nice To Meet Ya (Duet Version) (Karaoke)", - "id": "PnePeOp8mUE" - }, - { - "title": "American Authors - Believer (Karaoke)", - "id": "_PTmjVlO64w" - }, - { - "title": "Dinah Shore - Buttons And Bows (Karaoke)", - "id": "F1eLv36mWu8" - }, - { - "title": "OneRepublic - Run (Karaoke)", - "id": "mHYL85BubTc" - }, - { - "title": "Alison Krauss & Union Station - Sitting In The Window Of My Room (Karaoke)", - "id": "C_GPK3gEd8s" - }, - { - "title": "Dixie Chicks - Long Time Gone (Karaoke)", - "id": "Q8WDGZoFKnU" - }, - { - "title": "Linda Ronstadt - Silver Threads & Golden Needles (Karaoke)", - "id": "zdUVEyCSgJA" - }, - { - "title": "Jennifer Lopez - Play (Karaoke)", - "id": "VVvixZPFcKI" - }, - { - "title": "Dottie West - Country Sunshine (Karaoke)", - "id": "edHQoKtNBWc" - }, - { - "title": "Post Malone - White Iverson (Karaoke)", - "id": "vZgua0TE9aQ" - }, - { - "title": "Lil Nas X - Montero (Call Me By Your Name) (Karaoke)", - "id": "MGN98scp4w0" - }, - { - "title": "Y2K and bbno$ - Lalala (Karaoke)", - "id": "r8PazulGiME" - }, - { - "title": "Olivia Rodrigo - Traitor (Karaoke)", - "id": "XjhQbayLxRc" - }, - { - "title": "Kungs - Never Going Home (Karaoeke)", - "id": "fPA-EGMKrQU" - }, - { - "title": "Miranda Lambert - Fastest Girl In Town (Karaoke)", - "id": "a8ypTv2fe1Y" - }, - { - "title": "Nicki Minaj - Va Va Voom (explicit) (Karaoke EZ Sing)", - "id": "KnTj7FRFY4o" - }, - { - "title": "Zombies 2 - I'm Winning (Karaoke EZ Sing)", - "id": "ty6D-lOlE7k" - }, - { - "title": "Zombies 2 - The New Kid In Town (Karaoke EZ Sing)", - "id": "drptd1wo8Es" - }, - { - "title": "Legally Blonde - Chip on My Shoulder (Karaoke EZ Sing)", - "id": "efQs8wgrbdc" - }, - { - "title": "Usher feat. Juicy J - I Don't Mind (clean) (Karaoke EZ Sing)", - "id": "Td5PNVjKdnk" - }, - { - "title": "Brad Paisley - I'm Gonna Miss Her (The Fishin' Song) (Karaoke EZ Sing)", - "id": "sNShDOzXEvs" - }, - { - "title": "Jet - Rollover D.J. (Karaoke EZ Sing)", - "id": "mNskug2XSNU" - }, - { - "title": "Legally Blonde - What You Want (Karaoke EZ Sing)", - "id": "K2THPWn97is" - }, - { - "title": "Machine Gun Kelly feat. Ester Dean - Invincible (explicit) (Karaoke EZ Sing)", - "id": "0we2C1gxSQk" - }, - { - "title": "Nicki Minaj - Pills N Potions (clean) (Karaoke EZ Sing)", - "id": "cWWsgM1npLA" - }, - { - "title": "Cliff Richard - Mistletoe And Wine (Karaoke EZ Sing)", - "id": "6cm7RJS9RuI" - }, - { - "title": "Jet - She's A Genius (Karaoke EZ Sing)", - "id": "6nu80J0e9Sg" - }, - { - "title": "Bush - People That We Love (Speed Kills) (Karaoke EZ Sing)", - "id": "ZOex1GjmZtk" - }, - { - "title": "Banks - Gimme (explicit) (Karaoke EZ Sing)", - "id": "mVYwhzHrUFQ" - }, - { - "title": "David Essex - Silver Dream Machine (Karaoke EZ Sing)", - "id": "z1DIKvWl-VA" - }, - { - "title": "Seal - Human Beings (Karaoke EZ Sing)", - "id": "9zvnOw2xsjI" - }, - { - "title": "Billie Eilish - Ocean Eyes (Karaoke EZ Sing)", - "id": "_cts2O6IaIo" - }, - { - "title": "Cliff Richard - Saviour's Day (Karaoke EZ Sing)", - "id": "amSAbZmkdSM" - }, - { - "title": "Jet - Cold Hard B(Karaoke)", - "id": "GpjzKYIYZG8" - }, - { - "title": "George Ezra - Paradise (Karaoke EZ Sing)", - "id": "hAwJBT86wAA" - }, - { - "title": "Legally Blonde - Positive (Karaoke EZ Sing)", - "id": "4a0UKf16Sdg" - }, - { - "title": "The Lumineers - Flowers In Your Hair (Karaoke EZ Sing)", - "id": "S0ooqaosWbs" - }, - { - "title": "Ariana Grande - Goodnight N Go (Karaoke EZ Sing)", - "id": "7qz6CTRfMLs" - }, - { - "title": "Will.I.Am feat. Cheryl Cole - Heartbreaker (explicit) (Karaoke EZ Sing)", - "id": "y7J85fe-GmU" - }, - { - "title": "Richard Marx - Straight From My Heart (Karaoke EZ Sing)", - "id": "Od_3XPEfzGU" - }, - { - "title": "Kelly Clarkson - Catch My Breath (Karaoke EZ Sing)", - "id": "SsWMT2olUdA" - }, - { - "title": "Kenny Chesney - El Cerrito Place (Karaoke EZ Sing)", - "id": "72L03bGRZD4" - }, - { - "title": "Kenny Chesney and Tim McGraw - Feel Like A Rock Star (Karaoke EZ Sing)", - "id": "6PfxwtkXf7o" - }, - { - "title": "Legally Blonde - Blood in the Water (Karaoke EZ Sing)", - "id": "XnVadw1Za7s" - }, - { - "title": "Ellie Goulding - Explosions (Karaoke EZ Sing)", - "id": "BHwfspCwVic" - }, - { - "title": "Nu Shooz - I Can't Wait (Karaoke EZ Sing)", - "id": "0qx2O_bsGOU" - }, - { - "title": "Legally Blonde - Serious (Karaoke EZ Sing)", - "id": "QTnBIpP3CFw" - }, - { - "title": "Nicki Minaj - Va Va Voom (clean) (Karaoke EZ Sing)", - "id": "ZV6LBHRz0KE" - }, - { - "title": "Jet - Sgt. Major (Karaoke EZ Sing)", - "id": "FSImnxdbyTc" - }, - { - "title": "21 Savage with Metro Boomin feat. Future - X (clean) (Karaoke EZ Sing)", - "id": "B_5hIvcGVPs" - }, - { - "title": "Blossoms - I Can't Stand It (Karaoke EZ Sing)", - "id": "KRDjp2lzKNc" - }, - { - "title": "Nicki Minaj ft. 2 Chainz - Beez In The Trap (Karaoke EZ Sing)", - "id": "UuvZuS8JMXI" - }, - { - "title": "50 Cent - Candy Shop (clean) (Karaoke EZ Sing)", - "id": "-rY297GartY" - }, - { - "title": "Legally Blonde - Harvard Variations (Karaoke EZ Sing)", - "id": "7lmnfUu8FHI" - }, - { - "title": "George Ezra - Shotgun (Karaoke EZ Sing)", - "id": "Gz1M9hNhsHY" - }, - { - "title": "Stevie Nicks - Rooms On Fire (Karaoke EZ Sing)", - "id": "gr4daAJpCi8" - }, - { - "title": "Fleetwood Mac - Big Love (Karaoke EZ Sing)", - "id": "1ukmP_mLq8U" - }, - { - "title": "Alt-J - Left Hand Free (Karaoke EZ Sing)", - "id": "J6YRXy1Fwj8" - }, - { - "title": "Zombies 2 - Flesh & Bone (Karaoke EZ Sing)", - "id": "nX4lon0JM_o" - }, - { - "title": "Zombies 2 - Like The Zombies Do (Karaoke EZ Sing)", - "id": "TXG_7r3BdlA" - }, - { - "title": "Ringo Starr - It Donโ€™t Come Easy (Karaoke EZ Sing)", - "id": "DIYcSPkftHg" - }, - { - "title": "Zombies 2 - Gotta Find Where I Belong (Karaoke EZ Sing)", - "id": "Cj2fnSW9KlU" - }, - { - "title": "Bush - Machinehead (Karaoke EZ Sing)", - "id": "ZUIpFBsIn8s" - }, - { - "title": "The Kooks - Always Where I Need To Be (Karaoke EZ Sing)", - "id": "-KBj9Lskoeg" - }, - { - "title": "NeYo ft Juicy J - She Knows (Karaoke EZ Sing)", - "id": "iCnokMxlOCU" - }, - { - "title": "Zombies 2 - One For All (Karaoke EZ Sing)", - "id": "cckxU-8qoQc" - }, - { - "title": "Zombies 2 - Call To The Wild (Karaoke EZ Sing)", - "id": "CH8bQ3Dz8ic" - }, - { - "title": "The Mock Turtles - Can You Dig It? (Karaoke EZ Sing)", - "id": "hj1uE7Z9IK8" - }, - { - "title": "The Skids - Into The Valley (Karaoke EZ Sing)", - "id": "fUlnF8z3ifk" - }, - { - "title": "Zombies 2 - We Own The Night (Karaoke EZ Sing)", - "id": "3-sDmyFMYIU" - }, - { - "title": "The Members - The Sound Of The Suburbs (Karaoke EZ Sing)", - "id": "7r_LV7P777A" - }, - { - "title": "Jace Everett - Bad Things (Karaoke)", - "id": "ZxfBYp9fU8U" - }, - { - "title": "Daughtry - Over You (Karaoke)", - "id": "dKOnNHjBl6A" - }, - { - "title": "Train - Get To Me (Karaoke)", - "id": "wXKmmakzSLo" - }, - { - "title": "Reba McEntire - Rumor Has It (Karaoke)", - "id": "JtfVmiwtbtI" - }, - { - "title": "OneRepublic - Wanted (Karaoke)", - "id": "O5fCVMqSEME" - }, - { - "title": "The 1975 - If You're Too Shy (Let Me Know) (Karaoke)", - "id": "e8EZ3ZgaG3s" - }, - { - "title": "Bette Midler and Eddie Murphy - Friends (Karaoke)", - "id": "HhyaZcczeJ4" - }, - { - "title": "Bob Seger - Shakedown (Karaoke)", - "id": "BhkuRMRPiv8" - }, - { - "title": "Patti Page - Tennessee Waltz (Karaoke)", - "id": "8Gze71F3lVg" - }, - { - "title": "Billie Eilish - Wish You Were Gay (Karaoke EZ Sing)", - "id": "iXL9GtOXFt0" - }, - { - "title": "Bob Marley And The Wailers - Talking Blues (Karaoke EZ Sing)", - "id": "p-snlMFNiJU" - }, - { - "title": "Bob Marley And The Wailers - Waiting In Vain (Karaoke EZ Sing)", - "id": "jWpc-qRNA0E" - }, - { - "title": "Bob Marley And The Wailers - Satisfy My Soul (Karaoke EZ Sing)", - "id": "2dCaIX05Cfc" - }, - { - "title": "Bob Marley And The Wailers - Redemption Song (Karaoke EZ Sing)", - "id": "vGUeLK5tqd0" - }, - { - "title": "Bob Marley And The Wailers - Try Me (Karaoke EZ Sing)", - "id": "fk_un45-2GA" - }, - { - "title": "Bob Marley And The Wailers - Keep On Moving (Karaoke EZ Sing)", - "id": "UcVCKgTrOMk" - }, - { - "title": "Bob Marley And The Wailers - Small Axe (Karaoke EZ Sing)", - "id": "Vy6d8TQj1lM" - }, - { - "title": "Bob Marley And The Wailers - Them Belly Full (But We Hungry) (Karaoke EZ Sing)", - "id": "JWXXOORaGpA" - }, - { - "title": "Bob Marley And The Wailers - Put It On (Karaoke EZ Sing)", - "id": "re3YDQgVuZk" - }, - { - "title": "Bob Marley And The Wailers - Stir It Up (Karaoke EZ Sing)", - "id": "A-C96IoZxnY" - }, - { - "title": "Bob Marley And The Wailers - Kaya (Karaoke EZ Sing)", - "id": "pwIwyk8rmKw" - }, - { - "title": "Lil Baby - My Drip (Karaoke EZ Sing)", - "id": "zApziy_Bsik" - }, - { - "title": "Childish Gambino - Summertime Magic (Karaoke EZ Sing)", - "id": "19fpR-_8W70" - }, - { - "title": "Evanescence - The Chain (Karaoke EZ Sing)", - "id": "SvshWJkFrHc" - }, - { - "title": "Jonas Brothers - Only Human (Karaoke EZ Sing)", - "id": "0r50mJ90VsE" - }, - { - "title": "What Dreams Are Made Of (Karaoke EZ Sing)", - "id": "bOO0t46N2zc" - }, - { - "title": "Billie Eilish - Hostage (Karaoke EZ Sing)", - "id": "BTI0-903vVY" - }, - { - "title": "Mickey Mouse Club March (Karaoke EZ Sing)", - "id": "mjqImQS9FdE" - }, - { - "title": "Mickey Mouse Clubhouse Theme Song (Karaoke EZ Sing)", - "id": "b7z-tC1seVc" - }, - { - "title": "Disney Original Master \"Aladdin\" - Whole New World (A Whole New World) (Karaoke EZ Sing)", - "id": "R_y9k9PXKmw" - }, - { - "title": "Fleetwood Mac - Tusk (Karaoke EZ Sing)", - "id": "rrjt_UfSLsQ" - }, - { - "title": "Nine Inch Nails - Reptile (Karaoke EZ Sing)", - "id": "Z5Ew32TqJqk" - }, - { - "title": "Joe Jackson - Is She Really Going Out With Him? (Karaoke EZ Sing)", - "id": "T2dkRjnIGWU" - }, - { - "title": "Descendants Wicked World (Disney Original Master) - Good Is the New Bad (Karaoke EZ Sing)", - "id": "_osEVdX6lZ8" - }, - { - "title": "Enrique Iglesias - Nunca Te Olividarรบ (Karaoke EZ Sing)", - "id": "s-rghgzwMnE" - }, - { - "title": "Little Nas X, Billy Ray Cyrus - Old Town Road (Karaoke EZ Sing)", - "id": "wSDf7UM6xtg" - }, - { - "title": "Enrique Iglesias - Esperanza (Karaoke EZ Sing)", - "id": "sW_DE2rOYkg" - }, - { - "title": "Nine Inch Nails - Ruiner (Acoustic, Explicit) (Karaoke EZ Sing)", - "id": "7Nyv9NkJHsE" - }, - { - "title": "Fleetwood Mac - Seven Wonders (Karaoke EZ Sing)", - "id": "ATZXySaMduU" - }, - { - "title": "Fleetwood Mac - Gypsy (Karaoke EZ Sing)", - "id": "Fhlel5wrIvs" - }, - { - "title": "McFly - I Wanna Hold You (Karaoke EZ Sing)", - "id": "BIKNOKHg3Sc" - }, - { - "title": "Nine Inch Nails - Only (Explicit) (Karaoke EZ Sing)", - "id": "Z7NmNKFv6N0" - }, - { - "title": "Pet Shop Boys - Before (Karaoke EZ Sing)", - "id": "KIjUKg7dTR8" - }, - { - "title": "Pet Shop Boys - A Different Point Of View (Karaoke EZ Sing)", - "id": "cBEv7SkLpYQ" - }, - { - "title": "Roxette - Anyone (Karaoke EZ Sing)", - "id": "uenQWyTBMkg" - }, - { - "title": "Pet Shop Boys - Liberation (Karaoke EZ Sing)", - "id": "zwz7X85HcFM" - }, - { - "title": "Enrique Iglesias - Para De Jugar (Karaoke EZ Sing)", - "id": "Dq5SJbLpNko" - }, - { - "title": "Kodaline - Love Like This (Karaoke EZ Sing)", - "id": "S-qDUrYqO_g" - }, - { - "title": "Billie Eilish - 8 (Eight) (Karaoke EZ Sing)", - "id": "MCoy94_xNmo" - }, - { - "title": "Jimmy Eat World - I Will Steal You Back (Karaoke EZ Sing)", - "id": "ROYoVErCAac" - }, - { - "title": "Jake Bugg - Seen It All (Karaoke EZ Sing)", - "id": "eZDocLtWeZ0" - }, - { - "title": "Alt-J - Breezeblocks (Karaoke EZ Sing)", - "id": "XfVbyRKXg8Y" - }, - { - "title": "Panic! At The Disco - This Is Gospel (Karaoke EZ Sing)", - "id": "v4WLYAudjG0" - }, - { - "title": "Nine Inch Nails - Came Back Haunted (Karaoke EZ Sing)", - "id": "u01r7NDQzwo" - }, - { - "title": "McFly - Love Is On The Radio (Karaoke EZ Sing)", - "id": "ZF8axzZtYmk" - }, - { - "title": "McFly - Love Is Easy (Karaoke EZ Sing)", - "id": "8xwleyCl9bM" - }, - { - "title": "Machine Gun Kelly ft. Ester Dean - Invincible (Karaoke EZ Sing)", - "id": "SGAkUM_uA6A" - }, - { - "title": "LMFAO - Sorry For Party Rocking (Karaoke EZ Sing)", - "id": "9r45WvAx8SU" - }, - { - "title": "Gotye - Eyes Wide Open (Karaoke EZ Sing)", - "id": "coZe9gkHsU4" - }, - { - "title": "Jake Bugg - Two Fingers (Karaoke EZ Sing)", - "id": "kjutk5AkW6A" - }, - { - "title": "D'Banj - Oliver Twist (Karaoke EZ Sing)", - "id": "pQKF0tEZqUo" - }, - { - "title": "John Denver - A Country Girl In Paris (Karaoke EZ Sing)", - "id": "p83Zmiu8Ork" - }, - { - "title": "The Wanted - Warzone (Karaoke EZ Sing)", - "id": "AwaNr_X-SqU" - }, - { - "title": "Fleetwood Mac - Say You Will (Karaoke EZ Sing)", - "id": "vPmNjz-clgI" - }, - { - "title": "LMFAO feat. Natalia Kills - Champagne Showers (clean) (Karaoke EZ Sing)", - "id": "vi-zmKWf6Fg" - }, - { - "title": "Beck - E Pro (Karaoke EZ Sing)", - "id": "OAe85L84sUM" - }, - { - "title": "Roxette - You Don't Understand Me (Karaoke EZ Sing)", - "id": "wUQnF0E91V0" - }, - { - "title": "B-52s - Roam (Karaoke EZ Sing)", - "id": "mkTajiqQBNI" - }, - { - "title": "Big And Rich - Live This Life (Karaoke EZ Sing)", - "id": "Gt5ymTZPrWs" - }, - { - "title": "Big And Rich - Rollin' (The Ballad Of Big And Rich) (Karaoke EZ Sing)", - "id": "iMXtkJHXhQw" - }, - { - "title": "Joe Jackson - Steppin' Out (Karaoke EZ Sing)", - "id": "hZGZynM2A_I" - }, - { - "title": "Fleetwood Mac - Oh Well (Karaoke EZ Sing)", - "id": "DD3jvORtcPk" - }, - { - "title": "The Editors - Smokers Outside The Hospital (Karaoke EZ Sing)", - "id": "MCZhkbOQo0M" - }, - { - "title": "Nine Inch Nails - The Day The World Went Away (Karaoke EZ Sing)", - "id": "HjUqVC1-50M" - }, - { - "title": "The Editors - All Sparks (Karaoke EZ Sing)", - "id": "ds-y5To26AU" - }, - { - "title": "Lifehouse - Just Another Name (Karaoke EZ Sing)", - "id": "kuB9k3v9umI" - }, - { - "title": "McFly - Lies (Karaoke EZ Sing)", - "id": "yAcnFEKD4D0" - }, - { - "title": "Fleetwood Mac - Peacekeeper (Karaoke EZ Sing)", - "id": "564HvkABVH8" - }, - { - "title": "Duffy - Delayed Devotion (Karaoke EZ Sing)", - "id": "4Cls7F7VeEE" - }, - { - "title": "Big And Rich - Kick My Ass (Karaoke EZ Sing)", - "id": "p0RxFAAD6ik" - }, - { - "title": "Thrice - Stare At The Sun (Karaoke EZ Sing)", - "id": "iB8YXfSWxsg" - }, - { - "title": "Garbage - Bleed Like Me (Karaoke EZ Sing)", - "id": "-fkMozXHp98" - }, - { - "title": "McFly - The Heart Never Lies (Karaoke EZ Sing)", - "id": "Gkxb9BMR0Xs" - }, - { - "title": "Nine Inch Nails - Hand That Feeds (Karaoke EZ Sing)", - "id": "p89BV4IfbT0" - }, - { - "title": "McFly - Baby's Coming Back (Karaoke EZ Sing)", - "id": "U_842jA3khk" - }, - { - "title": "Jimmy Eat World - Bleed American (Karaoke EZ Sing)", - "id": "Odm10yT4qto" - }, - { - "title": "John Denver - On The Road (Karaoke EZ Sing)", - "id": "4JdqYl3Ba5U" - }, - { - "title": "Dixie Chicks - Tortured Tangled Hearts (Karaoke EZ Sing)", - "id": "j0_wJtTHLsU" - }, - { - "title": "Jimmy Eat World - Futures (Karaoke EZ Sing)", - "id": "1z_a_BL4xq8" - }, - { - "title": "Maxwell - Fortunate (Karaoke EZ Sing)", - "id": "R_ChEHzj-Gc" - }, - { - "title": "Fleetwood Mac - Green Manalishi (Karaoke EZ Sing)", - "id": "btcOtDEQ_qg" - }, - { - "title": "Pet Shop Boys - I'm With Stupid (Karaoke EZ Sing)", - "id": "bHfWToNgJ_E" - }, - { - "title": "Jimmy Eat World - Work (Karaoke EZ Sing)", - "id": "awQlpNlZu34" - }, - { - "title": "The Editors - Munich (Karaoke EZ Sing)", - "id": "9BGTgK8NgwY" - }, - { - "title": "Placebo - Meds (Karaoke EZ Sing)", - "id": "h3-en8BAgFw" - }, - { - "title": "Gary Numan - New Anger (Karaoke EZ Sing)", - "id": "llQ7oso87JU" - }, - { - "title": "Pulp - Disco 2000 (Karaoke EZ Sing)", - "id": "XnZjhIGLwPc" - }, - { - "title": "Gary Numan - My Name Is Ruin (Karaoke EZ Sing)", - "id": "xL49CA7GZhM" - }, - { - "title": "Gary Numan - Everyday I Die (Live) (Karaoke EZ Sing)", - "id": "8M_cYHVaEA8" - }, - { - "title": "Gary Numan - Creatures (Karaoke EZ Sing)", - "id": "obwTJ_Vo78M" - }, - { - "title": "Billie Eilish - Six Feet Under (Karaoke EZ Sing)", - "id": "yi2R1BDlAnM" - }, - { - "title": "Kodaline - Honest (Acoustic) (Karaoke EZ Sing)", - "id": "5gui1PO-OI4" - }, - { - "title": "Gary Numan - Me I Disconnect From You (Karaoke EZ Sing)", - "id": "DIWqI9_m_Q4" - }, - { - "title": "Billie Eilish - idontwannabeyouanymore (Karaoke EZ Sing)", - "id": "6l25dbHVHs0" - }, - { - "title": "Billie Eilish - Bury A Friend (Karaoke EZ Sing)", - "id": "oN0tXagAO9U" - }, - { - "title": "Billie Eilish - Come Out And Play (Karaoke EZ Sing)", - "id": "VHR9UI1fvFU" - }, - { - "title": "Welshly Arms - Legendary (Karaoke EZ Sing)", - "id": "1WtQvaEJK4I" - }, - { - "title": "Gary Numan - Call Out The Dogs (Karaoke EZ Sing)", - "id": "NVbUJxkgQhI" - }, - { - "title": "Billie Eilish - All The Good Girls Go To Hell (Karaoke EZ Sing)", - "id": "Rsy1lmbgiPQ" - }, - { - "title": "Pet Shop Boys - The Pop Kids (Karaoke EZ Sing)", - "id": "VAkXR5JN1LE" - }, - { - "title": "Gary Numan - Devious (Karaoke EZ Sing)", - "id": "t9ceuENIhHM" - }, - { - "title": "Kodaline - Honest (Karaoke EZ Sing)", - "id": "KMZ4p4zbXCc" - }, - { - "title": "Gary Numan - We Take Mystery (To Bed) (Karaoke EZ Sing)", - "id": "hJTMeX4Ne6M" - }, - { - "title": "Gary Numan - Berserker (Karaoke EZ Sing)", - "id": "3RUlxQTeYME" - }, - { - "title": "Gary Numan - My Breathing (Karaoke EZ Sing)", - "id": "H9_TGRDdOhY" - }, - { - "title": "AlunaGeorge - Supernatural (Karaoke EZ Sing)", - "id": "6nlSGr69uSo" - }, - { - "title": "Billie Eilish - Bad Guy (Karaoke EZ Sing)", - "id": "93qLHPvbRs8" - }, - { - "title": "Billie Eilish - I Love You (Karaoke EZ Sing)", - "id": "wthGnjKw1Pg" - }, - { - "title": "Dierks Bentley ft. Brothers Osborne - Burning Man (Karaoke EZ Sing)", - "id": "ioJVjjgyOjA" - }, - { - "title": "Florida Georgia Line - Simple (Karaoke EZ Sing)", - "id": "KjQaAxSErhw" - }, - { - "title": "Saxon - Wheels Of Steel (Karaoke EZ Sing)", - "id": "pwHXorGSBqc" - }, - { - "title": "Suzi Quatro - Can The Can (Karaoke EZ Sing)", - "id": "UVGdaTbIXa8" - }, - { - "title": "Juice WRLD - Robbery (Karaoke EZ Sing)", - "id": "K8pPswGrozQ" - }, - { - "title": "Runaway June - Buy My Own Drinks (Karaoke EZ Sing)", - "id": "372oZCYVQMw" - }, - { - "title": "Simply Red - Remembering The First Time (Karaoke EZ Sing)", - "id": "ZttxrrGwS7U" - }, - { - "title": "Lighthouse Family - Lifted (Karaoke EZ Sing)", - "id": "n2WFBVzHy_A" - }, - { - "title": "Saxon - Denim And Leather (Karaoke EZ Sing)", - "id": "d-gMwWLPbms" - }, - { - "title": "Marshmello ft. CHVRCHES - Here With Me (Karaoke EZ Sing)", - "id": "W56hq6cQuz8" - }, - { - "title": "Meat Loaf - Not A Dry Eye In The House (Karaoke EZ Sing)", - "id": "Rs_0qKUyLg8" - }, - { - "title": "Wolf Alice - Don't Delete The Kisses (Karaoke EZ Sing)", - "id": "1_h9HvwXDrk" - }, - { - "title": "The Nashville Teens - Tobacco Road (Karaoke EZ Sing)", - "id": "o3wcNSiAArw" - }, - { - "title": "2 Unlimited - Spread Your Love (Karaoke EZ Sing)", - "id": "9KgbKrbPQ3s" - }, - { - "title": "Mary Black - If I Gave My Heart To You (Karaoke EZ Sing)", - "id": "dbVwUlA2VDo" - }, - { - "title": "Smokie - If You Think You Know How To Love Me (Karaoke EZ Sing)", - "id": "C7hPWvZp9Ms" - }, - { - "title": "Carly Pearce - Closer To You (Karaoke EZ Sing)", - "id": "7agajxEZmkQ" - }, - { - "title": "Billie Ellish - When The Party's Over (Karaoke EZ Sing)", - "id": "NSxgca0XBGQ" - }, - { - "title": "The Jam - Going Underground (Karaoke EZ Sing)", - "id": "KV8OszFBOys" - }, - { - "title": "Sweet - Block Buster (Karaoke EZ Sing)", - "id": "lQXIsGxda9s" - }, - { - "title": "Squeeze - Cool For Cats (Karaoke EZ Sing)", - "id": "DYq6z-xX1UQ" - }, - { - "title": "Smokie - For A Few Dollars More (Karaoke EZ Sing)", - "id": "BCpmw3yspdY" - }, - { - "title": "Smokie - Lay Back In The Arms Of Someone (Karaoke EZ Sing)", - "id": "4Opq6HtkR_c" - }, - { - "title": "Smokie - I'll Meet You At Midnight (Karaoke EZ Sing)", - "id": "0meZ27PlJGY" - }, - { - "title": "Human League - Tell Me When (Karaoke EZ Sing)", - "id": "z0Xy65eOmfw" - }, - { - "title": "Redfoo - New Thang (Karaoke EZ Sing)", - "id": "SgIsvhM_KGM" - }, - { - "title": "Adam And The Ants - Antmusic (Karaoke EZ Sing)", - "id": "0PKSw6ZttWA" - }, - { - "title": "Redfoo - Let's Get Ridiculous (Karaoke EZ Sing)", - "id": "wYjnBLJuOdQ" - }, - { - "title": "Pablo Cruise - Love Will Find A Way (Karaoke EZ Sing)", - "id": "ePwKuYe4AG4" - }, - { - "title": "Laura Mvula - Green Garden (Karaoke EZ Sing)", - "id": "SE-ICagiM60" - }, - { - "title": "Smokie - It's Your Life (Karaoke EZ Sing)", - "id": "Y0Nk_FSV_-0" - }, - { - "title": "Cigarettes After Sex - Apocalypse (Karaoke EZ Sing)", - "id": "rrE7nXMQpZs" - }, - { - "title": "Marshmello And Bastille - Happier (Karaoke EZ Sing)", - "id": "a8s2LoYs50I" - }, - { - "title": "Smokie - Don't Play Your Rock 'n' Roll To Me (Karaoke EZ Sing)", - "id": "OgPfz-1aqSs" - }, - { - "title": "Cigarettes After Sex - Sweet (Karaoke EZ Sing)", - "id": "U6utvD0H268" - }, - { - "title": "Cigarettes After Sex - Truly (Karaoke EZ Sing)", - "id": "TEj_3aFSJIc" - }, - { - "title": "Jennifer Hudson - I'll Fight (Karaoke EZ Sing)", - "id": "dzyMrj-cnf8" - }, - { - "title": "Alice In Chains - Breath On A Window (Karaoke EZ Sing)", - "id": "qZ4W0KL_-fs" - }, - { - "title": "Alice In Chains - Hung On A Hook (Karaoke EZ Sing)", - "id": "XcW27G9W4i0" - }, - { - "title": "The Gap Band - Outstanding (Karaoke EZ Sing)", - "id": "JbYTVLKqEps" - }, - { - "title": "Jimmy Buffett - Gentleman Of Leisure (Karaoke EZ Sing)", - "id": "IuVgjNDmjsM" - }, - { - "title": "Crash Test Dummies - Mmm Mmm Mmm Mmm (Karaoke EZ Sing)", - "id": "mat5pzMMo38" - }, - { - "title": "Car Seat Headrest - Nervous Young Inhumans (Karaoke EZ Sing)", - "id": "VHDTM8GDbfM" - }, - { - "title": "Years and Years - Sanctify (Karaoke EZ Sing)", - "id": "zqB_n0oY_ME" - }, - { - "title": "Saint Motel - Move (Karaoke EZ Sing)", - "id": "YVT6b-0zEgQ" - }, - { - "title": "Al Green - Sha La La (Make Me Happy) (Karaoke EZ Sing)", - "id": "CRG18mTq2j4" - }, - { - "title": "Alanis Morissette - Joining You (Karaoke EZ Sing)", - "id": "DcSym18LCnc" - }, - { - "title": "Alanis Morissette - You Learn (Karaoke EZ Sing)", - "id": "oSP7En4vIHM" - }, - { - "title": "Limp Bizkit - Nookie (Karaoke EZ Sing)", - "id": "2IUEB_hzOwA" - }, - { - "title": "Alanis Morissette - Head Over Feet (Karaoke EZ Sing)", - "id": "MYXzcn3GQFI" - }, - { - "title": "Don Ho - Tiny Bubbles (Karaoke EZ Sing)", - "id": "LqGmpjRUC68" - }, - { - "title": "Wang Chung - Everybody Have Fun (Karaoke EZ Sing)", - "id": "BbzcGI9V0kc" - }, - { - "title": "Belouis Some - Some People (Karaoke EZ Sing)", - "id": "2G_Rg4gEjm8" - }, - { - "title": "Mickey And Sylvia - Love Is Strange (Karaoke EZ Sing)", - "id": "X9c7MZctjUI" - }, - { - "title": "Stereophonics - My Friends (Karaoke EZ Sing)", - "id": "CAtl1SYxyrE" - }, - { - "title": "Westlife - What Makes A Man (Karaoke EZ Sing)", - "id": "HvsNNwbJw8I" - }, - { - "title": "Goo Goo Dolls - All Eyes On Me (Karaoke EZ Sing)", - "id": "tvt6sTjcrXE" - }, - { - "title": "Andrew Gold - Never Let Her Slip Away (Karaoke EZ Sing)", - "id": "y_8Bz1qyt_M" - }, - { - "title": "Rick Astley - Keep Singing (Karaoke EZ Sing)", - "id": "A32uJZZU24I" - }, - { - "title": "Orchestral Manoeuvres In The Dark (OMD) - Pandora's Box (Karaoke EZ Sing)", - "id": "izIS7oYfylo" - }, - { - "title": "Death Cab For Cutie - Northern Lights (Karaoke EZ Sing)", - "id": "TIQjqFGyI0g" - }, - { - "title": "Honeyz - Not Even Gonna Trip (Karaoke EZ Sing)", - "id": "jfPvGRQaV3Q" - }, - { - "title": "Sister Sledge - Frankie (Karaoke EZ Sing)", - "id": "f8oD0hHH6Zo" - }, - { - "title": "Latour - People Are Still Having Sex (Karaoke EZ Sing)", - "id": "psCARBW7oVg" - }, - { - "title": "Sonique - Sky (I Wanna Touch The Sky) (Karaoke EZ Sing)", - "id": "LvEQTg2PstY" - }, - { - "title": "Waylon Jennings - You Asked Me To (Karaoke EZ Sing)", - "id": "FGBPfYBlAR0" - }, - { - "title": "Feargal Sharkey - A Good Heart (Karaoke EZ Sing)", - "id": "9k-iIYCn_fg" - }, - { - "title": "Paul Young - Softly Whispering I Love You (Karaoke EZ Sing)", - "id": "0xmzMPCXM-I" - }, - { - "title": "Craig David - Heartline (Karaoke EZ Sing)", - "id": "dMop1rJfUec" - }, - { - "title": "Florence + The Machine - Third Eye (Karaoke EZ Sing)", - "id": "BB_2m8X3ljM" - }, - { - "title": "Gregory Porter - Hey Laura (Karaoke EZ Sing)", - "id": "uDQPduyaY3g" - }, - { - "title": "Skylar Grey - White Suburban (Karaoke EZ Sing)", - "id": "iBKrgg0LYqQ" - }, - { - "title": "Norah Jones - In The Mornin' (Karaoke EZ Sing)", - "id": "hNnqM2ciMzM" - }, - { - "title": "Cigarettes After Sex - Nothing's Gonna Hurt You Baby (Karaoke EZ Sing)", - "id": "Ymly_jl7b5o" - }, - { - "title": "Muna - Loudspeaker (Karaoke EZ Sing)", - "id": "hgsmMuV5RvE" - }, - { - "title": "Sugababes - Too Lost In You (Karaoke EZ Sing)", - "id": "06UirOBIypw" - }, - { - "title": "Roachford - Family Man (Karaoke EZ Sing)", - "id": "MIu8vFdQBHY" - }, - { - "title": "Kylie Minogue - On A Night Like This (Karaoke EZ Sing)", - "id": "uULqmbI-uLg" - }, - { - "title": "Kenny Thomas - The Best Of You (Karaoke EZ Sing)", - "id": "-79GT3liW8s" - }, - { - "title": "Alanis Morissette - That Particular Time (Karaoke EZ Sing)", - "id": "rA0XblgeetQ" - }, - { - "title": "Alice Merton - Lash Out (Karaoke EZ Sing)", - "id": "oAoDeJ2vHsE" - }, - { - "title": "Groove Armada - My Friend (Karaoke EZ Sing)", - "id": "_fdv4BtAyGk" - }, - { - "title": "Ronan Keating - Lost For Words (Karaoke EZ Sing)", - "id": "SnWiY8SFY00" - }, - { - "title": "Amy Studt - Misfit (Karaoke EZ Sing)", - "id": "CYXdJ8sZEDs" - }, - { - "title": "Billy Joel - James (Karaoke EZ Sing)", - "id": "XvcWGarj8Vw" - }, - { - "title": "Diana Ross - If We Hold On Together (Karaoke EZ Sing)", - "id": "V0x6tk5F-Ak" - }, - { - "title": "Stereophonics - Step On My Old Size Nines (Karaoke EZ Sing)", - "id": "zsJtnz3zLhA" - }, - { - "title": "Alanis Morissette - 21 Things I Want In A Lover (Karaoke EZ Sing)", - "id": "oSfYzdo8fXI" - }, - { - "title": "Cher - (This Is) A Song For The Lonely (Karaoke EZ Sing)", - "id": "KFMfLruJkpk" - }, - { - "title": "Eddie And The Hot Rods - Do Anything You Wanna Do (Karaoke EZ Sing)", - "id": "_XCqUvxyZzw" - }, - { - "title": "Gerry And The Pacemakers - I Like It (Karaoke EZ Sing)", - "id": "OH_CrVGX7OY" - }, - { - "title": "Dean Lewis - Waves (Karaoke EZ Sing)", - "id": "jO3aANUUFEs" - }, - { - "title": "Fatboy Slim - The Rockafeller Skank (Karaoke EZ Sing)", - "id": "Y-Abky_NiH0" - }, - { - "title": "Gregory Porter - Don't Lose Your Steam (Karaoke EZ Sing)", - "id": "sjhgpHZQP1c" - }, - { - "title": "Ultravox - Hymn (Karaoke EZ Sing)", - "id": "c4uv0GFbvoQ" - }, - { - "title": "Lorde - Green Light (Karaoke EZ Sing)", - "id": "8GXe6bRlQwY" - }, - { - "title": "Elton John - Border Song (Karaoke EZ Sing)", - "id": "jFHQt90zKb4" - }, - { - "title": "Florence + The Machine - Kiss With A Fist (Karaoke EZ Sing)", - "id": "E-6n0-cI1r4" - }, - { - "title": "Suzi Quatro - Devil Gate Drive (Karaoke EZ Sing)", - "id": "z7ezLOedyF8" - }, - { - "title": "Jhene Aiko - The Pressure (Karaoke EZ Sing)", - "id": "wA0_U10OCUg" - }, - { - "title": "2 Unlimited - Twilight Zone (Karaoke EZ Sing)", - "id": "KzY4wh4d-Ss" - }, - { - "title": "Years & Years - Traps (Karaoke EZ Sing)", - "id": "bAevQuh1w-4" - }, - { - "title": "Frances - Don't Worry About Me (Karaoke EZ Sing)", - "id": "tB5P57xLXgA" - }, - { - "title": "Breathe - Hands To Heaven (Karaoke EZ Sing)", - "id": "lRh5DiAqH_E" - }, - { - "title": "Frances - Borrowed Time (Karaoke EZ Sing)", - "id": "J2JHuyLu5Cc" - }, - { - "title": "Britt Nicole - Pave (Karaoke EZ Sing)", - "id": "3rT5vIZL-Ic" - }, - { - "title": "New Politics - Tonight You're Perfect (Karaoke EZ Sing)", - "id": "YS-aFDVbjw4" - }, - { - "title": "Jon Secada - Whipped (Karaoke EZ Sing)", - "id": "weISI9aZCEo" - }, - { - "title": "Selena Gomez - Back To You (Karaoke EZ Sing)", - "id": "c94HN5hFY7c" - }, - { - "title": "Mudvayne - Central Disposal (Karaoke EZ Sing)", - "id": "ldSD11yrEUc" - }, - { - "title": "Greta Van Fleet - Meet On The Ledge (Karaoke EZ Sing)", - "id": "ETWC58v9ekk" - }, - { - "title": "Valeria - Rhythm Of The Night (Karaoke EZ Sing)", - "id": "NCI76gy6udw" - }, - { - "title": "Billie Piper - Walk Of Life (Karaoke EZ Sing)", - "id": "qLOKa9bXdHI" - }, - { - "title": "Fleetwood Mac - Save Me (Karaoke EZ Sing)", - "id": "2I6_kXG7pZM" - }, - { - "title": "Bring Me The Horizon - Mantra (Karaoke EZ Sing)", - "id": "fQLjtzDEZkc" - }, - { - "title": "Feeder - Buck Rogers (Karaoke EZ Sing)", - "id": "jIOwibvavqc" - }, - { - "title": "A Teens - Upside Down (Karaoke EZ Sing)", - "id": "YEXahrllWkQ" - }, - { - "title": "East 17 - It's Alright (Karaoke EZ Sing)", - "id": "5ce2oJZIwHA" - }, - { - "title": "Mudvayne - Seed (Karaoke EZ Sing)", - "id": "rwk2hMDAGf0" - }, - { - "title": "Mudvayne - The Patient Mental (Karaoke EZ Sing)", - "id": "P69wPsPW1aE" - }, - { - "title": "The Corrs - Give Me A Reason (Karaoke EZ Sing)", - "id": "6no2rqCzuOQ" - }, - { - "title": "Goo Goo Dolls - Bullet Proof (Karaoke EZ Sing)", - "id": "czrNmPhVi6Q" - }, - { - "title": "Alice In Chains - Never Fade (Karaoke EZ Sing)", - "id": "gOW_lAsesfM" - }, - { - "title": "Peggy Lee - So What's New (Karaoke EZ Sing)", - "id": "90frnh7BI9I" - }, - { - "title": "Jesus Loves You - Bow Down Mister (Karaoke EZ Sing)", - "id": "gOwEr8BVk3s" - }, - { - "title": "Elaine Paige And Barbara Dickson - I Know Him So Well (Karaoke EZ Sing)", - "id": "uBeO8gl5tBc" - }, - { - "title": "Terry Callier - I Don't Want To See Myself (Karaoke EZ Sing)", - "id": "7mei8jDPUsc" - }, - { - "title": "Years & Years - Real (Karaoke EZ Sing)", - "id": "chZVoXDWt4M" - }, - { - "title": "Charles And Eddie - Would I Lie To You? (Karaoke EZ Sing)", - "id": "or7b9KUQHZY" - }, - { - "title": "Crystal Waters - Makin' Happy (Karaoke EZ Sing)", - "id": "FA0AAZ3O3Jc" - }, - { - "title": "Vaults - One Day I'll Fly Away (Karaoke EZ Sing)", - "id": "6BasxeInuZA" - }, - { - "title": "Aqua - Cartoon Heroes (Karaoke EZ Sing)", - "id": "KBvKUUhhXZg" - }, - { - "title": "The Style Council - Walls Come Tumbling Down (Karaoke EZ Sing)", - "id": "aDm2P-QY3_w" - }, - { - "title": "Hannah Kerr - Warrior (Karaoke EZ Sing)", - "id": "Fbln3qwRNTg" - }, - { - "title": "Michelle McManus - All This Time (Karaoke EZ Sing)", - "id": "DU_bX6v9QSg" - }, - { - "title": "Hear'Say - Pure And Simple (Karaoke EZ Sing)", - "id": "Bak7dxBlQwE" - }, - { - "title": "Joe Cocker - When The Night Comes (Karaoke EZ Sing)", - "id": "qfo5u3OjZxk" - }, - { - "title": "East 17 - Deep (Karaoke EZ Sing)", - "id": "OygW6AH7EYY" - }, - { - "title": "Bwitched (B*witched) - Jump Down (Karaoke EZ Sing)", - "id": "e61RvPBXQnw" - }, - { - "title": "Causes - Teach Me How To Dance With You (Karaoke EZ Sing)", - "id": "x1qUu2EKDBM" - }, - { - "title": "Crash Test Dummies - God Shuffled His Feet (Karaoke EZ Sing)", - "id": "ctIdfzJsU_E" - }, - { - "title": "Amazons - Junk Food Forever (Karaoke EZ Sing)", - "id": "HXu0697Stmc" - }, - { - "title": "Trippie Redd Ft. Travis Scott - Dark Knight Dummo (Karaoke EZ Sing)", - "id": "UcXLp9Yc_ow" - }, - { - "title": "Reel 2 Real Feat Mad Stuntman - Can You Feel It? (Karaoke EZ Sing)", - "id": "d5m7k0HL4zA" - }, - { - "title": "Chvrches - Never Ending Circles (Karaoke EZ Sing)", - "id": "DGQTYYnFFUI" - }, - { - "title": "Fatboy Slim feat. Macy Gray - Demons (Karaoke EZ Sing)", - "id": "St9jTjOHvb8" - }, - { - "title": "Mudvayne - Skrying (Karaoke EZ Sing)", - "id": "gYbWpzBBhsU" - }, - { - "title": "Birds Of Tokyo - Plans (Karaoke EZ Sing)", - "id": "KuwMFh-cpa0" - }, - { - "title": "Toni Braxton - I Belong To You (Karaoke EZ Sing)", - "id": "tHoqG8JqaL4" - }, - { - "title": "Alanis Morissette - So Unsexy (Karaoke EZ Sing)", - "id": "YyakSslugfA" - }, - { - "title": "Toploader - Just Hold On (Karaoke EZ Sing)", - "id": "43IYncdzD8A" - }, - { - "title": "Foxes - Let Go For Tonight (Karaoke EZ Sing)", - "id": "Z61rzf3t6sA" - }, - { - "title": "Aztec Camera - Somewhere In My Heart (Karaoke EZ Sing)", - "id": "kmJwhZGfqzo" - }, - { - "title": "Craig David - Spanish (Karaoke EZ Sing)", - "id": "AfmF_lzXN6I" - }, - { - "title": "A Teens - Halfway Around The World (Karaoke EZ Sing)", - "id": "SeUXn1CyaYw" - }, - { - "title": "Sisters Of Mercy - Temple Of Love (Karaoke EZ Sing)", - "id": "zRFfEdAJwho" - }, - { - "title": "The Cheeky Girls - Cheeky Song (Touch My Bum) (Karaoke EZ Sing)", - "id": "kDrtPr_vxA8" - }, - { - "title": "Vengaboys - Uncle John From Jamaica (Karaoke EZ Sing)", - "id": "AB4NbCdO6Ek" - }, - { - "title": "La Roux - In For The Kill (Karaoke EZ Sing)", - "id": "VWPl5UbvDLI" - }, - { - "title": "Atomic Kitten - Whole Again (Karaoke EZ Sing)", - "id": "h1pwo72iaAI" - }, - { - "title": "Vengaboys - Cheekah Bow Bow (That Computer Song) (Karaoke EZ Sing)", - "id": "IqaDuw-9t_4" - }, - { - "title": "Death Cab For Cutie - I Dreamt We Spoke Again (Karaoke EZ Sing)", - "id": "uXJZuWaJ-kQ" - }, - { - "title": "The Corrs - So Young (Karaoke EZ Sing)", - "id": "KxGCX3iThTo" - }, - { - "title": "Christina Milian - When You Look At Me (Karaoke EZ Sing)", - "id": "-QS8VOa-nYM" - }, - { - "title": "Britney Spears - You Got It All (Karaoke EZ Sing)", - "id": "uoQuCWyIuE0" - }, - { - "title": "3 Doors Down - Ticket To Heaven (Karaoke EZ Sing)", - "id": "aV_3zAGqhWc" - }, - { - "title": "E-rotic - Max Don't Have Sex With Your Ex (Karaoke EZ Sing)", - "id": "YARyrk7d8rs" - }, - { - "title": "PVRIS - What's Wrong (Karaoke EZ Sing)", - "id": "yVicXvaHhAM" - }, - { - "title": "Crusaders Ft. Randy Crawford - Street Life (Karaoke EZ Sing)", - "id": "YmjSu7-KxCg" - }, - { - "title": "Sunscreem - Love U More (Karaoke EZ Sing)", - "id": "lO2gGwpG4GM" - }, - { - "title": "Birds Of Tokyo - Lanterns (Karaoke EZ Sing)", - "id": "ck8ZYQfvFus" - }, - { - "title": "The Corrs - Would You Be Happier? (Karaoke EZ Sing)", - "id": "DC9W_KcgClA" - }, - { - "title": "T'Pau (Tpau) - China In Your Hand (Karaoke EZ Sing)", - "id": "8ZKtAcww5E4" - }, - { - "title": "Mudvayne - Not Falling (Karaoke EZ Sing)", - "id": "NJjeNZxU6ls" - }, - { - "title": "Mariah Carey - Can't Take That Away From Me (Mariah's Theme) (Karaoke EZ Sing)", - "id": "-khG2ozXUew" - }, - { - "title": "Outlaws - Ghost Riders In The Sky (Karaoke EZ Sing)", - "id": "dFqtOnlQaso" - }, - { - "title": "Tavares - Don't Take Away The Music (Karaoke EZ Sing)", - "id": "Fbw7MMk_1to" - }, - { - "title": "Scouting For Girls - Love How It Hurts (Karaoke EZ Sing)", - "id": "bkGUH2D42Bo" - }, - { - "title": "Culture Club - Victims (Karaoke EZ Sing)", - "id": "bxgJ97qS0as" - }, - { - "title": "Airborne Toxic Event - Timeless (Karaoke EZ Sing)", - "id": "enbH4KVz9QE" - }, - { - "title": "Marian Hill - Subtle Thing (Karaoke EZ Sing)", - "id": "uY67-IiIgIw" - }, - { - "title": "Imelda May - Mayhem (Karaoke EZ Sing)", - "id": "i8kdRLSWsnM" - }, - { - "title": "Eli Young Band - Even If It Breaks Your Heart (Karaoke EZ Sing)", - "id": "HXq3z7Rli6U" - }, - { - "title": "Coheed and Cambria - Blood Red Summer (Karaoke EZ Sing)", - "id": "n9Ylk3yxzmY" - }, - { - "title": "Moloko - Pure Pleasure Seeker (Karaoke EZ Sing)", - "id": "2RY_5I4mC-M" - }, - { - "title": "New Radicals - You Get What You Give (Karaoke EZ Sing)", - "id": "WXjS27zEx68" - }, - { - "title": "Richard Marx - Hazard (Karaoke EZ Sing)", - "id": "zT0RSY8oNjM" - }, - { - "title": "One Night Only - Just For Tonight (Karaoke EZ Sing)", - "id": "r8YE2IJAous" - }, - { - "title": "Orchestral Manoeuvres In The Dark - Enola Gay (Karaoke EZ Sing)", - "id": "5W4xMomOgQI" - }, - { - "title": "U2 And Green Day - Saints Are Coming (Karaoke EZ Sing)", - "id": "Nf3gGGNHqzg" - }, - { - "title": "Moloko - Sing It Back (Karaoke EZ Sing)", - "id": "IsECKSHOJBc" - }, - { - "title": "Wet Wet Wet - Goodnight Girl (Karaoke EZ Sing)", - "id": "hoM5xuN_2Q8" - }, - { - "title": "Kooks - You Don't Love Me (Karaoke EZ Sing)", - "id": "FsQGESzdZmo" - }, - { - "title": "Sylvan Esso - Radio (Karaoke EZ Sing)", - "id": "_C5hAZxQAb4" - }, - { - "title": "Phil Collins - Something Happened On The Way To Heaven (Karaoke EZ Sing)", - "id": "DfKbUZvE9-A" - }, - { - "title": "Texas - I Don't Want A Lover (Karaoke EZ Sing)", - "id": "myaQ6aRfWAg" - }, - { - "title": "Coheed and Cambria - A Favor House Atlantic (Karaoke EZ Sing)", - "id": "vwEuSOAONGs" - }, - { - "title": "Glass Animals - Pork Soda (Karaoke EZ Sing)", - "id": "ANHNAK9ppPo" - }, - { - "title": "Vigiland - Be Your Friend (Karaoke EZ Sing)", - "id": "uYRwCo-KAOs" - }, - { - "title": "XX - I Dare You (Karaoke EZ Sing)", - "id": "12Umh0aVxyc" - }, - { - "title": "Glass Animals - Youth (Karaoke EZ Sing)", - "id": "FYJ40jmS-AM" - }, - { - "title": "Decemberists - Severed (Karaoke EZ Sing)", - "id": "o3dfFWmZaCs" - }, - { - "title": "National - Day I Die (Karaoke EZ Sing)", - "id": "z9NpnBabvcg" - }, - { - "title": "Sylvan Esso - Die Young (Karaoke EZ Sing)", - "id": "kGZHF4vVbHw" - }, - { - "title": "Cake - Distance (Karaoke EZ Sing)", - "id": "wJv6tA0z7oM" - }, - { - "title": "The Bamboos - Lit Up (Karaoke EZ Sing)", - "id": "rWTRu22Ymaw" - }, - { - "title": "Ben Folds - Landed (Karaoke EZ Sing)", - "id": "ML58l0vfKns" - }, - { - "title": "Duffy - Rockferry (Karaoke EZ Sing)", - "id": "YJtyyN1iNpc" - }, - { - "title": "Andra Day - Rise Up (Karaoke EZ Sing)", - "id": "0qGBdf4-S-M" - }, - { - "title": "Volbeat - Black Rose (Feat. Danko Jones) (Karaoke EZ Sing)", - "id": "M21-83DLGmM" - }, - { - "title": "Jay & The Americans - She Cried (Karaoke EZ Sing)", - "id": "k8dO85emzCU" - }, - { - "title": "Duffy - Rain On Your Parade (Karaoke EZ Sing)", - "id": "3MMtgTjiGT0" - }, - { - "title": "Mario Lanza - Be My Love (Karaoke EZ Sing)", - "id": "7ZU8HnxUqBI" - }, - { - "title": "Bryan Ferry - Slave To Love (Karaoke EZ Sing)", - "id": "aZXyMufYoi4" - }, - { - "title": "Beach Boys - Surfin' Safari (Karaoke EZ Sing)", - "id": "qD2iX9ew1wo" - }, - { - "title": "The Specials - Too Much Too Young (Karaoke EZ Sing)", - "id": "uitmHo7xbzg" - }, - { - "title": "Tears For Fears - Woman In Chains (Karaoke EZ Sing)", - "id": "2ksqHzrSrQM" - }, - { - "title": "Xscape - Arms Of The One Who Loves You (Karaoke EZ Sing)", - "id": "1WAeyg7sRr4" - }, - { - "title": "Avril Lavigne - Anything But Ordinary (Karaoke EZ Sing)", - "id": "XIuD01BV1nc" - }, - { - "title": "Simply Red - Your Eyes (Karaoke EZ Sing)", - "id": "ln0wteI54pw" - }, - { - "title": "Status Quo - Ice In The Sun (Karaoke EZ Sing)", - "id": "GGWJ3S4Rows" - }, - { - "title": "The Avett Brothers - Laundry Room (Karaoke EZ Sing)", - "id": "719GGEp-yAU" - }, - { - "title": "Steel Pulse - Blues Dance Raid (Karaoke EZ Sing)", - "id": "as1lAH7ROkE" - }, - { - "title": "Kenny Chesney - American Kids (Karaoke EZ Sing)", - "id": "X9qv_Fv9uxA" - }, - { - "title": "Simply Red - Fairground (Karaoke EZ Sing)", - "id": "RLE67l9pHzw" - }, - { - "title": "Terence Trent D'Arby - She Kissed Me (Karaoke EZ Sing)", - "id": "vbBn6TSn8Zw" - }, - { - "title": "Sparks - Never Turn Your Back On Mother Earth (Karaoke EZ Sing)", - "id": "N7uIezpmz-Q" - }, - { - "title": "Simply Red - Your Mirror (Karaoke EZ Sing)", - "id": "IzGPLj_mct8" - }, - { - "title": "Macklemore and Ryan Lewis ft. Wanz - Thrift Shop (Karaoke EZ Sing)", - "id": "wk_ETipx93c" - }, - { - "title": "Grace Jones - Pull Up To The Bumper (Karaoke EZ Sing)", - "id": "FfUuqkiSk2w" - }, - { - "title": "Owl City - Hello Seattle (Karaoke EZ Sing)", - "id": "QwtgPr1aSGE" - }, - { - "title": "Steel Pulse - Worth His Weight In Gold (Karaoke EZ Sing)", - "id": "7hKy8gbMkYc" - }, - { - "title": "Steel Pulse - Roller Skates (Karaoke EZ Sing)", - "id": "4Ws0WuLHUmI" - }, - { - "title": "Terence Trent D'Arby - Let Her Down Easy (Karaoke EZ Sing)", - "id": "DrG5Mm-VWX4" - }, - { - "title": "Type O Negative - I Like Goils (Karaoke EZ Sing)", - "id": "YY_eIM4a_UI" - }, - { - "title": "Lana Del Rey - Young and Beautiful (Karaoke EZ Sing)", - "id": "I9WFcHtSLxU" - }, - { - "title": "David Essex - Hold Me Close (Karaoke EZ Sing)", - "id": "HHYea278EOM" - }, - { - "title": "Karen Rodriguez - Happy April Fools (Karaoke EZ Sing)", - "id": "x_5y7JuA5aY" - }, - { - "title": "Red Rider - Lunatic Fringe (Karaoke EZ Sing)", - "id": "dn1osEM-G9o" - }, - { - "title": "D.r.a.m. feat. Lil Yachty - Broccoli (Karaoke EZ Sing)", - "id": "9kB4WOZOsh0" - }, - { - "title": "Gregory Porter Ftg Lalah Hathaway - Insanity (Karaoke EZ Sing)", - "id": "UUXQt1m5KWY" - }, - { - "title": "Whodini - Freaks Come Out At Night (Karaoke EZ Sing)", - "id": "XNNIhdVvPBw" - }, - { - "title": "Sparks - When Do I Get To Sing My Way (Karaoke EZ Sing)", - "id": "8_sLw3-5s4M" - }, - { - "title": "Benjamin Harper - Amen Omen (Karaoke EZ Sing)", - "id": "geHe0GzeBZ0" - }, - { - "title": "Roxy Music - Avalon (Karaoke EZ Sing)", - "id": "Tvq5q66i8OQ" - }, - { - "title": "Steel Pulse - Wild Goose Chase (Karaoke EZ Sing)", - "id": "6xgK1G4B0NI" - }, - { - "title": "The Brand New Heavies - Midnight At The Oasis (Karaoke EZ Sing)", - "id": "5_PAIfWlb8E" - }, - { - "title": "Vigiland - Let's Escape (Karaoke EZ Sing)", - "id": "hZU4G-2ffB0" - }, - { - "title": "MGMT - Alien Days (Karaoke EZ Sing)", - "id": "t4wLkveDWe8" - }, - { - "title": "Yellowcard - Lights & Sounds (Karaoke EZ Sing)", - "id": "atLrdS67vGo" - }, - { - "title": "Ed Sheeran - Make It Rain (Karaoke EZ Sing)", - "id": "8D-gtmyb5qc" - }, - { - "title": "Sylvia - Pillow Talk (Karaoke EZ Sing)", - "id": "qa6SKqCwPdA" - }, - { - "title": "AlunaGeorge - Turn Up The Love (Karaoke EZ Sing)", - "id": "OCCFkDkW2ME" - }, - { - "title": "Belinda Carlisle - (We Want) The Same Thing (Karaoke EZ Sing)", - "id": "hWJccMm9LjM" - }, - { - "title": "OK Go - Get Over It (Karaoke EZ Sing)", - "id": "JAAOuA-ec4s" - }, - { - "title": "Mary J Blige - Your Child (Karaoke EZ Sing)", - "id": "CcEPjNxFtNY" - }, - { - "title": "Vigiland - Pong Dance (Karaoke EZ Sing)", - "id": "xuwG9C4jh8A" - }, - { - "title": "Vigiland - Shots & Squats (Karaoke EZ Sing)", - "id": "iWXBlLFEtDE" - }, - { - "title": "Vigiland - Friday Night (Karaoke EZ Sing)", - "id": "eaWjZS_HYmM" - }, - { - "title": "Death Cab For Cutie - You Are A Tourist (Karaoke EZ Sing)", - "id": "mQI5rk1H4kY" - }, - { - "title": "Bullet For My Valentine - Waking The Demon (Karaoke EZ Sing)", - "id": "4QIBZj8tf_A" - }, - { - "title": "Type O Negative - Everything Dies (Karaoke EZ Sing)", - "id": "u7t-1xD-iRo" - }, - { - "title": "Saint Motel - Cold Cold Man (Karaoke EZ Sing)", - "id": "oywWybE49J0" - }, - { - "title": "Type O Negative - My Girlfriend's Girlfriend (Karaoke EZ Sing)", - "id": "1eGQPVDzpMY" - }, - { - "title": "Engelbert Humperdinck - Ten Guitars (Karaoke EZ Sing)", - "id": "aUbQRdw4ySg" - }, - { - "title": "Wall Of Voodoo - Mexican Radio (Karaoke)", - "id": "ZSjNcj5FKJU" - }, - { - "title": "Devo - Day My Baby Gave Me A Surprise (Karaoke EZ Sing)", - "id": "0bzaYW_QX6U" - }, - { - "title": "Death Cab For Cutie - You Can Do Better Than Me (Karaoke EZ Sing)", - "id": "nY0Jy8TW1BI" - }, - { - "title": "Camelphat & Elderbrook - Cola (Karaoke EZ Sing)", - "id": "trCG_i0TMPw" - }, - { - "title": "Pop Evil - Waking Lions (Karaoke EZ Sing)", - "id": "u0N4G-e5W0g" - }, - { - "title": "Ying Yang Twins - Salt Shaker (Karaoke EZ Sing)", - "id": "6rBRR5jAhDA" - }, - { - "title": "Live - Lakini's Juice (Karaoke EZ Sing)", - "id": "ovdelj77iN0" - }, - { - "title": "Jason Aldean - Love Was Easy (Karaoke EZ Sing)", - "id": "Sy9M_Pc0wdE" - }, - { - "title": "Cheetah Girls - Cinderella (Karaoke EZ Sing)", - "id": "wnMCg7SBVEM" - }, - { - "title": "Nathaniel Rateliff & The Night Sweats ftg Lucius - Coolin' Out (Karaoke EZ Sing)", - "id": "OOsSapEGLEI" - }, - { - "title": "Selena Gomez and Marshmello - Wolves (Karaoke EZ Sing)", - "id": "yUYVtTb0Tso" - }, - { - "title": "Diana Krall - I Miss You So (Karaoke EZ Sing)", - "id": "9qbwT-SB9sU" - }, - { - "title": "Seether - Betray And Degrade (Karaoke EZ Sing)", - "id": "pcy_Y87rMa0" - }, - { - "title": "Five Finger Death Punch - Gone Away (Karaoke EZ Sing)", - "id": "-fRPn5dj0AE" - }, - { - "title": "Ini Kamoze - Here Comes The Hotstepper (Karaoke EZ Sing)", - "id": "7wkjq_DbTFk" - }, - { - "title": "B.o.B - I Am The Champion (Karaoke EZ Sing)", - "id": "HjY_ozLe7GM" - }, - { - "title": "Erykah Badu - Booty (Karaoke EZ Sing)", - "id": "gaRhTGpBrwA" - }, - { - "title": "George Ezra - Listen To The Man (Karaoke EZ Sing)", - "id": "jwZGfBGQz7I" - }, - { - "title": "You Me At Six - Lived A Lie (Karaoke EZ Sing)", - "id": "_vh_UFmodgQ" - }, - { - "title": "Wilco - Outtasite (Outta Mind) (Karaoke EZ Sing)", - "id": "ARIFRK3RPSA" - }, - { - "title": "Saint Motel - My Type (Karaoke EZ Sing)", - "id": "I5fOuyGsYDo" - }, - { - "title": "Cassadee Pope - I Wish I Could Break Your Heart (Karaoke EZ Sing)", - "id": "rV87lRcUrWQ" - }, - { - "title": "Athlete - Superhuman Touch (Karaoke EZ Sing)", - "id": "JaA8a-7hryI" - }, - { - "title": "Dizzee Rascal Ftg. Armand Van Helden - Bonkers (Karaoke EZ Sing)", - "id": "MlSxziJRsLw" - }, - { - "title": "Type O Negative - I Don't Wanna Be Me (Karaoke EZ Sing)", - "id": "Q1xGXFaj56U" - }, - { - "title": "Death Cab For Cutie - Good Help (Is So Hard To Find) (Karaoke EZ Sing)", - "id": "ig_NBk-1Tm0" - }, - { - "title": "Childish Gambino - Centipede (Karaoke EZ Sing)", - "id": "FlcGMw_LNcQ" - }, - { - "title": "Tears For Fears - Sowing The Seeds Of Love (Karaoke EZ Sing)", - "id": "XzUbmOQrPNc" - }, - { - "title": "GWAR - Sick Of You (Karaoke EZ Sing)", - "id": "hxM5t7maS90" - }, - { - "title": "Metric - Breathing Underwater (Karaoke EZ Sing)", - "id": "D9blBPcjGQI" - }, - { - "title": "Simply Red - We're In This Together (Karaoke EZ Sing)", - "id": "j3AnpQj9PUU" - }, - { - "title": "The Specials - Ghost Town (Karaoke EZ Sing)", - "id": "OK7rvE5ZXPQ" - }, - { - "title": "Cassadee Pope - Wasting All These Tears (Karaoke EZ Sing)", - "id": "B_EDyzBi-HI" - }, - { - "title": "Simply Red - Never Never Love (Karaoke EZ Sing)", - "id": "oqY5HMaj3G4" - }, - { - "title": "Axwell & Ingrosso - Something New (Karaoke EZ Sing)", - "id": "Ip6gJvPyOLs" - }, - { - "title": "Whitney Houston - Where You Are (Karaoke EZ Sing)", - "id": "i1DXNUzBevY" - }, - { - "title": "Terence Trent D'Arby - If You Let Me Stay (Karaoke EZ Sing)", - "id": "5Vtvxtko83o" - }, - { - "title": "The Specials - Nite Klub (Karaoke EZ Sing)", - "id": "88Bj-FgYGyo" - }, - { - "title": "Culture Club - Church Of The Poison Mind (Karaoke EZ Sing)", - "id": "i6ykVUD9oQk" - }, - { - "title": "Bring Me The Horizon - Avalanche (Karaoke EZ Sing)", - "id": "37IiA5sp8Sw" - }, - { - "title": "Death Cab For Cutie - Marching Bands Of Manhattan (Karaoke EZ Sing)", - "id": "hBsT29vh-SM" - }, - { - "title": "Snow Patrol - Spitting Games (Karaoke EZ Sing)", - "id": "fWjyIVSpnss" - }, - { - "title": "Strypes - Blue Collar Jane (Karaoke EZ Sing)", - "id": "RYECYsFSMKQ" - }, - { - "title": "O-Town - Love Should Be A Crime (Karaoke EZ Sing)", - "id": "bQaDAtK3MFo" - }, - { - "title": "Chingy ftg. Snoop Dogg And Ludacris - Holidae Inn (Karaoke EZ Sing)", - "id": "hNRrcsfnCdU" - }, - { - "title": "Ultravox - Reap The Wild Wind (Karaoke EZ Sing)", - "id": "h-wT2QLH14Q" - }, - { - "title": "Crash Test Dummies - Superman's Song (Karaoke EZ Sing)", - "id": "PnUvXVQvHzM" - }, - { - "title": "Krokus - Screaming In The Night (Karaoke EZ Sing)", - "id": "4ZyLPwMA47k" - }, - { - "title": "Mudvayne - Scream With Me (Karaoke EZ Sing)", - "id": "YK1YSkDcwKA" - }, - { - "title": "Chvrches - Gun (Karaoke EZ Sing)", - "id": "tcsDuIg8P2g" - }, - { - "title": "Snoop Dogg ftg. R. Kelly - That's That S(Karaoke)", - "id": "CA6pNnUaZ-8" - }, - { - "title": "Maroon 5 - Tangled (Karaoke EZ Sing)", - "id": "v42nBkWWh-Y" - }, - { - "title": "Owl City - Captains Of The Sky (Karaoke EZ Sing)", - "id": "HPkD8CqWDdg" - }, - { - "title": "Maroon 5 - Not Coming Home (Karaoke EZ Sing)", - "id": "seDGRnJ_Q9E" - }, - { - "title": "Imagine Dragons - I Was Me (Karaoke EZ Sing)", - "id": "GdwTLNPtI0Y" - }, - { - "title": "Terence Trent D'Arby - Dance Little Sister (Karaoke EZ Sing)", - "id": "jjhy6-WHqtQ" - }, - { - "title": "Triumph - Fight The Good Fight (Karaoke EZ Sing)", - "id": "FQcyUEUZw60" - }, - { - "title": "Chvrches - Bury It (Karaoke EZ Sing)", - "id": "_tbf9nHopmA" - }, - { - "title": "Maroon 5 - The Sun (Karaoke EZ Sing)", - "id": "MMJNOFuXAZI" - }, - { - "title": "Beastie Boys - Sabotage (Karaoke EZ Sing)", - "id": "Ez3Rc2kSKUs" - }, - { - "title": "Sublime - What I Got (Karaoke EZ Sing)", - "id": "_rBtnrj9TY4" - }, - { - "title": "Saint Motel - Born Again (Karaoke EZ Sing)", - "id": "yvfW3DyRi3w" - }, - { - "title": "Cyndi Lauper - Money Changes Everything (Karaoke EZ Sing)", - "id": "SjuENFkGUd4" - }, - { - "title": "Robbie Williams - Advertising Space (Karaoke EZ Sing)", - "id": "_MEn92kjx08" - }, - { - "title": "Fatboy Slim - Right Here, Right Now (Karaoke EZ Sing)", - "id": "NTNfWdWbqHc" - }, - { - "title": "Tony! Toni! Tone! - (Lay Your Head On My) Pillow (Karaoke EZ Sing)", - "id": "l0a63HLcAEI" - }, - { - "title": "Rick Springfield - Affair Of The Heart (Karaoke EZ Sing)", - "id": "Bw771vSHRwI" - }, - { - "title": "Glasvegas - Daddy's Gone (Karaoke EZ Sing)", - "id": "w0-FKkYvtnM" - }, - { - "title": "Saliva - After Me (Karaoke EZ Sing)", - "id": "AjclokR1XMc" - }, - { - "title": "Alanis Morissette - All I Really Want (Karaoke EZ Sing)", - "id": "FU5VRDKp1aA" - }, - { - "title": "Ash - A Life Less Ordinary (Karaoke EZ Sing)", - "id": "mQEsSqH2etY" - }, - { - "title": "Dinah Washington - What A Difference A Day Makes (Karaoke EZ Sing)", - "id": "Z3D7lpDTFyI" - }, - { - "title": "Alanis Morissette - So Pure (Karaoke EZ Sing)", - "id": "nkQ5hCynbD8" - }, - { - "title": "Miley Cyrus - Younger Now (Karaoke EZ Sing)", - "id": "9BCBb8I9pKo" - }, - { - "title": "Powerman 5000 - When Worlds Collide (Karaoke EZ Sing)", - "id": "cAD91NDR6-I" - }, - { - "title": "Keane - Everybody's Changing (Karaoke EZ Sing)", - "id": "mnvKDXl66OU" - }, - { - "title": "Alice In Chains - Scalpel (Karaoke EZ Sing)", - "id": "Bn0gQF_8VRw" - }, - { - "title": "Lil Wayne - Go DJ (Karaoke EZ Sing)", - "id": "x-mpiKP27Ec" - }, - { - "title": "Alice In Chains - Choke (Karaoke EZ Sing)", - "id": "TQVVzh3j4Mw" - }, - { - "title": "Alice In Chains - Take Her Out (Karaoke EZ Sing)", - "id": "-w76ZVgdzsg" - }, - { - "title": "Four Tops - Walk Away Renee (Karaoke EZ Sing)", - "id": "M20fUJwF3UU" - }, - { - "title": "MGMT - Of Moons, Birds & Monsters (Karaoke EZ Sing)", - "id": "y83xMbMO8FQ" - }, - { - "title": "Rick Springfield - Don't Talk To Strangers (Karaoke EZ Sing)", - "id": "rd5NNajSCxA" - }, - { - "title": "General Public - Tenderness (Karaoke EZ Sing)", - "id": "CMupEtFywC8" - }, - { - "title": "Lisa Stansfield - All Woman (Karaoke EZ Sing)", - "id": "m6YHGp00vzs" - }, - { - "title": "Commitments - Take Me To The River (Karaoke EZ Sing)", - "id": "VkgwQpn2lDw" - }, - { - "title": "Duncan Sheik - Barely Breathing (Karaoke EZ Sing)", - "id": "PnSynt94l8U" - }, - { - "title": "Chicago - Along Comes A Woman (Karaoke EZ Sing)", - "id": "4Og3GaofHEI" - }, - { - "title": "Cure - Love Cats (Karaoke EZ Sing)", - "id": "eJp9OtZp9Aw" - }, - { - "title": "Type O Negative - Black No. 1 (Karaoke EZ Sing)", - "id": "qI2tjLmOM84" - }, - { - "title": "Styx - Come Sail Away (Karaoke EZ Sing)", - "id": "YgqnwiIftKc" - }, - { - "title": "Fleetwood Mac - As Long As You Follow (Karaoke EZ Sing)", - "id": "EX3uWYInhRY" - }, - { - "title": "Jimmy Buffett - Pencil Thin Moustache (Karaoke EZ Sing)", - "id": "3deFa_yZs2U" - }, - { - "title": "Phantogram - Lights (Karaoke EZ Sing)", - "id": "KoPeSmzfz4s" - }, - { - "title": "Carly Simon - Two Little Sisters (Karaoke EZ Sing)", - "id": "38IZIQ5OG18" - }, - { - "title": "Dashboard Confessional - Stolen (Karaoke EZ Sing)", - "id": "EYpHosETTiw" - }, - { - "title": "Basia - Time And Tide (Karaoke EZ Sing)", - "id": "_dKk1P_7BEI" - }, - { - "title": "Alice In Chains - Low Ceiling (Karaoke EZ Sing)", - "id": "5WRYADUdsuk" - }, - { - "title": "Ozzy Osbourne - Hellraiser (Karaoke EZ Sing)", - "id": "t7BHY63cH6E" - }, - { - "title": "Aaliyah - I Refuse (Karaoke EZ Sing)", - "id": "cy4w3ljet9Q" - }, - { - "title": "Lisa Stansfield - All Around The World (Karaoke EZ Sing)", - "id": "40Mf_WDIg5s" - }, - { - "title": "Powerman 5000 - Mega Kung Fu Radio (Karaoke EZ Sing)", - "id": "nA1FeGT2zcg" - }, - { - "title": "Alanis Morissette - Precious Illusions (Karaoke EZ Sing)", - "id": "2c9wGvf2RIg" - }, - { - "title": "Khalid - Young, Dumb and Broke (Karaoke EZ Sing)", - "id": "Vpq6sL_cd8U" - }, - { - "title": "Hollies - Carrie-Anne (Karaoke)", - "id": "1abw3b0xlk8" - }, - { - "title": "K.T. Oslin - 80's Ladies (Karaoke)", - "id": "crzMf6Uy9dQ" - }, - { - "title": "T. Rex - Telegram Sam (Karaoke EZ Sing)", - "id": "qSWGR9m6F-o" - }, - { - "title": "Frank Sinatra - All Or Nothing At All (Karaoke EZ Sing)", - "id": "89JFpiV2lVo" - }, - { - "title": "The Gap Band - Burn Rubber On Me (Karaoke EZ Sing)", - "id": "-1HZbajngFw" - }, - { - "title": "Right Said Fred - Don't Talk Just Kiss (Karaoke EZ Sing)", - "id": "fYNcvxIOB9w" - }, - { - "title": "Keane - Silenced By The Night (Karaoke EZ Sing)", - "id": "HNgC0pQdEUw" - }, - { - "title": "The Who - You Better Bet (Karaoke EZ Sing)", - "id": "pnDGoWNjnE0" - }, - { - "title": "Aaliyah - Never No More (Karaoke EZ Sing)", - "id": "NlYWWP5hO-s" - }, - { - "title": "Monster Magnet - Space Lord (Karaoke EZ Sing)", - "id": "Pa5xnJIWXG0" - }, - { - "title": "Keane - Better Than This (Karaoke EZ Sing)", - "id": "S5TNnDOpelA" - }, - { - "title": "Edwyn Collins - A Girl Like You (Karaoke EZ Sing)", - "id": "m00f0546pAw" - }, - { - "title": "Diana Krall - Devil May Care (Karaoke EZ Sing)", - "id": "f3-LHSwXrrw" - }, - { - "title": "Specials - A Message To You Rudy (Karaoke EZ Sing)", - "id": "4NEwCebxmOo" - }, - { - "title": "Aaliyah - Age Ain't Nothing But A Number (Karaoke EZ Sing)", - "id": "m4gcJQ-bugY" - }, - { - "title": "Stone Sour - Song #3 (Karaoke EZ Sing)", - "id": "PscV3vf-Rm4" - }, - { - "title": "Aaliyah - I Can Be (Karaoke EZ Sing)", - "id": "Sc5NwGVHvzU" - }, - { - "title": "Aaron Carter - Aaron's Party (Come Get It) (Karaoke EZ Sing)", - "id": "JZTIQz6YGig" - }, - { - "title": "Lil Jon and the East Side Boyz - Put Yo Hood Up (Karaoke EZ Sing)", - "id": "8jr_dCk5vgs" - }, - { - "title": "Big & Rich - The Man I Am Right Now (Karaoke EZ Sing)", - "id": "U4ZzLHWhr_Q" - }, - { - "title": "Finger Eleven - Them Vs You Vs Me (Karaoke EZ Sing)", - "id": "l9FGO2Dg65g" - }, - { - "title": "T. Rex - Metal Guru (Karaoke EZ Sing)", - "id": "wXeCSE_aNZA" - }, - { - "title": "Luis Fonsi And Daddy Yankee ftg. Justin Bieber - Despacito (Karaoke EZ Sing)", - "id": "mwROnw8XvFo" - }, - { - "title": "Del Amitri - Always The Last To Know (Karaoke EZ Sing)", - "id": "SQDNKp_Co18" - }, - { - "title": "Miley Cyrus - Malibu (Karaoke EZ Sing)", - "id": "3Y2gV3SAtjQ" - }, - { - "title": "Blue - Breathe Easy (Karaoke EZ Sing)", - "id": "hdswk0N8_hk" - }, - { - "title": "Boyzone - All That I Need (Karaoke EZ Sing)", - "id": "RR6lVu_Rghg" - }, - { - "title": "Alessia Cara - How Far I'll Go (Karaoke EZ Sing)", - "id": "uvPhkBaFE24" - }, - { - "title": "Aaliyah - Read Between The Lines (Karaoke EZ Sing)", - "id": "_qFMlhdU99A" - }, - { - "title": "D' Angelo - Brown Sugar (Karaoke EZ Sing)", - "id": "tTBD6qC5ODQ" - }, - { - "title": "Creedence Clearwater Revival - Long As I Can See The Light (Karaoke EZ Sing)", - "id": "64gpIzmLnkA" - }, - { - "title": "Drowning Pool - Bodies (Karaoke EZ Sing)", - "id": "9FEEuWgPHHA" - }, - { - "title": "Wang Chung - Dance Hall Days (Karaoke EZ Sing)", - "id": "xAldNpXJ1oQ" - }, - { - "title": "Crash Test Dummies - Afternoons And Coffeespoons (Karaoke EZ Sing)", - "id": "MVdK-4ofqCU" - }, - { - "title": "2pac - All Eyez On Me (Karaoke EZ Sing)", - "id": "5Q50LYTIIs8" - }, - { - "title": "Creedence Clearwater Revival - Lodi (Karaoke EZ Sing)", - "id": "-2BeoKqEfD8" - }, - { - "title": "R. Kelly - Half On A Baby (Karaoke EZ Sing)", - "id": "4YV7Ex4HvbM" - }, - { - "title": "Elton John - Something About The Way You Look Tonight (Karaoke EZ Sing)", - "id": "e3vJm7r6oxc" - }, - { - "title": "Florence And The Machine - Dog Days Are Over (Karaoke EZ Sing)", - "id": "Rbzb5cQu2_o" - }, - { - "title": "Bastille - Laura Palmer (Karaoke EZ Sing)", - "id": "H4wVCzF24fU" - }, - { - "title": "Wanted - Chasing The Sun (Karaoke EZ Sing)", - "id": "0wRBlctvgrQ" - }, - { - "title": "Association - Along Comes Mary (Karaoke EZ Sing)", - "id": "v2thS2xnwhI" - }, - { - "title": "Years and Years - Desire (Karaoke EZ Sing)", - "id": "gc46AvP90bM" - }, - { - "title": "Bastille - Things We Lost In The Fire (Karaoke EZ Sing)", - "id": "_7yD4B_3XTs" - }, - { - "title": "Johnny O'Keefe - She Wears My Ring (Karaoke EZ Sing)", - "id": "S3T8Y0GZRfc" - }, - { - "title": "Isley Brothers ftg. R. Kelly And Chante Moore - Contagious (Karaoke EZ Sing)", - "id": "4uXV-59Xh7E" - }, - { - "title": "Larry Stewart - Fantasy (Karaoke EZ Sing)", - "id": "-lqgG5kgC40" - }, - { - "title": "Dwight Yoakam - Fast As You (Karaoke EZ Sing)", - "id": "BFmQBqlWpDU" - }, - { - "title": "Jets - Crush On You (Karaoke EZ Sing)", - "id": "Cj04WOWnqJI" - }, - { - "title": "Jeremih - Birthday Sex (Karaoke EZ Sing)", - "id": "GH8rG_JfvcU" - }, - { - "title": "Diana Krall - Frim Fram Sauce (Karaoke EZ Sing)", - "id": "RXIuOm7-U4U" - }, - { - "title": "Franz Ferdinand - Can't Stop Feeling (Karaoke EZ Sing)", - "id": "YZuD8W-OODQ" - }, - { - "title": "Smithereens - A Girl Like You (Karaoke)", - "id": "mSu6Em_oRGA" - }, - { - "title": "Catfish And The Bottlemen - Outside (Karaoke EZ Sing)", - "id": "yojB1F6Ze5M" - }, - { - "title": "Frida - I Know Theres Something Going On (Karaoke EZ Sing)", - "id": "pcfd0Vbru4k" - }, - { - "title": "Snow Patrol - Crack The Shutters (Karaoke EZ Sing)", - "id": "SyID8JxspPE" - }, - { - "title": "Franz Ferdinand - Do You Want To (Karaoke EZ Sing)", - "id": "nVaL-5oMXDM" - }, - { - "title": "Dua Lipa - Blow Your Mind (Mawh) (Karaoke EZ Sing)", - "id": "P1XEFglRM1M" - }, - { - "title": "Maximo Park - Apply Some Pressure (Karaoke EZ Sing)", - "id": "lAS9qv4d3g4" - }, - { - "title": "Goth Acoustic Ensemble (Tribute To NIN) - Head Like A Hole (Acoustic Goth) (Karaoke EZ Sing)", - "id": "Ev4B-5B35Rw" - }, - { - "title": "Kaiser Chiefs - Everyday I Love You Less And Less (Karaoke EZ Sing)", - "id": "Cpq5WDj9Wrk" - }, - { - "title": "Roxy Music - Do The Strand (Karaoke EZ Sing)", - "id": "T7dcYCdCDsM" - }, - { - "title": "Sylvers - Boogie Fever (Karaoke EZ Sing)", - "id": "al0ySbLWlBU" - }, - { - "title": "Stereophonics - Dakota (You Make Me Feel Like The One) (Karaoke EZ Sing)", - "id": "Y70kjjs4qOo" - }, - { - "title": "Joan Osborne - Crazy Baby (Karaoke EZ Sing)", - "id": "8YCiR_Hrmck" - }, - { - "title": "Bobby Darin - This Could Be The Start Of Something Big (Karaoke EZ Sing)", - "id": "HjoYX4e4ISQ" - }, - { - "title": "Maximo Park - Books From Boxes (Karaoke EZ Sing)", - "id": "gA2FXsMGguE" - }, - { - "title": "Seether - Let You Down (Karaoke EZ Sing)", - "id": "GpfUykqiePs" - }, - { - "title": "Mika - Big Girl (You're Beautiful) (Karaoke EZ Sing)", - "id": "CnK4ib99IKk" - }, - { - "title": "Timbuk 3 - Future's So Bright (I've Got To Wear Shades) (Karaoke EZ Sing)", - "id": "z25yAfWVaRM" - }, - { - "title": "Noah and the Whale - 5 Years Time (Karaoke EZ Sing)", - "id": "GfXtDh8d30Y" - }, - { - "title": "Frank Sinatra - House I Live In (Karaoke EZ Sing)", - "id": "71XQ8rb5FjI" - }, - { - "title": "Big Sean ftg. Eminem - No Favors (Karaoke EZ Sing)", - "id": "m2m6Lxgowmc" - }, - { - "title": "Holloways - Generator (Karaoke EZ Sing)", - "id": "a9IEWzRkRgo" - }, - { - "title": "Kaiser Chiefs - Everything Is Average Nowadays (Karaoke EZ Sing)", - "id": "TrO0ieQatec" - }, - { - "title": "Stereophonics - Bank Holiday Monday (Karaoke EZ Sing)", - "id": "76MnJUh7aRs" - }, - { - "title": "Dewayne \"The Rock\" Johnson - You're Welcome (Karaoke EZ Sing)", - "id": "gJA0rNlqbs8" - }, - { - "title": "Aaron Watson - Outta Style (Karaoke EZ Sing)", - "id": "lu3H1OEbJFc" - }, - { - "title": "Jon Bellion - All Time Low (Karaoke EZ Sing)", - "id": "iguoLK4mdUo" - }, - { - "title": "Kyle ftg. Lil Yachty - iSpy (Karaoke EZ Sing)", - "id": "ZXYGVdhEpvQ" - }, - { - "title": "Robyn - Be Mine (Karaoke EZ Sing)", - "id": "Mkirr_KRLX8" - }, - { - "title": "Jimmy Buffett - Christmas Island (Karaoke EZ Sing)", - "id": "b9ZfBfB1psA" - }, - { - "title": "M2M - Everything You Do (Karaoke EZ Sing)", - "id": "aQ4IX9CGOIk" - }, - { - "title": "Deborah Cox - Who Do U Love (Who Do You Love) (Karaoke EZ Sing)", - "id": "w3YT6TywDdo" - }, - { - "title": "Cameo - Word Up (Karaoke EZ Sing)", - "id": "9TQC_Oduulg" - }, - { - "title": "R. Kelly - The Storm Is Over Now (Karaoke EZ Sing)", - "id": "LKOy_Mu64Z4" - }, - { - "title": "R. Kelly Feat. Keith Murray - Home Alone (Karaoke EZ Sing)", - "id": "gHq_mjNTZh4" - }, - { - "title": "Smokie - Living Next Door To Alice (Karaoke EZ Sing)", - "id": "jA8S2kGwXzY" - }, - { - "title": "Toni Braxton - UnBreak My Heart (Karaoke EZ Sing)", - "id": "LHoO5L825u4" - }, - { - "title": "Dinosaur Jr. - Feel The Pain (Karaoke EZ Sing)", - "id": "IDrXQ4_PViI" - }, - { - "title": "Flock Of Seagulls - Wishing (If I Had A Photograph Of You) (Karaoke EZ Sing)", - "id": "Wm2Iq0RgKZY" - }, - { - "title": "Hard - Hard To Beat (Karaoke EZ Sing)", - "id": "hTfz37gW8WY" - }, - { - "title": "Billy Joel - River Of Dreams (Karaoke EZ Sing)", - "id": "fyfKFlQWYlU" - }, - { - "title": "Britney Spears - What U See Is What U Get (Karaoke EZ Sing)", - "id": "hexKtmK1Ohg" - }, - { - "title": "Backstreet Boys - Anywhere For You (Karaoke EZ Sing)", - "id": "QVkvCDk2vp0" - }, - { - "title": "Duran Duran - Electric Barbarella (Karaoke EZ Sing)", - "id": "tbZpdZ4S7A0" - }, - { - "title": "Backstreet Boys - That's What She Said (Karaoke EZ Sing)", - "id": "qhoyrZOlmZ0" - }, - { - "title": "Bob Luman - Let's Think About Living (Karaoke EZ Sing)", - "id": "2Wa2VUdv5QQ" - }, - { - "title": "Irish Standard - Isle Of Innisfree (Karaoke EZ Sing)", - "id": "cGPZ0gbc_Ao" - }, - { - "title": "Asteroids Galaxy Tour - Golden Age (Karaoke EZ Sing)", - "id": "SiaWNmhEWtk" - }, - { - "title": "Chuck Berry - No Particular Place To Go (Karaoke EZ Sing)", - "id": "RwbqiHWA4-Y" - }, - { - "title": "Darius Rucker - If I Told You (Karaoke EZ Sing)", - "id": "Vdkxj2Krvsw" - }, - { - "title": "Tommy Reilly - Give Me A Call (Karaoke EZ Sing)", - "id": "t3keWltQX4A" - }, - { - "title": "Roxette - Dangerous (Karaoke EZ Sing)", - "id": "mxds4T5OesM" - }, - { - "title": "Hard - Cash Machine (Karaoke EZ Sing)", - "id": "kXrZt5ZcYmo" - }, - { - "title": "Bo Diddley - I'm A Man (Karaoke EZ Sing)", - "id": "a9gfBEPAYHQ" - }, - { - "title": "Aaron Carter - How I Beat Shaq (Karaoke EZ Sing)", - "id": "CYTiF04sFDI" - }, - { - "title": "Emmylou Harris - Pearl (Karaoke EZ Sing)", - "id": "Q1w_dPg5PRk" - }, - { - "title": "American Hi - Art Of Losing (Karaoke EZ Sing)", - "id": "55gZkNGuNwo" - }, - { - "title": "Richard Marx - Angelia (Karaoke EZ Sing)", - "id": "tEUDG31J3yc" - }, - { - "title": "Daft Punk - Technologic (Karaoke EZ Sing)", - "id": "cLTFumX7-Z0" - }, - { - "title": "R. Kelly - Soldier's Heart (Karaoke EZ Sing)", - "id": "hZV26GUrYYo" - }, - { - "title": "Kenny Chesney - On The Coast Of Somewhere Beautiful (Karaoke EZ Sing)", - "id": "ZcasNZ4giy8" - }, - { - "title": "Celine Dion - Stand By Your Side (Karaoke EZ Sing)", - "id": "5wzgTRsGUI8" - }, - { - "title": "Kate Nash - Merry Happy (Karaoke EZ Sing)", - "id": "QEaUmSHC6Uc" - }, - { - "title": "Patti Page - Allegheny Moon (Karaoke EZ Sing)", - "id": "YjrD9hp8xDY" - }, - { - "title": "Hard - Suburban Knights (Karaoke EZ Sing)", - "id": "T9ogTt1IWsk" - }, - { - "title": "Kelly Clarkson - Some Kind Of Miracle (Karaoke EZ Sing)", - "id": "7vDc7QHOf4w" - }, - { - "title": "Britney Spears - When Your Eyes Say It (Karaoke EZ Sing)", - "id": "mcbQivhsLds" - }, - { - "title": "Keane - Spiralling (Karaoke EZ Sing)", - "id": "ocU1GAnw_zs" - }, - { - "title": "Scorpions - Send Me An Angel (Karaoke EZ Sing)", - "id": "yy3EC1LNvpI" - }, - { - "title": "Elton John - You Can Make History (Young Again) (Karaoke EZ Sing)", - "id": "KtTE1_ryL6E" - }, - { - "title": "Christopher Cross - Think Of Laura (Karaoke EZ Sing)", - "id": "lE2pQSwcZKs" - }, - { - "title": "Roxy Music - Love Is The Drug (Karaoke EZ Sing)", - "id": "hOOA6WGp5YI" - }, - { - "title": "Black Lace - Penny Arcade (Karaoke EZ Sing)", - "id": "u0nWUHoStQA" - }, - { - "title": "Copacabana - Just Arrived (Karaoke EZ Sing)", - "id": "CynQW7Y1nL8" - }, - { - "title": "Celine Dion - Water From The Moon (Karaoke EZ Sing)", - "id": "5w7g5RobChg" - }, - { - "title": "Boy Meets Girl - Waiting For A Star To Fall (Karaoke EZ Sing)", - "id": "Ou52hRqFtkE" - }, - { - "title": "Reel 2 Real - I Like To Move It (Karaoke EZ Sing)", - "id": "qCIbUUc_Gu4" - }, - { - "title": "Duran Duran - Ordinary World (Karaoke EZ Sing)", - "id": "FAjpQmlJ-QA" - }, - { - "title": "Elton John - Someone Saved My Life Tonight (Karaoke EZ Sing)", - "id": "4sk_jsajwmQ" - }, - { - "title": "Roxette - Sleeping In My Car (Karaoke EZ Sing)", - "id": "dd2x36mN85E" - }, - { - "title": "No Secrets - Skin Deep (Karaoke EZ Sing)", - "id": "q2HBP2FbBGg" - }, - { - "title": "Roxette - Church Of Your Heart (Karaoke EZ Sing)", - "id": "_p59mJQmjMo" - }, - { - "title": "Hollies - I'm Alive (Karaoke EZ Sing)", - "id": "pc2StPLeiGo" - }, - { - "title": "Noah and the Whale - Waiting For My Chance To Come (Karaoke EZ Sing)", - "id": "jsGaNQ0fiE4" - }, - { - "title": "Marc Bolan And T. Rex - Twentieth Century Boy (Karaoke EZ Sing)", - "id": "6X1phvWrgGE" - }, - { - "title": "LeeAnn Womack - You Should've Lied (Karaoke EZ Sing)", - "id": "lbg3fjiDGh8" - }, - { - "title": "Imagine Dragons - Battle Cry (Karaoke EZ Sing)", - "id": "aZWsZTySGyU" - }, - { - "title": "Snow Patrol - Take Back The City (Karaoke EZ Sing)", - "id": "47EQhmQw_p4" - }, - { - "title": "Barry Manilow - Jump Shout Boogie (Karaoke EZ Sing)", - "id": "TzxSiwn9JV8" - }, - { - "title": "Ronnie Milsap - Stranger In My House (Karaoke EZ Sing)", - "id": "1IDG7x49POA" - }, - { - "title": "Korn - Twisted Transistor (Karaoke EZ Sing)", - "id": "1Bc4ltSdkcI" - }, - { - "title": "Mika - We Are Golden (Karaoke EZ Sing)", - "id": "GJjW1MgifK0" - }, - { - "title": "Candi Staton - Young Hearts Run Free (Karaoke EZ Sing)", - "id": "VPRPeHwXB88" - }, - { - "title": "Franz Ferdinand - Ulysses (Karaoke EZ Sing)", - "id": "SjckzvokdH0" - }, - { - "title": "Lynyrd Skynyrd - You Got That Right (Karaoke EZ Sing)", - "id": "Qt8kWcx-jMk" - }, - { - "title": "Mamas and The Papas - Words Of Love (Karaoke EZ Sing)", - "id": "biKpq9qzHoU" - }, - { - "title": "Mandy Moore - Walk Me Home (Karaoke EZ Sing)", - "id": "8GCrTwuvV2s" - }, - { - "title": "The Kaiser Chiefs - Angry Mob (Karaoke EZ Sing)", - "id": "upv8NTKGY2E" - }, - { - "title": "Isaac Hayes - Theme From Shaft (Karaoke EZ Sing)", - "id": "9-mL8Wm9c3Y" - }, - { - "title": "Lynyrd Skynyrd - That Smell (Karaoke EZ Sing)", - "id": "8k9NLUN_CcQ" - }, - { - "title": "Diamonds - Stroll (Karaoke EZ Sing)", - "id": "r8dWdwB-l0s" - }, - { - "title": "Breaking Benjamin - So Cold (Karaoke EZ Sing)", - "id": "GPGeT5uGjQ4" - }, - { - "title": "Twisted Sister - We're Not Gonna Take It (Karaoke EZ Sing)", - "id": "yv-uEaW5A44" - }, - { - "title": "Robyn - Who's That Girl (Karaoke EZ Sing)", - "id": "FnlwZ_vrSvg" - }, - { - "title": "Robyn - With Every Heartbeat (Karaoke EZ Sing)", - "id": "8JC9sbhy4wI" - }, - { - "title": "Poison - Something To Believe In (Karaoke EZ Sing)", - "id": "8A1krKzMkos" - }, - { - "title": "The Courteeners - What Took You So Long (Karaoke EZ Sing)", - "id": "1A-ExSLO1UA" - }, - { - "title": "Pigeon Detectives - Take Her Back (Karaoke EZ Sing)", - "id": "nLi-Vq3fvKk" - }, - { - "title": "Snow Patrol - You're All I Have (Karaoke EZ Sing)", - "id": "YOseVlvdjC8" - }, - { - "title": "Roger Whittaker - You Are My Miracle (Karaoke EZ Sing)", - "id": "38dED847C48" - }, - { - "title": "Shawn Colvin - When The Rainbow Comes (Karaoke EZ Sing)", - "id": "Knx02UsPUxU" - }, - { - "title": "Snow Patrol - Signal Fire (Karaoke EZ Sing)", - "id": "GslXms6t02E" - }, - { - "title": "Supertramp - The Logical Song (Karaoke EZ Sing)", - "id": "30tQQ4xNxnc" - }, - { - "title": "Robbie Williams - Sin Sin Sin (Karaoke EZ Sing)", - "id": "qbUkfM4Vucs" - }, - { - "title": "Live - Simple Creed (Karaoke EZ Sing)", - "id": "aCl8ee6gGVU" - }, - { - "title": "Franz Ferdinand - Fallen (Karaoke EZ Sing)", - "id": "9Rpx_5xe7Nc" - }, - { - "title": "Supertramp - Take The Long Way Home (Karaoke EZ Sing)", - "id": "YpGaN3bHjhA" - }, - { - "title": "Just Jack - Starz In Their Eyes (Karaoke EZ Sing)", - "id": "PFVdFNRkMD0" - }, - { - "title": "Peter Frampton - Show Me The Way (Live Version) (Karaoke EZ Sing)", - "id": "KlYxsPgU9uw" - }, - { - "title": "Billy Joel - I Go To Extremes (Karaoke EZ Sing)", - "id": "o558_04mUbE" - }, - { - "title": "Leonard Cohen - The Partisan (Karaoke EZ Sing)", - "id": "YEDVbKug3cg" - }, - { - "title": "Skylar Grey - Moving Mountains (Karaoke EZ Sing)", - "id": "HpKrtqjVI_Q" - }, - { - "title": "Robbie Williams - Trippin' (Karaoke EZ Sing)", - "id": "iLzUWdhJGHw" - }, - { - "title": "Skylar Grey - Off Road (Karaoke EZ Sing)", - "id": "ue_ONfwjZTE" - }, - { - "title": "Ne - Sign Me Up (Karaoke EZ Sing)", - "id": "2Cl5zco7aEM" - }, - { - "title": "Craig David And Sigala - Ain't Giving Up (Karaoke EZ Sing)", - "id": "YtsomDUPOig" - }, - { - "title": "Meat Loaf - Dead Ringer For Love (Karaoke EZ Sing)", - "id": "7XT3Jy8PChU" - }, - { - "title": "Florida Georgia Line Ft Tim McGraw - May We All (Karaoke EZ Sing)", - "id": "t3DI4tsCoxw" - }, - { - "title": "John Legend - Love Me Now (Karaoke EZ Sing)", - "id": "Eqi6gfYLEUA" - }, - { - "title": "Panic! At The Disco - LA Devotee (Karaoke EZ Sing)", - "id": "9hzbc3zDs8Y" - }, - { - "title": "R. Kelly - Thoia Thoing (Karaoke EZ Sing)", - "id": "ZW36YD0Jjs0" - }, - { - "title": "Minnie Riperton - Lovin' You (Karaoke EZ Sing)", - "id": "-QSltIECv6E" - }, - { - "title": "John Denver - Sunshine On My Shoulders (Karaoke EZ Sing)", - "id": "onnobSpRszw" - }, - { - "title": "Eddie Holman - Hey There Lonely Girl (Karaoke EZ Sing)", - "id": "7bnrclxrLeE" - }, - { - "title": "Capitols - Cool Jerk (Karaoke EZ Sing)", - "id": "3Xwto9DJJAc" - }, - { - "title": "Gilbert O'Sullivan - Alone Again (Naturally) (Karaoke EZ Sing)", - "id": "D3rYm3p5x_E" - }, - { - "title": "Stevie Wonder - For Once In My Life (Karaoke EZ Sing)", - "id": "y1VedDlrU2U" - }, - { - "title": "O'Kaysions - Girl Watcher (Karaoke EZ Sing)", - "id": "ssPawyA_dHo" - }, - { - "title": "Burl Ives - Down In The Valley (Karaoke)", - "id": "2OnJ5KY-KJU" - }, - { - "title": "Lawrence Reynolds - Jesus Is A Soul Man (Karaoke)", - "id": "BI6JAQ-IxRs" - }, - { - "title": "Gold City - Are You Ready (Karaoke)", - "id": "T4xWNkJUJlA" - }, - { - "title": "Sarina Paris - Look At Us (Karaoke)", - "id": "9CimMm6WJTU" - }, - { - "title": "Vince Gill - Trying To Get Over You (Karaoke)", - "id": "E_uQjXI_g50" - }, - { - "title": "Maneskin - I Wanna Be Your Slave (Karaoke)", - "id": "xAlPL4eleMg" - }, - { - "title": "Calvin Harris feat. Tom Grennan - By Your Side (Karaoke)", - "id": "mIx8Fi_Bgrc" - }, - { - "title": "Honne feat. Pink Sweat$ - What Would You Do (Karaoke)", - "id": "FiMx0VozdrQ" - }, - { - "title": "The Kid Laroi - Thousand Miles (Karaoke)", - "id": "u2QZhfG-ohE" - }, - { - "title": "Pigeon Detectives - Romantic Type (Karaoke EZ Sing)", - "id": "SPOQgUpEIjw" - }, - { - "title": "Madonna - Physical Attraction (Karaoke EZ Sing)", - "id": "4aAbSk-w-BQ" - }, - { - "title": "Hollies - Stop Stop Stop (Karaoke EZ Sing)", - "id": "B_d0hTpjhTk" - }, - { - "title": "High School Musical - Stick To The Status Quo (Karaoke EZ Sing)", - "id": "7q_cRVhXtbY" - }, - { - "title": "Freddie Jackson - You Are My Lady (Karaoke EZ Sing)", - "id": "pnTEUdv6PRw" - }, - { - "title": "Changing Faces - Stroke You Up (Karaoke EZ Sing)", - "id": "BLvOk7Lv5b8" - }, - { - "title": "Vengaboys - We Like To Party (Karaoke EZ Sing)", - "id": "jJR3jlw6EGA" - }, - { - "title": "Undertones - Teenage Kicks (Karaoke EZ Sing)", - "id": "fpoKTB7CTa8" - }, - { - "title": "Jigsaw - Sky High (Karaoke EZ Sing)", - "id": "VS5ZghOgF2Y" - }, - { - "title": "High School Musical 2 - Gotta Go My Own Way (Karaoke EZ Sing)", - "id": "2QWylAulTVQ" - }, - { - "title": "R. Kelly - When A Woman's Fed Up (Karaoke EZ Sing)", - "id": "AZHel79AMxs" - }, - { - "title": "High School Musical 3 - A Night To Remember (Karaoke EZ Sing)", - "id": "ScQvItqYyUw" - }, - { - "title": "Franz Ferdinand - Take Me Out (Karaoke EZ Sing)", - "id": "zrD5cdarfME" - }, - { - "title": "High School Musical - What Time Is It (Karaoke EZ Sing)", - "id": "tdIVR5fJ0w0" - }, - { - "title": "High School Musical 2 - I Don't Dance (Karaoke EZ Sing)", - "id": "eCDQsvO6fGM" - }, - { - "title": "High School Musical - We're All In This Together (Karaoke EZ Sing)", - "id": "4Zyik8wtzWE" - }, - { - "title": "Rod Stewart - Motown Song (Karaoke EZ Sing)", - "id": "NrHVfuzjZNU" - }, - { - "title": "High School Musical 2 - Work This Out (Karaoke EZ Sing)", - "id": "Fnfxnc18QxA" - }, - { - "title": "Fleetwood Mac - You Make Loving Fun (Karaoke EZ Sing)", - "id": "yS0VKh7P9Jk" - }, - { - "title": "Thompson Twins - You Take Me Up (Karaoke EZ Sing)", - "id": "fz0CNnZ2Lv4" - }, - { - "title": "High School Musical 2 - Humuhumunukunukuapua'a (Karaoke EZ Sing)", - "id": "Crm_BD2bkRM" - }, - { - "title": "Tony Toni Tone - Thinking Of You (Karaoke EZ Sing)", - "id": "Hrs7oiwc_3c" - }, - { - "title": "Indigo Girls,The - Power Of Two (Karaoke EZ Sing)", - "id": "QsYjF1wtICc" - }, - { - "title": "Lisa Stansfield - Someday (I'm Coming Back) (Karaoke EZ Sing)", - "id": "KoI53TuCFHs" - }, - { - "title": "High School Musical 2 - Bet On It (Karaoke EZ Sing)", - "id": "GP0QqE3o3_Y" - }, - { - "title": "High School Musical 2 - You Are The Music In Me (Sharpay Version) (Karaoke EZ Sing)", - "id": "-L4ka5uIQHg" - }, - { - "title": "Demi Lovato ftg. Joe Jonas - This Is Me (Karaoke EZ Sing)", - "id": "X1SJPV2Tc8Y" - }, - { - "title": "Grandmaster Flash And The Furious 5 - Message (Karaoke EZ Sing)", - "id": "sM7XicHAx58" - }, - { - "title": "Drifters - You're More Than A Number In My Little Red Book (Karaoke EZ Sing)", - "id": "FVJbdNtMfgw" - }, - { - "title": "Alvin Stardust ftg. Pat Boone - Wonderful Time Up There (Karaoke EZ Sing)", - "id": "S0P2T3Jj9_E" - }, - { - "title": "Linda Ronstadt - You Can't Treat The Wrong Man Right (Karaoke EZ Sing)", - "id": "gxNIIo5ZLww" - }, - { - "title": "Johnny Horton - Mansion You Stole (Karaoke EZ Sing)", - "id": "P5nhw1hQVZk" - }, - { - "title": "R. Kelly - Your Body's Callin' (Karaoke EZ Sing)", - "id": "OUG4YTQthg0" - }, - { - "title": "Troggs - With A Girl Like You (Karaoke EZ Sing)", - "id": "LkdKI8wkgc0" - }, - { - "title": "Nancy Sinatra - These Boots Are Made For Walking (Karaoke EZ Sing)", - "id": "T95j9HjWEVM" - }, - { - "title": "Mott The Hoople - Roll Away The Stone (Karaoke EZ Sing)", - "id": "mRu9zg8YPCM" - }, - { - "title": "High School Musical 2 - Fabulous (Karaoke EZ Sing)", - "id": "PCN5HqOypHY" - }, - { - "title": "Maurice Chevalier - Aristocats (Karaoke EZ Sing)", - "id": "T8Rfr3CiS6E" - }, - { - "title": "Christopher Cross - Ride Like The Wind (Karaoke EZ Sing)", - "id": "f6gmQvplTLk" - }, - { - "title": "Scorpions - Rock You Like A Hurricane (Karaoke EZ Sing)", - "id": "ZUBszNQDf7M" - }, - { - "title": "Kaiser Chiefs - Ruby (Karaoke EZ Sing)", - "id": "JiIXrTGijVM" - }, - { - "title": "Steely Dan - Rikki Don't Lose That Number (Karaoke EZ Sing)", - "id": "bAgTjeeiNAg" - }, - { - "title": "Beautiful South - Song For Whoever (Karaoke EZ Sing)", - "id": "LSHWWgkzIsU" - }, - { - "title": "Status Quo - Pictures Of Matchstick Men (Karaoke EZ Sing)", - "id": "0D5e8JyfyMI" - }, - { - "title": "Chingy - Right Thurr (Karaoke EZ Sing)", - "id": "yjK-El_nxvc" - }, - { - "title": "High School Musical 3 - Now Or Never (Karaoke EZ Sing)", - "id": "sUDG0R7vab4" - }, - { - "title": "High School Musical 2 - All For One (Karaoke EZ Sing)", - "id": "6VnYG8qXuCQ" - }, - { - "title": "Smokie - Something's Been Making Me Blue (Karaoke EZ Sing)", - "id": "slLgEJWCm0o" - }, - { - "title": "World Party - Put The Message In A Box (Karaoke EZ Sing)", - "id": "CPnLDoD92gA" - }, - { - "title": "Grace Potter & The Nocturnals - Something That I Want (Karaoke EZ Sing)", - "id": "cK-D7cEZd_c" - }, - { - "title": "High School Musical 2 - You Are The Music In Me (Karaoke EZ Sing)", - "id": "yWiWMmc-LHM" - }, - { - "title": "All-4-One - Someday (Karaoke EZ Sing)", - "id": "y0fc5AqK6bA" - }, - { - "title": "Robyn - Show Me Love (Karaoke EZ Sing)", - "id": "-IQV8gddz7g" - }, - { - "title": "Phil Collins - Two Worlds (Karaoke EZ Sing)", - "id": "TXHZQ9_P3i8" - }, - { - "title": "Phil Collins ( The Movie Tarzan - You'll Be In My Heart (Karaoke EZ Sing)", - "id": "pzO-fuTFF0g" - }, - { - "title": "Cameo - She's Strange (Karaoke EZ Sing)", - "id": "4UpYdctZ4Rs" - }, - { - "title": "Limp Bizkit - Rollin' (Air Raid Vehicle) (Karaoke EZ Sing)", - "id": "_9TmzPyEK8U" - }, - { - "title": "R. Kelly - She's Got That Vibe (Karaoke EZ Sing)", - "id": "VmbzRGKpnxM" - }, - { - "title": "Fatboy Slim - Praise You (Karaoke EZ Sing)", - "id": "lCPCCQSVXM8" - }, - { - "title": "Boyzone - Shooting Star (Karaoke EZ Sing)", - "id": "KmIVFZgI0YE" - }, - { - "title": "Mandy Moore - Saturate Me (Karaoke EZ Sing)", - "id": "9lpzbKCBSns" - }, - { - "title": "Del Amitri - Roll To Me (Karaoke EZ Sing)", - "id": "G1GbNjHMARg" - }, - { - "title": "Live - Overcome (Karaoke EZ Sing)", - "id": "mI2idC6-NRI" - }, - { - "title": "Johnny Tillotson - Poetry In Motion (Karaoke EZ Sing)", - "id": "_6iO8IPGL1w" - }, - { - "title": "Fleetwood Mac - Over My Head (Karaoke EZ Sing)", - "id": "EoPhwTjNozo" - }, - { - "title": "Snow Patrol - Open Your Eyes (Karaoke EZ Sing)", - "id": "_SKszxm3Ym0" - }, - { - "title": "Santana - Persuasion (Karaoke EZ Sing)", - "id": "OuVjpFKRM5E" - }, - { - "title": "Elton John - Sacrifice (Karaoke EZ Sing)", - "id": "apMSoEHg7Kk" - }, - { - "title": "Franz Ferdinand - No You Girls (Karaoke EZ Sing)", - "id": "PVFatbmFsCE" - }, - { - "title": "Showboat - Ol' Man River (Karaoke EZ Sing)", - "id": "y2iyl0i4bBI" - }, - { - "title": "Larry Graham - One In A Million You (Karaoke EZ Sing)", - "id": "2UZM4xm9PlQ" - }, - { - "title": "Scorpions - No One Like You (Karaoke EZ Sing)", - "id": "tdtP4F5Ybik" - }, - { - "title": "Maximo Park - Our Velocity (Karaoke EZ Sing)", - "id": "pWrTz2QL6QQ" - }, - { - "title": "Immature - Never Lie (Karaoke EZ Sing)", - "id": "m2r8Tt1815c" - }, - { - "title": "Kaiser Chiefs - Oh My God (Karaoke EZ Sing)", - "id": "7rUHFBsnxf0" - }, - { - "title": "Phil Collins - Strangers Like Me (Karaoke EZ Sing)", - "id": "VwvSKi4ewJU" - }, - { - "title": "Hi Five - Never Should've Let You Go (Karaoke EZ Sing)", - "id": "l2un8ox1Hb4" - }, - { - "title": "Technotronic - Move This (Karaoke EZ Sing)", - "id": "5RJEwdZBPjA" - }, - { - "title": "N Sync - No Strings Attached (Karaoke EZ Sing)", - "id": "JDpzWm-a_BE" - }, - { - "title": "Sage The Gemini - Red Nose (Karaoke EZ Sing)", - "id": "pQAmVASa0p4" - }, - { - "title": "Deadeye Dick - New Age Girl (Karaoke EZ Sing)", - "id": "N_zN5m7ZW-Q" - }, - { - "title": "Kaiser Chiefs - Never Miss A Beat (Karaoke EZ Sing)", - "id": "DmgDByf2Pcg" - }, - { - "title": "Theory Of A Deadman - Nothing Could Come Between Us (Karaoke EZ Sing)", - "id": "_FqodqrmENw" - }, - { - "title": "Florence + The Machine - No Light, No Light (Karaoke EZ Sing)", - "id": "GeWQ4KrqtCs" - }, - { - "title": "Kiss - Reason To Live (Karaoke EZ Sing)", - "id": "EFj8_q0v0_c" - }, - { - "title": "Whitney Houston - My Name Is Not Susan (Karaoke EZ Sing)", - "id": "XnIK01YeMXo" - }, - { - "title": "Demi Lovato - Our Time Is Here (Karaoke EZ Sing)", - "id": "QWXtSV_V5Vc" - }, - { - "title": "Shabba Ranks ftg. Chevelle Franklyn - Mr. Loverman (Karaoke EZ Sing)", - "id": "eyK-w4CDnj4" - }, - { - "title": "Maroon 5 - Must Get Out (Karaoke EZ Sing)", - "id": "sxZj2Nx05v4" - }, - { - "title": "Ghost - Square Hammer (Karaoke EZ Sing)", - "id": "vgChe_aaKyU" - }, - { - "title": "Katherine McPhee - My Destiny (Karaoke EZ Sing)", - "id": "rMhLrZKRc1A" - }, - { - "title": "Limp Bizkit - My Way (Karaoke EZ Sing)", - "id": "XMFDrZj4X0A" - }, - { - "title": "Stereophonics - Mr. Writer (Karaoke EZ Sing)", - "id": "yS6Kv6cLudo" - }, - { - "title": "The Cardigans - My Favourite Game (Karaoke EZ Sing)", - "id": "zHQnej7gtMw" - }, - { - "title": "Kelly Rowland ftg. Big Sean - Lay It On Me (Karaoke EZ Sing)", - "id": "y6hYoTyfkcc" - }, - { - "title": "Kaiser Chiefs - Modern Way (Karaoke EZ Sing)", - "id": "PBqbLd243r4" - }, - { - "title": "Frank Sinatra - How Do You Keep The Music Playing (Karaoke EZ Sing)", - "id": "XSdjIUeqsJY" - }, - { - "title": "OMC - How Bizarre (Karaoke EZ Sing)", - "id": "yk1Amc22sds" - }, - { - "title": "Maximo Park - Going Missing (Karaoke EZ Sing)", - "id": "Ix52Y5XRN7w" - }, - { - "title": "Kiss - Love Gun (Karaoke EZ Sing)", - "id": "RP0vII6yqZs" - }, - { - "title": "The Pipkins - Gimme Dat Ding (Karaoke EZ Sing)", - "id": "Ojuks4hhESM" - }, - { - "title": "Cardigans - Lovefool (Karaoke EZ Sing)", - "id": "fQSZPpcliMo" - }, - { - "title": "Live - Lightning Crashes (Karaoke EZ Sing)", - "id": "563eLszCd88" - }, - { - "title": "Bill Withers - Grandma's Hands (Karaoke EZ Sing)", - "id": "2Bb4nRrYxTI" - }, - { - "title": "Stereophonics - Have A Nice Day (Karaoke EZ Sing)", - "id": "B8fNRScF8Go" - }, - { - "title": "Justin Moore - You Look Like I Need A Drink (Karaoke EZ Sing)", - "id": "0p0kg_VDUqA" - }, - { - "title": "Nelly - E.I. (Karaoke EZ Sing)", - "id": "JmQ3yU36-1c" - }, - { - "title": "Pixies - Monkey Gone To Heaven (Karaoke EZ Sing)", - "id": "eMSM0g9QTVU" - }, - { - "title": "Elton John - Electricity (Karaoke EZ Sing)", - "id": "YlysNDx74Tk" - }, - { - "title": "Westlife - Miss You Nights (Karaoke EZ Sing)", - "id": "6WNIuYWscA4" - }, - { - "title": "Robyn - Handle Me (Karaoke EZ Sing)", - "id": "F5hbe6naMpo" - }, - { - "title": "All American Rejects - Last Song (Karaoke EZ Sing)", - "id": "ixo7cb6B9mA" - }, - { - "title": "Alessia Cara - Scars To Your Beautiful (Karaoke EZ Sing)", - "id": "TFkCPaSx1Ak" - }, - { - "title": "Wet Wet Wet - Love Is All Around (Karaoke EZ Sing)", - "id": "SpBJMbDdOLc" - }, - { - "title": "Haircut 100 - Love Plus One (Karaoke EZ Sing)", - "id": "R9lKeIFiceM" - }, - { - "title": "Mika - Happy Ending (Karaoke EZ Sing)", - "id": "bxBrM4z2EGo" - }, - { - "title": "Whitney Houston - Lover For Life (Karaoke EZ Sing)", - "id": "RXpdPXRdaKE" - }, - { - "title": "Toni Braxton - I Don't Want To (Karaoke EZ Sing)", - "id": "zELzlXthzAA" - }, - { - "title": "R. Kelly - I Can't Sleep Baby (Karaoke EZ Sing)", - "id": "7eR9iCOIVxo" - }, - { - "title": "UB40 - Higher Ground (Karaoke EZ Sing)", - "id": "-4bOwS8SkEM" - }, - { - "title": "Roger Whittaker - I Am But A Small Voice (Karaoke EZ Sing)", - "id": "xqnxjVcsrbg" - }, - { - "title": "Nelly - Country Grammar (Karaoke EZ Sing)", - "id": "GJepVz25Zt8" - }, - { - "title": "Backstreet Boys - If I Don't Have You (Karaoke EZ Sing)", - "id": "3OszzqXOWQ8" - }, - { - "title": "Blue Mink - Melting Pot (Karaoke EZ Sing)", - "id": "JAHTAhj0ARw" - }, - { - "title": "T-Pain - I'm Sprung (Karaoke EZ Sing)", - "id": "3r-ksYLtOxU" - }, - { - "title": "Keith Urban - Wasted Time (Karaoke EZ Sing)", - "id": "HYaKOn73XFQ" - }, - { - "title": "Bobby Rydell - Forget Him (Karaoke EZ Sing)", - "id": "mbHkvqWE9I0" - }, - { - "title": "Jimmy Buffett - Grapefruit, Juicy Fruit (Karaoke EZ Sing)", - "id": "imz7nxscapY" - }, - { - "title": "Kenny Rogers - I Don't Need You (Karaoke EZ Sing)", - "id": "EUvIN4g2Sa0" - }, - { - "title": "Extreme - Hole Hearted (Karaoke EZ Sing)", - "id": "yLcwPPS7oy4" - }, - { - "title": "Hunter Hayes - Wanted (Karaoke EZ Sing)", - "id": "-qgoL2HJpq4" - }, - { - "title": "Alesia Cara - Wild Things (Karaoke EZ Sing)", - "id": "s24QDIP5shg" - }, - { - "title": "Fuel - Bittersweet (Karaoke EZ Sing)", - "id": "j1R0XHGw1l0" - }, - { - "title": "Years & Years - Meteorite (Karaoke EZ Sing)", - "id": "C9fD18wlX0M" - }, - { - "title": "Lisa Stansfield - Little Bit Of Heaven (Karaoke EZ Sing)", - "id": "hARsF_R8tCI" - }, - { - "title": "Melissa Etheridge - Like The Way I Do (Karaoke EZ Sing)", - "id": "amNGrKq0HHA" - }, - { - "title": "Franz Ferdinand - Michael (Karaoke EZ Sing)", - "id": "a66z7WE0-As" - }, - { - "title": "Kaiser Chiefs - Listen To Your Head (Karaoke EZ Sing)", - "id": "zMPfve1TIHE" - }, - { - "title": "David Naughton - Makin' It (Karaoke EZ Sing)", - "id": "BGCN1jUBHBk" - }, - { - "title": "Room 5 Ftg. Oliver Cheatham - Make Luv (Karaoke EZ Sing)", - "id": "FCLmiiXn9Ow" - }, - { - "title": "Sweet - Little Willy (Karaoke EZ Sing)", - "id": "Shi0CTfA3Tc" - }, - { - "title": "Kaiser Chiefs - Love's Not A Competition (But I'm Winning) (Karaoke EZ Sing)", - "id": "Jc5iHN6iDqw" - }, - { - "title": "Jack Jones - Lollipops And Roses (Karaoke EZ Sing)", - "id": "8YRPiHHJp_A" - }, - { - "title": "Modern English - I Melt With You (Karaoke EZ Sing)", - "id": "EYvLmPjau-k" - }, - { - "title": "Joy Division - Love Will Tear Us Apart (Karaoke EZ Sing)", - "id": "KU3q6YOaODM" - }, - { - "title": "Mika - Love Today (Karaoke EZ Sing)", - "id": "gHlcQDptHSM" - }, - { - "title": "Noah and the Whale - Life Is Life (Karaoke EZ Sing)", - "id": "QzOZMxoMqiU" - }, - { - "title": "Biffy Clyro - Living Is A Problem Because Everything Dies (Karaoke EZ Sing)", - "id": "7a4lleSQuQk" - }, - { - "title": "Cher - Love And Understanding (Karaoke EZ Sing)", - "id": "QqDk8jv4ONI" - }, - { - "title": "Dua Lipa - New Love (Karaoke EZ Sing)", - "id": "9P46htv2jqU" - }, - { - "title": "Crystal Waters - Gypsy Woman (She's Homeless) (Karaoke EZ Sing)", - "id": "kE4xigxGeFM" - }, - { - "title": "Kiss - I Was Made For Lovin' You (Karaoke EZ Sing)", - "id": "oQ8h0hlT_aA" - }, - { - "title": "R. Kelly - Ignition (Karaoke EZ Sing)", - "id": "swhSxDSxDqA" - }, - { - "title": "Merril Bainbridge - Mouth (Karaoke EZ Sing)", - "id": "O9MtbJObrHg" - }, - { - "title": "Gnash ftg Olivia O'Brien - I Hate U, I Love U (Karaoke EZ Sing)", - "id": "u8ThjiUdSko" - }, - { - "title": "Chordettes - Lollipop (Karaoke EZ Sing)", - "id": "_mU9FTxJDUc" - }, - { - "title": "Petula Clark - I Couldn't Live Without Your Love (Karaoke EZ Sing)", - "id": "EOgIsmo2SjY" - }, - { - "title": "Otis Redding - Hard To Handle (Karaoke EZ Sing)", - "id": "S3JfK0aWaTQ" - }, - { - "title": "The Pogues ftg. Kristy Maccoll - Fairytale Of New York (Karaoke EZ Sing)", - "id": "1XxCtqX-JpM" - }, - { - "title": "Korn - Here To Stay (Karaoke EZ Sing)", - "id": "P_lD-fep2SE" - }, - { - "title": "Korn - Alone I Break (Karaoke EZ Sing)", - "id": "oEftrGrqPK0" - }, - { - "title": "Lupe Fiasco - Kick Push (Karaoke EZ Sing)", - "id": "VEs5qwhv7tA" - }, - { - "title": "Korn - Hating (Karaoke EZ Sing)", - "id": "PF0-08D_xWk" - }, - { - "title": "Beastie Boys - Ch-Check It Out (Karaoke)", - "id": "p6-Zq51fL5A" - }, - { - "title": "Gym Class Heroes - Cupidโ€™s Chokehold (Karaoke EZ Sing)", - "id": "FmQDjRAfeb0" - }, - { - "title": "Imagine Dragons - I Bet My Life (Karaoke EZ Sing)", - "id": "2S7cGUDp6I0" - }, - { - "title": "Justin Hayward - Forever Autumn (Karaoke EZ Sing)", - "id": "miRVkBOjbJA" - }, - { - "title": "Daniel Bedingfield - Gotta Get Thru This (Karaoke EZ Sing)", - "id": "0Z4P-E2uOpU" - }, - { - "title": "Little Mix - Hair (Karaoke EZ Sing)", - "id": "9uS--jpFwK0" - }, - { - "title": "Fine Young Cannibals - Good Thing (Karaoke EZ Sing)", - "id": "7hNj47U-GI0" - }, - { - "title": "Florida Georgia Line - H.O.L.Y. (Karaoke EZ Sing)", - "id": "GhQrhCIekF0" - }, - { - "title": "Billy Joel - An Innocent Man (Karaoke EZ Sing)", - "id": "JJgkTSFTWRI" - }, - { - "title": "Westlife - Fool Again (Karaoke EZ Sing)", - "id": "3zrP7rzPMxI" - }, - { - "title": "Jimmy Buffett - A Pirate Looks At Forty (Karaoke EZ Sing)", - "id": "IP3FIpdHmOQ" - }, - { - "title": "Britney Spears - Dear Diary (Karaoke EZ Sing)", - "id": "poiPKFoJsuo" - }, - { - "title": "Billy Joel - Goodnight Saigon (Karaoke EZ Sing)", - "id": "hj2vhbDUF4w" - }, - { - "title": "Billy Joel - Modern Woman (Karaoke EZ Sing)", - "id": "WARewt3JuHE" - }, - { - "title": "Billy Joel - Leave A Tender Moment Alone (Karaoke EZ Sing)", - "id": "KlixzxMs5BA" - }, - { - "title": "Eminem feat. Gwen Stefani - Kings Never Die (Karaoke EZ Sing)", - "id": "sknUIfbu16M" - }, - { - "title": "Korn - Falling Away From Me (Karaoke EZ Sing)", - "id": "fx3HdCxkHgg" - }, - { - "title": "Frank Sinatra - Can I Steal A Little Love (Karaoke EZ Sing)", - "id": "HJfCdkGxk2I" - }, - { - "title": "Jess Glynne - Don't Be So Hard On Yourself (Karaoke EZ Sing)", - "id": "lYV0elCkMcE" - }, - { - "title": "Billy Joel - All About Soul (Karaoke EZ Sing)", - "id": "nyEezpx2YqU" - }, - { - "title": "Avicii - Waiting For Love (Karaoke EZ Sing)", - "id": "jbUzb33EWVc" - }, - { - "title": "Years and Years - Eyes Shut (Karaoke EZ Sing)", - "id": "vvo0KVSvDjg" - }, - { - "title": "Billy Joel - Don't Ask Me Why (Karaoke EZ Sing)", - "id": "YJIIS_pyQMk" - }, - { - "title": "Wayne Newton - Daddy Don't You Walk So Fast (Karaoke EZ Sing)", - "id": "Akn_Km7Fv2M" - }, - { - "title": "David Guetta feat. Sia and Fetty Wap - Bang My Head (Karaoke EZ Sing)", - "id": "CA295X33RsM" - }, - { - "title": "One Direction - Olivia (Karaoke EZ Sing)", - "id": "82wgDcNfyag" - }, - { - "title": "Eddie Fisher - I'm Walking Behind You (Karaoke EZ Sing)", - "id": "yJMM28A1nDo" - }, - { - "title": "R.E.M. - Great Beyond (Karaoke EZ Sing)", - "id": "_tq7bgVql8c" - }, - { - "title": "R.E.M. - Tongue (Karaoke EZ Sing)", - "id": "abiLQAVg9F0" - }, - { - "title": "R.E.M. - Daysleeper (Karaoke EZ Sing)", - "id": "T3zH-ev2YYA" - }, - { - "title": "R.E.M. - Radio Song (Karaoke EZ Sing)", - "id": "XgCjuvABv8Y" - }, - { - "title": "Volbeat - Seal The Deal (Karaoke EZ Sing)", - "id": "__n0YaQpJxc" - }, - { - "title": "R.E.M. - At My Most Beautiful (Karaoke EZ Sing)", - "id": "wkBjmogMHK0" - }, - { - "title": "R.E.M. - The One I Love (Karaoke EZ Sing)", - "id": "B6oHGKZivBU" - }, - { - "title": "R.E.M. - Sidewinder Sleeps Tonite (Karaoke EZ Sing)", - "id": "3OAe8KRDPho" - }, - { - "title": "R.E.M. - Nightswimming (Karaoke EZ Sing)", - "id": "8CZS2-XKDak" - }, - { - "title": "Fantasia - Sleeping With The One I Love (Karaoke EZ Sing)", - "id": "hYx33tZ6m-Q" - }, - { - "title": "R. E. M. - Strange Currencies (Karaoke EZ Sing)", - "id": "0nyZMZZNNOI" - }, - { - "title": "Godsmack - Straight Out Of Line (Karaoke EZ Sing)", - "id": "XOPZ0rM28W0" - }, - { - "title": "Billy Joel - Big Shot (Karaoke EZ Sing)", - "id": "isaWWP02ihY" - }, - { - "title": "Billy Joel - Lullabye (Goodnight My Angel) (Karaoke EZ Sing)", - "id": "rUUuM_NIMYE" - }, - { - "title": "Godsmack - Re-Align (Karaoke)", - "id": "6D_2wxApC3o" - }, - { - "title": "Billy Joel - Famous Last Words (Karaoke EZ Sing)", - "id": "XMnsJ1c25mU" - }, - { - "title": "Godsmack - I Stand Alone (Karaoke EZ Sing)", - "id": "mMEJx6JFdKI" - }, - { - "title": "Billy Joel - Stiletto (Karaoke EZ Sing)", - "id": "gEyDOQRw2R0" - }, - { - "title": "Billy Joel - Rosalinda's Eyes (Karaoke EZ Sing)", - "id": "G_bOhO77AmM" - }, - { - "title": "Godsmack - Greed (Karaoke EZ Sing)", - "id": "RD1s1FI9GBo" - }, - { - "title": "Billy Joel - Zanzibar (Karaoke EZ Sing)", - "id": "YD3fqnh_2YY" - }, - { - "title": "Cure - High (Karaoke EZ Sing)", - "id": "_bxWzMLQym0" - }, - { - "title": "Godsmack - Keep Away (Karaoke EZ Sing)", - "id": "U1LGFuXqhVs" - }, - { - "title": "Godsmack - Bad Magick (Karaoke EZ Sing)", - "id": "oin0m-mnqhY" - }, - { - "title": "Cure - 13th (Karaoke EZ Sing)", - "id": "cAemuVKb-Wk" - }, - { - "title": "Godsmack - Awake (Karaoke EZ Sing)", - "id": "TmoTIMvqsG0" - }, - { - "title": "Billy Joel - She's Got A Way (Karaoke EZ Sing)", - "id": "kk6Qe1oG5Sk" - }, - { - "title": "Billy Joel - And So It Goes (Karaoke EZ Sing)", - "id": "WP5PDGyNFPk" - }, - { - "title": "Cure - Just Like Heaven (Karaoke EZ Sing)", - "id": "U7hLtaHY6aU" - }, - { - "title": "X Ambassadors - Unsteady (Karaoke EZ Sing)", - "id": "X4anmw2fjc0" - }, - { - "title": "Alabama - Wasn't Through Lovin' You Yet (Karaoke EZ Sing)", - "id": "yGT8npd4PKs" - }, - { - "title": "Avett Brothers - Ain't No Man (Karaoke EZ Sing)", - "id": "88b5W51e9tU" - }, - { - "title": "Billy Joel - Say Goodbye To Hollywood (Karaoke EZ Sing)", - "id": "DtetvSJlzLA" - }, - { - "title": "Mia ftg. Zayn - Freedun (Karaoke EZ Sing)", - "id": "PYwdFYtnl6g" - }, - { - "title": "Diplo & Sleepy Tom - Be Right There (Karaoke EZ Sing)", - "id": "RtFDCaT3V6E" - }, - { - "title": "Jess Glynne - Take Me Home (Karaoke EZ Sing)", - "id": "tv4feWebb0I" - }, - { - "title": "Toby Keith - Beautiful Stranger (Karaoke EZ Sing)", - "id": "uJvWMbmuT3I" - }, - { - "title": "Tim McGraw - Humble And Kind (Karaoke EZ Sing)", - "id": "rgiYLvKahxQ" - }, - { - "title": "Jon Pardi - Head Over Boots (Karaoke EZ Sing)", - "id": "4yaxdOWyldI" - }, - { - "title": "Aston Merrygold - Get Stupid (Karaoke EZ Sing)", - "id": "-iCKIiC5_QA" - }, - { - "title": "Zayn Malik - Pillowtalk (Karaoke EZ Sing)", - "id": "c7s2ES1rVGQ" - }, - { - "title": "Foxes - Body Talk (Karaoke EZ Sing)", - "id": "0InEVZtQAsU" - }, - { - "title": "Elton John - Candle In The Wind (Karaoke EZ Sing)", - "id": "LyzVfYGx6mI" - }, - { - "title": "Easton Corbin - Yup (Karaoke EZ Sing)", - "id": "FZ7PmL_H-Ng" - }, - { - "title": "Norah Jones - In The Morning (Karaoke EZ Sing)", - "id": "bsziNxvtXpk" - }, - { - "title": "Kenny Rogers And Kim Carnes - Don't Fall In Love With A Dreamer (Karaoke EZ Sing)", - "id": "t1HDxq7uSsk" - }, - { - "title": "Noah Cyrus Ft Labrinth - Make Me Cry (Karaoke EZ Sing)", - "id": "8Yx4xTriCXs" - }, - { - "title": "Nelly ftg Jeremih - Fix (Karaoke EZ Sing)", - "id": "l10hGcy97Wk" - }, - { - "title": "One Direction - Infinity (Karaoke EZ Sing)", - "id": "QfAOklVxLvI" - }, - { - "title": "Toby Keith - 35 Mph Town (Karaoke EZ Sing)", - "id": "Kqysc8zVl3w" - }, - { - "title": "Little Mix - Love Me Like You (Karaoke EZ Sing)", - "id": "kPmg8jhKhg0" - }, - { - "title": "Mark Chesnutt - I'll Think Of Something (Karaoke EZ Sing)", - "id": "it3LrEELqw0" - }, - { - "title": "Stereophonics - It Means Nothing (Karaoke EZ Sing)", - "id": "NmdaU927ap8" - }, - { - "title": "Will Smith - Fresh Prince Of Bel(Karaoke)", - "id": "JlWwXlsX-5E" - }, - { - "title": "Rhonda Vincent - I'm Not Over You (Karaoke EZ Sing)", - "id": "A-R8wrftgKM" - }, - { - "title": "Kaiser Chiefs - I Predict A Riot (Karaoke EZ Sing)", - "id": "uYa4_Ytv7sc" - }, - { - "title": "D'angelo - Lady (Karaoke EZ Sing)", - "id": "IuZFPtbRFWg" - }, - { - "title": "Twisted Sister - I Wanna Rock (Karaoke EZ Sing)", - "id": "SGyAFBAd0lI" - }, - { - "title": "Christine And The Queens - Tilted (Karaoke EZ Sing)", - "id": "U5enjo3VQLM" - }, - { - "title": "Tony! Toni! Tone! - Feels Good (Karaoke EZ Sing)", - "id": "8RKxp4kfrUM" - }, - { - "title": "Steely Dan - Kid Charlemagne (Karaoke EZ Sing)", - "id": "PuvmbR8EflI" - }, - { - "title": "Peter Andre - Kiss The Girl (Karaoke EZ Sing)", - "id": "Vke8EqZ-xWU" - }, - { - "title": "The Ordinary Boys - I Luv U (Karaoke EZ Sing)", - "id": "si4WxyQnRCc" - }, - { - "title": "Jennifer Lopez - Let's Get Loud (Karaoke EZ Sing)", - "id": "NYXENxHEGy4" - }, - { - "title": "Supertramp - Dreamer (Karaoke EZ Sing)", - "id": "NS0Jkewismc" - }, - { - "title": "Beastie Boys - Intergalactic (Karaoke EZ Sing)", - "id": "wPedC6hnRzg" - }, - { - "title": "Noah and the Whale - L.I.F.E.G.O.E.S.O.N. (Karaoke EZ Sing)", - "id": "oI7Afjr8hQU" - }, - { - "title": "B.o.B - I'll Be In The Sky (Karaoke EZ Sing)", - "id": "SR7IOQHZBX8" - }, - { - "title": "Example - Kickstarts (Karaoke EZ Sing)", - "id": "AA2StEKLvOc" - }, - { - "title": "Jude - I'm Sorry Now (Karaoke EZ Sing)", - "id": "_bO5y0MKBJ8" - }, - { - "title": "Jann Arden - Insensitive (Karaoke EZ Sing)", - "id": "5fbCdeMz2eI" - }, - { - "title": "Peter Tosh - Legalize It (Karaoke EZ Sing)", - "id": "DZhNXzb1kS8" - }, - { - "title": "Dashboard Confessional - Hands Down (Karaoke EZ Sing)", - "id": "eM8rnUVpZ04" - }, - { - "title": "Expose - I'll Never Get Over You (Getting Over Me) (Karaoke EZ Sing)", - "id": "2XhULw9iLNE" - }, - { - "title": "Maximo Park - I Want You To Stay (Karaoke EZ Sing)", - "id": "xNnWONQPV9M" - }, - { - "title": "Belinda Carlisle - I Get Weak (Karaoke EZ Sing)", - "id": "gFUrxhC5dmk" - }, - { - "title": "Skylar Grey - I Know You (Karaoke EZ Sing)", - "id": "wmNo7syzxWg" - }, - { - "title": "Frank Sinatra - I'll Never Smile Again (Karaoke EZ Sing)", - "id": "mi4965EL1No" - }, - { - "title": "Peter Allen - I'd Rather Leave When I'm In Love (Karaoke EZ Sing)", - "id": "LlTd9Tmv5ko" - }, - { - "title": "Danzig - Mother (Karaoke EZ Sing)", - "id": "Nwk-7iDQ73I" - }, - { - "title": "Jorgen Elofsson - It Happens Every Time (Karaoke EZ Sing)", - "id": "kQfCqcjcz7I" - }, - { - "title": "Fuel - Innocent (Karaoke EZ Sing)", - "id": "9nnNjAkvzsM" - }, - { - "title": "Peggy Lee - I Love Being Here With You (Karaoke EZ Sing)", - "id": "Tr7jAVG7YiA" - }, - { - "title": "Supertramp - It's Raining Again (Karaoke EZ Sing)", - "id": "5UbEvZsCsjw" - }, - { - "title": "Elton John - I Just Can't Wait To Be King (Karaoke EZ Sing)", - "id": "VdChUDy1l8s" - }, - { - "title": "Taylor Dayne - I'll Be Your Shelter (Karaoke EZ Sing)", - "id": "c5pXemxjeUI" - }, - { - "title": "Dan Baird - I Love You Period (Karaoke EZ Sing)", - "id": "TYnkIErs-Hk" - }, - { - "title": "Nat \"King\" Cole - For Sentimental Reasons (Karaoke EZ Sing)", - "id": "jorSsUVh9U8" - }, - { - "title": "Leon Russell - A Song For You (Karaoke EZ Sing)", - "id": "3g82dEl7Y1A" - }, - { - "title": "Peter Allen - I Go To Rio (Karaoke EZ Sing)", - "id": "g042-1629yw" - }, - { - "title": "Mario Joy - California (Karaoke EZ Sing)", - "id": "YUhAH-sVT4Y" - }, - { - "title": "Joe Jonas - Gotta Find You (Karaoke EZ Sing)", - "id": "1cj2s-egzvg" - }, - { - "title": "Milli Vanilli - Girl You Know It's True (Karaoke EZ Sing)", - "id": "f55jKtpVX1k" - }, - { - "title": "Seal - Amazing (Karaoke EZ Sing)", - "id": "ETR9tVcyv6I" - }, - { - "title": "NEEDTOBREATHE - Hard Love (Karaoke EZ Sing)", - "id": "tY0B7v_2T9k" - }, - { - "title": "Buzzcocks - Ever Fallen In Love With Someone You Shouldn't've (Karaoke EZ Sing)", - "id": "svlFUOzQ_M4" - }, - { - "title": "Aaron Neville - Don't Take Away My Heaven (Karaoke EZ Sing)", - "id": "89AmBATIX50" - }, - { - "title": "Edie Brickell - Good Times (Karaoke EZ Sing)", - "id": "HFoiK4JjvLY" - }, - { - "title": "Joe Cocker - Have A Little Faith In Me (Karaoke EZ Sing)", - "id": "__pHl0XVzDA" - }, - { - "title": "Elton John - Daniel (Karaoke EZ Sing)", - "id": "8ySdApr9iIA" - }, - { - "title": "Steely Dan - Do It Again (Karaoke EZ Sing)", - "id": "nQephUsQkqU" - }, - { - "title": "Thompson Twins - Hold Me Now (Karaoke EZ Sing)", - "id": "lZ726HJkp7w" - }, - { - "title": "Joe Cocker - Feelin' Alright (Karaoke EZ Sing)", - "id": "fFIPd9i0jDg" - }, - { - "title": "Toby Keith - A Woman's Touch (Karaoke EZ Sing)", - "id": "OkMaoib5aEU" - }, - { - "title": "Thompson Twins - Doctor! Doctor! (Karaoke EZ Sing)", - "id": "XaWO84kQ944" - }, - { - "title": "Elton John - Circle Of Life (Karaoke EZ Sing)", - "id": "_06OqnzFbPU" - }, - { - "title": "Luke Bryan - Strip It Down (Karaoke EZ Sing)", - "id": "IUKiaVM2rkE" - }, - { - "title": "Bring Me The Horizon - Happy Song (Karaoke EZ Sing)", - "id": "fnhbdKSmx9Q" - }, - { - "title": "Standard - I Saw Three Ships (Karaoke EZ Sing)", - "id": "5f1xal31dD8" - }, - { - "title": "Walk The Moon - Different Colors (Karaoke EZ Sing)", - "id": "R3ZJKOEtQds" - }, - { - "title": "Jessie James Decker - Lights Down Low (Karaoke EZ Sing)", - "id": "823QZtGUjtM" - }, - { - "title": "Bring Me The Horizon - Throne (Karaoke EZ Sing)", - "id": "I2694gLZeew" - }, - { - "title": "Jamie Lawson - Wasn't Expecting That (Karaoke EZ Sing)", - "id": "Qk4z-0QY-sI" - }, - { - "title": "Standard - Angels From The Realms of Glory (Karaoke EZ Sing)", - "id": "8vP-8Lo5NXg" - }, - { - "title": "Robert DeLong - Don't Wait Up (Karaoke EZ Sing)", - "id": "77-IIVv31c4" - }, - { - "title": "Calvin Harris & Disciples - How Deep Is Your Love (Karaoke EZ Sing)", - "id": "yW-nz8xhjTQ" - }, - { - "title": "X Ambassadors - Renegades (Karaoke EZ Sing)", - "id": "uNWBP4cvR9E" - }, - { - "title": "Of Monsters And Men - Empire (Karaoke EZ Sing)", - "id": "41g8NoLOVrU" - }, - { - "title": "Striking Matches - Miss Me More (Karaoke EZ Sing)", - "id": "ULNJ8eqjW6k" - }, - { - "title": "Florence + The Machine - Ship To Wreck (Karaoke EZ Sing)", - "id": "AZvR4NXMOPI" - }, - { - "title": "Chvrches - Leave A Trace (Karaoke EZ Sing)", - "id": "ZCjwZftSN0A" - }, - { - "title": "ZZ Ward - Love 3X (Karaoke EZ Sing)", - "id": "xBKYwT6km2M" - }, - { - "title": "Death Cab For Cutie - Ghosts Of Beverly Drive (Karaoke EZ Sing)", - "id": "u7VSkmDjeHU" - }, - { - "title": "Standard - O Come O Come Emmanuel (Karaoke EZ Sing)", - "id": "xYMJbj7_F2w" - }, - { - "title": "Sia - California Dreamin' (Karaoke EZ Sing)", - "id": "4eujcPaUdis" - }, - { - "title": "Pat Green - Break It Back Down (Karaoke EZ Sing)", - "id": "qoR0-b5hE8Q" - }, - { - "title": "Fetty Wap - Trap Queen (Karaoke EZ Sing)", - "id": "S0M1oPhezJA" - }, - { - "title": "Amanda Watkins ftg. Jamey Johnson - If I Was Over You (Karaoke EZ Sing)", - "id": "q0gpaTl3Ad4" - }, - { - "title": "Sabrina Carpenter - Darling I'm A Mess (Karaoke EZ Sing)", - "id": "7p52XOyPZuo" - }, - { - "title": "Imagine Dragons - Roots (Karaoke EZ Sing)", - "id": "mt5sISwwkAQ" - }, - { - "title": "One Direction - Drag Me Down (Karaoke EZ Sing)", - "id": "w78vSKPX4JI" - }, - { - "title": "Blake Shelton ftg. Ashley Monroe - Lonely Tonight (Karaoke EZ Sing)", - "id": "u8yqhOFKTeM" - }, - { - "title": "Axwell & Ingrosso - Sun Is Shining (Karaoke EZ Sing)", - "id": "xajlmxjL2jw" - }, - { - "title": "Skrillex & Diplo ftg. Justin Bieber - Where Are U Now (Karaoke EZ Sing)", - "id": "KwwaYC1GOGM" - }, - { - "title": "Fifth Harmony - Suga Mama (Karaoke EZ Sing)", - "id": "L94sE6RnhjU" - }, - { - "title": "OMI - Cheerleader (Karaoke EZ Sing)", - "id": "u4LuxVIWmNI" - }, - { - "title": "Tim McGraw - Angel Boy (Karaoke EZ Sing)", - "id": "cY3bV_5klhw" - }, - { - "title": "David Houston - With One Exception (Karaoke EZ Sing)", - "id": "7Hi0ma30fZ4" - }, - { - "title": "Hawkshaw Hawkins - Dog House Boogie (Karaoke EZ Sing)", - "id": "94xh6TzJVCQ" - }, - { - "title": "Don Gibson - Woman (Sensuous Woman) (Karaoke EZ Sing)", - "id": "yiS0JMaBBZM" - }, - { - "title": "David Houston - Livin' In A House Full Of Love (Karaoke EZ Sing)", - "id": "Zw_KVBuFCnA" - }, - { - "title": "Hawkshaw Hawkins - Car Hoppin' Mama (Karaoke EZ Sing)", - "id": "rDW7E-F31as" - }, - { - "title": "Cowboy Copas - Flat Top (Karaoke EZ Sing)", - "id": "7xyyqCGJm7g" - }, - { - "title": "Cowboy Copas - Signed Sealed And Delivered (Karaoke EZ Sing)", - "id": "YAyqniiihoU" - }, - { - "title": "Al Dexter And His Troopers - So Long Pal (Karaoke EZ Sing)", - "id": "p1Dte1uWD7g" - }, - { - "title": "Red Foley - Satisfied Mind (Karaoke EZ Sing)", - "id": "PrQ9VYw5UFw" - }, - { - "title": "Don Gibson - Rings Of Gold (Karaoke EZ Sing)", - "id": "VFUjZnVogrY" - }, - { - "title": "Roy Drusky - Such A Fool (Karaoke EZ Sing)", - "id": "bi-xnXpr_XA" - }, - { - "title": "David Houston - Already It's Heaven (Karaoke EZ Sing)", - "id": "dPCvsAGm13c" - }, - { - "title": "Frank Sinatra - It Was A Very Good Year (Karaoke EZ Sing)", - "id": "rkWS1gK4P_Y" - }, - { - "title": "Cowboy Copas - Sunny Tennessee (Karaoke EZ Sing)", - "id": "oLgK_351KBE" - }, - { - "title": "Roy Drusky - Second Hand Rose (Karaoke EZ Sing)", - "id": "ZAkgmpSncO4" - }, - { - "title": "Don Gibson - Blue Blue Day (Karaoke EZ Sing)", - "id": "i423Yty7c-w" - }, - { - "title": "Al Dexter And His Troopers - I'm Losing My Mind Over You (Karaoke EZ Sing)", - "id": "iYNFA9Vwh7k" - }, - { - "title": "Don Gibson - Sea Of Heartbreak (Karaoke EZ Sing)", - "id": "zeueedjXbZc" - }, - { - "title": "Roy Drusky - Peel Me A Nanner (Karaoke EZ Sing)", - "id": "6YQPS_mSoWM" - }, - { - "title": "Tom Jones - Green Green Grass Of Home (Karaoke EZ Sing)", - "id": "wvMwxdFRdrk" - }, - { - "title": "Tony Bennett - Steppin' Out With My Baby (Karaoke EZ Sing)", - "id": "m2Q_R2bdiBk" - }, - { - "title": "Roy Drusky - Long Long Texas Road (Karaoke EZ Sing)", - "id": "L1R_u85aW2o" - }, - { - "title": "Bobby Vinton - Beer Barrel Polka (Karaoke EZ Sing)", - "id": "stcsa9xhdg4" - }, - { - "title": "Public Domain - For He's A Jolly Good Fellow (Karaoke EZ Sing)", - "id": "9GC6aEJy8ZE" - }, - { - "title": "Eddie Cantor - Ida! Sweet As Apple Cider (Karaoke EZ Sing)", - "id": "vBaB8x4QcpM" - }, - { - "title": "Mitch Miller - Yellow Rose Of Texas (Karaoke EZ Sing)", - "id": "bz_0TAaxKn8" - }, - { - "title": "Ted Lewis - Baby Face (Karaoke EZ Sing)", - "id": "onB1yad-kSQ" - }, - { - "title": "Mitch Miller - When The Red, Red Robin Comes Bob(Karaoke)", - "id": "9QWcepG-xQI" - }, - { - "title": "Al Jolson - Toot, Toot, Tootsie (Goodbye) (Karaoke EZ Sing)", - "id": "CM_CKV2LPcY" - }, - { - "title": "Glenn Miller & His Orchestra - Chattanooga Choo Choo (Karaoke EZ Sing)", - "id": "2st2sfo8tTs" - }, - { - "title": "Burl Ives - My Gal Sal (Karaoke EZ Sing)", - "id": "m_JyQKMUANc" - }, - { - "title": "Bing Crosby - Let Me Call You Sweetheart (Karaoke EZ Sing)", - "id": "pIajyeDB6lc" - }, - { - "title": "Mitch Miller - I'm Looking Over A Four Leaf Clover (Karaoke EZ Sing)", - "id": "6GjaeyrCJE8" - }, - { - "title": "Traditional / Standards - A Bicycle Built For Two (Karaoke EZ Sing)", - "id": "2RBOHmPI5hM" - }, - { - "title": "Mitch Miller - Side By Side (Karaoke EZ Sing)", - "id": "apKA2AClgiI" - }, - { - "title": "Lou Christie - Lightnin' Strikes (Karaoke EZ Sing)", - "id": "wqrYDdkARaM" - }, - { - "title": "Bobby Goldsboro - Honey (Karaoke EZ Sing)", - "id": "wcrz5Vjpzfw" - }, - { - "title": "Peter, Paul & Mary - Leaving On A Jet Plane (Karaoke EZ Sing)", - "id": "dOMAJt1tITs" - }, - { - "title": "Traditional / Standards - Down By The Riverside (Karaoke EZ Sing)", - "id": "P9o1b20tKBc" - }, - { - "title": "Beatles - Paperback Writer (Karaoke EZ Sing)", - "id": "nvpnI-aUTFo" - }, - { - "title": "John Fred & His Playboy Band - Judy In Disguise (With Glasses) (Karaoke EZ Sing)", - "id": "T63JO_qnRm4" - }, - { - "title": "Lemon Pipers - Green Tambourine (Karaoke EZ Sing)", - "id": "HsVvLO_roA4" - }, - { - "title": "Angie Stone - Brotha (Karaoke EZ Sing)", - "id": "bUmDnOoeZZg" - }, - { - "title": "Michael Jackson - Cry (You Can Change The World) (Karaoke EZ Sing)", - "id": "7ESKoXOJ5cg" - }, - { - "title": "Mitch Miller - Down By The Old Mill Stream (Karaoke EZ Sing)", - "id": "qy9hIbrc6qs" - }, - { - "title": "Supremes - Love Is Here And Now You're Gone (Karaoke EZ Sing)", - "id": "uiSfLLNvV_o" - }, - { - "title": "Mamas and The Papas - Monday Monday (Karaoke EZ Sing)", - "id": "lKE1roCeC0U" - }, - { - "title": "Lulu - To Sir With Love (Karaoke EZ Sing)", - "id": "bgRP_0MbJ6o" - }, - { - "title": "Supremes - I Hear A Symphony (Karaoke EZ Sing)", - "id": "Ay95wEPWO3g" - }, - { - "title": "Association - Windy (Karaoke EZ Sing)", - "id": "0WfX3K9E3tk" - }, - { - "title": "Calling - Wherever You Will Go (Karaoke EZ Sing)", - "id": "1UD-mDa3ZqE" - }, - { - "title": "Billy Jones - Yes! We Have No Bananas (Karaoke EZ Sing)", - "id": "Kh5XEzqpK0w" - }, - { - "title": "Carole King - Sweet Seasons (Karaoke EZ Sing)", - "id": "MpGuGcHsAh4" - }, - { - "title": "Roy Drusky - All My Hard Times (Karaoke EZ Sing)", - "id": "rNYz8J-bwaw" - }, - { - "title": "Barry McGuire - Eve Of Destruction (Karaoke EZ Sing)", - "id": "gj-b2Hby6R0" - }, - { - "title": "George Jones - 50,000 Names (Karaoke EZ Sing)", - "id": "lm2nUzj58BU" - }, - { - "title": "Garth Brooks with Trisha Yearwood - Squeeze Me In (Karaoke EZ Sing)", - "id": "xho9TzAFtnQ" - }, - { - "title": "Tim Rushlow - Package (Karaoke EZ Sing)", - "id": "ypYlYNmNK24" - }, - { - "title": "Montgomery Gentry - Merry Christmas From The Family (Karaoke EZ Sing)", - "id": "67BfT-MnBrA" - }, - { - "title": "Sister Hazel - Happy (Karaoke EZ Sing)", - "id": "ZAnlqMkwzXM" - }, - { - "title": "Fastball - You're An Ocean (Karaoke EZ Sing)", - "id": "NQA1GKw72-w" - }, - { - "title": "Fastball - Fire Escape (Karaoke EZ Sing)", - "id": "NBf5t9uICRQ" - }, - { - "title": "Everclear - Father Of Mine (Karaoke EZ Sing)", - "id": "dLV6G4cYnAs" - }, - { - "title": "Fastball - The Way (Karaoke EZ Sing)", - "id": "_ncv1-aqgIU" - }, - { - "title": "Jewel - Standing Still (Karaoke EZ Sing)", - "id": "0GFuKdjhbLE" - }, - { - "title": "Sister Hazel - All For You (Karaoke EZ Sing)", - "id": "v5XRFPhWKlg" - }, - { - "title": "Creedence Clearwater Revival - Suzie Q (Karaoke EZ Sing)", - "id": "6yDhROga0kY" - }, - { - "title": "America - You Can Do Magic (Karaoke EZ Sing)", - "id": "J6ofXwIMcHA" - }, - { - "title": "Sister Hazel - Champagne High (Karaoke EZ Sing)", - "id": "y1unaC_yjJI" - }, - { - "title": "Brooks & Dunn - Long Goodbye (Karaoke EZ Sing)", - "id": "8LK2hRABK8I" - }, - { - "title": "Trammps - Disco Inferno (Karaoke EZ Sing)", - "id": "E10c-2f5ekY" - }, - { - "title": "Creedence Clearwater Revival - Fortunate Son (Karaoke EZ Sing)", - "id": "YPVeK6f9P-c" - }, - { - "title": "Samantha Mumba - I Don't Need You To Tell Me I'm Pretty (Karaoke EZ Sing)", - "id": "IlezBVWg-Sc" - }, - { - "title": "Creedence Clearwater Revival - Midnight Special (Karaoke EZ Sing)", - "id": "1o823FDq4M8" - }, - { - "title": "Mandy Moore - Crush (Karaoke EZ Sing)", - "id": "LdJSPwIMwSk" - }, - { - "title": "Red Foley & Kitty Wells - As Long As I Live (Karaoke EZ Sing)", - "id": "eTD_5EIYZfs" - }, - { - "title": "Abba - Super Trouper (Karaoke EZ Sing)", - "id": "NTDGWrS1woE" - }, - { - "title": "Enrique Iglesias - Hero (Karaoke EZ Sing)", - "id": "JYYBdWTpDLc" - }, - { - "title": "Blu Cantrell - Hit 'Em Up Style (Karaoke EZ Sing)", - "id": "9nEfKMDwenc" - }, - { - "title": "Brian McKnight - Love Of My Life (Karaoke EZ Sing)", - "id": "Q7rpBFaIkAg" - }, - { - "title": "Abba - Waterloo (Karaoke EZ Sing)", - "id": "fttzyfbyOic" - }, - { - "title": "Derailers - More Of Your Love (Karaoke EZ Sing)", - "id": "NtA00B935JM" - }, - { - "title": "Abba - Mamma Mia (Karaoke EZ Sing)", - "id": "hH4lDxO-7Y0" - }, - { - "title": "Five For Fighting - Superman (Karaoke EZ Sing)", - "id": "2qIhAoxt1bk" - }, - { - "title": "Abba - Take A Chance On Me (Karaoke EZ Sing)", - "id": "eHVzAkrefh8" - }, - { - "title": "Peaches & Herb - Shake Your Groove Thing (Karaoke EZ Sing)", - "id": "BL8ZYQBbNSQ" - }, - { - "title": "Abba - Gimmie Gimmie Gimmie (Karaoke EZ Sing)", - "id": "GKRs4IXvFCQ" - }, - { - "title": "Patty Loveless & Travis Tritt - Out Of Control Raging Fire (Karaoke EZ Sing)", - "id": "9U6xzGX0wXs" - }, - { - "title": "Gary Allan - Man Of Me (Karaoke EZ Sing)", - "id": "x6iSoHnZgIc" - }, - { - "title": "Moe Bandy - I'm Sorry For You My Friend (Karaoke EZ Sing)", - "id": "6IV9GAR_VOY" - }, - { - "title": "Moe Bandy - Two Lonely People (Karaoke EZ Sing)", - "id": "Uupcf7dXlS8" - }, - { - "title": "Bobby Bare - Come Sundown (Karaoke EZ Sing)", - "id": "TB--Kr2Fqs8" - }, - { - "title": "Mac Davis - Watchin' Scotty Grow (Karaoke EZ Sing)", - "id": "X9KOaGvTKTY" - }, - { - "title": "Mac Davis - Rock N' Roll (I Gave You The Best Years Of My Life) (Karaoke EZ Sing)", - "id": "w7AWxLQ1sE8" - }, - { - "title": "Nelly Furtado - Turn Off The Lights (Karaoke EZ Sing)", - "id": "rC0sw8DdRZI" - }, - { - "title": "Mac Davis - Hooked On Music (Karaoke EZ Sing)", - "id": "rWxJAIzLXBo" - }, - { - "title": "Janie Fricke - Pride (Karaoke EZ Sing)", - "id": "LydKPExhnMI" - }, - { - "title": "Ricky Martin & Christina Aguilera - Nobody Wants To Be Lonely (Karaoke EZ Sing)", - "id": "xZjUypYLGgE" - }, - { - "title": "Anne Murray & Dave Loggins - Nobody Loves Me Like You Do (Karaoke EZ Sing)", - "id": "WHHVrq4ffIo" - }, - { - "title": "Janie Fricke - Easy To Please (Karaoke EZ Sing)", - "id": "ULs4QacEo8s" - }, - { - "title": "David Allan Coe w/ Bill Anderson - Get A Little Dirt On Your Hands (Karaoke EZ Sing)", - "id": "LkslYxuTH5g" - }, - { - "title": "Merle Haggard with George Jones - Yesterday's Wine (Karaoke EZ Sing)", - "id": "C0GdsIA2ExA" - }, - { - "title": "Oak Ridge Boys - I'll Be True To You (Karaoke EZ Sing)", - "id": "ZQSA_GHTLmQ" - }, - { - "title": "Dwight Yoakam - Long White Cadillac (Karaoke EZ Sing)", - "id": "JuypSsHAkj0" - }, - { - "title": "Oak Ridge Boys - Y'All Come Back Saloon (Karaoke EZ Sing)", - "id": "1-OuMOFMbqg" - }, - { - "title": "Lynn Anderson - Stay There 'Til I Get There (Karaoke EZ Sing)", - "id": "t-y6oYHIyBk" - }, - { - "title": "Everclear - I Will Buy You A New Life (Karaoke EZ Sing)", - "id": "kkKLL-k9X0I" - }, - { - "title": "Jill Scott - A Long Walk (Karaoke EZ Sing)", - "id": "ltGmbhrdFvI" - }, - { - "title": "Earl Thomas Conley - Right From The Start (Karaoke EZ Sing)", - "id": "SeJMHSZdQhU" - }, - { - "title": "Larry Gatlin - She Used To Be Somebody's Baby (Karaoke EZ Sing)", - "id": "8XdYk0JgDdM" - }, - { - "title": "Eddy Arnold - That Do Make It Nice (Karaoke EZ Sing)", - "id": "1ijaDCy2xQc" - }, - { - "title": "3 Of Hearts - Arizona Rain (Karaoke EZ Sing)", - "id": "lD0P5-GimhI" - }, - { - "title": "Janie Fricke - Do Me With Love (Karaoke EZ Sing)", - "id": "CjhUnLUcuPc" - }, - { - "title": "Hawkshaw Hawkins - I'm Waiting Just For You (Karaoke EZ Sing)", - "id": "9vyJIzI50xg" - }, - { - "title": "T. G. Sheppard - I Loved 'Em Every One (Karaoke EZ Sing)", - "id": "cz_TiS8Mtrk" - }, - { - "title": "Josh Joplin Group - Camera One (Karaoke EZ Sing)", - "id": "h7B-o3o4a3I" - }, - { - "title": "Tom T. Hall - I Care (Karaoke EZ Sing)", - "id": "y-a75tK4Xfs" - }, - { - "title": "Bellamy Brothers - When I'm Away From You (Karaoke EZ Sing)", - "id": "JhMKjqlwQ80" - }, - { - "title": "Lynn Anderson - If I Kiss You (Will You Go Away) (Karaoke EZ Sing)", - "id": "WpjtpJW7uLM" - }, - { - "title": "Lynn Anderson - No Another Time (Karaoke EZ Sing)", - "id": "us9FsLgTAYI" - }, - { - "title": "Lynn Anderson - Listen To A Country Song (Karaoke EZ Sing)", - "id": "4aiyt2zGBn4" - }, - { - "title": "Nelly Furtado - I'm Like A Bird (Karaoke EZ Sing)", - "id": "xmcNPKt-pOg" - }, - { - "title": "Keith Whitley - Miami, My Amy (Karaoke EZ Sing)", - "id": "Q5M6ThhVtyU" - }, - { - "title": "John Conlee - Years After You (Karaoke EZ Sing)", - "id": "hgQkP654ySU" - }, - { - "title": "Dwight Yoakam - Honky Tonk Man (Karaoke EZ Sing)", - "id": "yqDOvKbTGwM" - }, - { - "title": "Aaron Tippin - Where The Stars And Stripes And The Eagle Fly (Karaoke EZ Sing)", - "id": "cpwfx_VgilQ" - }, - { - "title": "Roy Drusky - Three Hearts In A Triangle (Karaoke EZ Sing)", - "id": "nsRwiv34eNs" - }, - { - "title": "Bellamy Brothers - Lovers Live Longer (Karaoke EZ Sing)", - "id": "XudKPZL2sQQ" - }, - { - "title": "Tim McGraw - The Cowboy In Me (Karaoke EZ Sing)", - "id": "SkWkFT3ZbfA" - }, - { - "title": "Mandy Moore - In My Pocket (Karaoke EZ Sing)", - "id": "OZfunoqFPNc" - }, - { - "title": "Elton John - Goodbye Yellow Brick Road (Karaoke EZ Sing)", - "id": "2EZMZPPMskA" - }, - { - "title": "Lynn Anderson - Fool Me (Karaoke EZ Sing)", - "id": "pfxchC37eOI" - }, - { - "title": "Roy Drusky - Tip Of My Fingers (Karaoke EZ Sing)", - "id": "nCZq2dX4PD4" - }, - { - "title": "Merle Haggard - Always Wanting You (Karaoke EZ Sing)", - "id": "-HLr1q1XubM" - }, - { - "title": "Dwight Yoakam - Takes A Lot To Rock You (Karaoke EZ Sing)", - "id": "Tf2H3wKl5LU" - }, - { - "title": "Merle Haggard - Going Where The Lonely Go (Karaoke EZ Sing)", - "id": "WC9_SlcyIpk" - }, - { - "title": "Keith Whitley - Some Old Side Road (Karaoke EZ Sing)", - "id": "G4PspshGt3Y" - }, - { - "title": "Backstreet Boys - More Than That (Karaoke EZ Sing)", - "id": "JtJ0pG0IGnQ" - }, - { - "title": "Brian McComas - Night Disappear With You (Karaoke EZ Sing)", - "id": "gWcc0iyCor4" - }, - { - "title": "Cowboy Copas - Louisian (Karaoke EZ Sing)", - "id": "ghHXitTIBKQ" - }, - { - "title": "Tom T. Hall - That Song Is Driving Me Crazy (Karaoke EZ Sing)", - "id": "H6Vavj5lzjg" - }, - { - "title": "Larry Gatlin - Broken Lady (Karaoke EZ Sing)", - "id": "h_vfvM6mQQs" - }, - { - "title": "Brad Paisley - Wrapped Around (Karaoke EZ Sing)", - "id": "Af7TbkFY_Mk" - }, - { - "title": "Moe Bandy - Here I Am Drunk Again (Karaoke EZ Sing)", - "id": "CkqNIJJxcfE" - }, - { - "title": "Tom T. Hall - Your Man Loves You, Honey (Karaoke EZ Sing)", - "id": "vXtgl50RqK4" - }, - { - "title": "Beatles - Octopus's Garden (Karaoke EZ Sing)", - "id": "oTw4jAUHfug" - }, - { - "title": "John Conlee - Working Man (Karaoke EZ Sing)", - "id": "XXY5oZhLDHc" - }, - { - "title": "Janie Fricke - I'll Need Someone To Hold Me When I Cry (Karaoke EZ Sing)", - "id": "P_K4xOEi_h4" - }, - { - "title": "T.G. Sheppard - I Feel Like Loving You Again (Karaoke EZ Sing)", - "id": "frJYsGAb1BI" - }, - { - "title": "Britney Spears - One Kiss From You (Karaoke EZ Sing)", - "id": "r_FwB0qamTc" - }, - { - "title": "Mac Davis - Forever Lovers (Karaoke EZ Sing)", - "id": "2tFeMgHleNw" - }, - { - "title": "Tom T. Hall - Ravishing Ruby (Karaoke EZ Sing)", - "id": "hmtdXONzKEc" - }, - { - "title": "Dwight Yoakam - Please, Please Baby (Karaoke EZ Sing)", - "id": "CB3FA86rfco" - }, - { - "title": "Billy \"Crash\" Craddock - Dream Lover (Karaoke EZ Sing)", - "id": "wWdG851Rv1c" - }, - { - "title": "Warren Brothers - Where Does It Hurt (Karaoke EZ Sing)", - "id": "mEypotQUIHg" - }, - { - "title": "Montgomery Gentry - Cold One Comin' On (Karaoke EZ Sing)", - "id": "kCJUKSvirE8" - }, - { - "title": "Merle Haggard - Carolyn (Karaoke EZ Sing)", - "id": "FEqW7AE3t7g" - }, - { - "title": "Fuel - Bad Day (Karaoke EZ Sing)", - "id": "WQ6IvJWse5I" - }, - { - "title": "David Allan Coe - Now I Lay Me Down To Cheat (Karaoke EZ Sing)", - "id": "RxPZvRAjpuE" - }, - { - "title": "Dwight Yoakam - Little Ways (Karaoke EZ Sing)", - "id": "9RNYY08RpJ0" - }, - { - "title": "Dwight Yoakam - Turn It On, Turn It Up, Turn Me Loose (Karaoke EZ Sing)", - "id": "hK32GGrPGsM" - }, - { - "title": "Beatles - It Won't Be Long (Karaoke EZ Sing)", - "id": "WgV-6DoYPu8" - }, - { - "title": "Bobby Bare - Miller's Cave (Karaoke EZ Sing)", - "id": "Hpf9euZ4rFk" - }, - { - "title": "Moe Bandy & Joe Stampley - Holding The Bag (Karaoke EZ Sing)", - "id": "NOiaUU3xWe8" - }, - { - "title": "Tom T. Hall - Deal (Karaoke EZ Sing)", - "id": "MrLtDrR0Ics" - }, - { - "title": "Keith Whitley - Homecoming '63 (Karaoke EZ Sing)", - "id": "iUWTVcRKgt4" - }, - { - "title": "Abba - I Do, I Do, I Do, I Do, I Do (Karaoke EZ Sing)", - "id": "4ksoIOQHCCY" - }, - { - "title": "Beatles - Here Comes The Sun (Karaoke EZ Sing)", - "id": "plNYoUNzCn0" - }, - { - "title": "Moe Bandy & Joe Stampley - Hey Joe (Hey Moe) (Karaoke EZ Sing)", - "id": "y56tK4ZrgvU" - }, - { - "title": "Moe Bandy - Hank Williams, You Wrote My Life (Karaoke EZ Sing)", - "id": "vDzURMjRwdU" - }, - { - "title": "Mac Davis - Friend, Lover, Woman, Wife (Karaoke EZ Sing)", - "id": "-JzPhkTnxf0" - }, - { - "title": "Abba - S. O. S. (Karaoke EZ Sing)", - "id": "880TfnfNaWs" - }, - { - "title": "Barbara Mandrell - Crackers (Karaoke EZ Sing)", - "id": "uLTX1CQqJIw" - }, - { - "title": "Jennifer Lopez - Play (Karaoke EZ Sing)", - "id": "ePGCTNqgzxE" - }, - { - "title": "Mac Davis - I Never Made Love (Till I Made Love With You) (Karaoke EZ Sing)", - "id": "g90MMVY0WLs" - }, - { - "title": "Abba - Thank You For The Music (Karaoke EZ Sing)", - "id": "rhd9F2s3LYw" - }, - { - "title": "Barbara Mandrell - Wish You Were Here (Karaoke EZ Sing)", - "id": "c0A-7MoLszc" - }, - { - "title": "Britney Spears - What You See (Is What You Get) (Karaoke EZ Sing)", - "id": "ghOZfl-o2hQ" - }, - { - "title": "Bobby Bare with Norm Jean & Liz Anderson - Game Of Triangles (Karaoke EZ Sing)", - "id": "tjjin-FJ9Zs" - }, - { - "title": "Moe Bandy - It Was Always So Easy (To Find An Unhappy Woman) (Karaoke EZ Sing)", - "id": "KcqVKzoTC1M" - }, - { - "title": "Lefty Frizzell - Long Black Veil (Karaoke EZ Sing)", - "id": "RAVGiGxLbjU" - }, - { - "title": "Faith Hill - There You'll Be (Karaoke EZ Sing)", - "id": "q2LIeNMnxGo" - }, - { - "title": "Sheryl Crow - Kiss That Girl (Karaoke EZ Sing)", - "id": "sGXLELvaKWw" - }, - { - "title": "Warren Brothers - It Ain't Me (Karaoke EZ Sing)", - "id": "-8UCBhMPco8" - }, - { - "title": "John Conlee - Miss Emily's Picture (Karaoke EZ Sing)", - "id": "jblFKcSkDPE" - }, - { - "title": "BBMak - Ghost Of You And Me (Karaoke EZ Sing)", - "id": "p73btdXJuVc" - }, - { - "title": "Larry Gatlin - Night Time Magic (Karaoke EZ Sing)", - "id": "DWbGLHqThdg" - }, - { - "title": "Nina Gordon - Now I Can Die (Karaoke EZ Sing)", - "id": "4huGrPdQBsk" - }, - { - "title": "T.G. Sheppard - I'll Be Coming Back For You (Karaoke EZ Sing)", - "id": "zEQ9-T8uTOI" - }, - { - "title": "Mac Davis - You're My Bestest Friend (Karaoke EZ Sing)", - "id": "mEB-j7KEjos" - }, - { - "title": "Merle Haggard - My Favorite Memory (Karaoke EZ Sing)", - "id": "-IG78slgouA" - }, - { - "title": "Bobby Bare - Streets Of Baltimore (Karaoke EZ Sing)", - "id": "0DKXaPQRgkg" - }, - { - "title": "Usher - U Remind Me (Karaoke EZ Sing)", - "id": "i9CMUpvR04U" - }, - { - "title": "Earl Thomas Conley - Holding Her And Loving You (Karaoke EZ Sing)", - "id": "J-_UIMeySi0" - }, - { - "title": "Rhonda Vincent & The Rage - My Sweet Love Ain't Around (Karaoke EZ Sing)", - "id": "UixZ61cS-Z0" - }, - { - "title": "Larry Gatlin - Talkin' To The Moon (Karaoke EZ Sing)", - "id": "wctTT2QpHno" - }, - { - "title": "Moe Bandy - Barstool Mountain (Karaoke EZ Sing)", - "id": "q6gGvreTIY8" - }, - { - "title": "Billy Gilman - She's My Girl (Karaoke EZ Sing)", - "id": "WEF4GWbJxqY" - }, - { - "title": "Merle Haggard - You Take Me For Granted (Karaoke EZ Sing)", - "id": "wz4x9JPGTTw" - }, - { - "title": "Carol Douglas - Doctor's Orders (Karaoke EZ Sing)", - "id": "zU04lyg2jCo" - }, - { - "title": "Tim McGraw - Set This Circus Down (Karaoke EZ Sing)", - "id": "D4v7SHgoAgo" - }, - { - "title": "Beatles - Drive My Car (Karaoke EZ Sing)", - "id": "9Ogms1xVOaE" - }, - { - "title": "Oak Ridge Boys - You're The One (Karaoke EZ Sing)", - "id": "q3MyIy1KvKY" - }, - { - "title": "Earl - I'm Into Something Good (Karaoke EZ Sing)", - "id": "7bQL162dTdY" - }, - { - "title": "Elvis Presley - Way Down (Karaoke EZ Sing)", - "id": "AeDVq5abGKc" - }, - { - "title": "Teena Marie - I Need Your Lovin' (Karaoke EZ Sing)", - "id": "NAqBSsg9Idw" - }, - { - "title": "Elvis Presley - I Really Don't Want To Know (Karaoke EZ Sing)", - "id": "Dwe6rPaQtvA" - }, - { - "title": "George Thorogood & The Destroyers - Rock & Roll Christmas (Karaoke EZ Sing)", - "id": "W6DP7XB-8-E" - }, - { - "title": "Creed - With Arms Wide Open (Karaoke EZ Sing)", - "id": "RMMLfN1d10g" - }, - { - "title": "Tavares - It Only Takes A Minute (Karaoke EZ Sing)", - "id": "AWDwXtbE3Ws" - }, - { - "title": "France Joli - Come To Me (Karaoke EZ Sing)", - "id": "OtsvAzJi7iY" - }, - { - "title": "Culture Club - Do You Really Want To Hurt Me (Karaoke EZ Sing)", - "id": "BzmDrjJek8A" - }, - { - "title": "REO Speedwagon - Can't Fight This Feeling (Karaoke EZ Sing)", - "id": "K_CH9wcR6EI" - }, - { - "title": "Blue Swede - Hooked On A Feeling (Karaoke EZ Sing)", - "id": "UCxwMrBnDEg" - }, - { - "title": "Earth, Wind & Fire - Shining Star (Karaoke EZ Sing)", - "id": "YgRZ60rR0WE" - }, - { - "title": "Cledus T. Judd - Every Bulb In The House Is Blown (Karaoke EZ Sing)", - "id": "1e-uu5D10iU" - }, - { - "title": "3 Doors Down - So I Need You (Karaoke EZ Sing)", - "id": "c4C3HwA-SU8" - }, - { - "title": "Tracy Byrd & Mark Chesnutt - A Good Way To Get On My Bad Side (Karaoke EZ Sing)", - "id": "g13yGIhezBQ" - }, - { - "title": "3 Doors Down - Better Life (Karaoke EZ Sing)", - "id": "zYkxrw0KGOU" - }, - { - "title": "Fastball - Better Than It Was (Karaoke EZ Sing)", - "id": "H9vncRuAxGQ" - }, - { - "title": "J. J. Jackson - But It's Alright (Karaoke EZ Sing)", - "id": "jSYUY4XDoVo" - }, - { - "title": "Blues Traveler - Hook (Karaoke EZ Sing)", - "id": "uRwROZf5G6o" - }, - { - "title": "98 Degrees - Give Me Just One Night (Una Noche) (Karaoke EZ Sing)", - "id": "YObohF2dE48" - }, - { - "title": "Brook Benton - Rainy Night In Georgia (Karaoke EZ Sing)", - "id": "vECPNlfN0gk" - }, - { - "title": "Everclear - Santa Monica (Karaoke EZ Sing)", - "id": "lP8choE3oQE" - }, - { - "title": "Cookies - Chains (Karaoke EZ Sing)", - "id": "_XYlP7O8bWI" - }, - { - "title": "Toni Braxton - Un-break My Heart (Karaoke)", - "id": "ez9NbTCrB6U" - }, - { - "title": "3 Doors Down - Be Like That (Karaoke EZ Sing)", - "id": "9mW_ko0Qqz8" - }, - { - "title": "Creed - Young Grow Old (Karaoke EZ Sing)", - "id": "qT-iv8eushE" - }, - { - "title": "Trent Summar & The New Row Mob - It Never Rains In Southern California (Karaoke EZ Sing)", - "id": "iddaQ0Gh3Ig" - }, - { - "title": "Alabama - Will You Marry Me (Karaoke EZ Sing)", - "id": "RpBsI5hTchA" - }, - { - "title": "David Gray - Babylon (Karaoke EZ Sing)", - "id": "l4TXzvwprCs" - }, - { - "title": "Smash Mouth - Why Can't We Be Friends (Karaoke EZ Sing)", - "id": "QQHyuK0L3Os" - }, - { - "title": "3 Doors Down - Duck And Run (Karaoke EZ Sing)", - "id": "PwUprRl9304" - }, - { - "title": "Chris Cagle - Laredo (Karaoke EZ Sing)", - "id": "AhKYSRC6jiQ" - }, - { - "title": "Blues Traveler - But Anyway (Karaoke EZ Sing)", - "id": "c11Yi1p5328" - }, - { - "title": "Toni Braxton - Spanish Guitar (Karaoke EZ Sing)", - "id": "2obS4bMGsS0" - }, - { - "title": "Culture Club - Karma Chameleon (Karaoke EZ Sing)", - "id": "HnsGGB_2lmw" - }, - { - "title": "Blues Traveler - Canadian Rose (Karaoke EZ Sing)", - "id": "wZH-Ib7V2IU" - }, - { - "title": "Creed - What's This Life For? (Karaoke EZ Sing)", - "id": "bPSwiOwol8s" - }, - { - "title": "Blues Traveler - Optimistic Thought (Karaoke EZ Sing)", - "id": "UCxU_kcrk-4" - }, - { - "title": "Otis Redding - I've Been Loving You Too Long (To Stop Now) (Karaoke EZ Sing)", - "id": "rWlAvfUSnck" - }, - { - "title": "Britney Spears - Lucky (Karaoke EZ Sing)", - "id": "jaMPigqVR8M" - }, - { - "title": "Creed - Are You Ready (Karaoke EZ Sing)", - "id": "sfJ6RN5LX_M" - }, - { - "title": "Kinleys - I'm In (Karaoke EZ Sing)", - "id": "RMP-N6GGM1M" - }, - { - "title": "Melanie - Brand New Key (Karaoke EZ Sing)", - "id": "GDZ8CKh3rMY" - }, - { - "title": "Jessica Simpson - I've Got My Eyes On You (Karaoke EZ Sing)", - "id": "G0PCCQqygrM" - }, - { - "title": "Erykah Badu - Your Precious Love (Karaoke EZ Sing)", - "id": "3RYb7gn44Eo" - }, - { - "title": "SHeDaisy - Still Holding Out For You (Karaoke EZ Sing)", - "id": "JIngLWaLFcE" - }, - { - "title": "Boyz II Men - Thank You In Advance (Karaoke EZ Sing)", - "id": "hyhjyxzvSBM" - }, - { - "title": "Brad Paisley - Two People Fell In Love (Karaoke EZ Sing)", - "id": "fk61-_9Xze0" - }, - { - "title": "Selena - I'm Getting Used To You (Karaoke EZ Sing)", - "id": "uX1d_xs7elE" - }, - { - "title": "Jackson 5 - Dancing Machine (Karaoke EZ Sing)", - "id": "Jbf7w56wSlM" - }, - { - "title": "Rascal Flatts - While You Loved Me (Karaoke EZ Sing)", - "id": "bmB6dQXEaS0" - }, - { - "title": "Erykah Badu - On And On (Karaoke EZ Sing)", - "id": "eY04U-wKm2U" - }, - { - "title": "Dwight Yoakam - I Want You To Want Me (Karaoke EZ Sing)", - "id": "0vy2oLKvly8" - }, - { - "title": "Charlie Robison - I Want You Bad (Karaoke EZ Sing)", - "id": "ecyiqr3PgPA" - }, - { - "title": "Bill Luther - You Will Always Be Mine (Karaoke EZ Sing)", - "id": "EDNODkCxb-0" - }, - { - "title": "A-Teens - Bouncing Off The Ceiling (Upside Down) (Karaoke EZ Sing)", - "id": "a3_d4PwjY34" - }, - { - "title": "98 Degrees - My Everything (Karaoke EZ Sing)", - "id": "OrPjC0-qA5c" - }, - { - "title": "Mark Chesnutt - Lost In The Feeling (Karaoke EZ Sing)", - "id": "FIzqFXCvpLY" - }, - { - "title": "Fuel - Hemorrhage (In My Hands) (Karaoke EZ Sing)", - "id": "GoViEKuBJkE" - }, - { - "title": "Lonestar - Tell Her (Karaoke EZ Sing)", - "id": "X_ikzgX84HQ" - }, - { - "title": "Everclear - Everything To Everyone (Karaoke EZ Sing)", - "id": "0pky60CSVSc" - }, - { - "title": "Ray Stevens - It's Me Again Margaret (Karaoke EZ Sing)", - "id": "Tpofqz4gZ_Q" - }, - { - "title": "Bachman Turner Overdrive - You Ain't Seen Nothing Yet (Karaoke EZ Sing)", - "id": "F5DzlcZj47c" - }, - { - "title": "Brewer & Shipley - One Toke Over The Line (Karaoke EZ Sing)", - "id": "6So1x9S_cP0" - }, - { - "title": "A Taste Of Honey - Boogie Oogie Oogie (Karaoke EZ Sing)", - "id": "dT41O14pZto" - }, - { - "title": "Britney Spears - Stronger (Karaoke EZ Sing)", - "id": "FNn6IQnRKX8" - }, - { - "title": "Elvis Presley - Next Step Is Love (Karaoke EZ Sing)", - "id": "qxxoTqeRsII" - }, - { - "title": "Elvis Presley - You Gave Me A Mountain (Karaoke EZ Sing)", - "id": "8inO47LoVN4" - }, - { - "title": "Gap Band - You Dropped A Bomb On Me (Karaoke EZ Sing)", - "id": "CiYixMUtcFE" - }, - { - "title": "Katrina And The Waves - Walking On Sunshine (Karaoke EZ Sing)", - "id": "Vhm1Qyr9O4k" - }, - { - "title": "Elvis Presley - Don't Cry Daddy (Karaoke EZ Sing)", - "id": "bHcanHvtNuY" - }, - { - "title": "Jackson 5 - ABC (Karaoke EZ Sing)", - "id": "thQMQLYlzBk" - }, - { - "title": "Dells - Oh What A Night (Karaoke EZ Sing)", - "id": "BDwaBy-80LM" - }, - { - "title": "SoulDecision (feat. Thrust) - Faded (Karaoke EZ Sing)", - "id": "m_80cqjt9kY" - }, - { - "title": "Hamilton, Joe Frank & Reynolds - Don't Pull Your Love (Karaoke EZ Sing)", - "id": "61S9yJOp5ZE" - }, - { - "title": "Toto - Rosanna (Karaoke EZ Sing)", - "id": "YwqCfSfxrsQ" - }, - { - "title": "Stories - Brother Louie (Karaoke EZ Sing)", - "id": "v5mDyDweho0" - }, - { - "title": "Billy Ocean - Caribbean Queen (No More Love On The Run) (Karaoke EZ Sing)", - "id": "37EZNFtml_A" - }, - { - "title": "Marvin Gaye & Tammi Terrell - Ain't Nothin' Like The Real Thing (Karaoke EZ Sing)", - "id": "AXcE-_yQO4Y" - }, - { - "title": "Abba - Lay All Your Love On Me (Karaoke EZ Sing)", - "id": "bNunv_-1Btg" - }, - { - "title": "Kenny Chesney - Don't Happen Twice (Karaoke EZ Sing)", - "id": "uqvaPfr7ZnM" - }, - { - "title": "Kasey Chambers - Cry Like A Baby (Karaoke EZ Sing)", - "id": "ipb9UgQPKNU" - }, - { - "title": "Jimmy Ruffin - What Becomes Of The Brokenhearted (Karaoke EZ Sing)", - "id": "_sFO9V_6WvI" - }, - { - "title": "Isley Brothers - Who's That Lady? (Karaoke EZ Sing)", - "id": "As9D1RPtWp0" - }, - { - "title": "Martina McBride - Good Bye (Karaoke EZ Sing)", - "id": "muANMlQpr6w" - }, - { - "title": "Third Eye Blind - Deep Inside Of You (Karaoke EZ Sing)", - "id": "Ivae9rMLyVY" - }, - { - "title": "Ray Stevens - Santa Claus Is Watching You (Karaoke EZ Sing)", - "id": "CssluBDN5CA" - }, - { - "title": "Elvis Presley - Separate Ways (Karaoke EZ Sing)", - "id": "ubG_hpB1lx4" - }, - { - "title": "Huey Lewis & Gwyneth Paltrow - Cruisin' (Karaoke EZ Sing)", - "id": "nDjKpyd_oQc" - }, - { - "title": "Isley Brothers - It's Your Thing (Karaoke EZ Sing)", - "id": "5HQNzED8B8E" - }, - { - "title": "Osmonds - One Bad Apple (Karaoke EZ Sing)", - "id": "dbd9rpNmoX0" - }, - { - "title": "Johnny Taylor - Who's Making Love (Karaoke EZ Sing)", - "id": "N_hcqdjSrn4" - }, - { - "title": "Marvin Gaye - Too Busy Thinking About My Baby (Karaoke EZ Sing)", - "id": "aZmF1U7Vt7s" - }, - { - "title": "Joe Tex - Show Me (Karaoke EZ Sing)", - "id": "ULzgd0jbvEk" - }, - { - "title": "Moby ftg. Gwen Stefani - South Side (Karaoke EZ Sing)", - "id": "_t0Qbvx6wcI" - }, - { - "title": "Temptations - Way You Do The Things You Do (Karaoke EZ Sing)", - "id": "Dv-9rHdIk-Y" - }, - { - "title": "Rufus Thomas - Walking The Dog (Karaoke EZ Sing)", - "id": "23hoovypGnw" - }, - { - "title": "Jaynetts - Sally Go 'Round The Roses (Karaoke EZ Sing)", - "id": "OZvQbdKJHdw" - }, - { - "title": "Billy Ray Cyrus - Burn Down The Trailer Park (Karaoke EZ Sing)", - "id": "35R8F3hGjG4" - }, - { - "title": "Allison Moorer - Think It Over (Karaoke EZ Sing)", - "id": "4Y19Vrrtk2I" - }, - { - "title": "Marvin Gaye & Tammi Terrell - You're All I Need To Get By (Karaoke EZ Sing)", - "id": "QEVp-xO0Sqk" - }, - { - "title": "Bonnie Pointer - Heaven Must Have Sent You (Karaoke EZ Sing)", - "id": "Mc99NSku9JQ" - }, - { - "title": "Fastball - Out Of My Head (Karaoke EZ Sing)", - "id": "Cil-OdIDmTI" - }, - { - "title": "Dells - Stay In My Corner (Karaoke EZ Sing)", - "id": "HOHaz7SNqRg" - }, - { - "title": "Barbara Mason - Yes, I'm Ready (Karaoke EZ Sing)", - "id": "lU_DD-6S9YU" - }, - { - "title": "Martina McBride - Do What You Do (Karaoke EZ Sing)", - "id": "ecCDNZFch4M" - }, - { - "title": "Debelah Morgan - Dance With Me (Karaoke EZ Sing)", - "id": "Hk_L_zbY4No" - }, - { - "title": "Dexys Midnight Runners - Come On Eileen (Karaoke EZ Sing)", - "id": "fp5Y6PvUqqE" - }, - { - "title": "Eddie Murphy with Otis Redding - Try A Little Tenderness (Karaoke EZ Sing)", - "id": "-Rxm1f-EgBU" - }, - { - "title": "Georgia Middleman - Kick Down The Door (Karaoke EZ Sing)", - "id": "p1lP1Qs0I-o" - }, - { - "title": "Toni Basil - Mickey (Karaoke EZ Sing)", - "id": "_XeP1cHfKhI" - }, - { - "title": "Brad Paisley & Chely Wright - Hard To Be A Husband, Hard To Be A Wife (Karaoke EZ Sing)", - "id": "R59y_G1cra0" - }, - { - "title": "Staple Singers - I'll Take You There (Karaoke EZ Sing)", - "id": "zOxFTA5oFDs" - }, - { - "title": "3 Doors Down - Kryptonite (Karaoke EZ Sing)", - "id": "LOJpIotOmV4" - }, - { - "title": "Earl Paul Craft - Hey Girls...This Is Earl...I Didn't Die (Karaoke EZ Sing)", - "id": "YGDSHJrT8Nk" - }, - { - "title": "Wilson Pickett - Funky Broadway (Karaoke EZ Sing)", - "id": "vyPzlg11BV4" - }, - { - "title": "Miracles - Ooo Baby Baby (Karaoke EZ Sing)", - "id": "wmvY5jq9-_U" - }, - { - "title": "Supremes - Someday We'll Be Together (Karaoke EZ Sing)", - "id": "V5i1Qcgf2lU" - }, - { - "title": "Montgomery Gentry - All Night Long (Karaoke EZ Sing)", - "id": "7R5TStbEZw4" - }, - { - "title": "Phil Collins - Against All Odds (Karaoke EZ Sing)", - "id": "FdZFdapUcfk" - }, - { - "title": "LeAnn Rimes - But I Do Love You (Karaoke EZ Sing)", - "id": "13ndA4-XT58" - }, - { - "title": "Terri Clark - Real Thing (Karaoke EZ Sing)", - "id": "jbGhzmzooQk" - }, - { - "title": "Elvis Presley - You'll Never Walk Alone (Karaoke EZ Sing)", - "id": "qEXcrpkc8Dk" - }, - { - "title": "Chambers Brothers - Time Has Come Today (Karaoke EZ Sing)", - "id": "T-lc9n-THGw" - }, - { - "title": "Shirley (And Company) - Shame, Shame, Shame (Karaoke EZ Sing)", - "id": "JQNWpoGl5yc" - }, - { - "title": "LeAnn Rimes - Right Kind Of Wrong (Karaoke EZ Sing)", - "id": "WGTq7lki99k" - }, - { - "title": "LeAnn Rimes - Please Remember (Karaoke EZ Sing)", - "id": "IdwTILcasvU" - }, - { - "title": "Bryan White - How Long (Karaoke EZ Sing)", - "id": "KWL5iE1oRUw" - }, - { - "title": "LeAnn Rimes - Can't Fight The Moonlight (Karaoke EZ Sing)", - "id": "Tes8_rM06Ek" - }, - { - "title": "Doris Troy - Just One Look (Karaoke EZ Sing)", - "id": "SiCz5gVEiao" - }, - { - "title": "Terri Clark - Getting There (Karaoke EZ Sing)", - "id": "pd45FGe2qyU" - }, - { - "title": "Go-Go's - We Got The Beat (Karaoke EZ Sing)", - "id": "bmTIthlM2BQ" - }, - { - "title": "Elvis Presley - Until It's Time For You To Go (Karaoke EZ Sing)", - "id": "z3y-GVn29RY" - }, - { - "title": "Diana Ross - Love Hangover (Karaoke EZ Sing)", - "id": "56pdcvn_Yso" - }, - { - "title": "Dwight Yoakam - What Do You Know About Love (Karaoke EZ Sing)", - "id": "3CDLiaEc4FI" - }, - { - "title": "Mark Wills - I Want To Know (Everything There Is To Know About You) (Karaoke EZ Sing)", - "id": "oE8xutV9iWA" - }, - { - "title": "Amii Stewart - Knock On Wood (Karaoke EZ Sing)", - "id": "cqjWXz5vg1U" - }, - { - "title": "Devo - Whip It (Karaoke EZ Sing)", - "id": "B04lcq5Mlbg" - }, - { - "title": "Terri Clark - Easy From Now On (Karaoke EZ Sing)", - "id": "K8TNvgODbvQ" - }, - { - "title": "Rick James - Super Freak (Karaoke EZ Sing)", - "id": "p51OI9IbEHQ" - }, - { - "title": "Elvis Presley - Guitar Man (Karaoke EZ Sing)", - "id": "9HesLtjm35o" - }, - { - "title": "Neal McCoy - Every Man For Himself (Karaoke EZ Sing)", - "id": "eoiEhRkpbDg" - }, - { - "title": "Sammy Kershaw - Louisiana Hot Sauce (Karaoke EZ Sing)", - "id": "fSASm3jNMe4" - }, - { - "title": "Elvis Presley - Are You Sincere (Karaoke EZ Sing)", - "id": "zo1hFUlh_OY" - }, - { - "title": "Alice Deejay - Better Off Alone (Karaoke EZ Sing)", - "id": "BKGfziafunc" - }, - { - "title": "Cornelius Brothers & Sister Rose - Too Late To Turn Back Now (Karaoke EZ Sing)", - "id": "j4HPRtJf3jg" - }, - { - "title": "Elvis Presley - Trying To Get To You (Karaoke EZ Sing)", - "id": "nHPx1LP-sMQ" - }, - { - "title": "Todd Rundgren - Hello It's Me (Karaoke EZ Sing)", - "id": "8xqDvO7qSTg" - }, - { - "title": "Johnnie Taylor - Disco Lady (Karaoke EZ Sing)", - "id": "4FlJNIsCSmo" - }, - { - "title": "Abba - Dancing Queen (Karaoke EZ Sing)", - "id": "5drZXKaA0e8" - }, - { - "title": "Pointer Sisters - Automatic (Karaoke EZ Sing)", - "id": "4H4Y5wMWyD4" - }, - { - "title": "Elvis Presley - U. S. Male (Karaoke EZ Sing)", - "id": "-9OEIHfjzKs" - }, - { - "title": "Elvis Presley - I've Got A Thing About You Baby (Karaoke EZ Sing)", - "id": "VlFcYpgYqio" - }, - { - "title": "Chairmen Of The Board - Give Me Just A Little More Time (Karaoke EZ Sing)", - "id": "QKnIaX4D2Mw" - }, - { - "title": "Gap Band - Oops Upside Your Head (I Don't Believe You Want To Get Up And Dance) (Karaoke EZ Sing)", - "id": "Wfh0JfMCXxg" - }, - { - "title": "Indian Reservation (The Lament Of The Cherokee Reservation Indian) (Karaoke EZ Sing)", - "id": "vH2e8khiq-M" - }, - { - "title": "Everclear - Wonderful (Karaoke EZ Sing)", - "id": "boap-xLV9YY" - }, - { - "title": "Ben Harper - Steal My Kisses (Karaoke EZ Sing)", - "id": "9DSXX4diDf4" - }, - { - "title": "Fortunes - Here Comes That Rainy Day Feeling Again (Karaoke EZ Sing)", - "id": "chVw-AynauY" - }, - { - "title": "Ernie K - Mother-In-Law (Karaoke)", - "id": "ygcz-HbMP2o" - }, - { - "title": "Toby Keith - Country Comes To Town (Karaoke EZ Sing)", - "id": "2O_gxGkRCQg" - }, - { - "title": "Allison Moorer - Send Down An Angel (Karaoke EZ Sing)", - "id": "_QIQA9IMbK4" - }, - { - "title": "Len - Steal My Sunshine (Karaoke EZ Sing)", - "id": "GhlLXR0l63g" - }, - { - "title": "Don And Juan - What's Your Name (Karaoke EZ Sing)", - "id": "Ywcro7FgjVI" - }, - { - "title": "Dee Clark - Raindrops (Karaoke EZ Sing)", - "id": "fPGtJwoex3k" - }, - { - "title": "Paper Lace - Night Chicago Died (Karaoke EZ Sing)", - "id": "c3gh_fFXGkQ" - }, - { - "title": "Toni Braxton - He Wasn't Man Enough (Karaoke EZ Sing)", - "id": "lbYWvGC0NRY" - }, - { - "title": "Dave Clark Five - Over And Over (Karaoke EZ Sing)", - "id": "nfCqDd_hqss" - }, - { - "title": "Del Shannon - Hats Off To Larry (Karaoke EZ Sing)", - "id": "HTbID1Urki0" - }, - { - "title": "Counting Crows - Have You Seen Me Lately (Karaoke EZ Sing)", - "id": "CQCN4-4vs2Q" - }, - { - "title": "NSYNC - Bye Bye Bye (Karaoke EZ Sing)", - "id": "_Gda6_02D6k" - }, - { - "title": "TLC - Dear Lie (Karaoke EZ Sing)", - "id": "L1_0Zm_Y17E" - }, - { - "title": "Moody Blues - Nights In White Satin (Karaoke EZ Sing)", - "id": "WicLXaTYPaw" - }, - { - "title": "Platters - If I Didn't Care (Karaoke EZ Sing)", - "id": "vJXjqIMCaQ4" - }, - { - "title": "LFO - Summer Girls (Karaoke EZ Sing)", - "id": "QbnWQ5VsV20" - }, - { - "title": "Gary Wright - Dream Weaver (Karaoke EZ Sing)", - "id": "U2uY1_FwNqw" - }, - { - "title": "Hanson - Mmm Bop (Karaoke EZ Sing)", - "id": "OY5UVVLMS4U" - }, - { - "title": "Westlife - Swear It Again (Karaoke EZ Sing)", - "id": "CjhRHSteW2g" - }, - { - "title": "Pink - There You Go (Karaoke EZ Sing)", - "id": "HxEmo3zltvM" - }, - { - "title": "Enrique Iglesias - Bailamos (Karaoke EZ Sing)", - "id": "wa_UFZvTilQ" - }, - { - "title": "Chicago - If You Leave Me Now (Karaoke EZ Sing)", - "id": "5m4JSIL5Nt8" - }, - { - "title": "Chris LeDoux - Silence On The Line (Karaoke EZ Sing)", - "id": "5VtBP3ElWtk" - }, - { - "title": "Partridge Family - I Think I Love You (Karaoke EZ Sing)", - "id": "QOpfwGcCDxI" - }, - { - "title": "Enrique Iglesias - Rhythm Divine (Karaoke EZ Sing)", - "id": "HDe0NmXGW3g" - }, - { - "title": "Sara Evans - Born To Fly (Karaoke EZ Sing)", - "id": "9mgWPQTPqiM" - }, - { - "title": "Kingston Trio - Tom Dooley (Karaoke EZ Sing)", - "id": "J5EOIjShOA0" - }, - { - "title": "Lloyd Price - Personality (Karaoke EZ Sing)", - "id": "BIzVJt1magI" - }, - { - "title": "Tony Bennett - Rags To Riches (Karaoke EZ Sing)", - "id": "lOwvTCWyf6I" - }, - { - "title": "Creed - Higher (Karaoke EZ Sing)", - "id": "ftigJ8QTHGA" - }, - { - "title": "Shirelles - Will You Love Me Tomorrow (Karaoke EZ Sing)", - "id": "NhNdV9tAY0Y" - }, - { - "title": "Beatles - Help! (Karaoke EZ Sing)", - "id": "JuzthP1QtSU" - }, - { - "title": "Brenda Lee - All Alone Am I (Karaoke EZ Sing)", - "id": "jZxf2A46ewo" - }, - { - "title": "Beatles - Eight Days A Week (Karaoke EZ Sing)", - "id": "mPCWBreNOr4" - }, - { - "title": "Carla Thomas - Gee Whiz (Karaoke EZ Sing)", - "id": "uBwxd3KQ6Dg" - }, - { - "title": "Lace - Kiss 'Em All (Karaoke EZ Sing)", - "id": "tuj8w6Ah_C8" - }, - { - "title": "Backstreet Boys - One (Karaoke EZ Sing)", - "id": "rGvb4YJF4b8" - }, - { - "title": "Capris - There's A Moon Out Tonight (Karaoke EZ Sing)", - "id": "CoD-C7AehJQ" - }, - { - "title": "Wilkinsons - Shame On Me (Karaoke EZ Sing)", - "id": "lPp18hBwG_s" - }, - { - "title": "Al Wilson - Show And Tell (Karaoke EZ Sing)", - "id": "o5UBu6r_-5k" - }, - { - "title": "Train - Meet Virginia (Karaoke EZ Sing)", - "id": "JV8wA-aBLPk" - }, - { - "title": "Temptations - Papa Was A Rolling Stone (Karaoke EZ Sing)", - "id": "3vl9vxjr2rw" - }, - { - "title": "Kathy Mattea - Trouble With Angels (Karaoke EZ Sing)", - "id": "uppCf2POH90" - }, - { - "title": "Brenda Lee - Emotions (Karaoke EZ Sing)", - "id": "lrzWuXtdzWc" - }, - { - "title": "Patty Loveless - That's The Kind Of Mood I'm In (Karaoke EZ Sing)", - "id": "LmOqyW8QK64" - }, - { - "title": "Blink - All The Small Things (Karaoke EZ Sing)", - "id": "IQPSNYoRENA" - }, - { - "title": "Nickel Creek - Reasons Why (Karaoke EZ Sing)", - "id": "XoukTU63C7k" - }, - { - "title": "Elton John - Philadelphia Freedom (Karaoke EZ Sing)", - "id": "q3wg5Oc81f8" - }, - { - "title": "Celine Dion - I Want You To Need Me (Karaoke EZ Sing)", - "id": "-O5uTD2OQI8" - }, - { - "title": "Andy Griggs - Waitin' On Sundown (Karaoke EZ Sing)", - "id": "rghA96BQ3zk" - }, - { - "title": "Mary J. Blige - Give Me You (Karaoke EZ Sing)", - "id": "BFGh-YIN3rY" - }, - { - "title": "Manhattans - Kiss And Say Goodbye (Karaoke EZ Sing)", - "id": "CCOTRRjT1zs" - }, - { - "title": "Andrea True Connection - More, More, More (Karaoke EZ Sing)", - "id": "1-wWHzs60-s" - }, - { - "title": "Marilyn McCoo & Billy Davis Jr. - You Don't Have To Be A Star (To Be In My Show) (Karaoke EZ Sing)", - "id": "1ZbTIQy_4eM" - }, - { - "title": "Freda Payne - Band Of Gold (Karaoke EZ Sing)", - "id": "W859_qMwn3I" - }, - { - "title": "Bread - Make It With You (Karaoke EZ Sing)", - "id": "2Jgr6l0xzcE" - }, - { - "title": "Brad Paisley - We Danced (Karaoke EZ Sing)", - "id": "muwFXNinJO8" - }, - { - "title": "Bread - It Don't Matter To Me (Karaoke EZ Sing)", - "id": "9PleZLbTJOI" - }, - { - "title": "Alicia Bridges - I Love The NightLife (Karaoke EZ Sing)", - "id": "VtjipEDvYiY" - }, - { - "title": "David Soul - Don't Give Up On Us (Karaoke EZ Sing)", - "id": "avpEl0CiFZg" - }, - { - "title": "Edwin Starr - War (Karaoke EZ Sing)", - "id": "G3gLBaius0w" - }, - { - "title": "Kenny Rogers - He Will, She Knows (Karaoke EZ Sing)", - "id": "YXA_6ERIE-8" - }, - { - "title": "Bo Donaldson & Heywoods - Billy Don't Be A Hero (Karaoke EZ Sing)", - "id": "YZ3GE0itgcA" - }, - { - "title": "Yankee Grey - This Time Around (Karaoke EZ Sing)", - "id": "GNKGMGGRb_M" - }, - { - "title": "Barbra Streisand & Donna Summer - No More Tears (Enough Is Enough) (Karaoke EZ Sing)", - "id": "BETMqMV--eY" - }, - { - "title": "NSYNC - This I Promise You (Karaoke EZ Sing)", - "id": "8X0LBNzM3PM" - }, - { - "title": "Melissa Etheridge - Enough of Me (Karaoke EZ Sing)", - "id": "a3ZOaPdLl3o" - }, - { - "title": "Goo Goo Dolls - Broadway (Karaoke EZ Sing)", - "id": "zRZWg8OtVx8" - }, - { - "title": "Alabama - We Made Love (Karaoke EZ Sing)", - "id": "ngdQirobk6Q" - }, - { - "title": "98 Degrees - This Gift (Karaoke EZ Sing)", - "id": "WQ_cxDebcXQ" - }, - { - "title": "Sonya Issacs - Since I Gave My Heart Away (Karaoke EZ Sing)", - "id": "xo7RGbs9i0w" - }, - { - "title": "98 Degrees w/ Stevie Wonder - True To Your Heart (Karaoke EZ Sing)", - "id": "pzu9Kw3znEM" - }, - { - "title": "Third Eye Blind - Anything (Karaoke EZ Sing)", - "id": "EzWKkJ_vJRU" - }, - { - "title": "Lee Dorsey - Ya Ya (Karaoke EZ Sing)", - "id": "iSXFUmIcqrk" - }, - { - "title": "Hanson - If Only (Karaoke EZ Sing)", - "id": "IdcD8sbwfJU" - }, - { - "title": "Curtis Lee - Pretty Little Angel Eyes (Karaoke EZ Sing)", - "id": "QUMOr2uPgwA" - }, - { - "title": "Britney Spears - Oops! I Did It Again (Karaoke EZ Sing)", - "id": "SL46oL5KVYY" - }, - { - "title": "Wade Hayes - Goodbye Is The Wrong Way To Go (Karaoke EZ Sing)", - "id": "VtcSYYQ_Z54" - }, - { - "title": "Fats Domino - Walking To New Orleans (Karaoke EZ Sing)", - "id": "1sD_D7o71Iw" - }, - { - "title": "Johnny Otis Show - Hand Jive (Karaoke EZ Sing)", - "id": "Ya4q6xq6tdU" - }, - { - "title": "Brenda Lee - Everybody Loves Me But You (Karaoke EZ Sing)", - "id": "vO6iv_DqK3s" - }, - { - "title": "Melissa Etheridge - I Want To Come Over (Karaoke EZ Sing)", - "id": "hDCLBopPdWg" - }, - { - "title": "Britney Spears - From The Bottom Of My Broken Heart (Karaoke EZ Sing)", - "id": "UU7uncAf0Vg" - }, - { - "title": "Third Eye Blind - Semi-Charmed Life (Karaoke)", - "id": "igZBNqMGOcA" - }, - { - "title": "Whitney Houston - I Learned From The Best (Karaoke EZ Sing)", - "id": "UXWw7gb3q7g" - }, - { - "title": "98 Degrees - Invisible Man (Karaoke EZ Sing)", - "id": "CskJusOLVAo" - }, - { - "title": "Brian McKnight - One Last Cry (Karaoke EZ Sing)", - "id": "-tYvpqzBmbk" - }, - { - "title": "Lee Ann Womack - I Hope You Dance (Karaoke EZ Sing)", - "id": "2JaRNRNPZO0" - }, - { - "title": "Melissa Etheridge - I'm The Only One (Karaoke EZ Sing)", - "id": "K2r5QEsSTzE" - }, - { - "title": "Counting Crows - Raining In Baltimore (Karaoke EZ Sing)", - "id": "G3cVvgu0knY" - }, - { - "title": "Celine Dion - That's The Way It Is (Karaoke EZ Sing)", - "id": "078XHDUyHmM" - }, - { - "title": "Brian McKnight - Crazy Love (Karaoke EZ Sing)", - "id": "MHYlzSJAp_8" - }, - { - "title": "Third Eye Blind - How's It Going To Be (Karaoke EZ Sing)", - "id": "EsAe9s-Acg0" - }, - { - "title": "Counting Crows - Mr. Jones (Karaoke EZ Sing)", - "id": "XX1vu5r1lXM" - }, - { - "title": "Brian McKnight - Anytime (Karaoke EZ Sing)", - "id": "fpHh6exny7Q" - }, - { - "title": "98 Degrees - Hardest Thing (Karaoke EZ Sing)", - "id": "J3SCEOR5VKI" - }, - { - "title": "Third Eye Blind - Jumper (Karaoke EZ Sing)", - "id": "nyS_x6HJ6Gw" - }, - { - "title": "TLC - Come On Down (Karaoke EZ Sing)", - "id": "kvfNPgbwTfA" - }, - { - "title": "Melissa Etheridge - Ain't It Heavy (Karaoke EZ Sing)", - "id": "R-cxSrmy1UQ" - }, - { - "title": "Whitney Houston - Could I Have This Kiss Forever (Karaoke EZ Sing)", - "id": "J23Gq9iS4Us" - }, - { - "title": "Brian McKnight - 6 8 12 (Karaoke EZ Sing)", - "id": "sdfcvEOD1eA" - }, - { - "title": "98 Degrees - Because Of You (Karaoke EZ Sing)", - "id": "i1gD7oKX6sc" - }, - { - "title": "Third Eye Blind - Never Let You Go (Karaoke EZ Sing)", - "id": "ILsq1lcarYw" - }, - { - "title": "Trisha Yearwood - You're Where I Belong (Karaoke EZ Sing)", - "id": "uKWxGTs30Uc" - }, - { - "title": "Third Eye Blind - Losing A Whole Year (Karaoke EZ Sing)", - "id": "fsAdgr6_G7k" - }, - { - "title": "Brandy - Almost Doesn't Count (Karaoke EZ Sing)", - "id": "GZwS6JpTx7k" - }, - { - "title": "Melissa Etheridge - Angels Would Fall (Karaoke EZ Sing)", - "id": "9Qtu08OVXYk" - }, - { - "title": "TLC - Creep (Karaoke EZ Sing)", - "id": "CDSljamDIiQ" - }, - { - "title": "Steve Wariner - Faith In You (Karaoke EZ Sing)", - "id": "8xi4K7PhZ_k" - }, - { - "title": "Mary J. Blige - All That I Can Say (Karaoke EZ Sing)", - "id": "EFxjWnVNS5U" - }, - { - "title": "Mark Wills - Back At One (Karaoke EZ Sing)", - "id": "zMnA6nWFsc8" - }, - { - "title": "Porter Wagoner - I've Enjoyed As Much Of This As I Can Stand (Karaoke EZ Sing)", - "id": "RtMjs9TAzwQ" - }, - { - "title": "Buck Owens - It Takes People Like You (To Make People Like Me) (Karaoke EZ Sing)", - "id": "zBVkMODMiVM" - }, - { - "title": "Porter Wagoner - Cold Hard Facts Of Life (Karaoke EZ Sing)", - "id": "8-kcpBCTwSE" - }, - { - "title": "Connie Smith - If I Talk To Him (Karaoke EZ Sing)", - "id": "1tMXLmEhFcM" - }, - { - "title": "Webb Pierce - I Ain't Never (Karaoke EZ Sing)", - "id": "k5w-TuAtrak" - }, - { - "title": "Buck Owens - Sam's Place (Karaoke EZ Sing)", - "id": "5gYktlKfZ8k" - }, - { - "title": "Dixie Chicks - Heartbreak Town (Karaoke EZ Sing)", - "id": "BhWDkc85ytg" - }, - { - "title": "Jerry Lee Lewis - Thirty Nine And Holding (Karaoke EZ Sing)", - "id": "zI0m9kDs1Zs" - }, - { - "title": "Webb Pierce - Honky Tonk Song (Karaoke EZ Sing)", - "id": "goojiScETM8" - }, - { - "title": "Jerry Lee Lewis - She Even Woke Me Up To Say Goodbye (Karaoke EZ Sing)", - "id": "CBz_oOeLG-8" - }, - { - "title": "Gene Watson - Speak Softly (You're Talking To My Heart) (Karaoke EZ Sing)", - "id": "1cKuX3U4Mm8" - }, - { - "title": "Connie Smith - Then And Only Then (Karaoke EZ Sing)", - "id": "U5mZO-om2cg" - }, - { - "title": "Gene Watson - Nothing Sure Looked Good On You (Karaoke EZ Sing)", - "id": "9EI8ALm3lG8" - }, - { - "title": "Jennifer Lopez - If You Had My Love (Karaoke EZ Sing)", - "id": "orPtLmclUbI" - }, - { - "title": "Pearl Jam - Last Kiss (Karaoke EZ Sing)", - "id": "KPOm8GS3OEM" - }, - { - "title": "Goo Goo Dolls - Black Balloon (Karaoke EZ Sing)", - "id": "HWhldc6gDwM" - }, - { - "title": "Gene Watson - Got No Reason Now For Going Home (Karaoke EZ Sing)", - "id": "ER0J9kJKhrw" - }, - { - "title": "Porter Wagoner & Dolly Parton - Last Thing On My Mind (Karaoke EZ Sing)", - "id": "BG79ssX55rY" - }, - { - "title": "Tom Petty & The Heartbreakers - Don't Do Me Like That (Karaoke EZ Sing)", - "id": "qZ7C_wJlhOc" - }, - { - "title": "Backstreet Boys - All I Have To Give (Karaoke EZ Sing)", - "id": "C-lbRXYsbSo" - }, - { - "title": "A Country Boy Can Survive (Y2K Version) (Karaoke EZ Sing)", - "id": "U5IDHycff9I" - }, - { - "title": "Susan Ashton - Closer (Karaoke EZ Sing)", - "id": "9AOVd4FCX1w" - }, - { - "title": "Boyz II Men - I'll Make Love To You (Karaoke EZ Sing)", - "id": "utDsJjUY_DQ" - }, - { - "title": "Backstreet Boys - I'll Never Break Your Heart (Karaoke EZ Sing)", - "id": "4ZIcTClWMlQ" - }, - { - "title": "Webb Pierce - Even Tho' (Karaoke EZ Sing)", - "id": "GUTy226NjUg" - }, - { - "title": "Porter Wagoner - Sorrow On The Rocks (Karaoke EZ Sing)", - "id": "uSMMBAu68wQ" - }, - { - "title": "Michelle Wright & Jim Brickman - Your Love (Karaoke EZ Sing)", - "id": "rV9A6P8b40g" - }, - { - "title": "Boyz II Men - 4 Seasons Of Loneliness (Karaoke EZ Sing)", - "id": "L1kDoFHd-K0" - }, - { - "title": "Matchbox Twenty - Girl Like That (Karaoke EZ Sing)", - "id": "vrYK_PYmCZY" - }, - { - "title": "Glen Campbell - Try A Little Kindness (Karaoke EZ Sing)", - "id": "yuo7PH5rMl8" - }, - { - "title": "Hootie & The Blowfish - Time (Karaoke EZ Sing)", - "id": "n_RqvBGiSDQ" - }, - { - "title": "Buck Owens - I Don't Care (Just As Long As You Love Me) (Karaoke EZ Sing)", - "id": "R01bKyLUwoU" - }, - { - "title": "Barbra Streisand with Vince Gill - If You Ever Leave Me (Karaoke EZ Sing)", - "id": "nPE0dl7Bzbw" - }, - { - "title": "Porter Wagoner - I'll Go Down Swinging (Karaoke EZ Sing)", - "id": "xgf6rrtev5Q" - }, - { - "title": "Martina McBride - Love's The Only House (Karaoke EZ Sing)", - "id": "sxXbCcN0tL0" - }, - { - "title": "NSYNC - I Want You Back (Karaoke EZ Sing)", - "id": "tFHxc8kxyKA" - }, - { - "title": "Goo Goo Dolls - Iris (Karaoke EZ Sing)", - "id": "n3tQnZm3sog" - }, - { - "title": "Jerry Lee Lewis - What's Made Milwaukee Famous (Has Made A Loser Out Of Me) (Karaoke EZ Sing)", - "id": "xxXVXFNkJJM" - }, - { - "title": "Porter Wagoner - Tryin' To Forget The Blues (Karaoke EZ Sing)", - "id": "dSNjRFYRwqY" - }, - { - "title": "Keith Harling - Bring It On (Karaoke EZ Sing)", - "id": "quEE1BdKozM" - }, - { - "title": "Jennifer Lopez - Promise Me You'll Try (Karaoke EZ Sing)", - "id": "OGzpUBsnJak" - }, - { - "title": "NSYNC & Gloria Estefan - Music Of My Heart (Karaoke EZ Sing)", - "id": "C8F2WSLCP_w" - }, - { - "title": "Dixie Chicks - Cold Day In July (Karaoke EZ Sing)", - "id": "nDqR6qFgZJk" - }, - { - "title": "Dixie Chicks - Don't Waste Your Heart (Karaoke EZ Sing)", - "id": "WQh4aOgKBDY" - }, - { - "title": "Goo Goo Dolls - Long Way Down (Karaoke EZ Sing)", - "id": "Ac3v1hQ2PkU" - }, - { - "title": "Sonny James - Take Good Care Of Her (Karaoke EZ Sing)", - "id": "yG7cM60Ocss" - }, - { - "title": "Faith Hill - There Will Come A Day (Karaoke EZ Sing)", - "id": "ixtT9L9HXoE" - }, - { - "title": "Webb Pierce - I'm Tired (Karaoke EZ Sing)", - "id": "qcVkyS1bGb4" - }, - { - "title": "Jerry Lee Lewis - Middle Age Crazy (Karaoke EZ Sing)", - "id": "wqECFDkOOh8" - }, - { - "title": "Porter Wagoner, Dolly Parton - Holding On To Nothin' (Karaoke EZ Sing)", - "id": "yqEUeHAb7c0" - }, - { - "title": "Chely Wright - It Was (Karaoke EZ Sing)", - "id": "xSB_iDbq3W0" - }, - { - "title": "Mel Tillis - New Patches (Karaoke EZ Sing)", - "id": "wCJmBW7CsrI" - }, - { - "title": "George Strait - When It's Christmas Time In Texas (Karaoke EZ Sing)", - "id": "cR_tkN6Sr58" - }, - { - "title": "Elvis Presley - White Christmas (Karaoke EZ Sing)", - "id": "sMMt3hywEC4" - }, - { - "title": "Alan Jackson - Blues Man (Karaoke EZ Sing)", - "id": "0bNKoAjx8jA" - }, - { - "title": "Reba McEntire - We're All Alone (Karaoke EZ Sing)", - "id": "FpZR_kzJY30" - }, - { - "title": "Collin Raye - Couldn't Last A Moment (Karaoke EZ Sing)", - "id": "N2btdUwcAVo" - }, - { - "title": "Hank Williams Jr. - Where Would We Be Without Yankees (Karaoke EZ Sing)", - "id": "qIP-uLv1OCg" - }, - { - "title": "Christina Aguilera - Reflection (Karaoke EZ Sing)", - "id": "B5yXaSHRtJc" - }, - { - "title": "Sawyer Brown - 800 Pound Jesus (Karaoke EZ Sing)", - "id": "7A13K1u-ea0" - }, - { - "title": "Andy Williams - Twelve Days Of Christmas (Karaoke)", - "id": "Qib-svxPSLs" - }, - { - "title": "Garth Brooks - Do What You Gotta Do (Karaoke EZ Sing)", - "id": "HOMrs1VTQZg" - }, - { - "title": "Boyz II Men - I Will Get There (Karaoke EZ Sing)", - "id": "D8wLm6OCf3I" - }, - { - "title": "Connie Smith - Burning A Hole In My Mind (Karaoke EZ Sing)", - "id": "3B2Aydw0FjA" - }, - { - "title": "Hootie & The Blowfish - Tucker's Town (Karaoke EZ Sing)", - "id": "ZMK90gkPAfQ" - }, - { - "title": "Alan Jackson - My Own Kind Of Hat (Karaoke EZ Sing)", - "id": "wQbqhYV8Wsc" - }, - { - "title": "Connie Smith - I Never Once Stopped Loving You (Karaoke EZ Sing)", - "id": "f5ghZMjEZac" - }, - { - "title": "Porter Wagoner & Dolly Parton - Forty Miles From Poplar Bluff (Karaoke EZ Sing)", - "id": "E22uhSc6PTo" - }, - { - "title": "Porter Wagoner - Misery Loves Company (Karaoke EZ Sing)", - "id": "dyIJLkgpJos" - }, - { - "title": "George Strait - Merry Christmas Strait To You (Karaoke EZ Sing)", - "id": "VjrwK-zJiZk" - }, - { - "title": "Sonny James - Behind The Tear (Karaoke EZ Sing)", - "id": "CpzB9IqNLew" - }, - { - "title": "Mel Tillis - Stomp Them Grapes (Karaoke EZ Sing)", - "id": "Q5VaLp9aEgA" - }, - { - "title": "Porter Wagoner - Company's Comin' (Karaoke EZ Sing)", - "id": "YhJybGwttnE" - }, - { - "title": "Eric Clapton - Blue Eyes Blue (Karaoke EZ Sing)", - "id": "h0jI8hrEx54" - }, - { - "title": "Jerry Lee Lewis - Once More With Feeling (Karaoke EZ Sing)", - "id": "IUTYCTzUvnI" - }, - { - "title": "Lorrie Morgan - Things We Do (Karaoke EZ Sing)", - "id": "Dawk56mpsHc" - }, - { - "title": "Faith Hill - Love Is A Sweet Thing (Karaoke EZ Sing)", - "id": "wWwgL5YDcoo" - }, - { - "title": "Elvis Presley - On A Snowy Christmas Night (Karaoke EZ Sing)", - "id": "7ItoZi585D0" - }, - { - "title": "Gene Watson - Love In The Hot Afternoon (Karaoke EZ Sing)", - "id": "6eJ3LDMPcTM" - }, - { - "title": "Porter Wagoner - Green, Green Grass Of Home (Karaoke EZ Sing)", - "id": "1QmhhHt--2E" - }, - { - "title": "Alan Jackson - She Just Started Liking Cheatin' Songs (Karaoke EZ Sing)", - "id": "bTg6v52VY-g" - }, - { - "title": "Webb Pierce - It's Been So Long (Karaoke EZ Sing)", - "id": "CUwY8JiYCoA" - }, - { - "title": "Lee Ann Womack - Don't Tell Me (Karaoke EZ Sing)", - "id": "IFsrZczRyeA" - }, - { - "title": "NSYNC - Tearin' Up My Heart (Karaoke EZ Sing)", - "id": "Bzv0YOGPX8s" - }, - { - "title": "Kenny Chesney - What I Need To Do (Karaoke EZ Sing)", - "id": "bzsygBtlHPk" - }, - { - "title": "R.E.M. - Everybody Hurts (Karaoke EZ Sing)", - "id": "Uc79tyIaw5w" - }, - { - "title": "Mel Tillis - I Got The Hoss (Karaoke EZ Sing)", - "id": "qMJiTzBiMj8" - }, - { - "title": "Ty Herndon - No Mercy (Karaoke EZ Sing)", - "id": "sTFAH3eTc40" - }, - { - "title": "Eric Clapton - Forever Man (Karaoke EZ Sing)", - "id": "viXoGnGOQIk" - }, - { - "title": "Montgomery Gentry - Daddy Won't Sell The Farm (Karaoke EZ Sing)", - "id": "HAvARebfqC8" - }, - { - "title": "NSYNC - Sailing (Karaoke EZ Sing)", - "id": "FPpdfDmvw4U" - }, - { - "title": "Backstreet Boys - Hey Mr. DJ (Keep Playin' This Song) (Karaoke EZ Sing)", - "id": "INv4nx5IDXk" - }, - { - "title": "Goo Goo Dolls - Slide (Karaoke EZ Sing)", - "id": "hLVghi9xSjU" - }, - { - "title": "Mel Tillis - Sawmill (Karaoke EZ Sing)", - "id": "5IC6qwpqWgA" - }, - { - "title": "Chalee Tennison - Just Because She Lives There (Karaoke EZ Sing)", - "id": "mohgDGWawIs" - }, - { - "title": "Sonny James - Don't Keep Me Hangin' On (Karaoke EZ Sing)", - "id": "YJJP99-vZy4" - }, - { - "title": "Hank Williams Jr. - They All Want To Go Wild (And I Want To Go Home) (Karaoke EZ Sing)", - "id": "uE9aZHqo6Zw" - }, - { - "title": "Doug Stone - Take A Letter Maria (Karaoke EZ Sing)", - "id": "3kV_kAS-vCY" - }, - { - "title": "Reba McEntire - I'll Be (Karaoke EZ Sing)", - "id": "qAMTRIW6eZI" - }, - { - "title": "Mel Tillis - Heart Over Mind (Karaoke EZ Sing)", - "id": "RC4kQpBlsSU" - }, - { - "title": "Hank Williams Jr. - All Jokes Aside (Karaoke EZ Sing)", - "id": "pRZZzlD19_s" - }, - { - "title": "Sonny James - Bright Lights, Big City (Karaoke EZ Sing)", - "id": "-XgW5_JHHoc" - }, - { - "title": "Randy Travis - Where Can I Surrender (Karaoke EZ Sing)", - "id": "S2Xr7fhmmJ8" - }, - { - "title": "Mel Tillis - Heart Healer (Karaoke EZ Sing)", - "id": "kTeVWK2WFhs" - }, - { - "title": "Glen Campbell - Dreams Of The Everyday Housewife (Karaoke EZ Sing)", - "id": "X9K5zFq1QJc" - }, - { - "title": "Wade Hayes - Up North (Down South, Back East, Out West) (Karaoke EZ Sing)", - "id": "I3bg81haItg" - }, - { - "title": "Porter Wagoner - Skid Row Joe (Karaoke EZ Sing)", - "id": "UjNEOot3nlI" - }, - { - "title": "Mel Tillis - Send Me Down To Tucson (Karaoke EZ Sing)", - "id": "rN1mzgWfed8" - }, - { - "title": "Mel Tillis - Your Body Is An Outlaw (Karaoke EZ Sing)", - "id": "ewcKD_Duj7A" - }, - { - "title": "Mel Tillis - Midnight, Me And The Blues (Karaoke EZ Sing)", - "id": "Kzv_7ps3Ozc" - }, - { - "title": "Connie Smith - Run Away Little Tears (Karaoke EZ Sing)", - "id": "ts4mDslGZuE" - }, - { - "title": "Faith Hill - What's In It For Me (Karaoke EZ Sing)", - "id": "wY01ehUcoRE" - }, - { - "title": "Mel Tillis - Good Woman Blues (Karaoke EZ Sing)", - "id": "Qf26tHqY0is" - }, - { - "title": "John Michael Montgomery - Nothing Catches Jesus By Surprise (Karaoke EZ Sing)", - "id": "LjlSgMPb0yM" - }, - { - "title": "Shana Petrone - Something Real (Karaoke EZ Sing)", - "id": "T80h22-tJ4c" - }, - { - "title": "R.E.M. - Shiny Happy People (Karaoke EZ Sing)", - "id": "A6PBGQKbmLY" - }, - { - "title": "R.E.M. - It's The End Of The World As We Know It (And I Feel Fine) (Karaoke EZ Sing)", - "id": "4f6kEP-DRZQ" - }, - { - "title": "Faith Hill - Bringing Out The Elvis (Karaoke EZ Sing)", - "id": "ZrOrtHqyxEo" - }, - { - "title": "Wynonna - Can't Nobody Love You (Like I Do) (Karaoke EZ Sing)", - "id": "YvTdsulKMBU" - }, - { - "title": "Pearl Jam - Wishlist (Karaoke EZ Sing)", - "id": "8FI_3Kgw1MA" - }, - { - "title": "Shane Minor - I Think You're Beautiful (Karaoke EZ Sing)", - "id": "5rbLb1E4bxI" - }, - { - "title": "Sonny James - It's The Little Things (Karaoke EZ Sing)", - "id": "PY7enfS0k7k" - }, - { - "title": "Sonny James - Heaven Says Hello (Karaoke EZ Sing)", - "id": "yrKzRLE78wg" - }, - { - "title": "George Strait - What A Merry Christmas This Could Be (Karaoke EZ Sing)", - "id": "shMsuOiuDMk" - }, - { - "title": "Mel Tillis - Memory Maker (Karaoke EZ Sing)", - "id": "rtAI-L-8l5g" - }, - { - "title": "Jerry Lee Lewis - Another Place Another Time (Karaoke EZ Sing)", - "id": "-UKqSX65-Xw" - }, - { - "title": "Hootie & The Blowfish - Let Her Cry (Karaoke EZ Sing)", - "id": "BK6hSml4L6A" - }, - { - "title": "Christina Aguilera - I Turn To You (Karaoke EZ Sing)", - "id": "Sk-qikI6D74" - }, - { - "title": "Reba McEntire - Have I Got A Deal For You (Karaoke EZ Sing)", - "id": "mDz-NUtFMFE" - }, - { - "title": "Hank Williams Jr. - I'd Love To Knock The Hell Out Of You (Karaoke EZ Sing)", - "id": "eolOwR3a6to" - }, - { - "title": "Neil Sedaka - Next Door To An Angel (Karaoke)", - "id": "3-6-6CkYtng" - }, - { - "title": "Irving Kaufman - Hail! Hail! The Gang's All Here (Karaoke)", - "id": "N7ydnxD5A3Q" - }, - { - "title": "Kortney Kayle - Unbroken By You (Karaoke)", - "id": "Lt_82QSFbi0" - }, - { - "title": "Papa Roach - Last Resort (Karaoke)", - "id": "homM77Ell1w" - }, - { - "title": "Paula Abdul - Blowing Kisses In The Wind (Karaoke)", - "id": "l9gPFn_dGO8" - }, - { - "title": "Doja Cat - Get Into It (Yuh) (Karaoke)", - "id": "ID0pUrUAhlE" - }, - { - "title": "AJR - World's Smallest Violin (Karaoke)", - "id": "4NL-MrtwylM" - }, - { - "title": "Sum 41 - Still Waiting (Karaoke)", - "id": "921ve_lsOoU" - }, - { - "title": "Panic! At the Disco - I Write Sins Not Tragedies (Karaoke)", - "id": "Ti7SKLK75uQ" - }, - { - "title": "Oasis - Wonderwall (Karaoke)", - "id": "WtfttV1Hd08" - }, - { - "title": "Angels - My Boyfriend's Back (Karaoke EZ Sing)", - "id": "6G5FXr_fjj4" - }, - { - "title": "Tom Jones - Delilah (Karaoke EZ Sing)", - "id": "WLF1rlCy_OY" - }, - { - "title": "Lee Roy Parnell - She Won't Be Lonely Long (Karaoke EZ Sing)", - "id": "G_mO1Ff5QXk" - }, - { - "title": "Eddie Rabbitt - Two Dollars In The Jukebox (Karaoke EZ Sing)", - "id": "bGVH32b4YVc" - }, - { - "title": "Conway Twitty - I See The Want To In Your Eyes (Karaoke EZ Sing)", - "id": "-wqqq8Dj7JA" - }, - { - "title": "Hank Williams - I'm A Long Gone Daddy (Karaoke EZ Sing)", - "id": "ikz6LETLaYs" - }, - { - "title": "Bonnie Raitt - Lovers Will (Karaoke EZ Sing)", - "id": "LMzA9_PuF_A" - }, - { - "title": "Deryl Dodd - John Roland Wood (Karaoke EZ Sing)", - "id": "nW_ctiUmV3A" - }, - { - "title": "Elvis Presley - Such An) Easy Question (Karaoke EZ Sing)", - "id": "8a2fH_ScsAI" - }, - { - "title": "Lynyrd Skynyrd - Free Bird (Karaoke EZ Sing)", - "id": "iwbY08KvTYc" - }, - { - "title": "George M. Cochan - Over There (Karaoke EZ Sing)", - "id": "Ygn9FNdweYw" - }, - { - "title": "Martha & The Vandellas - Jimmy Mack (Karaoke EZ Sing)", - "id": "8kOgnI1gHHs" - }, - { - "title": "Eddie Rabbitt - Do You Right Tonight (Karaoke EZ Sing)", - "id": "Om9rPMtWW2s" - }, - { - "title": "Dwight Yoakam - Thinking About Leaving (Karaoke EZ Sing)", - "id": "qhmXJILtBNQ" - }, - { - "title": "Dixie Chicks - Without You (Karaoke EZ Sing)", - "id": "1K-aVNUbUIs" - }, - { - "title": "Dixie Chicks - Sin Wagon (Karaoke EZ Sing)", - "id": "EhXrMp6Izjg" - }, - { - "title": "Dixie Chicks - Cowboy Take Me Away (Karaoke EZ Sing)", - "id": "kWzhjXRl5vc" - }, - { - "title": "Ray Price - One More Time (Karaoke EZ Sing)", - "id": "cWYuL0PAOok" - }, - { - "title": "Dixie Chicks - Goodbye Earl (Karaoke EZ Sing)", - "id": "ejhzT5KFC7M" - }, - { - "title": "Paul Brandt - It's A Beautiful Thing (Karaoke EZ Sing)", - "id": "BDv7CbLQw30" - }, - { - "title": "Ray Price - Same Old Me (Karaoke EZ Sing)", - "id": "nC4oGcNKQrM" - }, - { - "title": "Ray Price - I've Got A New Heartache (Karaoke EZ Sing)", - "id": "kOfv9yyZifE" - }, - { - "title": "Conway Twitty - I May Never Get To Heaven (Karaoke EZ Sing)", - "id": "rsgtBX4_nww" - }, - { - "title": "Conway Twitty - Julia (Karaoke EZ Sing)", - "id": "z6OekeiYegw" - }, - { - "title": "Hank Williams Jr. - If The South Woulda Won (Karaoke EZ Sing)", - "id": "CmsbsIyqi7Y" - }, - { - "title": "Hank Williams - Dear John (Karaoke EZ Sing)", - "id": "fs3GtVRxMXE" - }, - { - "title": "Charley Pride - Why Baby Why (Karaoke EZ Sing)", - "id": "IaokkvsW1SA" - }, - { - "title": "Ray Price - Touch My Heart (Karaoke EZ Sing)", - "id": "ObQ7DcZ3e-Y" - }, - { - "title": "Elvis Presley - I Got Stung (Karaoke EZ Sing)", - "id": "EgSw2URS61Y" - }, - { - "title": "Elvis Presley - Puppet On A String (Karaoke EZ Sing)", - "id": "5aCPo0AyRKc" - }, - { - "title": "Confederate Railroad - Cowboy Cadillac (Karaoke EZ Sing)", - "id": "U0gLHKs7sAs" - }, - { - "title": "Julie Reeves - He Keeps Me In One Piece (Karaoke EZ Sing)", - "id": "07J4REWubrU" - }, - { - "title": "Lisa Angelle - I Wear Your Love (Karaoke EZ Sing)", - "id": "vOlFrL3ZQIs" - }, - { - "title": "Cher - Gypsys, Tramps And Thieves (Karaoke EZ Sing)", - "id": "xbxRQCfiBO8" - }, - { - "title": "Nancy Sinatra - These Boots Are Made For Walkin' (Karaoke EZ Sing)", - "id": "cLuBVPk1aZ4" - }, - { - "title": "Kenny Loggins & Jim Messina - Your Mama Don't Dance (Karaoke EZ Sing)", - "id": "3bU8pF3g6p0" - }, - { - "title": "Charley Pride - She's Just An Old Love Turned Memory (Karaoke EZ Sing)", - "id": "-Sryq5GpfQU" - }, - { - "title": "Kinleys - My Heart Is Still Beating (Karaoke EZ Sing)", - "id": "bZXJYoLhyDM" - }, - { - "title": "Celine Dion - It's All Coming Back To Me Now (Karaoke EZ Sing)", - "id": "lv_wRSpdzvs" - }, - { - "title": "Dixie Chicks - Ready To Run (Karaoke EZ Sing)", - "id": "r7TrvojpJEw" - }, - { - "title": "Elvis Presley - Love Me (Karaoke EZ Sing)", - "id": "zuPtfmVqzig" - }, - { - "title": "Standard - My Country Tis Of Thee (Karaoke EZ Sing)", - "id": "6JJ11l-kUeY" - }, - { - "title": "Elvis Presley - Loving You (Karaoke EZ Sing)", - "id": "AE30YQL-4sA" - }, - { - "title": "Fiona Apple - Across The Universe (Karaoke EZ Sing)", - "id": "lT81RA_TwYE" - }, - { - "title": "Elvis Presley - A Big Hunk O' Love (Karaoke EZ Sing)", - "id": "PjDIz8I6laE" - }, - { - "title": "Elvis Presley - Return To Sender (Karaoke EZ Sing)", - "id": "oyC2_9RuCEc" - }, - { - "title": "Alanis Morissette - Ironic (Karaoke EZ Sing)", - "id": "AJm7vEow_gM" - }, - { - "title": "Irene Cara - Fame (Karaoke EZ Sing)", - "id": "U4HmB-qfsy4" - }, - { - "title": "Alanis Morissette - Uninvited (Karaoke EZ Sing)", - "id": "w-Kbicd0XNg" - }, - { - "title": "Jim Reeves - Bimbo (Karaoke EZ Sing)", - "id": "CEDASnt1pkY" - }, - { - "title": "Faith Hill - Secret Of Life (Karaoke EZ Sing)", - "id": "kn9VdUdikss" - }, - { - "title": "George Jones - Cold Hard Truth (Karaoke EZ Sing)", - "id": "ZcJMqlbXKA4" - }, - { - "title": "Alanis Morissette - Hand In My Pocket (Karaoke EZ Sing)", - "id": "uQjlp63ffB0" - }, - { - "title": "Joe Cocker - Unchain My Heart (Karaoke EZ Sing)", - "id": "K8uopPXh774" - }, - { - "title": "Elvis Presley - Hard Headed Woman (Karaoke EZ Sing)", - "id": "MBjEXXpuYf8" - }, - { - "title": "Lisa Loeb - Firecracker (Karaoke EZ Sing)", - "id": "6kH6lH-ascM" - }, - { - "title": "Ricochet - Seven Bridges Road (Karaoke EZ Sing)", - "id": "6JHhsW5E0Yw" - }, - { - "title": "Philip Claypool - Perfect World (Karaoke EZ Sing)", - "id": "1PYcRKYrOiI" - }, - { - "title": "Elvis Presley - One Broken Heart For Sale (Karaoke EZ Sing)", - "id": "kEqi32BfGVw" - }, - { - "title": "Conway Twitty - Play Guitar Play (Karaoke EZ Sing)", - "id": "rVG9lIKLNPE" - }, - { - "title": "Hank Williams - Mind Your Own Business (Karaoke EZ Sing)", - "id": "wL71Cf7uAok" - }, - { - "title": "Bachman Turner Overdrive - Takin' Care Of Business (Karaoke EZ Sing)", - "id": "QPg0F0VtdEg" - }, - { - "title": "Coven - One Tin Soldier (The Legend Of Billy Jack) (Karaoke EZ Sing)", - "id": "JYASo4tJDHU" - }, - { - "title": "John Berry - Power Windows (Karaoke EZ Sing)", - "id": "Wc77dqVlIIQ" - }, - { - "title": "Brad Paisley - He Didn't Have To Be (Karaoke EZ Sing)", - "id": "pK76lX28cEc" - }, - { - "title": "Tim McGraw - My Best Friend (Karaoke EZ Sing)", - "id": "Kgfs-mUbDLA" - }, - { - "title": "Hank Williams Jr. - Don't Give Us A Reason (Karaoke EZ Sing)", - "id": "xnEypNvmnlw" - }, - { - "title": "Kenny Chesney - She Thinks My Tractor's Sexy (Karaoke EZ Sing)", - "id": "s5EElQZMwek" - }, - { - "title": "Charlie Daniels Band - In America (Karaoke EZ Sing)", - "id": "8egFzSFwVZ8" - }, - { - "title": "Chad Brock - Lightening Does The Work (Karaoke EZ Sing)", - "id": "9jw-QkOFm3w" - }, - { - "title": "Ray Price - Night Life (Karaoke EZ Sing)", - "id": "5tFvCqPOu5M" - }, - { - "title": "Ray Price - Soft Rain (Karaoke EZ Sing)", - "id": "sCskfvjFK4g" - }, - { - "title": "Loretta Lynn - Woman Of The World (Leave My World Alone) (Karaoke EZ Sing)", - "id": "mVBRvHsM0t0" - }, - { - "title": "Mickey Gilley - Put Your Dreams Away (Karaoke EZ Sing)", - "id": "JS_TKeFSfIk" - }, - { - "title": "Sheryl Crow - Anything But Down (Karaoke EZ Sing)", - "id": "4-tWxufO-h0" - }, - { - "title": "Eddie Rabbitt - Gone Too Far (Karaoke EZ Sing)", - "id": "MtteOrqLN3w" - }, - { - "title": "Mickey Gilley - Talk To Me (Karaoke EZ Sing)", - "id": "MnB4bzfplvc" - }, - { - "title": "Tammy Wynette - Take Me To Your World (Karaoke EZ Sing)", - "id": "tNVeOKGUAak" - }, - { - "title": "Gary Allan - Smoke Rings In The Dark (Karaoke EZ Sing)", - "id": "mMgilWX8acU" - }, - { - "title": "Montgomery Gentry - Hillbilly Shoes (Karaoke EZ Sing)", - "id": "cXUTyDuFmCY" - }, - { - "title": "Mickey Gilley - You've Really Got A Hold On Me (Karaoke EZ Sing)", - "id": "7dWjP9au8jk" - }, - { - "title": "Mickey Gilley - Lonely Nights (Karaoke EZ Sing)", - "id": "6L2LET6vtEg" - }, - { - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Karaoke EZ Sing)", - "id": "ncbRQC274PE" - }, - { - "title": "George Strait - Write This Down (Karaoke EZ Sing)", - "id": "t1Qqm76D0wg" - }, - { - "title": "Crystal Gayle - It's Like We Never Said Goodbye (Karaoke EZ Sing)", - "id": "8jbQOMkCBNE" - }, - { - "title": "Eric Clapton - Cocaine (Karaoke EZ Sing)", - "id": "OA0jVeWQv1s" - }, - { - "title": "Loretta Lynn - You've Just Stepped In (From Stepping Out On Me) (Karaoke EZ Sing)", - "id": "aR7_Z_Arl34" - }, - { - "title": "Allison Moorer - Pardon Me (Karaoke EZ Sing)", - "id": "NUzPfsXTsWc" - }, - { - "title": "Loretta Lynn - Fist City (Karaoke EZ Sing)", - "id": "AtuCXyGEwxk" - }, - { - "title": "Paula Cole - I Am So Ordinary (Karaoke EZ Sing)", - "id": "EM55DIqmSqE" - }, - { - "title": "George Jones - Tennessee Whiskey (Karaoke EZ Sing)", - "id": "VmRVr6_Kx8k" - }, - { - "title": "Elvis Presley - If You Love Me (Let Me Know) (Karaoke EZ Sing)", - "id": "Ba_iSUEpRaM" - }, - { - "title": "Black Oak Arkansas - Jim Dandy (Karaoke EZ Sing)", - "id": "AbuCqH8hZ0o" - }, - { - "title": "Elvis Presley - I Gotta Know (Karaoke EZ Sing)", - "id": "qrdtV-s0FvA" - }, - { - "title": "Alanis Morissette - Thank U (Karaoke EZ Sing)", - "id": "0gvDIx-jCW4" - }, - { - "title": "Alabama - God Must Have Spent A Little More Time On You (Karaoke EZ Sing)", - "id": "-znizeiPr1U" - }, - { - "title": "Dixie Chicks - Loving Arms (Karaoke EZ Sing)", - "id": "PZ66OEyQ0Rc" - }, - { - "title": "George Jones - One I Loved Back Then (The Corvette Song) (Karaoke EZ Sing)", - "id": "mW7PUF_umfE" - }, - { - "title": "Mariah Carey - You Need Me (Karaoke EZ Sing)", - "id": "e9w4nTefW88" - }, - { - "title": "Dixie Chicks - Hello Mr. Heartache (Karaoke EZ Sing)", - "id": "FipHawJwdbM" - }, - { - "title": "Elvis Presley - Donโ€™t Be Cruel (Karaoke EZ Sing)", - "id": "bqUXcMxLr18" - }, - { - "title": "Cher - Strong Enough (Karaoke EZ Sing)", - "id": "_R8PIvYVzso" - }, - { - "title": "Warren Brothers - She Wants To Rock (Karaoke EZ Sing)", - "id": "JLmabhorlIA" - }, - { - "title": "Crystal Gayle - Blue Side (Karaoke EZ Sing)", - "id": "kfaj3WZWc_s" - }, - { - "title": "Loretta Lynn - Somebody Somewhere (Don't Know What He's Missin' Tonight) (Karaoke EZ Sing)", - "id": "xHkLKhAU2rE" - }, - { - "title": "Elvis Presley - For The Heart (Karaoke EZ Sing)", - "id": "pa3aq5pxnAo" - }, - { - "title": "Celine Dion - Here There And Everywhere (Karaoke EZ Sing)", - "id": "hFDvGVSjS3c" - }, - { - "title": "Aaron Tippin - Her (Karaoke EZ Sing)", - "id": "2OYsPEXstfE" - }, - { - "title": "Elvis Presley - Burning Love (Karaoke EZ Sing)", - "id": "puGUxXdK0Qc" - }, - { - "title": "Loretta Lynn - Rated X (Karaoke EZ Sing)", - "id": "zchTzR6S0SM" - }, - { - "title": "Lee Roy Parnell - When A Woman Loves A Man (Karaoke EZ Sing)", - "id": "OfUYTjWqpW8" - }, - { - "title": "Elvis Presley - Bossa Nova Baby (Karaoke EZ Sing)", - "id": "lSG4XtfXaHI" - }, - { - "title": "Whitney Houston - You'll Never Stand Alone (Karaoke EZ Sing)", - "id": "ly9B8PO6Hl4" - }, - { - "title": "Trisha Yearwood - I'll Still Love You More (Karaoke EZ Sing)", - "id": "QgN3CxyeB48" - }, - { - "title": "Hank Williams - Nobody's Lonesome For Me (Karaoke EZ Sing)", - "id": "a5woxK8Qy68" - }, - { - "title": "Sylvia - Drifter (Karaoke EZ Sing)", - "id": "R4u6iYD07e8" - }, - { - "title": "Charlie Rich - I Love My Friend (Karaoke EZ Sing)", - "id": "0acrgwalnwM" - }, - { - "title": "James Ingram - Just Once (Karaoke EZ Sing)", - "id": "FESxK8VHYwI" - }, - { - "title": "Britney Spears - Soda Pop (Karaoke EZ Sing)", - "id": "U_gcLhl8h3I" - }, - { - "title": "KC And The Sunshine Band - Get Down Tonight (Karaoke EZ Sing)", - "id": "MhrM6CqpJUU" - }, - { - "title": "Tim McGraw - Seventeen (Karaoke EZ Sing)", - "id": "dkkPZFMMUrg" - }, - { - "title": "All Saints - Never Ever (Karaoke EZ Sing)", - "id": "KKgRbitERVw" - }, - { - "title": "T. Graham Brown - Never In A Million Tears (Karaoke EZ Sing)", - "id": "uBTz1ODpiMg" - }, - { - "title": "Melissa Etheridge - Come To My Window (Karaoke EZ Sing)", - "id": "hpenDushKiI" - }, - { - "title": "Jewel - Near You Always (Karaoke EZ Sing)", - "id": "qrNzJBON2hE" - }, - { - "title": "Alanis Morissette - You Oughta Know (Karaoke EZ Sing)", - "id": "xObV3Na0TUs" - }, - { - "title": "Dixie Chicks - Let Him Fly (Karaoke EZ Sing)", - "id": "fZYLnWQTJUA" - }, - { - "title": "Steppenwolf - Born To Be Wild (Karaoke EZ Sing)", - "id": "O-rAXqC_lMI" - }, - { - "title": "Kenny Rogers - She Believes In Me (Karaoke EZ Sing)", - "id": "ekn-8U-v_2A" - }, - { - "title": "Kingsmen - Louie Louie (Karaoke EZ Sing)", - "id": "fUSTTj4iFNU" - }, - { - "title": "Sheryl Crow - Leaving Las Vegas (Karaoke EZ Sing)", - "id": "RosJYadl9yE" - }, - { - "title": "South Sixty - No Easy Goodbye (Karaoke EZ Sing)", - "id": "3K6XI5P17u4" - }, - { - "title": "Jefferson Airplane - White Rabbit (Karaoke EZ Sing)", - "id": "jTqjEfZt1O4" - }, - { - "title": "Elvis Presley - Never Been To Spain (Karaoke EZ Sing)", - "id": "eBQFzQDfylk" - }, - { - "title": "Collin Raye - Anyone Else (Karaoke EZ Sing)", - "id": "BtSSNA5fK4U" - }, - { - "title": "Drifters - Under The Boardwalk (Karaoke EZ Sing)", - "id": "wbUoeYjP5aw" - }, - { - "title": "Elvis Presley - Don't (Karaoke EZ Sing)", - "id": "VXI_ig-F6Ng" - }, - { - "title": "Shane McAnally - Say Anything (Karaoke EZ Sing)", - "id": "OQ9cEEC_r5Q" - }, - { - "title": "Mary Wells - My Guy (Karaoke EZ Sing)", - "id": "ucv9hlYk3Wk" - }, - { - "title": "Oak Ridge Boys - It Takes A Little Rain (To Make Love Grow) (Karaoke EZ Sing)", - "id": "dXEEIe1bv90" - }, - { - "title": "Keith Harling - There Goes The Neighborhood (Karaoke EZ Sing)", - "id": "h2lVm2dyvu8" - }, - { - "title": "KC And The Sunshine Band - That's The Way (I Like It) (Karaoke EZ Sing)", - "id": "GLRV0MkyyoU" - }, - { - "title": "Hank Williams - I'll Never Get Out Of This World Alive (Karaoke EZ Sing)", - "id": "SrmMKbrAtvc" - }, - { - "title": "J. Geils Band - Centerfold (Karaoke EZ Sing)", - "id": "GmPCond51yY" - }, - { - "title": "Elvis Presley - Clean Up Your Own Back Yard (Karaoke EZ Sing)", - "id": "P4YD1A6fwQU" - }, - { - "title": "Steve Wariner - Can I Come Over Tonight (Karaoke EZ Sing)", - "id": "kpdGqa7wnBI" - }, - { - "title": "Hollies - Long Cool Woman (In A Black Dress) (Karaoke EZ Sing)", - "id": "s6nQme-9MJE" - }, - { - "title": "Tammy Wynette - Singing My Song (Karaoke EZ Sing)", - "id": "Q5houocMaVk" - }, - { - "title": "Steppenwolf - Magic Carpet Ride (Karaoke EZ Sing)", - "id": "E3zUuZHzkD4" - }, - { - "title": "Dixie Chicks - Once You've Loved Somebody (Karaoke EZ Sing)", - "id": "rVD9gV-5p_U" - }, - { - "title": "Shangri - Leader Of The Pack (Karaoke EZ Sing)", - "id": "V3EhjtICP8o" - }, - { - "title": "Britney Spears - Sometimes (Karaoke EZ Sing)", - "id": "nmRqn3suolE" - }, - { - "title": "Johnny Rivers - Secret Agent Man (Karaoke EZ Sing)", - "id": "tlbf7vze2MQ" - }, - { - "title": "Mariah Carey - Always Be My Baby (Karaoke EZ Sing)", - "id": "yfokNwT6CSQ" - }, - { - "title": "Marvin Gaye - I Heard It Through The Grapevine (Karaoke EZ Sing)", - "id": "aWzfF84prm8" - }, - { - "title": "Dave Loggins - Please Come To Boston (Karaoke EZ Sing)", - "id": "mwtlaSM3rOo" - }, - { - "title": "Blackfoot - Train, Train (Karaoke EZ Sing)", - "id": "cISJZTePQjo" - }, - { - "title": "Lauryn Hill - Ex-Factor (Karaoke)", - "id": "rTDnSOh7yGg" - }, - { - "title": "Peggy Lee - Fever (Karaoke EZ Sing)", - "id": "y_uf7vPF35A" - }, - { - "title": "John Michael Montgomery - Hello L. O. V. E (Karaoke EZ Sing)", - "id": "ob9pmknf65Q" - }, - { - "title": "Patty Loveless - Like Water Into Wine (Karaoke EZ Sing)", - "id": "iPGyjxVrpLA" - }, - { - "title": "Juice Newton - You Make Me Want To Make You Mine (Karaoke EZ Sing)", - "id": "0XyRYTjOPSo" - }, - { - "title": "Alanis Morissette - Unsent (Karaoke EZ Sing)", - "id": "tsbIO6Z_TcU" - }, - { - "title": "Britney Spears - I Will Be There (Karaoke EZ Sing)", - "id": "Os15k1cyUz4" - }, - { - "title": "Ronnie Milsap - Nobody Likes Sad Songs (Karaoke EZ Sing)", - "id": "EK3yT9zAIdA" - }, - { - "title": "Elvis Presley - Poor Boy (Karaoke EZ Sing)", - "id": "0YO4NbjCTTY" - }, - { - "title": "Taco - Puttin' On The Ritz (Karaoke EZ Sing)", - "id": "iyCOtRGvgEg" - }, - { - "title": "Barry Manilow - Copacabana (Karaoke EZ Sing)", - "id": "_qmg2ER3JuQ" - }, - { - "title": "Faith Hill - When You Cry (Karaoke EZ Sing)", - "id": "uf7W_W_I_A4" - }, - { - "title": "Vince Gill And Patty Loveless - My Kind Of Woman (Karaoke)", - "id": "whz8Z8G6-vc" - }, - { - "title": "Martha & The Vandellas - Heat Wave (Karaoke EZ Sing)", - "id": "qoVgphA5G6A" - }, - { - "title": "Whitney Houston - I Wanna Dance With Somebody (Karaoke EZ Sing)", - "id": "bKj0DWRUQQ4" - }, - { - "title": "Keith Urban - It's A Love Thing (Karaoke EZ Sing)", - "id": "ji0TTymRmxk" - }, - { - "title": "Monica - Angel Of Mine (Karaoke EZ Sing)", - "id": "cAVTNALvmfY" - }, - { - "title": "Bobby Day - Rockin' Robin (Karaoke EZ Sing)", - "id": "ZnORCYR8T6A" - }, - { - "title": "Yankee Grey - All Things Considered (Karaoke EZ Sing)", - "id": "pOH8M9EXEJY" - }, - { - "title": "Jim Reeves - Is It Really Over? (Karaoke EZ Sing)", - "id": "oSQ7Oz1U3L8" - }, - { - "title": "Don Williams - Love Me Over Again (Karaoke EZ Sing)", - "id": "eoG-HRZzre0" - }, - { - "title": "Olivia Newton - Let Me Be There (Karaoke EZ Sing)", - "id": "xFMtce_NXB4" - }, - { - "title": "Deryl Dodd - Good Idea Tomorrow (Karaoke EZ Sing)", - "id": "h9SE7MFo_Tk" - }, - { - "title": "Lynyrd Skynyrd - Call Me The Breeze (Karaoke EZ Sing)", - "id": "f2JRmxitrQA" - }, - { - "title": "Chris LeDoux - Life Is A Highway (Karaoke EZ Sing)", - "id": "afg8D_BjxSk" - }, - { - "title": "Elvis Presley - Teddy Bear / Don't Be Cruel (Karaoke EZ Sing)", - "id": "hq7jxfaZTDM" - }, - { - "title": "Paula Cole - Me (Karaoke EZ Sing)", - "id": "4qRN_8IB-nw" - }, - { - "title": "Doug Stone - Make Up In Love (Karaoke EZ Sing)", - "id": "4GtZxGVBSfo" - }, - { - "title": "Lisa Loeb - Truthfully (Karaoke EZ Sing)", - "id": "VstQL-ptE4U" - }, - { - "title": "Mel Tillis - Coca Cola Cowboy (Karaoke EZ Sing)", - "id": "fC2kZN50gXo" - }, - { - "title": "Marie Osmond - Paper Roses (Karaoke EZ Sing)", - "id": "U7KILDAtRNY" - }, - { - "title": "Deana Carter - Absence Of The Heart (Karaoke EZ Sing)", - "id": "JM-9rGqHhi8" - }, - { - "title": "Charley Pride - I'll Be Leaving Alone (Karaoke EZ Sing)", - "id": "AmRLZ3bOSms" - }, - { - "title": "Allison Moorer - Set You Free (Karaoke EZ Sing)", - "id": "7CnVcRj4k4c" - }, - { - "title": "Carl Story - Angel Band (Karaoke EZ Sing)", - "id": "lW0Q5S-S6PU" - }, - { - "title": "Jeannie Seely - Don't Touch Me (Karaoke EZ Sing)", - "id": "9HHnRB-2p6Q" - }, - { - "title": "Marty Robbins - Ruby Ann (Karaoke EZ Sing)", - "id": "kLWSMLXiQAI" - }, - { - "title": "Clay Walker - Ordinary People (Karaoke EZ Sing)", - "id": "jAzr4g1zpg4" - }, - { - "title": "Bellamy Brothers (The Bellamy Brothers) - Let Your Love Flow (Karaoke EZ Sing)", - "id": "PeDhzfWzQNk" - }, - { - "title": "Kevin Sharp - If She Only Knew (Karaoke EZ Sing)", - "id": "rBEGtkgQr88" - }, - { - "title": "Bill Anderson - Still (Karaoke EZ Sing)", - "id": "ifvK9Lp4yZs" - }, - { - "title": "Sherrie Austin - Innocent Man (Karaoke EZ Sing)", - "id": "jrmdpLr_aRs" - }, - { - "title": "Buck Owens - Waitin' In Your Welfare Line (Karaoke EZ Sing)", - "id": "-0pbICdUWKI" - }, - { - "title": "Jim Reeves - Blue Boy (Karaoke EZ Sing)", - "id": "ZvR3tjtGeeQ" - }, - { - "title": "Alan Jackson - I'll Go On Loving You (Karaoke EZ Sing)", - "id": "jEo51CVVfsY" - }, - { - "title": "Tammy Wynette - One Of A Kind (Karaoke EZ Sing)", - "id": "gTK-0-LHVy8" - }, - { - "title": "George Hamilton IV - Abilene (Karaoke EZ Sing)", - "id": "h52z5NEE8PQ" - }, - { - "title": "Tammy Wynette - You And Me (Karaoke EZ Sing)", - "id": "YKlyVIKqNdM" - }, - { - "title": "Jan Howard - Evil On Your Mind (Karaoke EZ Sing)", - "id": "XZ4_SGe3aPo" - }, - { - "title": "David Houston - Almost Persuaded (Karaoke EZ Sing)", - "id": "yt-JX5bH244" - }, - { - "title": "Reba McEntire - I'm Not That Lonely Yet (Karaoke EZ Sing)", - "id": "6A5ncfaw2nA" - }, - { - "title": "Roy Clark - Come Live With Me (Karaoke EZ Sing)", - "id": "nv40YbrKlMg" - }, - { - "title": "Keith Harling - Papa Bear (Karaoke EZ Sing)", - "id": "GEOduHJl6-M" - }, - { - "title": "Rosanne Cash - Seven Year Ache (Karaoke EZ Sing)", - "id": "mMvMXRxlGMI" - }, - { - "title": "Anne Murray - Put Your Hand In The Hand (Karaoke EZ Sing)", - "id": "bX-yTZ2YIOU" - }, - { - "title": "Merle Haggard - It's All In The Movies (Karaoke EZ Sing)", - "id": "lyZy_oHkfd0" - }, - { - "title": "Merle Haggard - Mama Tried (Karaoke EZ Sing)", - "id": "U7t_eQ4_VqE" - }, - { - "title": "Wilkinsons - 26 Cents (Karaoke EZ Sing)", - "id": "NVCmq3kmTq4" - }, - { - "title": "Hank Locklin - Send Me The Pillow You Dream On (Karaoke EZ Sing)", - "id": "CCvrL0hvuOs" - }, - { - "title": "Jim Reeves - Am I Losing You (Karaoke EZ Sing)", - "id": "aq-0C8X3oS0" - }, - { - "title": "Stonewall Jackson - B. J. The D. J. (Karaoke EZ Sing)", - "id": "0e91VJ9W1sc" - }, - { - "title": "Trisha Yearwood - Where Your Road Leads (Karaoke EZ Sing)", - "id": "KJiYzxsbVVs" - }, - { - "title": "Jerry Wallace - Primrose Lane (Karaoke EZ Sing)", - "id": "31oNerJpG48" - }, - { - "title": "Alabama - There's No Way (Karaoke EZ Sing)", - "id": "bRudSRY2aWI" - }, - { - "title": "Anne Murray - He Thinks I Still Care (Karaoke EZ Sing)", - "id": "zh1y4f1hvHw" - }, - { - "title": "Kitty Wells - Heartbreak U.S.A (Karaoke EZ Sing)", - "id": "bf1xXhhPBzU" - }, - { - "title": "Emmylou Harris - One Of These Days (Karaoke EZ Sing)", - "id": "o6ech9u95M4" - }, - { - "title": "Dwight Yoakam - Things Change (Karaoke EZ Sing)", - "id": "c6jVnRQLskc" - }, - { - "title": "Don Williams - It Must Be Love (Karaoke EZ Sing)", - "id": "HLbwQsBdyH8" - }, - { - "title": "Willie Nelson - Blue Skies (Karaoke EZ Sing)", - "id": "E4pbYwq4NMA" - }, - { - "title": "Faith Hill with Tim McGraw - Just To Hear You Say That You Love Me (Karaoke EZ Sing)", - "id": "xeV65SQuVf4" - }, - { - "title": "Ralph Stanley - Old Time Religion (Karaoke EZ Sing)", - "id": "fq8St9v5A8A" - }, - { - "title": "Jim Ed Brown - Pop A Top (Karaoke EZ Sing)", - "id": "cosozuhoYOU" - }, - { - "title": "Dottie West - Here Comes My Baby (Karaoke EZ Sing)", - "id": "dhzbZ-bsoyg" - }, - { - "title": "Alabama - Can't Keep A Good Man Down (Karaoke EZ Sing)", - "id": "FyNAplSR-Dw" - }, - { - "title": "Alabama - T. L. C. A. S. A P. (Karaoke EZ Sing)", - "id": "5yM6tSv0AIg" - }, - { - "title": "Claude King - Wolverton Mountain (Karaoke EZ Sing)", - "id": "-NltMwfvm6g" - }, - { - "title": "Jean Shepard - A Satisfied Mind (Karaoke EZ Sing)", - "id": "wqy_dYF0_lU" - }, - { - "title": "Connie Smith - Hurtin's All Over (Karaoke EZ Sing)", - "id": "PfwQAPJe5Pk" - }, - { - "title": "Garth Brooks - Uptown Down(Karaoke)", - "id": "I6AR6g2geGE" - }, - { - "title": "Merle Travis - I Am A Pilgrim (Karaoke EZ Sing)", - "id": "YhLTSdvlJUY" - }, - { - "title": "Dixie Chicks - There's Your Trouble (Karaoke EZ Sing)", - "id": "NA2n9AfgQXU" - }, - { - "title": "Little Jimmy Dickens - Hillbilly Fever (Karaoke EZ Sing)", - "id": "sFPctmLmWJY" - }, - { - "title": "Dale & Grace - I'm Leavin' It All Up To You (Karaoke EZ Sing)", - "id": "Bluf6uH7QgM" - }, - { - "title": "Johnny Horton - North To Alaska (Karaoke EZ Sing)", - "id": "8KvyAQciSLk" - }, - { - "title": "Freddie Hart - Easy Loving (Karaoke EZ Sing)", - "id": "Slp8ftMFsYQ" - }, - { - "title": "Merle Haggard - Grandma Harp (Karaoke EZ Sing)", - "id": "dVZX6LHIk9w" - }, - { - "title": "Ray Price - You're The Best Thing That Ever Happened To Me (Karaoke EZ Sing)", - "id": "5cl8im32YIQ" - }, - { - "title": "Mickey Gilley - City Lights (Karaoke EZ Sing)", - "id": "gy2bkTUXel0" - }, - { - "title": "Sammy Kershaw - Honky Tonk America (Karaoke EZ Sing)", - "id": "_9-FUTE5pME" - }, - { - "title": "Conway Twitty - Don't Cry Joni (Karaoke EZ Sing)", - "id": "WUNZpXFuNHY" - }, - { - "title": "Alabama - How Do You Fall In Love (Karaoke EZ Sing)", - "id": "KugSHS5Q3Y0" - }, - { - "title": "Garth Brooks - Two Pina Coladas (Karaoke EZ Sing)", - "id": "xG33B3pFsJk" - }, - { - "title": "Chely Wright - I Already Do (Karaoke EZ Sing)", - "id": "D1HsjeTsupM" - }, - { - "title": "T. G. Sheppard - Last Cheater's Waltz (Karaoke EZ Sing)", - "id": "UfgbUGgwwhk" - }, - { - "title": "Jean Shepard - Second Fiddle (To An Old Guitar) (Karaoke EZ Sing)", - "id": "gPlPn7ZwOmU" - }, - { - "title": "Aaron Tippin - You've Got To Stand For Something (Karaoke EZ Sing)", - "id": "jcYhf59HKUU" - }, - { - "title": "Whitney Houston - My Heart Is Calling (Karaoke EZ Sing)", - "id": "kg2t1N_pN68" - }, - { - "title": "Don Williams - True Love (Karaoke EZ Sing)", - "id": "bbxAn9IYfpY" - }, - { - "title": "Little Jimmy Dickens - May The Bird Of Paradise Fly Up Your Nose (Karaoke EZ Sing)", - "id": "xeTLBoT8AbU" - }, - { - "title": "Lila McCann - To Get Me To You (Karaoke EZ Sing)", - "id": "VkmkiKsPXVM" - }, - { - "title": "Leroy Van Dyke - Auctioneer (Karaoke EZ Sing)", - "id": "0UYXieVvq4g" - }, - { - "title": "Jim Reeves - This Is It (Karaoke EZ Sing)", - "id": "UIoCaOr8n1w" - }, - { - "title": "Alabama - Why Lady Why (Karaoke EZ Sing)", - "id": "LOp1qq_oIzw" - }, - { - "title": "Waylon Jennings - Good Ol' Boys (Theme From The Dukes Of Hazzard) (Karaoke EZ Sing)", - "id": "WYGulNI2DCc" - }, - { - "title": "Eddy Arnold - I Want To Go With You (Karaoke EZ Sing)", - "id": "1Kaebo50SpY" - }, - { - "title": "Alabama - Close Enough To Perfect (Karaoke EZ Sing)", - "id": "cyOktsfQncc" - }, - { - "title": "Dixie Chicks - Wide Open Spaces (Karaoke EZ Sing)", - "id": "cGdR6Buw0dk" - }, - { - "title": "Ronnie Milsap - I'm A Stand By My Woman Man (Karaoke EZ Sing)", - "id": "scjbOttPB1k" - }, - { - "title": "Steve Wariner - Holes In The Floor Of Heaven (Karaoke EZ Sing)", - "id": "w43PGLHnx94" - }, - { - "title": "Lari White - Stepping Stone (Karaoke EZ Sing)", - "id": "wrvu-cVEWmw" - }, - { - "title": "Ty Herndon - A Man Holdin' On (Karaoke EZ Sing)", - "id": "Qai-DIArDK0" - }, - { - "title": "Dixie Chicks - Let 'Er Rip (Karaoke EZ Sing)", - "id": "zPbocYiDVZY" - }, - { - "title": "Sonny James - Running Bear (Karaoke EZ Sing)", - "id": "N-IGFoOYeQA" - }, - { - "title": "Connie Francis - My Happiness (Karaoke EZ Sing)", - "id": "rcQ0-bia8Yo" - }, - { - "title": "Ronnie Milsap - Daydreams About Night Things (Karaoke EZ Sing)", - "id": "jNS3-nMmWrU" - }, - { - "title": "Jerry Wallace - In The Misty Moonlight (Karaoke EZ Sing)", - "id": "7yNQFQP8Pa8" - }, - { - "title": "Conway Twitty - You've Never Been This Far Before (Karaoke EZ Sing)", - "id": "a4k5-KD5TSw" - }, - { - "title": "Kinleys - You Make It Seem So Easy (Karaoke EZ Sing)", - "id": "cSyKhnHEvIg" - }, - { - "title": "Sonny James - You're The Only World I Know (Karaoke EZ Sing)", - "id": "AoG7LH2aGro" - }, - { - "title": "Joe Stampley - Roll On Big Mama (Karaoke EZ Sing)", - "id": "zKa-17ao0QI" - }, - { - "title": "Trisha Yearwood - There Goes My Baby (Karaoke EZ Sing)", - "id": "JAUF5ihAz74" - }, - { - "title": "Steve Wariner (w/ Garth Brooks) - Burnin' The Roadhouse Down (Karaoke EZ Sing)", - "id": "PVfev72r_ag" - }, - { - "title": "Steve Wariner - Road Trippin' (Karaoke EZ Sing)", - "id": "Al0F-Hd62Gk" - }, - { - "title": "Barbara Mandrell - If Loving You Is Wrong (I Don't Want To Be Right) (Karaoke EZ Sing)", - "id": "9cPZskBnb6o" - }, - { - "title": "If I Said You Had A Beautiful Body (Would You Hold It Against Me) (Karaoke EZ Sing)", - "id": "lTpIcHzi54Q" - }, - { - "title": "Connie Smith - Just One Time (Karaoke EZ Sing)", - "id": "fyji90IRMps" - }, - { - "title": "Kathy Mattea - Listen To The Radio (Karaoke EZ Sing)", - "id": "Tx5Dn5AS8Eg" - }, - { - "title": "Patty Loveless - High On Love (Karaoke EZ Sing)", - "id": "EQnhMJy16TA" - }, - { - "title": "Conway Twiity - After All The Good Is Gone (Karaoke)", - "id": "vaphZhz8Vps" - }, - { - "title": "Al Dexter And His Troopers - Pistol Packin' Mama (Karaoke EZ Sing)", - "id": "--TuLMTeNCo" - }, - { - "title": "Jimmy Dean - Big Bad John (Karaoke EZ Sing)", - "id": "lK44uxTru4k" - }, - { - "title": "Garth Brooks - You Move Me (Karaoke EZ Sing)", - "id": "7qKOItkMm-Y" - }, - { - "title": "Charlie Rich - A Very Special Love Song (Karaoke EZ Sing)", - "id": "ddXABjTFzek" - }, - { - "title": "Crystal Gayle - You Never Miss A Real Good Thing (Karaoke EZ Sing)", - "id": "UuPJtLXVvkE" - }, - { - "title": "Dottie West - Country Sunshine (Karaoke EZ Sing)", - "id": "chTB12ujsr0" - }, - { - "title": "Patsy Cline - Heartaches (Karaoke EZ Sing)", - "id": "LTeLa-N01g4" - }, - { - "title": "Wanda Jackson - Right Or Wrong (Karaoke EZ Sing)", - "id": "bY8D5q6KUHM" - }, - { - "title": "Statler Brothers - I'll Go To My Grave Loving You (Karaoke EZ Sing)", - "id": "RjcSCeJ0oIg" - }, - { - "title": "Don Williams - I Wouldn't Want To Live If You Didn't Love Me (Karaoke EZ Sing)", - "id": "-yt0hYCXxcA" - }, - { - "title": "Johnny Rodriguez - Dance With Me (Just One More Time) (Karaoke EZ Sing)", - "id": "41g8OAfyul8" - }, - { - "title": "Faron Young - Alone With You (Karaoke EZ Sing)", - "id": "cGSvsbyvIk8" - }, - { - "title": "Trini Triggs - Straight Tequila (Karaoke EZ Sing)", - "id": "6u1EkXZ7mCo" - }, - { - "title": "Dottie West - Last Time I Saw Him (Karaoke EZ Sing)", - "id": "zBSUUotQGww" - }, - { - "title": "Billy Dean - Real Man (Karaoke EZ Sing)", - "id": "DNLlkSpl05c" - }, - { - "title": "Bobby Bare - Detroit City (Karaoke EZ Sing)", - "id": "_tB8loJUnsg" - }, - { - "title": "Vince Gill - If You Ever Have Forever In Mind (Karaoke EZ Sing)", - "id": "PvVMom1J_bI" - }, - { - "title": "Ronnie Milsap - I'd Be A Legend In My Time (Karaoke EZ Sing)", - "id": "C4zT3jP-Wrc" - }, - { - "title": "Loretta Lynn - Love Is The Foundation (Karaoke EZ Sing)", - "id": "geYCq1TQ50A" - }, - { - "title": "Conway Twitty - Touch The Hand (Karaoke EZ Sing)", - "id": "Y2Jju6YQLMg" - }, - { - "title": "Conway Twitty - There's A Honky Tonk Angel (Who'll Take Me Back In) (Karaoke EZ Sing)", - "id": "lJTXuv7Lsgk" - }, - { - "title": "Buck Owens - Made In Japan (Karaoke EZ Sing)", - "id": "Jw2k4RlQLfw" - }, - { - "title": "George Strait - You Haven't Left Me Yet (Karaoke EZ Sing)", - "id": "S7Veooq1t-c" - }, - { - "title": "Faith Hill - Let Me Let Go (Karaoke EZ Sing)", - "id": "IDfwbUte_Oc" - }, - { - "title": "Dwight Yoakam - These Arms (Karaoke EZ Sing)", - "id": "h6ZAkOPdc98" - }, - { - "title": "Ronnie Milsap - Please Don't Tell Me How The Story Ends (Karaoke EZ Sing)", - "id": "SljEmCdfmT8" - }, - { - "title": "Kinleys - Dance In The Boat (Karaoke EZ Sing)", - "id": "y4xlDgEC9Ok" - }, - { - "title": "Wynonna - Always Will (Karaoke EZ Sing)", - "id": "6Qblib1TKs8" - }, - { - "title": "LeAnn Rimes - God Bless America (Karaoke EZ Sing)", - "id": "tEGT2NxckXg" - }, - { - "title": "Jim Reeves - Adios Amigo (Karaoke EZ Sing)", - "id": "6at3JjYaZ20" - }, - { - "title": "Waylon Jennings - I'm A Ramblin' Man (Karaoke EZ Sing)", - "id": "q9ZGpBZ35lA" - }, - { - "title": "Johnny Russell - Rednecks, White Socks And Blue Ribbon Beer (Karaoke EZ Sing)", - "id": "hqELiAvA4gY" - }, - { - "title": "LeAnn Rimes - These Arms Of Mine (Karaoke EZ Sing)", - "id": "FrCO3GtglWk" - }, - { - "title": "T. G. Sheppard - Party Time (Karaoke EZ Sing)", - "id": "39ABgTJRiUc" - }, - { - "title": "Lynn Anderson - How Can I Unlove You (Karaoke EZ Sing)", - "id": "SR7qWtmc860" - }, - { - "title": "Marshall Tucker Band - Fire On The Mountain (Karaoke EZ Sing)", - "id": "7o072HTgmY0" - }, - { - "title": "David Frizzell - I'm Gonna Hire A Wino (Karaoke EZ Sing)", - "id": "-v8NSKOJSbs" - }, - { - "title": "Merle Haggard - Things Aren't Funny Anymore (Karaoke EZ Sing)", - "id": "-WmyShwPPJI" - }, - { - "title": "Merle Haggard - Everybody's Had The Blues (Karaoke EZ Sing)", - "id": "rC4pSmf7v98" - }, - { - "title": "George Strait - A Fire I Can't Put Out (Karaoke EZ Sing)", - "id": "1gxOHPlhOT8" - }, - { - "title": "Mac Davis - Baby Don't Get Hooked On Me (Karaoke EZ Sing)", - "id": "S6c7ctubmEk" - }, - { - "title": "George Jones - Once You've Had The Best (Karaoke EZ Sing)", - "id": "clDJ7g3vweo" - }, - { - "title": "Jerry Reed - When You're Hot, You're Hot (Karaoke EZ Sing)", - "id": "heq0Cq_CWm8" - }, - { - "title": "Emmylou Harris - High Powered Love (Karaoke EZ Sing)", - "id": "CSEoc3jVjQE" - }, - { - "title": "Marty Robbins - Big Iron (Karaoke EZ Sing)", - "id": "eDVxhqFbj4U" - }, - { - "title": "George Jones - Wine Colored Roses (Karaoke EZ Sing)", - "id": "vfCzRedLWKg" - }, - { - "title": "Lynyrd Skynyrd - Sweet Home Alabama (Karaoke EZ Sing)", - "id": "zIM2JHxgX5g" - }, - { - "title": "Mac Davis - One Hell Of A Woman (Karaoke EZ Sing)", - "id": "YFHYnQIMBRA" - }, - { - "title": "Merle Haggard - Daddy Frank (Karaoke EZ Sing)", - "id": "s5iLkjU3ORU" - }, - { - "title": "Dolly Parton - Old Flames Can't Hold A Candle To You (Karaoke EZ Sing)", - "id": "2kPvm5E0K48" - }, - { - "title": "Merle Haggard - Farmer's Daughter (Karaoke EZ Sing)", - "id": "R5oWX721tBU" - }, - { - "title": "Merle Haggard - Swinging Doors (Karaoke EZ Sing)", - "id": "zI0hvUc28Xo" - }, - { - "title": "Jessi Colter - I'm Not Lisa (Karaoke EZ Sing)", - "id": "iCOdUmgklXw" - }, - { - "title": "Merle Haggard - I Threw Away The Rose (Karaoke EZ Sing)", - "id": "W9d0dHin8yU" - }, - { - "title": "Merle Haggard - Sing Me Back Home (Karaoke EZ Sing)", - "id": "62fo30EIkv0" - }, - { - "title": "Kenny Chesney - That's Why I'm Here (Karaoke EZ Sing)", - "id": "hcnkWIbOrpk" - }, - { - "title": "Webb Pierce - More And More (Karaoke EZ Sing)", - "id": "ntXKGrPbgCM" - }, - { - "title": "Jim & Jesse - Old Slew Foot (Karaoke EZ Sing)", - "id": "7-TX--kf3Hk" - }, - { - "title": "Emmylou Harris - Heaven Only Knows (Karaoke EZ Sing)", - "id": "tg7-6blx7qA" - }, - { - "title": "Gospel Hymn - Jesus Saves (Karaoke EZ Sing)", - "id": "QJOqrGDJJ2k" - }, - { - "title": "Merle Haggard - Hungry Eyes (Karaoke EZ Sing)", - "id": "NAAzfqvMJXY" - }, - { - "title": "Gospel Hymn - Fairest Lord Jesus (Karaoke EZ Sing)", - "id": "3ELuMys__P0" - }, - { - "title": "Bryan White - One Small Miracle (Karaoke EZ Sing)", - "id": "_3MXvBJpk9I" - }, - { - "title": "George Jones - A Good Year For The Roses (Karaoke EZ Sing)", - "id": "Ycq3yJzMCeg" - }, - { - "title": "George Jones - She Thinks I Still Care (Karaoke EZ Sing)", - "id": "fl94VTbwFlw" - }, - { - "title": "Charly McClain - Dancin' Your Memory Away (Karaoke EZ Sing)", - "id": "B-Wl6OrZU9o" - }, - { - "title": "Stanley Brothers - Pig In The Pen (Karaoke EZ Sing)", - "id": "iGUfpnUJ2ZA" - }, - { - "title": "Daryle Singletary - Too Much Fun (Karaoke EZ Sing)", - "id": "-peS-1-8AnY" - }, - { - "title": "Alabama - Take Me Down (Karaoke EZ Sing)", - "id": "gYFphZtmlCk" - }, - { - "title": "Dixie Chicks - I Can Love You Better (Karaoke EZ Sing)", - "id": "JXKelUA-GeQ" - }, - { - "title": "Gary Allan - It Would Be You (Karaoke EZ Sing)", - "id": "7b-E2hrwP-w" - }, - { - "title": "Alan Jackson - Between The Devil And Me (Karaoke EZ Sing)", - "id": "raTnEF-36pU" - }, - { - "title": "Gospel Hymn - Close To Thee (Karaoke EZ Sing)", - "id": "YdU1-xBJKqI" - }, - { - "title": "Mila Mason - Closer To Heaven (Karaoke EZ Sing)", - "id": "p4u8DNH42to" - }, - { - "title": "George Strait - Fool Hearted Memory (Karaoke EZ Sing)", - "id": "4VXI_ou07wI" - }, - { - "title": "Mel McDaniel - Louisiana Saturday Night (Karaoke EZ Sing)", - "id": "4kazQdTczFg" - }, - { - "title": "Gospel Hymn - Christ Receiveth Sinful Men (Karaoke EZ Sing)", - "id": "ksUMEFcoJNA" - }, - { - "title": "Gospel Hymn - Blessed Be The Name (Karaoke EZ Sing)", - "id": "45L8v_FHCh8" - }, - { - "title": "Gospel Hymn - Are You Washed In The Blood (Karaoke EZ Sing)", - "id": "ryQQZq5JsI4" - }, - { - "title": "Bill Monroe - Dark Hollow (Karaoke EZ Sing)", - "id": "eG3RvieZ6xw" - }, - { - "title": "Gospel Hymn - Glory To His Name (Karaoke EZ Sing)", - "id": "5ztx6NunX1g" - }, - { - "title": "Merle Haggard - Every Fool Has A Rainbow (Karaoke EZ Sing)", - "id": "YBZEJwKL16Q" - }, - { - "title": "Tom T. Hall - I Like Beer (Karaoke EZ Sing)", - "id": "6ddg6Yteg3g" - }, - { - "title": "Gospel Hymn - Haven Of Rest (Karaoke EZ Sing)", - "id": "46Ary3hU8NI" - }, - { - "title": "Merle Haggard - Ramblin' Fever (Karaoke EZ Sing)", - "id": "bhoVt7xnJA0" - }, - { - "title": "Gospel Hymn - Alas! And Did My Savior Bleed? (Karaoke EZ Sing)", - "id": "qDyFUgI3JCc" - }, - { - "title": "Sawyer Brown - Another Side (Karaoke EZ Sing)", - "id": "Fnp8lWepd_A" - }, - { - "title": "Emmylou Harris - Rollin' And Ramblin' (Karaoke EZ Sing)", - "id": "4IjpFHuvvqY" - }, - { - "title": "George Jones - Window Up Above (Karaoke EZ Sing)", - "id": "CtGqg6Q-5Xs" - }, - { - "title": "Lynyrd Skynyrd - Gimme Three Steps (Karaoke EZ Sing)", - "id": "53D7arS_Pdk" - }, - { - "title": "Dwight Yoakam - Guitars And Cadillacs (Karaoke EZ Sing)", - "id": "QIJ4y99S9uc" - }, - { - "title": "Gospel Hymn - He Keeps Me Singing (Karaoke EZ Sing)", - "id": "t7LliJJ2VBI" - }, - { - "title": "Merle Haggard - Someday We'll Look Back (Karaoke EZ Sing)", - "id": "eeiF_HhyAhU" - }, - { - "title": "Hank Williams Sr. & Jr. - There's A Tear In My Beer (Karaoke EZ Sing)", - "id": "lwC_V7xV4lY" - }, - { - "title": "Roy Orbison - Dream Baby (How Long Must I Dream) (Karaoke EZ Sing)", - "id": "qp0hceEWQMI" - }, - { - "title": "Merle Haggard - Bottle Let Me Down (Karaoke EZ Sing)", - "id": "-bJgE4yN-Ns" - }, - { - "title": "Charlie Rich - My Elusive Dreams (Karaoke EZ Sing)", - "id": "lAQp1qldBJA" - }, - { - "title": "Conway Twitty - I Wish I Was Still In Your Dreams (Karaoke EZ Sing)", - "id": "jvpiRg9YTBs" - }, - { - "title": "Anne Murray - I Just Fall In Love Again (Karaoke EZ Sing)", - "id": "hsEUXclv9GI" - }, - { - "title": "Brooks & Dunn - She's Not The Cheatin' Kind (Karaoke EZ Sing)", - "id": "Ck1YTFaztKs" - }, - { - "title": "Gospel Hymn - Come Thou Fount (Karaoke EZ Sing)", - "id": "Gq2yKJ7iWQ4" - }, - { - "title": "Reba McEntire - What If (Karaoke EZ Sing)", - "id": "kLeXKCZLwh4" - }, - { - "title": "Merle Haggard - Branded Man (Karaoke EZ Sing)", - "id": "WCbMfHClteI" - }, - { - "title": "Waylon Jennings - Wurlitzer Prize (I Don't Want To Get Over You) (Karaoke EZ Sing)", - "id": "p0yeFkI3x40" - }, - { - "title": "Conway Twitty - Georgia Keeps Pullin' On My Ring (Karaoke EZ Sing)", - "id": "2yFkMsku-kE" - }, - { - "title": "Merle Haggard - We Never Touch At All (Karaoke EZ Sing)", - "id": "bUBfC2jJyG8" - }, - { - "title": "Sylvia - Nobody (Karaoke EZ Sing)", - "id": "s2fzJPRgeXc" - }, - { - "title": "Merle Haggard - Twinkle Twinkle Lucky Star (Karaoke EZ Sing)", - "id": "QOcYrY9yPHw" - }, - { - "title": "Patsy Cline - Wayward Wind (Karaoke EZ Sing)", - "id": "hb6MBiG_ekk" - }, - { - "title": "Dolly Parton - But You Know I Love You (Karaoke EZ Sing)", - "id": "SbolwTbAhLE" - }, - { - "title": "Red Sovine - Teddy Bear (Karaoke EZ Sing)", - "id": "zylIhYu2QQI" - }, - { - "title": "Merle Haggard - It's Not Love But It's Not Bad (Karaoke EZ Sing)", - "id": "cJFtsx3zRW4" - }, - { - "title": "Webb Pierce - Slowly (Karaoke EZ Sing)", - "id": "JBvBcxxCqVs" - }, - { - "title": "Jim Collins - Next Step (Karaoke EZ Sing)", - "id": "3ZpPhNUI71I" - }, - { - "title": "Gospel Hymn - Brethren, We Have Met To Worship (Karaoke EZ Sing)", - "id": "CfDePUwB7TI" - }, - { - "title": "Connie Smith - Cincinnati, Ohio (Karaoke EZ Sing)", - "id": "inH4XlXDeq8" - }, - { - "title": "Alabama - She's Got That Look In Her Eyes (Karaoke EZ Sing)", - "id": "Y3KnmEzV0HI" - }, - { - "title": "Ray Price - Heartaches By The Number (Karaoke EZ Sing)", - "id": "fEURh_-OJKU" - }, - { - "title": "Connie Smith - Ain't Had No Lovin' (Karaoke EZ Sing)", - "id": "700k2EHfM90" - }, - { - "title": "Melodie Crittenden - Broken Road (Karaoke EZ Sing)", - "id": "rqvjotgF4Yc" - }, - { - "title": "Marty Stuart - Hillbilly Rock (Karaoke EZ Sing)", - "id": "XNsdvNBBki4" - }, - { - "title": "Gospel Hymn - All Hail The Power (Karaoke EZ Sing)", - "id": "vvT63hpyU2w" - }, - { - "title": "George Jones - Still Doin' Time (Karaoke EZ Sing)", - "id": "GA9TkjbWFeE" - }, - { - "title": "John Anderson - Small Town (Karaoke EZ Sing)", - "id": "pODZ8gsq1wk" - }, - { - "title": "George Jones - Right Left Hand (Karaoke EZ Sing)", - "id": "EbqZ6S2A_5M" - }, - { - "title": "Webb Pierce - I Don't Care (Karaoke EZ Sing)", - "id": "5fAgDSYkLHo" - }, - { - "title": "George Jones - White Lightning (Karaoke EZ Sing)", - "id": "hEVDzMpITkU" - }, - { - "title": "Kenny Chesney - A Chance (Karaoke EZ Sing)", - "id": "FqMRnF6gwa0" - }, - { - "title": "George Jones - Grand Tour (Karaoke EZ Sing)", - "id": "JyEoZPlgcxM" - }, - { - "title": "Kenny Chesney - From Hillbilly Heaven To Honky Tonk Hell (Karaoke EZ Sing)", - "id": "tK24_EoDxTg" - }, - { - "title": "Cal Smith - Country Bumpkin (Karaoke EZ Sing)", - "id": "I7xYrEiZgeQ" - }, - { - "title": "Ronnie Milsap - What A Difference You've Made In My Life (Karaoke EZ Sing)", - "id": "2oRgBWf4zMc" - }, - { - "title": "Patsy Cline - Three Cigarettes In An Ashtray (Karaoke EZ Sing)", - "id": "5N4BEJ_Q2sY" - }, - { - "title": "Daughtry - What I Want (Karaoke)", - "id": "d-iU6UAu_M4" - }, - { - "title": "Faith Hill - Cry (Karaoke)", - "id": "0l2pLtgZIqc" - }, - { - "title": "Celine Dion - Flying On My Own (Karaoke)", - "id": "mvgqDjLtiV0" - }, - { - "title": "Lou Reed - Perfect Day (Karaoke)", - "id": "-4J6387GGCg" - }, - { - "title": "Backstreet Boys - Helpless When She Smiles (Karaoke)", - "id": "Tz2CtlI850E" - }, - { - "title": "Skylark - Wildflower (Karaoke)", - "id": "wN8aqHyZ4jE" - }, - { - "title": "Jesus Jones - Right Here, Right Now (Karaoke)", - "id": "BWbs4Yy1IXg" - }, - { - "title": "Gary Allan - Living In A House Full Of Love (Karaoke)", - "id": "tHXwWNBf2WA" - }, - { - "title": "Camila Cabello - Million To One (Karaoke)", - "id": "HSk6KlBRDyc" - }, - { - "title": "Christmas - It Won't Seem Like Christmas Without You (Karaoke EZ Sing)", - "id": "2LHt3G9NfEA" - }, - { - "title": "Jeff Carson - Here's The Deal (Karaoke EZ Sing)", - "id": "kabKOstLG58" - }, - { - "title": "Mindy McCready - A Girl's Gotta Do (What A Girl's Gotta Do) (Karaoke EZ Sing)", - "id": "2qKkHZwSGaU" - }, - { - "title": "David Kersh - Day In, Day Out (Karaoke EZ Sing)", - "id": "PxRD1LZBhK0" - }, - { - "title": "Diamond Rio - Holdin' (Karaoke EZ Sing)", - "id": "vP21w9JJKBI" - }, - { - "title": "Charlie Rich - Most Beautiful Girl (Karaoke EZ Sing)", - "id": "Te2DMItvGfg" - }, - { - "title": "Martina McBride - A Broken Wing (Karaoke EZ Sing)", - "id": "TUB7oylxiLE" - }, - { - "title": "Patsy Cline - Always (Karaoke EZ Sing)", - "id": "lfIEfL1GCwo" - }, - { - "title": "Kingsmen - Behold The Master Cometh (Karaoke EZ Sing)", - "id": "PgpykJ23o28" - }, - { - "title": "John Denver - Thank God I'm A Country Boy (Karaoke EZ Sing)", - "id": "jdbAotxvcNA" - }, - { - "title": "Bryan White - So Much For Pretending (Karaoke EZ Sing)", - "id": "0-v1Z2Xlo7g" - }, - { - "title": "Rhett Akins - Every Cowboy's Dream (Karaoke EZ Sing)", - "id": "3sVLWSpqWqU" - }, - { - "title": "Daryle Singletary - Amen Kind Of Love (Karaoke EZ Sing)", - "id": "ovoZnJbKoYU" - }, - { - "title": "Sherrie' Austin - One Solitary Tear (Karaoke EZ Sing)", - "id": "CTbT4_w7VRg" - }, - { - "title": "Patty Loveless - Trouble With The Truth (Karaoke EZ Sing)", - "id": "0Kcbuy1Mh-o" - }, - { - "title": "Alabama - Old Flame (Karaoke EZ Sing)", - "id": "qU26bL7DNUg" - }, - { - "title": "Patti Page - Boogie Woogie Santa Claus (Karaoke EZ Sing)", - "id": "ClbXKZwDT7A" - }, - { - "title": "Lee Roy Parnell - You Can't Get There From Here (Karaoke EZ Sing)", - "id": "kbZ4mDzwgJE" - }, - { - "title": "Blues Traveler - Run(Karaoke)", - "id": "TILJhFnEhQ4" - }, - { - "title": "Hank Williams - Long Gone Lonesome Blues (Karaoke EZ Sing)", - "id": "vKqcjc4AfK8" - }, - { - "title": "Deana Carter - Strawberry Wine (Karaoke EZ Sing)", - "id": "KssUlL06f_g" - }, - { - "title": "Wynonna - Let's Make A Baby King (Karaoke EZ Sing)", - "id": "kGtvI8GDdM4" - }, - { - "title": "Kinleys - Please (Karaoke EZ Sing)", - "id": "8XEcI7TI8Co" - }, - { - "title": "Ty England - Irresistible You (Karaoke EZ Sing)", - "id": "e-jyb7R_2dg" - }, - { - "title": "Selena - I Could Fall In Love (Karaoke EZ Sing)", - "id": "cIPOwljnggE" - }, - { - "title": "Rick Trevino - Running Out Of Reasons To Run (Karaoke EZ Sing)", - "id": "h7hbFVlXt24" - }, - { - "title": "Eddy Arnold - Make The World Go Away (Karaoke EZ Sing)", - "id": "qU4lt4SurKc" - }, - { - "title": "Tim McGraw (W/ Faith Hill) - It's Your Love (Karaoke EZ Sing)", - "id": "ABGySkAuCuU" - }, - { - "title": "Elton John - Made In England (Karaoke EZ Sing)", - "id": "jXNEzjrKgz0" - }, - { - "title": "Tracy Byrd - Don't Love Make A Diamond Shine (Karaoke EZ Sing)", - "id": "FskMenVGj0U" - }, - { - "title": "Hank Williams - Settin' The Woods On Fire (Karaoke EZ Sing)", - "id": "aUQe5vL4KO8" - }, - { - "title": "Various Artists - You're A Mean One Mr. Grinch (Karaoke EZ Sing)", - "id": "9derL2-GR4A" - }, - { - "title": "Alabama - Dancin', Shaggin' On The Boulevard (Karaoke EZ Sing)", - "id": "OgvEmE4sfRs" - }, - { - "title": "Trace Adkins - Every Light In The House Is On (Karaoke EZ Sing)", - "id": "3ly4mDQMinA" - }, - { - "title": "Neal McCoy - Going, Going, Gone (Karaoke EZ Sing)", - "id": "L6n6tz7pERY" - }, - { - "title": "Mavericks - Neon Blue (Karaoke EZ Sing)", - "id": "55WXsOYBT7E" - }, - { - "title": "Celine Dion - Because You Loved Me (Karaoke EZ Sing)", - "id": "40oVnEwDcC8" - }, - { - "title": "Lisa Loeb - Do You Sleep? (Karaoke EZ Sing)", - "id": "EAFBT0cq1rs" - }, - { - "title": "Hank Williams - Honky Tonk Blues (Karaoke EZ Sing)", - "id": "WTMD5gj6vA4" - }, - { - "title": "Merle Haggard - Big City (Karaoke EZ Sing)", - "id": "oLGAZgvMPJA" - }, - { - "title": "John Michael Montgomery - How Was I To Know (Karaoke EZ Sing)", - "id": "XlyASOQKhGA" - }, - { - "title": "TLC - Red Light Special (Karaoke EZ Sing)", - "id": "-3hJ-ToOisI" - }, - { - "title": "John Michael Montgomery - Friends (Karaoke EZ Sing)", - "id": "iklBtdEaZF0" - }, - { - "title": "Trisha Yearwood - How Do I Live (Karaoke EZ Sing)", - "id": "YUfrMSFeloU" - }, - { - "title": "Alan Jackson - Little Bitty (Karaoke EZ Sing)", - "id": "B-3OuWexJj8" - }, - { - "title": "Boyz II Men - Water Runs Dry (Karaoke EZ Sing)", - "id": "kXV6adOV5uo" - }, - { - "title": "Charlie Daniels Band - Long Haired Country Boy (Karaoke EZ Sing)", - "id": "EUxXeqXPolU" - }, - { - "title": "Collin Raye - On The Verge (Karaoke EZ Sing)", - "id": "uT159L43CNs" - }, - { - "title": "Brooks & Dunn - A Man This Lonely (Karaoke EZ Sing)", - "id": "jS8rLDvItBk" - }, - { - "title": "Goo Goo Dolls - Name (Karaoke EZ Sing)", - "id": "miVo38pCfNc" - }, - { - "title": "Mavericks - Oh What A Thrill (Karaoke EZ Sing)", - "id": "EhuZm_ErHnE" - }, - { - "title": "Tracy Lawrence - Coast Is Clear (Karaoke EZ Sing)", - "id": "4jSUTUHvqw4" - }, - { - "title": "Sherrie' Austin - Lucky In Love (Karaoke EZ Sing)", - "id": "oLZPDdk4bQE" - }, - { - "title": "Michael Jackson - You Are Not Alone (Karaoke EZ Sing)", - "id": "1iIaitU7GDc" - }, - { - "title": "Lisa Brokop - Shake Me, I Rattle (Karaoke EZ Sing)", - "id": "QycZl1zZ7aE" - }, - { - "title": "Celine Dion - Think Twice (Karaoke EZ Sing)", - "id": "wuFfpODtLrg" - }, - { - "title": "Joe - All Or Nothing (Karaoke EZ Sing)", - "id": "bv6s2JfAG40" - }, - { - "title": "Elton John - Believe (Karaoke EZ Sing)", - "id": "KXVD-nZ8jaE" - }, - { - "title": "Collin Raye - Love Remains (Karaoke EZ Sing)", - "id": "dMiiAlL9Q9I" - }, - { - "title": "Alan Jackson - Everything I Love (Karaoke EZ Sing)", - "id": "FpDSHxtYXLA" - }, - { - "title": "Loretta Lynn - Don't Come Home A'Drinkin' (With Lovin' On Your Mind) (Karaoke EZ Sing)", - "id": "fRVKk1ElkWQ" - }, - { - "title": "LeAnn Rimes - You Light Up My Life (Karaoke EZ Sing)", - "id": "gjVagHepVE8" - }, - { - "title": "Hank Williams - Move It On Over (Karaoke EZ Sing)", - "id": "8lhpbVjeCkY" - }, - { - "title": "Gloria Estefan - Everlasting Love (Karaoke EZ Sing)", - "id": "drAQ4I5Eopk" - }, - { - "title": "Hank Williams - Moanin' The Blues (Karaoke EZ Sing)", - "id": "bfJsS83Lasw" - }, - { - "title": "Gary Allan - Her Man (Karaoke EZ Sing)", - "id": "aGwxvmuG35E" - }, - { - "title": "Bryan White - Love Is The Right Place (Karaoke EZ Sing)", - "id": "nSFbtvV6aLA" - }, - { - "title": "Karyn White - Can I Stay With You (Karaoke EZ Sing)", - "id": "HXzq4w2a3ZY" - }, - { - "title": "Vanessa Williams - Colors Of The Wind (Karaoke EZ Sing)", - "id": "y1MpWGK1Dgo" - }, - { - "title": "Hootie & The Blowfish - I Only Wanna Be With You (Karaoke EZ Sing)", - "id": "DsvLy7ctoHA" - }, - { - "title": "Seal - Kiss From A Rose (Karaoke EZ Sing)", - "id": "ko8WTFDvaXw" - }, - { - "title": "Trisha Yearwood - Santa Claus Is Back In Town (Karaoke EZ Sing)", - "id": "CLgT2JM5IEM" - }, - { - "title": "George Strait - Today My World Slipped Away (Karaoke EZ Sing)", - "id": "4yKrFBFpmC8" - }, - { - "title": "Pam Tillis - Land Of The Living (Karaoke EZ Sing)", - "id": "v3RDCqV9LcI" - }, - { - "title": "Elvis Presley - If Every Day Was Like Christmas (Karaoke EZ Sing)", - "id": "s7paBbR4Z54" - }, - { - "title": "Diamond Rio - How Your Love Makes Me Feel (Karaoke EZ Sing)", - "id": "mJwl3DGTwns" - }, - { - "title": "Meat Loaf - I'd Lie For You (Karaoke EZ Sing)", - "id": "DCGrr96RIwI" - }, - { - "title": "Alan Jackson - Santa's Gonna Come In A Pick (Karaoke)", - "id": "MpOILLiszYI" - }, - { - "title": "Beatles - Free As A Bird (Karaoke EZ Sing)", - "id": "CESoaqJbrmw" - }, - { - "title": "C. W. McCall - Convoy (Karaoke EZ Sing)", - "id": "eY8pjeM8YDM" - }, - { - "title": "Mark Wills - High Low And In Between (Karaoke EZ Sing)", - "id": "-W0I9q2bBlc" - }, - { - "title": "Merle Haggard - Silver Wings (Karaoke EZ Sing)", - "id": "TfjcBEIotck" - }, - { - "title": "Joe - One For Me (Karaoke EZ Sing)", - "id": "ibU4ND0woBI" - }, - { - "title": "Patsy Cline - Crazy (Karaoke EZ Sing)", - "id": "pU6qCI0Q0xk" - }, - { - "title": "Barbara Fairchild - Teddy Bear Song (Karaoke EZ Sing)", - "id": "hmchk-Ti51Q" - }, - { - "title": "Brooks & Dunn - Why Would I Say Goodbye (Karaoke EZ Sing)", - "id": "kxMSfLx3O3c" - }, - { - "title": "Lorrie Morgan - Good As I Was To You (Karaoke EZ Sing)", - "id": "rKgXw82UnMw" - }, - { - "title": "Lorrie Morgan & Jon Randall - By My Side (Karaoke EZ Sing)", - "id": "6Mknf4Yb1yA" - }, - { - "title": "Christmas - Christ Was Born On Christmas Day (Karaoke EZ Sing)", - "id": "s9BS8Xz0cI4" - }, - { - "title": "Patsy Cline - He Called Me Baby (Karaoke EZ Sing)", - "id": "kX_aXJjCm3k" - }, - { - "title": "Brandy - Best Friend (Karaoke EZ Sing)", - "id": "0MgbiatKERE" - }, - { - "title": "Hootie & The Blowfish - Old Man & Me (Karaoke EZ Sing)", - "id": "-1alBQsY4ls" - }, - { - "title": "Hootie & The Blowfish - Hold My Hand (Karaoke EZ Sing)", - "id": "tEbZcaH1Gs4" - }, - { - "title": "Buck Owens - Act Naturally (Karaoke EZ Sing)", - "id": "Qyc-sBp_rt0" - }, - { - "title": "LeAnn Rimes - Blue (Karaoke EZ Sing)", - "id": "t-6Zahdlu_c" - }, - { - "title": "Kathy Mattea - Maybe She's Human (Karaoke EZ Sing)", - "id": "U9QwjCHEen0" - }, - { - "title": "TLC - Diggin' On You (Karaoke EZ Sing)", - "id": "BnOxlsYHQkE" - }, - { - "title": "Travis Tritt - Christmas In My Hometown (Karaoke EZ Sing)", - "id": "WToao-Imp8Q" - }, - { - "title": "Jeff Carson - Santa Got Lost In Texas (Karaoke EZ Sing)", - "id": "XW9Vjxgff14" - }, - { - "title": "Kathy Mattea - Star (Karaoke EZ Sing)", - "id": "LPdKVGpcyIk" - }, - { - "title": "Neal McCoy - Then You Can Tell Me Goodbye (Karaoke EZ Sing)", - "id": "g0IvpLq1ibs" - }, - { - "title": "Del Reeves - Girl On The Billboard (Karaoke EZ Sing)", - "id": "UO2JjHjr1iI" - }, - { - "title": "Brooks & Dunn - My Maria (Karaoke EZ Sing)", - "id": "roRDb0AyWA4" - }, - { - "title": "Highwaymen - Cotton Fields (Karaoke EZ Sing)", - "id": "qkl4Rw57xEI" - }, - { - "title": "Glen Campbell - Wichita Lineman (Karaoke EZ Sing)", - "id": "Qj6-JZ4QsIo" - }, - { - "title": "Dwight Yoakam - Nothing (Karaoke EZ Sing)", - "id": "7sGMyzwJ_Ko" - }, - { - "title": "Eddie Rabbitt - Rocky Mountain Music (Karaoke EZ Sing)", - "id": "_ERxmJUweKA" - }, - { - "title": "Billie Jo Spears - Misty Blue (Karaoke EZ Sing)", - "id": "qtkqtS2dpfc" - }, - { - "title": "George Strait - Check Yes Or No (Karaoke EZ Sing)", - "id": "CYSVfpKTjqM" - }, - { - "title": "Tracy Lawrence - Time Marches On (Karaoke EZ Sing)", - "id": "lvV8gFa0lWg" - }, - { - "title": "Joe Diffie - C. O. U. N. T. R. Y. (Karaoke EZ Sing)", - "id": "ZI0Q6YHqqls" - }, - { - "title": "Judy Garland - Somewhere Over The Rainbow (Karaoke EZ Sing)", - "id": "ES6eqagRTfY" - }, - { - "title": "Jimmie Rodgers - Kisses Sweeter Than Wine (Karaoke EZ Sing)", - "id": "F-wSQN6FSTE" - }, - { - "title": "Billie Jo Spears - Blanket On The Ground (Karaoke EZ Sing)", - "id": "PyykfCcLtuY" - }, - { - "title": "Wade Hayes - What I Meant To Say (Karaoke EZ Sing)", - "id": "5Idc0JlKBqc" - }, - { - "title": "Waylon Jennings - Lovin' Her Was Easier (Karaoke EZ Sing)", - "id": "iN59h8jpCeA" - }, - { - "title": "Kenny Chesney - Back In My Arms Again (Karaoke EZ Sing)", - "id": "fqAZqeCAjvs" - }, - { - "title": "Neal McCoy - You Gotta Love That (Karaoke EZ Sing)", - "id": "psd49ZotBAA" - }, - { - "title": "Martina McBride - Wild Angels (Karaoke EZ Sing)", - "id": "cLzHCHxM0uQ" - }, - { - "title": "Weavers - Goodnight Irene (Karaoke EZ Sing)", - "id": "5bXllcGnxR8" - }, - { - "title": "Toby Keith - Does That Blue Moon Ever Shine On You (Karaoke EZ Sing)", - "id": "x6p72idfGWg" - }, - { - "title": "Alabama - In Pictures (Karaoke EZ Sing)", - "id": "tFpAOm5Jy7M" - }, - { - "title": "Mandy Barnett - Now That's All Right With Me (Karaoke EZ Sing)", - "id": "osrxcafuX5o" - }, - { - "title": "Hal Ketchum - Every Little Word (Karaoke EZ Sing)", - "id": "W4ruNGbY_ME" - }, - { - "title": "Faron Young - It's Four In The Morning (Karaoke EZ Sing)", - "id": "meFrStZTzQ0" - }, - { - "title": "Carly Simon - Anticipation (Karaoke EZ Sing)", - "id": "hP4fA-bvXkc" - }, - { - "title": "George Strait - You Can't Make A Heart Love Somebody (Karaoke EZ Sing)", - "id": "sSSqfUtC8vE" - }, - { - "title": "Freddy Fender - Wasted Days And Wasted Nights (Karaoke EZ Sing)", - "id": "Gc6iCtGoxH8" - }, - { - "title": "Merle Haggard - Okie From Muskogee (Karaoke EZ Sing)", - "id": "sulusy7PBUw" - }, - { - "title": "Vince Gill - Go Rest High On That Mountain (Karaoke EZ Sing)", - "id": "uqUI42CqVrg" - }, - { - "title": "Lettermen - Jolly Old St. Nicholas/Up On The Housetop (Karaoke EZ Sing)", - "id": "13aJiIQWXAg" - }, - { - "title": "Kenny Rogers - Gambler (Karaoke EZ Sing)", - "id": "lkbAOKOkD0E" - }, - { - "title": "Lettermen - Go Tell It On The Mountain/We Wish You A Merry Christmas (Karaoke EZ Sing)", - "id": "9zudIzR3M6E" - }, - { - "title": "Lynn Anderson - Rose Garden (Karaoke EZ Sing)", - "id": "qCBobStVyWk" - }, - { - "title": "Martina McBride - Safe In The Arms Of Love (Karaoke EZ Sing)", - "id": "aEHfO9yEb-I" - }, - { - "title": "Billy Swan - I Can Help (Karaoke EZ Sing)", - "id": "NwpvUB-JsPo" - }, - { - "title": "Lonestar - Tequila Talkin' (Karaoke EZ Sing)", - "id": "xLaFGvwNeg8" - }, - { - "title": "Garth Brooks - Change (Karaoke EZ Sing)", - "id": "-LKggs6G-K4" - }, - { - "title": "Brooks & Dunn - Whiskey Under The Bridge (Karaoke EZ Sing)", - "id": "4mX5aQzhVuo" - }, - { - "title": "Faith Hill - Let's Go To Vegas (Karaoke EZ Sing)", - "id": "cidxO8Nu7H4" - }, - { - "title": "Standard - The Yellow Rose Of Texas (Karaoke EZ Sing)", - "id": "zBm226zpNdk" - }, - { - "title": "John Denver - Rocky Mountain High (Karaoke EZ Sing)", - "id": "q4yFDWovF7Y" - }, - { - "title": "Marty Robbins - Streets Of Laredo (Cowboy's Lament) (Karaoke EZ Sing)", - "id": "GzhdSb_Ntwc" - }, - { - "title": "Glen Campbell - Dream Baby (Karaoke EZ Sing)", - "id": "2xBBu8iKibs" - }, - { - "title": "Trisha Yearwood - I Wanna Go Too Far (Karaoke EZ Sing)", - "id": "O89RXqsaSkc" - }, - { - "title": "Confederate Railroad - When And Where (Karaoke EZ Sing)", - "id": "ISUDT41Svok" - }, - { - "title": "Shenandoah - Heaven Bound (Karaoke EZ Sing)", - "id": "h-OH__wirxQ" - }, - { - "title": "Boy Howdy - She Can't Love You (Karaoke EZ Sing)", - "id": "OUflno0KeUc" - }, - { - "title": "Diana Ross - Ain't No Mountain High Enough (Karaoke EZ Sing)", - "id": "odnnWO9kIls" - }, - { - "title": "Grass Roots - Midnight Confessions (Karaoke EZ Sing)", - "id": "l7yCwym5wGk" - }, - { - "title": "Billy Joe Royal - Down In The Boondocks (Karaoke EZ Sing)", - "id": "lK5EpBuKmnI" - }, - { - "title": "Dee Dee Sharp - Mashed Potato Time (Karaoke EZ Sing)", - "id": "4d_bR3zI52I" - }, - { - "title": "Standard - Anchors Aweigh (Karaoke EZ Sing)", - "id": "gTwmWPT6kIQ" - }, - { - "title": "Ray Stevens - Along Came Jones (Karaoke EZ Sing)", - "id": "YFEM2u2NaDI" - }, - { - "title": "Monkees - Daydream Believer (Karaoke EZ Sing)", - "id": "pao_xERjWmg" - }, - { - "title": "Beatles - With A Little Help From My Friends (Karaoke EZ Sing)", - "id": "qbPyZJhbaSA" - }, - { - "title": "Young Rascals - How Can I Be Sure (Karaoke EZ Sing)", - "id": "85fC5rUPsHw" - }, - { - "title": "Gospel Hymn (Southern) - Living Over In Glory (Karaoke EZ Sing)", - "id": "9oXjzx5g4rk" - }, - { - "title": "Peabo Bryson & Regina Belle - A Whole New World (Aladdin's Theme) (Karaoke EZ Sing)", - "id": "No4YgpN1tOs" - }, - { - "title": "Standard - When The Saints Go Marching In (Karaoke EZ Sing)", - "id": "qlq6Q1T92Ww" - }, - { - "title": "Beatles - We Can Work It Out (Karaoke EZ Sing)", - "id": "bBV9IrC7eK4" - }, - { - "title": "Nat \"King\" Cole - Very Thought Of You (Karaoke EZ Sing)", - "id": "gZ1M2LOoq-Q" - }, - { - "title": "Doobie Brothers - Takin' It To The Streets (Karaoke EZ Sing)", - "id": "dDPcK6gRI9k" - }, - { - "title": "Tommy Roe - Sweet Pea (Karaoke EZ Sing)", - "id": "m0Vd0zL3EPE" - }, - { - "title": "Nat \"King\" Cole - Mona Lisa (Karaoke EZ Sing)", - "id": "42EAFWjOt0A" - }, - { - "title": "Beatles - When I'm Sixty(Karaoke)", - "id": "OKXJQ6HUmOc" - }, - { - "title": "Frank Sinatra - Moonlight Serenade (Karaoke EZ Sing)", - "id": "WjhBZ90nHFQ" - }, - { - "title": "Monkees - Last Train To Clarksville (Karaoke EZ Sing)", - "id": "xPkfPlnT1uw" - }, - { - "title": "Gladys Knight & The Pips - Midnight Train To Georgia (Karaoke EZ Sing)", - "id": "ghISywrXtSY" - }, - { - "title": "Young Rascals - Groovin' (Karaoke EZ Sing)", - "id": "c7Fz4ja0hog" - }, - { - "title": "Little Anthony & The Imperials - Going Out Of My Head (Karaoke EZ Sing)", - "id": "s3KYt3bmCmo" - }, - { - "title": "Procol Harum - A Whiter Shade Of Pale (Karaoke EZ Sing)", - "id": "wk7p42nHVf8" - }, - { - "title": "Martha & The Vandellas - Dancing In The Street (Karaoke EZ Sing)", - "id": "58cpDt4hSqE" - }, - { - "title": "Fleetwoods - Mr. Blue (Karaoke EZ Sing)", - "id": "GLu_A2SnU8Y" - }, - { - "title": "Ethel Merman - There's No Business Like Show Business (Karaoke EZ Sing)", - "id": "zKCA07tgRtU" - }, - { - "title": "Herman's Hermits - I'm Henry The VIII I Am (Karaoke EZ Sing)", - "id": "tSQgilBExuQ" - }, - { - "title": "Beatles - Sgt. Pepper's Lonely Hearts Club Band (Karaoke EZ Sing)", - "id": "R75YUho8d-U" - }, - { - "title": "Carly Simon - Nobody Does It Better (Karaoke EZ Sing)", - "id": "hkHt03CKF9M" - }, - { - "title": "Lloyd Price - Stagger Lee (Karaoke EZ Sing)", - "id": "7Tj28H2z_Gw" - }, - { - "title": "Beatles - Long And Winding Road (Karaoke EZ Sing)", - "id": "Fi679DHzveo" - }, - { - "title": "Searchers - Love Potion Number Nine (Karaoke EZ Sing)", - "id": "obF6c2-MS_k" - }, - { - "title": "Beatles - Get Back (Karaoke EZ Sing)", - "id": "oJbLwOoxaRI" - }, - { - "title": "Elvis Presley - Good Luck Charm (Karaoke EZ Sing)", - "id": "LKEyDtacV7I" - }, - { - "title": "Platters - Smoke Gets In Your Eyes (Karaoke EZ Sing)", - "id": "8ErPkP-O5-I" - }, - { - "title": "Bill Withers - Ain't No Sunshine (Karaoke EZ Sing)", - "id": "R004B4rI9xA" - }, - { - "title": "Beatles - Lucy In The Sky With Diamonds (Karaoke EZ Sing)", - "id": "ZGgH7Qf7jrM" - }, - { - "title": "Beatles - Come Together (Karaoke EZ Sing)", - "id": "jheC8FcXvnw" - }, - { - "title": "Beatles - Eleanor Rigby (Karaoke EZ Sing)", - "id": "a0X8myDNAOA" - }, - { - "title": "Patty Loveless - You Don't Even Know Who I Am (Karaoke EZ Sing)", - "id": "0VQ7nXCWRa8" - }, - { - "title": "Bruce Channel - Hey! Baby (Karaoke EZ Sing)", - "id": "mX_f_W6aUvk" - }, - { - "title": "Supremes - Come See About Me (Karaoke EZ Sing)", - "id": "jqu29diRR_w" - }, - { - "title": "Ray Charles - I Can't Stop Loving You (Karaoke EZ Sing)", - "id": "gSWvSwmbv5s" - }, - { - "title": "Brooks & Dunn - You're Gonna Miss Me When I'm Gone (Karaoke EZ Sing)", - "id": "49pYgtabt8k" - }, - { - "title": "Three Dog Night - Easy To Be Hard (Karaoke EZ Sing)", - "id": "fY__SYP4MTg" - }, - { - "title": "Carly Simon - You're So Vain (Karaoke EZ Sing)", - "id": "eKLmTA0eMSI" - }, - { - "title": "Beatles - A Hard Day's Night (Karaoke EZ Sing)", - "id": "YB5ZcVC5_Zg" - }, - { - "title": "Dionne Warwick - Do You Know The Way To San Jose (Karaoke EZ Sing)", - "id": "ehvNp_hMBaA" - }, - { - "title": "Jimmy Elledge - Funny How Time Slips Away (Karaoke EZ Sing)", - "id": "AFqRKOF7xFs" - }, - { - "title": "Three Dog Night - Just An Old Fashioned Love Song (Karaoke EZ Sing)", - "id": "UjsQNoSYiuc" - }, - { - "title": "Bobby Hebb - Sunny (Karaoke EZ Sing)", - "id": "ExmlGERHnP0" - }, - { - "title": "Tommy Roe - Jam Up, Jelly Tight (Karaoke EZ Sing)", - "id": "24-zaGiSVM0" - }, - { - "title": "Sonny & Cher - All I Ever Need Is You (Karaoke EZ Sing)", - "id": "7IOn3zaf1YI" - }, - { - "title": "Supremes - Baby Love (Karaoke EZ Sing)", - "id": "1a4f4IaDbhg" - }, - { - "title": "Ray Stevens - Ahab The Arab (Karaoke EZ Sing)", - "id": "lqbqhA7oToM" - }, - { - "title": "Marvin Gaye - Let's Get It On (Karaoke EZ Sing)", - "id": "UNymjYSByhg" - }, - { - "title": "Beatles - Back In The USSR (Karaoke EZ Sing)", - "id": "dQz9KGEZch0" - }, - { - "title": "Nat \"King\" Cole - Ramblin' Rose (Karaoke EZ Sing)", - "id": "rJWoYzovIqw" - }, - { - "title": "Tanya Tucker - Find Out What's Happenin' (Karaoke EZ Sing)", - "id": "JWCNpvCbwyE" - }, - { - "title": "Ray Charles - Busted (Karaoke EZ Sing)", - "id": "XesthwZqBqY" - }, - { - "title": "Kenny Chesney - Fall In Love (Karaoke EZ Sing)", - "id": "YR0VqT2rKVQ" - }, - { - "title": "Tony Joe White - Polk Salad Annie (Karaoke EZ Sing)", - "id": "RWQKRfF85CM" - }, - { - "title": "Beatles - Penny Lane (Karaoke EZ Sing)", - "id": "zSK9ft-jXWo" - }, - { - "title": "Kathy Mattea - Clown In Your Rodeo (Karaoke EZ Sing)", - "id": "0_mIiT7YoZE" - }, - { - "title": "Beatles - Hey Jude (Karaoke EZ Sing)", - "id": "oMj15lIiFYc" - }, - { - "title": "Tanya Tucker - Between The Two Of Them (Karaoke EZ Sing)", - "id": "PzmPczoXFLY" - }, - { - "title": "Beatles - All You Need Is Love (Karaoke EZ Sing)", - "id": "pfpcnG0bwOk" - }, - { - "title": "Collin Raye - If I Were You (Karaoke EZ Sing)", - "id": "cO8AWulw8PE" - }, - { - "title": "Tommy Roe - Raining In My Heart (Karaoke EZ Sing)", - "id": "N4ezN0TpIJA" - }, - { - "title": "Beatles - Day Tripper (Karaoke EZ Sing)", - "id": "zL3gK8-v03M" - }, - { - "title": "Wade Hayes - I'm Still Dancing With You (Karaoke EZ Sing)", - "id": "1CGy6TCD3uo" - }, - { - "title": "Tracy Lawrence - Texas Tornado (Karaoke EZ Sing)", - "id": "6JFWUJno5sM" - }, - { - "title": "Alison Krauss & Union Station - When You Say Nothing At All (Karaoke EZ Sing)", - "id": "Fzt730mp9M0" - }, - { - "title": "Toby Keith - You Ain't Much Fun (Karaoke EZ Sing)", - "id": "-rA_3xB7rYw" - }, - { - "title": "Tim McGraw - Refried Dreams (Karaoke EZ Sing)", - "id": "C-7Cc5Yt95s" - }, - { - "title": "Sammy Kershaw - If You're Gonna Walk, I'm Gonna Crawl (Karaoke EZ Sing)", - "id": "29hgw88hlXQ" - }, - { - "title": "Martina McBride - Where I Used To Have A Heart (Karaoke EZ Sing)", - "id": "OsKxggBGfZc" - }, - { - "title": "Wade Hayes - Old Enough To Know Better (Karaoke EZ Sing)", - "id": "sXM_eX9JCaw" - }, - { - "title": "George Strait - Adalida (Karaoke EZ Sing)", - "id": "QJKErMfNIEs" - }, - { - "title": "Trisha Yearwood - You Can Sleep While I Drive (Karaoke EZ Sing)", - "id": "0ILpmu9c4hI" - }, - { - "title": "John Berry - I Think About It All The Time (Karaoke EZ Sing)", - "id": "dtQpbDo0FVE" - }, - { - "title": "Diana Ross - Touch Me In The Morning (Karaoke EZ Sing)", - "id": "ntlg24CCu8g" - }, - { - "title": "Supremes - You Can't Hurry Love (Karaoke EZ Sing)", - "id": "MBDWgSz6y3A" - }, - { - "title": "Wizard Of Oz - We're Off To See The Wizard (Karaoke EZ Sing)", - "id": "D836ZewUS0c" - }, - { - "title": "Marvin Gaye - What's Going On (Karaoke EZ Sing)", - "id": "2vfm3XK--P8" - }, - { - "title": "Supremes - You Keep Me Hanging On (Karaoke EZ Sing)", - "id": "nY4gEPifMj4" - }, - { - "title": "Toby Keith - Big Ol' Truck (Karaoke EZ Sing)", - "id": "_xq0Wrus75Q" - }, - { - "title": "Grass Roots - Sooner Or Later (Karaoke EZ Sing)", - "id": "u2ToBeJMB0E" - }, - { - "title": "Aretha Franklin - Respect (Karaoke EZ Sing)", - "id": "Zdd1S6HiCK8" - }, - { - "title": "Bonnie Raitt - Thing Called Love (Karaoke EZ Sing)", - "id": "bS5c67rS2hI" - }, - { - "title": "Rascals - People Got To Be Free (Karaoke EZ Sing)", - "id": "6MQX-Zcl0QQ" - }, - { - "title": "Percy Sledge - Take Time To Know Her (Karaoke EZ Sing)", - "id": "hTgtl077CVk" - }, - { - "title": "Joey Dee & The Starliters - Peppermint Twist (Karaoke EZ Sing)", - "id": "ieQNoZFUpwA" - }, - { - "title": "Lovin' Spoonful - Summer In The City (Karaoke EZ Sing)", - "id": "JHmsZ8BG5zc" - }, - { - "title": "EZ Sing Children's's Toddler Tunes - My Bonnie Lies Over The Ocean (Karaoke EZ Sing)", - "id": "gzch0DoCFGQ" - }, - { - "title": "Traditional / Standards - Danny Boy (Karaoke EZ Sing)", - "id": "nVoud8n_UiU" - }, - { - "title": "Supremes - Where Did Our Love Go (Karaoke EZ Sing)", - "id": "0QpyuAqhA9w" - }, - { - "title": "Toby Keith - Who's That Man (Karaoke EZ Sing)", - "id": "K7386fuXDpc" - }, - { - "title": "Tim McGraw - Down On The Farm (Karaoke EZ Sing)", - "id": "vlMSJ3uw7go" - }, - { - "title": "Confederate Railroad - Elvis And Andy (Karaoke EZ Sing)", - "id": "N6JijDsgdOA" - }, - { - "title": "David Ball - Look What Followed Me Home (Karaoke EZ Sing)", - "id": "exz0hAW5gbE" - }, - { - "title": "Patty Loveless - I Try To Think About Elvis (Karaoke EZ Sing)", - "id": "bEUgT-B1VYw" - }, - { - "title": "SWV - I'm So Into You (Karaoke EZ Sing)", - "id": "EDiPWjseQVE" - }, - { - "title": "B. J. Thomas - Another Somebody Done Somebody Wrong Song (Karaoke EZ Sing)", - "id": "6XAjxGtKNHE" - }, - { - "title": "Alan Jackson - Gone Country (Karaoke EZ Sing)", - "id": "eKes-1dK2dg" - }, - { - "title": "Sammy Kershaw - Southbound (Karaoke EZ Sing)", - "id": "7L9z9Ry06zY" - }, - { - "title": "Martina McBride - Life #9 (Karaoke EZ Sing)", - "id": "DcyHznBigfQ" - }, - { - "title": "Aaron Tippin - Whole Lotta Love On The Line (Karaoke EZ Sing)", - "id": "FxJ4yxCxqTw" - }, - { - "title": "Hal Ketchum - Someplace Far Away (Careful What You're Dreaming) (Karaoke EZ Sing)", - "id": "wpJNjlFScBA" - }, - { - "title": "Lari White - Now I Know (Karaoke EZ Sing)", - "id": "5lmTnHGFWXk" - }, - { - "title": "Boyz II Men - It's So Hard To Say Goodbye To Yesterday (Karaoke EZ Sing)", - "id": "J_88C1-EWqA" - }, - { - "title": "Joe Diffie - Pickup Man (Karaoke EZ Sing)", - "id": "xjlbgFaorss" - }, - { - "title": "Irish Traditional - Cockles And Mussels (Karaoke EZ Sing)", - "id": "tI_jNFpQ6fw" - }, - { - "title": "Neal McCoy - For A Change (Karaoke EZ Sing)", - "id": "Kxln_zVbe8k" - }, - { - "title": "Steve Wariner - Drive (Karaoke EZ Sing)", - "id": "udDlZjNKzik" - }, - { - "title": "Neal McCoy - City Put The Country Back In Me (Karaoke EZ Sing)", - "id": "d97QwJZbpcI" - }, - { - "title": "Gospel Hymn (Southern) - I'll Fly Away (Karaoke EZ Sing)", - "id": "oJa5pMlDuvY" - }, - { - "title": "John Anderson - Bend Until It Breaks (Karaoke EZ Sing)", - "id": "8V6FupNczlM" - }, - { - "title": "Faith Hill - Take Me As I Am (Karaoke EZ Sing)", - "id": "Syjvs8lkuaY" - }, - { - "title": "Tim McGraw - Indian Outlaw (Karaoke EZ Sing)", - "id": "IHa5A9O7loQ" - }, - { - "title": "Irish Traditional - My Wild Irish Rose (Karaoke EZ Sing)", - "id": "d6DgipXknoU" - }, - { - "title": "Western Flyer - Western Flyer (Karaoke EZ Sing)", - "id": "Q8tQUIBTMo0" - }, - { - "title": "Mark Collie - Hard Lovin' Woman (Karaoke EZ Sing)", - "id": "aCMaMA54fVw" - }, - { - "title": "Toby Keith - Wish I Didn't Know Now (Karaoke EZ Sing)", - "id": "e8veVhtizDE" - }, - { - "title": "Martina McBride - Heart Trouble (Karaoke EZ Sing)", - "id": "m8LuYiWsv9o" - }, - { - "title": "Martina McBride - Independence Day (Karaoke EZ Sing)", - "id": "PUyMZqadgPE" - }, - { - "title": "Collin Raye - That's My Story (Karaoke EZ Sing)", - "id": "hfOMDEgrbHg" - }, - { - "title": "Jon Secada - Just Another Day (Karaoke EZ Sing)", - "id": "p9yRytZBd3Q" - }, - { - "title": "Tracy Byrd - Why Don't That Telephone Ring (Karaoke EZ Sing)", - "id": "HevFwOZgypc" - }, - { - "title": "John Anderson - I Wish I Could Have Been There (Karaoke EZ Sing)", - "id": "wAbbr7huvxk" - }, - { - "title": "Sammy Kershaw - I Can't Reach Her Anymore (Karaoke EZ Sing)", - "id": "TjaufIqgxH0" - }, - { - "title": "Tracy Byrd - Watermelon Crawl (Karaoke EZ Sing)", - "id": "UYiR9Nv7h7I" - }, - { - "title": "EZ Sing Children's Bible Songs - Jesus Loves Me (Karaoke EZ Sing)", - "id": "MbyEGd1HIZc" - }, - { - "title": "Skid Row - 18 And Life (Karaoke EZ Sing)", - "id": "goQcrJu-N64" - }, - { - "title": "EZ Sing Children's Fun Songs - Animal Fair (Karaoke EZ Sing)", - "id": "O90rzaW3LpU" - }, - { - "title": "Diana Ross & The Supremes - Love Child (Karaoke EZ Sing)", - "id": "MHIJSokJ780" - }, - { - "title": "Dallas Holmes - Rise Again (Karaoke EZ Sing)", - "id": "RxsUtxbnYso" - }, - { - "title": "Toby Keith - Upstairs Downtown (Karaoke EZ Sing)", - "id": "hKw2YVjFD2U" - }, - { - "title": "Tanya Tucker - We Don't Have To Do This (Karaoke EZ Sing)", - "id": "7x58SrnOKFY" - }, - { - "title": "Dwight Yoakam - Pocket Of A Clown (Karaoke EZ Sing)", - "id": "D9a3P5JT91I" - }, - { - "title": "Irish Traditional - I'll Take You Home Again Kathleen (Karaoke EZ Sing)", - "id": "dQ_1vHSY3VM" - }, - { - "title": "Mark Chesnutt - Woman, Sensuous Woman (Karaoke EZ Sing)", - "id": "UqcaxBcCRnY" - }, - { - "title": "EZ Sing Children's Favorites - Oh Where, Oh Where Has My Little Dog Gone (Karaoke EZ Sing)", - "id": "RNZ5b0YjYRw" - }, - { - "title": "Tokens - Lion Sleeps Tonight (Karaoke EZ Sing)", - "id": "Pusyq-tQcY8" - }, - { - "title": "Alabama - Angels Among Us (Karaoke EZ Sing)", - "id": "kDNoCZk3geo" - }, - { - "title": "Big Mountain - Baby, I Love Your Way (Karaoke EZ Sing)", - "id": "G_-_2uZZLH8" - }, - { - "title": "Beck - Loser (Karaoke EZ Sing)", - "id": "h0AoufP-Frw" - }, - { - "title": "George Strait - Man In Love With You (Karaoke EZ Sing)", - "id": "_-5XUCwoh3Y" - }, - { - "title": "EZ Sing Children's Favorites - Little White Duck (Karaoke EZ Sing)", - "id": "T61DGb9tva0" - }, - { - "title": "Joe Diffie - Third Rock From The Sun (Karaoke EZ Sing)", - "id": "z8Hlm6UZlgo" - }, - { - "title": "Joe Diffie - John Deere Green (Karaoke EZ Sing)", - "id": "oo8CgA_Oea4" - }, - { - "title": "EZ Sing Children's Favorites - Turkey In The Straw (Karaoke EZ Sing)", - "id": "GrWdLfzACkk" - }, - { - "title": "David Ball - When The Thought Of You Catches Up With Me (Karaoke EZ Sing)", - "id": "8QemjUzLZYo" - }, - { - "title": "Brooks & Dunn - Little Miss Honky Tonk (Karaoke EZ Sing)", - "id": "McHpG1OAKEo" - }, - { - "title": "EZ Sing Children's Favorites - Here We Go 'Round The Mulberry Bush (Karaoke EZ Sing)", - "id": "UhJZQinKCww" - }, - { - "title": "Gospel Hymn (Southern) - More About Jesus (Karaoke EZ Sing)", - "id": "iQb457BQWkk" - }, - { - "title": "Elton John - Can You Feel The Love Tonight (Karaoke EZ Sing)", - "id": "uJDXl1ol4ZU" - }, - { - "title": "Gospel Hymn (Southern) - Pressed Against The Thorn (Karaoke EZ Sing)", - "id": "gzxz7IeZg7o" - }, - { - "title": "Gospel Hymn (Southern) - At The Cross (Karaoke EZ Sing)", - "id": "h5_3MlxNig4" - }, - { - "title": "Billy Ray Cyrus - Talk Some (Karaoke EZ Sing)", - "id": "UMN3iq-PFUk" - }, - { - "title": "Dwight Yoakam - Try Not To Look So Pretty (Karaoke EZ Sing)", - "id": "8gpHPTFcg94" - }, - { - "title": "Wynonna - Rock Bottom (Karaoke EZ Sing)", - "id": "e1x1sVCywoE" - }, - { - "title": "Pam Tillis - Spilled Perfume (Karaoke EZ Sing)", - "id": "R1TgnaS9TY0" - }, - { - "title": "Steve Wariner - It Won't Be Over You (Karaoke EZ Sing)", - "id": "q2a8I64gv_E" - }, - { - "title": "Meat Loaf - I'd Do Anything For Love (But I Won't Do That) (Karaoke EZ Sing)", - "id": "iL3G256mPA4" - }, - { - "title": "Little Texas - God Blessed Texas (Karaoke EZ Sing)", - "id": "NU3WsCNosxk" - }, - { - "title": "Billy Dean - We Just Disagree (Karaoke EZ Sing)", - "id": "EW2B3YAzEmA" - }, - { - "title": "Clay Walker - Where Do I Fit In The Picture (Karaoke EZ Sing)", - "id": "zvsmg7hi2V4" - }, - { - "title": "Patty Loveless - You Will (Karaoke EZ Sing)", - "id": "nzM2U8gsRDs" - }, - { - "title": "Mark Collie - Something's Gonna Change Her Mind (Karaoke EZ Sing)", - "id": "bSKyzD2taU8" - }, - { - "title": "Tanya Tucker - You Just Watch Me (Karaoke EZ Sing)", - "id": "VPlnsD3QzbU" - }, - { - "title": "Wynonna - Is It Over Yet (Karaoke EZ Sing)", - "id": "9KQl707Y8P4" - }, - { - "title": "Toby Keith - A Little Less Talk (And A Lot More Action) (Karaoke EZ Sing)", - "id": "-jX7Yr-JEgk" - }, - { - "title": "Elvis Presley - I Believe (Karaoke)", - "id": "gqH11JzyrFc" - }, - { - "title": "Rod Stewart - The Nearness Of You (Karaoke)", - "id": "7euR6Yp0vtQ" - }, - { - "title": "Thomas Rhett feat. Jon Pardi - Beer Can't Fix (Duet Version) (Karaoke)", - "id": "q7Z8g0twJPE" - }, - { - "title": "Moe Bandy - Hank Williams, You Wrote My Life (Karaoke)", - "id": "bNxh9Rthc_s" - }, - { - "title": "Jody Reynolds - Endless Sleep (Karaoke)", - "id": "fEpBwby2aUU" - }, - { - "title": "Olivia Rodrigo - Brutal (Karaoke)", - "id": "m3lhqM9t0w0" - }, - { - "title": "Michael Bolton - How Am I Supposed To Live Without You (Karaoke)", - "id": "BL5z79ZWYM8" - }, - { - "title": "Of Monsters And Men - Empire (Karaoke)", - "id": "Fogg1EiKvns" - }, - { - "title": "Depeche Mode - Dream On (Karaoke)", - "id": "upbWfqun7mM" - }, - { - "title": "Brandi Carlile - Carried Me With You (Karaoke)", - "id": "xwDyR977FoE" - }, - { - "title": "Jonas Brothers feat. Karol G - X (Duet Version) (Karaoke)", - "id": "7J8Qg0nu8II" - }, - { - "title": "Captain & Tennille - Lonely Night (Angel Face) (Karaoke)", - "id": "xdY2QhnNxQU" - }, - { - "title": "Abba - Just A Notion (Karaoke)", - "id": "48whfoGZn9Q" - }, - { - "title": "Bobby Bare - The Streets Of Baltimore (Karaoke)", - "id": "kqyW8E16_sI" - }, - { - "title": "Evanescence - Far From Heaven (Karaoke)", - "id": "L9sHFDVMBxw" - }, - { - "title": "Jackson Dean - Donโ€™t Come Lookinโ€™ (Karaoke)", - "id": "ZcTiiV7g4Yo" - }, - { - "title": "Loverboy - Hot Girls In Love (Karaoke)", - "id": "PQWSn4OdJ68" - }, - { - "title": "Eric Church - Like Jesus Does (Karaoke)", - "id": "K838dQzpHMs" - }, - { - "title": "Daft Punk ftg. Pharrell Williams - Get Lucky (Karaoke)", - "id": "cJobe0hflpM" - }, - { - "title": "Thompson Square - If I Didn't Have You (Karaoke)", - "id": "coboQCQ_kN0" - }, - { - "title": "Hank Williams Jr. - All My Rowdy Friends Are Coming Over Tonight (Karaoke)", - "id": "MF6yQC-ZP4Y" - }, - { - "title": "Fall Out Boy - Alone Together (Karaoke)", - "id": "XmsW5U6iI9U" - }, - { - "title": "Rosanne Cash - What We Really Want (Karaoke)", - "id": "vOe5uKrmYG0" - }, - { - "title": "Whites - Hangin' Around (Karaoke)", - "id": "cEni3PpwChs" - }, - { - "title": "The All-American Rejects - The Wind Blows (Karaoke)", - "id": "KsrAedOITQA" - }, - { - "title": "George Strait - I Just Want To Dance With You (Karaoke)", - "id": "l-A5q8XSoao" - }, - { - "title": "Carole King - Nightingale (Karaoke)", - "id": "Mb-2hZnwawk" - }, - { - "title": "Helen Reddy - Delta Dawn (Karaoke)", - "id": "jJt7K6n6IVs" - }, - { - "title": "Bill Monroe - Crying Holy Unto The Lord (Karaoke)", - "id": "tVHii6C0c-M" - }, - { - "title": "Perfect Heart - Because He Is (Karaoke)", - "id": "rhDVoqqo5-o" - }, - { - "title": "The Kingsmen - Getcha To The Other Side (Karaoke)", - "id": "Bo4l7LfjpAo" - }, - { - "title": "Jamey Johnson - Rebelicious (Karaoke)", - "id": "yGPD-G317yM" - }, - { - "title": "EZ Sing Children's Favorites - On Top Of Old Smoky (Karaoke EZ Sing)", - "id": "I1NDh1fVGOY" - }, - { - "title": "EZ Sing Children's Favorites - Three Blind Mice (Karaoke EZ Sing)", - "id": "N1cV4KtARGE" - }, - { - "title": "EZ Sing Children's Nursery Rhyme Songs - Ten Little Indians (Karaoke EZ Sing)", - "id": "jtcA3sqVc0g" - }, - { - "title": "EZ Sing Children's Fun Songs - Frere Jaques (Karaoke EZ Sing)", - "id": "QIhGhx87Th4" - }, - { - "title": "EZ Sing Children's Favorites - Sailing Sailing (Karaoke EZ Sing)", - "id": "R9sACAKRy18" - }, - { - "title": "EZ Sing Children's Nursery Rhymes - Polly Wolly Doodle (Karaoke EZ Sing)", - "id": "8XJSLa7BD20" - }, - { - "title": "EZ Sing Children's Fun Songs - Shortnin' Bread (Karaoke EZ Sing)", - "id": "G0mk22ATFkU" - }, - { - "title": "EZ Sing Children's Fun Songs - Here We Go Loopty Loo (Karaoke EZ Sing)", - "id": "EFsJtxkbF2Q" - }, - { - "title": "EZ Sing Children's Nursery Rhymes - Hot Cross Buns (Karaoke EZ Sing)", - "id": "8iVY_8oTkTc" - }, - { - "title": "EZ Sing Children's Fun Songs - Ring Around The Rosey (Karaoke EZ Sing)", - "id": "AAvZwGj8CB8" - }, - { - "title": "Rod Stewart - Have I Told You Lately (Karaoke EZ Sing)", - "id": "-JVcyZ-oV08" - }, - { - "title": "EZ Sing Children's Favorites - London Bridge (Karaoke EZ Sing)", - "id": "jnrFxSIZWyU" - }, - { - "title": "EZ Sing Children's Fun Songs - Skip To My Lou (Karaoke EZ Sing)", - "id": "bAeJ0vjloKk" - }, - { - "title": "EZ Sing Children's Favorites - Yankee Doodle (Karaoke EZ Sing)", - "id": "iegFI5iQ17Y" - }, - { - "title": "EZ Sing Children's Nursery Rhymes - Twinkle Twinkle Little Star (Karaoke EZ Sing)", - "id": "HraaZahgnLQ" - }, - { - "title": "EZ Sing Children's Nursery Rhymes - Row Row Your Boat (Karaoke EZ Sing)", - "id": "F9RnJuQfegQ" - }, - { - "title": "EZ Sing Children's Nursery Rhymes - Rock-A-Bye-Baby (Karaoke)", - "id": "URQM3qeBdfY" - }, - { - "title": "EZ Sing Children's Nursery Rhymes - This Old Man (Knick(Karaoke)", - "id": "ybOAtWCopX0" - }, - { - "title": "Trisha Yearwood - Song Remembers When (Karaoke EZ Sing)", - "id": "t6yEa6ZHoSI" - }, - { - "title": "EZ Sing Children's Favorites - Old MacDonald (Karaoke EZ Sing)", - "id": "6xVV5BJlxpY" - }, - { - "title": "Gospel Hymn (Southern) - When We All Get To Heaven (Karaoke EZ Sing)", - "id": "txv4W85oRuE" - }, - { - "title": "Gospel - Go Where I Send Thee (Karaoke EZ Sing)", - "id": "bLvC7lQTFps" - }, - { - "title": "EZ Sing Children's Fun Songs - Grandfather's Clock (Karaoke EZ Sing)", - "id": "Ui9mbfW5HJA" - }, - { - "title": "Gospel Hymn (Southern) - I'm Standing On The Solid Rock (Karaoke EZ Sing)", - "id": "xixsWlhAG2U" - }, - { - "title": "Traditional Gospel - Daddy Sang Bass (Karaoke EZ Sing)", - "id": "mf4MOJC-wOE" - }, - { - "title": "EZ Sing Children's Fun Songs - Shoo Fly (Karaoke EZ Sing)", - "id": "bH3j-88wjr4" - }, - { - "title": "Mark Chesnutt - Almost Goodbye (Karaoke EZ Sing)", - "id": "v-PwoavJwKk" - }, - { - "title": "Gospel Hymn (Southern) - When The Roll Is Called Up Yonder (Karaoke EZ Sing)", - "id": "-O_2aot0edE" - }, - { - "title": "Brooks & Dunn - She Used To Be Mine (Karaoke EZ Sing)", - "id": "EMx9XQLG_Rk" - }, - { - "title": "Gospel Hymn (Southern) - I Feel Like Traveling On (Karaoke EZ Sing)", - "id": "7Icg4oxtBE0" - }, - { - "title": "EZ Sing Children's Nursery Rhymes - Mary Had A Little Lamb (Karaoke EZ Sing)", - "id": "_Aa5AFILttY" - }, - { - "title": "Garth Brooks - Callin' Baton Rouge (Karaoke EZ Sing)", - "id": "LcaSZMxo0b0" - }, - { - "title": "Alan Jackson - Mercury Blues (Karaoke EZ Sing)", - "id": "BEE2fcm8z4w" - }, - { - "title": "Boxcar Willie - Up On The Housetop (Karaoke EZ Sing)", - "id": "7IQ814Othps" - }, - { - "title": "Sammy Kershaw - Queen Of My Double Wide Trailer (Karaoke EZ Sing)", - "id": "CKp_NaZaMJI" - }, - { - "title": "Little Texas - What Might Have Been (Karaoke EZ Sing)", - "id": "IcVzOEl4Cfk" - }, - { - "title": "Martina McBride - My Baby Loves Me (Karaoke EZ Sing)", - "id": "sELuhuqwnHk" - }, - { - "title": "Radney Foster - Easier Said Than Done (Karaoke EZ Sing)", - "id": "FuNGC40sJFw" - }, - { - "title": "Merle Haggard - Santa Claus And Popcorn (Karaoke EZ Sing)", - "id": "WkzIhKF9mW4" - }, - { - "title": "EZ Sing Children's Toddler Tunes - Oh, Susanna (Karaoke EZ Sing)", - "id": "wcE4hydV6tw" - }, - { - "title": "EZ Sing Children's Toddler Tunes - Clementine (Karaoke EZ Sing)", - "id": "cwSqiSGJAB0" - }, - { - "title": "EZ Sing Children's Toddler Tunes - Home On The Range (Karaoke EZ Sing)", - "id": "LzOP_heoMGw" - }, - { - "title": "Patty Loveless - Nothin' But The Wheel (Karaoke EZ Sing)", - "id": "pVCic3Q3pC0" - }, - { - "title": "Dwight Yoakam - A Thousand Miles From Nowhere (Karaoke EZ Sing)", - "id": "FxKca5ITNms" - }, - { - "title": "Mark Chesnutt - It Sure Is Monday (Karaoke EZ Sing)", - "id": "4cwcS9zGD5g" - }, - { - "title": "Larry Gatlin - I Heard The Bells On Christmas Day (Karaoke EZ Sing)", - "id": "V-CEkdrIS_E" - }, - { - "title": "Sammy Kershaw - She Don't Know She's Beautiful (Karaoke EZ Sing)", - "id": "JvV5pUIHS9M" - }, - { - "title": "Marty Stuart - Hey Baby (Karaoke EZ Sing)", - "id": "D8IHbQVhtFg" - }, - { - "title": "McBride & The Ride - Love On The Loose, Heart On The Run (Karaoke EZ Sing)", - "id": "9vQEibGxzS0" - }, - { - "title": "R.E.M. - Man On The Moon (Karaoke EZ Sing)", - "id": "Mnd3bTITwyI" - }, - { - "title": "John Anderson - Money In The Bank (Karaoke EZ Sing)", - "id": "JtSnjXaZumU" - }, - { - "title": "George Strait - When Did You Stop Loving Me (Karaoke EZ Sing)", - "id": "m2qnXKPqgJE" - }, - { - "title": "Whitney Houston - I'm Every Woman (Karaoke EZ Sing)", - "id": "JJOIj3uwRas" - }, - { - "title": "Toby Keith - Should've Been A Cowboy (Karaoke EZ Sing)", - "id": "yLNIQlNXABQ" - }, - { - "title": "Tracy Byrd - Someone To Give My Love To (Karaoke EZ Sing)", - "id": "1lKDPPFueAY" - }, - { - "title": "Hal Ketchum - Hearts Are Gonna Roll (Karaoke EZ Sing)", - "id": "0PQaSLwkZGw" - }, - { - "title": "Tracy Lawrence - Alibis (Karaoke EZ Sing)", - "id": "boZ7pXXX-yI" - }, - { - "title": "Alabama - Once Upon A Lifetime (Karaoke EZ Sing)", - "id": "7oiDf1yPy-s" - }, - { - "title": "Suzy Bogguss - Lovin' A Hurricane (Karaoke EZ Sing)", - "id": "yBv8zqI_a08" - }, - { - "title": "Tom T. Hall - O' Christmas Tree (Karaoke EZ Sing)", - "id": "YOVf2aZ6q80" - }, - { - "title": "Kathy Mattea - Standing Knee Deep In A River (Dying Of Thirst) (Karaoke EZ Sing)", - "id": "wND4lwJ-Zyg" - }, - { - "title": "Spin Doctors - Two Princes (Karaoke EZ Sing)", - "id": "DGFULPIwKn0" - }, - { - "title": "Shania Twain - What Made You Say That (Karaoke EZ Sing)", - "id": "dZRhgyPc5Zc" - }, - { - "title": "Tanya Tucker - Can't Run From Yourself (Karaoke EZ Sing)", - "id": "2omVHht_zeM" - }, - { - "title": "John Michael Montgomery - Life's A Dance (Karaoke EZ Sing)", - "id": "rxOc-jX0b0c" - }, - { - "title": "Lorrie Morgan - Someone To Call Me Darling (Karaoke EZ Sing)", - "id": "HFp7Lqm7wnQ" - }, - { - "title": "Steve Wariner - Like A River To The Sea (Karaoke EZ Sing)", - "id": "oNNN7DRVAR4" - }, - { - "title": "Confederate Railroad - Queen Of Memphis (Karaoke EZ Sing)", - "id": "r-5VcLJCs-E" - }, - { - "title": "Brooks & Dunn - Hard Workin' Man (Karaoke EZ Sing)", - "id": "ZKRGbX52II8" - }, - { - "title": "Mark Chesnutt - Old Country (Karaoke EZ Sing)", - "id": "k_LVq8bk1OU" - }, - { - "title": "Suzy Bogguss - Drive South (Karaoke EZ Sing)", - "id": "FFUdUOJ7yGY" - }, - { - "title": "Doug Stone - Too Busy Being In Love (Karaoke EZ Sing)", - "id": "HP9bmQQV9a4" - }, - { - "title": "Tanya Tucker - Danger Ahead (Karaoke EZ Sing)", - "id": "HpAfvHDiL5k" - }, - { - "title": "Lee Roy Parnell - Tender Moment (Karaoke EZ Sing)", - "id": "iIhSvVd9d3I" - }, - { - "title": "Billy Ray Cyrus - She's Not Crying Anymore (Karaoke EZ Sing)", - "id": "N6YZaLp9TDc" - }, - { - "title": "Clint Black - When My Ship Comes In (Karaoke EZ Sing)", - "id": "HNvN6hkqHN8" - }, - { - "title": "Garth Brooks - Learning To Live Again (Karaoke EZ Sing)", - "id": "2TnfgzjM-fg" - }, - { - "title": "Pam Tillis - Let That Pony Run (Karaoke EZ Sing)", - "id": "suPowh2KJYQ" - }, - { - "title": "Wynonna - My Strongest Weakness (Karaoke EZ Sing)", - "id": "kHl8bdfimfQ" - }, - { - "title": "Randy Travis - No Place Like Home (Karaoke EZ Sing)", - "id": "kniGyeRCPLY" - }, - { - "title": "Ronnie Milsap - In Love (Karaoke EZ Sing)", - "id": "oTPMg-gV1n4" - }, - { - "title": "Terence Trent D'Arby - Wishing Well (Karaoke EZ Sing)", - "id": "p5CcwnE2TTo" - }, - { - "title": "Glenn Medeiros - She Ain't Worth It (Karaoke EZ Sing)", - "id": "LTajsmHtajk" - }, - { - "title": "Salt - Shake Your Thang (It's Your Thing) (Karaoke EZ Sing)", - "id": "a9CzNRBoi0k" - }, - { - "title": "Emmylou Harris - Once More (Karaoke EZ Sing)", - "id": "vRXFDmA448k" - }, - { - "title": "Rick Springfield - Jesse's Girl (Karaoke EZ Sing)", - "id": "Dx7xkEHtuCU" - }, - { - "title": "Tears For Fears - Everybody Wants To Rule The World (Karaoke EZ Sing)", - "id": "l6Yf0KUmDIU" - }, - { - "title": "Steve Winwood - Don't You Know What The Night Can Do (Karaoke EZ Sing)", - "id": "-rMNkpslRDA" - }, - { - "title": "Richard Marx - Should've Known Better (Karaoke EZ Sing)", - "id": "o8uPxFCIsmc" - }, - { - "title": "Barbra Streisand & Don Johnson - Till I Loved You (Karaoke EZ Sing)", - "id": "NoFM96BvZYY" - }, - { - "title": "Sade - Never As Good As The First Time (Karaoke EZ Sing)", - "id": "AXF7bNWuYFQ" - }, - { - "title": "Genesis - Invisible Touch (Karaoke EZ Sing)", - "id": "AkAlN2ygskY" - }, - { - "title": "Starship - We Built This City (Karaoke EZ Sing)", - "id": "4UaWvOtEQjU" - }, - { - "title": "Beatles - Yellow Submarine (Karaoke EZ Sing)", - "id": "a1Gs4hJfmZ8" - }, - { - "title": "When In Rome - The Promise (Karaoke)", - "id": "1Hyu9S8i0wA" - }, - { - "title": "Europe - Carrie (Karaoke EZ Sing)", - "id": "LcUr8KQcZPk" - }, - { - "title": "Kansas - All I Wanted (Karaoke EZ Sing)", - "id": "gJyeZQQxA60" - }, - { - "title": "Temptations - All I Need (Karaoke EZ Sing)", - "id": "m6AC331sXGc" - }, - { - "title": "Chicago - Look Away (Karaoke EZ Sing)", - "id": "nTOXTZjteEE" - }, - { - "title": "Cheap Trick - Flame (Karaoke EZ Sing)", - "id": "lMLhe0LUPDg" - }, - { - "title": "Tennessee Ernie Ford - Hey Mr. Cottonpicker (Karaoke EZ Sing)", - "id": "1uJR7l-dXbE" - }, - { - "title": "Sandi Patti - Love Will Be Our Home (Karaoke EZ Sing)", - "id": "eWc0XmuVPIk" - }, - { - "title": "Stryper - Always There For You (Karaoke EZ Sing)", - "id": "-3vnkNxgAlw" - }, - { - "title": "Billy Joel - My Life (Karaoke EZ Sing)", - "id": "a5_3-Zwt3ps" - }, - { - "title": "Billy Joel - Stranger (Karaoke EZ Sing)", - "id": "rQObpXQ5bok" - }, - { - "title": "Steve Green - Enter In (Karaoke EZ Sing)", - "id": "rMgPyl-ZBuA" - }, - { - "title": "5th Dimension - Stoned Soul Picnic (Karaoke EZ Sing)", - "id": "RcL3MrekXn0" - }, - { - "title": "Carpenters - Rainy Days And Mondays (Karaoke EZ Sing)", - "id": "5_4cgHjMT30" - }, - { - "title": "Cyndi Lauper - I Drove All Night (Karaoke EZ Sing)", - "id": "8Vc6NUTQWJo" - }, - { - "title": "Alabama - Southern Star (Karaoke EZ Sing)", - "id": "vMsPJlYsgb8" - }, - { - "title": "Carpenters - Yesterday Once More (Karaoke EZ Sing)", - "id": "BSO-QLDaqHs" - }, - { - "title": "Four Tops - Bernadette (Karaoke EZ Sing)", - "id": "69cvI3hwOho" - }, - { - "title": "Beach Boys - Surfer Girl (Karaoke EZ Sing)", - "id": "FNqzpTcew3k" - }, - { - "title": "Temptations - Cloud Nine (Karaoke EZ Sing)", - "id": "CSEGjKaxGAA" - }, - { - "title": "Beach Boys - Sloop John B (Karaoke EZ Sing)", - "id": "A6Scl17nRFc" - }, - { - "title": "Temptations - Beauty Is Only Skin Deep (Karaoke EZ Sing)", - "id": "-b67g3mCJ1w" - }, - { - "title": "Jan & Dean - Surf City (Karaoke EZ Sing)", - "id": "j_4CCQbO504" - }, - { - "title": "Alabama - Song Of The South (Karaoke EZ Sing)", - "id": "wLd4IFy5uuM" - }, - { - "title": "Jan & Dean - Dead Man's Curve (Karaoke EZ Sing)", - "id": "gqXPJkrxk-I" - }, - { - "title": "Chubby Checker - Slow Twistin' (Karaoke EZ Sing)", - "id": "hfrGczqYBCw" - }, - { - "title": "Poison - I Want Action (Karaoke EZ Sing)", - "id": "UeQu1E3zydY" - }, - { - "title": "Elton John - I Don't Want To Go On With You Like That (Karaoke EZ Sing)", - "id": "t1vQ995HIf0" - }, - { - "title": "Four Tops - Reach Out I'll Be There (Karaoke EZ Sing)", - "id": "Cu-WLkxTo9k" - }, - { - "title": "Doris Day - Everybody Loves A Lover (Karaoke EZ Sing)", - "id": "6zkFag6HX4k" - }, - { - "title": "Mary Chapin Carpenter - Not Too Much To Ask (Karaoke EZ Sing)", - "id": "XNdF1Bj181s" - }, - { - "title": "Marty Stuart - Now That's Country (Karaoke EZ Sing)", - "id": "Km8oswgcbRE" - }, - { - "title": "Lorrie Morgan - What Part Of No (Karaoke EZ Sing)", - "id": "JjilNB9AaOo" - }, - { - "title": "Brooks & Dunn - Lost And Found (Karaoke EZ Sing)", - "id": "oYcyozDbvVA" - }, - { - "title": "Wynonna - A Little Bit Of Love (Goes A Long, Long Way) (Karaoke EZ Sing)", - "id": "lG8zJiQzuPE" - }, - { - "title": "Lee Roy Parnell - Love Without Mercy (Karaoke EZ Sing)", - "id": "WrychVid7Bk" - }, - { - "title": "Radney Foster - Just Call Me Lonesome (Karaoke EZ Sing)", - "id": "RSE3cfxmILc" - }, - { - "title": "Poison - Fallen Angel (Karaoke EZ Sing)", - "id": "q3s-GUQ1Ti8" - }, - { - "title": "Vince Gill - Don't Let Our Love Start Slippin' Away (Karaoke EZ Sing)", - "id": "RM2BSm1AkPQ" - }, - { - "title": "Glen Campbell - More Than Enough (Karaoke EZ Sing)", - "id": "5ynTlYiFz3s" - }, - { - "title": "Billy Dean - If There Hadn't Been You (Karaoke EZ Sing)", - "id": "pOm_JSq_r_4" - }, - { - "title": "Confederate Railroad - Jesus And Mama (Karaoke EZ Sing)", - "id": "x1CR7eQwmZ8" - }, - { - "title": "Travis Tritt - T-R-O-U-B-L-E (Karaoke)", - "id": "5bEXUuyzums" - }, - { - "title": "Clint Black - Burn One Down (Karaoke EZ Sing)", - "id": "To6Fmobk3zw" - }, - { - "title": "Billy Ray Cyrus - Wher'm I Gonna Live (Karaoke EZ Sing)", - "id": "GoYuND1NKzQ" - }, - { - "title": "Steve Winwood - Finer Things (Karaoke EZ Sing)", - "id": "kDw20vHQEdU" - }, - { - "title": "Winger - Headed For A Heartbreak (Karaoke EZ Sing)", - "id": "l4qsw8v_zvY" - }, - { - "title": "Amy Grant - It's Not A Song (Karaoke EZ Sing)", - "id": "tbRI8928MXE" - }, - { - "title": "Roger Miller - Engine Engine #9 (Karaoke EZ Sing)", - "id": "FCUrQD10f5s" - }, - { - "title": "Cure - Love Song (Karaoke EZ Sing)", - "id": "H0Dek6Jdhw8" - }, - { - "title": "Lyle Lovett - I Loved You Yesterday (Karaoke EZ Sing)", - "id": "VTcd1EEdKuc" - }, - { - "title": "Andy Williams - Love Is A Many Splendored Thing (Karaoke EZ Sing)", - "id": "2uYKFAq6SQE" - }, - { - "title": "Tammy Wynette - Womanhood (Karaoke EZ Sing)", - "id": "G3qnXdOT_tg" - }, - { - "title": "Billy Joel - She's Always A Woman To Me (Karaoke EZ Sing)", - "id": "nW4lL1DsAck" - }, - { - "title": "Carole King - Way Over Yonder (Karaoke EZ Sing)", - "id": "gEGxVX_L_w4" - }, - { - "title": "Cyndi Lauper - My First Night Without You (Karaoke EZ Sing)", - "id": "6obcYl5fPNE" - }, - { - "title": "Lita Ford & Ozzy Osbourne - Close My Eyes Forever (Karaoke EZ Sing)", - "id": "nnXl7Q5Kv9E" - }, - { - "title": "George Benson - Turn Your Love Around (Karaoke EZ Sing)", - "id": "oqpVNSxFeRg" - }, - { - "title": "Robert Palmer - Early In The Morning (Karaoke EZ Sing)", - "id": "GVOjn77g29U" - }, - { - "title": "Duran Duran - Is There Something I Should Know (Karaoke EZ Sing)", - "id": "L7hGryxRIzU" - }, - { - "title": "Debbie Gibson - No More Rhyme (Karaoke EZ Sing)", - "id": "0e_GccarG6k" - }, - { - "title": "Duran Duran - All She Wants Is (Karaoke EZ Sing)", - "id": "1GwvwXQPlyA" - }, - { - "title": "Neil Sedaka - Stairway To Heaven (Karaoke EZ Sing)", - "id": "tTedJ6QxnKs" - }, - { - "title": "Ronnie McDowell - Personally (Karaoke EZ Sing)", - "id": "MO4xL3a5QL0" - }, - { - "title": "5th Dimension - Wedding Bell Blues (Karaoke EZ Sing)", - "id": "B7KAGwNMu_c" - }, - { - "title": "Sheena Easton - Modern Girl (Karaoke EZ Sing)", - "id": "tC0mPUT6INU" - }, - { - "title": "Carole King - So Far Away (Karaoke EZ Sing)", - "id": "2O0t1uObUPM" - }, - { - "title": "Jefferson Airplane - Somebody To Love (Karaoke EZ Sing)", - "id": "JtcCdmV_xOg" - }, - { - "title": "Billy Joel - Tell Her About It (Karaoke EZ Sing)", - "id": "vsHapmpQlLo" - }, - { - "title": "Temptations - I Know I'm Losing You (Karaoke EZ Sing)", - "id": "KAbg06P-lXQ" - }, - { - "title": "Temptations - Ball Of Confusion (Karaoke EZ Sing)", - "id": "J3toqlRo4JU" - }, - { - "title": "Four Tops - Ain't No Woman (Like The One I've Got) (Karaoke EZ Sing)", - "id": "4kzLO4mjDio" - }, - { - "title": "Mariah Carey - I'll Be There (Karaoke EZ Sing)", - "id": "lUMu2YoHc44" - }, - { - "title": "John Anderson - Seminole Wind (Karaoke EZ Sing)", - "id": "OMWN9SpuDcA" - }, - { - "title": "McBride & The Ride - Going Out Of My Mind (Karaoke EZ Sing)", - "id": "3gJGEWKcg5A" - }, - { - "title": "Chubby Checker - Pony Time (Karaoke EZ Sing)", - "id": "i63Z_ALZ7_o" - }, - { - "title": "Emmylou Harris - Heartbreak Hill (Karaoke EZ Sing)", - "id": "5K4f1nAt1fo" - }, - { - "title": "Pam Tillis - Shake The Sugar Tree (Karaoke EZ Sing)", - "id": "wx3iEQV2oOY" - }, - { - "title": "Collin Raye - In This Life (Karaoke EZ Sing)", - "id": "nuIZPLbcRCs" - }, - { - "title": "Pat Boone - Friendly Persuasion (Karaoke EZ Sing)", - "id": "Z3JSmN1RTdc" - }, - { - "title": "Tom Jones - (It Looks Like) I'll Never Fall In Love Again (Karaoke EZ Sing)", - "id": "dzpiCorV1qs" - }, - { - "title": "Samantha Fox - I Wanna Have Some Fun (Karaoke EZ Sing)", - "id": "7GYcADXgBAI" - }, - { - "title": "Tanya Tucker - Two Sparrows In A Hurricane (Karaoke EZ Sing)", - "id": "1pJLWt69P0g" - }, - { - "title": "Celine Dion - Nothing Broken But My Heart (Karaoke EZ Sing)", - "id": "HJJKdZjS9hc" - }, - { - "title": "Travis Tritt - Lord Have Mercy On The Working Man (Karaoke EZ Sing)", - "id": "Hk2SWixyP1g" - }, - { - "title": "Sir Mix - Baby Got Back (Karaoke EZ Sing)", - "id": "66gYUittE1Q" - }, - { - "title": "Willie Nelson - Pretty Paper (Karaoke EZ Sing)", - "id": "cmZP2m8eYCM" - }, - { - "title": "Deborah Allen - Rockin' Little Christmas (Karaoke EZ Sing)", - "id": "ZIRrBAbg6Ek" - }, - { - "title": "Elvis Presley - Here Comes Santa Claus (Karaoke EZ Sing)", - "id": "nzC0Yq6UORo" - }, - { - "title": "Carpenters - Merry Christmas Darling (Karaoke EZ Sing)", - "id": "NttLqboNdYY" - }, - { - "title": "Clint Black - We Tell Ourselves (Karaoke EZ Sing)", - "id": "TR4BgpAi4y4" - }, - { - "title": "Buck Owens - Santa Looked A Lot Like Daddy (Karaoke EZ Sing)", - "id": "y0xldxh8BTI" - }, - { - "title": "Steve Winwood - Holding On (Karaoke EZ Sing)", - "id": "G7yft6fa8qU" - }, - { - "title": "Ernest Tubb - Filipino Baby (Karaoke EZ Sing)", - "id": "Tq4611TJC-8" - }, - { - "title": "Martina McBride - That's Me (Karaoke EZ Sing)", - "id": "PcYjnlz5tSo" - }, - { - "title": "Michelle Wright - One Time Around (Karaoke EZ Sing)", - "id": "vPVEsidWNTo" - }, - { - "title": "Earl Thomas Conley - Bring Back Your Lovin' To Me (Karaoke EZ Sing)", - "id": "HWr5TbRyLB4" - }, - { - "title": "Randy Travis - When Your World Was Turning For Me (Karaoke EZ Sing)", - "id": "zVNQdFBUiik" - }, - { - "title": "Keith Whitley - Heartbreak Highway (Karaoke EZ Sing)", - "id": "wuGY-r3iJk0" - }, - { - "title": "The Who - Squeeze Box (Karaoke EZ Sing)", - "id": "k_-FFhoopr0" - }, - { - "title": "Joan Jett & The Blackhearts - I Love Rock 'N Roll (Karaoke EZ Sing)", - "id": "LFgXf2fjxMw" - }, - { - "title": "Chuck Berry - School Days (Karaoke EZ Sing)", - "id": "eHj500rmPIc" - }, - { - "title": "Ozzy Osbourne - Shot In The Dark (Karaoke EZ Sing)", - "id": "_62YfaAm9eI" - }, - { - "title": "Tanya Tucker - Man That Turned My Mama On (Karaoke EZ Sing)", - "id": "NaUKyWYCkC8" - }, - { - "title": "Frank Sinatra - Didn't We (Karaoke EZ Sing)", - "id": "sdaq9jH7YYc" - }, - { - "title": "Anita Baker - Sweet Love (Karaoke EZ Sing)", - "id": "gBJBQ_c2bvM" - }, - { - "title": "Deniece Williams - Let's Hear It For The Boy (Karaoke EZ Sing)", - "id": "48Bhf3nVXaY" - }, - { - "title": "Marty Stuart - This One's Gonna Hurt You (Karaoke EZ Sing)", - "id": "Zt_kGSBFQsA" - }, - { - "title": "Poison - Nothin' But A Good Time (Karaoke EZ Sing)", - "id": "9MJ5G98uRgU" - }, - { - "title": "Dolly Parton, Emmylou Harris & Linda Ronstadt - Making Plans (Karaoke EZ Sing)", - "id": "GuA4LHDdBMY" - }, - { - "title": "Tracy Lawrence - Running Behind (Karaoke EZ Sing)", - "id": "sz90pNXK438" - }, - { - "title": "Mickey Gilley - Tears Of The Lonely (Karaoke EZ Sing)", - "id": "zVjunh_ynGQ" - }, - { - "title": "Sweethearts Of The Rodeo - I Feel Fine (Karaoke EZ Sing)", - "id": "Tt5wsQIGvCU" - }, - { - "title": "Pretty Poison - Catch Me I'm Falling (Karaoke EZ Sing)", - "id": "qahuSW2s_wI" - }, - { - "title": "Ricky Nelson - Stood Up (Karaoke EZ Sing)", - "id": "aotdHruICDA" - }, - { - "title": "Beastie Boys - (You Gotta) Fight For Your Right (To Party) (Karaoke EZ Sing)", - "id": "U9oEfRtjqis" - }, - { - "title": "Sandi Patti - Lift Up The Lord (Karaoke EZ Sing)", - "id": "vuw6oILS5RY" - }, - { - "title": "Helen Reddy - I Am Woman (Karaoke EZ Sing)", - "id": "03fpp3s-Odg" - }, - { - "title": "Cyndi Lauper - All Through The Night (Karaoke EZ Sing)", - "id": "r_6n818bAD8" - }, - { - "title": "Steve Winwood - Higher Love (Karaoke EZ Sing)", - "id": "yBN5adSokI0" - }, - { - "title": "Little Texas - First Time For Everything (Karaoke EZ Sing)", - "id": "v2IDGW08G9Y" - }, - { - "title": "Forester Sisters - Leave It Alone (Karaoke EZ Sing)", - "id": "96V311mWyxo" - }, - { - "title": "Mike Reid - I Got A Life (Karaoke EZ Sing)", - "id": "gPb_bia44tc" - }, - { - "title": "Ernest Tubb - Have You Ever Been Lonely (Karaoke EZ Sing)", - "id": "QgF4DjIof5c" - }, - { - "title": "Jim Reeves - Blue Side Of Lonesome (Karaoke EZ Sing)", - "id": "CWBtnWHBqx4" - }, - { - "title": "Right Said Fred - I'm Too Sexy (Karaoke EZ Sing)", - "id": "cR-VfGJXzpI" - }, - { - "title": "Lee Roy Parnell - What Kind Of Fool Do You Think I Am (Karaoke EZ Sing)", - "id": "PLh3t7waleY" - }, - { - "title": "Little Richard - Tutti Frutti (Karaoke EZ Sing)", - "id": "dylsymoqKd4" - }, - { - "title": "Brooks & Dunn - Boot Scootin' Boogie (Karaoke EZ Sing)", - "id": "v8X3rdW6oes" - }, - { - "title": "Pet Shop Boys - West End Girls (Karaoke EZ Sing)", - "id": "w71EidUW47A" - }, - { - "title": "Tom T. Hall - Country Is (Karaoke EZ Sing)", - "id": "ujxuZ1pj-OQ" - }, - { - "title": "Debbie Gibson - Electric Youth (Karaoke EZ Sing)", - "id": "8gEZ1aNmIqA" - }, - { - "title": "Lorrie Morgan - Something In Red (Karaoke EZ Sing)", - "id": "wV5D5n8CY4E" - }, - { - "title": "Poison - Talk Dirty To Me (Karaoke EZ Sing)", - "id": "CSHcLJ-kshA" - }, - { - "title": "Michael Bolton - When I'm Back On My Feet Again (Karaoke EZ Sing)", - "id": "ORyxgQZkzKI" - }, - { - "title": "Elvis Presley - Amazing Grace (Karaoke EZ Sing)", - "id": "DUHPUfMTU4A" - }, - { - "title": "Holly Dunn - No Love Have I (Karaoke EZ Sing)", - "id": "bWWs0fPsLv8" - }, - { - "title": "Jim Croce - You Don't Mess Around With Jim (Karaoke EZ Sing)", - "id": "jJVeLuZ8NZc" - }, - { - "title": "Kentucky Headhunters - Rag Top (Karaoke EZ Sing)", - "id": "jppV052mgYg" - }, - { - "title": "Ernest Tubb - I Love You Because (Karaoke EZ Sing)", - "id": "6mmKx5h4Q5s" - }, - { - "title": "Steve Winwood - Back In The High Life (Karaoke EZ Sing)", - "id": "qVKX23FPaB0" - }, - { - "title": "Belinda Carlisle - Heaven Is A Place On Earth (Karaoke EZ Sing)", - "id": "Jlxc6I0LJ8s" - }, - { - "title": "Ricky Skaggs - Country Boy (Karaoke EZ Sing)", - "id": "pLeRtxIEQTE" - }, - { - "title": "George Michael & Elton John - Don't Let The Sun Go Down On Me (Karaoke EZ Sing)", - "id": "sx22L8KBKzY" - }, - { - "title": "Michelle Wright - Take It Like A Man (Karaoke EZ Sing)", - "id": "xEuois7pEm0" - }, - { - "title": "Joan Jett - I Hate Myself For Loving You (Karaoke EZ Sing)", - "id": "D0DCLeOdyXU" - }, - { - "title": "Billy Joel - We Didn't Start The Fire (Karaoke EZ Sing)", - "id": "Um3KT4zajW4" - }, - { - "title": "Dwight Yoakam & Buck Owens - Streets Of Bakersfield (Karaoke EZ Sing)", - "id": "9wzoxUh4X00" - }, - { - "title": "Billy Ray Cyrus - Achy Breaky Heart (Karaoke EZ Sing)", - "id": "1Mlwj1CRIKY" - }, - { - "title": "Clint Black - This Nightlife (Karaoke EZ Sing)", - "id": "9sSOOB3GyAI" - }, - { - "title": "En Vogue - My Lovin' (You're Never Gonna Get It) (Karaoke EZ Sing)", - "id": "W_WQqJp-gyg" - }, - { - "title": "Mark Chesnutt - Bubba Shot The Jukebox (Karaoke EZ Sing)", - "id": "k0fYletddH4" - }, - { - "title": "Vanessa Williams - Save The Best For Last (Karaoke EZ Sing)", - "id": "mQS5Eex67qE" - }, - { - "title": "Conway Twitty - This Time I've Hurt Her More Than She Loves Me (Karaoke EZ Sing)", - "id": "P_6ADv1GHMc" - }, - { - "title": "Davis Daniel - Still Got A Crush On You (Karaoke EZ Sing)", - "id": "oIzGH7DWzBM" - }, - { - "title": "McCarters - Up And Gone (Karaoke EZ Sing)", - "id": "N3EbA4rowMI" - }, - { - "title": "Sawyer Brown - Some Girls Do (Karaoke EZ Sing)", - "id": "lOxMB77YybE" - }, - { - "title": "Chubby Checker - Limbo Rock (Karaoke EZ Sing)", - "id": "UxODgNUwvxk" - }, - { - "title": "Cyndi Lauper - True Colors (Karaoke EZ Sing)", - "id": "-J_23_07m2E" - }, - { - "title": "Doris Day - Teacher's Pet (Karaoke EZ Sing)", - "id": "XiztSNbh2TY" - }, - { - "title": "Collin Raye - Every Second (Karaoke EZ Sing)", - "id": "MjCqacA2tw8" - }, - { - "title": "Traditional Irish - Wild Rover (Karaoke EZ Sing)", - "id": "zxsZKwzesTw" - }, - { - "title": "Glen Campbell - I Love How You Love Me (Karaoke EZ Sing)", - "id": "3wpBoXY1kpw" - }, - { - "title": "Thurston Harris - Little Bitty Pretty One (Karaoke EZ Sing)", - "id": "TUABLuXtH84" - }, - { - "title": "Beatles - Let It Be (Karaoke EZ Sing)", - "id": "CyiXWyP82Bk" - }, - { - "title": "Roy Orbison - In Dreams (Karaoke EZ Sing)", - "id": "-2a8vidG1S8" - }, - { - "title": "Emmylou Harris - Making Believe (Karaoke EZ Sing)", - "id": "HBlZGnO_GmA" - }, - { - "title": "George Jones & Tammy Wynette - Golden Ring (Karaoke EZ Sing)", - "id": "A6BC9PiQBP4" - }, - { - "title": "Brooks & Dunn - Neon Moon (Karaoke EZ Sing)", - "id": "ZciTxoOdgYs" - }, - { - "title": "Roy Orbison - Blue Angel (Karaoke EZ Sing)", - "id": "oEknhdxry20" - }, - { - "title": "Billy Joel - Just The Way You Are (Karaoke EZ Sing)", - "id": "OwWbpufwVs0" - }, - { - "title": "Whitney Houston - All At Once (Karaoke EZ Sing)", - "id": "4rs9mKAVXzY" - }, - { - "title": "Tammy Wynette - Till I Get It Right (Karaoke EZ Sing)", - "id": "ezi37YayjvM" - }, - { - "title": "Alabama - Born Country (Karaoke EZ Sing)", - "id": "-T8JI5W3lxA" - }, - { - "title": "Carpenters - Goodbye To Love (Karaoke EZ Sing)", - "id": "otAki_dJ1ek" - }, - { - "title": "Wynonna - She Is His Only Need (Karaoke EZ Sing)", - "id": "zmukEYmt0KI" - }, - { - "title": "Carpenters - I Won't Last A Day Without You (Karaoke EZ Sing)", - "id": "uby4sqCy638" - }, - { - "title": "Belinda Carlisle - Circle In The Sand (Karaoke EZ Sing)", - "id": "vyuvDtKZMLY" - }, - { - "title": "Alabama - Forty Hour Week (Karaoke EZ Sing)", - "id": "pGnUHrZuOOU" - }, - { - "title": "Alison Krauss & Union Station - I've Got That Old Feeling (Karaoke EZ Sing)", - "id": "5J1uUHKr5K8" - }, - { - "title": "Jackie DeShannon - What The World Needs Now (Karaoke EZ Sing)", - "id": "HdOTfzbeLko" - }, - { - "title": "Amy Grant - Sing Your Praise To The Lord (Karaoke EZ Sing)", - "id": "Kj7fwTZ09aY" - }, - { - "title": "Kathy Mattea - Goin' Gone (Karaoke EZ Sing)", - "id": "GS0EtRkQemI" - }, - { - "title": "Pointer Sisters - Neutron Dance (Karaoke EZ Sing)", - "id": "5ouK88MtADg" - }, - { - "title": "5th Dimension - Aquarius/Let The Sun Shine In (Karaoke EZ Sing)", - "id": "Jn9dfrb7vrI" - }, - { - "title": "Ricky Van Shelton - After The Lights Go Out (Karaoke EZ Sing)", - "id": "O_XGzSqExnc" - }, - { - "title": "Vince Gill - Take Your Memory With You (Karaoke EZ Sing)", - "id": "S7LGCNzBAMA" - }, - { - "title": "Pam Tillis - Maybe It Was Memphis (Karaoke EZ Sing)", - "id": "IU2D5yaKKuo" - }, - { - "title": "Bonnie Raitt - I Can't Make You Love Me (Karaoke EZ Sing)", - "id": "W19qsO1wAGw" - }, - { - "title": "Silhouettes - Get A Job (Karaoke EZ Sing)", - "id": "-CdchgFRXNU" - }, - { - "title": "Glen Campbell - Country Boy (You Got Your Feet In L. A.) (Karaoke EZ Sing)", - "id": "Fgk7Rf_zBK8" - }, - { - "title": "Lorrie Morgan - Except For Monday (Karaoke EZ Sing)", - "id": "ZyRRckTtSfU" - }, - { - "title": "Connie Francis - Stupid Cupid (Karaoke EZ Sing)", - "id": "W8xVSJqufXo" - }, - { - "title": "Beach Boys - Be True To Your School (Karaoke EZ Sing)", - "id": "7ShB4J6UelU" - }, - { - "title": "Shelby Lynne - Don't Cross Your Heart (Karaoke EZ Sing)", - "id": "1j8iuuKpVEI" - }, - { - "title": "Alabama - Fire In The Night (Karaoke EZ Sing)", - "id": "gPpfifx0sNQ" - }, - { - "title": "Suzy Bogguss - Outbound Plane (Karaoke EZ Sing)", - "id": "eeRNKvNW5qE" - }, - { - "title": "Marty Stuart & Travis Tritt - Whiskey Ain't Workin' (Karaoke EZ Sing)", - "id": "TJMR0h14INg" - }, - { - "title": "Paul Overstreet - If I Could Bottle This Up (Karaoke EZ Sing)", - "id": "DTGAuXdR7r8" - }, - { - "title": "Roberta Flack & Maxi Priest - Set The Night To Music (Karaoke EZ Sing)", - "id": "-8Aob5iNDDA" - }, - { - "title": "Temptations - Just My Imagination (Karaoke EZ Sing)", - "id": "m7pPUYPPYM0" - }, - { - "title": "Heart - Magic Man (Karaoke EZ Sing)", - "id": "gU5o88Ug2Zk" - }, - { - "title": "Dan Hartman - I Can Dream About You (Karaoke EZ Sing)", - "id": "rUQS6S2sqV0" - }, - { - "title": "Fleetwood Mac - Dreams (Karaoke EZ Sing)", - "id": "0mAPmFpyP5c" - }, - { - "title": "Billy Joel - You May Be Right (Karaoke EZ Sing)", - "id": "rNTDC4TbKMQ" - }, - { - "title": "Steve Wariner - Tips Of My Fingers (Karaoke EZ Sing)", - "id": "bj0cRPq3hGs" - }, - { - "title": "Beach Boys - Barbara Ann (Karaoke EZ Sing)", - "id": "SHaVhqXQlTM" - }, - { - "title": "Jim Croce - Operator (That's Not The Way It Feels) (Karaoke EZ Sing)", - "id": "_FgfweUvnhk" - }, - { - "title": "Loretta Lynn & Conway Twitty - As Soon As Hang Up The Phone (Karaoke EZ Sing)", - "id": "EOIIX0uged0" - }, - { - "title": "Don Gibson - Too Soon To Know (Karaoke EZ Sing)", - "id": "mzRD6ynYito" - }, - { - "title": "Michael Jackson - Ben (Karaoke EZ Sing)", - "id": "ihMDzoKkxjM" - }, - { - "title": "George Jones & Tammy Wynette - We're Gonna Hold On (Karaoke EZ Sing)", - "id": "PQEYhPPuND4" - }, - { - "title": "Lorrie Morgan - The Things We Do (Karaoke)", - "id": "Y6Ue8Aa_o9c" - }, - { - "title": "Matchbox Twenty - Mad Season (Karaoke)", - "id": "HWWzGiLbiIM" - }, - { - "title": "Roachford - Family Man (Karaoke)", - "id": "H0q7rkulcAs" - }, - { - "title": "Pussycat Dolls feat. Busta Rhymes - Don'tcha (Karaoke)", - "id": "sEmED-wSOeU" - }, - { - "title": "Akon - Angel (Karaoke)", - "id": "ZriZFT6lMZQ" - }, - { - "title": "Fantasia - When I See U (Karaoke)", - "id": "JDzz-dg51sU" - }, - { - "title": "Whitney Houston - It's Not Right But It's Okay (Karaoke)", - "id": "_-uk3pTWA8g" - }, - { - "title": "Amy Winehouse - Stronger Than Me (Karaoke)", - "id": "k2H52lzEZ1k" - }, - { - "title": "Marty Stuart - Tempted (Karaoke EZ Sing)", - "id": "39pCmLF4BtY" - }, - { - "title": "Jim Stafford - Spiders & Snakes (Karaoke EZ Sing)", - "id": "g3k0JYsN8Wc" - }, - { - "title": "Standard - Count Your Blessings Instead Of Sheep (Karaoke EZ Sing)", - "id": "S_U1eSbegbY" - }, - { - "title": "Living Colour - Cult Of Personality (Karaoke EZ Sing)", - "id": "74HyqOF7TcA" - }, - { - "title": "Gospel Hymn (Southern) - He Loves Me (Karaoke EZ Sing)", - "id": "laSEd6frvfg" - }, - { - "title": "Gospel Hymn (Southern) - Changing The Image (Karaoke EZ Sing)", - "id": "lyAdwAHIQww" - }, - { - "title": "Pam Tillis - Put Yourself In My Place (Karaoke EZ Sing)", - "id": "STnJbCe9gkM" - }, - { - "title": "Judds - John Deere Tractor (Karaoke EZ Sing)", - "id": "2V5TozVxBos" - }, - { - "title": "Joe Diffie - New Way (To Light Up An Old Flame) (Karaoke EZ Sing)", - "id": "1aw7GwBvPNw" - }, - { - "title": "Clinton Gregory - Satisfy Me And I'll Satisfy You (Karaoke EZ Sing)", - "id": "mahxXhW1Yrk" - }, - { - "title": "Ricky Van Shelton - Keep It Between the Lines (Karaoke EZ Sing)", - "id": "_274quqPV9o" - }, - { - "title": "Charley Pride - Snakes Crawl At Night (Karaoke EZ Sing)", - "id": "OCaHbgaoG58" - }, - { - "title": "Don Williams - Lord Have Mercy On A Country Boy (Karaoke EZ Sing)", - "id": "TOl3-K8W_Y4" - }, - { - "title": "Clint Black - Where Are You Now (Karaoke EZ Sing)", - "id": "c34UamIWHus" - }, - { - "title": "Dwight Yoakam - I Sang Dixie (Karaoke EZ Sing)", - "id": "VYuBqfFOqEs" - }, - { - "title": "Alabama - High Cotton (Karaoke EZ Sing)", - "id": "3YW-WZB1DYs" - }, - { - "title": "Bread - If (Karaoke EZ Sing)", - "id": "2TyxrPCe3sw" - }, - { - "title": "Gene Autry - Twilight On The Trail (Karaoke EZ Sing)", - "id": "jHjlgxojEK8" - }, - { - "title": "Alabama - Christmas In Dixie (Karaoke EZ Sing)", - "id": "jF0dVBMKvMI" - }, - { - "title": "Reba McEntire - I'm In Love All Over (Karaoke EZ Sing)", - "id": "i3qHp0XJOpU" - }, - { - "title": "Paula Abdul - Rush, Rush (Karaoke EZ Sing)", - "id": "orIwVhiJd-g" - }, - { - "title": "Bobby Vee - Take Good Care Of My Baby (Karaoke EZ Sing)", - "id": "WnZOIfSlPHY" - }, - { - "title": "Elton John - Rocket Man (Karaoke EZ Sing)", - "id": "7ohrwxDhiSE" - }, - { - "title": "Linda Ronstadt - Different Drum (Karaoke EZ Sing)", - "id": "MZxN5EXvcBU" - }, - { - "title": "Bobby Darin - Splish Splash (Karaoke EZ Sing)", - "id": "sh6xMAPGCUw" - }, - { - "title": "Willie Nelson - Always On My Mind (Karaoke EZ Sing)", - "id": "t9bHSP19Tcs" - }, - { - "title": "Urban Christmas - Jolly Old St. Nicholas (Karaoke EZ Sing)", - "id": "dBf3iCoft4o" - }, - { - "title": "Kentucky Headhunters - Skip A Rope (Karaoke EZ Sing)", - "id": "dPspWCy_2zg" - }, - { - "title": "Chicago - Just You And Me (Karaoke EZ Sing)", - "id": "0x2kRNz8OT8" - }, - { - "title": "Elvis Presley - Santa Bring My Baby Back (Karaoke EZ Sing)", - "id": "qSnzPtKVwwI" - }, - { - "title": "Chicago - Baby, What A Big Surprise (Karaoke EZ Sing)", - "id": "o-uuaCKtqVc" - }, - { - "title": "Dobie Gray - Drift Away (Karaoke EZ Sing)", - "id": "IQ6BhwZ8TjQ" - }, - { - "title": "Wilson Phillips - You're In Love (Karaoke EZ Sing)", - "id": "FUnoK7WZvNE" - }, - { - "title": "Four Seasons - Who Loves You (Karaoke EZ Sing)", - "id": "Jgi3t9vbGTA" - }, - { - "title": "Urban Christmas - Have Yourself A Merry Little Christmas (Karaoke EZ Sing)", - "id": "UxDff_CAJPY" - }, - { - "title": "Johnny Rivers - Tracks Of My Tears (Karaoke EZ Sing)", - "id": "tHCusFvrwpo" - }, - { - "title": "Chicago - Feelin' Stronger Every Day (Karaoke EZ Sing)", - "id": "WWEbGzYo-TA" - }, - { - "title": "Alabama - My Home's In Alabama (Karaoke EZ Sing)", - "id": "_b_FjlywObY" - }, - { - "title": "Richard Marx - Endless Summer Nights (Karaoke EZ Sing)", - "id": "WvKxQGWKhnA" - }, - { - "title": "Urban Christmas - Jingle Bells (Karaoke EZ Sing)", - "id": "CmZGT18kHPc" - }, - { - "title": "Club Nouveau - Lean On Me (Karaoke EZ Sing)", - "id": "yHn7aaK3v_w" - }, - { - "title": "Urban Christmas - O' Come All Ye Faithful (Karaoke EZ Sing)", - "id": "p9Pn9eFK87I" - }, - { - "title": "Urban Christmas - Let It Snow! (Karaoke EZ Sing)", - "id": "bcqoOsmVWPc" - }, - { - "title": "Kris Kristofferson - Why Me Lord (Karaoke EZ Sing)", - "id": "vHxcBJ0yURw" - }, - { - "title": "Marc Cohn - Walking In Memphis (Karaoke EZ Sing)", - "id": "LpvGAsjaxNA" - }, - { - "title": "Temptations - Get Ready (Karaoke EZ Sing)", - "id": "NRHKILzjNSY" - }, - { - "title": "Celine Dion - Where Does My Heart Beat Now (Karaoke EZ Sing)", - "id": "RxnQOPYyZh0" - }, - { - "title": "Janet Jackson - Love Will Never Do (Without You) (Karaoke EZ Sing)", - "id": "ugIpxWyMOJk" - }, - { - "title": "Firehouse - Love Of A Lifetime (Karaoke EZ Sing)", - "id": "JacJz_j_8vk" - }, - { - "title": "Jim Croce - Workin' At The Car Wash Blues (Karaoke EZ Sing)", - "id": "lvvthZirmZk" - }, - { - "title": "Wilson Phillips - Dream Is Still Alive (Karaoke EZ Sing)", - "id": "XNcJ5UWK1VE" - }, - { - "title": "Urban Christmas - O' Little Town Of Bethlehem (Karaoke EZ Sing)", - "id": "6SHlK4TLor4" - }, - { - "title": "Garth Brooks - Rodeo (Karaoke EZ Sing)", - "id": "m927ZevQKI4" - }, - { - "title": "Chicago - I've Been Searching So Long (Karaoke EZ Sing)", - "id": "6M2a46lZZTY" - }, - { - "title": "Bread - Everything I Own (Karaoke EZ Sing)", - "id": "R3mVB_w-WCE" - }, - { - "title": "Dolly Parton - Time For Me To Fly (Karaoke EZ Sing)", - "id": "CiCgarCBH30" - }, - { - "title": "Mark Collie - Calloused Hands (Karaoke EZ Sing)", - "id": "7KXMfm6U3jk" - }, - { - "title": "Kylie Minogue - The Loco-Motion (Karaoke)", - "id": "Noqd9T9UKnU" - }, - { - "title": "Jim Croce - One Less Set Of Footsteps (Karaoke EZ Sing)", - "id": "4I1ZdFR8Au0" - }, - { - "title": "Willie Nelson - City Of New Orleans (Karaoke EZ Sing)", - "id": "eIwzYdjlhYM" - }, - { - "title": "Mary Chapin Carpenter - Going Out Tonight (Karaoke EZ Sing)", - "id": "mCZpyrCrWb4" - }, - { - "title": "Conway Twitty - Don't Take It Away (Karaoke EZ Sing)", - "id": "JgyAxEeOGhI" - }, - { - "title": "Gospel Hymn (Southern) - Into His Presence (Karaoke EZ Sing)", - "id": "RftdxPJTGag" - }, - { - "title": "T. G. Sheppard - You Still Do (Karaoke EZ Sing)", - "id": "hwWEdlbWkdM" - }, - { - "title": "Oak Ridge Boys - Elvira (Karaoke EZ Sing)", - "id": "SdcFrKcf0Ak" - }, - { - "title": "Larry Verne - Mr. Custer (Karaoke EZ Sing)", - "id": "nt9iD-pK4tM" - }, - { - "title": "Everly Brothers - Till I Kissed Ya (Karaoke EZ Sing)", - "id": "Lk6HFThj3j0" - }, - { - "title": "Roy Acuff - Great Speckled Bird (Karaoke EZ Sing)", - "id": "ga5aFFmbLUA" - }, - { - "title": "Garth Brooks - Shameless (Karaoke EZ Sing)", - "id": "inqFlu9RplA" - }, - { - "title": "Carpenters - Hurting Each Other (Karaoke EZ Sing)", - "id": "C4YznRGptBI" - }, - { - "title": "Kathy Mattea - Asking Us To Dance (Karaoke EZ Sing)", - "id": "ZSbcbW2tvpQ" - }, - { - "title": "Mark Chesnutt - Broken Promise Land (Karaoke EZ Sing)", - "id": "pB5MI3nmCWs" - }, - { - "title": "Merle Haggard - A Working Man Can't Get Nowwhere Today (Karaoke EZ Sing)", - "id": "KpsS267bCHI" - }, - { - "title": "Restless Heart - You Can Depend On Me (Karaoke EZ Sing)", - "id": "ip5vkLX5JDA" - }, - { - "title": "Jose' Feliciano - Feliz Navidad (Karaoke EZ Sing)", - "id": "DNvC7Bpqwu4" - }, - { - "title": "Hal Ketchum - I Know Where Love Lives (Karaoke EZ Sing)", - "id": "8pvDYUMosf4" - }, - { - "title": "Carpenters - For All We Know (Karaoke EZ Sing)", - "id": "-43jCOL28Io" - }, - { - "title": "Bob Seger - Shakedown (Karaoke EZ Sing)", - "id": "UmP7uMJwZAA" - }, - { - "title": "Tammy Wynette - I'll See Him Through (Karaoke EZ Sing)", - "id": "02s1YE47wTY" - }, - { - "title": "Randy Travis - Honky Tonk Moon (Karaoke EZ Sing)", - "id": "AnkDKCEQQDQ" - }, - { - "title": "Chicago - Does Anybody Really Know What Time It Is (Karaoke EZ Sing)", - "id": "XF39zS-ptCM" - }, - { - "title": "Crystal Gayle - I'll Do It All Over Again (Karaoke EZ Sing)", - "id": "MWISfoUCoog" - }, - { - "title": "Dolly Parton - Take Me Back To The Country (Karaoke EZ Sing)", - "id": "eHzIQp5G5-I" - }, - { - "title": "Steve Winwood - Roll With It (Karaoke EZ Sing)", - "id": "u8hRLdCm8hw" - }, - { - "title": "Luther Vandross - Power Of Love/Love Power (Karaoke EZ Sing)", - "id": "pgYOg_RllZM" - }, - { - "title": "David Allan Coe - You Never Even Called Me By My Name (Karaoke EZ Sing)", - "id": "-qZSkQtCc4Q" - }, - { - "title": "EMF - Unbelievable (Karaoke EZ Sing)", - "id": "t0V2SJBwVW4" - }, - { - "title": "Aaron Neville - Everybody Plays The Fool (Karaoke EZ Sing)", - "id": "V0eedX3XKes" - }, - { - "title": "Johnny Ace - Pledging My Love (Karaoke EZ Sing)", - "id": "mUVhqXIe-rQ" - }, - { - "title": "Lorrie Morgan - A Picture Of Me Without You (Karaoke EZ Sing)", - "id": "PgeRNojM2o8" - }, - { - "title": "Heart - What About Love (Karaoke EZ Sing)", - "id": "mz9IHg0zMF8" - }, - { - "title": "Brenda Lee - Fool Number One (Karaoke EZ Sing)", - "id": "lip-7a_QZe8" - }, - { - "title": "Barbra Streisand - Way We Were (Karaoke EZ Sing)", - "id": "Dpt0qmadHSY" - }, - { - "title": "Gospel Hymn (Southern) - Sailing Away (Karaoke EZ Sing)", - "id": "FLzL2xha-UU" - }, - { - "title": "Connie Francis - Who's Sorry Now (Karaoke EZ Sing)", - "id": "QrokuHOiNgs" - }, - { - "title": "Traditional Christmas - Angels We Have Heard On High (Karaoke EZ Sing)", - "id": "SrR9mRB1G6o" - }, - { - "title": "Randy Travis - Old 8 X 10 (Karaoke EZ Sing)", - "id": "SeXHSXEUlyM" - }, - { - "title": "Del Shannon - Runaway (Karaoke EZ Sing)", - "id": "F9gL_xhJbXg" - }, - { - "title": "Linda Ronstadt - How Do I Make You (Karaoke EZ Sing)", - "id": "luM4wHBenec" - }, - { - "title": "Pointer Sisters - I'm So Excited (Karaoke EZ Sing)", - "id": "AHOyWeV1wrQ" - }, - { - "title": "Hank Williams Jr. - If It Will It Will (Karaoke EZ Sing)", - "id": "6xR9YziT08E" - }, - { - "title": "Drifters - On Broadway (Karaoke EZ Sing)", - "id": "dgQHaCvx2cc" - }, - { - "title": "Mike Reid - As Simple As That (Karaoke EZ Sing)", - "id": "l4dCa2ljKnc" - }, - { - "title": "Ricky Van Shelton - Somebody Lied (Karaoke EZ Sing)", - "id": "5clOpQ5fGx0" - }, - { - "title": "Ricky Van Shelton - I'll Leave This World Loving You (Karaoke EZ Sing)", - "id": "0Sy750jAOus" - }, - { - "title": "En Vogue - Don't Go (Karaoke EZ Sing)", - "id": "r09HiqF0ZXU" - }, - { - "title": "George Strait - You Know Me Better Than That (Karaoke EZ Sing)", - "id": "oyuFZ5szyiE" - }, - { - "title": "Petula Clark - Downtown (Karaoke EZ Sing)", - "id": "wRcYxyuhC7Q" - }, - { - "title": "Lee Greenwood & Suzy Bogguss - Hopelessly Yours (Karaoke EZ Sing)", - "id": "ZZyGMYfANxA" - }, - { - "title": "Captain & Tennille - Do That To Me One More Time (Karaoke EZ Sing)", - "id": "LIEnKkj7quE" - }, - { - "title": "Chubby Checker - Let's Twist Again (Karaoke EZ Sing)", - "id": "PFveb4KDHgY" - }, - { - "title": "Hal Ketchum - Small Town Saturday Night (Karaoke EZ Sing)", - "id": "n3rGIMN8blk" - }, - { - "title": "Clinton Gregory - One Shot At A Time (Karaoke EZ Sing)", - "id": "BscIzPcsxno" - }, - { - "title": "Otis Day & The Knights - Shout (Karaoke EZ Sing)", - "id": "sFfCxCFOXQo" - }, - { - "title": "Highway 101 - Bing Bang Boom (Karaoke EZ Sing)", - "id": "9f5Zgy9gV6c" - }, - { - "title": "Jimmy Buffett - Come Monday (Karaoke EZ Sing)", - "id": "iUhGoR8YfFI" - }, - { - "title": "Joe Diffie - If The Devil Danced (In Empty Pockets) (Karaoke EZ Sing)", - "id": "5AekU33JeQ8" - }, - { - "title": "Alabama - Mountain Music (Karaoke EZ Sing)", - "id": "2GMGjxXk7yU" - }, - { - "title": "James Brown - I Got You (I Feel Good) (Karaoke EZ Sing)", - "id": "hP8bXoLrTjE" - }, - { - "title": "Ronnie Milsap - Don't You Ever Get Tired (Of Hurting Me) (Karaoke EZ Sing)", - "id": "jDe2bIkRGT4" - }, - { - "title": "New Kids On The Block - Cover Girl (Karaoke EZ Sing)", - "id": "OLU4x06l77s" - }, - { - "title": "Jim Croce - I'll Have To Say I Love You In A Song (Karaoke EZ Sing)", - "id": "ygS4t9LgTpE" - }, - { - "title": "Patty Loveless - Blue Memories (Karaoke EZ Sing)", - "id": "5WtAwvpgoTw" - }, - { - "title": "Slaughter - Fly To The Angels (Karaoke EZ Sing)", - "id": "oM0fXCya1oc" - }, - { - "title": "Merle Haggard - If We're Not Back In Love By Monday (Karaoke EZ Sing)", - "id": "uwKNNMPu998" - }, - { - "title": "Reba McEntire - Fallin' Out Of Love (Karaoke EZ Sing)", - "id": "2jpaRPayY2M" - }, - { - "title": "Winger - Can't Get Enuff (Karaoke EZ Sing)", - "id": "o0eosbGFSyc" - }, - { - "title": "Whitney Houston - I'm Your Baby Tonight (Karaoke EZ Sing)", - "id": "M0EGz9l9CoE" - }, - { - "title": "Jann Browne - It Only Hurts When I Laugh (Karaoke EZ Sing)", - "id": "P_ZLPOJypTs" - }, - { - "title": "Elvis Presley - It's Now Or Never (Karaoke EZ Sing)", - "id": "iF_H6o5AeI0" - }, - { - "title": "Roy Orbison - It's Over (Karaoke EZ Sing)", - "id": "jtbcOz_sO_Q" - }, - { - "title": "Kentucky Headhunters - With Body and Soul (Karaoke EZ Sing)", - "id": "UIL9bxr7evM" - }, - { - "title": "Loretta Lynn, Conway Twitty - Lead Me On (Karaoke EZ Sing)", - "id": "0NkL2jd8qdI" - }, - { - "title": "Merle Haggard - I Think I'll Just Stay Here And Drink (Karaoke EZ Sing)", - "id": "A2HIyeutRD0" - }, - { - "title": "Whitney Houston - Saving All My Love For You (Karaoke EZ Sing)", - "id": "2ToT5GwHRAU" - }, - { - "title": "Juice Newton - Angel Of The Morning (Karaoke EZ Sing)", - "id": "GdF0YXpd3HE" - }, - { - "title": "Frankie Valli - My Eyes Adored You (Karaoke EZ Sing)", - "id": "WybzyIXZzMY" - }, - { - "title": "Bruce Hornsby & The Range - Way It Is (The Way It Is) (Karaoke EZ Sing)", - "id": "mE3zmqfjRio" - }, - { - "title": "Waylon Jennings - Mammas Don't Let Your Babies Grow Up To Be Cowboys (Karaoke EZ Sing)", - "id": "u_MA4Fze6iU" - }, - { - "title": "Cher - Shoop Shoop Song (It's In His Kiss) (Karaoke EZ Sing)", - "id": "6Qy8A3zF28w" - }, - { - "title": "Bad English - When I See You Smile (Karaoke EZ Sing)", - "id": "npFe7wcAd9U" - }, - { - "title": "Commodores - Three Times A Lady (Karaoke EZ Sing)", - "id": "J8h8UA8ywTo" - }, - { - "title": "Pirates Of The Mississippi - Feed Jake (Karaoke EZ Sing)", - "id": "C5c8pbFxdzQ" - }, - { - "title": "Connie Francis - Where The Boys Are (Karaoke EZ Sing)", - "id": "UqTJjr6x-gw" - }, - { - "title": "Ricky Nelson - Teenage Idol (Karaoke EZ Sing)", - "id": "yc0e6xyZsVU" - }, - { - "title": "Steve Green - Household Of Faith (Karaoke EZ Sing)", - "id": "gx7G7xbBESU" - }, - { - "title": "Vince Gill - Liza Jane (Karaoke EZ Sing)", - "id": "cMxpP5Plq9Q" - }, - { - "title": "Merle Haggard - Working Man Blues (Karaoke EZ Sing)", - "id": "ZslcYHmJbTI" - }, - { - "title": "Sweethearts Of The Rodeo - This Heart (Karaoke EZ Sing)", - "id": "YkIrbqlQW4Y" - }, - { - "title": "Randy Travis - Deeper Than The Holler (Karaoke EZ Sing)", - "id": "xgLi0WHCBNM" - }, - { - "title": "Eddie Rabbitt - Drivin' My Life Away (Karaoke EZ Sing)", - "id": "7IfAI6c3Mv8" - }, - { - "title": "Suzy Bogguss - Cross My Broken Heart (Karaoke EZ Sing)", - "id": "70sAT_vf2h0" - }, - { - "title": "Expose - Seasons Change (Karaoke EZ Sing)", - "id": "Gt_Ql9rZTPQ" - }, - { - "title": "Eddy Arnold - What's He Doing In My World (Karaoke EZ Sing)", - "id": "oZfkg65P_CQ" - }, - { - "title": "Barbara Mandrell - Satisfied (Karaoke EZ Sing)", - "id": "fgVyepH5yqo" - }, - { - "title": "Roy Rogers - Happy Trails (Karaoke EZ Sing)", - "id": "mMB92dkpsg4" - }, - { - "title": "Was (Not Was) - Walk The Dinosaur (Karaoke EZ Sing)", - "id": "VRfcKU3Gezo" - }, - { - "title": "Beatles - This Boy (Karaoke EZ Sing)", - "id": "Fg4gv-SBHlM" - }, - { - "title": "Willie Nelson - Whiskey River (Karaoke EZ Sing)", - "id": "l2HZJgUZ94Y" - }, - { - "title": "Tammy Wynette - Kids Say The Darndest Things (Karaoke EZ Sing)", - "id": "QtL2Xs-X_kQ" - }, - { - "title": "Roy Orbison - Running Scared (Karaoke EZ Sing)", - "id": "2OVVp6AXE1I" - }, - { - "title": "Elvis Presley - One Night (Karaoke EZ Sing)", - "id": "2Ftp9srwZC8" - }, - { - "title": "Neil Sedaka - Happy Birthday Sweet Sixteen (Karaoke EZ Sing)", - "id": "n1TTYd9YRAA" - }, - { - "title": "Pat Benatar - We Belong (Karaoke EZ Sing)", - "id": "1Fj8FJgoJDM" - }, - { - "title": "Temptations - Ain't Too Proud To Beg (Karaoke EZ Sing)", - "id": "5hlh0T31dqM" - }, - { - "title": "Neil Sedaka - Calendar Girl (Karaoke EZ Sing)", - "id": "eoiCilbrTGc" - }, - { - "title": "Exile - Yet (Karaoke EZ Sing)", - "id": "4f0p7vy2vgA" - }, - { - "title": "Forester Sisters - Men (Karaoke EZ Sing)", - "id": "XUfp2fMw2mY" - }, - { - "title": "Supremes - Stop! In The Name Of Love (Karaoke EZ Sing)", - "id": "stBQrIc_TVE" - }, - { - "title": "Glen Campbell - Galveston (Karaoke EZ Sing)", - "id": "cX4TE6HfAcE" - }, - { - "title": "Ronnie McDowell - Watchin' Girls Go By (Karaoke EZ Sing)", - "id": "Wxv5dj34huo" - }, - { - "title": "Jan & Dean - Little Old Lady From Pasadena (Karaoke EZ Sing)", - "id": "j89jk37w_Uk" - }, - { - "title": "Emmylou Harris - Beneath Still Waters (Karaoke EZ Sing)", - "id": "P1cCuoiFsCU" - }, - { - "title": "Paula Abdul - (It's Just) The Way That You Love Me (Karaoke EZ Sing)", - "id": "sVR-FHBvzmA" - }, - { - "title": "Holly Dunn - Are You Ever Gonna Love Me (Karaoke EZ Sing)", - "id": "dLCvrrEvUZU" - }, - { - "title": "Little Richard - Lucille (Karaoke EZ Sing)", - "id": "vjJ9rX1ggTI" - }, - { - "title": "Anne Murray - Love Song (A Love Song) (Karaoke EZ Sing)", - "id": "DGBMKd36tCg" - }, - { - "title": "Barbara Mandrell - Only A Lonely Heart Knows (Karaoke EZ Sing)", - "id": "2JPy3J9vQcg" - }, - { - "title": "Forester Sisters - You Again (Karaoke EZ Sing)", - "id": "v4zCawPpSDs" - }, - { - "title": "George Jones & Tammy Wynette - Two Story House (Karaoke EZ Sing)", - "id": "-1_tm4k62Jw" - }, - { - "title": "Mark Chesnutt - Blame It On Texas (Karaoke EZ Sing)", - "id": "-Al9L1tV_08" - }, - { - "title": "Ricky Van Shelton - Life's Little Ups And Down's (Karaoke EZ Sing)", - "id": "pH8Ss-8Z-bY" - }, - { - "title": "Randy Travis - Heroes And Friends (Karaoke EZ Sing)", - "id": "OVs4rb3Dde4" - }, - { - "title": "Four Tops - It's The Same Old Song (Karaoke EZ Sing)", - "id": "9tQrQtIWRYU" - }, - { - "title": "Pam Tillis - Don't Tell Me What To Do (Karaoke EZ Sing)", - "id": "Hy65Iv-isD4" - }, - { - "title": "George Benson - Nothing's Gonna Change My Love For You (Karaoke EZ Sing)", - "id": "dJV81g7X_T0" - }, - { - "title": "Phil Collins - Groovy Kind Of Love (Karaoke EZ Sing)", - "id": "-5vtE374ReI" - }, - { - "title": "Julio Iglesias & Willie Nelson - To All The Girls I've Loved Before (Karaoke EZ Sing)", - "id": "xO-ZVBhP3pM" - }, - { - "title": "Robert Palmer - I Didn't Mean To Turn You On (Karaoke EZ Sing)", - "id": "8soZfmE3J4U" - }, - { - "title": "Temptations - I Wish It Would Rain (Karaoke EZ Sing)", - "id": "r4MjL9UiubI" - }, - { - "title": "Frank Sinatra - New York, New York (Karaoke EZ Sing)", - "id": "-dBBrYHWKDQ" - }, - { - "title": "Ricky Nelson - Poor Little Fool (Karaoke EZ Sing)", - "id": "7aCSt5dkcxk" - }, - { - "title": "Barbara Mandrell - Happy Birthday Dear Heartache (Karaoke EZ Sing)", - "id": "XDYtYWn33J4" - }, - { - "title": "Bangles - Eternal Flame (Karaoke EZ Sing)", - "id": "aE4xC_Ro-Og" - }, - { - "title": "Mickey Gilley - That's All That Matters (Karaoke EZ Sing)", - "id": "ZzwToSytfvU" - }, - { - "title": "Keith Whitley - Talk To Me Texas (Karaoke EZ Sing)", - "id": "HZwIWcOGeqA" - }, - { - "title": "Great White - Once Bitten, Twice Shy (Karaoke EZ Sing)", - "id": "5pntm2rbhUU" - }, - { - "title": "Four Tops - I Can't Help Myself (Sugar Pie, Honey Bunch) (Karaoke EZ Sing)", - "id": "Kzr2mndNCI0" - }, - { - "title": "Gene Vincent - Be-Bop-A-Lula (Karaoke)", - "id": "tCLiEShWRc8" - }, - { - "title": "Roger Miller - Dang Me (Karaoke EZ Sing)", - "id": "Hgv7b7YRDYA" - }, - { - "title": "En Vogue - Hold On (Karaoke EZ Sing)", - "id": "og8LpjYLDno" - }, - { - "title": "Tammy Wynette - Stand By Your Man (Karaoke EZ Sing)", - "id": "JRmIRAaQjQA" - }, - { - "title": "George Strait - Overnight Success (Karaoke EZ Sing)", - "id": "YxobND1up60" - }, - { - "title": "Hank Williams - Lovesick Blues (Karaoke EZ Sing)", - "id": "TR7nVcGX4PI" - }, - { - "title": "Fats Domino - I'm Walkin' (Karaoke EZ Sing)", - "id": "Gvw-TsH99uQ" - }, - { - "title": "Roger Miller - You Can't Roller Skate In A Buffalo Herd (Karaoke EZ Sing)", - "id": "O3PfLcLTC9k" - }, - { - "title": "Ricky Van Shelton - Don't We All Have The Right (Karaoke EZ Sing)", - "id": "IMErhv2u78g" - }, - { - "title": "Carpenters - Please Mr. Postman (Karaoke EZ Sing)", - "id": "0ntZGHLNDzQ" - }, - { - "title": "Luther Vandross - Here And Now (Karaoke EZ Sing)", - "id": "VJOVhHmtq6c" - }, - { - "title": "Elvis Presley - Swing Down Sweet Chariot (Karaoke EZ Sing)", - "id": "Z8PDI06_a_w" - }, - { - "title": "Eddie Rabbitt & Crystal Gayle - You And I (Karaoke EZ Sing)", - "id": "XzSzLf9GgGA" - }, - { - "title": "Tom T. Hall - Faster Horses (The Cowboy And The Poet) (Karaoke EZ Sing)", - "id": "j612WaBOCQ4" - }, - { - "title": "Ricky Nelson - Lonesome Town (Karaoke EZ Sing)", - "id": "ySLchLw_DjA" - }, - { - "title": "Merle Haggard - Today I Started Loving You Again (Karaoke EZ Sing)", - "id": "WLRVZVqyIFc" - }, - { - "title": "Ricky Nelson - Garden Party (Karaoke EZ Sing)", - "id": "cEL9O9ImR0E" - }, - { - "title": "Ronnie McDowell - The King Is Gone (Karaoke)", - "id": "18Uwf4wzbL0" - }, - { - "title": "Tony Bennett - Blue Moon (Karaoke EZ Sing)", - "id": "p6gv7bxrKSI" - }, - { - "title": "Loretta Lynn & Conway Twitty - After The Fire Is Gone (Karaoke EZ Sing)", - "id": "ty--vZJ4TYg" - }, - { - "title": "Monotones - Book Of Love (Karaoke)", - "id": "uAWU6vKdMqQ" - }, - { - "title": "Tony Bennett - I Left My Heart In San Francisco (Karaoke EZ Sing)", - "id": "C7DgsNOeu8o" - }, - { - "title": "Pat Boone - April Love (Karaoke EZ Sing)", - "id": "IeQ8cW9N50s" - }, - { - "title": "Contours - Do You Love Me (Karaoke EZ Sing)", - "id": "vMqyoULPpSQ" - }, - { - "title": "Willie Nelson - Angel Flying Too Close To The Ground (Karaoke EZ Sing)", - "id": "sxD7mwZLtaA" - }, - { - "title": "Eddie Rabbitt - Suspicions (Karaoke EZ Sing)", - "id": "g_PrS1Jfu2w" - }, - { - "title": "Roger Miller - Chug-a-lug (Karaoke)", - "id": "iLjUFif032A" - }, - { - "title": "Brenda Lee - Too Many Rivers (Karaoke EZ Sing)", - "id": "GzCVA4hgwMU" - }, - { - "title": "Elvis Presley - In The Ghetto (Karaoke EZ Sing)", - "id": "h5qRljNytLM" - }, - { - "title": "Ritchie Valens - Come On, Let's Go (Karaoke EZ Sing)", - "id": "s_0pdKp65DE" - }, - { - "title": "Hank Williams - I'm So Lonesome I Could Cry (Karaoke EZ Sing)", - "id": "RMuowLk0g2Y" - }, - { - "title": "Ricky Nelson - Travelin' Man (Karaoke EZ Sing)", - "id": "Kw38wUxzcms" - }, - { - "title": "Four Tops - Baby I Need Your Lovin' (Karaoke EZ Sing)", - "id": "B8v7EJ1GgM0" - }, - { - "title": "Mary Chapin Carpenter - This Shirt (Karaoke EZ Sing)", - "id": "8V0ap0MGSDk" - }, - { - "title": "UB40 - Red Red Wine (Karaoke EZ Sing)", - "id": "vv-oGxVuHnI" - }, - { - "title": "Helen Reddy - You And Me Against The World (Karaoke EZ Sing)", - "id": "c_GC9dHlfFE" - }, - { - "title": "Ronnie McDowell - Older Women (Karaoke EZ Sing)", - "id": "q393O5ratFM" - }, - { - "title": "Charley Pride - Is Anybody Goin' To San Antone (Karaoke EZ Sing)", - "id": "dmFqc9re0r4" - }, - { - "title": "Alabama - If I Had You (Karaoke EZ Sing)", - "id": "tsm4pgQEbNI" - }, - { - "title": "Hank Williams - Jambalaya (On The Bayou) (Karaoke EZ Sing)", - "id": "1FR98T9kzkk" - }, - { - "title": "Anne Murray - Snowbird (Karaoke EZ Sing)", - "id": "xuTasqdY_G8" - }, - { - "title": "Don Williams - I Believe In You (Karaoke EZ Sing)", - "id": "s9syKDr0Jto" - }, - { - "title": "Janis Joplin - Me And Bobby McGee (Karaoke EZ Sing)", - "id": "GpQ01x-a1tY" - }, - { - "title": "Kim Wilde - You Keep Me Hangin' On (Karaoke EZ Sing)", - "id": "UiN0KevotYE" - }, - { - "title": "Willie Nelson - On The Road Again (Karaoke EZ Sing)", - "id": "8Hf3C5FzUDs" - }, - { - "title": "Roxette - It Must Have Been Love (Karaoke EZ Sing)", - "id": "D3gLOlABNdg" - }, - { - "title": "Heart - Alone (Karaoke EZ Sing)", - "id": "XRTB7Ku89IM" - }, - { - "title": "Patsy Cline - When I Get Thru With You (Karaoke EZ Sing)", - "id": "76aw4KOfDNQ" - }, - { - "title": "George Jones & Tammy Wynette - We Loved It Away (Karaoke EZ Sing)", - "id": "m4re8eTB320" - }, - { - "title": "Jim Reeves - Welcome To My World (Karaoke EZ Sing)", - "id": "GwqjQCoR1L4" - }, - { - "title": "Patsy Cline - Imagine That (Karaoke EZ Sing)", - "id": "ZPxC43PfVxU" - }, - { - "title": "Hank Williams - I Can't Help It If I'm Still In Love With You (Karaoke EZ Sing)", - "id": "uFmnGP9Piro" - }, - { - "title": "Carole King - I Feel The Earth Move (Karaoke EZ Sing)", - "id": "gDD6WoL6N7g" - }, - { - "title": "Roger Miller - King Of The Road (Karaoke EZ Sing)", - "id": "tdGMiW8t22k" - }, - { - "title": "Neil Sedaka - Breaking Up Is Hard To Do (Karaoke EZ Sing)", - "id": "FsN_1chb7T0" - }, - { - "title": "Janie Fricke - Don't Worry 'Bout Me Baby (Karaoke EZ Sing)", - "id": "fTl2mk2pz8A" - }, - { - "title": "Tanya Tucker - Jamestown Ferry (Karaoke EZ Sing)", - "id": "CpQSN9-T0mY" - }, - { - "title": "Johnny Duncan - She Can Put Her Shoes (Under My Bed Anytime) (Karaoke EZ Sing)", - "id": "cCO0HsqsTL0" - }, - { - "title": "Ricky Skaggs - Highway 40 Blues (Karaoke EZ Sing)", - "id": "6aZWdSUYSY4" - }, - { - "title": "Chad Brock - Ordinary Life (Karaoke EZ Sing)", - "id": "nBvGERXEKv0" - }, - { - "title": "Reba McEntire - Rumor Has It (Karaoke EZ Sing)", - "id": "SG4tECyej_I" - }, - { - "title": "Shenandoah - Ghost In This House (Karaoke EZ Sing)", - "id": "Swx30Ctqt_g" - }, - { - "title": "Lionel Cartwright - Like Father Like Son (Karaoke EZ Sing)", - "id": "tWnuNHPmPA8" - }, - { - "title": "Merle Haggard - When It Rains It Pours (Karaoke EZ Sing)", - "id": "-iPbkaiJchY" - }, - { - "title": "Ronnie Milsap - Pure Love (Karaoke EZ Sing)", - "id": "RV560i9Te_g" - }, - { - "title": "Hank Williams - Why Don't You Love Me (Karaoke EZ Sing)", - "id": "EG0niK7-XpQ" - }, - { - "title": "Doug Stone - These Lips Don't Know How To Say Goodbye (Karaoke EZ Sing)", - "id": "uYvUvYLUWvk" - }, - { - "title": "Madonna - Like A Virgin (Karaoke EZ Sing)", - "id": "ho74nJQdqgI" - }, - { - "title": "Hank Williams - Take These Chains From My Heart (Karaoke EZ Sing)", - "id": "al1Q2RrVfOw" - }, - { - "title": "Michael Bolton - How Am I Supposed To Live Without You (Karaoke EZ Sing)", - "id": "kRr6HPv8Wjo" - }, - { - "title": "Crystal Gayle - Why Have You Left The One You Left Me For (Karaoke EZ Sing)", - "id": "MSJj3utbaxs" - }, - { - "title": "Janet Jackson - Miss You Much (Karaoke EZ Sing)", - "id": "nq9aOiKxPq8" - }, - { - "title": "Carole King - It's Too Late (Karaoke EZ Sing)", - "id": "gGxyIt_5C70" - }, - { - "title": "Nitty Gritty Dirt Band - You Made Life Good Again (Karaoke EZ Sing)", - "id": "vJCiYJ2iTZE" - }, - { - "title": "T. Graham Brown - Moonshadow Road (Karaoke EZ Sing)", - "id": "pFKdmO5ZAeA" - }, - { - "title": "Restless Heart - When Somebody Loves You (Karaoke EZ Sing)", - "id": "VsYSjHjicnU" - }, - { - "title": "Holly Dunn - You Really Had Me Going (Karaoke EZ Sing)", - "id": "oLaTpb_EJsE" - }, - { - "title": "Mark Chesnutt - Too Cold At Home (Karaoke EZ Sing)", - "id": "HcnJCSpbH_U" - }, - { - "title": "Garth Brooks - Friends In Low Places (Karaoke EZ Sing)", - "id": "uV_lBHp-ycQ" - }, - { - "title": "Conway Twitty - Crazy In Love (Karaoke EZ Sing)", - "id": "COLCQ0HzeMQ" - }, - { - "title": "Patsy Cline - Half As Much (Karaoke EZ Sing)", - "id": "bchkgNStq5Y" - }, - { - "title": "Bowling For Soup - When We Die (Karaoke)", - "id": "SjqrXHO-92c" - }, - { - "title": "Of Monsters And Men - Hunger (Karaoke)", - "id": "i_Ie4Mcmx6I" - }, - { - "title": "Train - When I Look To The Sky (Karaoke)", - "id": "fxrmC-0fbYQ" - }, - { - "title": "Mudvayne - Not Falling (Karaoke)", - "id": "Ys4W0vfv6_4" - }, - { - "title": "Billy \"Crash\" Craddock - Ruby, Baby (Karaoke)", - "id": "yKhiP4vN5D0" - }, - { - "title": "Alabama - Dixieland Delight (Karaoke)", - "id": "I6rgQA4RMmk" - }, - { - "title": "Kelly Clarkson - A Moment Like This (Karaoke)", - "id": "ylnNalc6-60" - }, - { - "title": "Paula Abdul - The Way That You Love Me (Karaoke)", - "id": "Q-AS7ktPUcY" - }, - { - "title": "Dolly Parton - You're The Only One (Karaoke EZ Sing)", - "id": "SAxvb1C2kmA" - }, - { - "title": "Keith Harling - Write It In Stone (Karaoke EZ Sing)", - "id": "QHuKB0gCyiY" - }, - { - "title": "Dixie Chicks - You Were Mine (Karaoke EZ Sing)", - "id": "aIfLvXrjhIw" - }, - { - "title": "Don Williams - Stay Young (Karaoke EZ Sing)", - "id": "5-yxUD53WtU" - }, - { - "title": "Merle Haggard - Natural High (Karaoke EZ Sing)", - "id": "7JzNi4_DhUE" - }, - { - "title": "Billy Ray Cyrus - Busy Man (Karaoke EZ Sing)", - "id": "JSazbkHcZjo" - }, - { - "title": "Tanya Tucker - Here's Some Love (Karaoke EZ Sing)", - "id": "lasoEtLfNMs" - }, - { - "title": "Patty Loveless - Can't Get Enough (Karaoke EZ Sing)", - "id": "A3J1sWaxlRg" - }, - { - "title": "Marty Robbins - El Paso City (Karaoke EZ Sing)", - "id": "cmT83e61BrE" - }, - { - "title": "Mark Chesnutt - I Don't Want To Miss A Thing (Karaoke EZ Sing)", - "id": "6ZXDHtgNl0w" - }, - { - "title": "Mindy McCready - Let's Talk About Love (Karaoke EZ Sing)", - "id": "q6CK624RS6s" - }, - { - "title": "Rosanne Cash - My Baby Thinks He's A Train (Karaoke EZ Sing)", - "id": "NB8GDIik28k" - }, - { - "title": "Hank Williams Jr. - Dixie On My Mind (Karaoke EZ Sing)", - "id": "Zgoiunfa3XA" - }, - { - "title": "Johnny Lee - One In A Million (Karaoke EZ Sing)", - "id": "-vtEBelj0yQ" - }, - { - "title": "Don Williams - Lord, I Hope This Day Is Good (Karaoke EZ Sing)", - "id": "NRpifVynkXo" - }, - { - "title": "Bill Engvall - I'm A Cowboy (Karaoke EZ Sing)", - "id": "aZj-iloVom0" - }, - { - "title": "Allison Moorer - Alabama Song (Karaoke EZ Sing)", - "id": "Fkd8j1wW-40" - }, - { - "title": "Mickey Gilley - Fool For Your Love (Karaoke EZ Sing)", - "id": "M-p6sKcq1dQ" - }, - { - "title": "Rosanne Cash - I Don't Know Why You Don't Want Me (Karaoke EZ Sing)", - "id": "KWmFdiBRvSA" - }, - { - "title": "John Michael Montgomery - Hold On To Me (Karaoke EZ Sing)", - "id": "GYurt6LxYz4" - }, - { - "title": "Jo Dee Messina - Stand Beside Me (Karaoke EZ Sing)", - "id": "n2HFsqlXVDY" - }, - { - "title": "George Jones - I Always Get Lucky With You (Karaoke EZ Sing)", - "id": "QJlqNouYAMY" - }, - { - "title": "Molly Hatchet - Dreams Iโ€™ll Never See (Karaoke)", - "id": "DxtTFYARnxg" - }, - { - "title": "Europe - Carrie (Karaoke)", - "id": "k6NKxpJinKg" - }, - { - "title": "Motley Crue - Smokin' In The Boys Room (Karaoke EZ Sing)", - "id": "J2ejprwsR_U" - }, - { - "title": "Tiffany - I Think We're Alone Now (Karaoke EZ Sing)", - "id": "t28c8A194gw" - }, - { - "title": "Janie Fricke - Tell Me A Lie (Karaoke EZ Sing)", - "id": "scLopf99thM" - }, - { - "title": "Whitney Houston - So Emotional (Karaoke EZ Sing)", - "id": "o8gvN8X94Ss" - }, - { - "title": "Tammy Wynette - I Don't Wanna Play House (Karaoke EZ Sing)", - "id": "QJi2opj4kAY" - }, - { - "title": "Fats Domino - I Want To Walk You Home (Karaoke EZ Sing)", - "id": "QUYravM6Xl4" - }, - { - "title": "Tammy Wynette - Your Good Girl's Gonna Go Bad (Karaoke EZ Sing)", - "id": "I8i7VhZrBqY" - }, - { - "title": "Tom T. Hall - I Love (Karaoke EZ Sing)", - "id": "XAurXy3HEYE" - }, - { - "title": "Holly Dunn - Daddy's Hands (Karaoke EZ Sing)", - "id": "SVu5iU5er5U" - }, - { - "title": "Alabama - Pass It On Down (Karaoke EZ Sing)", - "id": "IkKFOltzyR8" - }, - { - "title": "Tanya Tucker - My Arms Stay Open All Night (Karaoke EZ Sing)", - "id": "F5r63cVCp8k" - }, - { - "title": "Lorrie Morgan - I'll Take The Memories (Karaoke EZ Sing)", - "id": "LkkH-5oyiv4" - }, - { - "title": "George Strait - Ocean Front Property (Karaoke EZ Sing)", - "id": "FeFkY1Psdac" - }, - { - "title": "Elvis Presley - Moody Blue (Karaoke EZ Sing)", - "id": "q12IDN9qv6s" - }, - { - "title": "Troggs - Wild Thing (Karaoke EZ Sing)", - "id": "OaeKzOraJS0" - }, - { - "title": "Charlie Rich - Rollin' With The Flow (Karaoke EZ Sing)", - "id": "ASalY1U1fPE" - }, - { - "title": "K. T. Oslin - I'll Always Come Back (Karaoke EZ Sing)", - "id": "WZuQ01b3K2c" - }, - { - "title": "George Strait - The Chair (Karaoke EZ Sing)", - "id": "n3Zf3xMV7Sc" - }, - { - "title": "Linda Ronstadt - When Will I Be Loved (Karaoke EZ Sing)", - "id": "GDsdDkbIJrs" - }, - { - "title": "Pee Wee King - Tennessee Waltz (Karaoke EZ Sing)", - "id": "JoiCeXDANYg" - }, - { - "title": "Fats Domino - Whole Lotta Loving (Karaoke EZ Sing)", - "id": "HEe1_7Too4E" - }, - { - "title": "Ben E. King - Stand By Me (Karaoke EZ Sing)", - "id": "slcuXuPPN4o" - }, - { - "title": "George Jones - Race Is On (Karaoke EZ Sing)", - "id": "pibuvF2qL44" - }, - { - "title": "Eddie Rabbitt - I Love A Rainy Night (Karaoke EZ Sing)", - "id": "Gp1tLAwwUUk" - }, - { - "title": "Reba McEntire - Somebody Should Leave (Karaoke EZ Sing)", - "id": "7sF7iorb1Qc" - }, - { - "title": "Randy Travis - Diggin' Up Bones (Karaoke EZ Sing)", - "id": "-CdV9nqNRS4" - }, - { - "title": "Roy Orbison - Blue Bayou (Karaoke EZ Sing)", - "id": "hz1uWa6WnEA" - }, - { - "title": "Patsy Cline - She's Got You (Karaoke EZ Sing)", - "id": "Y39irQLwek4" - }, - { - "title": "Elvis Presley - Suspicious Minds (Karaoke EZ Sing)", - "id": "c2zV4m2XJ4Y" - }, - { - "title": "Roy Orbison - Only The Lonely (Karaoke EZ Sing)", - "id": "g1gUcy7A6t0" - }, - { - "title": "Restless Heart - A Tender Lie (Karaoke EZ Sing)", - "id": "5l9yS_6Ds64" - }, - { - "title": "Conway Twitty - Linda On My Mind (Karaoke EZ Sing)", - "id": "DipF0tZXd-s" - }, - { - "title": "Waylon Jennings - I've Always Been Crazy (Karaoke EZ Sing)", - "id": "qiue7GgwC7o" - }, - { - "title": "Georges Strait - Famous Last Words Of A Fool (Karaoke EZ Sing)", - "id": "UN9wSOUFcYE" - }, - { - "title": "Elvis Presley - Jailhouse Rock (Karaoke EZ Sing)", - "id": "A95bKiwefNQ" - }, - { - "title": "Elvis Presley - Heartbreak Hotel (Karaoke EZ Sing)", - "id": "-TAPkI5sj1Y" - }, - { - "title": "Gloria Estefan & Miami Sound Machine - Anything For You (Karaoke EZ Sing)", - "id": "D3sOW4LmoCk" - }, - { - "title": "Keith Whitley - I Wonder Do You Think Of Me (Karaoke EZ Sing)", - "id": "xU-29CKCLjA" - }, - { - "title": "Lloyd Price - Lawdy Miss Clawdy (Karaoke EZ Sing)", - "id": "5OSM7v611wE" - }, - { - "title": "Reba McEntire - I Know How He Feels (Karaoke EZ Sing)", - "id": "UBvM7McRE2o" - }, - { - "title": "George Strait - All My Ex's Live In Texas (Karaoke EZ Sing)", - "id": "fqHJfYlFo9A" - }, - { - "title": "Elvis Presley - American Trilogy (Karaoke EZ Sing)", - "id": "AgaFH9zksrg" - }, - { - "title": "Tammy Wynette - D.I.V.O.R.C.E. (Karaoke EZ Sing)", - "id": "ANUcVFVlcsk" - }, - { - "title": "George Strait - Does Ft. Worth Ever Cross Your mind (Karaoke EZ Sing)", - "id": "UfDu0lOHLjw" - }, - { - "title": "Roy Orbison - Oh, Pretty Woman (Karaoke EZ Sing)", - "id": "TVSCfzS-DHo" - }, - { - "title": "Crystal Gayle - Don't It Make My Brown Eyes Blue (Karaoke EZ Sing)", - "id": "S80_0wBS9yE" - }, - { - "title": "Willie Nelson - Blue Eyes Cryin' In The Rain (Karaoke EZ Sing)", - "id": "vBZHlxk8Lrs" - }, - { - "title": "Sammi Smith - Help Me Make It Through The Night (Karaoke EZ Sing)", - "id": "cPTSGjkx52g" - }, - { - "title": "Elvis Presley - Blue Suede Shoes (Karaoke EZ Sing)", - "id": "cO3e7OntJg4" - }, - { - "title": "Milli Vanilli - Girl I'm Gonna Miss You (Karaoke EZ Sing)", - "id": "b2lrSdMOlQ8" - }, - { - "title": "k.d. lang - Trail Of Broken Hearts (Karaoke EZ Sing)", - "id": "9w-wy6t-Fuc" - }, - { - "title": "Kenny Rogers - You Decorated My Life (Karaoke EZ Sing)", - "id": "Sc4q5vF5Wk8" - }, - { - "title": "Anne Murray - Could I Have This Dance (Karaoke EZ Sing)", - "id": "wshpXKasu8A" - }, - { - "title": "Reba McEntire - Cathy's Clown (Karaoke EZ Sing)", - "id": "ALH3juqvN20" - }, - { - "title": "Whitney Houston - Where Do Broken Hearts Go (Karaoke EZ Sing)", - "id": "cG1GUfsLhgA" - }, - { - "title": "Fats Domino - Ain't That A Shame (Karaoke EZ Sing)", - "id": "e3k8Bp9hCA8" - }, - { - "title": "Crystal Gayle - Cry (Karaoke EZ Sing)", - "id": "dU7tQnozUKU" - }, - { - "title": "Ronnie Milsap - Houston Solution (Karaoke EZ Sing)", - "id": "Fcd-AOaRffM" - }, - { - "title": "Whitney Houston - Greatest Love Of All (Karaoke EZ Sing)", - "id": "qVn0Pv4LbuI" - }, - { - "title": "Holly Dunn - There Goes My Heart Again (Karaoke EZ Sing)", - "id": "cfP_CFpU-FM" - }, - { - "title": "Forester Sisters - Nothing's Gonna Bother Me (Karaoke EZ Sing)", - "id": "C-dcUQou3lk" - }, - { - "title": "Randy Travis - On The Other Hand (Karaoke EZ Sing)", - "id": "asGXQUubD7Y" - }, - { - "title": "Oak Ridge Boys - Thank God For Kids (Karaoke EZ Sing)", - "id": "a39ZRgvV3Mk" - }, - { - "title": "Linda Ronstadt - Silver Threads & Golden Needles (Karaoke EZ Sing)", - "id": "W5ye_UmIloE" - }, - { - "title": "Baillie & The Boys - She Deserves You (Karaoke EZ Sing)", - "id": "TDR2awYESKM" - }, - { - "title": "Coasters - Poison Ivy (Karaoke EZ Sing)", - "id": "6c__q_Wlxfo" - }, - { - "title": "Judds - Grandpa (Karaoke EZ Sing)", - "id": "yrXSGthIwkU" - }, - { - "title": "James Taylor - How Sweet It Is (To Be Loved By You) (Karaoke EZ Sing)", - "id": "x1URJoUnO5U" - }, - { - "title": "Patsy Cline - Sweet Dreams (Karaoke EZ Sing)", - "id": "foaT0wOKLBs" - }, - { - "title": "Conway Twitty - Hello Darlin' (Karaoke EZ Sing)", - "id": "gCxgZ5Vj8mM" - }, - { - "title": "Waylon Jennings - A Good Hearted Woman (Karaoke EZ Sing)", - "id": "aGV3vWyroYQ" - }, - { - "title": "George Jones - He Stopped Loving Her Today (Karaoke EZ Sing)", - "id": "85v4w3r4700" - }, - { - "title": "Dolly Parton - Coat Of Many Colors (Karaoke EZ Sing)", - "id": "AY4CiOGGgSU" - }, - { - "title": "New Kids On The Block - Step By Step (Karaoke EZ Sing)", - "id": "H5M_6fBV6Jc" - }, - { - "title": "Randy Travis - I Told You So (Karaoke EZ Sing)", - "id": "DHPbYasnaQA" - }, - { - "title": "Patsy Cline - Walkin' After Midnight (Karaoke EZ Sing)", - "id": "K9bHN6fTV_Q" - }, - { - "title": "James Taylor - Handy Man (Karaoke EZ Sing)", - "id": "FGvbnGc-Zr4" - }, - { - "title": "Kentucky Headhunters - Walk Softly On This Heart Of Mine (Karaoke EZ Sing)", - "id": "6tQSUuvHJxw" - }, - { - "title": "Roy Orbison - Crying (Karaoke EZ Sing)", - "id": "7mWkkEXu8gA" - }, - { - "title": "New Kids On The Block - Hangin' Tough (Karaoke EZ Sing)", - "id": "P2L7P4z8eRk" - }, - { - "title": "Tom T. Hall - Old Dogs, Children And Watermelon Wine (Karaoke EZ Sing)", - "id": "dx1sqSBC6fQ" - }, - { - "title": "Mary Chapin Carpenter - Never Had It So Good (Karaoke EZ Sing)", - "id": "6El74vkOTY8" - }, - { - "title": "Ricky Van Shelton - I've Cried My Last Tear For You (Karaoke EZ Sing)", - "id": "nh8xQ9MJJIU" - }, - { - "title": "Kentucky Headhunters - Oh Lonesome Me (Karaoke EZ Sing)", - "id": "3EPOZCiEqPA" - }, - { - "title": "Ricky Van Shelton - I Meant Every Word He Said (Karaoke EZ Sing)", - "id": "GT75r5Fhmrw" - }, - { - "title": "Tanya Tucker - Highway Robbery (Karaoke EZ Sing)", - "id": "x-Ciq0lXtFw" - }, - { - "title": "George Strait - Drinking Champagne (Karaoke EZ Sing)", - "id": "ZkIxDyQuXL8" - }, - { - "title": "Kathy Mattea - Where've You Been (Karaoke EZ Sing)", - "id": "CbD0gfFantA" - }, - { - "title": "Reba McEntire - Walk On (Karaoke EZ Sing)", - "id": "EiQvanGbQD0" - }, - { - "title": "Dierks Bentley - Come A Little Closer (Karaoke)", - "id": "hZH1Ts-FVx4" - }, - { - "title": "Dierks Bentley - Settle For A Slowdown (Karaoke)", - "id": "dtHhA9TvnOk" - }, - { - "title": "Dierks Bentley and Miranda Lambert - Bad Angel (Karaoke)", - "id": "w9fFEjoFigE" - }, - { - "title": "Oak Ridge Boys - Lucky Moon (Karaoke)", - "id": "jzN-8OAPmrM" - }, - { - "title": "Reba McEntire - On My Own (Karaoke)", - "id": "Cvsrxcf-kOU" - }, - { - "title": "Dierks Bentley - Lot Of Leavin' Left To Do (Karaoke)", - "id": "eayRfq4qFSw" - }, - { - "title": "Skeeter Davis - What Does It Take (To Keep A Man Like You Satisfied) (Karaoke)", - "id": "0ymD6MFfeJY" - }, - { - "title": "Vince Gill - What The Cowgirls Do (Karaoke)", - "id": "0JxHsCopFRo" - }, - { - "title": "David Ball - Honky Tonk Healin' (Karaoke EZ Sing)", - "id": "eGrecFVYQ40" - }, - { - "title": "Dierks Bentley - What Was I Thinkin'", - "id": "wqOyo2d9SeM" - }, - { - "title": "Brad Paisley - Alcohol (Karaoke)", - "id": "3IGEYfU_4H4" - }, - { - "title": "Extreme - More Than Words (Karaoke)", - "id": "k-R0Vlj3P8Y" - }, - { - "title": "The Bangles - Manic Monday (Karaoke)", - "id": "rpZU_NAJvWY" - }, - { - "title": "Eric Church - Cold One (Karaoke EZ Sing)", - "id": "HQS58tXH2Ts" - }, - { - "title": "Mud - Lonely This Christmas (Karaoke EZ Sing)", - "id": "IX_GT1zmqqM" - }, - { - "title": "Wild Cub - Thunder Clatter (Karaoke EZ Sing)", - "id": "k3Qx5u_0KxE" - }, - { - "title": "Hunter Hayes - You Think You Know Somebody (Karaoke EZ Sing)", - "id": "LVcATE2xVfs" - }, - { - "title": "Tiesto ftg. Matthew Koma - Wasted (Karaoke EZ Sing)", - "id": "DVHS6_yCNn8" - }, - { - "title": "Traditional Christmas - Good King Wenceslas (Karaoke EZ Sing)", - "id": "L_Y3eF2xqfY" - }, - { - "title": "Rise Against - I Don't Want To Be Here Anymore (Karaoke EZ Sing)", - "id": "Kf68PmHpLu0" - }, - { - "title": "Ella Henderson - Ghost (Karaoke EZ Sing)", - "id": "HNn7XseY-LM" - }, - { - "title": "Keb' Mo' - Do It Right (Karaoke EZ Sing)", - "id": "WxVkcQi4sEk" - }, - { - "title": "Calvin Harris - Feels So Close (Karaoke)", - "id": "OAgnWxwR_eY" - }, - { - "title": "Calvin Harris ftg. John Newman - Blame (Karaoke)", - "id": "lOJQeLiIL1M" - }, - { - "title": "Calvin Harris ftg. Tinashe - Dollar Signs (Karaoke)", - "id": "XUzERxUCZrM" - }, - { - "title": "French Montana - Don't Panic (Karaoke)", - "id": "I7QyCw_94Qw" - }, - { - "title": "Milky Chance - Stolen Dance (Karaoke)", - "id": "sE1pL0nZ0O8" - }, - { - "title": "T.I. ftg. Iggy Azalea - No Mediocre (Karaoke)", - "id": "9EkzXy7SGDI" - }, - { - "title": "Taylor John Williams - Mad World (Karaoke)", - "id": "nAVPm68S5jg" - }, - { - "title": "Kelly Clarkson - Invincible (Karaoke EZ Sing)", - "id": "PcO-dpK4Zd8" - }, - { - "title": "Breaking Benjamin - Failure (Karaoke EZ Sing)", - "id": "xcGcTi9IS2g" - }, - { - "title": "Breaking Benjamin - Angels Fall (Karaoke EZ Sing)", - "id": "t76sKMM-55o" - }, - { - "title": "Of Monsters And Men - Crystals (Karaoke EZ Sing)", - "id": "C-RzE7WQCjU" - }, - { - "title": "Zedd ftg Bahari - Addicted To A Memory (Karaoke EZ Sing)", - "id": "opUltK08fBM" - }, - { - "title": "Death Cab For Cutie - Black Sun (Karaoke EZ Sing)", - "id": "QkIahF6hldA" - }, - { - "title": "Lost Frequencies - Are You With Me (Karaoke EZ Sing)", - "id": "BNGIlxsFtw0" - }, - { - "title": "The Script - No Good In Goodbye (Karaoke EZ Sing)", - "id": "lGCLssBj3C0" - }, - { - "title": "James Bay - Hold Back The River (Karaoke EZ Sing)", - "id": "8qlhxPW-2d4" - }, - { - "title": "Bea Miller - Fire N Gold (Karaoke EZ Sing)", - "id": "QtUvgEe-0E0" - }, - { - "title": "Keith Urban - Raise 'Em Up (Karaoke EZ Sing)", - "id": "xmHATN69r7s" - }, - { - "title": "Loverboy - Working For The Weekend (Karaoke EZ Sing)", - "id": "WfNtIaLLSR4" - }, - { - "title": "Pat Benatar - Sex As A Weapon (Karaoke EZ Sing)", - "id": "txb59b2ZvN4" - }, - { - "title": "Lana Del Rey - Gods & Monsters (Karaoke EZ Sing)", - "id": "3j5TjE1NQ4U" - }, - { - "title": "Josh Gad (Movie Frozen) - In Summer (Karaoke EZ Sing)", - "id": "NKKeIxetgBc" - }, - { - "title": "Kristen Bell And Santino Fontana - Love Is An Open Door (From the movie Frozen) (Karaoke EZ Sing)", - "id": "h3mMOVi431I" - }, - { - "title": "Miranda Lambert - Roots And Wings (Karaoke EZ Sing)", - "id": "tmGfMgECLiw" - }, - { - "title": "Bush - Only Way Out (Karaoke EZ Sing)", - "id": "sXjInQB1L6c" - }, - { - "title": "Decemberists - Make You Better (Karaoke EZ Sing)", - "id": "cen_aKojhhU" - }, - { - "title": "OK Go - I Won't Let You Down (Shockbit Remix) (Karaoke EZ Sing)", - "id": "EPXjl5zoib8" - }, - { - "title": "Sheppard - Geronimo (Karaoke EZ Sing)", - "id": "_wWPa27VhVk" - }, - { - "title": "Bring Me The Horizon - Drown (Karaoke EZ Sing)", - "id": "1lmE3QHqToM" - }, - { - "title": "George Ezra - Budapest (Karaoke EZ Sing)", - "id": "L0X1GdI_mP0" - }, - { - "title": "Mark Collie - Something's Gonna Change Her Mind (Karaoke)", - "id": "BBwjALqESQQ" - }, - { - "title": "Chris Brown - Yeah 3X (Karaoke)", - "id": "IJlaFTLUy7c" - }, - { - "title": "Joe Diffie - So Help Me Girl (Karaoke)", - "id": "URxN9G9kh1U" - }, - { - "title": "Traditional Gospel - Getting Ready To Leave This World (Karaoke)", - "id": "w26NEl0BjR0" - }, - { - "title": "Michael W. Smith - For You (Karaoke)", - "id": "78bB7Ha0OAw" - }, - { - "title": "Mac Davis - One Hell Of A Woman (Karaoke)", - "id": "15AfoyNP1fk" - }, - { - "title": "SoulDecision ftg. Thrust - Faded (Karaoke)", - "id": "z7Tb8r3Dk_Y" - }, - { - "title": "Eddie Rabbitt - Two Dollars In The Jukebox (Karaoke)", - "id": "umQFpbugAd8" - }, - { - "title": "Boyz II Men - On Bended Knee (Karaoke)", - "id": "xbv7IxzN0u8" - }, - { - "title": "Adele - Lovesong (Karaoke)", - "id": "1JjWIah-wI4" - }, - { - "title": "Billy Dean - Tryin' To Hide A Fire In The Dark (Karaoke)", - "id": "KbdHyFBRp-I" - }, - { - "title": "Jefferson Starship - No Way Out (Karaoke EZ Sing)", - "id": "wu-icAUMqVE" - }, - { - "title": "5 Seconds Of Summer - She Looks So Perfect (Karaoke EZ Sing)", - "id": "SFwqkkSVM5I" - }, - { - "title": "Calvin Harris - Summer (Karaoke EZ Sing)", - "id": "m-guA52Nzko" - }, - { - "title": "Cadillac Three, Florida Georgia Line, Dierks Bentley, Mike Eli - The South (Karaoke EZ Sing)", - "id": "uzMtoAZRV2g" - }, - { - "title": "Jennifer Nettles - Me Without You (Karaoke EZ Sing)", - "id": "_8GTduHFPvA" - }, - { - "title": "Eric Paslay - Song About A Girl (Karaoke EZ Sing)", - "id": "yy8TzFSANg4" - }, - { - "title": "Dierks Bentley - Drunk On A Plane (Karaoke EZ Sing)", - "id": "kvdRXV9aauc" - }, - { - "title": "Tim McGraw ftg. Faith Hill - Meanwhile Back At Mama's (Karaoke EZ Sing)", - "id": "uzqLDP7sPVQ" - }, - { - "title": "Buffalo Springfield - Sit Down I Think I Love You (Karaoke EZ Sing)", - "id": "UvAw6LzBgRE" - }, - { - "title": "ZZ Ward - Til The Casket Drops (Karaoke EZ Sing)", - "id": "Pv5wRkIFU_4" - }, - { - "title": "ZZ Ward - Put The Gun Down (Karaoke EZ Sing)", - "id": "p77unzunfC0" - }, - { - "title": "ZZ Ward - Last Love Song (Karaoke EZ Sing)", - "id": "KZi8fRAUJGc" - }, - { - "title": "Sheryl Crow - Callin' Me When I'm Lonely (Karaoke EZ Sing)", - "id": "zfigr58pf4k" - }, - { - "title": "Afrojack ftg. Wrabel - Ten Feet Tall (Karaoke EZ Sing)", - "id": "aXGjWcvYTTA" - }, - { - "title": "Tiesto - Red Lights (Karaoke EZ Sing)", - "id": "Imal1JXhlvM" - }, - { - "title": "Blake Shelton - Doin' What She Likes (Karaoke EZ Sing)", - "id": "CxKMft9nQ4E" - }, - { - "title": "Jake Owen - Beachin' (Karaoke EZ Sing)", - "id": "qiqK4SWaChk" - }, - { - "title": "Sam Smith - Money On My Mind (Karaoke EZ Sing)", - "id": "zBZr0BRhKqs" - }, - { - "title": "Thomas Rhett - Get Me Some Of That (Karaoke EZ Sing)", - "id": "uAz8dIIYNVQ" - }, - { - "title": "The 1975 - Chocolate (Karaoke EZ Sing)", - "id": "PvHZzyyYemk" - }, - { - "title": "Kristen Bell & Idina Menzel - For The First Time In Forever (Karaoke EZ Sing)", - "id": "4Z_GbMzB7DI" - }, - { - "title": "Kristen Bell ftg. Agatha Lee Monn & Latie Lopez - Do You Want To Build A Snowman? (Karaoke EZ Sing)", - "id": "d2AJP-eiG3Q" - }, - { - "title": "Jason Derulo - Trumpets (Karaoke EZ Sing)", - "id": "F7aUBDge9Dc" - }, - { - "title": "Calvin Harris feat. Ayah Marar - Thinking About You (Karaoke EZ Sing)", - "id": "mL2Q9P2Ar3g" - }, - { - "title": "American Authors - Best Day Of My Life (Karaoke EZ Sing)", - "id": "lro2EaMjzTQ" - }, - { - "title": "Hunter Hayes - Invisible (Karaoke EZ Sing)", - "id": "o4v0eb9hWIQ" - }, - { - "title": "Idina Menzel - Let It Go (Karaoke EZ Sing)", - "id": "M0xokFizUTQ" - }, - { - "title": "Florida Georgia Line with Luke Bryan - This Is How We Roll (Karaoke EZ Sing)", - "id": "Q8nZW4HWo8g" - }, - { - "title": "Hunter Hayes ftg. Jason Mraz - Everybody's Got Somebody But Me (Karaoke EZ Sing)", - "id": "jAq7v_Cf-do" - }, - { - "title": "Mark Chesnutt - Old Country (Karaoke)", - "id": "eJqTLh4BjSo" - }, - { - "title": "Usher - Can U Help Me (Karaoke)", - "id": "g_kl97i_-Sc" - }, - { - "title": "The Kinleys - I'm In (Karaoke)", - "id": "_i1SZApNSrE" - }, - { - "title": "Mark Wills - I Want To Know (Everything There Is To Know About You) (Karaoke)", - "id": "-9h-EO2Vg7w" - }, - { - "title": "James Otto - For You (Karaoke)", - "id": "QZ4EWaaVrEk" - }, - { - "title": "Osborne Brothers - The Cuckoo (Karaoke)", - "id": "BbVytou6Ysw" - }, - { - "title": "Jeff Carson - Until We Fall Back In Love Again (Karaoke)", - "id": "2VAxvaCg8Hw" - }, - { - "title": "Tammy Wynette - Let's Get Together One More Time (Karaoke)", - "id": "OBl-ML3DThg" - }, - { - "title": "Charley Pride - Let Me Live In The Light Of His Love (Karaoke)", - "id": "7OfCsXZStOs" - }, - { - "title": "Cigarettes After Sex - Iโ€™m A Firefighter (Karaoke EZ Sing)", - "id": "NCc8BgomIkk" - }, - { - "title": "Neal McCoy - Every Man For Himself (Karaoke)", - "id": "JHYzWrmh07k" - }, - { - "title": "Adele - Make You Feel My Love (Karaoke)", - "id": "r-KA7kat-IM" - }, - { - "title": "DeEtta Little - Gonna Fly Now (Rocky Theme) (Karaoke)", - "id": "YGD2hzPSnOQ" - }, - { - "title": "Miley Cyrus - Adore You (Karaoke EZ Sing)", - "id": "wThy9Tk6Fxw" - }, - { - "title": "Violent Femmes - Blister In The Sun (Karaoke EZ Sing)", - "id": "5et7V5HItbw" - }, - { - "title": "Jimi Hendrix Experience - Hey Joe (Karaoke EZ Sing)", - "id": "sX4Ah3qlDXE" - }, - { - "title": "A Great Big World - Say Something (Karaoke EZ Sing)", - "id": "_TegCMN0DAE" - }, - { - "title": "Jeremy Messersmith - Tourniquet (Karaoke EZ Sing)", - "id": "BXkD_vdXyPk" - }, - { - "title": "Keane - Higher Than The Sun (Karaoke EZ Sing)", - "id": "rlLxPGTQPXk" - }, - { - "title": "Chvrches - Mother We Share (Karaoke EZ Sing)", - "id": "fvjiIJ06X-8" - }, - { - "title": "One Direction - More Than This (Karaoke EZ Sing)", - "id": "s39p8_5obUI" - }, - { - "title": "John Newman - Love Me Again (Karaoke EZ Sing)", - "id": "PDuDTxGYKDo" - }, - { - "title": "Ylvis - Fox (What Does The Fox Say?) (Karaoke EZ Sing)", - "id": "gdXdfjVy748" - }, - { - "title": "Traditional Irish Lullaby - Tura Lura Lura (Too Ra Loo Ra Loo Ra) (Karaoke EZ Sing)", - "id": "LIyAspKaNDA" - }, - { - "title": "Keith Urban - Somewhere In My Car (Karaoke EZ Sing)", - "id": "pORtoFDpYOs" - }, - { - "title": "Striking Matches - Trouble Is As Trouble Does (Karaoke EZ Sing)", - "id": "NpkwTVKKg3s" - }, - { - "title": "Miguel - Adorn (Karaoke EZ Sing)", - "id": "KgdA3MjwbzQ" - }, - { - "title": "Cassadee Pope - 11 (Karaoke EZ Sing)", - "id": "zxHps6Sdb_g" - }, - { - "title": "Disclosure ftg. AlunaGeorge - White Noise (Karaoke EZ Sing)", - "id": "EZga9rUlaMw" - }, - { - "title": "Lorde - Royals (Karaoke EZ Sing)", - "id": "fQxNRHlBR3Y" - }, - { - "title": "Cassadee Pope - You Hear A Song (Karaoke EZ Sing)", - "id": "06ev9XN9wfU" - }, - { - "title": "Bastille - Pompeii (Karaoke EZ Sing)", - "id": "F9ngNA4wJlk" - }, - { - "title": "Toby Keith - Drinks After Work (Karaoke EZ Sing)", - "id": "qTMhGT-ZDaI" - }, - { - "title": "Frankie Ballard - Helluva Life (Karaoke EZ Sing)", - "id": "0ebbawoS8V4" - }, - { - "title": "Franz Ferdinand - Right Action (Karaoke EZ Sing)", - "id": "qAubXhuRx5s" - }, - { - "title": "Disclosure - F For You (Karaoke EZ Sing)", - "id": "hdCej7TcoU4" - }, - { - "title": "Ciara ftg. Nicki Minaj - I'm Out (Karaoke EZ Sing)", - "id": "Hq0XM-ifosE" - }, - { - "title": "Hunter Hayes - A Thing About You (Karaoke EZ Sing)", - "id": "dhpRD7Ls8pk" - }, - { - "title": "David Nail - Whatever She's Got (Karaoke EZ Sing)", - "id": "G_L1F_ih6KA" - }, - { - "title": "Zac Brown Band - Jump Right In (Karaoke EZ Sing)", - "id": "IOLofmIbWX8" - }, - { - "title": "Zac Brown Band - Goodbye In Her Eyes (Karaoke EZ Sing)", - "id": "h5Y9CoPnAHM" - }, - { - "title": "Elton John - Home Again (Karaoke EZ Sing)", - "id": "Yp1LBBrjfOo" - }, - { - "title": "Maroon 5 - Sad (Karaoke EZ Sing)", - "id": "ssE97YI55V0" - }, - { - "title": "Justin Bieber - Nothing Like Us (Karaoke EZ Sing)", - "id": "cakrfKrQ3ww" - }, - { - "title": "One Direction - Stole My Heart (Karaoke EZ Sing)", - "id": "xiaxdoJzh18" - }, - { - "title": "Zac Brown Band - All Alright (Karaoke EZ Sing)", - "id": "Ohb0JdoMaLQ" - }, - { - "title": "Imagine Dragons - Round And Round (Karaoke EZ Sing)", - "id": "wuynJHpfpzE" - }, - { - "title": "Anthony Hamilton - Best Of Me (Karaoke EZ Sing)", - "id": "-31Rb4QNnBU" - }, - { - "title": "Psy - Gentlemen (Karaoke EZ Sing)", - "id": "9pr9rEHVJ_k" - }, - { - "title": "Hunter Hayes - I Want Crazy (Karaoke EZ Sing)", - "id": "HWt_IMEAmfA" - }, - { - "title": "Josh Turner - Find Me A Baby (Karaoke EZ Sing)", - "id": "CgizLTCVmDY" - }, - { - "title": "Brad Paisley - Beat This Summer (Karaoke EZ Sing)", - "id": "KhciyYd3RVU" - }, - { - "title": "Imagine Dragons - Tiptoe (Karaoke EZ Sing)", - "id": "GS7A8p6lAA8" - }, - { - "title": "Finding Favour - Slip On By (Karaoke EZ Sing)", - "id": "WefPgxpXiL8" - }, - { - "title": "Tim McGraw - One Of Those Nights (Karaoke EZ Sing)", - "id": "ged2PA0Ikzo" - }, - { - "title": "Darius Rucker - True Believers (Karaoke EZ Sing)", - "id": "CyKHmjtP5-0" - }, - { - "title": "Hunter Hayes - Somebody's Heartbreak (Karaoke EZ Sing)", - "id": "yeC329lipZA" - }, - { - "title": "Ben Harper - Steal My Kisses (Unplugged) (Karaoke EZ Sing)", - "id": "6EMQ625TdmY" - }, - { - "title": "Lee Brice - Hard To Love (Karaoke EZ Sing)", - "id": "3vIEuhjdLk0" - }, - { - "title": "Steely Dan - Any Major Dude Will Tell You (Karaoke EZ Sing)", - "id": "DJVE5FE2D2g" - }, - { - "title": "Imagine Dragons - It's Time (Karaoke EZ Sing)", - "id": "i53FhtnY1ug" - }, - { - "title": "Rihanna, Calvin Harris - We Found Love (Karaoke EZ Sing)", - "id": "7Qc63LNLv9g" - }, - { - "title": "Carly Rae Jepsen - Call Me Maybe (Karaoke EZ Sing)", - "id": "ICP3dFDT2mQ" - }, - { - "title": "Psy - Gangnam Style (Karaoke EZ Sing)", - "id": "PnUd-gWftd4" - }, - { - "title": "Little Walter - Boom Boom Out Go The Lights (Karaoke EZ Sing)", - "id": "pCXHJmaUU4M" - }, - { - "title": "B. B. King - Three O'Clock Blues (Karaoke EZ Sing)", - "id": "9ZVYuYe2Fy0" - }, - { - "title": "Howlin' Wolf - Evil (Karaoke EZ Sing)", - "id": "49cv0jBB4p8" - }, - { - "title": "Tampa Red - It's Tight Like That (Karaoke EZ Sing)", - "id": "ta9gD2_M2wc" - }, - { - "title": "Eric Clapton - It Hurts Me Too (Karaoke EZ Sing)", - "id": "ptXmQq0KTok" - }, - { - "title": "Muddy Waters - Baby Please Don't Go (Karaoke EZ Sing)", - "id": "8K0_xAYUBws" - }, - { - "title": "B.B. King - See That My Grave Is Kept Clean (Karaoke EZ Sing)", - "id": "0eOVZtaM36M" - }, - { - "title": "Elmore James - Sky Is Crying (Karaoke EZ Sing)", - "id": "RvcVF7iE3OI" - }, - { - "title": "Lowell Fulson - Reconsider Baby (Karaoke EZ Sing)", - "id": "suv7BuO7q-4" - }, - { - "title": "Willie Dixon - I Ain't Gonna Be Your Monkey Man (Karaoke EZ Sing)", - "id": "pBB7I4gkqQE" - }, - { - "title": "Howlin' Wolf - Built For Comfort (Karaoke EZ Sing)", - "id": "Z1WJdM3GQNg" - }, - { - "title": "Buddy Guy - Let Me Love You Baby (Karaoke EZ Sing)", - "id": "VAZJ_A6C938" - }, - { - "title": "B. B. King - Everyday I Have The Blues (Karaoke EZ Sing)", - "id": "mBrCE8V0-BM" - }, - { - "title": "Cream - Crossroads (Karaoke EZ Sing)", - "id": "DciFLTXj0PI" - }, - { - "title": "Tab Benoit - Nice And Warm (Karaoke EZ Sing)", - "id": "6ltVq51kpyg" - }, - { - "title": "Howlin' Wolf - Killing Floor (Karaoke EZ Sing)", - "id": "gLeiMaH4E4A" - }, - { - "title": "Magic Sam - All Your Love (Karaoke EZ Sing)", - "id": "-7RDd0oTBhM" - }, - { - "title": "Muddy Waters - I Can't Be Satisfied (Karaoke EZ Sing)", - "id": "alcVRMIqOwk" - }, - { - "title": "Derek Trucks Band - Preachin' The Blues (Karaoke EZ Sing)", - "id": "FSo2MgJevmw" - }, - { - "title": "Blues Standard - The Things That I Used To Do (Karaoke EZ Sing)", - "id": "eydANWRSqX8" - }, - { - "title": "Howlin' Wolf - The Little Red Rooster (Karaoke EZ Sing)", - "id": "jXp7yx1_ids" - }, - { - "title": "New Found Glory - Head On Collision (Karaoke)", - "id": "v9cvbGgVwh4" - }, - { - "title": "Bullet For My Valentine - Knives (Karaoke)", - "id": "cMF7JFQcank" - }, - { - "title": "Bring Me The Horizon - DiE4u (Karaoke)", - "id": "gpfEmfOlNWU" - }, - { - "title": "Billy Joel - Everybody Has a Dream (Karaoke)", - "id": "B08QUzyY2Fg" - }, - { - "title": "The Vaccines - Back In Love City (Karaoke)", - "id": "tYV_bn5s9gE" - }, - { - "title": "Connie Francis - Breakin In A Brand New Broken Heart (Karaoke)", - "id": "rP-gTI52nkM" - }, - { - "title": "The Charlie Daniels Band - America, I Believe In You (Karaoke)", - "id": "EmGem5FCH0s" - }, - { - "title": "3 Doors Down - Every Time You Go (Karaoke)", - "id": "DSN_Xc6CZCU" - }, - { - "title": "Placebo - Beautiful James (Karaoke)", - "id": "YCbA6vHyDh8" - }, - { - "title": "Shawn Mendes - Itโ€™ll Be Okay (Karaoke)", - "id": "_kmrVsZyzJg" - }, - { - "title": "Kane Brown - Worldwide Beautiful (Karaoke)", - "id": "XdwfCXc5YWs" - }, - { - "title": "Albert King - Born Under A Bad Sign (Karaoke EZ Sing)", - "id": "nt4F2L5jJ00" - }, - { - "title": "Howlin' Wolf - Spoonfull (Karaoke EZ Sing)", - "id": "t7SIUqdLwiU" - }, - { - "title": "Muddy Waters - Mannish Boy (Karaoke EZ Sing)", - "id": "n9KlFNTXtZU" - }, - { - "title": "John Lee Hooker - Boogie Chillun (Karaoke EZ Sing)", - "id": "SIvE5Kc69lk" - }, - { - "title": "Roy Acuff - Wabash Cannonball (Karaoke EZ Sing)", - "id": "HSzz6xUNYZM" - }, - { - "title": "Jill Scott ftg. Anthony Hamilton - So In Love (Karaoke EZ Sing)", - "id": "YGAQ3YVLJrY" - }, - { - "title": "Kelly Price - Not My Daddy (Karaoke EZ Sing)", - "id": "-TQT3rSxUAE" - }, - { - "title": "Foster The People - Pumped Up Kicks (Karaoke EZ Sing)", - "id": "tgnXhI_7eWI" - }, - { - "title": "Pistol Annies - Hell On Heels (Karaoke EZ Sing)", - "id": "dnl0LbEXQRQ" - }, - { - "title": "Luke Bryan - Drunk On You (Karaoke EZ Sing)", - "id": "n-JSkgG--3Y" - }, - { - "title": "Eric Church - Drink In My Hand (Karaoke EZ Sing)", - "id": "WThCjAZ79bs" - }, - { - "title": "Jennifer Lopez and Lil Wayne - I'm Into You (Karaoke EZ Sing)", - "id": "v6g6jzn6oNY" - }, - { - "title": "Ashton Shepherd - Where Country Grows (Karaoke EZ Sing)", - "id": "OA9pWB1soCs" - }, - { - "title": "Ronnie Dunn - Cost Of Livin' (Karaoke EZ Sing)", - "id": "OQDJj-Y5DSU" - }, - { - "title": "Miguel - Sure Thing (Karaoke EZ Sing)", - "id": "GAZyw3cXAk8" - }, - { - "title": "Jennifer Hudson - Don't Look Down (Karaoke EZ Sing)", - "id": "5oQW1mN1-34" - }, - { - "title": "Rascal Flatts ftg. Natasha Bedingfield - Easy (Karaoke EZ Sing)", - "id": "HJ4AbjTNSy0" - }, - { - "title": "Sawyer Brown - Smokin' Hot Wife (Karaoke EZ Sing)", - "id": "DSCEzR17e-k" - }, - { - "title": "Jacob Lyda - I'm Doing Alright (Karaoke EZ Sing)", - "id": "s1e0h7EkIXo" - }, - { - "title": "Blake Shelton - God Gave Me You (Karaoke EZ Sing)", - "id": "ds0bZu_uRGA" - }, - { - "title": "Kellie Pickler - Tough (Karaoke EZ Sing)", - "id": "7aJxX1W8Ue8" - }, - { - "title": "George Strait - Here For A Good Time (Karaoke EZ Sing)", - "id": "vMaitVCN78Y" - }, - { - "title": "Hunter Hayes - Storm Warning (Karaoke EZ Sing)", - "id": "xmhEphuy7l8" - }, - { - "title": "Jerrod Niemann - One More Drinking Song (Karaoke EZ Sing)", - "id": "5DtnPKbKn9c" - }, - { - "title": "KC And The Sunshine Band - Boogie Shoes (Karaoke EZ Sing)", - "id": "rdT9TTLGBSs" - }, - { - "title": "Whitney Houston - You Give Good Love (Karaoke EZ Sing)", - "id": "c5urZFbK-58" - }, - { - "title": "Maroon 5 ftg. Lady Antebellum - Out Of Goodbyes (Karaoke EZ Sing)", - "id": "9axn6geJQoQ" - }, - { - "title": "Enrique Iglesias and Usher - Dirty Dancer (Karaoke EZ Sing)", - "id": "XpiZ4OqFO4U" - }, - { - "title": "Brian McKnight - Fall 5.0 (Karaoke EZ Sing)", - "id": "DnYnZG-LYDU" - }, - { - "title": "Jennifer Hudson - No One Gonna Love You (Karaoke EZ Sing)", - "id": "02DhevHSJrE" - }, - { - "title": "John Rich - For The Kids (Karaoke EZ Sing)", - "id": "eakeHD3BoKQ" - }, - { - "title": "Kenny Chesney ftg. Grace Potter - You And Tequila (Karaoke EZ Sing)", - "id": "Dz4mBlmzFPs" - }, - { - "title": "Lady A - Just A Kiss (Karaoke EZ Sing)", - "id": "FIInnYwybio" - }, - { - "title": "Darius Rucker - I Got Nothin' (Karaoke EZ Sing)", - "id": "ir7TRnmSUb8" - }, - { - "title": "Avril Lavigne - Smile (Karaoke EZ Sing)", - "id": "mqsxkYTAsgk" - }, - { - "title": "Kesha - F**k Him He's A DJ (Karaoke EZ Sing)", - "id": "rkiP_s1z244" - }, - { - "title": "T-Pain ftg. Chris Brown - Best Love Song (Karaoke EZ Sing)", - "id": "gvVINLC-BNo" - }, - { - "title": "Martina McBride - Teenage Daughter (Karaoke EZ Sing)", - "id": "fc8_QNncFrQ" - }, - { - "title": "Bradley Gaskin - Mr. Bartender (Karaoke EZ Sing)", - "id": "GH3RUas1U_Q" - }, - { - "title": "Jake Owen - Barefoot Blue Jean Night (Karaoke EZ Sing)", - "id": "VHa-J0VbBx0" - }, - { - "title": "Justin Bieber - Born To Be Somebody (Karaoke EZ Sing)", - "id": "YvPRj8omXas" - }, - { - "title": "Michael Franti & Spearhead - I'll Be Waiting (Karaoke EZ Sing)", - "id": "Wdl-JVkulbE" - }, - { - "title": "Good Charlotte - Last Night (Karaoke EZ Sing)", - "id": "RY45OOyhH8w" - }, - { - "title": "Shontelle - Say Hello To Goodbye (Karaoke EZ Sing)", - "id": "6X6BcS_TW7M" - }, - { - "title": "Colbie Caillatt - I Do (Karaoke EZ Sing)", - "id": "VYKhlqKQ2pk" - }, - { - "title": "JaneDear Girls - Shotgun Girl (Karaoke EZ Sing)", - "id": "D5D_2b98gtY" - }, - { - "title": "Panic! At The Disco - Ballad Of Mona Lisa (Karaoke EZ Sing)", - "id": "KIq3whuZKC8" - }, - { - "title": "Jennifer Hudson - Where You At (Karaoke EZ Sing)", - "id": "b7dVU5nElz4" - }, - { - "title": "Steve Holy - Love Don't Run (Karaoke EZ Sing)", - "id": "UsMO7-o9fbQ" - }, - { - "title": "Ronnie Dunn - Bleed Red (Karaoke EZ Sing)", - "id": "3lOteIR0iTM" - }, - { - "title": "Elvis Presley - Runaway (Karaoke EZ Sing)", - "id": "jdZfVQ27DIM" - }, - { - "title": "Jessie Ware - Midnight (Karaoke EZ Sing)", - "id": "So3YyuzJqaI" - }, - { - "title": "The Kooks - Shine On (Karaoke EZ Sing)", - "id": "ihg4zP4AmNk" - }, - { - "title": "Chainsmokers and Daya - Don't Let Me Down (Karaoke EZ Sing)", - "id": "RUqbFtw0yho" - }, - { - "title": "The Beatles - All You Need Is Love (Karaoke EZ Sing)", - "id": "-D0wAO8Qdgw" - }, - { - "title": "The Beatles - Paperback Writer (Karaoke)", - "id": "fMQKjEksm50" - }, - { - "title": "Years & Years - Shine (Karaoke EZ Sing)", - "id": "Ab0KCFtSmpI" - }, - { - "title": "Cadillac Three - White Lightning (Karaoke EZ Sing)", - "id": "uwrXGGZ3SHE" - }, - { - "title": "George Thorogood - Move It On Over (Karaoke EZ Sing)", - "id": "PEGmG4Rh00U" - }, - { - "title": "Pink ftg. Lily Allen - True Love (Karaoke EZ Sing)", - "id": "U_QNmpZFs8k" - }, - { - "title": "Ariana Grande ftg. Mac Miller - The Way (Karaoke EZ Sing)", - "id": "RXOLl-O8T9w" - }, - { - "title": "Marvin Gaye - Let's Get It On (Karaoke EZ Sing)", - "id": "9M4uCs646hI" - }, - { - "title": "Marvin Gaye - I Heard It Through The Grapevine (Karaoke EZ Sing)", - "id": "lihrBXojFEc" - }, - { - "title": "The Temptations - Ain't Too Proud To Beg (Karaoke EZ Sing)", - "id": "trHqcWjV06g" - }, - { - "title": "The Temptations - Just My Imagination (Karaoke EZ Sing)", - "id": "VJVLn2zf0pw" - }, - { - "title": "Hank Williams - Cold Cold Heart (Karaoke EZ Sing)", - "id": "6RWnvpovpmI" - }, - { - "title": "Lady Gaga - You And I (Karaoke EZ Sing)", - "id": "ag5hm8LJtnk" - }, - { - "title": "Ne-Yo - One In A Million (Karaoke EZ Sing)", - "id": "qy6qVw_nSTA" - }, - { - "title": "Nick Jonas & The Administration - Who I Am (Karaoke EZ Sing)", - "id": "pEPurn4MPUk" - }, - { - "title": "Hinder - The Best Is Yet To Come (Karaoke EZ Sing)", - "id": "JGiVg9mXbAE" - }, - { - "title": "Josh Gracin - Telluride (Karaoke EZ Sing)", - "id": "6KnjZjGV8Gc" - }, - { - "title": "Matt Stillwell - Shine (Karaoke EZ Sing)", - "id": "S0iGnM3AkaQ" - }, - { - "title": "Billy Currington - Don't (Karaoke EZ Sing)", - "id": "1LggAf1enB8" - }, - { - "title": "Redbone - Come And Get Your Love (Karaoke EZ Sing)", - "id": "04G8GDJaCl8" - }, - { - "title": "B. J. Thomas - Hooked On A Feeling (Karaoke EZ Sing)", - "id": "7vQF9UW09mc" - }, - { - "title": "Lady Gaga and Bradley Cooper (A Star Is Born 2018 Film) - Shallow (Karaoke)", - "id": "7MsxrtWQwZ8" - }, - { - "title": "Marty Robbins - It's A Sin (Karaoke EZ Sing)", - "id": "b80yA6-s6Nc" - }, - { - "title": "Alan Jackson - Country Boy (Karaoke EZ Sing)", - "id": "ww0l0BPdJkE" - }, - { - "title": "Avril Lavigne - Don't Tell Me (Karaoke EZ Sing)", - "id": "M9zdwe-od0U" - }, - { - "title": "Sara Evans - Perfect (Karaoke EZ Sing)", - "id": "uBzlX991VqQ" - }, - { - "title": "Buddy Holly - Think It Over (Karaoke EZ Sing)", - "id": "OnqnkfMXTxQ" - }, - { - "title": "Roger Miller - Husbands And Wives (Karaoke EZ Sing)", - "id": "NuhN_77I46o" - }, - { - "title": "Brenda Lee - Nobody Wins (Karaoke EZ Sing)", - "id": "1CkoNAZ901s" - }, - { - "title": "Guy Mitchell - Singing The Blues (Karaoke EZ Sing)", - "id": "yzTOt2pJKbg" - }, - { - "title": "Righteous Brothers - (You're My) Soul And Inspiration (Karaoke EZ Sing)", - "id": "oD9K_QWkuhE" - }, - { - "title": "112 - Dance With Me (Karaoke EZ Sing)", - "id": "tdIHG-YihWI" - }, - { - "title": "Smokey Robinson & The Miracles - The Tracks Of My Tears (Karaoke EZ Sing)", - "id": "KZh7PPr1Gco" - }, - { - "title": "Travis Tritt - Move It On Over (Karaoke EZ Sing)", - "id": "qRP-RBE_XW4" - }, - { - "title": "Elvis Presley - Silver Bells (Karaoke EZ Sing)", - "id": "P92mf_wxW5k" - }, - { - "title": "Keith Whitley - There's A New Kid In Town (Karaoke EZ Sing)", - "id": "tzyepUPW8Hc" - }, - { - "title": "Whitney Houston - Heartbreak Hotel (Karaoke EZ Sing)", - "id": "3Sx8_hFAILw" - }, - { - "title": "Lari White - Take Me (Karaoke EZ Sing)", - "id": "4Y04dh1yDgM" - }, - { - "title": "Kevin Sharp - Nobody Knows (Karaoke EZ Sing)", - "id": "uIGcvwGUePM" - }, - { - "title": "Aaron Tippin - Everything I Own (Karaoke EZ Sing)", - "id": "6n6zKHSzHZQ" - }, - { - "title": "The Mavericks - Pretend (Karaoke EZ Sing)", - "id": "Gs4K2Slm8DI" - }, - { - "title": "All-4-One - I Can Love You Like That (Karaoke EZ Sing)", - "id": "L2l1I--b8hs" - }, - { - "title": "Doug Supernaw - What'll You Do About Me (Karaoke EZ Sing)", - "id": "8FF_F42wqqM" - }, - { - "title": "Eddie Rabbitt - Step By Step (Karaoke)", - "id": "83vgRjmJujE" - }, - { - "title": "Spencers - We Shall Meet (Karaoke)", - "id": "eQWfXSHc3M4" - }, - { - "title": "John Legend - You & I (Nobody In The World) (Karaoke)", - "id": "DenMx-wDPCI" - }, - { - "title": "George Strait - I Got A Car (Karaoke)", - "id": "7ylTpNZymus" - }, - { - "title": "Randy Houser - Goodnight Kiss (Karaoke)", - "id": "p16jtRPWtuU" - }, - { - "title": "Sara Bareilles - Brave (Karaoke)", - "id": "iZnEuxJ_NPQ" - }, - { - "title": "Cole Swindell - Chillin' It (Karaoke)", - "id": "CiiHkPvHcNI" - }, - { - "title": "Rihanna - Russian Roulette (Karaoke)", - "id": "XuqbDfu8SX8" - }, - { - "title": "Usher feat. Young Jeezy - Love In This Club (Karaoke)", - "id": "16C3KEf6fN0" - }, - { - "title": "Rodney Atkins - Cleaning This Gun (Come On In Boy) (Karaoke)", - "id": "n1EUuYFOS4Y" - }, - { - "title": "Jonas Brothers - S.O.S. (Karaoke)", - "id": "lSX4AFvs7Bs" - }, - { - "title": "Fall Out Boy - This Ain't A Scene, It's An Arms Race (Karaoke)", - "id": "NPVSte24IZo" - }, - { - "title": "Eric Church - Two Pink Lines (Karaoke)", - "id": "95_2-QUQg9g" - }, - { - "title": "Alan Jackson - USA Today (Karaoke)", - "id": "gU0Jj0OSI38" - }, - { - "title": "Eric Church - Sinners Like Me (Karaoke)", - "id": "Itl-sOQ01M4" - }, - { - "title": "Hank Williams - Prodigal Son (The Prodigal Son) (Karaoke)", - "id": "Heuq7YADJlE" - }, - { - "title": "Jamie O'Neal - Trying To Find Atlantis (Karaoke)", - "id": "HrwbTilCsKA" - }, - { - "title": "Gene Watson - Memories To Burn (Karaoke)", - "id": "LduqvjRkf64" - }, - { - "title": "Miranda Lambert - Bring Me Down (Karaoke)", - "id": "oet_-Z3kXG4" - }, - { - "title": "Jeanne Pruett - Satin Sheets (Karaoke EZ Sing)", - "id": "UMI54KUOMHg" - }, - { - "title": "Lovin' Spoonful - You Didn't Have To Be So Nice (Karaoke)", - "id": "R7N64aobvks" - }, - { - "title": "Eric Church - Outsiders (Karaoke EZ Sing)", - "id": "Zw5LNREYtSY" - }, - { - "title": "OneRepublic - Counting Stars (Karaoke)", - "id": "e91pvlxXHx0" - }, - { - "title": "Henningsens - I Miss You (Karaoke)", - "id": "DaBGZXYKKZw" - }, - { - "title": "Rihanna - Man Down (Karaoke)", - "id": "v33E9DqQej4" - }, - { - "title": "J. Cole - Crooked Smile (Karaoke)", - "id": "b-tFQwZK9JE" - }, - { - "title": "Carrie Underwood - Quitter (Karaoke)", - "id": "GTOnofu04Y4" - }, - { - "title": "Chris Brown - Forever (Karaoke)", - "id": "ToQc4XGYauk" - }, - { - "title": "Brooks & Dunn - God Must Be Busy (Karaoke)", - "id": "l5tCCSeqiSc" - }, - { - "title": "Sara Bareilles - Bottle It Up (Karaoke)", - "id": "Nc86mKm4_fQ" - }, - { - "title": "Anna Nalick - Shine (Karaoke)", - "id": "55b8fpo1Bvc" - }, - { - "title": "Vince Gill - Reason Why (Karaoke)", - "id": "MMm6nyFxiGs" - }, - { - "title": "Three Days Grace - Never Too Late (Karaoke)", - "id": "1JuIulmrjRI" - }, - { - "title": "Alan Jackson - Small Town Southern Man (Karaoke)", - "id": "5rTFcp8tttE" - }, - { - "title": "Gretchen Wilson - Midnight Oil (Karaoke)", - "id": "LZPYphASqsY" - }, - { - "title": "Sara Evans - You'll Always Be My Baby (Karaoke)", - "id": "gXD8a7IsZBA" - }, - { - "title": "KT Tunstall - Suddenly I See (Karaoke)", - "id": "QfYzTilXhSY" - }, - { - "title": "Kenny Chesney - You Save Me (Karaoke)", - "id": "IZsjQC9muTs" - }, - { - "title": "George Strait - She Let Herself Go (Karaoke)", - "id": "9IyYPol9LaY" - }, - { - "title": "Carrie Underwood - Inside Your Heaven (Karaoke)", - "id": "rn9Iyu0m9M4" - }, - { - "title": "Toby Keith - Big Blue Note (Karaoke)", - "id": "ApXwoZuDG5w" - }, - { - "title": "Hank Williams - How Can You Refuse Him Now (Karaoke)", - "id": "DMS5PKhcB8I" - }, - { - "title": "Hank Williams as Luke The Drifter - Ramblin' Man (Karaoke)", - "id": "rFZOmZjzSFw" - }, - { - "title": "Tammy Wynette & The O'Kanes - Talkin' To Myself Again (Karaoke)", - "id": "c9UdBmqBG24" - }, - { - "title": "Sara Evans - A Real Fine Place To Start (Karaoke)", - "id": "rpZGHvIQVBY" - }, - { - "title": "Charley Pride - I Don't Think She's In Love Anymore (Karaoke)", - "id": "IXHjsCLKsm0" - }, - { - "title": "George Jones - You've Still Got A Place In My Heart (Karaoke)", - "id": "7hJhY2FtAYY" - }, - { - "title": "Julie Roberts - Wake Up Older (Karaoke)", - "id": "o8dLcu5NXqI" - }, - { - "title": "Brooks & Dunn - It's Getting Better All The Time (Karaoke)", - "id": "per6mUrfklE" - }, - { - "title": "Tammy Wynette & George Jones - Southern California (Karaoke)", - "id": "oBWWnRY5buk" - }, - { - "title": "Dixie Rose Deluxe's Honky Tonk, Feed Store, Gun Shop, Used Car, Beer, Bait, BBQ, Barber Sh...", - "id": "-dw06Kz0BQY" - }, - { - "title": "Andy Griggs - If Heaven (Karaoke)", - "id": "Uj4CU5vASko" - }, - { - "title": "Alan Jackson - Too Much Of A Good Thing Is A Good Thing (Karaoke)", - "id": "wpuJ0DbVJh8" - }, - { - "title": "Mark Chesnutt - I'm A Saint (Karaoke)", - "id": "H-5SpCuq3bo" - }, - { - "title": "Pink - Catch Me While I'm Sleeping (Karaoke)", - "id": "707GOxh1VIE" - }, - { - "title": "Toby Keith - Whiskey Girl (Karaoke)", - "id": "j5aLHTj9Zm8" - }, - { - "title": "Emerson Drive - November (Karaoke)", - "id": "klXMt6-Ah_I" - }, - { - "title": "Gwen McRae - Rockin' Chair (Karaoke)", - "id": "ad-iiMUbefk" - }, - { - "title": "Faron Young - Face To The Wall (Karaoke)", - "id": "fpmxhFokwuE" - }, - { - "title": "Hank Locklin - Happy Birthday To Me (Karaoke)", - "id": "JU2Ea_RyqTM" - }, - { - "title": "Tracy Byrd - Drinkin' Bone (Karaoke)", - "id": "Lq5vufnFuy0" - }, - { - "title": "Jennifer Lopez - I'm Glad (Karaoke)", - "id": "SXpJ0pXR6P4" - }, - { - "title": "Toby Keith - It Works For Me (Karaoke)", - "id": "WeWEyo_l52I" - }, - { - "title": "Carl Smith - You Are The One (Karaoke)", - "id": "OidUskOBn80" - }, - { - "title": "Terri Clark - I Wanna Do It All (Karaoke)", - "id": "2cD-psHW3p8" - }, - { - "title": "Mark Chesnutt - I'm In Love With A Married Woman (Karaoke)", - "id": "TZp0s-ukEvA" - }, - { - "title": "Joanna Janet - Seven Little Steps (Karaoke)", - "id": "VU0s-WVnvRU" - }, - { - "title": "Donny Osmond - Go Away Little Girl (Karaoke)", - "id": "BZlIrbQ5jts" - }, - { - "title": "Don Gibson - Yes) I'm Hurting (Karaoke)", - "id": "7RZ1AHOUr54" - }, - { - "title": "Boyz II Men - Color Of Love (Karaoke)", - "id": "HREJADmMn5E" - }, - { - "title": "LoCash Cowboys - You Got Me (Karaoke)", - "id": "J042fVm1H0I" - }, - { - "title": "Keyshia Cole - Take Me Away (Karaoke)", - "id": "Vqc4-fj2paI" - }, - { - "title": "Chris Brown ftg. Keri Hilson - Superhuman (Karaoke)", - "id": "uDFueFFtIRI" - }, - { - "title": "Chris Brown - Crawl (Karaoke)", - "id": "gvEs2dQJp0c" - }, - { - "title": "George Strait - Nerve (Karaoke)", - "id": "gcnbZLx5mN8" - }, - { - "title": "Jake Owen - Something About A Woman (Karaoke)", - "id": "2tSoHJf-9ts" - }, - { - "title": "Colbie Caillat - Dreams Collide (Karaoke)", - "id": "6ANCIJJ_o5c" - }, - { - "title": "Eric Church - Guys Like Me (Karaoke)", - "id": "Bs4mUs40iSk" - }, - { - "title": "Trace Adkins - Ladies Love Country Boys (Karaoke)", - "id": "n1l3woIwjII" - }, - { - "title": "Judds - River Of Time (Karaoke)", - "id": "peV3ETY76r8" - }, - { - "title": "Chainsmokers - Everybody Hates Me (Karaoke)", - "id": "8grF78ez_l0" - }, - { - "title": "Pat Green - Don't Break My Heart Again (Karaoke)", - "id": "XcTUaxvCW9E" - }, - { - "title": "Joe Nichols - I'll Wait For You (Karaoke)", - "id": "3zCmaPhCCK8" - }, - { - "title": "Avril Lavigne - Fall To Pieces (Karaoke)", - "id": "_SIYoqfHm5k" - }, - { - "title": "Tanya Tucker - I Believe The South Is Gonna Rise Again (Karaoke)", - "id": "KMj21sUAF0Q" - }, - { - "title": "Edwin Hawkins Singers - Oh Happy Day (Karaoke)", - "id": "5y1kBRxUL9Y" - }, - { - "title": "Mariah Carey - It's Like That (Karaoke)", - "id": "lquh1Wxij3o" - }, - { - "title": "Tammy Wynette - Wonders You Perform (Karaoke)", - "id": "mHJLiV-yVvc" - }, - { - "title": "Hank Williams as Luke The Drifter - I Dreamed About Mama Last Night (Karaoke)", - "id": "XCi3ZEE5FXg" - }, - { - "title": "Elegants - Little Star (Karaoke)", - "id": "g7n9BT11Eyo" - }, - { - "title": "Mario Winans - Let Me Love You (Karaoke)", - "id": "IB3EcbIetvA" - }, - { - "title": "Craig Morgan - Look At Us (Karaoke)", - "id": "C4rcciHoDxE" - }, - { - "title": "JoJo - Leave (Get Out) (Karaoke)", - "id": "qU6DhrzkhMQ" - }, - { - "title": "Three Days Grace - Home (Karaoke)", - "id": "QeDDbH1ZvJI" - }, - { - "title": "Trent Willmon - Beer Man (Karaoke)", - "id": "pF9UVOEolrA" - }, - { - "title": "Undisputed Truth - Smiling Faces Sometimes (Karaoke)", - "id": "oPDt17iKstY" - }, - { - "title": "Bill Anderson - My Life (Throw It Away If I Want To) (Karaoke)", - "id": "Kmk7zu_bTKc" - }, - { - "title": "Bill Anderson - Mama Sang A Song (Karaoke)", - "id": "98DMZ6yRFkY" - }, - { - "title": "Avril Lavigne - Losing Grip (Karaoke)", - "id": "9q2y3AcYCcY" - }, - { - "title": "Hank Snow - Hello Love (Karaoke)", - "id": "lgMoSD4XEl0" - }, - { - "title": "Bill Anderson - Wild Week(Karaoke)", - "id": "X9Unj2qcZhw" - }, - { - "title": "Faron Young - Keeping Up With The Joneses (Karaoke)", - "id": "DoC0LpE1qNU" - }, - { - "title": "Toby Keith - Rock You Baby (Karaoke)", - "id": "gfO_AHp7rmg" - }, - { - "title": "Red Foley - Mississippi (Karaoke)", - "id": "Be052Svlhss" - }, - { - "title": "Buddy Jewell - Help Pour Out The Rain (Lacey's Song) (Karaoke)", - "id": "rU1a1FOUo_Y" - }, - { - "title": "Bowling For Soup - Girl All The Bad Guys Want (Karaoke)", - "id": "4mcMRJKhPcM" - }, - { - "title": "Hank Williams - Ready To Go Home (Karaoke)", - "id": "QyBQvTT0mk8" - }, - { - "title": "Alexandra Slate - Guilty (Karaoke)", - "id": "zL2nEDG_UMI" - }, - { - "title": "Aaron Lines - You Can't Hide Beautiful (Karaoke)", - "id": "mTKIiy0uBiE" - }, - { - "title": "Andy Griggs with Martina McBride - Practice Life (Karaoke)", - "id": "5YxptDb0mfQ" - }, - { - "title": "Toby Keith - Losing My Touch (Karaoke)", - "id": "DYtLyK0PdVg" - }, - { - "title": "Babyface - Every Time I Close My Eyes (Karaoke)", - "id": "i8FEr8cEGjc" - }, - { - "title": "Donell Jones - You Know That I Love You (Karaoke)", - "id": "Hr_hawmc250" - }, - { - "title": "Brooks & Dunn - My Heart Is Lost To You (Karaoke)", - "id": "P4GTkx9eP4s" - }, - { - "title": "Hank Locklin - Let Me Be The One (Karaoke)", - "id": "GgEtNMWNEAY" - }, - { - "title": "Maxwell - Lifetime (Karaoke)", - "id": "uMyVDEsAJkU" - }, - { - "title": "Sara Evans - I Keep Looking (Karaoke)", - "id": "V8euGJBr5Kw" - }, - { - "title": "Carrie Underwood - We're Young And Beautiful (Karaoke)", - "id": "HenSQw1jk9g" - }, - { - "title": "Ronnie Milsap - She Keeps The Home Fires Burning (Karaoke)", - "id": "7Ex_DdtLCEQ" - }, - { - "title": "Ronnie McDowell - You Made A Wanted Man Of Me (Karaoke)", - "id": "WgcRkgYQmFM" - }, - { - "title": "Donna Fargo - Don't Be Angry (Karaoke)", - "id": "pwgiXmpjcec" - }, - { - "title": "David Houston - Baby, Baby (I Know You're A Lady) (Karaoke)", - "id": "-KRUTS581oo" - }, - { - "title": "David Houston - I Do My Swinging At Home (Karaoke)", - "id": "XnjvHnQ2IRc" - }, - { - "title": "Hank Thompson - Older The Violin Sweeter The Music (Karaoke)", - "id": "sX_ekw_K8Xw" - }, - { - "title": "Martina McBride - Blessed (Karaoke)", - "id": "PuETUVOJ8dE" - }, - { - "title": "Sarah McLachlan - Possession (Karaoke)", - "id": "YwhyfmFoqjQ" - }, - { - "title": "Red Foley & Kitty Wells - One By One (Karaoke)", - "id": "lZrxRihS3II" - }, - { - "title": "Don Gibson - Touch The Morning (Karaoke)", - "id": "tu3tXYAMiTk" - }, - { - "title": "Eddy Arnold - Lonely Again (Karaoke)", - "id": "WCxawIjySWQ" - }, - { - "title": "Bellamy Brothers - For All The Wrong Reasons (Karaoke)", - "id": "5DwQlIaU1DY" - }, - { - "title": "Trisha Yearwood - I Would've Loved You Anyway (Karaoke)", - "id": "4PxkHsUoLYQ" - }, - { - "title": "Mac Davis - Let's Keep It That Way (Karaoke)", - "id": "B23rpbGx87g" - }, - { - "title": "Martina McBride - When God Fearing Women Get The Blues (Karaoke)", - "id": "1_rXnz3XfSo" - }, - { - "title": "Lonestar - With Me (Karaoke)", - "id": "YZAC7To_SIE" - }, - { - "title": "Brooks & Dunn - Ain't Nothing 'Bout You (Karaoke)", - "id": "IjP2-eMRJZQ" - }, - { - "title": "Vern Gosdin - What Would Your Memories Do (Karaoke)", - "id": "ozWHsfxq0ww" - }, - { - "title": "Kortney Kayle - Don't Let Me Down (Karaoke)", - "id": "U4cmreTD-Ms" - }, - { - "title": "Sons Of The Desert - What I Did Right (Karaoke)", - "id": "ROD1AWMVT10" - }, - { - "title": "Pink - Most Girls (Karaoke)", - "id": "tPQiQNMnsu0" - }, - { - "title": "Sweet Inspirations - Sweet Inspiration (Karaoke)", - "id": "oDgZYlKYikI" - }, - { - "title": "Hank Williams - Message To My Mother (Karaoke)", - "id": "_ta9kORu-5s" - }, - { - "title": "Hank Williams - A Mansion On The Hill (Karaoke)", - "id": "gI4HQsyeB_Q" - }, - { - "title": "Hank Williams - I Can't Get You Off My Mind (Karaoke)", - "id": "Pm6iYudoHaE" - }, - { - "title": "Toby Keith - It's All Good (Karaoke)", - "id": "Q6-BSXNIP9A" - }, - { - "title": "Marc Anthony - I've Got You (Karaoke)", - "id": "-VZluwd7GO0" - }, - { - "title": "Jessica King - Gift Of Grace (Karaoke)", - "id": "8JYu6jfq-5o" - }, - { - "title": "Loretta Lynn - Precious Memories (Karaoke)", - "id": "LWWD-CvGRVk" - }, - { - "title": "Bobby Helms - Fraulein (Karaoke)", - "id": "M6IDD9pcJeM" - }, - { - "title": "Eddy Arnold - It's A Sin (Karaoke)", - "id": "Nbhxx8K5r7k" - }, - { - "title": "Travis Tritt - Strong Enough To Be Your Man (Karaoke)", - "id": "ftRyeilNqcg" - }, - { - "title": "Ginuwine - Differences (Karaoke)", - "id": "wWf9x03FX8k" - }, - { - "title": "Jack Greene - If This Is Love (Karaoke)", - "id": "YA6KO7o2B5o" - }, - { - "title": "Alan Jackson - Where Were You (Karaoke)", - "id": "aiRT5Y9DjXI" - }, - { - "title": "Toby Keith - I'm Just Talkin' About Tonight (Karaoke)", - "id": "gDCMKXj8BOM" - }, - { - "title": "John Conlee - As Long As I'm Rockin' With You (Karaoke)", - "id": "Xzmif5qIh34" - }, - { - "title": "Kevin Sharp - Beautiful People (Karaoke)", - "id": "ksr-ao4xysw" - }, - { - "title": "Gary Allan - Man To Man (Karaoke)", - "id": "MQkqOq614dM" - }, - { - "title": "Larry Gatlin - I Don't Wanna Cry (Karaoke)", - "id": "ZQB9NUsB9JM" - }, - { - "title": "Toya - No Matta What (Party All Night) (Karaoke)", - "id": "yceDipmdGKs" - }, - { - "title": "Larry Gatlin - I Just Wish You Were Someone I Love (Karaoke)", - "id": "BnUvkdukj74" - }, - { - "title": "Tim McGraw - Grown Men Don't Cry (Karaoke)", - "id": "bbhUN6or3L4" - }, - { - "title": "Kelly Rowland - Stole (Karaoke)", - "id": "OxXqrZxYH4A" - }, - { - "title": "Terri Clark - I Just Wanna Be Mad (Karaoke)", - "id": "1vu7RNYvvg0" - }, - { - "title": "Alan Jackson - Work In Progress (Karaoke)", - "id": "zIGtySCrEpQ" - }, - { - "title": "Jack Ingram - Love You (Karaoke)", - "id": "ZwhnyZLAkW4" - }, - { - "title": "Mark Dinning - Teen Angel (Karaoke)", - "id": "Pxrwcxeryi4" - }, - { - "title": "George McCrae - Rock Your Baby (Karaoke)", - "id": "8IDVRx0S2jk" - }, - { - "title": "Yankee Grey - Another Nine Minutes (Karaoke)", - "id": "Y9yQkR0zQGc" - }, - { - "title": "Dottie West - Come See Me And Come Lonely (Karaoke)", - "id": "jXNeQdmAjCU" - }, - { - "title": "Andy Griggs - I'll Go Crazy (Karaoke)", - "id": "rJSMn-WIST8" - }, - { - "title": "Jake Owen - Yee-Haw (Karaoke)", - "id": "YMAr4nAQn1A" - }, - { - "title": "Hank Williams - Weary Blues From Waitin' (Karaoke)", - "id": "BiFf3FeLmW0" - }, - { - "title": "Tanya Tucker - Can I See You Tonight (Karaoke)", - "id": "LmBLI8ycUmc" - }, - { - "title": "Jenny Simpson - Ticket Out Of Kansas (Karaoke)", - "id": "YmgF7uPG1G8" - }, - { - "title": "Alabama - Cheap Seats (Karaoke)", - "id": "NLxnUyrwIP4" - }, - { - "title": "Dolly Parton and Billy Ray Cyrus - Romeo (Karaoke)", - "id": "fRWNg2S9lPY" - }, - { - "title": "Sara Evans - Shame About That (Karaoke)", - "id": "pVsUnBkLuf8" - }, - { - "title": "Tanya Tucker - What's Your Mama's Name (Karaoke)", - "id": "UY4w46h8XUU" - }, - { - "title": "Charly McClain - Radio Heart (Karaoke)", - "id": "7_xNRxz_TK8" - }, - { - "title": "Coasters - Little Egypt (Karaoke)", - "id": "HCzaRoOGVxE" - }, - { - "title": "Jessica Andrews - Who I Am (Karaoke)", - "id": "kHrPeZUZcbg" - }, - { - "title": "Trace Adkins - Hot Mama (Karaoke)", - "id": "goZohbtxuIo" - }, - { - "title": "Sade - Love Is Stronger Than Pride (Karaoke)", - "id": "l2s0uTx6SCs" - }, - { - "title": "Joe Nichols - Impossible (Karaoke)", - "id": "6p8P46RT1nQ" - }, - { - "title": "Gary Allan - Lovin' You Against My Will (Karaoke)", - "id": "19scIBK7vME" - }, - { - "title": "Buck Owens - My Heart Skips A Beat (Karaoke)", - "id": "yJsREakT7rw" - }, - { - "title": "Tim McGraw - Some Things Never Change (Karaoke)", - "id": "jEUX29DEtyM" - }, - { - "title": "Paula Cole - Feelin' Love (Karaoke)", - "id": "wq4hD7B7TQs" - }, - { - "title": "Avril Lavigne - My Happy Ending (Karaoke)", - "id": "cIDQg75GTpY" - }, - { - "title": "Marvin Gaye - I'll Be Doggone (Karaoke)", - "id": "FYFezcOxnFY" - }, - { - "title": "Glen Campbell - I Wanna Live (Karaoke)", - "id": "2oq7nuYSuTA" - }, - { - "title": "Tracy Lawrence - Find Out Who Your Friends Are (Karaoke)", - "id": "Kf_c9iw-vYo" - }, - { - "title": "Sonya Isaacs - Barefoot In The Grass (Karaoke)", - "id": "1SJn_Jkbkw8" - }, - { - "title": "Porter Wagoner - Big Wind (Karaoke)", - "id": "vSbV3joVx54" - }, - { - "title": "Smokey Robinson & The Miracles - Going To A Go(Karaoke)", - "id": "8QSG6tf74is" - }, - { - "title": "Ty Herndon - Steam (Karaoke)", - "id": "hOHAj-DmURQ" - }, - { - "title": "Jerry Kilgore - Cactus In A Coffee Can (Karaoke)", - "id": "LH1h_mLfUVA" - }, - { - "title": "Wilbert Harrison - Kansas City (Karaoke)", - "id": "mEeyPtN2cQQ" - }, - { - "title": "Sarah McLachlan - Sweet Surrender (Karaoke)", - "id": "bCaMm0OPUnY" - }, - { - "title": "Jo Dee Messina - If Not You (Karaoke)", - "id": "r82g0p5O-WY" - }, - { - "title": "Barry Mann - Who Put The Bomp (In The Bomp, Bomp, Bomp) (Karaoke)", - "id": "am7Xy0Ecz_E" - }, - { - "title": "Martina McBride - She's A Butterfly (Karaoke)", - "id": "kD07eKIv-iY" - }, - { - "title": "Buck Owens - Above And Beyond The Call Of Love (Karaoke)", - "id": "dUC6_MpBxn0" - }, - { - "title": "Paula Cole - Saturn Girl (Karaoke)", - "id": "Rr3YkkIDcAk" - }, - { - "title": "Brady Seals - Best Is Yet To Come (Karaoke)", - "id": "4Dwy7KygTA4" - }, - { - "title": "Highwaymen - Michael (Row The Boat Ashore) (Karaoke)", - "id": "3vc4CTIZeyI" - }, - { - "title": "Norah Jones - Turn Me On (Karaoke)", - "id": "zG-e38VMwuw" - }, - { - "title": "David Houston - Where Love Used To Live (Karaoke)", - "id": "hvooK2aYYKA" - }, - { - "title": "SHeDaisy - Little Good-byes (Karaoke)", - "id": "cDErNNo7wkI" - }, - { - "title": "T.G. Sheppard - Do You Wanna Go To Heaven (Karaoke)", - "id": "ZjN1ih2NfVQ" - }, - { - "title": "Luke Bryan - Rain Is A Good Thing (Karaoke)", - "id": "x0zKFgVnTYU" - }, - { - "title": "Porter Wagoner & Dolly Parton - Yours Love (Karaoke)", - "id": "3e2-FlFJOTo" - }, - { - "title": "Jennifer Hanson - Half A Heart Tattoo (Karaoke)", - "id": "cm52eMD_sxA" - }, - { - "title": "Randy Travis - Three Wooden Crosses (Karaoke)", - "id": "16eFNM1wxfk" - }, - { - "title": "Crystal Gayle - Turning Away (Karaoke)", - "id": "czT2hrP1aLs" - }, - { - "title": "Charley Pride - Never Been So Loved (In All My Life) (Karaoke)", - "id": "WkSyo1gCbmQ" - }, - { - "title": "Babyface - When Can I See You (Karaoke)", - "id": "9k3BtYHJjrg" - }, - { - "title": "Anita Cochran - For Crying Out Loud (Karaoke)", - "id": "SQvyQ9DdqSg" - }, - { - "title": "Toby Keith - Ain't It Just Like You (Karaoke)", - "id": "7acPUcpWXKI" - }, - { - "title": "Hank Williams - Baby We're Really In Love (Karaoke)", - "id": "kI10m6oSebo" - }, - { - "title": "Sarah McLachlan - Good Enough (Karaoke)", - "id": "Dq-9wTj968Y" - }, - { - "title": "George Jones - When The Last Curtain Falls (Karaoke)", - "id": "ZXgu4Mz5RhI" - }, - { - "title": "Monica - First Night (Karaoke)", - "id": "E3327C9yYMw" - }, - { - "title": "Eddie Rabbitt - You Can't Run From Love (Karaoke)", - "id": "G6kFKgNEqJo" - }, - { - "title": "Marshmello ftg. Khalid - Silence (Karaoke)", - "id": "W3Po66Ahms8" - }, - { - "title": "Buck Owens - Love's Gonna Live Here (Karaoke)", - "id": "en-5GV096X4" - }, - { - "title": "Tim McGraw - Telluride (Karaoke)", - "id": "XzhRXLmNiiw" - }, - { - "title": "Tim McGraw - Please Remember Me (Karaoke)", - "id": "DSE6LlifLg4" - }, - { - "title": "Avril Lavigne - Hot (Karaoke)", - "id": "U2My4xHPLF4" - }, - { - "title": "Sara Bareilles - King Of Anything (Karaoke)", - "id": "-GjOJ4h5oqY" - }, - { - "title": "Jon Randall - Cold Coffee Morning (Karaoke)", - "id": "xpIs0HU7-4Y" - }, - { - "title": "Brooks & Dunn - How Long Gone (Karaoke)", - "id": "m-9R7SWgoZM" - }, - { - "title": "Earl Thomas Conley - Once In A Blue Moon (Karaoke)", - "id": "4CrOIUtlrjY" - }, - { - "title": "Chely Wright - Single White Female (Karaoke)", - "id": "ekR7aCV2SbY" - }, - { - "title": "Jack Greene - There Goes My Everything (Karaoke)", - "id": "y9WlAJYzcMg" - }, - { - "title": "Goldie Hill - I Let The Stars Get In My Eyes (Karaoke)", - "id": "KiWkE2tFEoA" - }, - { - "title": "Paynes - Long Time Coming (Karaoke)", - "id": "SJrMZg_NbKY" - }, - { - "title": "John Rich - I Pray For You (Karaoke)", - "id": "p5BY7ar7HDQ" - }, - { - "title": "Moe Bandy - Till I'm Too Old To Die Young (Karaoke)", - "id": "tysRq2uYq8U" - }, - { - "title": "Red Foley - Midnight (Karaoke)", - "id": "RLWY8elpmjA" - }, - { - "title": "Marc Anthony - You Sang To Me (Karaoke)", - "id": "vMqKWQLr7Mg" - }, - { - "title": "Jamie O'Neal - Frantic (Karaoke)", - "id": "QRD1MZ6wHoE" - }, - { - "title": "Jolie & The Wanted - I Would (Karaoke)", - "id": "74hAMBh3Fok" - }, - { - "title": "George Strait - There's A New Kid In Town (Karaoke)", - "id": "F7YnfrAFG8Q" - }, - { - "title": "Marc Anthony - I Need To Know (Karaoke)", - "id": "65WXuisoXoo" - }, - { - "title": "Smokey Robinson & The Miracles - I Second That Emotion (Karaoke)", - "id": "sqGltGOLV2E" - }, - { - "title": "Smokey Robinson & The Miracles - Shop Around (Karaoke)", - "id": "6YqVqWccrGo" - }, - { - "title": "Rascal Flatts - Long Slow Beautiful Dance (Karaoke)", - "id": "g7-Wof1jHqs" - }, - { - "title": "Cookies - Don't Say Nothin' Bad (About My Baby) (Karaoke)", - "id": "9_4hGo2GwQ8" - }, - { - "title": "Brooks & Dunn - You'll Always Be Loved By Me (Karaoke)", - "id": "rkb8hyU-J2g" - }, - { - "title": "Carolyn Dawn Johnson - Georgia (Karaoke)", - "id": "fS4KNW1cnK8" - }, - { - "title": "Solomon Burke - Cry To Me (Karaoke)", - "id": "tlXdQLxTOEw" - }, - { - "title": "Mark Wills - Loving Every Minute (Karaoke)", - "id": "j_D9eH-69F4" - }, - { - "title": "Carolyn Dawn Johnson - Complicated (Karaoke)", - "id": "OmV2qdqtU-w" - }, - { - "title": "Eddie Rabbitt - Hearts On Fire (Karaoke)", - "id": "DRM3J0Jx9jc" - }, - { - "title": "Buck Owens - Before You Go (Karaoke)", - "id": "Nlj-N_3inxs" - }, - { - "title": "Jo Dee Messina - Because You Love Me (Karaoke)", - "id": "UN-TnOYJgyg" - }, - { - "title": "Crystal Gayle - Too Many Lovers (Karaoke)", - "id": "yBP109DK49c" - }, - { - "title": "Jewel - Hands (Karaoke)", - "id": "QbW68Jpavbs" - }, - { - "title": "Martina McBride - Whatever You Say (Karaoke)", - "id": "_fE0TBiQdVI" - }, - { - "title": "Jim Reeves - Distant Drums (Karaoke)", - "id": "Q060Hd7F2y4" - }, - { - "title": "En Vogue - Whatever (Karaoke)", - "id": "vZqp8M49mqI" - }, - { - "title": "Skeeter Davis - Fuel To The Flame (Karaoke)", - "id": "JfVBTY92pK8" - }, - { - "title": "Gene Watson - Forever Again (Karaoke)", - "id": "B7bUXSwyRVI" - }, - { - "title": "Gene Watson - Pick The Wildwood Flower (Karaoke)", - "id": "3le8kc63vcQ" - }, - { - "title": "Smash Mouth - Can't Get Enough Of You Baby (Karaoke)", - "id": "yzc_fSRYtUg" - }, - { - "title": "Eddy Arnold - Last Word In Lonesome Is Me (Karaoke)", - "id": "C6T-vFPN2o4" - }, - { - "title": "Wynonna - Woman To Woman (Karaoke)", - "id": "iTmp9l7yUeQ" - }, - { - "title": "Mark Wills - Don't Laugh At Me (Karaoke)", - "id": "8UoHaEL6Otc" - }, - { - "title": "Terri Clark - You're Easy On The Eyes (Karaoke)", - "id": "zcrc5Bj674k" - }, - { - "title": "George Jones - She Loved A Lot In Her Time (Karaoke)", - "id": "na6QMkOJD2s" - }, - { - "title": "Charly McClain - Surround Me With Love (Karaoke)", - "id": "v3G0NGSl7LA" - }, - { - "title": "Mariah Carey - I Still Believe (Karaoke)", - "id": "9RUIWAWeZi4" - }, - { - "title": "Brooks & Dunn - Husbands And Wives (Karaoke)", - "id": "NhwBBxhfLU0" - }, - { - "title": "Steve Wariner - Two Teardrops (Karaoke)", - "id": "jW37On45_nM" - }, - { - "title": "Collin Raye - Gift (Karaoke)", - "id": "zgHaLWMnAt4" - }, - { - "title": "Aaron Tippin - There Ain't Nothin' Wrong With The Radio (Karaoke)", - "id": "eMJXHsq8uvI" - }, - { - "title": "Paula Cole - I Don't Want To Wait (Karaoke)", - "id": "L9yd1g4AuWE" - }, - { - "title": "Lauryn Hill - Lost Ones (Karaoke)", - "id": "u2M6moBQx7o" - }, - { - "title": "Mariah Carey - All In Your Mind (Karaoke)", - "id": "ZMyJc_z073Q" - }, - { - "title": "Lauryn Hill - Doo Wop (That Thing) (Karaoke)", - "id": "ELjkv7JT6g0" - }, - { - "title": "Sara Evans - Cryin' Game (Karaoke)", - "id": "rXdHVDJMIZw" - }, - { - "title": "Holly Dunn - Only When I Love (Karaoke)", - "id": "3lZNZR_TQqg" - }, - { - "title": "Oak Ridge Boys - American Made (Karaoke)", - "id": "NOOViIKDkS4" - }, - { - "title": "Clay Walker - Live, Laugh, Love (Karaoke)", - "id": "E1DqBAK6YDk" - }, - { - "title": "Ronnie Milsap - There's No Gettin' Over Me (Karaoke)", - "id": "zp41esOiLHE" - }, - { - "title": "Travis Tritt - Where Corn Don't Grow (Karaoke)", - "id": "u6mRxwIeHbA" - }, - { - "title": "Brooks & Dunn - Honky Tonk Truth (Karaoke)", - "id": "cNcUF2slcpQ" - }, - { - "title": "Patsy Cline - In Care Of The Blues (Karaoke)", - "id": "fURUdXUZFM0" - }, - { - "title": "Pam Tillis - All The Good Ones Are Gone (Karaoke)", - "id": "F0ZwB0D1AHQ" - }, - { - "title": "Kendalls - Heaven's Just A Sin Away (Karaoke)", - "id": "Cp_nDof0eTU" - }, - { - "title": "Oak Ridge Boys - Trying To Love Two Women (Karaoke)", - "id": "6zv-93E5GD0" - }, - { - "title": "Traditional Christmas - Silver Bells (Karaoke)", - "id": "72kN0qj9PK0" - }, - { - "title": "Tony Rich Project - Nobody Knows (Karaoke)", - "id": "oTTM8s6zF2g" - }, - { - "title": "Wade Hayes - It's Over My Head (Karaoke)", - "id": "E-orMxhl_jg" - }, - { - "title": "Gene Watson - Should I Come Home (Or Should I Go Crazy) (Karaoke)", - "id": "r-idjruPT20" - }, - { - "title": "Patty Loveless - A Thousand Times A Day (Karaoke)", - "id": "6ZETEk40sR4" - }, - { - "title": "Tracy Lawrence - While You Sleep (Karaoke)", - "id": "eAx-JX6Wx8U" - }, - { - "title": "Sammy Kershaw - One Day Left To Live (Karaoke)", - "id": "lXaj_g1BhAM" - }, - { - "title": "David Kersh - Goodnight Sweetheart (Karaoke)", - "id": "za2e-eQNwSs" - }, - { - "title": "Jeff Carson - Shine On (Karaoke)", - "id": "2rWSneb7w6U" - }, - { - "title": "Leroy Van Dyke - Walk On By (Karaoke)", - "id": "34zlH3wxeN4" - }, - { - "title": "Hank Thompson - Wild Side Of Life (Karaoke)", - "id": "oSQ7p2yiM9Y" - }, - { - "title": "Emmylou Harris - If I Could Only Win Your Love (Karaoke)", - "id": "UGra3cgXIoc" - }, - { - "title": "Joe Diffie - Texas Size Heartache (Karaoke)", - "id": "e0Bz4Fic51w" - }, - { - "title": "George Jones - Take Me (Karaoke)", - "id": "PSUYowFbXsw" - }, - { - "title": "Vern Gosdin - I Can Tell By The Way You Dance (Karaoke)", - "id": "uyRa5mNOUaM" - }, - { - "title": "Joe Diffie - This Is Your Brain (Karaoke)", - "id": "JtmkxfPhG68" - }, - { - "title": "Connie Smith - If It Ain't Love (Let's Leave It Alone) (Karaoke)", - "id": "rwUjt1emDOw" - }, - { - "title": "Mark Chesnutt - Wherever You Are (Karaoke)", - "id": "ITCUqtBpLFc" - }, - { - "title": "Charly McClain - Sleepin' With The Radio On (Karaoke)", - "id": "HBArzsez6pI" - }, - { - "title": "Vince Gill - Worlds Apart (Karaoke)", - "id": "7K0LXGfqrKI" - }, - { - "title": "Sara Evans - No Place That Far (Karaoke)", - "id": "vcDoAhtpkRY" - }, - { - "title": "John Berry - She's Taken A Shine (Karaoke)", - "id": "YDYpyXzYDvU" - }, - { - "title": "George Strait - Round About Way (Karaoke)", - "id": "Aslf8dh1orE" - }, - { - "title": "Wynonna - When Love Starts Talking (Karaoke)", - "id": "K20Fxo103zc" - }, - { - "title": "Reba McEntire - What If It's You (Karaoke)", - "id": "93iIWg94quU" - }, - { - "title": "Tim McGraw - Just To See You Smile (Karaoke)", - "id": "66cwwDV6R1k" - }, - { - "title": "Ty England - All Of The Above (Karaoke)", - "id": "0prXUhlPNHQ" - }, - { - "title": "Buck Owens - Under Your Spell Again (Karaoke)", - "id": "LvMGJ2zgocA" - }, - { - "title": "Red Foley - Chattanoogie Shoe Shine Boy (Karaoke)", - "id": "-ebJ4P3MbFc" - }, - { - "title": "Tracy Lawrence - Is That A Tear (Karaoke)", - "id": "2vvKvh8fTuQ" - }, - { - "title": "Neal McCoy - That Woman Of Mine (Karaoke)", - "id": "aAdCcszlfzw" - }, - { - "title": "Lee Ann Womack - You've Got To Talk To Me (Karaoke)", - "id": "MK6QSjPYDHI" - }, - { - "title": "Rhett Akins - Love You Back (Karaoke)", - "id": "J4szGoDPBC8" - }, - { - "title": "Real McCoy - Come And Get Your Love (Karaoke)", - "id": "2fcFhrKye1I" - }, - { - "title": "Martina McBride - Swingin' Doors (Karaoke)", - "id": "AQoUStmjyn8" - }, - { - "title": "John Michael Montgomery - Cowboy Love (Karaoke)", - "id": "fe3zSJsk7qY" - }, - { - "title": "Lorrie Morgan - Back In Your Arms Again (Karaoke)", - "id": "5bgTTiWmRDw" - }, - { - "title": "Trisha Yearwood - On A Bus To St. Cloud (Karaoke)", - "id": "HRmDNfKxRZA" - }, - { - "title": "Clay Walker - Who Needs You Baby (Karaoke)", - "id": "CFrfVIkFQeQ" - }, - { - "title": "Dionne Farris - I Know (Karaoke)", - "id": "BDt8uPN16gs" - }, - { - "title": "George Strait - Lead On (Karaoke)", - "id": "Ge6n26nFcWM" - }, - { - "title": "Collin Raye - One Boy, One Girl (Karaoke)", - "id": "-mvdtsMh1rQ" - }, - { - "title": "John Michael Montgomery - No Man's Land (Karaoke)", - "id": "pAlamWwVfbU" - }, - { - "title": "Rod Stewart - Some Guys Have All The Luck (Karaoke)", - "id": "jPgRZ3JyOnA" - }, - { - "title": "Beatles - And I Love Her (Karaoke)", - "id": "n40Bs6PuOJU" - }, - { - "title": "Marvin Gaye - Sexual Healing (Karaoke)", - "id": "lOxsDbUswjU" - }, - { - "title": "Barbara Lewis - Baby, I'm Yours (Karaoke)", - "id": "715sEnqIdEQ" - }, - { - "title": "Kathy Mattea - Lonesome Standard Time (Karaoke)", - "id": "IN2Zjd649Ss" - }, - { - "title": "Exile - I Don't Want To Be A Memory (Karaoke)", - "id": "qVVEbdsfzLM" - }, - { - "title": "Aaron Tippin - I'm Leaving (Karaoke)", - "id": "nD0cXv5Cn3I" - }, - { - "title": "Shenandoah - Darned If I Don't (Danged If I Do) (Karaoke)", - "id": "hdPVaNujk7I" - }, - { - "title": "Exile - Give Me One More Chance (Karaoke)", - "id": "fbOA-EoCkvE" - }, - { - "title": "Gene Watson - Fourteen Carat Mind (Karaoke)", - "id": "O1Pj6HNDU6k" - }, - { - "title": "Mickey Gilley - A Room Full Of Roses (Karaoke)", - "id": "kEdmwmVQn-k" - }, - { - "title": "Exile - She's A Miracle (Karaoke)", - "id": "hrVGpUfeIUw" - }, - { - "title": "John Michael Montgomery - I Can Love You Like That (Karaoke)", - "id": "MINYJSitxtA" - }, - { - "title": "Rihanna - Te Amo (Karaoke)", - "id": "1FXV8SCWZ6s" - }, - { - "title": "Rihanna - Unfaithful (Karaoke)", - "id": "xlXQGWpVpmw" - }, - { - "title": "Rihanna - Don't Stop The Music (Karaoke)", - "id": "3cotTChDJj0" - }, - { - "title": "Rihanna - Take A Bow (Karaoke)", - "id": "emTE1ZG4PaQ" - }, - { - "title": "Rihanna ftg. Ne-Yo - Hate That I Love You (Karaoke)", - "id": "y-JNy0pwqLs" - }, - { - "title": "Rihanna ftg. Mikky Ekko - Stay (Karaoke)", - "id": "aSafnx4oJoI" - }, - { - "title": "Leonard Cohen & Sharon Robinson - Joan Of Arc (Karaoke)", - "id": "VEpLkRnh1Kg" - }, - { - "title": "Thomas Rhett - Beer With Jesus (Karaoke)", - "id": "GwicYXLSMkk" - }, - { - "title": "John Murphy Feat. Ralph Saenz (Peacemaker) - Pumped up Kicks (Karaoke)", - "id": "kdSvpCnCuuY" - }, - { - "title": "Queensryche - Jet City Woman (Karaoke)", - "id": "Yxr9ovyLC9o" - }, - { - "title": "Paul Revere & The Raiders - Kicks (Karaoke)", - "id": "eG3D0Z-JCoc" - }, - { - "title": "Lesley Gore - Judy's Turn To Cry (Karaoke)", - "id": "H1JMLPFKXu8" - }, - { - "title": "Starset - Infected (Karaoke)", - "id": "KatgV5OPcLM" - }, - { - "title": "Sheppard - Thank You (Karaoke)", - "id": "8HrQoC9D0uY" - }, - { - "title": "H.E.R. - Damage (Karaoke)", - "id": "olMSIYGefQw" - }, - { - "title": "Doja Cat feat. Ariana Grande - I Don't Do Drugs (Karaoke)", - "id": "1YX8pVr35_w" - }, - { - "title": "Billie Eilish - NDA (Karaoke)", - "id": "QAXo3PEDFDU" - }, - { - "title": "The System - Don't Disturb This Groove (Karaoke EZ Sing)", - "id": "3ry1OEm1lCU" - }, - { - "title": "Oscar McLollie and His Honey Jumpers - Dig That Crazy Santa Claus (Karaoke EZ Sing)", - "id": "s9jH0Qf57DE" - }, - { - "title": "Keyshia Cole - I Should Have Cheated (Karaoke EZ Sing)", - "id": "ESH9WU1vHvU" - }, - { - "title": "The Platters - My Prayer (Karaoke EZ Sing)", - "id": "8GXixiMAXTU" - }, - { - "title": "Michael Jackson - Music And Me (Karaoke EZ Sing)", - "id": "64qKEmSmjGg" - }, - { - "title": "Chris Young - Gettin' You Home (The Black Dress Song) (Karaoke EZ Sing)", - "id": "Eg9Z41s3taQ" - }, - { - "title": "The Fray - You Found Me (Karaoke EZ Sing)", - "id": "8th_LJBVF7M" - }, - { - "title": "Dolly Parton - Shinola (Karaoke EZ Sing)", - "id": "oEdPa5H6kvI" - }, - { - "title": "Diamond Rio - Oh Me, Oh My, Sweet Baby (Karaoke)", - "id": "pqagqPHVpT0" - }, - { - "title": "Little Texas - I'd Rather Miss You (Karaoke EZ Sing)", - "id": "WuauKidwopQ" - }, - { - "title": "Travis Tritt - Nothing Short Of Dying (Karaoke)", - "id": "giv5O398kEg" - }, - { - "title": "Kim Carnes - More Love (Karaoke EZ Sing)", - "id": "Lx1H7SdigTs" - }, - { - "title": "Four Tops - 7 Rooms of Gloom (Karaoke)", - "id": "4M5UPFwKgeY" - }, - { - "title": "Aaron Tippin - Call Of The Wild (Karaoke)", - "id": "IDjHSWZtGMc" - }, - { - "title": "Larry Stewart - Alright Already (Karaoke)", - "id": "ppZXyWi2K5g" - }, - { - "title": "Mark Collie - Even The Man In The Moon Is Crying (Karaoke EZ Sing)", - "id": "GgNy7CcE_vQ" - }, - { - "title": "Mark Collie - Born To Love You (Karaoke)", - "id": "e0XiltiomfE" - }, - { - "title": "George Strait - Overnight Male (Karaoke)", - "id": "RdOLo1QVa3A" - }, - { - "title": "Martina McBride - Cheap Whiskey (Karaoke EZ Sing)", - "id": "0yPC_4RxwOQ" - }, - { - "title": "Sammy Kershaw - Haunted Heart (Karaoke)", - "id": "i98uIT0tXls" - }, - { - "title": "Restless Heart - When She Cries (Karaoke EZ Sing)", - "id": "T4orHT6zXgo" - }, - { - "title": "Connie Francis - Everybody's Somebody's Fool (Karaoke)", - "id": "Jr6LXLcMajA" - }, - { - "title": "Forester Sisters - What'll You Do About Me (Karaoke)", - "id": "Yb1A5VpA3vU" - }, - { - "title": "Pam Tillis - Blue Rose Is (Karaoke)", - "id": "BoV7Tog610M" - }, - { - "title": "Tanya Tucker - Without You What Do I Do With Me (Karaoke)", - "id": "KghelhAS9Xw" - }, - { - "title": "Brooks & Dunn - My Next Broken Heart (Karaoke)", - "id": "wuNcVuoCZ0Y" - }, - { - "title": "Whitney Houston - Miracle (Karaoke)", - "id": "x9S6bpAPAPI" - }, - { - "title": "Diamond Rio - Mirror Mirror (Karaoke)", - "id": "H_-tb9Vuy6c" - }, - { - "title": "Reba McEntire - If I Had Only Known (Karaoke)", - "id": "zDxWwQN3hTY" - }, - { - "title": "Wynonna - Girls With Guitars (Karaoke)", - "id": "p6Oiqi55iNk" - }, - { - "title": "Mary Chapin Carpenter - I Feel Lucky (Karaoke)", - "id": "-V2mL8Fy8_g" - }, - { - "title": "Hal Ketchum - Five O'Clock World (Karaoke)", - "id": "fN4PR54Wkh4" - }, - { - "title": "Four Tops - Something About You (Karaoke)", - "id": "YHhXCvapApY" - }, - { - "title": "Shenandoah - I Want To Be Loved Like That (Karaoke)", - "id": "MpUF_2oJAGU" - }, - { - "title": "Tracy Byrd - Holdin' Heaven (Karaoke)", - "id": "VV5KL3vGW6U" - }, - { - "title": "Mary Chapin Carpenter - Come On Come On (Karaoke)", - "id": "FYzZZHwB0fY" - }, - { - "title": "Trisha Yearwood - That's What I Like About You (Karaoke)", - "id": "NdF20UQaCxk" - }, - { - "title": "k.d. lang - Big Big Love (Karaoke)", - "id": "8sUvggyh-DE" - }, - { - "title": "Ronnie McDowell - Wandering Eyes (Karaoke)", - "id": "lM6BYrGvi_k" - }, - { - "title": "Billy Dean - Somewhere In My Broken Heart (Karaoke)", - "id": "kV-u-1N-TqA" - }, - { - "title": "Travis Tritt - Anymore (Karaoke)", - "id": "o9E1GPIxDpM" - }, - { - "title": "Natalie Cole - Miss You Like Crazy (Karaoke)", - "id": "RJ42M4xHk5Q" - }, - { - "title": "Helen Reddy - Ain't No Way To Treat A Lady (Karaoke)", - "id": "zWbjS0X5_y0" - }, - { - "title": "Brooks & Dunn - Brand New Man (Karaoke)", - "id": "4Knoq3p-gis" - }, - { - "title": "Highway 101 - Who's Lonely Now (Karaoke)", - "id": "VH4Xi4MlNKw" - }, - { - "title": "Tracy Byrd - First Step (Karaoke)", - "id": "kVQa-s4p26Q" - }, - { - "title": "John Michael Montgomery - Beer And Bones (Karaoke)", - "id": "E40VFGxFIy8" - }, - { - "title": "George Strait - Easy Come, Easy Go (Karaoke)", - "id": "snZoJdlHXug" - }, - { - "title": "Diamond Rio - Sawmill Road (Karaoke)", - "id": "_DgC7WkywMc" - }, - { - "title": "Neal McCoy - No Doubt About It (Karaoke)", - "id": "duNnTS6f2qI" - }, - { - "title": "Mickey Gilley - A Headache Tomorrow (Or A Heartache Tonight) (Karaoke)", - "id": "fyx_ZaxnIRE" - }, - { - "title": "Four Tops - Shake Me, Wake Me (When It's Over) (Karaoke)", - "id": "F8zymFxrFp4" - }, - { - "title": "Shania Twain - You Lay A Whole Lot Of Love On Me (Karaoke)", - "id": "77jKlyDhGjs" - }, - { - "title": "Mary Chapin Carpenter - Something Of A Dreamer (Karaoke)", - "id": "56nl5reBjlU" - }, - { - "title": "Brooks & Dunn - Heartbroke Out Of My Mind (Karaoke)", - "id": "6d92feO1Djo" - }, - { - "title": "John Conlee - Lady Lay Down (Karaoke)", - "id": "UYc3luRjiI0" - }, - { - "title": "Billy Dean - I Wanna Take Care Of You (Karaoke)", - "id": "dXrqMnzJW6E" - }, - { - "title": "Shenandoah - Janie Baker's Love Slave (Karaoke)", - "id": "UqqY-34LW_U" - }, - { - "title": "Shenandoah - Two Dozen Roses (Karaoke)", - "id": "IjEzzBOxCQA" - }, - { - "title": "Clay Walker - Dreaming With My Eyes Open (Karaoke)", - "id": "Un2c6nZzmhA" - }, - { - "title": "Connie Francis - Vacation (Karaoke)", - "id": "KTCYLJJcMc8" - }, - { - "title": "Doug Stone - Made For Loving You (Karaoke EZ Sing)", - "id": "F1f4v-euU4A" - }, - { - "title": "Brooks & Dunn - We'll Burn That Bridge (Karaoke)", - "id": "z5mtejJLVkU" - }, - { - "title": "Mary Chapin Carpenter - Down At The Twist And Shout (Karaoke)", - "id": "iJ_jVas_uBs" - }, - { - "title": "Doug Stone - Warning Labels (Karaoke)", - "id": "uwmmOfUBM-k" - }, - { - "title": "Mary Chapin Carpenter - Hard Way (Karaoke)", - "id": "DyGVwEP-P1U" - }, - { - "title": "Bobby Brown - Every Little Step (Karaoke)", - "id": "Z3KBgcO1E-4" - }, - { - "title": "Patsy Cline - Foolin' Around (Karaoke)", - "id": "ZonwmdSN6t8" - }, - { - "title": "Drifters - Up On The Roof (Karaoke)", - "id": "gJxGFAmhfbI" - }, - { - "title": "George Strait - If I Know Me (Karaoke)", - "id": "MfeczNkhKVU" - }, - { - "title": "Travis Tritt - Here's A Quarter (Call Someone Who Cares) (Karaoke)", - "id": "H4owXyWnJi0" - }, - { - "title": "Donna Fargo - Funny Face (Karaoke)", - "id": "sJ4wmm7xeRU" - }, - { - "title": "Barbara Mandrell & Lee Greenwood - To Me (Karaoke)", - "id": "qFsBFFkmIi0" - }, - { - "title": "Eddie Rabbitt - Someone Could Lose A Heart Tonight (Karaoke)", - "id": "EZs3q2f0c0s" - }, - { - "title": "Diamond Rio - Meet In The Middle (Karaoke)", - "id": "21lNZrb5I_Q" - }, - { - "title": "Lee Roy Parnell - Power Of Love (Karaoke)", - "id": "vWPUZbmmfLI" - }, - { - "title": "Mary Chapin Carpenter - How Do (Karaoke)", - "id": "DV_O2GhiH7Y" - }, - { - "title": "Kathy Mattea - Untold Stories (Karaoke)", - "id": "sgSQmQZOY2Y" - }, - { - "title": "Joe Diffie - If You Want Me To (Karaoke)", - "id": "UEdXbTA_YYA" - }, - { - "title": "Mary Chapin Carpenter - You Win Again (Karaoke)", - "id": "mPnNXl02PKQ" - }, - { - "title": "Ricky Nelson - Never Be Anyone Else But You (Karaoke EZ Sing)", - "id": "rDOJ9WdmuUc" - }, - { - "title": "Peabo Bryson & Roberta Flack - Tonight I Celebrate My Love For You (Karaoke)", - "id": "octqlyE4d7E" - }, - { - "title": "Doug Stone - In A Different Light (Karaoke)", - "id": "OcK6mxNXzNk" - }, - { - "title": "k.d. lang - Three Days (Karaoke)", - "id": "MaOU3XFGYo0" - }, - { - "title": "Vince Gill - Which Bridge To Cross Which Bridge To Burn (Karaoke)", - "id": "s8__77rRNjA" - }, - { - "title": "John Michael Montgomery - If You've Got Love (Karaoke)", - "id": "fz_WBdPF5I0" - }, - { - "title": "Ronnie Milsap - Snap Your Fingers (Karaoke)", - "id": "Zgng1CdxBWM" - }, - { - "title": "Billy Dean - Only Here For A Little While (Karaoke)", - "id": "aFNIlekR07U" - }, - { - "title": "George Strait - What's Going On In Your World (Karaoke)", - "id": "arevldvYE1Q" - }, - { - "title": "Brooks & Dunn - I'll Never Forgive My Heart (Karaoke)", - "id": "NQ1MklmY1kk" - }, - { - "title": "Kathy Mattea - Come From The Heart (Karaoke)", - "id": "4ch1maTv1Xo" - }, - { - "title": "Kenny Rogers & Dottie West - Every Time Two Fools Collide (Karaoke)", - "id": "MvIXYSC6Mcg" - }, - { - "title": "Suzy Bogguss - Somewhere Between (Karaoke)", - "id": "ssekZ5iOe8c" - }, - { - "title": "George Strait - I've Come To Expect It From You (Karaoke)", - "id": "hS2L65ZKNu4" - }, - { - "title": "Travis Tritt - Put Some Drive In Your Country (Karaoke)", - "id": "nyaUCGdkeNA" - }, - { - "title": "Jody Watley - Real Love (Karaoke)", - "id": "p7Zr_H3Pb28" - }, - { - "title": "Shelby Lynne - I'll Lie Myself To Sleep (Karaoke)", - "id": "Ik2EdoaFKto" - }, - { - "title": "Kathy Mattea - Walk The Way The Wind Blows (Karaoke)", - "id": "VoZbuIMstAE" - }, - { - "title": "Patty Loveless - If My Heart Had Windows (Karaoke)", - "id": "HU9qMkEAJSo" - }, - { - "title": "Reba McEntire - Little Rock (Karaoke)", - "id": "PT0HH2QzhaU" - }, - { - "title": "Janie Fricke - She's Single Again (Karaoke)", - "id": "b36NB6BwlHs" - }, - { - "title": "Alabama - Jukebox In My Mind (Karaoke)", - "id": "xFfPU0XSHMU" - }, - { - "title": "Exile - Nobody's Talking (Karaoke)", - "id": "wFqzD5xfZik" - }, - { - "title": "Holly Dunn - That's What Your Love Does To Me (Karaoke)", - "id": "4pfoPYP8QHk" - }, - { - "title": "Randy Travis - Forever And Ever, Amen (Karaoke)", - "id": "2DwQP71kxy0" - }, - { - "title": "Rodney Crowell - My Past Is Present (Karaoke)", - "id": "k6JbJN-paM8" - }, - { - "title": "Mark Chesnutt - Brother Jukebox (Karaoke)", - "id": "qbUHcW240bk" - }, - { - "title": "Tanya Tucker - One Love At A Time (Karaoke)", - "id": "BLz95EQP9-0" - }, - { - "title": "John Rich - Shuttin' Detroit Down (Karaoke)", - "id": "X9UvjT-avIM" - }, - { - "title": "Musiq Soulchild - SoBeautiful (Karaoke)", - "id": "qR9vGbpM3zA" - }, - { - "title": "Keith Urban - Kiss A Girl (Karaoke)", - "id": "VfjwM1AQuSY" - }, - { - "title": "Rodney Atkins - 15 Minutes (Karaoke)", - "id": "gDmjsq9BnVI" - }, - { - "title": "Junior Brown - Party Lights (Karaoke)", - "id": "Mo-RhOKBxIc" - }, - { - "title": "Offspring - Kristy, Are You Doing OK (Karaoke)", - "id": "lsEAABpuipk" - }, - { - "title": "Trent Tomlinson - Henry Cartwright's Prayer And Produce Stand (Karaoke)", - "id": "xO677vS6_7g" - }, - { - "title": "Christina Milian - Us Against The World (Karaoke)", - "id": "GKGLXsEdeNY" - }, - { - "title": "David Guetta, Kelly Rowland - When Love Takes Over (Karaoke)", - "id": "ysKK5mnxhXY" - }, - { - "title": "Beyonce - If I Were A Boy (Karaoke)", - "id": "jOW-8CvxmyU" - }, - { - "title": "Lykke Li - I'm Good, I'm Gone (Karaoke)", - "id": "fHj02CRup4A" - }, - { - "title": "Elliot Yamin - Fight For Love (Karaoke)", - "id": "5FqbGYjAigE" - }, - { - "title": "Gretchen Wilson - Earrings Song (Karaoke)", - "id": "fhUCLTNfwB8" - }, - { - "title": "Shea Fisher - Don't Chase Me (Karaoke)", - "id": "O6HdSKfBB4M" - }, - { - "title": "Britney Spears - Radar (Karaoke)", - "id": "GBJW3w5Ld8U" - }, - { - "title": "Trailer Choir - Rockin' The Beer Gut (Karaoke)", - "id": "Bl7ZFxjJf1w" - }, - { - "title": "Zac Brown Band - Whatever It Is (Karaoke)", - "id": "NLrkxS540KE" - }, - { - "title": "Jake Owen - Eight Second Ride (Karaoke)", - "id": "EIpoCm-d0OA" - }, - { - "title": "Junior Brown - Holding Pattern (Karaoke)", - "id": "H5QPDj2JE1M" - }, - { - "title": "George Strait - Living For The Night (Karaoke)", - "id": "5BVsBYO3mzE" - }, - { - "title": "Darius Rucker - Alright By Me (Karaoke)", - "id": "gL1duUnpUlM" - }, - { - "title": "Crystal Shawanda - My Roots Are Showing (Karaoke)", - "id": "knBMHw5gAUE" - }, - { - "title": "Brad Paisley - Welcome To The Future (Karaoke)", - "id": "LjRXAaslDJg" - }, - { - "title": "Dolly Parton - Drives Me Crazy (Karaoke)", - "id": "HfmOJeI8mwY" - }, - { - "title": "Maroon 5 - Goodnight Goodnight (Karaoke)", - "id": "C7FVYoWYqj0" - }, - { - "title": "Kate Voegele - You Can't Break A Broken Heart (Karaoke)", - "id": "SXjHwoNAtrI" - }, - { - "title": "Brooks & Dunn - Cowgirls Don't Cry (Karaoke)", - "id": "QmLsp8WY4Uk" - }, - { - "title": "Rihanna - It Just Don't Feel Like Xmas (Without You) (Karaoke)", - "id": "3UsxpOCvtNg" - }, - { - "title": "Jason Mraz - Make It Mine (Karaoke)", - "id": "8P957sfgmec" - }, - { - "title": "Fray - Absolute (Karaoke)", - "id": "UxYcrPJ3xDk" - }, - { - "title": "Ne-Yo - Part Of The List (Karaoke)", - "id": "0Jlf_1bm2Q0" - }, - { - "title": "Matt Nathanson - Come On Get Higher (Karaoke)", - "id": "PNn4XGYoEKo" - }, - { - "title": "Craig David - Insomnia (Karaoke)", - "id": "fFFlHGseCD4" - }, - { - "title": "Rob Thomas - Her Diamonds (Karaoke)", - "id": "eysvTvYw-8I" - }, - { - "title": "Offspring - Self Esteem (Karaoke)", - "id": "pFV9e8x6PjA" - }, - { - "title": "Toby Keith - Lost You Anyway (Karaoke)", - "id": "l_NWN_EL694" - }, - { - "title": "Offspring - Smash It Up (Karaoke)", - "id": "0adJNLJibbU" - }, - { - "title": "Gretchen Wilson - If I Could Do It All Again (Karaoke)", - "id": "es-t-W_3Uxw" - }, - { - "title": "Junior Brown - Highway Patrol (Karaoke)", - "id": "DACeBoyiXnY" - }, - { - "title": "Pussycat Dolls - Hush Hush (Karaoke)", - "id": "BTLB0QNGmAM" - }, - { - "title": "Lady Gaga - LoveGame (Karaoke)", - "id": "nrSd5w8MoNw" - }, - { - "title": "Bucky Covington - I Want My Life Back (Karaoke)", - "id": "T_88d6Dupwc" - }, - { - "title": "David Cook - Come Back To Me (Karaoke)", - "id": "IlccOItlU1Q" - }, - { - "title": "Jessica Simpson - Remember That (Karaoke)", - "id": "TJTfd9J3d5o" - }, - { - "title": "John Legend - Everybody Knows (Karaoke)", - "id": "_7GW44R7p88" - }, - { - "title": "All-American Rejects - Gives You Hell (Karaoke)", - "id": "dMdX9rNoYpA" - }, - { - "title": "Junior Brown - I Hung It Up (Karaoke)", - "id": "TAMkFuQyPy8" - }, - { - "title": "Britney Spears - My Only Wish (This Year) (Karaoke)", - "id": "o1jcvKwxv24" - }, - { - "title": "Junior Brown - My Wife Thinks You're Dead (Karaoke)", - "id": "_0gLKrjG1Kw" - }, - { - "title": "Jerry Reed - Lord, Mr. Ford (Karaoke)", - "id": "WJ1IlENU74Q" - }, - { - "title": "3 Doors Down - Let Me Be Myself (Karaoke)", - "id": "vcKIOopbOhk" - }, - { - "title": "Jimmy Wayne - I Will (Karaoke)", - "id": "z1OQ7jPaFDs" - }, - { - "title": "Avant - When It Hurts (Karaoke)", - "id": "nPXm6dmKQ-E" - }, - { - "title": "Jamey Johnson - That Lonesome Song (Karaoke)", - "id": "RcLcWazmOJs" - }, - { - "title": "Jake Owen - Don't Think I Can't Love You (Karaoke)", - "id": "XxW2MM1b3SQ" - }, - { - "title": "Carter's Chord - Different Breed (Karaoke)", - "id": "bCYNlh1nEs4" - }, - { - "title": "Tracy Lawrence - All Wrapped Up In Christmas (Karaoke)", - "id": "FJDTAgo6vMI" - }, - { - "title": "Jerry Reed - Amos Moses (Karaoke)", - "id": "HGvfzsX9_Vo" - }, - { - "title": "Josh Gracin - Unbelievable (Ann Marie) (Karaoke)", - "id": "vsUgZ72H7ac" - }, - { - "title": "Phil Stacey - Old Glory (Karaoke)", - "id": "ptWhpLPr-4M" - }, - { - "title": "Jennifer Hudson - Spotlight (Karaoke)", - "id": "Mp_NLUTG9mo" - }, - { - "title": "Lifehouse - Broken (Karaoke)", - "id": "iDfz06CZFeg" - }, - { - "title": "Josh Turner - Everything Is Fine (Karaoke)", - "id": "Fa1wsUYYor4" - }, - { - "title": "Alicia Keys - Superwoman (Karaoke)", - "id": "Z7xXDhcXGzY" - }, - { - "title": "Michelle Williams - The Greatest (Karaoke)", - "id": "W4vVBI1djmo" - }, - { - "title": "Offspring - Pretty Fly (For A White Guy) (Karaoke)", - "id": "GZVLa_jd8A8" - }, - { - "title": "Michael Jackson - One Day In Your Life (Karaoke)", - "id": "fFUrr9N5WdA" - }, - { - "title": "Kate Voegele - 99 Times (Karaoke)", - "id": "aynVVLarRKQ" - }, - { - "title": "Jonas Brothers - Pushing Me Away (Karaoke)", - "id": "Q6G159CRbBU" - }, - { - "title": "LeAnn Rimes - What I Cannot Change (Karaoke)", - "id": "wbl4vaq7buI" - }, - { - "title": "Zac Brown Band - Chicken Fried (Karaoke)", - "id": "TGcvBBk2lCY" - }, - { - "title": "Duffy - Warwick Avenue (Karaoke)", - "id": "gy6JIVSsgCo" - }, - { - "title": "Lee Brice - Upper Middle Class White Trash (Karaoke)", - "id": "rsjGGfW-1fg" - }, - { - "title": "Trisha Yearwood - They Call It Falling For A Reason (Karaoke)", - "id": "gYAhYaz-3cA" - }, - { - "title": "Toby Keith - She Never Cried In Front Of Me (Karaoke)", - "id": "EIhrvY6A4Ds" - }, - { - "title": "Gavin Rossdale - Love Remains The Same (Karaoke)", - "id": "pibRMK4hZC0" - }, - { - "title": "Blake Shelton - She Wouldn't Be Gone (Karaoke)", - "id": "AsbaHFParrg" - }, - { - "title": "Fergie - Labels Or Love (Karaoke)", - "id": "IuzX-nrPfys" - }, - { - "title": "Rihanna - Disturbia (Karaoke)", - "id": "NocwQdZCU3w" - }, - { - "title": "Offspring - Hammerhead (Karaoke)", - "id": "PTcIpl2jcZc" - }, - { - "title": "Lee Ann Womack - Last Call (Karaoke)", - "id": "unpfWPAiYVI" - }, - { - "title": "Randy Houser - Anything Goes (Karaoke)", - "id": "V5r9yeSdbj4" - }, - { - "title": "Chris Young - Tomorrow (Karaoke EZ Sing)", - "id": "aZJSqTdnhKc" - }, - { - "title": "Mike Posner - Please Don't Go (Karaoke EZ Sing)", - "id": "wSIPRmV6VR8" - }, - { - "title": "Miranda Lambert - Heart Like Mine (Karaoke EZ Sing)", - "id": "-bZ-Hqj0THk" - }, - { - "title": "The Band Perry - You Lie (Karaoke EZ Sing)", - "id": "SnG9aLbI7to" - }, - { - "title": "Cher - You Haven't Seen The Last Of Me (Karaoke EZ Sing)", - "id": "ZvvmtKhKJxA" - }, - { - "title": "Chris Brown - No B.S. (Karaoke EZ Sing)", - "id": "qQfBeVYvmHs" - }, - { - "title": "Enrique Iglesias ftg. Ludacris - Tonight (I'm Lovin' You) (Karaoke EZ Sing)", - "id": "0KHO_EmPEFQ" - }, - { - "title": "Goo Goo Dolls - Not Broken (Karaoke EZ Sing)", - "id": "SAFOtE9SSMU" - }, - { - "title": "Dierks Bentley, Miranda Lambert & Jamey Johnson - Bad Angel (Karaoke EZ Sing)", - "id": "f9FglncDq4Y" - }, - { - "title": "Alan Jackson ftg. Lee Ann Womack - Ring Of Fire (Karaoke EZ Sing)", - "id": "OPG0n2X6ekY" - }, - { - "title": "Reba McEntire - If I Were A Boy (Karaoke EZ Sing)", - "id": "LY7ti7vp10o" - }, - { - "title": "Akon - Angel (Karaoke EZ Sing)", - "id": "RW1Gk4C85ic" - }, - { - "title": "Chris Brown - Yeah 3x (Karaoke EZ Sing)", - "id": "NUqKuHyAAyQ" - }, - { - "title": "Chuck Wicks - Old School (Karaoke EZ Sing)", - "id": "GC4MvwKf7K8" - }, - { - "title": "Josh Turner - I Wouldn't Be A Man (Karaoke EZ Sing)", - "id": "mWHOK3jZv28" - }, - { - "title": "Kenny Chesney - Somewhere With You (Karaoke EZ Sing)", - "id": "ivJ6DEyQOas" - }, - { - "title": "Zac Brown Band ftg. Jimmy Buffett - Knee Deep (Karaoke EZ Sing)", - "id": "wjKLnhtEt5w" - }, - { - "title": "Tim McGraw - Felt Good On My Lips (Karaoke EZ Sing)", - "id": "xca7BM6EoIU" - }, - { - "title": "The Script - For The First Time (Karaoke EZ Sing)", - "id": "Vgy71c1Xcvc" - }, - { - "title": "Brandon Flowers - Crossfire (Karaoke EZ Sing)", - "id": "1a8zaNH0JjQ" - }, - { - "title": "Kylie Minogue - Aphrodite (Karaoke EZ Sing)", - "id": "ojVNmjzK4-U" - }, - { - "title": "Train - Cab (Karaoke EZ Sing)", - "id": "bJr83NARlsQ" - }, - { - "title": "Akon - Sorry (Blame It On Me) (Karaoke EZ Sing)", - "id": "twdiVnYvqfw" - }, - { - "title": "Kris Allen and Pat Monohan - The Truth (Karaoke EZ Sing)", - "id": "K7FzhB0mEfM" - }, - { - "title": "Daughtry - Used To (Karaoke EZ Sing)", - "id": "A9Ggy8Ei6I4" - }, - { - "title": "Jerrod Niemann - What Do You Want (Karaoke EZ Sing)", - "id": "JoXa_q96pzQ" - }, - { - "title": "Sara Evans with Hillary Scott - A Little Bit Stronger (Karaoke EZ Sing)", - "id": "r70J2KFPh-Q" - }, - { - "title": "Jamey Johnson - Playing The Part (Karaoke EZ Sing)", - "id": "Uuv0ZGA1vZU" - }, - { - "title": "Justin Bieber - Favorite Girl (Karaoke EZ Sing)", - "id": "dEzl3wrG-JU" - }, - { - "title": "Eminem ftg. Rihanna - Love The Way You Lie (Karaoke EZ Sing)", - "id": "8trVqR-Ep48" - }, - { - "title": "LeRoux - Bulletproof (Karaoke EZ Sing)", - "id": "WQ5mLNmuUoE" - }, - { - "title": "KT Tunstall - Fade Like A Shadow (Karaoke EZ Sing)", - "id": "sdH4xdnGX68" - }, - { - "title": "Justin Bieber - U Smile (Karaoke EZ Sing)", - "id": "boDLFfU8naM" - }, - { - "title": "Hanson - Thinkin' 'Bout Something (Karaoke EZ Sing)", - "id": "e3tVt9yn1Z4" - }, - { - "title": "Reba McEntire - Turn On The Radio (Karaoke EZ Sing)", - "id": "ThLF3Ht9ImE" - }, - { - "title": "Creedence Clearwater Revival - Hey Tonight (Karaoke EZ Sing)", - "id": "qeAw_9igmew" - }, - { - "title": "Creedence Clearwater Revival - Born On The Bayou (Karaoke EZ Sing)", - "id": "JsKj_9_XQG4" - }, - { - "title": "Zac Brown Band - Different Kind Of Fine (Karaoke EZ Sing)", - "id": "Tr4mwIbqhDU" - }, - { - "title": "The Band Perry - If I Die Young (Karaoke EZ Sing)", - "id": "y2eIYuDDVjE" - }, - { - "title": "Avril Lavigne - Alice (Underground) (Karaoke EZ Sing)", - "id": "VabBwEG081c" - }, - { - "title": "Brian McKnight - Just A Little Bit (Karaoke EZ Sing)", - "id": "AEm27_MaQWk" - }, - { - "title": "Chris Brown - Sing Like Me (Karaoke)", - "id": "5rMJtoKOTJc" - }, - { - "title": "Train - Hey, Soul Sister (Karaoke EZ Sing)", - "id": "2WX07uSNFPk" - }, - { - "title": "Dr. Hook - Sharing The Night Together (Karaoke EZ Sing)", - "id": "afi4sbAjs3o" - }, - { - "title": "Rodney Crowell - Earthbound (Karaoke EZ Sing)", - "id": "mQLI6_j96gw" - }, - { - "title": "Rodney Crowell - Fate's Right Hand (Karaoke EZ Sing)", - "id": "dGRQpS9taGE" - }, - { - "title": "Monkees - Stepping Stone (Karaoke EZ Sing)", - "id": "JnJjHsL0z3w" - }, - { - "title": "Rosemary Clooney - The Way We Were (Karaoke EZ Sing)", - "id": "66Pth0ReAFI" - }, - { - "title": "Flo Rida - How I Feel (Karaoke)", - "id": "yxOYKrS3x44" - }, - { - "title": "Aaron Tippin - There Ain't Nothin' Wrong With The Radio (Karaoke)", - "id": "rBcPY7lT5Yc" - }, - { - "title": "Bette Midler - In This Life (Karaoke)", - "id": "7M_yx3wEw5U" - }, - { - "title": "Elvis Presley - Steamroller Blues (Karaoke)", - "id": "jFP35S5sMYQ" - }, - { - "title": "Randy Travis - Deeper Than The Holler (Karaoke)", - "id": "xbh58rH6Aj0" - }, - { - "title": "Panic! At The Disco - The Ballad Of Mona Lisa (Karaoke)", - "id": "nrjBt1LdfZE" - }, - { - "title": "Natasha Bedingfield - These Words (Karaoke)", - "id": "w7TPvur6ELM" - }, - { - "title": "Four Seasons - Who Loves You (Karaoke)", - "id": "dCQ0r1azpAs" - }, - { - "title": "Hank Williams - Half As Much (Karaoke)", - "id": "hR-pD9PAFcw" - }, - { - "title": "Sting and Toby Keith - I'm So Happy I Can't Stop Crying (Karaoke)", - "id": "t1Sa4kkXHZI" - }, - { - "title": "Jan & Dean - Little Old Lady From Pasadena (Karaoke)", - "id": "BI3HlK9cVgA" - }, - { - "title": "Patty Loveless - Lonely Side Of Love (Karaoke)", - "id": "gViUeaG3pP8" - }, - { - "title": "Kenny Rogers & Holly Dunn - Maybe (Karaoke)", - "id": "KhUvdlmq2YY" - }, - { - "title": "Aretha Franklin - You Make Me Feel Like A Natural Woman (Karaoke)", - "id": "_YL5oHAx2IM" - }, - { - "title": "Frank Sinatra - Nice & Easy (Karaoke)", - "id": "iMZ7IVRpWsY" - }, - { - "title": "Al Green - Tired Of Being Alone (Karaoke)", - "id": "MNMXi-kHiBU" - }, - { - "title": "Chris Brown feat. T - Kiss Kiss (Karaoke)", - "id": "xewGbuH_0FM" - }, - { - "title": "Alicia Keys - No One (Karaoke)", - "id": "shtUF4rCfbg" - }, - { - "title": "James Brown - Out Of Sight (Karaoke)", - "id": "wDeYtE6ZUdo" - }, - { - "title": "Carrie Underwood - Do You Hear What I Hear (Karaoke)", - "id": "lYmrAvcWDsw" - }, - { - "title": "Janet Jackson - Nasty (Karaoke)", - "id": "5XwsA5YVWOU" - }, - { - "title": "Usher - Nice & Slow (Karaoke)", - "id": "7bNBDjkgTWo" - }, - { - "title": "Judds - Love Is Alive (Karaoke)", - "id": "aW90AS_W__A" - }, - { - "title": "Justin Bieber - Boyfriend (Karaoke)", - "id": "ZJmcRyJcRjk" - }, - { - "title": "Patty Loveless - Don't Toss Us Away (Karaoke)", - "id": "ewLepRuFMlM" - }, - { - "title": "Debbie Gibson - Shake Your Love (Karaoke)", - "id": "hIB-fMMIOf4" - }, - { - "title": "Bobby Vinton - There, I've Said It Again (Karaoke)", - "id": "8Flr9mf9kP0" - }, - { - "title": "Traditional - Ave Maria (Latin Catholic Prayer) (Karaoke)", - "id": "uSuz6VuhkRw" - }, - { - "title": "Beach Boys - Darlinโ€™ (Karaoke)", - "id": "KARb8H-UTMs" - }, - { - "title": "Clean Bandit ftg. Sean Paul and Anne-Marie - Rockabye (Karaoke)", - "id": "rUR5KE5EA6U" - }, - { - "title": "Ben Harper - Amen Omen (Karaoke)", - "id": "sOpI7jbeL8A" - }, - { - "title": "Tennile Townes - Somebody's Daughter (Karaoke)", - "id": "18lNokF-7xU" - }, - { - "title": "Doja Cat and The Weeknd - You Right (Duet) (Karaoke)", - "id": "WMFg99f3NSw" - }, - { - "title": "Mรฅneskin - If I Can Dream (Karaoke)", - "id": "e3k7Om9-Foc" - }, - { - "title": "Katie Melua & Eva Cassidy - What A Wonderful World (Karaoke)", - "id": "UknIKeLyGU4" - }, - { - "title": "Earth, Wind & Fire - Got To Get You Into My Life (Karaoke)", - "id": "ZQOLYteqRDI" - }, - { - "title": "Red Hot Chili Peppers - Higher Ground (Karaoke)", - "id": "VXqHKch1q1g" - }, - { - "title": "Depeche Mode - Personal Jesus (Karaoke)", - "id": "-WcTki2d-1Q" - }, - { - "title": "Reba McEntire - Fancy (Karaoke)", - "id": "IFBM7Wx2Azw" - }, - { - "title": "Mike Reid - Till You Were Gone (Karaoke)", - "id": "UJEg_Qrs2v0" - }, - { - "title": "Pink - Please Don't Leave Me (Karaoke)", - "id": "s96EwwmopEA" - }, - { - "title": "Jonathan Singleton & The Grove - Look Who's Back In Love (Karaoke)", - "id": "5C9x0tWzuuo" - }, - { - "title": "Leona Lewis - I Got You (Karaoke)", - "id": "XBZ_hikSMwk" - }, - { - "title": "OneRepublic - Secrets (Karaoke)", - "id": "XfoLB4qO6jc" - }, - { - "title": "Clay Walker - Where Do I Go From You (Karaoke)", - "id": "aMejCd7qQFA" - }, - { - "title": "Pink - Raise Your Glass (Karaoke)", - "id": "YeGHNeOdYTA" - }, - { - "title": "Pink - F**kin' Perfect (Perfect) (Karaoke)", - "id": "YPO4LuWDrY8" - }, - { - "title": "Aaron Lewis - Granddaddy's Gun (Karaoke)", - "id": "F6qOMmG4Vqk" - }, - { - "title": "Capital Cities - Safe And Sound (Karaoke)", - "id": "wwxsBdWoyAI" - }, - { - "title": "Daughtry - Waiting For Superman (Karaoke)", - "id": "jpIlzCPtOXc" - }, - { - "title": "Blue Oyster Cult - Burnin' For You (Karaoke)", - "id": "Cw5Ab9CUYkQ" - }, - { - "title": "Kylie Minogue - I Should Be So Lucky (Karaoke)", - "id": "eKvczXntBJ4" - }, - { - "title": "Tina Turner - Steamy Windows (Karaoke)", - "id": "tKxXxZB-_Ms" - }, - { - "title": "Hinder - Get Stoned (Karaoke)", - "id": "9q2un4kPDBE" - }, - { - "title": "Judy Garland - Hey, Look Me Over (Karaoke)", - "id": "8kJRq-p5ITU" - }, - { - "title": "Edie Brickell & New Bohemians - What I Am (Karaoke)", - "id": "H6qZLZvgwbg" - }, - { - "title": "Animals - I'm Crying (Karaoke)", - "id": "dl9M3zHxdFM" - }, - { - "title": "Star De Azlan - She's Pretty (Karaoke)", - "id": "I_lP_Ch_KS4" - }, - { - "title": "Tina Turner - Better Be Good To Me (Karaoke)", - "id": "3eDiw7di1-k" - }, - { - "title": "Robert Palmer - Every Kinda People (Karaoke)", - "id": "-tFEFiVzPWc" - }, - { - "title": "Neil Sedaka - Let's Go Steady Again (Karaoke)", - "id": "h8VdQ-melVU" - }, - { - "title": "Britney Spears - Piece Of Me (Karaoke)", - "id": "W5qLFuv4gDA" - }, - { - "title": "Neil Sedaka - You Mean Everything To Me (Karaoke)", - "id": "_2i-ZncO_mQ" - }, - { - "title": "Bette Midler - That's How Love Moves (Karaoke)", - "id": "HVY55gbm5yM" - }, - { - "title": "Eydie Gorme - Blame It On The Bossa Nova (Karaoke)", - "id": "I0pqNJ-OLdM" - }, - { - "title": "Burl Ives - Pearly Shells (Popo O Ewa) (Karaoke)", - "id": "XK7WOCdpw-c" - }, - { - "title": "Michael Buble - Way You Look Tonight (Karaoke)", - "id": "Mvc8bjqeQEE" - }, - { - "title": "Ryan Cabrera - On The Way Down (Karaoke)", - "id": "H-WVYSzPLks" - }, - { - "title": "Judy Garland - I Can't Give You Anything But Love (Karaoke)", - "id": "KshabMYZitg" - }, - { - "title": "Genesis - Land Of Confusion (Karaoke)", - "id": "69tDriKxIBY" - }, - { - "title": "Steve Lawrence & Eydie Gorme - I Want To Stay Here (Karaoke)", - "id": "oCG-DsKuYhc" - }, - { - "title": "Jason Aldean - Relentless (Karaoke)", - "id": "9olUL9_AqA4" - }, - { - "title": "Buddy Holly - Listen To Me (Karaoke)", - "id": "NIzqibnU_2c" - }, - { - "title": "Genesis - Throwing It All Away (Karaoke)", - "id": "0o7DZrnAKsw" - }, - { - "title": "Stevie Nicks - Every Day (Karaoke)", - "id": "0blKts5KUsM" - }, - { - "title": "Cathedrals - Ride That Glory Train (Karaoke)", - "id": "NBuzLu-Kff8" - }, - { - "title": "Lovin' Spoonful - Darling, Be Home Soon (Karaoke)", - "id": "ZLtrk0EFT1I" - }, - { - "title": "Bob Seger and the Last Heard - Sock It To Me Santa (Karaoke)", - "id": "ArSVRmWE4LQ" - }, - { - "title": "Kelly Clarkson - Behind These Hazel Eyes (Karaoke)", - "id": "2YcgF8eIN5k" - }, - { - "title": "Dolly Parton - Me And Little Andy (Karaoke)", - "id": "GQHvdMiiFMs" - }, - { - "title": "T-Pain - Bartender (Karaoke)", - "id": "NUqOB7fKQfA" - }, - { - "title": "12 Stones - Way I Fell (The Way I Fell) (Karaoke)", - "id": "fi2qiZe_BfU" - }, - { - "title": "Crossin Dixon - Guitar Slinger (Karaoke)", - "id": "3r-X9je7BpU" - }, - { - "title": "B. J. Thomas - Everybody Loves A Rain Song (Karaoke)", - "id": "03n8oq25Kao" - }, - { - "title": "Bobby Darin - Things (Karaoke)", - "id": "O_GS_jt8ZTI" - }, - { - "title": "Neil Sedaka - Run Samson Run (Karaoke)", - "id": "DpNDpTN5v_w" - }, - { - "title": "Lovin' Spoonful - Did You Ever Have To Make Up Your Mind (Karaoke)", - "id": "MHrmNJFExwU" - }, - { - "title": "Don McLean - Castles In The Air (Karaoke)", - "id": "svAyXudCdzs" - }, - { - "title": "Dean Martin - Houston (Karaoke)", - "id": "SxJlZBf-jww" - }, - { - "title": "Nena - 99 Luftballoons (Karaoke)", - "id": "_bPE76hTKxY" - }, - { - "title": "Neil Sedaka - Alice In Wonderland (Karaoke)", - "id": "A-V-dRlVF-8" - }, - { - "title": "Bobby Darin - As Long As I'm Singing (Karaoke)", - "id": "5J9GEOFRNEk" - }, - { - "title": "Neil Sedaka - Diary (Karaoke)", - "id": "Ci3dXQ4VuOg" - }, - { - "title": "Dolly Parton - Love Is Like A Butterfly (Karaoke)", - "id": "HasznlIZgeo" - }, - { - "title": "Celine Dion - Only One Road (Karaoke)", - "id": "PO_c1A_rv-M" - }, - { - "title": "Genesis - That's All (Karaoke)", - "id": "Ov8YSboMuzQ" - }, - { - "title": "Perrys - Not Even A Stone (Karaoke)", - "id": "n7RLHaNOqZ8" - }, - { - "title": "Boston - A Man I'll Never Be (Karaoke)", - "id": "C2nVJ19UXAc" - }, - { - "title": "Stevie Nicks - Maybe Love Will Change Your Mind (Karaoke)", - "id": "fJA_UVDfors" - }, - { - "title": "Jennifer Hudson - And I Am Telling You I'm Not Going (Karaoke)", - "id": "288xiub941U" - }, - { - "title": "Dolly Parton - Salt In My Tears (The Salt In My Tears) (Karaoke)", - "id": "6ZCy-ZCh2vA" - }, - { - "title": "Johnny Mathis - It's Not For Me To Say (Karaoke)", - "id": "-OGnSm39LXc" - }, - { - "title": "Josh Groban - Home To Stay (Karaoke)", - "id": "2rMq5qWJxqQ" - }, - { - "title": "Doug Stone - All I Want For Christmas Is You (Karaoke)", - "id": "4BkbwxGzxug" - }, - { - "title": "Joe Cocker - The Letter (Karaoke)", - "id": "FzMWdbovK0o" - }, - { - "title": "K. T. Oslin - Mary And Willie (Karaoke)", - "id": "cj7U5KiCJ20" - }, - { - "title": "Eels - Losing Streak (Karaoke)", - "id": "OG6EDtP5fBs" - }, - { - "title": "Jason Mraz - I'm Yours (Karaoke)", - "id": "KsHAbd9a-ZA" - }, - { - "title": "Wolfmother - Joker And The Thief (Karaoke)", - "id": "YJ6QNb66RB0" - }, - { - "title": "Celine Dion - Then You Look At Me (Karaoke)", - "id": "81vyyHhlWM4" - }, - { - "title": "Nancy Wilson - I've Never Been To Me (Karaoke)", - "id": "rpBCSI-U5i4" - }, - { - "title": "Bobby Bare - Ride Me Down Easy (Karaoke)", - "id": "DYQ9jKrNNbA" - }, - { - "title": "The Hunchback of Notre Dame - God Help The Outcasts (Karaoke)", - "id": "WKbeN_emBIE" - }, - { - "title": "Tina Turner - Nutbush City Limits (Karaoke)", - "id": "tbvvRFuqkPU" - }, - { - "title": "James Blunt - 1973 (Karaoke)", - "id": "OqW7OVaXnbs" - }, - { - "title": "Buddy Holly - Heartbeat (Karaoke)", - "id": "6u-T3qUan-o" - }, - { - "title": "Kirk Talley - Serenaded By Angels (Karaoke)", - "id": "kV75FTZ_nEQ" - }, - { - "title": "Boston - Don't Look Back (Karaoke)", - "id": "w-4Vh3ADj-Y" - }, - { - "title": "Alicia Keys - Why Do I Feel So Sad (Karaoke)", - "id": "vOsd0eeMdXU" - }, - { - "title": "Celine Dion - Love Can Move Mountains (Karaoke)", - "id": "Io8220immUE" - }, - { - "title": "Joss Stone - You Had Me (Karaoke)", - "id": "NmJ8QtBiyUs" - }, - { - "title": "Reba McEntire - Angels Sang (Karaoke)", - "id": "Z6UFTJ3lwIA" - }, - { - "title": "Kenny Chesney - Flip-Flop Summer (Karaoke)", - "id": "TOCLCOXzHwY" - }, - { - "title": "Genesis - In Too Deep (Karaoke)", - "id": "wF6EkFz-rSs" - }, - { - "title": "Monkees - Pleasant Valley Sunday (Karaoke)", - "id": "JXVukuKcTeU" - }, - { - "title": "Dolly Parton - Dagger Through The Heart (Karaoke)", - "id": "PK-ANXP2obY" - }, - { - "title": "Britney Spears - You Drive Me) Crazy (Karaoke)", - "id": "_vAF71qjY_8" - }, - { - "title": "Gold City - It's Still The Cross (Karaoke)", - "id": "SLa3RHIqWdQ" - }, - { - "title": "Kirk Talley - I Start My Day (Karaoke)", - "id": "VnxQDlLxqxc" - }, - { - "title": "Perfect Heart - Because He Is (Karaoke)", - "id": "YunURn1WNC0" - }, - { - "title": "Dolly Parton - Honky Tonk Songs (Karaoke)", - "id": "-6Gv_4PNRvY" - }, - { - "title": "Kingsmen - Master I See (Karaoke)", - "id": "JFsi-xYWDNc" - }, - { - "title": "Bishops - When Jesus Is All That I Have (Karaoke)", - "id": "MmnfjDKjV3E" - }, - { - "title": "Dolly Parton - Seeker (Karaoke)", - "id": "86TI_KKiiz0" - }, - { - "title": "LeAnn Rimes - I Know Who Holds Tomorrow (Karaoke)", - "id": "ihzSGbesrDk" - }, - { - "title": "Carroll Roberson - Where Jesus Has Already Been (Karaoke)", - "id": "LGoZdH0Algk" - }, - { - "title": "Dolly Parton - My Tennessee Mountain Home (Karaoke)", - "id": "7nMTCdMgkxo" - }, - { - "title": "Dolly Parton - Light Of A Clear Blue Morning (Karaoke)", - "id": "4gsxjbv6POA" - }, - { - "title": "Hoppers - Go Ask (Karaoke)", - "id": "UzM4GtLEcMA" - }, - { - "title": "Dolly Parton - It's All Wrong, But It's All Right (Karaoke)", - "id": "8GCPnDyEfrw" - }, - { - "title": "Perfect Heart - Yes Is The Answer (Karaoke)", - "id": "rgCBYC-etUY" - }, - { - "title": "Dolly Parton - Hello God (Karaoke)", - "id": "HJkdcQSdzSI" - }, - { - "title": "Wilburns - Outside The Gate (Karaoke)", - "id": "UP-KhMHCLAw" - }, - { - "title": "Fleetwood Mac - Go Your Own Way (Karaoke)", - "id": "dROdtcJmE2E" - }, - { - "title": "Dolly Parton, Ricky Van Shelton - Rockin' Years (Karaoke)", - "id": "BbHmNrD5Is4" - }, - { - "title": "Creedence Clearwater Revival - Bad Moon Rising (Karaoke)", - "id": "Ctrq6hEFBIM" - }, - { - "title": "Dolly Parton - To Daddy (Karaoke)", - "id": "Z_WN8lwDR20" - }, - { - "title": "Whitney Houston - I Will Always Love You (Karaoke)", - "id": "OETm1uE8JWQ" - }, - { - "title": "Winger - Miles Away (Karaoke)", - "id": "V4RHgLDIYaI" - }, - { - "title": "Dolly Parton - Eagle When She Flies (Karaoke)", - "id": "GbncJhNl2F4" - }, - { - "title": "Wilburns - Looking For A Place To Cross (Karaoke)", - "id": "OR6eeOcVc7M" - }, - { - "title": "Judy Garland - When You're Smilin' (Karaoke)", - "id": "LC2t9V5-egA" - }, - { - "title": "Cathedrals - Dry Bones (Karaoke)", - "id": "mliDBwtS3oc" - }, - { - "title": "Merle Haggard - If We Make It Through December (Karaoke)", - "id": "K2XkGeQi_zc" - }, - { - "title": "Notorious B. I. G. - Big Poppa (Karaoke)", - "id": "sgKEIzK4jJQ" - }, - { - "title": "Connie Smith - Once A Day (Karaoke)", - "id": "an0scgt3MsI" - }, - { - "title": "Ray Price - Invitation To The Blues (Karaoke)", - "id": "AL6At4DcpoE" - }, - { - "title": "Cathedrals - Wedding Music (Karaoke)", - "id": "adCssBYHG9c" - }, - { - "title": "Karen Peck & New River - God Still Answers Prayer (Karaoke)", - "id": "3U2_e62sqpA" - }, - { - "title": "Beatles - I Saw Her Standing There (Karaoke)", - "id": "ptTSTs2_i8E" - }, - { - "title": "Bishops - Look To Him (Karaoke)", - "id": "6A2eieDhcEw" - }, - { - "title": "Cathedrals - Boundless Love (Karaoke)", - "id": "oWJ2gwkYx58" - }, - { - "title": "New Hinsons - Oasis (Karaoke)", - "id": "xGbbnYuTZbM" - }, - { - "title": "Kathy Mattea - Love At The Five And Dime (Karaoke)", - "id": "sxmZVCztK-U" - }, - { - "title": "Tanya Tucker - I'll Come Back As Another Woman (Karaoke)", - "id": "-tSqdYET2q4" - }, - { - "title": "Ferlin Husky - Cuzz Yore So Sweet (Karaoke)", - "id": "gng9bTJOS0c" - }, - { - "title": "Diplo Presents Thomas Wesley feat. Jonas Brothers - Lonely (Karaoke)", - "id": "CcFTDw3xT-I" - }, - { - "title": "Cory Marks feat. Travis Tritt, Mick Mars and Ivan Moody - Outlaws and Outsiders (Karaoke)", - "id": "R5Vf_ydVa80" - }, - { - "title": "Luther Vandross - Never Too Much (Karaoke)", - "id": "Cg4qTLTLwm4" - }, - { - "title": "Natasha Bedingfield - Pocketful Of Sunshine (Karaoke)", - "id": "AniM2XSJMcg" - }, - { - "title": "Kelly Clarkson - Because Of You (Karaoke)", - "id": "x1NtxPJ83Us" - }, - { - "title": "Brooks & Dunn - Hard Workin' Man (Karaoke)", - "id": "nG25UJHiWQg" - }, - { - "title": "Hank Williams - Please Don't Let Me Love You (Karaoke)", - "id": "LeVCPUFK0yU" - }, - { - "title": "The Beatles - Getting Better All The Time (Karaoke)", - "id": "At-giAmQygA" - }, - { - "title": "Leo Sayer - You Make Me Feel Like Dancing (Karaoke)", - "id": "HmQIfPXkV_k" - }, - { - "title": "Air Supply - Every Woman In The World (Karaoke)", - "id": "22WTQ0ExgS4" - }, - { - "title": "Bread - Let Your Love Go (Karaoke)", - "id": "psnIFUnxToY" - }, - { - "title": "Rolling Stones - Like A Rolling Stone (Karaoke)", - "id": "DOkjwGOeBdI" - }, - { - "title": "Jazmine Sullivan - Sometimes I Feel Like A Motherless Child (Karaoke)", - "id": "20xQE4pwrSQ" - }, - { - "title": "Willie Mae โ€˜Big Mamaโ€™ Thornton - Hound Dog (Karaoke)", - "id": "CYcENYp8Cs8" - }, - { - "title": "Guns Nโ€™ Roses - Knockinโ€™ On Heavenโ€™s Door (Karaoke)", - "id": "3CBUsokDKVM" - }, - { - "title": "The Jimi Hendrix Experience - All Along The Watchtower (Karaoke)", - "id": "yYh7o0UrcfA" - }, - { - "title": "Nate Smith - Whiskey On You (Karaoke)", - "id": "KSoJuJ6lUYU" - }, - { - "title": "Matchbox Twenty - Push (Karaoke)", - "id": "0vKfNELELek" - }, - { - "title": "Gretchen Wilson - Full Time Job (Karaoke)", - "id": "IbiSL6CBFN0" - }, - { - "title": "Gretchen Wilson - One Of The Boys (Karaoke)", - "id": "ePqe1bpDXAU" - }, - { - "title": "Dolly Parton - White Limozeen (Karaoke)", - "id": "jp8zyMWFi_o" - }, - { - "title": "Dolly Parton - Full Circle (Karaoke)", - "id": "8ajQBdQhAP0" - }, - { - "title": "Train - Marry Me (Karaoke)", - "id": "EyfUU3SnUkw" - }, - { - "title": "Zac Brown Band - Different Kind Of Fine (Karaoke)", - "id": "3WMJ8e3Dm44" - }, - { - "title": "Beach Boys - Donโ€™t Worry Baby (Karaoke)", - "id": "Aq1q9tgd17c" - }, - { - "title": "Beach Boys - Fun Fun Fun (Karaoke)", - "id": "WE0o33_lRVY" - }, - { - "title": "Train - She's On Fire (Karaoke)", - "id": "ixKPUo_zV2k" - }, - { - "title": "Rod Stewart - Kiss To Build Dream On (Karaoke)", - "id": "WKUtdEuzXmU" - }, - { - "title": "Lee Brice - I Don't Dance (Karaoke)", - "id": "lC-AomKYaks" - }, - { - "title": "Deniece Williams - Let's Hear It For The Boy (Karaoke)", - "id": "gpchYJMWAcE" - }, - { - "title": "Willie Nelson - Blue Skies (Karaoke)", - "id": "Nh0JpOLYmGQ" - }, - { - "title": "Enya - Only Time (Karaoke)", - "id": "1uB8wiET3Cc" - }, - { - "title": "Luther Vandross - Here And Now (Karaoke)", - "id": "TjVbwI1zWak" - }, - { - "title": "Billie Eilish - TV (Karaoke)", - "id": "iRDd8EkmV3Y" - }, - { - "title": "Elle King and Miranda Lambert - Drunk (And I Don't Wanna Go Home) (Karaoke)", - "id": "-qhHqvt88ag" - }, - { - "title": "The Cramps - Goo Goo Muck (Karaoke)", - "id": "NWuFWmUF5LM" - }, - { - "title": "Imagine Dragons - Whatever It Takes (Karaoke EZ Sing)", - "id": "GhYE_65L3GU" - }, - { - "title": "Weeknd - Acquainted (Karaoke)", - "id": "znyAj1R-8T0" - }, - { - "title": "Five Finger Death Punch - Wash It All Away (Karaoke)", - "id": "I3Og6Wt_MEQ" - }, - { - "title": "Sigala - Easy Love (Karaoke)", - "id": "IirEv-fs0j4" - }, - { - "title": "Alan Jackson - Jim And Jack And Hank (Karaoke)", - "id": "Dp3OQl1B-9k" - }, - { - "title": "Andy Grammer - Honey, I'm Good (Karaoke)", - "id": "IDan7H97AUA" - }, - { - "title": "ABC - All Of My Heart (Karaoke EZ Sing)", - "id": "AZY_A9BekN8" - }, - { - "title": "Sia - Cheap Thrills (Karaoke)", - "id": "7OOoioy9HUo" - }, - { - "title": "Post Malone - I Fall Apart (Karaoke)", - "id": "QXLbjK0Qee8" - }, - { - "title": "Lady Gaga - Til It Happens To You (Karaoke)", - "id": "OymCwhKIJxw" - }, - { - "title": "Mike Posner - I Took A Pill In Ibiza (Karaoke)", - "id": "vTxVvHK5apM" - }, - { - "title": "Miranda Lambert - Bathroom Sink (Karaoke)", - "id": "DpTuf0bYbM4" - }, - { - "title": "Kongos - I Want To Know (Karaoke)", - "id": "Lycya7QWedA" - }, - { - "title": "Eric Church - Record Year (Karaoke EZ Sing)", - "id": "TbH0y5WC3Ts" - }, - { - "title": "Canaan Smith - Love You Like That (Karaoke)", - "id": "1oMyRfIrScY" - }, - { - "title": "Tal Bachman - She's So High (Karaoke)", - "id": "BR6SoinvGC8" - }, - { - "title": "Cam - Burning House (Karaoke)", - "id": "e8ZlhjJvvtY" - }, - { - "title": "Colbie Caillat - Try (Karaoke)", - "id": "oiwep9XcyQU" - }, - { - "title": "Mo Pitney - Country (Karaoke)", - "id": "szneJCK8eKI" - }, - { - "title": "Felix Jaehn ftg. Jasmine Thompson - Ain't Nobody (Loves Me Better) (Karaoke)", - "id": "NtDppGWD-Dk" - }, - { - "title": "Billy Currington - 23 Degrees And South (Karaoke)", - "id": "_ePtx52S8Lw" - }, - { - "title": "Ellie Goulding - Something In The Way You Move (Karaoke)", - "id": "ZvkCrHplf2A" - }, - { - "title": "Fall Out Boy - Uma Thurman (Karaoke)", - "id": "fcBsMKSEwkg" - }, - { - "title": "Kelly Clarkson - Someone (Karaoke)", - "id": "YlTrduYH0EM" - }, - { - "title": "Eric Church - Mr. Misunderstood (Karaoke)", - "id": "q_rpankbHQA" - }, - { - "title": "Billy Currington - Drinkin' Town With A Football Problem (Karaoke)", - "id": "A5ELW1o2XX4" - }, - { - "title": "Cole Swindell - Should've Ran After You (Karaoke)", - "id": "cqLUQT7kvc8" - }, - { - "title": "Fall Out Boy - Irresistible (Karaoke)", - "id": "l354G42oxNk" - }, - { - "title": "Luke Bryan - Roller Coaster (Karaoke)", - "id": "ODZHkdnWUyc" - }, - { - "title": "Cole Swindell - Let Me See Ya Girl (Karaoke)", - "id": "bQ49dou3RX8" - }, - { - "title": "Capital Cities - One Minute More (Karaoke)", - "id": "PWDChU2eigM" - }, - { - "title": "Pharrell Williams ftg. Miley Cyrus - Come Get It Bae (Karaoke)", - "id": "A9yfH8k7iQQ" - }, - { - "title": "Kelly Clarkson - Let Your Tears Fall (Karaoke)", - "id": "ANdPKBJrNzA" - }, - { - "title": "Sia - Chandelier (Karaoke)", - "id": "9PMOTbMus0A" - }, - { - "title": "Sara Bareilles - I Choose You (Karaoke)", - "id": "6UDU4jN83M4" - }, - { - "title": "Eric Church - Like A Wrecking Ball (Karaoke)", - "id": "nAo4WygrG8Y" - }, - { - "title": "Pharrell Williams ftg. Alicia Keys - Know Who You Are (Karaoke)", - "id": "DT6FLpcRQoE" - }, - { - "title": "Smallpools - Karaoke (Karaoke)", - "id": "a8YpBZLGN5Q" - }, - { - "title": "Sia - Elastic Heart (Karaoke)", - "id": "HShrScYcH10" - }, - { - "title": "Parmalee - Close Your Eyes (Karaoke)", - "id": "GRd6uAjhYkQ" - }, - { - "title": "Teddy Pendergrass - Can't We Try (Karaoke)", - "id": "3lGp5u1nKm0" - }, - { - "title": "Capital Cities - I Sold My Bed, But Not My Stereo (Karaoke)", - "id": "Wf7Nl5YPfsQ" - }, - { - "title": "Loverboy - Turn Me Loose (Karaoke)", - "id": "9yPRMoO7zDU" - }, - { - "title": "Blood, Sweat & Tears - Go Down Gamblin' (Karaoke)", - "id": "686NZdXWQjY" - }, - { - "title": "Paloma Faith - Can't Rely On You (Karaoke)", - "id": "oYriUFXTuPU" - }, - { - "title": "Kongos - Come With Me Now (Karaoke)", - "id": "HfdIgJCWdDM" - }, - { - "title": "Rare Earth - Born To Wander (Karaoke)", - "id": "v-coPZ4WVeo" - }, - { - "title": "Robert Palmer - Sneakin' Sally Thru The Alley (Karaoke)", - "id": "Xk5s6EFH9Oo" - }, - { - "title": "Cheap Trick - If You Want My Love (Karaoke)", - "id": "FZeoNqQUn7U" - }, - { - "title": "Lit - My Own Worst Enemy (Karaoke)", - "id": "xk4EIbKPuvw" - }, - { - "title": "Badfinger - Come And Get It (Karaoke)", - "id": "3L65Lh8VE8w" - }, - { - "title": "LoCash Cowboys - Best Seat In The House (Karaoke)", - "id": "MJwsdDhasEg" - }, - { - "title": "Five Finger Death Punch - Battle Born (Karaoke)", - "id": "h9urSw96NYE" - }, - { - "title": "Tyler Farr - Whiskey In My Water (Karaoke)", - "id": "TzpT99BFtIs" - }, - { - "title": "ABC - Poison Arrow (Karaoke)", - "id": "IXCNpUj-OHg" - }, - { - "title": "Craig Campbell - Outta My Head (Karaoke)", - "id": "qBlICsB-IY4" - }, - { - "title": "Flo Rida - How I Feel (Karaoke)", - "id": "FmEN3CJlTpE" - }, - { - "title": "Spin Doctors - Little Miss Can't Be Wrong (Karaoke)", - "id": "YdEwni-So_o" - }, - { - "title": "Henningsens - American Beautiful (Karaoke)", - "id": "XeCwb-W8gQs" - }, - { - "title": "Blake Shelton - Boys Round Here (Karaoke)", - "id": "RmsaZnpwarU" - }, - { - "title": "Jake Owen - One That Got Away (Karaoke)", - "id": "zdJIwHZ7rPo" - }, - { - "title": "Toby Keith - Red Solo Cup (Karaoke)", - "id": "WvsJjDN3J7U" - }, - { - "title": "Luke Bryan - Kiss Tomorrow Goodbye (Karaoke)", - "id": "hcSUAAZ4SMo" - }, - { - "title": "Britney Spears - I Wanna Go (Karaoke)", - "id": "0C2FaEDcTzY" - }, - { - "title": "Blues Standard - Shake Your Moneymaker (Karaoke)", - "id": "ViBxWZZWfQ8" - }, - { - "title": "Keith Urban - You Gonna Fly (Karaoke)", - "id": "PBrGwrTSjRU" - }, - { - "title": "Band Perry - All Your Life (Karaoke)", - "id": "gtDPJL0H7Xs" - }, - { - "title": "Panic! At The Disco - Ready To Go (Get Me Out Of My Mind) (Karaoke)", - "id": "qzbvsNZjLvw" - }, - { - "title": "Joanna Smith - Georgia Mud (Karaoke)", - "id": "Zv0-p33kpso" - }, - { - "title": "Luke Bryan - Country Girl (Shake It For Me) (Karaoke)", - "id": "RBE2iVJuzxk" - }, - { - "title": "Trace Adkins - Just Fishin' (Karaoke)", - "id": "SqjfYFiW-Cs" - }, - { - "title": "Pink - Heartbreak Down (Karaoke)", - "id": "nUa06kDWbgM" - }, - { - "title": "Joe Jonas - See No More (Karaoke)", - "id": "mENbWd6J-F8" - }, - { - "title": "Rodney Atkins - Take A Back Road (Karaoke)", - "id": "8HvAyDq-i28" - }, - { - "title": "Walker Hayes - Why Wait For Summer (Karaoke)", - "id": "7stCDnNRKlY" - }, - { - "title": "Willow - Whip My Hair (Karaoke)", - "id": "9nvfTlpjFhs" - }, - { - "title": "Jamey Johnson - Heartache (Karaoke)", - "id": "xb-dY0zXj4E" - }, - { - "title": "Sara Bareilles - Uncharted (Karaoke)", - "id": "iKskWpiql0w" - }, - { - "title": "Randy Montana - 1,000 Faces (Karaoke)", - "id": "qweHlrYbOD8" - }, - { - "title": "Rascal Flatts - I Won't Let Go (Karaoke)", - "id": "oBuSSi7_PHQ" - }, - { - "title": "Jason Aldean with Kelly Clarkson - Don't You Wanna Stay (Karaoke)", - "id": "ZgAO_VfHbPs" - }, - { - "title": "Easton Corbin - I Can't Love You Back (Karaoke)", - "id": "w9yC7CTpyAQ" - }, - { - "title": "Walker Hayes - Pants (Karaoke)", - "id": "30kYcOk7-Ok" - }, - { - "title": "Justin Bieber - One Less Lonely Girl (Karaoke)", - "id": "qNWuBTXJk0w" - }, - { - "title": "3oh!3 ftg. Katy Perry - StarStrukk (Karaoke)", - "id": "y0K8DkhkWVI" - }, - { - "title": "Lady Antebellum - Hello World (Karaoke)", - "id": "aWJHFryJ5k8" - }, - { - "title": "Alan Jackson - Hard Hat And A Hammer (Karaoke)", - "id": "mLQNkWdVS18" - }, - { - "title": "Adam Lambert - Whataya Want From Me (Karaoke)", - "id": "QGBH2BKCM5I" - }, - { - "title": "Randy Montana - Ain't Much Left Of Lovin' You (Karaoke)", - "id": "5ZwX1R5kXoE" - }, - { - "title": "OneRepublic - All The Right Moves (Karaoke)", - "id": "wzsPaQxK5TQ" - }, - { - "title": "Lady Gaga - Alejandro (Karaoke)", - "id": "_Ld6OFebYlk" - }, - { - "title": "Jason Derulo - Ridin' Solo (Karaoke)", - "id": "DwcJlgEFsoo" - }, - { - "title": "Miranda Lambert - House That Built Me (Karaoke)", - "id": "fIao8wBxRtI" - }, - { - "title": "Lady Gaga - Eh, Eh (Nothing Else I Can Say) (Karaoke)", - "id": "_Ffu_YZm8AI" - }, - { - "title": "Eric Church - Hell On The Heart (Karaoke)", - "id": "UiurT-hKzRI" - }, - { - "title": "Lady Gaga - Bad Romance (Karaoke)", - "id": "EGU3PXlAEic" - }, - { - "title": "Toby Keith - American Ride (Karaoke)", - "id": "9Gut6NwHTc8" - }, - { - "title": "Hinder - Loaded And Alone (Karaoke)", - "id": "sxZgCVVtpIA" - }, - { - "title": "Krista Marie - Jeep Jeep (Karaoke)", - "id": "ulVNYhh-GLk" - }, - { - "title": "Jonas Brothers - Fly With Me (Karaoke)", - "id": "D28yT1TpcRc" - }, - { - "title": "Lady Gaga - Paparazzi (Karaoke)", - "id": "my-OdIgjmzU" - }, - { - "title": "Wynonna - I Hear You Knocking (Karaoke)", - "id": "dm2Pc1fQ7Sc" - }, - { - "title": "Jonas Brothers - Paranoid (Karaoke)", - "id": "ZWJh4BKCFvA" - }, - { - "title": "Brad Paisley - Water (Karaoke)", - "id": "Z76Oh_joqdg" - }, - { - "title": "Fall Out Boy - Headfirst Slide Into Cooperstown On A Bad Bet (Karaoke)", - "id": "TYx_mG_15CY" - }, - { - "title": "Miranda Lambert - Dead Flowers (Karaoke)", - "id": "mUQyB4Md5G0" - }, - { - "title": "Shinedown - If You Only Knew (Karaoke)", - "id": "vtcatRNzCRE" - }, - { - "title": "Tim McGraw - Southern Voice (Karaoke)", - "id": "MJDyJnDWCdg" - }, - { - "title": "Alan Jackson - I Still Like Bologna (Karaoke)", - "id": "u4mYYirAw-c" - }, - { - "title": "Keith Urban - Only You Can Love Me This Way (Karaoke)", - "id": "ANx0pSTuIfA" - }, - { - "title": "Lily Allen - Fear (Karaoke)", - "id": "ceIkbnToKOY" - }, - { - "title": "Emerson Drive - Belongs To You (Karaoke)", - "id": "XJw1ZTH_aT0" - }, - { - "title": "Hinder - Up All Night (Karaoke)", - "id": "H1HBfWTN0mY" - }, - { - "title": "Tracy Lawrence - You Can't Hide Redneck (Karaoke)", - "id": "lqyTwN5GZVE" - }, - { - "title": "Dierks Bentley - Sideways (Karaoke)", - "id": "wYFLJSnzSSo" - }, - { - "title": "Eric Church - Love Your Love The Most (Karaoke)", - "id": "IEenxV8jErQ" - }, - { - "title": "Alan Jackson - Sissy's Song (Karaoke)", - "id": "oSg06IGXF7g" - }, - { - "title": "Fall Out Boy - America's Suitehearts (Karaoke)", - "id": "_pi90EW7Gzw" - }, - { - "title": "Jamey Johnson - High Cost Of Living (Karaoke)", - "id": "ehKrz-UFANk" - }, - { - "title": "Secondhand Serenade - Fall For You (Karaoke)", - "id": "UVnDPaQEXc0" - }, - { - "title": "Avril Lavigne - He Wasn't (Karaoke)", - "id": "K7CgwNDOAs0" - }, - { - "title": "Fall Out Boy - Dance, Dance (Karaoke)", - "id": "0ah6cMVRgOY" - }, - { - "title": "Avril Lavigne - Innocence (Karaoke)", - "id": "fI0sxZfuI6M" - }, - { - "title": "Cowboy Crush - Miss Difficult (Karaoke)", - "id": "HpoU_5Furlg" - }, - { - "title": "Dion - Ruby Baby (Karaoke)", - "id": "88nM-qqH534" - }, - { - "title": "Fall Out Boy - A Little Less Sixteen Candles, A Little More Touch Me (Karaoke)", - "id": "ypYD0SRd_XE" - }, - { - "title": "Christina Aguilera, Pink, Mya & Lil' Kim - Lady Marmalade (Karaoke)", - "id": "qfvdsNtQRL4" - }, - { - "title": "Billy Joel - Keepin' The Faith (Karaoke)", - "id": "sXoaPERcFgk" - }, - { - "title": "Alan Jackson - Remember When (Karaoke)", - "id": "DP5GNPUtF4k" - }, - { - "title": "Jonas Brothers - Tonight (Karaoke)", - "id": "_riGw40h9aw" - }, - { - "title": "Colbie Caillat - Bubbly (Karaoke)", - "id": "t2AClUsKfv0" - }, - { - "title": "Edgar Winter Group - Free Ride (Karaoke)", - "id": "vih-IOs7zyo" - }, - { - "title": "Barry Manilow - Could It Be Magic (Karaoke)", - "id": "con5kA7-2Z0" - }, - { - "title": "38 Special - Back Where You Belong (Karaoke)", - "id": "YDiy0w69bHA" - }, - { - "title": "Kirk Talley - If He Hung The Moon (Karaoke)", - "id": "gSFZ4uxjyDc" - }, - { - "title": "Jamie Cullum - All At Sea (Karaoke)", - "id": "wPb3Jz0XHNI" - }, - { - "title": "Jonas Brothers - Year 3000 (Karaoke)", - "id": "O1k4vGQGPKQ" - }, - { - "title": "Alan Jackson - Honky Tonk Christmas (Karaoke)", - "id": "Ez1E42KE9Fw" - }, - { - "title": "Talleys - No Other Word For Grace (Karaoke)", - "id": "VHd_6MbVCIA" - }, - { - "title": "Glen Campbell - Gentle On My Mind (Karaoke)", - "id": "iFZVEJNa6QI" - }, - { - "title": "Wilson Phillips - You Won't See Me Cry (Karaoke)", - "id": "F_BAZBA80k0" - }, - { - "title": "Talleys - There Is A Savior (Karaoke)", - "id": "Cpfm6O5DkSo" - }, - { - "title": "Isaacs - From The Depths Of My Heart (Karaoke)", - "id": "eHTloV0lHmA" - }, - { - "title": "4Him - Basics Of Life (Karaoke)", - "id": "yRsF3W3__vQ" - }, - { - "title": "Greenes - I Am A Christian (Karaoke)", - "id": "ec42lKgX3TI" - }, - { - "title": "Kylie Minogue - Come Into My World (Karaoke)", - "id": "GSln-PynW00" - }, - { - "title": "Sarah McLachlan - Angel (Karaoke)", - "id": "kawe8Ffyvao" - }, - { - "title": "New Kids On The Block - You Got It (The Right Stuff) (Karaoke)", - "id": "bwKhxXc4LCk" - }, - { - "title": "Clay Walker - Live Until I Die (Karaoke)", - "id": "YyMD2xjP_zA" - }, - { - "title": "Jonas Brothers - Lovebug (Karaoke)", - "id": "Sg8sRQyhNA4" - }, - { - "title": "Traditional - Good Christian Men Rejoice (Karaoke)", - "id": "qqvhefAXZpQ" - }, - { - "title": "Gretchen Wilson - You Don't Have To Go Home (Karaoke)", - "id": "WmM5s03aozM" - }, - { - "title": "Louis Armstrong - We Have All The Time In The World (Karaoke)", - "id": "3ovZU1wP1x4" - }, - { - "title": "Alicia Keys - Lovin' U (Karaoke)", - "id": "ff5NYh22TCs" - }, - { - "title": "Anita Baker - No One In The World (Karaoke)", - "id": "x57cmiEjnqM" - }, - { - "title": "Jason Michael Carroll - Where I'm From (Karaoke)", - "id": "7trsm8qXQRI" - }, - { - "title": "Little Richard - Jenny Jenny (Karaoke)", - "id": "Ca5LKMsy7fw" - }, - { - "title": "Martha & The Vandellas - Quicksand (Karaoke)", - "id": "Tdy77Z5Zmeg" - }, - { - "title": "Martha & The Vandellas - Nowhere To Run (Karaoke)", - "id": "jLcpQaOMNzw" - }, - { - "title": "Pussycat Dolls - I Don't Need A Man (Karaoke)", - "id": "3JLibcCXadk" - }, - { - "title": "One Flew South - My Kind Of Beautiful (Karaoke)", - "id": "0va_Qe-O6zc" - }, - { - "title": "Britney Spears - Womanizer (Karaoke)", - "id": "0nIOZ34pfxk" - }, - { - "title": "Christina Aguilera - Beautiful (Karaoke)", - "id": "BnydynKNa0M" - }, - { - "title": "Shirelles - Soldier Boy (Karaoke)", - "id": "Djbgx3HBmzA" - }, - { - "title": "Tony Gore & Majesty - Meanwhile In The Garden (Karaoke)", - "id": "D1Z0R1LgRTA" - }, - { - "title": "Freemans - Hello In Heaven (Karaoke)", - "id": "EuXEuMxxO1Q" - }, - { - "title": "Alicia Keys - Girlfriend (Karaoke)", - "id": "4H0pw68x-XA" - }, - { - "title": "Hinder - Lips Of An Angel (Karaoke)", - "id": "6wUEfnD4BFE" - }, - { - "title": "Greenes - King Of Eternity (Karaoke)", - "id": "UNzrqUQotVk" - }, - { - "title": "Petula Clark - I Know A Place (Karaoke)", - "id": "hPV0WhdXSos" - }, - { - "title": "Michael W. Smith - For You (Karaoke)", - "id": "Z1ACOWyBuqE" - }, - { - "title": "Kinks - You Really Got Me (Karaoke)", - "id": "i1c5mXcmaUg" - }, - { - "title": "Air Supply - One That You Love (Karaoke)", - "id": "utzendQ6qEc" - }, - { - "title": "Billy Joel - Piano Man (Karaoke)", - "id": "TgtGrjWo4ag" - }, - { - "title": "Gold City - Nobody's There (Karaoke)", - "id": "Inc8ueJ_l18" - }, - { - "title": "Chris DeBurgh - Lady In Red (Karaoke)", - "id": "NA7ClueLfPE" - }, - { - "title": "Sandi Patti (w/ Larnell Harris) - More Than Wonderful (Karaoke)", - "id": "szLgJ6nK_HI" - }, - { - "title": "Wilburns - God's Promised Land (Karaoke)", - "id": "QEiAFoob2Ts" - }, - { - "title": "Cathy Dennis - Just Another Dream (Karaoke)", - "id": "dZ5P5Jl8MXQ" - }, - { - "title": "Bobby Vinton - Blue On Blue (Karaoke)", - "id": "MvGaM8y6F1w" - }, - { - "title": "Petula Clark - My Love (Karaoke)", - "id": "C4WCDqtV3ng" - }, - { - "title": "Tom Jones - Help Yourself (Karaoke)", - "id": "7p_DkdmV-r4" - }, - { - "title": "Kenny Rogers & Dolly Parton - Greatest Gift Of All (Karaoke)", - "id": "eDpJa24C5ro" - }, - { - "title": "Three Dog Night - Joy To The World (Karaoke)", - "id": "ynCztR98Hh4" - }, - { - "title": "McKameys - God Will Make This Trial A Blessing (Karaoke)", - "id": "PKl3BE2l6EQ" - }, - { - "title": "Alabama - Closer You Get (Karaoke)", - "id": "yDapJjGA5rw" - }, - { - "title": "Joe Cocker - You Are So Beautiful (Karaoke)", - "id": "fiMJwgf0KOY" - }, - { - "title": "Talleys - God Is Able (Karaoke)", - "id": "cXUPLRYEUSY" - }, - { - "title": "John Denver - Take Me Home Country Roads (Karaoke)", - "id": "GXCg6Yukblk" - }, - { - "title": "Don McLean - And I Love You So (Karaoke)", - "id": "kvvFs6seXjg" - }, - { - "title": "Cher - Just Like Jesse James (Karaoke)", - "id": "rXpBaST6kGM" - }, - { - "title": "Andy Williams - Second Time Around (The Second Time Around) (Karaoke)", - "id": "XubAc_plRaA" - }, - { - "title": "Roxette - Listen To Your Heart (Karaoke)", - "id": "oes7jL57Sn4" - }, - { - "title": "Clint Black - One More Payment (Karaoke)", - "id": "Ms8Tv9u0D5Q" - }, - { - "title": "Hank Williams Jr. - Country State Of Mind (Karaoke)", - "id": "QPtKibFrhQ0" - }, - { - "title": "Barbara Mandrell - Sleeping Single In A Double Bed (Karaoke)", - "id": "Ir9sPj1n0to" - }, - { - "title": "Jonas Brothers - Burnin' Up (Karaoke)", - "id": "ZvAGoeK0iaE" - }, - { - "title": "Madonna - Crazy For You (Karaoke)", - "id": "83zgnVq7xu0" - }, - { - "title": "Lisa Lisa & Cult Jam - Head To Toe (Karaoke)", - "id": "XjTVweoEmgs" - }, - { - "title": "Aretha Franklin & George Michael - I Knew You Were Waiting (Karaoke)", - "id": "d7_0w5rJzyE" - }, - { - "title": "Carlene Carter - Sweetest Thing (Karaoke)", - "id": "Co6kRoBnNto" - }, - { - "title": "Jeff Healey Band - Angel Eyes (Karaoke)", - "id": "r5auNlGGSuw" - }, - { - "title": "Elton John - Crocodile Rock (Karaoke)", - "id": "cKvxbD5ppyw" - }, - { - "title": "Billy Joel - It's Still Rock And Roll To Me (Karaoke)", - "id": "adqQQFjM51w" - }, - { - "title": "Carlene Carter - Come On Back (Karaoke)", - "id": "kFQByu0KcRk" - }, - { - "title": "George Harrison - Got My Mind Set On You (Karaoke)", - "id": "z3EngF2kf7k" - }, - { - "title": "Shelby Lynne - Things Are Tough All Over (Karaoke)", - "id": "ERMLLlBeFJ4" - }, - { - "title": "Young Rascals - Good Lovin' (Karaoke)", - "id": "LZElAXHJdfE" - }, - { - "title": "Mickey Gilley - Don't The Girls All Get Prettier At Closing Time (Karaoke)", - "id": "STBRGHMgpz4" - }, - { - "title": "Alabama - Roll On Eighteen Wheeler (Karaoke)", - "id": "qkc6mGewK0I" - }, - { - "title": "Reba McEntire - Before I Met You (Karaoke)", - "id": "1oYat-ZVqJc" - }, - { - "title": "Barbra Streisand - Evergreen (Karaoke)", - "id": "7zYOGbRqtNI" - }, - { - "title": "Perry Como - It's Impossible (Karaoke)", - "id": "Ve2MZ2vVIyE" - }, - { - "title": "Dolly Parton - Hard Candy Christmas (Karaoke)", - "id": "ZJClB4T4W0U" - }, - { - "title": "Jim Croce - Time In A Bottle (Karaoke)", - "id": "r4v6D9kfJTk" - }, - { - "title": "Ricky Skaggs - Crying My Heart Out Over You (Karaoke)", - "id": "BhUcivN-4LU" - }, - { - "title": "Dolly Parton, Emmylou Harris & Linda Ronstadt - Those Memories Of You (Karaoke)", - "id": "b9Nci6CTUnE" - }, - { - "title": "Mac Davis - It's Hard To Be Humble (Karaoke)", - "id": "9_atHLozt5k" - }, - { - "title": "Jim Croce - Bad Bad Leroy Brown (Karaoke)", - "id": "CU5VFOlxJy4" - }, - { - "title": "Elvis Presley - If I Can Dream (Karaoke)", - "id": "4dBOWc2zDA8" - }, - { - "title": "Everly Brothers - Wake Up Little Susie (Karaoke)", - "id": "T7-9lxwpAhs" - }, - { - "title": "Billy Joel - For The Longest Time (Karaoke)", - "id": "saApt_zl5YQ" - }, - { - "title": "Holly Dunn - Heart Full Of Love (Karaoke)", - "id": "AjbhaeyZbpg" - }, - { - "title": "Clint Black - Loving Blind (Karaoke)", - "id": "Tuv03ElUIZY" - }, - { - "title": "Tanya Tucker - Oh, What It Did To Me (Karaoke)", - "id": "7Om5moUv_c8" - }, - { - "title": "Elvis Presley - Kentucky Rain (Karaoke)", - "id": "IsTO_KOJOEI" - }, - { - "title": "Alabama - Lady Down On Love (Karaoke)", - "id": "DcIGioORbrc" - }, - { - "title": "Mel McDaniel - Baby's Got Her Blue Jeans On (Karaoke)", - "id": "LPGZ19NpLEI" - }, - { - "title": "Steve Wariner - Where Did I Go Wrong (Karaoke)", - "id": "eCAYykGg8AU" - }, - { - "title": "Sandi Patti - Shepherd Of My Heart (Karaoke)", - "id": "RK1QPsFiV_s" - }, - { - "title": "Elvis Presley - Wonder Of You (Karaoke)", - "id": "HMDRx3jUbzU" - }, - { - "title": "Shelly West & David Frizzell - You're The Reason God Made Oklahoma (Karaoke)", - "id": "0tE3hQcC_mQ" - }, - { - "title": "Marty Stuart - Little Things (Karaoke)", - "id": "92dg440zQW8" - }, - { - "title": "Conway Twitty - I Couldn't See You Leavin' (Karaoke)", - "id": "nnJ-lsvZIv4" - }, - { - "title": "Wilson Phillips - Release Me (Karaoke)", - "id": "osaHOztA9ew" - }, - { - "title": "Michael Damian - Rock On (Karaoke)", - "id": "QlG3Z2OkDBM" - }, - { - "title": "Lee Greenwood - We've Got It Made (Karaoke)", - "id": "b_g3PS44Hv4" - }, - { - "title": "Dolly Parton - Just Someone I Used To Know (Karaoke)", - "id": "SVQ4Hof9bbE" - }, - { - "title": "Emmylou Harris - Two More Bottles Of Wine (Karaoke)", - "id": "9uDPKmWFcng" - }, - { - "title": "Waylon Jennings - Are You Sure Hank Done It This Way (Karaoke)", - "id": "sOD5orx_OJ8" - }, - { - "title": "Andy Williams - Moon River (Karaoke)", - "id": "RaD60OGnYww" - }, - { - "title": "Lee Roy Parnell - Crocodile Tears (Karaoke)", - "id": "-0yz8_Twvog" - }, - { - "title": "Billy Ocean - Get Outta My Dreams, Get Into My Car (Karaoke)", - "id": "rt8DFt4LeIA" - }, - { - "title": "Reba McEntire - Last One To Know (Karaoke)", - "id": "h1JjCNbhT-s" - }, - { - "title": "Crystal Gayle - I'll Get Over You (Karaoke)", - "id": "m4DrZ4UbfYE" - }, - { - "title": "Mike Reid - Walk On Faith (Karaoke)", - "id": "jqJ7SrGpSCE" - }, - { - "title": "Reba McEntire - Today All Over Again (Karaoke)", - "id": "DR2XWYxDESU" - }, - { - "title": "Sons Of The Pioneers - Tumbling Tumbleweeds (Karaoke)", - "id": "akkSg7ZE6FQ" - }, - { - "title": "Gene Chandler - Duke Of Earl (Karaoke)", - "id": "Wop1XEY5GNA" - }, - { - "title": "Don Williams - Some Broken Hearts Never Mend (Karaoke)", - "id": "-E1nMqF0rDM" - }, - { - "title": "Engelbert Humperdinck - A Man Without Love (Karaoke)", - "id": "86smZtwwDRQ" - }, - { - "title": "Don Williams - Turn Out The Light And Love Me Tonight (Karaoke)", - "id": "elH-3ugbPLs" - }, - { - "title": "Don Williams - Amanda (Karaoke)", - "id": "HW3uOTp7TqI" - }, - { - "title": "Manfred Mann - Do Wah Diddy Diddy (Karaoke)", - "id": "YNwPhb9OPbM" - }, - { - "title": "Amy Grant - Father's Eyes (Karaoke)", - "id": "dhGeLoFOLAA" - }, - { - "title": "Ricky Skaggs - Honey (Open That Door) (Karaoke)", - "id": "Emb2foST3cQ" - }, - { - "title": "George Jones - Walk Through This World With Me (Karaoke)", - "id": "Ubymp-vRIMg" - }, - { - "title": "Anita Baker - Just Because (Karaoke)", - "id": "9F4P33X1R6Y" - }, - { - "title": "Elvis Presley - He Touched Me (Karaoke)", - "id": "nSv0D5khg3Q" - }, - { - "title": "Loretta Lynn - Coal Miner's Daughter (Karaoke)", - "id": "LwcsbjaRvYc" - }, - { - "title": "Loretta Lynn - I'm A Honky Tonk Girl (Karaoke)", - "id": "HSM2gDrutGQ" - }, - { - "title": "Restless Heart - Fast Movin' Train (Karaoke)", - "id": "HzCxAXSkJO8" - }, - { - "title": "Lee Roy Parnell - Family Tree (Karaoke)", - "id": "8X0V2-3_EyA" - }, - { - "title": "Judds - Young Love (Karaoke)", - "id": "484SnFbxrHM" - }, - { - "title": "Roxette - Dressed For Success (Karaoke)", - "id": "jJo2jIsNWg8" - }, - { - "title": "Bette Midler - Boogie Woogie Bugle Boy (Karaoke)", - "id": "jlo7tMvpXgI" - }, - { - "title": "Alabama - Tennessee River (Karaoke)", - "id": "jD933RDmlDY" - }, - { - "title": "Jim Croce - Lover's Cross (Karaoke)", - "id": "THzTVObVip4" - }, - { - "title": "Rodney Crowell - After All This Time (Karaoke)", - "id": "YomOqAQEoOs" - }, - { - "title": "Holly Dunn - My Anniversary For Being A Fool (Karaoke)", - "id": "unLEQ9w5P_M" - }, - { - "title": "Jennifer Warnes - Right Time Of The Night (Karaoke)", - "id": "juQxICYYZLU" - }, - { - "title": "Carpenters - Touch Me When We're Dancing (Karaoke)", - "id": "9_NMJl60J_U" - }, - { - "title": "Ronnie Milsap - Back On My Mind Again (Karaoke)", - "id": "WFkKjngQWLk" - }, - { - "title": "Hank Williams Jr. - Whiskey Bent And Hell Bound (Karaoke)", - "id": "UcAK1iXJt2Y" - }, - { - "title": "Ray Price - Crazy Arms (Karaoke)", - "id": "8ZWU53itFUs" - }, - { - "title": "Steve Green - People Need The Lord (Karaoke)", - "id": "XJj-87G_cts" - }, - { - "title": "Juice Newton - Queen Of Hearts (Karaoke)", - "id": "7FUD1UZM22I" - }, - { - "title": "Sandi Patti - Love In Any Language (Karaoke)", - "id": "t-yPh8PtgIQ" - }, - { - "title": "Desert Rose Band - She Don't Love Nobody (Karaoke)", - "id": "zWQcwgng4Yc" - }, - { - "title": "Kenny Rogers - Ruby Don't Take Your Love To Town (Karaoke)", - "id": "9mYycmIeRLc" - }, - { - "title": "Judds - One Man Woman (Karaoke)", - "id": "JvMY1_0DrX0" - }, - { - "title": "Carpenters - Top Of The World (Karaoke)", - "id": "Z3Z6LPm7x68" - }, - { - "title": "Reba McEntire - One Promise Too Late (Karaoke)", - "id": "a3yK3DCq0hU" - }, - { - "title": "Shelly West & David Frizzell - I Just Came Here To Dance (Karaoke)", - "id": "pNFdOW0tWlY" - }, - { - "title": "Rays - Silhouettes (Karaoke)", - "id": "Xo22XMxq0UM" - }, - { - "title": "Reba McEntire - Love Will Find It's Way To You (Karaoke)", - "id": "1VIgEbgCwnE" - }, - { - "title": "Loretta Lynn & Conway Twitty - Feelins' (Karaoke)", - "id": "vybthG2TaxA" - }, - { - "title": "Elvis Presley - It Is No Secret (What God Can Do) (Karaoke)", - "id": "J3_zsfc6_0Q" - }, - { - "title": "Ricky Nelson - It's Late (Karaoke)", - "id": "wsM5zPq_K08" - }, - { - "title": "Kenny Rogers - Through The Years (Karaoke)", - "id": "8Z4eVhjx6s4" - }, - { - "title": "Patsy Cline - So Wrong (Karaoke)", - "id": "hdC5Q8X3iT0" - }, - { - "title": "Carpenters - We've Only Just Begun (Karaoke)", - "id": "hHYDAikTqm8" - }, - { - "title": "Creedence Clearwater Revival - Proud Mary (Karaoke)", - "id": "DgTmZiQNoTg" - }, - { - "title": "Jimmy Buffett - Why Don't We Get Drunk (Karaoke)", - "id": "Zw5B8nqFTs4" - }, - { - "title": "Elvis Presley - (Let Me Be Your) Teddy Bear (Karaoke)", - "id": "cf7spEldVGU" - }, - { - "title": "Bobby Brown - My Prerogative (Karaoke)", - "id": "smANfGX84qI" - }, - { - "title": "Loretta Lynn - You're Lookin' At Country (Karaoke)", - "id": "jkfNgxO0Ufk" - }, - { - "title": "Rick Astley - Together Forever (Karaoke)", - "id": "WinJ5ubulPI" - }, - { - "title": "Baillie & The Boys - A Fool Such As I (Karaoke)", - "id": "xcp2zyaGjV4" - }, - { - "title": "Judds - Have Mercy (Karaoke)", - "id": "7BA9efTYoiI" - }, - { - "title": "Patsy Cline - Leavin' On Your Mind (Karaoke)", - "id": "pI9N6OSI2Ko" - }, - { - "title": "K. T. Oslin - Hold Me (Karaoke)", - "id": "Mbj84LhGP9I" - }, - { - "title": "Standard - Auld Lang Syne (Karaoke)", - "id": "548ionZ9blk" - }, - { - "title": "Kathy Mattea - A Few Good Things Remain (Karaoke)", - "id": "gBIR39KSl1A" - }, - { - "title": "Steve Wariner - There For Awhile (Karaoke)", - "id": "ordOWErd0xU" - }, - { - "title": "Reba McEntire - Till Love Comes Again (Karaoke)", - "id": "-Y418VTY0rM" - }, - { - "title": "Patty Loveless - Blue Side Of Town (Karaoke)", - "id": "8rXAsdD3gOQ" - }, - { - "title": "Bobbie Gentry - Ode To Billy Joe (Karaoke)", - "id": "Mii1MmMgSGc" - }, - { - "title": "Kentucky Headhunters - Rock N Roll Angel (Karaoke)", - "id": "Djf-419Z0Ws" - }, - { - "title": "B-52s - Love Shack (Karaoke)", - "id": "_16mJjgN_Xk" - }, - { - "title": "Poison - Every Rose Has Its Thorn (Karaoke)", - "id": "-N6d_QZl-fk" - }, - { - "title": "Miami Sound Machine - Conga (Karaoke)", - "id": "_1s2pT39ToA" - }, - { - "title": "Ray Price - For The Good Times (Karaoke)", - "id": "8Ab03KM_z2E" - }, - { - "title": "Roxette - Look (Karaoke)", - "id": "hg6LeeufuNk" - }, - { - "title": "Clint Black - Put Yourself In My Shoes (Karaoke)", - "id": "ExOkWge70lw" - }, - { - "title": "Alabama - Forever's As Far As I'll Go (Karaoke)", - "id": "8IybrHF4qiU" - }, - { - "title": "McCarters - Shot Full Of Love (Karaoke)", - "id": "UnrOheTqihQ" - }, - { - "title": "Billy Joel - New York State Of Mind (Karaoke)", - "id": "_vZtQXplA-w" - }, - { - "title": "Brenda Lee - I'm Sorry (Karaoke)", - "id": "FIcDs-uenkc" - }, - { - "title": "Marty Robbins - My Woman, My Woman, My Wife (Karaoke)", - "id": "LTYdVYC07Co" - }, - { - "title": "Vince Gill - Never Knew Lonely (Karaoke)", - "id": "VZ8GhzBSua4" - }, - { - "title": "Poison - Unskinny Bop (Karaoke)", - "id": "I9dJdsG6dXU" - }, - { - "title": "Kids Christmas - Silent Night (Karaoke)", - "id": "9Y014ITfBLg" - }, - { - "title": "Billy Ocean - There'll Be Sad Songs (To Make You Cry) (Karaoke)", - "id": "kJ6VEASUBAU" - }, - { - "title": "Fabulous Thunderbirds - Tuff Enuff (Karaoke)", - "id": "mafrsfjJEuE" - }, - { - "title": "Starship - Nothing's Gonna Stop Us Now (Karaoke)", - "id": "t7TQ1bfvlPA" - }, - { - "title": "Linda Ronstadt & James Ingram - Somewhere Out There (Karaoke)", - "id": "Ut9va-UENio" - }, - { - "title": "Lorrie Morgan - Out Of Your Shoes (Karaoke)", - "id": "WbyRMqkoHCI" - }, - { - "title": "Tanya Tucker - Walking Shoes (Karaoke)", - "id": "25Bqp7M77q4" - }, - { - "title": "Phil Collins - I Wish It Would Rain Down (Karaoke)", - "id": "04O0Qs2HKUQ" - }, - { - "title": "Keith Whitley - I'm Over You (Karaoke)", - "id": "Ns52pSdL63E" - }, - { - "title": "Janet Jackson - What Have You Done For Me Lately (Karaoke)", - "id": "pK-mj5MwZhA" - }, - { - "title": "Clint Black - Nothings News (Karaoke)", - "id": "5haZqhgWOfk" - }, - { - "title": "Rick Astley - She Wants To Dance With Me (Karaoke)", - "id": "ecEwtfzwL_o" - }, - { - "title": "Tanya Tucker - Delta Dawn (Karaoke)", - "id": "7fFs5vzV--o" - }, - { - "title": "Michael Jackson - Man In The Mirror (Karaoke)", - "id": "rzukdiWKX1M" - }, - { - "title": "Whitney Houston - Didn't We Almost Have It All (Karaoke)", - "id": "4Xr6W6x5rhA" - }, - { - "title": "Don McLean - American Pie (Karaoke)", - "id": "a55IR-LXa1Y" - }, - { - "title": "Jim Reeves - He'll Have To Go (Karaoke)", - "id": "O8SGQxkzdhM" - }, - { - "title": "k.d. lang - Down To My Last Cigarette (Karaoke)", - "id": "tDJqSU8aSpo" - }, - { - "title": "Sawyer Brown - Did It For Love (Karaoke)", - "id": "JYyQDOSaMtE" - }, - { - "title": "Lee Greenwood - It Turns Me Inside Out (Karaoke)", - "id": "pSrS2SO_Ksg" - }, - { - "title": "Elmo & Patsy - Grandma Got Run Over By A Reindeer (Karaoke)", - "id": "rr63NcTyI64" - }, - { - "title": "Loretta Lynn - You Ain't Woman Enough To Take My Man (Karaoke)", - "id": "Z7ndwLtnG6M" - }, - { - "title": "Reba McEntire - What Am I Gonna Do About You (Karaoke)", - "id": "Dyc9VEBgsmQ" - }, - { - "title": "Keith Whitley - It Ain't Nothin' (Karaoke)", - "id": "SxPZh_x3b9I" - }, - { - "title": "k.d. lang - Lock, Stock And Teardrops (Karaoke)", - "id": "A8klRSfca_s" - }, - { - "title": "Marty Robbins - A White Sport Coat (And A Pink Carnation) (Karaoke)", - "id": "w6pMEgdU7ck" - }, - { - "title": "Don Williams - Tulsa Time (Karaoke)", - "id": "jkEuFrUvolE" - }, - { - "title": "Alabama - She And I (Karaoke)", - "id": "KSY0_s0Jyf4" - }, - { - "title": "Patsy Cline - Blue Moon Of Kentucky (Karaoke)", - "id": "v8NgMg26ww4" - }, - { - "title": "Elvis Presley - Love Me Tender (Karaoke)", - "id": "Hg1NB-rA-a0" - }, - { - "title": "Crystal Gayle - Somebody Loves You (Karaoke)", - "id": "GtNdFLVQ4MQ" - }, - { - "title": "Elvis Presley - Stuck On You (Karaoke)", - "id": "qRJdRkDq5PI" - }, - { - "title": "Osborne Brothers - Rocky Top (Karaoke)", - "id": "5fzEtrwtfkA" - }, - { - "title": "Eagles - Please Come Home For Christmas (Karaoke)", - "id": "qVUUr3q_tno" - }, - { - "title": "Marty Robbins - El Paso (Karaoke)", - "id": "vwfQZNNUbyQ" - }, - { - "title": "Waylon Jennings - Luckenbach, Texas (Karaoke)", - "id": "mPx8QCXjhqw" - }, - { - "title": "Hank Williams Jr. - Family Tradition (Karaoke)", - "id": "aqexsU4QBho" - }, - { - "title": "Marty Robbins - Devil Woman (Karaoke)", - "id": "Zkbos6ISobI" - }, - { - "title": "Patsy Cline - Back In Baby's Arms (Karaoke)", - "id": "WqjgnmiTCAA" - }, - { - "title": "Kenny Rogers - Coward Of The County (Karaoke)", - "id": "jJnkwoYrtMc" - }, - { - "title": "Chicago - Colour My World (Karaoke)", - "id": "kquru-UCzHM" - }, - { - "title": "Judds - Give A Little Love (Karaoke)", - "id": "UZqAvZA3_SE" - }, - { - "title": "Marty Robbins - Don't Worry (Karaoke)", - "id": "h6uKVLPbTc0" - }, - { - "title": "Bobby McFerrin - Don't Worry Be Happy (Karaoke)", - "id": "szsJb5iW1pY" - }, - { - "title": "Elvis Presley - Can't Help Falling In Love (Karaoke)", - "id": "QfWNHy_I7Wk" - }, - { - "title": "Elvis Presley - C. C. Rider (Karaoke)", - "id": "eiJos4eYc28" - }, - { - "title": "Everly Brothers - Bye Bye Love (Karaoke)", - "id": "3uxW2503e54" - }, - { - "title": "Randy Travis - Too Gone Too Long (Karaoke)", - "id": "O2T5cX_i52M" - }, - { - "title": "Traditional Christmas - O' Holy Night (Karaoke)", - "id": "3vhRj7j_Cco" - }, - { - "title": "Elvis Presley - How Great Thou Art (Karaoke)", - "id": "QNBEfY9P0g4" - }, - { - "title": "Everly Brothers - All I Have To Do Is Dream (Karaoke)", - "id": "6Rh_k9ZwhLE" - }, - { - "title": "Ronnie Milsap - It Was Almost Like A Song (Karaoke)", - "id": "arn457TfZts" - }, - { - "title": "Richard Marx - Right Here Waiting (Karaoke)", - "id": "EGqvUfJoBrQ" - }, - { - "title": "Lee Greenwood - I. O. U. (Karaoke)", - "id": "rnW2ReZCzKM" - }, - { - "title": "K. T. Oslin - Do Ya (Karaoke)", - "id": "w8WWz_sG4Mk" - }, - { - "title": "Juice Newton - Sweetest Thing (I've Ever Known) (Karaoke)", - "id": "YvOd2waZvIc" - }, - { - "title": "Richard Marx - Hold On To The Nights (Karaoke)", - "id": "39E07mHyTmw" - }, - { - "title": "Elvis Presley - Mansion Over The Hilltop (Karaoke)", - "id": "xO_PfNLYC2M" - }, - { - "title": "Tanya Tucker - Strong Enough To Bend (Karaoke)", - "id": "PSFUMjKzflA" - }, - { - "title": "Reba McEntire - How Blue (Karaoke)", - "id": "_h0ZepWs9dM" - }, - { - "title": "Lee Greenwood - God Bless The USA (Karaoke)", - "id": "RkV0iGqnp3o" - }, - { - "title": "K. T. Oslin - Hey Bobby (Karaoke)", - "id": "S3nFf07jw6I" - }, - { - "title": "Clint Black - Better Man (Karaoke)", - "id": "ANvn5BefSqk" - }, - { - "title": "Keith Whitley - Don't Close Your Eyes (Karaoke)", - "id": "7hguAVA0Kz8" - }, - { - "title": "Brenda Lee - Sweet Nothings (Karaoke)", - "id": "1rRfG-lgvDE" - }, - { - "title": "Steve Wariner - Precious Thing (Karaoke)", - "id": "LkHihQ5to3Y" - }, - { - "title": "Big Bopper - Chantilly Lace (Karaoke)", - "id": "ZoELff3c058" - }, - { - "title": "Anne Murray - Feed This Fire (Karaoke)", - "id": "xPfOKT8abFY" - }, - { - "title": "Patty Loveless - On Down The Line (Karaoke)", - "id": "dxagxwOgy9E" - }, - { - "title": "Patty Loveless - Timber I'm Falling In Love (Karaoke)", - "id": "qnmPvBVBvAI" - }, - { - "title": "Kathy Mattea - She Came From Ft. Worth (Karaoke)", - "id": "Jds8TqDRDS0" - }, - { - "title": "Marsha Thornton - A Bottle Of Wine And Patsy Cline (Karaoke)", - "id": "cKxGC_jY-94" - }, - { - "title": "Judds - Change Of Heart (Karaoke)", - "id": "clDfqRmy5tU" - }, - { - "title": "Lorrie Morgan & Keith Whitley - Till A Tear Becomes A Rose (Karaoke)", - "id": "CgqDgr6qQ8E" - }, - { - "title": "Lorrie Morgan - Five Minutes (Karaoke)", - "id": "619BLfyUGr4" - }, - { - "title": "Carpenters - Close To You (Karaoke)", - "id": "Qjy8AdwpBBc" - }, - { - "title": "Loretta Lynn - Blue Kentucky Girl (Karaoke)", - "id": "AbKMHtdYvfA" - }, - { - "title": "Judds - Cry Myself To Sleep (Karaoke)", - "id": "Bjnn7zdmCT0" - }, - { - "title": "Garth Brooks - Dance (Karaoke)", - "id": "33SgI6tqmYg" - }, - { - "title": "Reba McEntire - Can't Even Get The Blues (Karaoke)", - "id": "k-jHGQFPQgA" - }, - { - "title": "Clint Black - Killin' Time (Karaoke)", - "id": "R_2pdjlyUkM" - }, - { - "title": "Shenandoah - Next To You, Next To Me (Karaoke)", - "id": "aGcMRyoxoVQ" - }, - { - "title": "Mark Collie - Looks Aren't Everything (Karaoke)", - "id": "hS3abdRCIsM" - }, - { - "title": "Randy Travis - He Walked On Water (Karaoke)", - "id": "kcZ8QhT1nu8" - }, - { - "title": "Kentucky Headhunters - Dumas Walker (Karaoke)", - "id": "pRW6ekYznjA" - }, - { - "title": "Randy Travis - Hard Rock Bottom Of Your Heart (Karaoke)", - "id": "l1fTZjvqa3Y" - }, - { - "title": "George Strait - Merry Christmas (Wherever You Are) (Karaoke)", - "id": "KTlK8Uv587k" - }, - { - "title": "George Strait - Old Time Christmas (Karaoke)", - "id": "_XLcifM5gRA" - }, - { - "title": "Vince Gill - One Bright Star (Karaoke)", - "id": "qjI7vTX0oW4" - }, - { - "title": "Beach Boys - God Only Knows (Karaoke)", - "id": "mvDt2dcj7mQ" - }, - { - "title": "Mon Laferte - Cancion De Mierda (Karaoke)", - "id": "vIpsokE-mMc" - }, - { - "title": "Dierks Bentley - Long Trip Alone (Karaoke)", - "id": "k01NVZQ1HNM" - }, - { - "title": "Eric Church - Hungover & Hard Up (Karaoke)", - "id": "glse1Tos2oM" - }, - { - "title": "Pam Tillis - Betty's Got A Bass Boat (Karaoke)", - "id": "auPsJmuS6Ds" - }, - { - "title": "Jake Owen - Barefoot Blue Jean Night (Karaoke)", - "id": "dG08CjMJRxY" - }, - { - "title": "Oasis - Rock & Roll Star (Karaoke)", - "id": "C8PPpcceY-w" - }, - { - "title": "Akon - Sorry (Blame It On Me) (Karaoke)", - "id": "cVA8K2SHU_E" - }, - { - "title": "Cher Lloyd ftg. Mike Posner - With Ur Love (Karaoke)", - "id": "foeE2ySt7pE" - }, - { - "title": "Hank Williams Jr. - Ain't Nobody's Business (Karaoke)", - "id": "NDPjQQNxo54" - }, - { - "title": "Shinedown - Planet Zero (Karaoke)", - "id": "-10InT3rgT4" - }, - { - "title": "Chris LeDoux - Bareback Jack (Karaoke)", - "id": "Xws0eMF7Q0k" - }, - { - "title": "Johnny Cash - It Ain't Me Babe (Karaoke)", - "id": "7TOruY30zBw" - }, - { - "title": "Andy Williams - Where Do I Begin (Karaoke)", - "id": "dsEYB8m9Yw0" - }, - { - "title": "Robert & Johnny - We Belong Together (Karaoke)", - "id": "B-oioT7vifU" - }, - { - "title": "Aretha Franklin - Until You Come Back To Me (That's What I'm Gonna Do) (Karaoke)", - "id": "J6sH-ri4yjM" - }, - { - "title": "Rachel Platten - Fight Song (Karaoke)", - "id": "QELc_kuhGQM" - }, - { - "title": "SALES - Pope Is A Rockstar (Karaoke)", - "id": "3wmQa7j8LOY" - }, - { - "title": "Elle King - Ex's & Oh's (Karaoke)", - "id": "0LB2kxlBiE4" - }, - { - "title": "Joey Dee & The Starliters - Peppermint Twist (Karaoke)", - "id": "29U9w8EwKkM" - }, - { - "title": "Sum 41 - In Too Deep (Karaoke)", - "id": "zYQCztlNs3A" - }, - { - "title": "Evanescence - Lithium (Karaoke)", - "id": "eQpeeHmLvJM" - }, - { - "title": "B. B. King - It's My Own Fault (Karaoke)", - "id": "ifKFnnusVXc" - }, - { - "title": "Johnny Horton - North To Alaska (Karaoke)", - "id": "9-Brqf37bGE" - }, - { - "title": "Dixie Chicks - Without You (Karaoke)", - "id": "v2tD_6p2Ahc" - }, - { - "title": "Bill Engvall - Here's Your Sign Christmas (Karaoke)", - "id": "nIxMDprPkTw" - }, - { - "title": "The Beach Boys - Little Saint Nick (Karaoke)", - "id": "0qdxpYzHORs" - }, - { - "title": "Madonna - Holiday (Karaoke)", - "id": "PBOzZD6gWaU" - }, - { - "title": "Kelly Clarkson and Ariana Grande - Santa Can't You Hear Me (Karaoke)", - "id": "pKDAJqDFg4U" - }, - { - "title": "Dolly Parton - Country Road (Karaoke)", - "id": "s91BI7ln0XE" - }, - { - "title": "Jerry Lee Lewis - You Win Again (Karaoke)", - "id": "PWtGTotR7DE" - }, - { - "title": "Gretchen Wilson - California Girls (Karaoke)", - "id": "5yKFxmow1dk" - }, - { - "title": "Marty Robbins - Stairway Of Love (Karaoke)", - "id": "AMTOHYc8tDc" - }, - { - "title": "Gene Autry - Twilight On The Trail (Karaoke)", - "id": "fLBHyEmwh1s" - }, - { - "title": "Dionne Warwick - Alfie (Karaoke)", - "id": "3Wn3UUhuV6k" - }, - { - "title": "Train - Meet Virginia (Karaoke)", - "id": "ByDK4245r9o" - }, - { - "title": "Brian Setzer - Jump Jive 'N' Wail (Karaoke)", - "id": "ZKpPF7L41_Y" - }, - { - "title": "Blood Sweat & Tears - Spinning Wheel (Karaoke)", - "id": "9Je6yW6AudM" - }, - { - "title": "Joe Diffie - Prop Me Up Beside The Jukebox (If I Die) (Karaoke)", - "id": "cwNwwacPCTQ" - }, - { - "title": "David Bowie - Space Oddity (Karaoke)", - "id": "QoPmAZLp-_M" - }, - { - "title": "Train - Hey, Soul Sister (Karaoke)", - "id": "T_awuQWRbqQ" - }, - { - "title": "Sigrid and Bring Me The Horizon - Bad Life (Duet Version) (Karaoke)", - "id": "FyUHUoiIiWY" - }, - { - "title": "Arctic Monkeys - Do I Wanna Know? (Karaoke)", - "id": "kH_-pvuLoJQ" - }, - { - "title": "Arctic Monkeys - Arabella (Karaoke)", - "id": "4dnnqoDfU8A" - }, - { - "title": "Carole King - Been To Canaan (Karaoke)", - "id": "RhxXR2VFFHo" - }, - { - "title": "Carole King - Jazzman (Karaoke)", - "id": "O_TBdRWTbck" - }, - { - "title": "Stevie Wonder - I Wish (Karaoke)", - "id": "4Qv8x-iuZBs" - }, - { - "title": "Post Malone feat. Doja Cat - I Like You (A Happier Song) (Karaoke)", - "id": "Y7v3APTkWfk" - }, - { - "title": "Kylie Minogue - Loco-Motion (Karaoke)", - "id": "ccLRy7hIOzY" - }, - { - "title": "Carole King - Where You Lead (Karaoke)", - "id": "dY53WozInuU" - }, - { - "title": "Kane Brown - Leave You Alone (Karaoke)", - "id": "oPF2lAbbtcE" - }, - { - "title": "Willie Nelson - Maria (Shut Up And Kiss Me) (Karaoke)", - "id": "YudZyjoVXQc" - }, - { - "title": "Post Malone feat. Roddy Ricch - Cooped Up (Karaoke)", - "id": "Cd3KuEuQnAM" - }, - { - "title": "Florence And The Machine - King (Karaoke)", - "id": "5K_coJKRj_w" - }, - { - "title": "Five Finger Death Punch - Welcome To The Circus (Karaoke)", - "id": "5UlEGKxWaoo" - }, - { - "title": "Muse - Wonโ€™t Stand Down (Karaoke)", - "id": "vHC1TW5rDiU" - }, - { - "title": "Gretchen Wilson - Homewrecker (Karaoke)", - "id": "_TiTCRddt00" - }, - { - "title": "Gretchen Wilson - All Jacked Up (Karaoke)", - "id": "HbaH1jYbqL0" - }, - { - "title": "Dixie Chicks - Lubbock Or Leave It (Karaoke)", - "id": "ZZGqpf90HpI" - }, - { - "title": "Sheryl Crow - Can't Cry Anymore (Karaoke)", - "id": "4X3bInYLaZA" - }, - { - "title": "Tom T. Hall - Negatory Romance (Karaoke)", - "id": "tja8uz8YL00" - }, - { - "title": "Ray Charles - Unchain My Heart (Karaoke)", - "id": "gXkskLZCZS8" - }, - { - "title": "The 5th Dimension - Stoned Soul Picnic (Karaoke)", - "id": "_ZFpVDdGHRw" - }, - { - "title": "Dolly Parton - Better Get To Livin' (Karaoke)", - "id": "gWM0NK4xGfo" - }, - { - "title": "Thomas Rhett, Maren Morris - Craving You (Karaoke)", - "id": "d6wCGGddr3w" - }, - { - "title": "Kitty Wells, Red Foley - Make Believe ('Til We Can Make It Come True) (Karaoke)", - "id": "QjVOcJMi9K8" - }, - { - "title": "Panic At The Disco - New Perspective (Karaoke)", - "id": "Ww0NvMbOyH0" - }, - { - "title": "Jax - Victoriaโ€™s Secret (Karaoke)", - "id": "KOiVfuGEyCc" - }, - { - "title": "Morgan Wallen - Wasted on You (Karaoke)", - "id": "4WOaxM_tTFs" - }, - { - "title": "Em Beihold - Numb Little Bug (Karaoke)", - "id": "tcsYdWbk5U0" - }, - { - "title": "Of Monsters And Men - Crystals (Karaoke)", - "id": "ldcrUtFSW1c" - }, - { - "title": "Halsey - So Good (Karaoke)", - "id": "sEH0Wu8zu3U" - }, - { - "title": "Kacey Musgraves - Canโ€™t Help Falling In Love (Elvis Movie 2022) (Karaoke)", - "id": "V74CEu6zanw" - }, - { - "title": "Savage Garden - Truly Madly Deeply (Karaoke)", - "id": "dnbdK06nGpE" - }, - { - "title": "Bangles - Eternal Flame (Karaoke)", - "id": "fBqzp-xsLjg" - }, - { - "title": "Zac Brown Band - Beautiful Drug (Karaoke)", - "id": "PY48Q9JIqP8" - }, - { - "title": "Zac Brown Band - Loving You Easy (Karaoke)", - "id": "-bFZP-riLg8" - }, - { - "title": "Stevie Wonder - Uptight (Everything's Alright) (Karaoke)", - "id": "W5Gl-qSbr2w" - }, - { - "title": "Stevie Wonder - Higher Ground (Karaoke)", - "id": "W6exhUkk28c" - }, - { - "title": "Zac Brown Band ftg. Chris Cornell - Heavy Is The Head (Karaoke)", - "id": "ldptZhYRs4c" - }, - { - "title": "Zac Brown Band - My Old Man (Karaoke)", - "id": "Ru4QDzIjwuQ" - }, - { - "title": "Harry Styles - As It Was (Karaoke)", - "id": "d0Gv71BuvHI" - }, - { - "title": "Kesha feat. Big Freedia - Raising Hell (Karaoke)", - "id": "QkARdJSIb8I" - }, - { - "title": "Charlie Puth - Thatโ€™s Hilarious (Karaoke)", - "id": "9JSJhSSLjkk" - }, - { - "title": "Hikaru Utada and Skrillex - Face My Fears (Karaoke)", - "id": "CYeNq-II4RY" - }, - { - "title": "Christina Aguilera - Loyal Brave True (From Disney's Mulan) (Karaoke)", - "id": "InMjJiV4Srg" - }, - { - "title": "Kina feat. Snow - Get You The Moon (Karaoke)", - "id": "l29_hkh8XS4" - }, - { - "title": "Norah Jones - Nearness Of You (Karaoke)", - "id": "tfMGGyjTHqI" - }, - { - "title": "R.E.M. - E-Bow The Letter (Karaoke)", - "id": "7AYndGfW9Ng" - }, - { - "title": "Sarah Jeffery - Queen Of Mean (From Disney's Descendants 3) (Karaoke)", - "id": "onB-MLZ5KII" - }, - { - "title": "Dolly Parton - Yellow Roses (Karaoke)", - "id": "0VstmWvebGM" - }, - { - "title": "Luis Fonsi - Seria Facil (Karaoke)", - "id": "dmtoIU1x33E" - }, - { - "title": "Stevie Wonder - Signed, Sealed, Delivered I'm Yours (Karaoke)", - "id": "kAlDZq-T1KU" - }, - { - "title": "Neil Diamond - Kentucky Woman (Karaoke)", - "id": "gu0MzmeCd-E" - }, - { - "title": "David Allan Coe - You Never Even Called Me By My Name (Karaoke)", - "id": "YVA3AnUZoFc" - }, - { - "title": "Three Dog Night - Eli's Coming (Karaoke)", - "id": "mYJg1j5UM5U" - }, - { - "title": "Elton John and Britney Spears - Hold Me Closer (Karaoke)", - "id": "UCi4zNFtmZg" - }, - { - "title": "Harry Styles - Sign Of The Times (Karaoke)", - "id": "g1j3PUp-kF8" - }, - { - "title": "Charlie Puth - Light Switch (Karaoke)", - "id": "FUvAp5IAFmA" - }, - { - "title": "Hootie & The Blowfish - Tucker's Town (Karaoke)", - "id": "vrnOz9Vmblc" - }, - { - "title": "Ray Charles - (Night Time Is) The Right Time (Karaoke)", - "id": "eXX403QcoWY" - }, - { - "title": "Lion King - Hakuna Matata (Karaoke)", - "id": "b-hnG7J1HuY" - }, - { - "title": "Hootie & The Blowfish - Time (Karaoke)", - "id": "59BjGVShA-c" - }, - { - "title": "The Fray - Over My Head (Cable Car) (Karaoke)", - "id": "ldk6jkgHxJY" - }, - { - "title": "Three Dog Night - Black & White (Karaoke)", - "id": "X01lp4RTqds" - }, - { - "title": "Gretchen Wilson - Here For The Party (Karaoke)", - "id": "QSGygKFsgg4" - }, - { - "title": "Sara Evans - Suds In The Bucket (Karaoke)", - "id": "UWYccf2krwY" - }, - { - "title": "Gretchen Wilson - Redneck Woman (Karaoke)", - "id": "uPMGzCJVc_I" - }, - { - "title": "Neil Diamond - Red Red Wine (Karaoke)", - "id": "bzULiOQA4D4" - }, - { - "title": "Neil Diamond - Girl You'll Be A Woman Soon (Karaoke)", - "id": "tV7Q1qoaXYI" - }, - { - "title": "Trent Summar & The New Row Mob - It Never Rains In Southern California (Karaoke)", - "id": "IXpH8q0Yh2U" - }, - { - "title": "Neil Diamond - Longfellow Serenade (Karaoke)", - "id": "q5k-7EA_4qs" - }, - { - "title": "The Animals - I'm Crying (Karaoke)", - "id": "TV-xYcbmhpY" - }, - { - "title": "Elvis Presley - C'mon Everybody (Karaoke)", - "id": "ioHHFgsx1uM" - }, - { - "title": "Little Walter - Boom Boom Out Go The Lights (Karaoke)", - "id": "_8ASPvrqh64" - }, - { - "title": "John Lee Hooker - Boogie Chillun (Rockin' Version) (Karaoke)", - "id": "XHIv8dI4-i0" - }, - { - "title": "Future - Mask Off (Karaoke)", - "id": "hyV-XIE6yM8" - }, - { - "title": "Brooks & Dunn - Hillbilly Deluxe (Karaoke)", - "id": "CDRKLLkNhnk" - }, - { - "title": "Buck Owens - Ruby (Are You Mad At Your Man) (Karaoke)", - "id": "SzvHwyWLUWI" - }, - { - "title": "Van Morrison & Linda Gail Lewis - You Win Again (Karaoke)", - "id": "uu4oYwjpYTw" - }, - { - "title": "Collective Soul - No More No Less (Karaoke)", - "id": "ZgGZ8I5CmYM" - }, - { - "title": "Harry Styles - Music For A Sushi Restaurant (Karaoke)", - "id": "Il7HpQxALgw" - }, - { - "title": "Charlie Puth and Jung Kook (of BTS) - Left And Right (Karaoke)", - "id": "NOyxu0ei7Zc" - }, - { - "title": "Beach Boys - Good Vibrations (Karaoke)", - "id": "bygkJWAWO2o" - }, - { - "title": "Neil Diamond - Holly Holy (Karaoke)", - "id": "V9fPqCaWZT8" - }, - { - "title": "Neil Diamond - Love On The Rocks (Karaoke)", - "id": "eWXx_g3mChg" - }, - { - "title": "Lou Reed - Satellite Of Love (Karaoke)", - "id": "VkC8hcczhv4" - }, - { - "title": "Pat Benatar - Treat Me Right (Karaoke)", - "id": "aosXEFHa9sw" - }, - { - "title": "Psychedelic Furs - Pretty In Pink (Karaoke)", - "id": "t2f4o13Q4hg" - }, - { - "title": "Bob Dylan - Tangled Up In Blue (Karaoke)", - "id": "NlU7j2syO58" - }, - { - "title": "Bob Dylan - Hurricane (Karaoke)", - "id": "btWaJzia4oQ" - }, - { - "title": "Bob Dylan - Subterranean Homesick Blues (Karaoke)", - "id": "l2lTh25TiYU" - }, - { - "title": "Tom Jones - What's New Pussycat (Karaoke)", - "id": "M5fmUDpECJM" - }, - { - "title": "Marvelettes - Donโ€™t Mess With Bill (Karaoke)", - "id": "8Nc53diDhxg" - }, - { - "title": "Ray Charles - Drown In My Own Tears (Karaoke)", - "id": "4rBKgRPG5ZU" - }, - { - "title": "Neil Diamond - Cherry, Cherry (Karaoke)", - "id": "EM4YeIBHiBM" - }, - { - "title": "Bob Dylan - Forever Young (Karaoke)", - "id": "iwq73unjl4s" - }, - { - "title": "Peter Gabriel - In Your Eyes (Radio Edit) (Karaoke)", - "id": "LhksvPZGKNg" - }, - { - "title": "Paul McCartney - Every Night (Karaoke)", - "id": "Tms6EKQ_xlQ" - }, - { - "title": "Orleans - Dance With Me (Karaoke)", - "id": "iCZ0iepY-HM" - }, - { - "title": "Beach Boys - Wouldn't It Be Nice (Karaoke)", - "id": "i3yugPmpppg" - }, - { - "title": "Beach Boys - Be True To Your School (Karaoke)", - "id": "IjOvnAHnpVQ" - }, - { - "title": "Neil Diamond - Coming To America (Karaoke)", - "id": "4WM8NEPbl2w" - }, - { - "title": "Bob Dylan - Maggie's Farm (Karaoke)", - "id": "bh8pn4eaPak" - }, - { - "title": "Kyle feat. Lil Yachty - iSpy (Karaoke)", - "id": "HInbUZUw_t8" - }, - { - "title": "Bob Dylan - Blowin' In The Wind (Karaoke)", - "id": "iepIT0UjNXI" - }, - { - "title": "Violent Femmes - Blister In The Sun (Karaoke)", - "id": "lqOzpApRqKo" - }, - { - "title": "Sheryl Crow - Steve McQueen (Karaoke)", - "id": "ye9DMXBKg10" - }, - { - "title": "Steely Dan - Any Major Dude Will Tell You (Karaoke)", - "id": "8pn9n4i4VUc" - }, - { - "title": "Beach Boys - Little Deuce Coupe (Karaoke)", - "id": "CaH9BlhDUOc" - }, - { - "title": "Neil Diamond - Hello Again (Karaoke)", - "id": "8btdQ_JMkAM" - }, - { - "title": "Beach Boys - Help Me Rhonda (Karaoke)", - "id": "TZ71YLPaPzY" - }, - { - "title": "Neil Diamond - Song Sung Blue (Karaoke)", - "id": "gEcpr8sAfJ8" - }, - { - "title": "Merle Haggard - The Fugitive (Karaoke)", - "id": "9HR9HbqfsBo" - }, - { - "title": "Bob Dylan - It Ain't Me Babe (Karaoke)", - "id": "4xWIw0sArtI" - }, - { - "title": "Bob Dylan - Don't Think Twice, It's All Right (Karaoke)", - "id": "qjDmlh_nBEg" - }, - { - "title": "Merle Haggard - Kentucky Gambler (Karaoke)", - "id": "CKCY5goNAow" - }, - { - "title": "Olivia Rodrigo - All I Want (Karaoke)", - "id": "DZxLHnSn12o" - }, - { - "title": "Men At Work - Who Can It Be Now? (Karaoke)", - "id": "yKshZxQJkQw" - }, - { - "title": "Men At Work - Down Under (Karaoke)", - "id": "po8BPuM19Fo" - }, - { - "title": "Carrie Underwood - Ghost Story (Karaoke)", - "id": "dAro1nTzlaY" - }, - { - "title": "Madness - Baggy Trousers (Karaoke)", - "id": "AXzzopI1saQ" - }, - { - "title": "Bob Dylan - Rainy Day Women #12 & 35 (Karaoke)", - "id": "v9sZkf6qQPc" - }, - { - "title": "Bob Dylan - Positively 4th Street (Karaoke)", - "id": "A04Zpqg-4h8" - }, - { - "title": "Beach Boys - Getcha Back (Karaoke)", - "id": "NR9Oe_AaRoo" - }, - { - "title": "Beach Boys - California Girls (Karaoke)", - "id": "xzvKh0QPKL8" - }, - { - "title": "Beach Boys - I Get Around (Karaoke)", - "id": "A3bMKzqzvDQ" - }, - { - "title": "Spinal Tap - Hell Hole (Karaoke)", - "id": "3Zgi1Ko_QrM" - }, - { - "title": "The 1975 - Me & You Together Song (Karaoke)", - "id": "jTy_PMRXnnA" - }, - { - "title": "Pink - Dear Diary (Karaoke)", - "id": "sbP1bxJwzfI" - }, - { - "title": "Alicia Keys Feat. Miguel - Show Me Love (Karaoke)", - "id": "Uu84-meBEcM" - }, - { - "title": "Bob Dylan - Just Like A Woman (Karaoke)", - "id": "33J0VrwbeZg" - }, - { - "title": "Dirty Heads - Sound Of Change (Karaoke)", - "id": "2y_tybcL8k8" - }, - { - "title": "Chuck Wicks - Saturday Afternoon (Karaoke)", - "id": "gecLU6oycuM" - }, - { - "title": "Jhenรฉ Aiko - Lead The Way (From Raya And The Last Dragon) (Karaoke)", - "id": "Rx5XzqeNBCU" - }, - { - "title": "Olivia Rodrigo - The Rose Song (From High School Musical) (Karaoke)", - "id": "H6OLi5SH57E" - }, - { - "title": "Beach Boys - Kokomo (Karaoke)", - "id": "Nxf3rCfhLQ4" - }, - { - "title": "UB40 - Red Red Wine (Karaoke)", - "id": "ZAdq0IjB7kw" - }, - { - "title": "Bob Dylan - Like A Rolling Stone (Karaoke)", - "id": "Wkj2OOafdOs" - }, - { - "title": "Neil Diamond - September Morn (Karaoke)", - "id": "0FNln2cwQ1M" - }, - { - "title": "Neil Diamond - I Am...I Said (Karaoke)", - "id": "uIhwioslROc" - }, - { - "title": "Neil Diamond - Cracklin' Rosie (Karaoke)", - "id": "S5YUb8NJ5Ig" - }, - { - "title": "Neil Diamond - Sweet Caroline (Karaoke)", - "id": "_FRAFnCAUTk" - }, - { - "title": "Neil Diamond - Forever In Blue Jeans (Karaoke)", - "id": "zWvQBGuUhoI" - }, - { - "title": "The Byrds - Mr. Tambourine Man (Karaoke)", - "id": "TpX-kGR9j4M" - }, - { - "title": "Bob Dylan - Lay Lady Lay (Karaoke)", - "id": "toF_mv1xJO8" - }, - { - "title": "Bob Dylan - The Times They Are A-Changin' (Karaoke)", - "id": "g4Y-UAwHMtY" - }, - { - "title": "Bob Dylan - Knockin' On Heaven's Door (Karaoke)", - "id": "Z1M2_aO4BPM" - }, - { - "title": "Smokey Robinson & The Miracles - Tears Of A Clown (Karaoke)", - "id": "PIkOJooXIPA" - }, - { - "title": "Neil Sedaka - Little Devil (Karaoke)", - "id": "shx4yNU9OEU" - }, - { - "title": "Travis Tritt - The Girl's Gone Wild (Karaoke)", - "id": "hx8Ga9DmfHQ" - }, - { - "title": "Peter Gabriel - Solsbury Hill (Live Version) (Karaoke)", - "id": "1HqChIa6mro" - }, - { - "title": "Rodney Atkins - Angel's Hands (Karaoke)", - "id": "Us1YSGSHFtU" - }, - { - "title": "Martina McBride - There You Are (Karaoke)", - "id": "Aokf4VOqUZg" - }, - { - "title": "Sonya Isaacs - That's What Love Demands (Karaoke)", - "id": "RAAt4wsq9qI" - }, - { - "title": "James Taylor - Fire And Rain (Karaoke)", - "id": "8KZjcim08I4" - }, - { - "title": "Stevie Wonder - Part-time Lover (Karaoke)", - "id": "2ftKa89IKeg" - }, - { - "title": "Kate Bush - Wuthering Heights (Karaoke)", - "id": "g2w-G4WF3SM" - }, - { - "title": "Post Malone feat. 21 Savage - Rockstar (Karaoke)", - "id": "FTmUrpcyUmU" - }, - { - "title": "Post Malone - Wow (Karaoke)", - "id": "mmuW5h2dZMQ" - }, - { - "title": "Pink - 18 Wheeler (Karaoke)", - "id": "mEldeaj58yM" - }, - { - "title": "Lita Ford and Ozzy Osbourne - Close My Eyes Forever (Karaoke)", - "id": "umEqkx-3vVg" - }, - { - "title": "Arctic Monkeys - Why'd You Only Call Me When You're High (Karaoke)", - "id": "FXk2szal-Uk" - }, - { - "title": "Santana and Rob Thomas - Smooth (Karaoke)", - "id": "55Q8eCe-F2k" - }, - { - "title": "Easton Corbin - Yup (Karaoke)", - "id": "rpmEmv06UPo" - }, - { - "title": "Eric Church - Hell Of A View (Karaoke)", - "id": "sqE2ta8rIxk" - }, - { - "title": "Lady Gaga - Judas (Karaoke)", - "id": "pE8HoiB9Bzg" - }, - { - "title": "Dominic Fike - 3 Nights (Karaoke)", - "id": "KLQ0rFcLNYQ" - }, - { - "title": "Amy Winehouse - (There Is) No Greater Love (Karaoke)", - "id": "wip6o_d_pfA" - }, - { - "title": "Spinal Tap - Big Bottom (Karaoke)", - "id": "Gfsn6byY3gU" - }, - { - "title": "Kathryn Hahn - Agatha All Along (From Wanda Vision) (Karaoke)", - "id": "P8OZHQD8Ewg" - }, - { - "title": "Pink - Beautiful Trauma (Karaoke)", - "id": "8ckT0mk_Zs8" - }, - { - "title": "Gryffin Feat. Stanaj - You Remind Me (Karaoke)", - "id": "AGvFoqbhErE" - }, - { - "title": "Carrie Underwood - The Moment Of Truth (From Cobra Kai) (Karaoke)", - "id": "kSCE2LYkLIc" - }, - { - "title": "Drifters - Saturday Night At The Movies (Karaoke)", - "id": "HaRkOG5Pxqc" - }, - { - "title": "Sinitta - Right Back Where We Started From (Karaoke)", - "id": "KXqHVrwGjuQ" - }, - { - "title": "Mamas and The Papas - Go Where You Wanna Go (Karaoke)", - "id": "Bt_XsMGntT0" - }, - { - "title": "Tim McGraw - Indian Outlaw (Karaoke)", - "id": "TSAKVvXkS-U" - }, - { - "title": "Andrew Jannakos - Gone Too Soon (Karaoke)", - "id": "KCqLXniL4AA" - }, - { - "title": "Dolly Parton - Love Is Like A Butterfly (Karaoke)", - "id": "bnQ51Co3z2A" - }, - { - "title": "Wanda Jackson - Let's Have A Party (Karaoke)", - "id": "UZFl8uFcMTo" - }, - { - "title": "Paul McCartney - Maybe I'm Amazed (Karaoke)", - "id": "ypFrFStW2ho" - }, - { - "title": "Peter Gabriel - Big Time (Karaoke)", - "id": "zEBsOXkLnys" - }, - { - "title": "Madness - House Of Fun (Karaoke)", - "id": "VNqYKB09I6I" - }, - { - "title": "Madness - Our House (Karaoke)", - "id": "Crj3yljK17E" - }, - { - "title": "Prentenders - Brass In Pocket (Karaoke)", - "id": "j0PUnT2SEtE" - }, - { - "title": "Joe Walsh - Rocky Mountain Way (Karaoke)", - "id": "7junArqISKo" - }, - { - "title": "Joe Walsh - All Night Long (Karaoke)", - "id": "utSGISWPSMY" - }, - { - "title": "Deep Purple - Smoke On The Water (Karaoke)", - "id": "lgguNUEuGA0" - }, - { - "title": "Stevie Wonder - Superstition (Karaoke)", - "id": "nTEfvXlemyE" - }, - { - "title": "Ben E. King - Stand By Me (Karaoke)", - "id": "WF5yVOPlukU" - }, - { - "title": "Simply Red - Holding Back The Years (Karaoke)", - "id": "b50wOUNj3do" - }, - { - "title": "D.R.A.M. feat. Lil Yachty - Broccoli (Karaoke)", - "id": "0Nkp8lk62YQ" - }, - { - "title": "Pink - Eventually (Karaoke)", - "id": "gbJ7pFbuj4c" - }, - { - "title": "Reba McEntire - Till You Love Me (Karaoke)", - "id": "1r7Hg1OQO1E" - }, - { - "title": "Luke Bryan - Fast (Karaoke)", - "id": "yeH4Nyx0By4" - }, - { - "title": "Neil Sedaka - Happy Birthday Sweet Sixteen (Karaoke)", - "id": "dp5VzhlX6js" - }, - { - "title": "Cole Swindell - Hope You Get Lonely Tonight (Karaoke)", - "id": "vkfP5IYdd20" - }, - { - "title": "Vanessa Williams - Save The Best For Last (Karaoke)", - "id": "IAIJ5p9OTSE" - }, - { - "title": "Montgomery Gentry - She Don't Tell Me To (Karaoke)", - "id": "Gmey0wh953c" - }, - { - "title": "Matchbox Twenty - Long Day (Karaoke)", - "id": "SGWVL7tr_XI" - }, - { - "title": "Trace Adkins - This Ain't No Love Song (Karaoke)", - "id": "RFrcyhJRW_I" - }, - { - "title": "Josh Turner - No Rush (Karaoke)", - "id": "u6bxBDAGfX8" - }, - { - "title": "Neil Sedaka - Calendar Girl (Karaoke)", - "id": "gOJ2xu4uu2U" - }, - { - "title": "Five Finger Death Punch - Coming Down (Karaoke)", - "id": "EEcqXxXcHYo" - }, - { - "title": "Cinderella (Movie) - A Dream Is A Wish Your Heart Makes (Karaoke)", - "id": "8kNR3wuwLPA" - }, - { - "title": "Doja Cat - Need To Know (Karaoke)", - "id": "wrHi60gv2LE" - }, - { - "title": "Lou Reed - Walk On The Wild Side (Karaoke)", - "id": "tjAuKsLiPOs" - }, - { - "title": "Dolly Parton - Honky Tonk Songs (Karaoke)", - "id": "bgUwfpZGKQs" - }, - { - "title": "Matchbox Twenty - Downfall (Karaoke)", - "id": "RdmcbPPjyG8" - }, - { - "title": "Matchbox Twenty - Bright Lights (Karaoke Guide Vocal)", - "id": "kJBmLwTU6rU" - }, - { - "title": "Matchbox Twenty - Bent (Karaoke)", - "id": "CWq9cGu2Dtg" - }, - { - "title": "Matchbox Twenty - If You're Gone (Karaoke)", - "id": "Ubze31Y2l0s" - }, - { - "title": "Matchbox Twenty - Unwell (Karaoke Guide Vocal)", - "id": "cimTEu8y5pQ" - }, - { - "title": "Dolly Parton - More Where That Came From (Karaoke)", - "id": "kj-m3j35N_w" - }, - { - "title": "Dolly Parton - Me And Little Andy (Karaoke)", - "id": "0lNP4CRJfh4" - }, - { - "title": "Dolly Parton - Light Of A Clear Blue Morning (Karaoke)", - "id": "C1C7UWYXokk" - }, - { - "title": "Dolly Parton - It's All Wrong, But It's All Right (Karaoke)", - "id": "7XEcx-X7bE0" - }, - { - "title": "Dolly Parton - Hello God (Karaoke)", - "id": "lmf0i_ItZVw" - }, - { - "title": "Dolly Parton - Dagger Through The Heart (Karaoke)", - "id": "c_PCf4xixbc" - }, - { - "title": "Stevie Wonder - You Are The Sunshine Of My Life (Karaoke)", - "id": "q56BJIFf6OA" - }, - { - "title": "Rodney Crowell - Fate's Right Hand (Karaoke)", - "id": "_fDmblPkUVc" - }, - { - "title": "Rodney Crowell - Earthbound (Karaoke)", - "id": "y_0Rbb8JKmg" - }, - { - "title": "Paula Abdul - Rush, Rush (Karaoke)", - "id": "oMZ0a7gTg-g" - }, - { - "title": "Shinedown - Save Me (Karaoke)", - "id": "aWhottgp_sw" - }, - { - "title": "Shinedown - 45 (Karaoke)", - "id": "AO1JXfRZZ-E" - }, - { - "title": "Shinedown - Fly From The Inside (Karaoke)", - "id": "IWBnNYLBPmU" - }, - { - "title": "R. E. M. - Imitation Of Life (Karaoke)", - "id": "oGhIkophxqM" - }, - { - "title": "R. E. M. - Strange Currencies (Karaoke)", - "id": "Hjom_MRcB8s" - }, - { - "title": "Sherrie' Austin - Jolene (Karaoke)", - "id": "AXWlHxIcRkI" - }, - { - "title": "Dolly Parton - My Tennessee Mountain Home (Karaoke)", - "id": "3F9NfGlMRsE" - }, - { - "title": "Tim McGraw - She's My Kind Of Rain (Karaoke)", - "id": "cqYCoKKzCt0" - }, - { - "title": "Asleep At The Wheel - Route 66 (Karaoke)", - "id": "9rHlETR24Gc" - }, - { - "title": "Sheryl Crow - Tomorrow Never Dies (Karaoke)", - "id": "9HBYm5PqDnw" - }, - { - "title": "Britney Spears - Everytime (Karaoke)", - "id": "H2Db4iZIG4s" - }, - { - "title": "Little Mix ftg. Machine Gun Kelly - No More Sad Songs (Karaoke)", - "id": "QSpzn7s84Aw" - }, - { - "title": "Stevie Wonder - Isn't She Lovely (Karaoke)", - "id": "utlU6EETxws" - }, - { - "title": "Stevie Wonder - My Cherie Amour (Karaoke)", - "id": "NtA7auIZ7RA" - }, - { - "title": "Easton Corbin - A Little More Country Than That (Karaoke)", - "id": "le-YVXnSeJo" - }, - { - "title": "Miley Cyrus - Week Without You (Karaoke)", - "id": "5zM_rQ51rbI" - }, - { - "title": "Dierks Bentley - What Was I Thinkin' (Karaoke)", - "id": "0NH1g7KTJ1I" - }, - { - "title": "Fifth Harmony - Suga Mama (Karaoke)", - "id": "EFq5l8zt3ac" - }, - { - "title": "Lucy Hale - Lie A Little Better (Karaoke)", - "id": "nW2l89oNoto" - }, - { - "title": "Jewel - This Way (Karaoke)", - "id": "oNtgp1Av8P4" - }, - { - "title": "Jewel - Break Me (Karaoke)", - "id": "_SkmaKjy6Lw" - }, - { - "title": "A Perfect Circle - Disillusioned (Karaoke)", - "id": "9P1jwwIaqWs" - }, - { - "title": "Highly Suspect - Little One (Karaoke)", - "id": "UTmB4DFmcvE" - }, - { - "title": "Sabrina Carpenter - Darling I'm A Mess", - "id": "lpDw1mMJh2c" - }, - { - "title": "Sheppard - Coming Home (Karaoke)", - "id": "PXD--otoSsQ" - }, - { - "title": "Vigiland - Be Your Friend (Karaoke)", - "id": "yFciu4DYQNo" - }, - { - "title": "Whitney Houston - Where You Are (Karaoke)", - "id": "k4arRT7fvUQ" - }, - { - "title": "Selena Gomez & The Scene - Naturally (Karaoke)", - "id": "OYS4F2UySSg" - }, - { - "title": "John Michael Montgomery - Nothing Catches Jesus By Surprise (Karaoke)", - "id": "D_6ElctzYwA" - }, - { - "title": "Mike Posner - Please Don't Go (Karaoke)", - "id": "aRSwpRTL5u0" - }, - { - "title": "Josh Turner - Would You Go With Me (Karaoke)", - "id": "EYN8n95y65Y" - }, - { - "title": "Lee Roy Parnell - When A Woman Loves A Man (Karaoke)", - "id": "p7BTWUY7tzQ" - }, - { - "title": "Lisa Marie Presley - Lights Out (Karaoke)", - "id": "c0cAIFJ0QiA" - }, - { - "title": "Maroon 5 - Love Somebody (Karaoke)", - "id": "tErgyw61LCo" - }, - { - "title": "Jennifer Lopez - Do It Well (Karaoke)", - "id": "9-8nXp7G9Uo" - }, - { - "title": "Rodney Crowell - Say You Love Me (Karaoke)", - "id": "VR6Vo4DpTfk" - }, - { - "title": "Notorious B. I. G. - Big Poppa (Karaoke)", - "id": "MyDbUyG8J70" - }, - { - "title": "Ray Price - Touch My Heart (Karaoke)", - "id": "mZX4gPHVqfo" - }, - { - "title": "Kate Bush - Running Up That Hill (Karaoke)", - "id": "v_fqYjOrQ3s" - }, - { - "title": "Avril Lavigne - Smile (Karaoke)", - "id": "Cyu9XOVTSPI" - }, - { - "title": "Dave Stewart and Martina McBride - All Messed Up (Karaoke)", - "id": "4xb7DoPuv44" - }, - { - "title": "Jaz Ellington - Ordinary People (Karaoke)", - "id": "dZ_jATUGU_Q" - }, - { - "title": "Ultravox - Reap The Wild Wind (Karaoke)", - "id": "s08bNTBlV1k" - }, - { - "title": "Lana Del Rey - Young and Beautiful (Karaoke)", - "id": "KZK0eNisaQs" - }, - { - "title": "Billy Currington ftg. Jessie James Decker - Good Night (Karaoke)", - "id": "OwINduvMa6E" - }, - { - "title": "Kiss - Crazy Crazy Nights (Karaoke EZ Sing)", - "id": "rYAmAuj2LmI" - }, - { - "title": "Amy Shark - All Loved Up (Karaoke)", - "id": "2sqWpJC5FvI" - }, - { - "title": "Lorde - Royals (Karaoke)", - "id": "4G8Ym8DiGDw" - }, - { - "title": "Whitney Houston โ€“ (Waiting To Exhale) - Why Does It Hurt So Bad ? (Karaoke EZ Sing)", - "id": "H7ywrNJb8HY" - }, - { - "title": "Joni Mitchell - You Turn Me On, Iโ€™m A Radio (Karaoke EZ Sing)", - "id": "SGl39dITfwc" - }, - { - "title": "Joni Mitchell - Chelsea Morning (Karaoke EZ Sing)", - "id": "mtt0yPRTFK8" - }, - { - "title": "The Little Mermaid - Les Poissons (Karaoke)", - "id": "EPz0o7SHpSU" - }, - { - "title": "Bobby Bare - Ride Me Down Easy (Karaoke)", - "id": "eEo4-o1Zgok" - }, - { - "title": "The Blues Brothers - Blues Don't Bother Me (Karaoke)", - "id": "rT_m63BshB8" - }, - { - "title": "Estelle ftg. Nas - Fall In Love (Karaoke)", - "id": "cM0ikPyfE2c" - }, - { - "title": "Susan Ashton - Closer (Karaoke)", - "id": "22TcksJzB1U" - }, - { - "title": "Dolly Parton - Downtown (Karaoke)", - "id": "8Jb2E_zG4XA" - }, - { - "title": "George Strait - Give It Away (Karaoke Guide Vocal)", - "id": "FVOXZmJdwsY" - }, - { - "title": "Martina McBride - Wild Angels (Karaoke)", - "id": "ajh64EffwW4" - }, - { - "title": "Brooks & Dunn - Play Something Country (Karaoke)", - "id": "VkyKQvKwLiA" - }, - { - "title": "Elvis Presley - Long Tall Sally/Whole Lotta Shakin' going On (Karaoke)", - "id": "RAhE4KY6ZhI" - }, - { - "title": "Elvis Presley - I'm So Lonesome I Could Cry (Karaoke)", - "id": "V37PY01QtfI" - }, - { - "title": "Elvis Presley - Blue Suede Shoes (Karaoke)", - "id": "_6BAhiabwsA" - }, - { - "title": "Elvis Presley - Heartbreak Hotel (Karaoke)", - "id": "LX-yZ6TDL1k" - }, - { - "title": "Smokie - Oh Carol (Karaoke EZ Sing)", - "id": "rp2mbkpvx_Q" - }, - { - "title": "The 1975 - Girls (Karaoke)", - "id": "05GRr0MwAYY" - }, - { - "title": "Meghan Trainor - No (Karaoke)", - "id": "cus1WpQzk54" - }, - { - "title": "Joni Mitchell - Woodstock (Karaoke)", - "id": "7zqyhnuxkoo" - }, - { - "title": "Mary Poppins - Practically Perfect (Karaoke)", - "id": "xNesQBT1MY8" - }, - { - "title": "Jamie N. Commons - Lead Me Home (From Walking Dead) (Karaoke EZ Sing)", - "id": "IEMb_Km6Hp4" - }, - { - "title": "Pat Benatar - Sex As A Weapon (Karaoke)", - "id": "FrAfb08ZuBE" - }, - { - "title": "The Monkees - (I'm Not Your) Steppin' Stone (Karaoke)", - "id": "HDvxhrGWPM4" - }, - { - "title": "The Monkees - (Theme From) The Monkees TV Show (Karaoke)", - "id": "taD-DKeTwkE" - }, - { - "title": "Jake Owen - Beachin' (Karaoke)", - "id": "EqvVrGcel1E" - }, - { - "title": "Maroon 5 - Animals (Karaoke)", - "id": "167ws58uAiY" - }, - { - "title": "The 1975 - The City (Karaoke)", - "id": "sOB04dWRzQU" - }, - { - "title": "The 1975 - Settle Down (Karaoke)", - "id": "z47-SE5fD3Q" - }, - { - "title": "The 1975 - Robbers (Karaoke)", - "id": "zFs5rckQYU0" - }, - { - "title": "Dolly Parton - The Salt In My Tears (Karaoke)", - "id": "JGzzhLwXrdQ" - }, - { - "title": "Dolly Parton - Silver Dagger (Karaoke)", - "id": "ynYv553WOoM" - }, - { - "title": "Dolly Parton - Shinola (Karaoke)", - "id": "ViDpBNAVqHA" - }, - { - "title": "Dolly Parton - The Seeker (Karaoke)", - "id": "RddN3Wc9NEM" - }, - { - "title": "Dolly Parton - Two Doors Down (Karaoke)", - "id": "IOxnoN85bdg" - }, - { - "title": "Dolly Parton - The Bargain Store (Karaoke)", - "id": "yn53HKAZKUs" - }, - { - "title": "Dolly Parton - Applejack (Karaoke)", - "id": "e3_sV_tJ4Rk" - }, - { - "title": "Dolly Parton and Billy Ray Cyrus - Romeo (Karaoke)", - "id": "o42EkbkCZp4" - }, - { - "title": "Dolly Parton - To Daddy (Karaoke)", - "id": "dXaTeye7kic" - }, - { - "title": "Dolly Parton and Ricky Van Shelton - Rockin' Years (Karaoke)", - "id": "ly6LUDZT5d8" - }, - { - "title": "The Pretenders - Back On The Chain Gang (Karaoke EZ Sing)", - "id": "SUz_ZLfWvJs" - }, - { - "title": "Blues Brothers - Gimme Some Lovin' (Karaoke)", - "id": "LpqT2W5r6Ws" - }, - { - "title": "Screaming Trees - Nearly Lost You (Karaoke)", - "id": "eFRbnBh0l7c" - }, - { - "title": "The Cadillacs - Speedoo (Karaoke)", - "id": "uCF-aPCWunM" - }, - { - "title": "Psychedelic Furs - Love My Way (Karaoke EZ Sing)", - "id": "Mi3x5s-cpGo" - }, - { - "title": "The Kinks - Come Dancing (Karaoke)", - "id": "N10AZ7MD5Vg" - }, - { - "title": "Billy Squier - My Kinda Lover (Karaoke)", - "id": "TyoCxsKk8cA" - }, - { - "title": "Squeeze - Tempted (Karaoke)", - "id": "OIFRqpsjwGQ" - }, - { - "title": "Joni Mitchell - Both Sides Now (Karaoke EZ Sing)", - "id": "EohpzLH1yTA" - }, - { - "title": "Leonard Cohen - Bird On The Wire (Karaoke)", - "id": "OEmXEieQuWM" - }, - { - "title": "Leonard Cohen - Everybody Knows (Karaoke)", - "id": "hFYouxYuN4Q" - }, - { - "title": "Florida Georgia Line and Luke Bryan - This Is How We Roll (Karaoke)", - "id": "fbLwL7LObwk" - }, - { - "title": "Whitney Houston - I Will Always Love You (Karaoke)", - "id": "Oq7omcB7NzU" - }, - { - "title": "Macklemore & Ryan Lewis ft. Ray Dalton - Can't Hold Us (Karaoke)", - "id": "MO-MMqXx-10" - }, - { - "title": "Pitbull ftg. John Ryan - Fireball (Karaoke)", - "id": "HclNHp1HVvI" - }, - { - "title": "George Strait - River Of Love (Karaoke)", - "id": "hun7f1SXmgA" - }, - { - "title": "Fifth Harmony ftg. Meghan Trainor - Brave Honest Beautiful (Karaoke EZ Sing)", - "id": "8s1TAbRNkUA" - }, - { - "title": "Taio Cruz - Dynamite (Karaoke)", - "id": "EEV1x-fJr6o" - }, - { - "title": "The 1975 - Chocolate (Karaoke)", - "id": "gVzQ-WclSMs" - }, - { - "title": "Britney Spears - Perfume (Karaoke)", - "id": "mtM65QsSdqs" - }, - { - "title": "Ellie Goulding - Burn (Karaoke)", - "id": "HPM6uh1-g8E" - }, - { - "title": "OneRepublic - I Lived (Karaoke)", - "id": "7PglunWhmbk" - }, - { - "title": "Sheryl Crow - Leaving Las Vegas (Karaoke)", - "id": "0OYNOcOcMt4" - }, - { - "title": "Neil Sedaka - Breaking Up Is Hard To Do (Karaoke)", - "id": "VLyTnWsID88" - }, - { - "title": "Dolly Parton - Eagle When She Flies (Karaoke)", - "id": "9PlkKMoViuU" - }, - { - "title": "Dolly Parton - Applejack (Karaoke)", - "id": "MzoS0fLWJ3Q" - }, - { - "title": "Dolly Parton - Jolene (Karaoke)", - "id": "cUzU4X1Uods" - }, - { - "title": "Dolly Parton & Vince Gill - I Will Always Love You (Karaoke)", - "id": "KnXgjzAJeDw" - }, - { - "title": "Dolly Parton - 9 To 5 (Karaoke)", - "id": "NtFnv_v6SyY" - }, - { - "title": "Zac Brown Band ftg. Alan Jackson - As She's Walking Away (Karaoke)", - "id": "6cR7ZCUqalQ" - }, - { - "title": "Meghan Trainor - Bang Dem Sticks (Karaoke)", - "id": "CvS_kTbrdu8" - }, - { - "title": "Taio Cruz ftg. Ke$ha - Dirty Picture (Karaoke)", - "id": "f_Dvmzc_Hg4" - }, - { - "title": "George Strait - Love Is Everything (Karaoke)", - "id": "_urloJOVit4" - }, - { - "title": "Lee Brice - Love Like Crazy (Karaoke)", - "id": "Wo1Q6FUr6s8" - }, - { - "title": "Waylon Jennings - I've Always Been Crazy (Karaoke)", - "id": "48d1qgXFE5w" - }, - { - "title": "Waylon Jennings - Shine (Karaoke)", - "id": "nJD2pvWQoiQ" - }, - { - "title": "Miley Cyrus - Wrecking Ball (Karaoke)", - "id": "RQEbwJyAzAA" - }, - { - "title": "Zayn ftg. Sia - Dusk Till Dawn (Karaoke)", - "id": "13Fb1OcYkbM" - }, - { - "title": "OneRepublic - Love Runs Out (Karaoke)", - "id": "Z_FOa9tnlJ0" - }, - { - "title": "Loverboy - Working For The Weekend (Karaoke)", - "id": "2_fJ0cbb_BU" - }, - { - "title": "Fleetwood Mac - Little Lies (Karaoke)", - "id": "A0ZK-ZgwyME" - }, - { - "title": "Pam Tillis - Mi Vida Loca (Karaoke)", - "id": "WujvzE9Y3N4" - }, - { - "title": "Montgomery Gentry - If You Ever Stop Loving Me (Karaoke)", - "id": "gp5EDxhXurU" - }, - { - "title": "Lauryn Hill - Ex-Factor (Karaoke)", - "id": "LybCLp1Lm_Q" - }, - { - "title": "Montgomery Gentry - Roll With Me (Karaoke)", - "id": "vsmJGmJDYq8" - }, - { - "title": "Billy Squier - Everybody Wants You (Karaoke)", - "id": "avYMPdbwOak" - }, - { - "title": "Leon Bridges - Coming Home (Karaoke)", - "id": "cqNIKoOxzj4" - }, - { - "title": "Neon Trees - Text Me In The Morning (Karaoke)", - "id": "O5jk5RZlCpY" - }, - { - "title": "Rick James - Give It To Me Baby (Karaoke)", - "id": "o0frXu2Kibo" - }, - { - "title": "Exile - Kiss You All Over (Karaoke)", - "id": "WNilHtoSgx4" - }, - { - "title": "Mary Chapin Carpenter - Grow Old With Me (Karaoke EZ Sing)", - "id": "Uz1izO88Fp0" - }, - { - "title": "Selena Gomez - Kill'Em With Kindness (Karaoke EZ Sing)", - "id": "W1WIO4niYD4" - }, - { - "title": "Blake Shelton - She's Got A Way With Words (Karaoke EZ Sing)", - "id": "cDrGNGv2EsA" - }, - { - "title": "Dua Lipa - New Love (Karaoke)", - "id": "nh7YV2ad-h8" - }, - { - "title": "Lady Antebellum - I Was Here (Karaoke)", - "id": "LLfs1DuNAvo" - }, - { - "title": "Selena Gomez & The Scene - Love You Like A Love Song (Karaoke EZ Sing)", - "id": "zQqfo4Bq-a4" - }, - { - "title": "Florida Georgia Line ftg. Backstreet Boys - God, Your Momma And Me (Karaoke EZ Sing)", - "id": "w3VEe6W3I8I" - }, - { - "title": "John Sebastian - Welcome Back (Karaoke)", - "id": "3Wc-NQV40n8" - }, - { - "title": "Nat King Cole - Those Lazy-Hazy-Crazy Days Of Summer (Karaoke)", - "id": "VfQOLJvoZlo" - }, - { - "title": "The Byrds - Turn! Turn! Turn! (Karaoke)", - "id": "y3SXnV1f10g" - }, - { - "title": "Joe Diffie - Third Rock From The Sun (Karaoke)", - "id": "ZQ9bhuaoUHs" - }, - { - "title": "Amy Shark - I Said Hi (Karaoke EZ Sing)", - "id": "O2rksEJt3as" - }, - { - "title": "Machine Gun Kelly - Bloody Valentine (Karaoke)", - "id": "TX9qATLT9os" - }, - { - "title": "Tom Jones - Somethn' 'Bout You Baby I Like (Karaoke)", - "id": "dSbJzkuhqnU" - }, - { - "title": "Genesis - That's All (Karaoke)", - "id": "nZNt-1Ts4o8" - }, - { - "title": "Billy Squier - Rock Me Tonite (Karaoke)", - "id": "WnuWyFvPsDg" - }, - { - "title": "Cheap Trick - Dream Police (Karaoke)", - "id": "seXQlTUFcwY" - }, - { - "title": "Judy Kuhn, Pocahontas - Just Around The Riverbend (Karaoke)", - "id": "l4JwIM-1tS0" - }, - { - "title": "Will Young - I Just Want A Lover (Karaoke)", - "id": "Uh8bVR-pK20" - }, - { - "title": "Lana Del Rey - Hope Is A Dangerous Thing For A Woman Like Me To Have - But I Have It (Karaoke)", - "id": "aMZh0Fn5nPk" - }, - { - "title": "Alicia Keys - If I Was Your Woman (Karaoke) (Unplugged version)", - "id": "pnlZ8aOdlHM" - }, - { - "title": "Michael Buble - For Once In My Life (Karaoke)", - "id": "rbbWUMvsAYk" - }, - { - "title": "Carrie Underwood - The More Boys I Meet (Karaoke)", - "id": "pPt1gqW0zp8" - }, - { - "title": "Stevie Nicks - Maybe Love Will Change Your Mind (Karaoke)", - "id": "Ht-qE-B-iSM" - }, - { - "title": "Stevie Nicks - Every Day (Karaoke)", - "id": "kGp4o-2PuHM" - }, - { - "title": "Smokey Robinson - Being With You (Karaoke)", - "id": "UeHfib44FhU" - }, - { - "title": "Genesis - In Too Deep (Karaoke)", - "id": "vgqR6bqN7mo" - }, - { - "title": "The Highwomen - Crowded Table (Karaoke EZ Sing)", - "id": "h6u4QNhmUhQ" - }, - { - "title": "Molly Hatchet - Bounty Hunter (Karaoke)", - "id": "3vh_Gj5WBN0" - }, - { - "title": "Molly Hatchet - Whiskey Man (Karaoke EZ Sing)", - "id": "TxecnBsIhLQ" - }, - { - "title": "Pixies - Here Comes Your Man (Karaoke)", - "id": "1p2Hdp8tmqU" - }, - { - "title": "Elvie Shane - My Boy (Karaoke)", - "id": "tmkBFo5wH5c" - }, - { - "title": "Paula Abdul - Straight Up (Karaoke EZ Sing)", - "id": "8Yv_vqZL-NQ" - }, - { - "title": "Berlin - The Metro (Karaoke)", - "id": "FpBxS8Vit-g" - }, - { - "title": "The Highwomen - Crowded Table (Karaoke Guide Vocal)", - "id": "cbGcCkUWi30" - }, - { - "title": "Edward Sharpe & The Magnetic Zeros - Home (Karaoke)", - "id": "sjE_W0uGwy0" - }, - { - "title": "David Nail - Whatever She's Got (Karaoke)", - "id": "8ZwEPwWuq3g" - }, - { - "title": "American Authors - Best Day Of My Life (Karaoke)", - "id": "8HPkBjfsrRU" - }, - { - "title": "Imagine Dragons - Wrecked (Karaoke)", - "id": "97P8v8er5jE" - }, - { - "title": "Tim McGraw and Faith Hill - Meanwhile Back At Mama's (Karaoke)", - "id": "MqugvkM8LEM" - }, - { - "title": "Keith Anderson - Sunday Morning In America (Karaoke)", - "id": "rf4iturJ0N4" - }, - { - "title": "Phil Vassar - American Child (Karaoke)", - "id": "iShAcpys-Zo" - }, - { - "title": "Mark Chesnutt - I Want My Baby Back (Karaoke)", - "id": "2PWolKY60ew" - }, - { - "title": "Reba McEntire - When Love Gets A Hold Of You (Karaoke)", - "id": "GAvoJEmawSQ" - }, - { - "title": "One Republic - Stop And Stare (Karaoke)", - "id": "l3azyDjxQmY" - }, - { - "title": "Huey Lewis And The News - Heart And Soul (Karaoke)", - "id": "-Omdyvrf97g" - }, - { - "title": "Chad Valley - Shell Suits (Karaoke)", - "id": "cg0wvOAnuWg" - }, - { - "title": "Zac Brown Band - All Alright (Karaoke)", - "id": "6KX6J5VKaiQ" - }, - { - "title": "Dixie Chicks - Once You've Loved Somebody (Karaoke)", - "id": "5Uf7cJtqNbA" - }, - { - "title": "Hannah Kerr - Warrior (Karaoke)", - "id": "XkeCozW34xY" - }, - { - "title": "Billie Eilish - Happier Than Ever (Karaoke)", - "id": "YoqPeCIgfqU" - }, - { - "title": "Eric Church - Heart On Fire (Karaoke)", - "id": "8HlhQL-bTL4" - }, - { - "title": "Zac Brown Band - Same Boat (Karaoke)", - "id": "O9w7aRsaZEk" - }, - { - "title": "The Outfield - Your Love (Karaoke)", - "id": "RPCpTCR4JSo" - }, - { - "title": "Cheap Trick - I Want You To Want Me (Karaoke)", - "id": "zb_vnoLIx7A" - }, - { - "title": "Bay City Rollers - Bye Bye Baby (Karaoke)", - "id": "rXF4lBb0md8" - }, - { - "title": "Brad Paisley - Beat This Summer (Karaoke)", - "id": "ENSVI0jkpko" - }, - { - "title": "Ernest Tubb - Filipino Baby (Karaoke)", - "id": "_fldMEqAXdg" - }, - { - "title": "Crystal Gayle - Cry (Karaoke)", - "id": "cwFxfQfSgRk" - }, - { - "title": "Calum Scott - You Are The Reason (Karaoke EZ Sing)", - "id": "k6Z7hrZJdGs" - }, - { - "title": "Spinal Tap - Tonight Iโ€™m Gonna Rock You Tonight (Karaoke)", - "id": "PQBHMZCQPR0" - }, - { - "title": "Joni Mitchell - Help Me (Karaoke)", - "id": "nStOeGyjb20" - }, - { - "title": "Kotomi and Ryan Elder - Don't Look Back (Karaoke)", - "id": "Vl9i9ERRidg" - }, - { - "title": "Logan Brill - I Wish You Loved Me (Karaoke EZ Sing)", - "id": "4KaSCM_I8BU" - }, - { - "title": "Cheap Trick - I Want You To Want Me (Karaoke Guide Vocal)", - "id": "wHk7aRjjlBo" - }, - { - "title": "Rise Against - I Don't Want To Be Here Anymore (Karaoke)", - "id": "bxez4nZ0Y80" - }, - { - "title": "Tina Turner - The Best (Karaoke)", - "id": "hi6iASB2grk" - }, - { - "title": "Johnny Cash - Wreck Of The Old '97 (Karaoke)", - "id": "UDytdafjqjc" - }, - { - "title": "Jimmie Allen & Brad Paisley - Freedom Was A Highway (Karaoke)", - "id": "7w4XKcgerT0" - }, - { - "title": "Blues Brothers - Shake A Tail Feather (Karaoke)", - "id": "NMP1T12_2sU" - }, - { - "title": "Parmalee with Blanco Brown - Just The Way (Karaoke)", - "id": "wP_p-Peb6C4" - }, - { - "title": "Iggy Azalea ftg. Charli XCX - Fancy (Karaoke)", - "id": "YnrJnfmxPEQ" - }, - { - "title": "Lord Huron - The Night We Met (Karaoke)", - "id": "U4k4wRTuebc" - }, - { - "title": "Bazzi - Myself (Karaoke)", - "id": "KdhKKzhNdO4" - }, - { - "title": "Dave Clark Five - Can't You See That She's Mine (Karaoke)", - "id": "CyKEJ0RH4ag" - }, - { - "title": "Herman's Hermits - I'm Into Something Good (Karaoke)", - "id": "D2P9w0li-b4" - }, - { - "title": "Cher Lloyd ftg. Astro - Want U Back (Karaoke)", - "id": "Rao6zIig8Oo" - }, - { - "title": "Standard - Anniversary Song (Karaoke)", - "id": "tjnnKwwRvbY" - }, - { - "title": "Genesis - Throwing It All Away (Karaoke)", - "id": "JMB6bBjtYzU" - }, - { - "title": "Jewel - Down So Long (Karaoke EZ Sing)", - "id": "pdZeUbPBkYU" - }, - { - "title": "Jewel - You Were Meant For Me (Karaoke EZ Sing)", - "id": "c0kJPF2VU0E" - }, - { - "title": "Marshmello - Shockwave (Karaoke)", - "id": "7Navs9oPJPc" - }, - { - "title": "Kim Dracula - Paparazzi (Karaoke)", - "id": "nnd71mq7ln0" - }, - { - "title": "Marilyn Manson - God's Gonna Cut You Down (Karaoke)", - "id": "LSaDm1yZSS8" - }, - { - "title": "Kygo and Rita Ora - Carry On (Karaoke)", - "id": "o1szE86jJAI" - }, - { - "title": "Freya Ridings - You Mean The World To Me (Karaoke)", - "id": "OVRz1ajJwCY" - }, - { - "title": "Charly McClain - Who's Cheatin' Who (Karaoke)", - "id": "31inNgCkgBE" - }, - { - "title": "Tame Impala - New Person, Same Old Mistakes (Karaoke)", - "id": "ee5lnnansQI" - }, - { - "title": "Genesis - Land Of Confusion (Karaoke)", - "id": "iSzZ3L7yXB0" - }, - { - "title": "Morgan Wallen - Quittin' Time (Karaoke EZ Sing)", - "id": "mJzPIxhl1gs" - }, - { - "title": "Tiesto with Jonas Blue and Rita Ora - Ritual (Karaoke)", - "id": "AJBRsTYD7JE" - }, - { - "title": "Tame Impala - Breathe Deeper (Karaoke)", - "id": "C5vOCEVaREc" - }, - { - "title": "Nat King Cole - A Blossom Fell (Karaoke)", - "id": "bqz5DVPic9Q" - }, - { - "title": "Michael Buble - The Way You Look Tonight (Karaoke)", - "id": "sfkRC5twVNE" - }, - { - "title": "Jewel - Foolish Games (Karaoke EZ Sing)", - "id": "Lu3pld9ZCLM" - }, - { - "title": "Electric Light Orchestra - From Out Of Nowhere (Karaoke)", - "id": "XYvIn1HJJv0" - }, - { - "title": "Tame Impala - The Less I Know The Better (Karaoke)", - "id": "RgGHsZLq7hI" - }, - { - "title": "Breland feat Keith Urban - Throw It Back (Duet Version) (Karaoke EZ Sing)", - "id": "sjQc10SJPc8" - }, - { - "title": "Breland feat Keith Urban - Throw It Back (Karaoke)", - "id": "KshvVVmWY4I" - }, - { - "title": "Scotty McCreery - You Time (Karaoke)", - "id": "TZaUwvA5HYQ" - }, - { - "title": "Kelly Clarkson - Invincible (Karaoke)", - "id": "ukEyqejcEqM" - }, - { - "title": "Mabel - Mad Love (Karaoke)", - "id": "5X0fDZF3Fg0" - }, - { - "title": "Van Zant - Help Somebody (Karaoke)", - "id": "qxMkgju-vlg" - }, - { - "title": "Tiesto and Mabel - God Is A Dancer (Karaoke)", - "id": "rAH5T0B-Fn4" - }, - { - "title": "Paul Overstreet - Daddy's Come Around (Karaoke)", - "id": "8HjzIs3UhoQ" - }, - { - "title": "Brad Paisley - The Mona Lisa (Karaoke)", - "id": "AxrKlU5_sD0" - }, - { - "title": "Eddie Fisher - Oh! My Pa-Pa (Karaoke)", - "id": "Nbadt3_Y8pE" - }, - { - "title": "Sublime - Santeria (Karaoke EZ Sing)", - "id": "q56Oor-pJM8" - }, - { - "title": "The Karaoke Show - Episode 5 - Classic Country Part 2", - "id": "8rcx_NRCUXQ" - }, - { - "title": "George Strait - Living And Living Well (Karaoke)", - "id": "gAimaJhxoSU" - }, - { - "title": "George Jones - A Good Year For The Roses (Karaoke)", - "id": "qfhi22c9ZWQ" - }, - { - "title": "Bucky Covington - A Different World (Karaoke)", - "id": "rTh7jlay20A" - }, - { - "title": "Rob Thomas - Little Wonders (Karaoke)", - "id": "sxuWwromcrg" - }, - { - "title": "Keith Urban - You Look Good In My Shirt (Karaoke)", - "id": "p4XANhP_a8o" - }, - { - "title": "Bryan Adams, Sting and Rod Stewart - All For Love (Karaoke)", - "id": "YEhHRB2YB4w" - }, - { - "title": "Macklemore & Ryan Lewis ftg. Wanz - Thrift Shop (Karaoke)", - "id": "_aA693BY9bk" - }, - { - "title": "Ritchie Valens - Come On, Let's Go (Karaoke)", - "id": "n7i7E7a5-u0" - }, - { - "title": "Buddy Holly - Listen To Me (Karaoke)", - "id": "ICpa0sfVS1s" - }, - { - "title": "Georgia Middleman - Kick Down The Door (Karaoke)", - "id": "55xWFMtA7Dw" - }, - { - "title": "Brooks & Dunn - You'll Always Be Loved By Me (Karaoke)", - "id": "wvFlsoShf7s" - }, - { - "title": "Rodney Atkins - Cleaning This Gun (Come On In Boy) (Karaoke)", - "id": "9Zb8n59gelw" - }, - { - "title": "Years & Years - Shine (Karaoke)", - "id": "YETuqpTrov8" - }, - { - "title": "Bobby Brown - Every Little Step (Karaoke)", - "id": "9LLZBQgiig0" - }, - { - "title": "Babyface - Every Time I Close My Eyes (Karaoke)", - "id": "hPf4AId8kwg" - }, - { - "title": "Peabo Bryson & Roberta Flack - Tonight I Celebrate My Love For You (Karaoke)", - "id": "OufVFCc3FLM" - }, - { - "title": "John Legend - You & I (Nobody In The World) (Karaoke)", - "id": "AV4-11wiSiA" - }, - { - "title": "The Beatles - Taxman (Karaoke)", - "id": "kZWFsVfmK0Q" - }, - { - "title": "Yungblud and Halsey feat. Travis Barker - 11 Minutes (Duet Version) (Karaoke)", - "id": "WLswv1gf3FY" - }, - { - "title": "Why Don't We - Big Plans (Karaoke)", - "id": "tizybvG_Evk" - }, - { - "title": "Mammoth WVH - Distance (Karaoke)", - "id": "JmOEk-3cOSM" - }, - { - "title": "Khalid - Talk (Karaoke)", - "id": "5ABtw__T6Y0" - }, - { - "title": "Judy Garland - I Can't Give You Anything But Love (Karaoke)", - "id": "fyc2Mc2alEc" - }, - { - "title": "Cherub - Doses and Mimosas (Karaoke)", - "id": "uVeiQSHMBY8" - }, - { - "title": "Why Don't We - Cold In LA (Karaoke)", - "id": "8WQwzyGZff8" - }, - { - "title": "Mabel - Donโ€™t Call Me Up (Karaoke)", - "id": "pML_x7qwRpA" - }, - { - "title": "The Karaoke Show - Episode 4 - Classic Rock", - "id": "FYAMEjW5xac" - }, - { - "title": "Billy Squier - The Stroke (Karaoke)", - "id": "p41ff09jGIA" - }, - { - "title": "Rod Stewart - Unforgettable (Karaoke)", - "id": "QCxsbkV6Kns" - }, - { - "title": "Alan Jackson - 'Tis So Sweet To Trust In Jesus (Karaoke)", - "id": "NFdgLa9Nr_8" - }, - { - "title": "Chris LeDoux - I Believe In America (Karaoke)", - "id": "UTyF9Y8zD-4" - }, - { - "title": "Traditional Irish - The Rose Of Tralee (Karaoke)", - "id": "sunIoDOnN8M" - }, - { - "title": "From Mary Poppins - Supercalifragilisticexpialidocious (Karaoke)", - "id": "4xaVh85UfXE" - }, - { - "title": "Rascal Flatts - Me And My Gang (Karaoke)", - "id": "dzt7oad56AA" - }, - { - "title": "Randy Travis - Heroes And Friends (Karaoke)", - "id": "yEZit--xrwc" - }, - { - "title": "Jolie & The Wanted - I Would (Karaoke)", - "id": "bpMlXvqwYpo" - }, - { - "title": "Timmy Thomas - Why Can't We Live Together (Karaoke)", - "id": "sQDBNoZRLR4" - }, - { - "title": "Gwen McRae - Rockin' Chair (Karaoke)", - "id": "YuwgNrogArY" - }, - { - "title": "Dwight Yoakam - Thinking About Leaving (Karaoke)", - "id": "4Q1qHZnR1Pw" - }, - { - "title": "Brooks & Dunn - It's Getting Better All The Time (Karaoke)", - "id": "oS1L0LueauA" - }, - { - "title": "Brooks & Dunn - God Must Be Busy (Karaoke)", - "id": "Uj9Jpl2nDgI" - }, - { - "title": "Smokey Robinson & The Miracles - Going To A Go-Go (Karaoke)", - "id": "TebQPI9daUo" - }, - { - "title": "Smokey Robinson & The Miracles - Tracks Of My Tears (Karaoke)", - "id": "lNy-Cc4g5Ug" - }, - { - "title": "Smokey Robinson & The Miracles - Shop Around (Karaoke)", - "id": "PEFZ4q7_2ng" - }, - { - "title": "Smokey Robinson & The Miracles - I Second That Emotion (Karaoke)", - "id": "rK9swB9xd5Q" - }, - { - "title": "Four Tops - Standing In The Shadows Of Love (Karaoke)", - "id": "-2Er_zS7So4" - }, - { - "title": "Tammy Wynette & The O'Kanes - Talkin' To Myself Again (Karaoke)", - "id": "PexAjQZbpYU" - }, - { - "title": "Barbara Lewis - Baby, I'm Yours (Karaoke)", - "id": "KX5OeixD0KM" - }, - { - "title": "Faron Young & Margie Singleton - Keeping Up With The Joneses (Karaoke)", - "id": "LA1bKG4k5Ro" - }, - { - "title": "Billy Currington - 23 Degrees And South (Karaoke)", - "id": "0uuhfieiHSE" - }, - { - "title": "Brooks & Dunn - My Heart Is Lost To You (Karaoke)", - "id": "W5Gq-dWLHuU" - }, - { - "title": "Keyshia Cole - Take Me Away (Karaoke)", - "id": "1hmsawbZdK4" - }, - { - "title": "Patriotic - America (My Country Tis Of Thee) (Karaoke)", - "id": "nq0ddfnIG9E" - }, - { - "title": "Boy Howdy - She Can't Love You (Karaoke)", - "id": "tkLEE03qzHA" - }, - { - "title": "Patriotic - This Land Is Your Land (Karaoke)", - "id": "_Cl549GnCU0" - }, - { - "title": "Big Sean ftg. Eminem - No Favors (Karaoke)", - "id": "PXL0O-5K29g" - }, - { - "title": "Standard - You're A Grand Old Flag (Karaoke)", - "id": "juHgJCk5Nr4" - }, - { - "title": "Lana Del Rey - Ride (Karaoke)", - "id": "DOdEymga9pE" - }, - { - "title": "John Berry - I Think About It All The Time (Karaoke)", - "id": "qYYelBYyiKg" - }, - { - "title": "Mahalia Jackson - We Shall Overcome (Karaoke)", - "id": "GgPEB5moXSM" - }, - { - "title": "Counting Crows & Vanessa Carlton - Big Yellow Taxi (Karaoke)", - "id": "94x7IOY2y5U" - }, - { - "title": "Meat Loaf - Rock & Roll Dreams Come Through (Karaoke)", - "id": "Drlw_kWt6Ug" - }, - { - "title": "Meat Loaf - You Took The Words Right Out Of My Mouth (Karaoke)", - "id": "KaXGRyxVMvk" - }, - { - "title": "The Karaoke Show - Episode 3 - Classic Country Hits", - "id": "zAH2QAjXfs4" - }, - { - "title": "Joanna Janet - Seven Little Steps (Karaoke)", - "id": "Jt7qSVUkoQc" - }, - { - "title": "Kelly Rowland - Stole (Karaoke)", - "id": "f8aTM5x_QqY" - }, - { - "title": "Kenny Chesney & Uncle Kracker - When The Sun Goes Down (Karaoke)", - "id": "T0j4iyQJ6ZQ" - }, - { - "title": "Tanya Tucker - Blood Red And Goin' Down (Karaoke)", - "id": "S9Lp4oSO_M4" - }, - { - "title": "Warren Brothers - Hey Mr. President (Karaoke)", - "id": "U3si2UvEV_c" - }, - { - "title": "The Four Tops - Shake Me, Wake Me (When It's Over) (Karaoke)", - "id": "2JJanS-90tQ" - }, - { - "title": "Kenny Chesney - You Save Me (Karaoke)", - "id": "NQ57nXBLqbU" - }, - { - "title": "Gretchen Wilson - You Don't Have To Go Home (Karaoke)", - "id": "h6HX-S-qE84" - }, - { - "title": "Mitch Miller - Yellow Rose Of Texas (Karaoke)", - "id": "GeANZVCzbI4" - }, - { - "title": "Willie Nelson - Forgiving You Was Easy (Karaoke)", - "id": "-6ipn6VtVcA" - }, - { - "title": "Tanya Tucker - Blood Red And Goin' Down (Karaoke Guide Vocal)", - "id": "hvuPqWN2d2w" - }, - { - "title": "Maroon 5 - Won't Go Home Without You (Karaoke)", - "id": "la9KCv_6GcE" - }, - { - "title": "The Elegants - Little Star (Karaoke)", - "id": "N6aejeZPlBU" - }, - { - "title": "The Warren Brothers - Hey Mr. President (Karaoke Guide Vocal)", - "id": "stKmfpaMHLs" - }, - { - "title": "Marvin Gaye - I'll Be Doggone (Karaoke)", - "id": "Kbe5XkMZuSQ" - }, - { - "title": "The Temptations - I Know I'm Losing You (Karaoke)", - "id": "9DcRlusg6x0" - }, - { - "title": "Emmylou Harris - If I Could Only Win Your Love (Karaoke)", - "id": "b6wUQtbhJbU" - }, - { - "title": "George Jones - She Loved A Lot In Her Time (Karaoke)", - "id": "58yXq1YdxCI" - }, - { - "title": "George Jones - When The Last Curtain Falls (Karaoke)", - "id": "_6mOQ8PwhPc" - }, - { - "title": "Porter Wagoner & Dolly Parton - Yours Love (Karaoke)", - "id": "GeKBQV2ZbVM" - }, - { - "title": "Marvin Gaye - Sexual Healing (Karaoke)", - "id": "bymQo6mW-eQ" - }, - { - "title": "The Bellamy Brothers - For All The Wrong Reasons (Karaoke)", - "id": "16ns2NJOBng" - }, - { - "title": "k.d. lang - Three Days (Karaoke)", - "id": "wOVejMOi4KE" - }, - { - "title": "Amber Dotson - I Ain't Your Mama (Karaoke)", - "id": "8s9Nbw97xdw" - }, - { - "title": "James Taylor - Up On The Roof (Karaoke)", - "id": "RssmTs9eBME" - }, - { - "title": "Paula Cole - I Am So Ordinary (Karaoke)", - "id": "mtBsBCz2m50" - }, - { - "title": "Dolly Parton - Cash On The Barrel Head (Karaoke)", - "id": "R_PQHu8p-d0" - }, - { - "title": "Eric Church - Stick That In Your Country Song (Karaoke)", - "id": "MPc-UCs3HM8" - }, - { - "title": "Charlie Puth feat. Kehlani - Done For Me (Karaoke)", - "id": "svMM6QzCpsU" - }, - { - "title": "Dua Lipa - Blow Your Mind (Mwah) (Karaoke)", - "id": "xo8NCLaHkC4" - }, - { - "title": "Elvis Presley - Don't Cry Daddy (Karaoke)", - "id": "2_DX8W25We0" - }, - { - "title": "Eydie Gorme - Blame It On The Bossa Nova (Karaoke)", - "id": "Cs-oKBnimC0" - }, - { - "title": "Cheap Trick - The Flame (Karaoke)", - "id": "5uR9VPdCA_M" - }, - { - "title": "The Karaoke Show - Episode 2 - Hip Hop Hits", - "id": "bQkZXRc10co" - }, - { - "title": "Rascal Flatts - What Hurts The Most (Karaoke)", - "id": "uIfXTQblILE" - }, - { - "title": "Kenny Rogers & Dottie West - Every Time Two Fools Collide (Karaoke)", - "id": "mxaEikLX35Q" - }, - { - "title": "Donna Fargo - U. S. of A. (Karaoke)", - "id": "TYqL0MCAQPQ" - }, - { - "title": "Wilkinsons - I Wanna Be That Girl (Karaoke)", - "id": "_AYYh7EyTeI" - }, - { - "title": "Phil Vassar - That's When I Love You (Karaoke)", - "id": "A-FnYEMyI6M" - }, - { - "title": "Lindsay Lohan - Rumors (Karaoke)", - "id": "QMpNbtOuI_Q" - }, - { - "title": "Hawkshaw Hawkins - Pan American (Karaoke)", - "id": "vPTbSpv2zro" - }, - { - "title": "Toby Keith - American Ride (Karaoke)", - "id": "AuzEVoyyBQU" - }, - { - "title": "Wynonna - I Hear You Knocking (Karaoke)", - "id": "aKO3hTAOHT0" - }, - { - "title": "Joanna Smith - Georgia Mud (Karaoke)", - "id": "iz_rlPV9pyA" - }, - { - "title": "Band Perry (The Band Perry) - All Your Life (Karaoke)", - "id": "8rNGPbor9_E" - }, - { - "title": "Walker Hayes - Pants (Karaoke)", - "id": "7jfEGsuuk1k" - }, - { - "title": "Matt Stillwell - Shine (Karaoke)", - "id": "LM8FTT1Qt2Q" - }, - { - "title": "Shinedown - If You Only Knew (Karaoke)", - "id": "gxTxxhAsNJ4" - }, - { - "title": "Luke Bryan - Kiss Tomorrow Goodbye (Karaoke)", - "id": "zZyObqq61VQ" - }, - { - "title": "Trace Adkins - Just Fishin' (Karaoke)", - "id": "rLLVKX3F8eE" - }, - { - "title": "Tim McGraw - Southern Voice (Karaoke)", - "id": "geHpzuKmBd8" - }, - { - "title": "Walker Hayes - Why Wait For Summer (Karaoke)", - "id": "N4KPbWKKsq4" - }, - { - "title": "Fall Out Boy - I Don't Care (Karaoke)", - "id": "_roJNeDYfJo" - }, - { - "title": "Alan Jackson - Country Boy (Karaoke)", - "id": "dkNMs1M5xfw" - }, - { - "title": "Carrie Underwood - Quitter (Karaoke)", - "id": "PIORty1jg0A" - }, - { - "title": "Tracy Lawrence - You Can't Hide Redneck (Karaoke)", - "id": "Ps_Nm6AP-UQ" - }, - { - "title": "3Oh!3, Katy Perry - StarStrukk (Karaoke)", - "id": "sfEKNwRT4kQ" - }, - { - "title": "Jonas Brothers - Fly With Me (Karaoke)", - "id": "d4_G6i5UF_w" - }, - { - "title": "Dierks Bentley - Sideways (Karaoke)", - "id": "-2dFR0EEbbI" - }, - { - "title": "Gretchen Wilson - Midnight Oil (Karaoke)", - "id": "nGluW-Z5eFg" - }, - { - "title": "Fall Out Boy - This Ain't A Scene, It's An Arms Race (Karaoke)", - "id": "lGEPo97oyAo" - }, - { - "title": "Josh Turner - Why Don't We Just Dance (Karaoke)", - "id": "Lo8zQ5LSY7I" - }, - { - "title": "Martina McBride - She's A Butterfly (Karaoke)", - "id": "gyTkX0_pPwY" - }, - { - "title": "Krista Marie - Jeep Jeep (Karaoke)", - "id": "Oc6AfyJgL3M" - }, - { - "title": "Luke Bryan - Rain Is A Good Thing (Karaoke)", - "id": "l5g1Uur9KKM" - }, - { - "title": "Jonas Brothers - Tonight (Karaoke)", - "id": "RtpRxj0uzLQ" - }, - { - "title": "Jason Michael Carroll - Where I'm From (Karaoke)", - "id": "UFfqCqvX5U8" - }, - { - "title": "The Wreckers - Tennessee (Karaoke)", - "id": "b8UsKQMRhMY" - }, - { - "title": "Joe Nichols - I'll Wait For You (Karaoke)", - "id": "5xKeSI5P4RM" - }, - { - "title": "Secondhand Serenade - Fall For You (Karaoke)", - "id": "0_7cHiuuOIQ" - }, - { - "title": "Tammy Wynette, George Jones - Southern California (Karaoke)", - "id": "Liir52DMLEM" - }, - { - "title": "Jonas Brothers - S.O.S. (Karaoke)", - "id": "7cE5RgULfUo" - }, - { - "title": "Fall Out Boy - Headfirst Slide Into Cooperstown On A Bad Bet (Karaoke)", - "id": "zjm6J1qiOe8" - }, - { - "title": "Miranda Lambert - Bring Me Down (Karaoke)", - "id": "h7a_M6Z0waQ" - }, - { - "title": "Gene Watson - Memories To Burn (Karaoke)", - "id": "heIcjmY9W48" - }, - { - "title": "Kortney Kayle - Don't Let Me Down (Karaoke)", - "id": "VydM683bvPI" - }, - { - "title": "Tracy Lawrence - Life Don't Have To Be So Hard (Karaoke)", - "id": "sddmFW5OJYE" - }, - { - "title": "Pat Green - Don't Break My Heart Again (Karaoke)", - "id": "CE_als_oG18" - }, - { - "title": "Vince Gill - Reason Why (The Reason Why) (Karaoke)", - "id": "6XOfSrRGYCs" - }, - { - "title": "Anita Baker - No One In The World (Karaoke)", - "id": "C45tHWSLg8Y" - }, - { - "title": "Craig Morgan - Look At Us (Karaoke)", - "id": "ZmJnnwJPLtA" - }, - { - "title": "Pilot - Magic (Karaoke)", - "id": "Wn2sybk-_9g" - }, - { - "title": "Jack Ingram - Love You (Karaoke)", - "id": "wcH4WQhQxvM" - }, - { - "title": "Miranda Lambert - Famous In A Small Town (Karaoke)", - "id": "H3Bnz8QvAlU" - }, - { - "title": "Three Days Grace - Home (Karaoke)", - "id": "h_S9ou2HqnE" - }, - { - "title": "Aaron Lines - You Can't Hide Beautiful (Karaoke)", - "id": "FtW9Cd6t9fA" - }, - { - "title": "Toby Keith - Ain't It Just Like You (Karaoke)", - "id": "kegbQKrc-G0" - }, - { - "title": "Tracy Byrd - Drinkin' Bone (Karaoke)", - "id": "QO3QugtBZQs" - }, - { - "title": "JoJo - Leave (Get Out) (Karaoke)", - "id": "5F83NZyZ1d0" - }, - { - "title": "Andy Griggs - If Heaven (Karaoke)", - "id": "B_mridAtd9E" - }, - { - "title": "Terri Clark - I Just Wanna Be Mad (Karaoke)", - "id": "65eMon-1rGI" - }, - { - "title": "Randy Travis - Three Wooden Crosses (Karaoke)", - "id": "1Few6E22XLQ" - }, - { - "title": "Dusty Drake - Smaller Pieces (Karaoke)", - "id": "5qj_0RTOJLk" - }, - { - "title": "Gary Allan - Man To Man (Karaoke)", - "id": "MYQeHJN2Agk" - }, - { - "title": "Hank Williams - Mansion On The Hill (A Mansion On The Hill) (Karaoke)", - "id": "9OjYkC4cWcs" - }, - { - "title": "Trace Adkins - Hot Mama (Karaoke)", - "id": "PJFpKHHYMUE" - }, - { - "title": "Jennifer Hanson - Half A Heart Tattoo (Karaoke)", - "id": "aU2DNH_ZcaI" - }, - { - "title": "Marc Anthony - I've Got You (Karaoke)", - "id": "l1X89tTaPjg" - }, - { - "title": "Kylie Minogue - Come Into My World (Karaoke)", - "id": "2mN1bisZWRc" - }, - { - "title": "Tracy Lawrence - Find Out Who Your Friends Are (Karaoke)", - "id": "1zHdsISrga8" - }, - { - "title": "Mark Chesnutt - I'm A Saint (Karaoke)", - "id": "z5xqtSp0RFA" - }, - { - "title": "Donell Jones - You Know That I Love You (Karaoke)", - "id": "CI4t9E4jBQs" - }, - { - "title": "Eric Church - Two Pink Lines (Karaoke)", - "id": "90xHx9SReRM" - }, - { - "title": "Toby Keith - Losing My Touch (Karaoke)", - "id": "9n_5O52mIjA" - }, - { - "title": "Terri Clark - I Wanna Do It All (Karaoke)", - "id": "m0cFpxD-ZPk" - }, - { - "title": "Sara Evans - I Keep Looking (Karaoke)", - "id": "MI1-ma604Zs" - }, - { - "title": "Julie Roberts - Wake Up Older (Karaoke)", - "id": "lkuF517L3m0" - }, - { - "title": "Jessica King - Gift Of Grace (Karaoke)", - "id": "dTvvNYzqol8" - }, - { - "title": "Toby Keith - Rock You Baby (Karaoke)", - "id": "ooddlqZ1OvQ" - }, - { - "title": "Toby Keith - It Works For Me (Karaoke)", - "id": "IJ7t9jBM6ao" - }, - { - "title": "Babyface - When Can I See You (Karaoke)", - "id": "oz17WIDd6no" - }, - { - "title": "Eddy Arnold - Lonely Again (Karaoke)", - "id": "_Vds7ad0oyw" - }, - { - "title": "Donna Fargo - Don't Be Angry (Karaoke)", - "id": "WnleLubkt-o" - }, - { - "title": "Hank Locklin - Let Me Be The One (Karaoke)", - "id": "31rR98RMv3I" - }, - { - "title": "Joe Nichols - The Impossible (Karaoke)", - "id": "Dnayj_aKldk" - }, - { - "title": "Jamie O'Neal - Frantic (Karaoke)", - "id": "xfStyTrKr9A" - }, - { - "title": "Merle Haggard - I Take A Lot Of Pride In What I Am (Karaoke)", - "id": "CxK748SnYWc" - }, - { - "title": "Ginuwine - Differences (Karaoke)", - "id": "87ORvHGr0bc" - }, - { - "title": "Tim McGraw - Grown Men Don't Cry (Karaoke)", - "id": "S9SKOi9m7Pw" - }, - { - "title": "Maxwell - Lifetime (Karaoke)", - "id": "I4az1HhtJr4" - }, - { - "title": "Jack Greene - If This Is Love (Karaoke)", - "id": "rmJkhs-oy2w" - }, - { - "title": "Older The Violin Sweeter The Music (The Older The Violin Sweeter The Music) (Karaoke)", - "id": "4_OIR5beYFE" - }, - { - "title": "Marc Anthony - You Sang To Me (Karaoke)", - "id": "ZrgtE7E7uJo" - }, - { - "title": "Rascal Flatts - Long Slow Beautiful Dance (Karaoke)", - "id": "XaCGK1NjEAA" - }, - { - "title": "Marc Anthony - I Need To Know (Karaoke)", - "id": "f_UEE0xYePg" - }, - { - "title": "Guy Mitchell - Singing The Blues (Karaoke)", - "id": "SbgyUiA2_Lo" - }, - { - "title": "Earl Thomas Conley - Right From The Start (Karaoke)", - "id": "YYcyFE4vXEw" - }, - { - "title": "T-Pain & Chris Brown - Best Love Song (Karaoke)", - "id": "wJHMPn7a_Ro" - }, - { - "title": "P.O.D. - Alive (Karaoke)", - "id": "akI3RfXPRz8" - }, - { - "title": "Janet Jackson - Love Will Never Do (Without You) (Karaoke)", - "id": "1evgR-k7izM" - }, - { - "title": "Earl Thomas Conley - Angel In Disguise (Karaoke)", - "id": "o9wbQ4inLM0" - }, - { - "title": "Survivor - The Search Is Over (Karaoke)", - "id": "ZpBcPXrHmuw" - }, - { - "title": "Third Eye Blind - Never Let You Go (Karaoke)", - "id": "BZ3HoGyPMU8" - }, - { - "title": "Ricky Nelson - Poor Little Fool (Karaoke)", - "id": "Ezl8X64xAYo" - }, - { - "title": "Timmy Thomas - Why Can't We Live Together (Karaoke)", - "id": "cId7n0Hk3yI" - }, - { - "title": "The Doobie Brothers - Real Love (Karaoke)", - "id": "h0SME1Grgxw" - }, - { - "title": "Teena Marie - I Need Your Lovin' (Karaoke)", - "id": "pmqJTOiS_Oo" - }, - { - "title": "System Of A Down - Aerials (Karaoke)", - "id": "zrNpuP43F-w" - }, - { - "title": "Robert DeLong - Don't Wait Up (Karaoke)", - "id": "ncjYcX8zvgY" - }, - { - "title": "Patty Loveless - You Will (Karaoke)", - "id": "jnDQ4E8DK4w" - }, - { - "title": "Pat Boone - Friendly Persuasion (Karaoke)", - "id": "7ZkWfAAeu10" - }, - { - "title": "The Oak Ridge Boys - You're The One (Karaoke)", - "id": "puXBt_77kZU" - }, - { - "title": "The Monkees - Pleasant Valley Sunday (Karaoke)", - "id": "onnntnr6APg" - }, - { - "title": "Merle Haggard - Turnin' Off A Memory (Karaoke)", - "id": "KZkve4n92sc" - }, - { - "title": "Terri Clark - I Wanna Do It All (Karaoke Guide Vocal)", - "id": "ZuzbtJAR4Kw" - }, - { - "title": "Tiesto, KSHMR, Vassy - Secrets (Karaoke)", - "id": "I_QHhF2CjQQ" - }, - { - "title": "Aaron Tippin - Call Of The Wild (Karaoke)", - "id": "DKSCM87dIcc" - }, - { - "title": "George Strait - How 'Bout Them Cowgirls (Karaoke)", - "id": "tKXcYM7kBbA" - }, - { - "title": "Vince Gill - Worlds Apart (Karaoke)", - "id": "Vi-9wXd4TRw" - }, - { - "title": "Flo Rida - How I Feel (Karaoke)", - "id": "lXKZYrKQ12I" - }, - { - "title": "Sia - Cheap Thrills (Karaoke)", - "id": "LZkHJXZLs_A" - }, - { - "title": "The Chainsmokers - Everybody Hates Me (Karaoke)", - "id": "iv14tqCmDlw" - }, - { - "title": "Sara Bareilles - Uncharted (Karaoke)", - "id": "sIb8gXdRwcc" - }, - { - "title": "Jessie Ware - Midnight (Karaoke)", - "id": "iOzcrbiK9Rg" - }, - { - "title": "Henningsens - American Beautiful (Karaoke)", - "id": "KtrMXZecNS4" - }, - { - "title": "LoCash Cowboys - Best Seat In The House (Karaoke)", - "id": "rV6AkWVyofY" - }, - { - "title": "Britney Spears - I Wanna Go (Karaoke)", - "id": "S7ebj_sXwqg" - }, - { - "title": "Jamie O'Neal - Trying To Find Atlantis (Karaoke)", - "id": "o4nI_S5VX0Q" - }, - { - "title": "Dierks Bentley - Sideways (Karaoke Guide Vocal)", - "id": "4wSpIqPLvKg" - }, - { - "title": "Adam Lambert - Whataya Want From Me (Karaoke)", - "id": "6yiFjl5k6RI" - }, - { - "title": "Lady Gaga - Til It Happens To You (Karaoke)", - "id": "JQXJfaJqsYE" - }, - { - "title": "Christina Perri - Human (Karaoke)", - "id": "psH_KVdcvBo" - }, - { - "title": "Craig Morgan - Look At Us (Karaoke Guide Vocal)", - "id": "yBAFjrhNsPo" - }, - { - "title": "Matt Stillwell - Shine (Karaoke Guide Vocal)", - "id": "XcH_dpb0trI" - }, - { - "title": "Buddy Jewell - Help Pour Out The Rain (Lacey's Song) (Karaoke)", - "id": "e3MOHmkbS-k" - }, - { - "title": "Jonas Brothers - Fly With Me (Karaoke Guide Vocal)", - "id": "DlWbT5Cn9ss" - }, - { - "title": "Hank Williams as Luke The Drifter - I Dreamed About Mama Last Night (Karaoke)", - "id": "yd7Y_WINLBw" - }, - { - "title": "Lonestar - With Me (Karaoke)", - "id": "5Cwpvjoisko" - }, - { - "title": "Avril Lavigne - He Wasn't (Karaoke)", - "id": "eZ8mmw641eQ" - }, - { - "title": "Carrie Underwood - Quitter (Karaoke Guide Vocal)", - "id": "JWY34S0hjHI" - }, - { - "title": "Hank Locklin - Let Me Be The One (Karaoke Guide Vocal)", - "id": "Iv18SqIUgCY" - }, - { - "title": "Chris Brown, Keri Hilson - Superhuman (Karaoke)", - "id": "irbMQS8TPu8" - }, - { - "title": "Band Perry - All Your Life (Karaoke Guide Vocal)", - "id": "PC0xdTRmm6E" - }, - { - "title": "Jason Michael Carroll - Where I'm From (Karaoke Guide Vocal)", - "id": "Lg25osM5nbc" - }, - { - "title": "Alan Jackson - Country Boy (Karaoke Guide Vocal)", - "id": "N_Npj-8In3g" - }, - { - "title": "Five Finger Death Punch - Battle Born (Karaoke)", - "id": "JWN-m1wRgcE" - }, - { - "title": "Cowboy Crush - Miss Difficult (Karaoke)", - "id": "1i9CnC9lI1o" - }, - { - "title": "Trace Adkins - Ladies Love Country Boys (Karaoke)", - "id": "uvKtq-binVI" - }, - { - "title": "Mariah Carey - It's Like That (Karaoke)", - "id": "82q7icfTadw" - }, - { - "title": "Boyz II Men - The Color Of Love (Karaoke)", - "id": "5bidwJXB2-M" - }, - { - "title": "Trace Adkins - Just Fishin' (Karaoke Guide Vocal)", - "id": "mOtSzpGCdl4" - }, - { - "title": "Alicia Keys - Girlfriend (Karaoke)", - "id": "qX_XY26DJYk" - }, - { - "title": "Red Foley - Midnight (Karaoke)", - "id": "4hePMtfTVsY" - }, - { - "title": "Chainsmokers ftg. Daya, The - Don't Let Me Down (Karaoke)", - "id": "sIL10YT8zw0" - }, - { - "title": "Ellie Goulding - Something In The Way You Move (Karaoke)", - "id": "lfoQRBZ49CE" - }, - { - "title": "Avril Lavigne - Don't Tell Me (Karaoke)", - "id": "ojE4Ea5XOVM" - }, - { - "title": "Emerson Drive - November (Karaoke)", - "id": "kBwTSv5w2yg" - }, - { - "title": "Edwin Hawkins Singers - Oh Happy Day (Karaoke)", - "id": "jS7WO5jCnuk" - }, - { - "title": "Toby Keith - Big Blue Note (Karaoke)", - "id": "_mSddG-afwo" - }, - { - "title": "Bill Anderson - Wild Week-End (Karaoke)", - "id": "5_ZrVqzJEXw" - }, - { - "title": "Alan Jackson - USA Today (Karaoke)", - "id": "baw60ATnBrQ" - }, - { - "title": "Fall Out Boy - Uma Thurman (Karaoke)", - "id": "Lsm64pJI16A" - }, - { - "title": "Jake Owen - The One That Got Away (Karaoke)", - "id": "9j_Cp_E8KEg" - }, - { - "title": "Five Finger Death Punch - Wash It All Away (Karaoke)", - "id": "q-8irHMEovc" - }, - { - "title": "Gene Watson - Pick The Wildwood Flower (Karaoke)", - "id": "Npa1y6j_uq8" - }, - { - "title": "Martina McBride - When God Fearing Women Get The Blues (Karaoke)", - "id": "tGxOQe5UUFQ" - }, - { - "title": "Eddie Rabbitt - Hearts On Fire (Karaoke)", - "id": "qK0cUG5oEFw" - }, - { - "title": "Three Days Grace - Home (Karaoke Guide Vocal)", - "id": "0b8attlCHv8" - }, - { - "title": "Gary Allan - Man To Man (Karaoke Guide Vocal)", - "id": "LtY4w8o934w" - }, - { - "title": "Trisha Yearwood - I Would've Loved You Anyway (Karaoke)", - "id": "TnbE-lcD1EA" - }, - { - "title": "Josh Gracin - Telluride (Karaoke)", - "id": "i87zJd3wPTY" - }, - { - "title": "Mark Chesnutt - I'm In Love With A Married Woman (Karaoke)", - "id": "q_fTbildtr8" - }, - { - "title": "Luke Bryan - Kiss Tomorrow Goodbye (Karaoke Guide Vocal)", - "id": "goy1uaPV06M" - }, - { - "title": "Larry Gatlin - I Don't Wanna Cry (Karaoke)", - "id": "34HCNM45i-U" - }, - { - "title": "Rihanna - Man Down (Karaoke)", - "id": "0rc16OGtouA" - }, - { - "title": "Hank Williams - Weary Blues From Waitin' (Karaoke)", - "id": "FafhPEYp9TE" - }, - { - "title": "Martina McBride - Blessed (Karaoke)", - "id": "4OlG92XRv5o" - }, - { - "title": "Hedley - Anything (Karaoke)", - "id": "tGFVoXDCSdE" - }, - { - "title": "Andy Griggs - If Heaven (Karaoke Guide Vocals)", - "id": "4cWQ05X6nZA" - }, - { - "title": "JoJo - Leave (Get Out) (Karaoke Guide Vocal)", - "id": "_lBH5KxDpPc" - }, - { - "title": "Paula Cole - Feelin' Love (Karaoke)", - "id": "Hnb1LT8LrPA" - }, - { - "title": "Kris Kristofferson - Why Me, Lord? - Play A Tab (Guitar Karaoke) (Karaoke)", - "id": "WFvlSiaY6dQ" - }, - { - "title": "Alan Jackson - Jim And Jack And Hank (Karaoke)", - "id": "zg5y6U99j6s" - }, - { - "title": "Tracy Lawrence - Find Out Who Your Friends Are (Karaoke Guide Vocal)", - "id": "kJzkoovqtUk" - }, - { - "title": "Alan Jackson - Work In Progress (Karaoke)", - "id": "7xwqXj-2nHI" - }, - { - "title": "Bill Anderson - My Life (Throw It Away If I Want To) (Karaoke)", - "id": "w86Pss1WNsA" - }, - { - "title": "Norah Jones - Turn Me On (Karaoke)", - "id": "L-4Tnr748D8" - }, - { - "title": "Babyface - When Can I See You (Karaoke Guide Vocal)", - "id": "20mAXtPUBwg" - }, - { - "title": "Monica - First Night (Karaoke)", - "id": "pgvXcUv-gyY" - }, - { - "title": "Charly McClain - Surround Me With Love (Karaoke)", - "id": "_8xryBtCbRc" - }, - { - "title": "Faron Young - Face To The Wall (Karaoke)", - "id": "K3TIFj0wlWs" - }, - { - "title": "Sara Bareilles - Brave (Karaoke)", - "id": "jQjbxdrZhZE" - }, - { - "title": "Alan Jackson - Too Much Of A Good Thing Is A Good Thing (Karaoke)", - "id": "1R_NOjGAqcs" - }, - { - "title": "Anita Baker - No One In The World (Karaoke Guide Vocal)", - "id": "IGvLDLjMSXc" - }, - { - "title": "Avril Lavigne - Innocence (Karaoke)", - "id": "kHoRLqVVP9Y" - }, - { - "title": "Avril Lavigne - Fall To Pieces (Karaoke)", - "id": "lRCux0nSNDI" - }, - { - "title": "Wynonna - I Hear You Knocking (Karaoke Guide Vocal)", - "id": "Tj6oRjSLjUA" - }, - { - "title": "Andy Griggs - I'll Go Crazy (Karaoke)", - "id": "-xaH78HfDPM" - }, - { - "title": "Cole Swindell - Let Me See Ya Girl (Karaoke)", - "id": "Hy5v2SubV4g" - }, - { - "title": "Chris Brown - Crawl (Karaoke)", - "id": "Zmr99_oVCD0" - }, - { - "title": "Krista Marie - Jeep Jeep (Karaoke Guide Vocal)", - "id": "PiJesPKmfQM" - }, - { - "title": "Miranda Lambert - Famous In A Small Town (Karaoke Guide Vocal)", - "id": "Ny-ruoGXYXw" - }, - { - "title": "Bill Anderson - Mama Sang A Song (Karaoke)", - "id": "5R6rTjCUER8" - }, - { - "title": "Gretchen Wilson - Midnight Oil (Karaoke Guide Vocal)", - "id": "xZZBGZjWxQg" - }, - { - "title": "Don Gibson - Touch The Morning (Karaoke)", - "id": "DBwFKio7HWM" - }, - { - "title": "Jack Greene - If This Is Love (Karaoke Guide Vocal)", - "id": "-bInbDWuhzk" - }, - { - "title": "Post Malone - I Fall Apart (Karaoke)", - "id": "Zd1WfvpSjsY" - }, - { - "title": "Craig Campbell - Outta My Head (Karaoke)", - "id": "GV2krtm0qv0" - }, - { - "title": "Hawkshaw Hawkins - Pan American (Karaoke Guide Vocal)", - "id": "6TluOgBjzpE" - }, - { - "title": "Julie Roberts - Wake Up Older (Karaoke Guide Vocal)", - "id": "GzDDRIcP1GI" - }, - { - "title": "Jason Derulo - What If (Karaoke)", - "id": "rc5gG_MAq7U" - }, - { - "title": "Pink - Most Girls (Karaoke)", - "id": "wEs84gqxEss" - }, - { - "title": "Jonas Brothers - Lovebug (Karaoke)", - "id": "hgy2c6NXuMQ" - }, - { - "title": "Marc Anthony - I've Got You (Karaoke Guide Vocal)", - "id": "XvnLl8TyJbs" - }, - { - "title": "Lefty Frizzell - Saginaw, Michigan - Play A Tab (Guitar Karaoke) (Karaoke)", - "id": "_nhr7BbMM5U" - }, - { - "title": "Pink - F***ing Perfect (Karaoke)", - "id": "zbg20zn7ucE" - }, - { - "title": "Tim McGraw - If You're Reading This (Karaoke)", - "id": "lpmqGTxHwUM" - }, - { - "title": "Sara Evans - Real Fine Place To Start (Karaoke)", - "id": "gLvstE6JDsE" - }, - { - "title": "Undisputed Truth - Smiling Faces Sometimes (Karaoke)", - "id": "PbS-4FkcGNI" - }, - { - "title": "En Vogue - Whatever (Karaoke)", - "id": "V1B1xFo1H_U" - }, - { - "title": "Buck Owens - My Heart Skips A Beat (Karaoke)", - "id": "OGpYpOqjKzY" - }, - { - "title": "Mario Winans - Let Me Love You (Karaoke)", - "id": "tKeZ4BNbJNg" - }, - { - "title": "Merle Haggard - Mama Tried - Play A Tab (Guitar Karaoke) (Karaoke)", - "id": "oRZMvyjPVbA" - }, - { - "title": "Sue Thompson - Sad Movies (Make Me Cry) (Karaoke)", - "id": "mAATW1xsvCc" - }, - { - "title": "Fall Out Boy - This Ain't A Scene, It's An Arms Race (Karaoke Guide Vocal)", - "id": "TX7kbjYjpgw" - }, - { - "title": "Avril Lavigne - Hot (Karaoke)", - "id": "NqKVQU8J8d8" - }, - { - "title": "J. Cole - Crooked Smile (Karaoke)", - "id": "gptn8g9XuJ8" - }, - { - "title": "Joe Nichols - I'll Wait For You (Karaoke Guide Vocal)", - "id": "gCorG4CReTQ" - }, - { - "title": "Hank Williams - Prodigal Son, The (Karaoke)", - "id": "HNEv72P4GqM" - }, - { - "title": "Porter Wagoner - Big Wind (Karaoke)", - "id": "unFkSKkA11c" - }, - { - "title": "Ronnie McDowell - You Made A Wanted Man Of Me (Karaoke)", - "id": "V5edb8hkArg" - }, - { - "title": "Miranda Lambert - Bring Me Down (Karaoke Guide Vocal)", - "id": "MhPKusFJxME" - }, - { - "title": "Tim McGraw - Southern Voice (Karaoke Guide Vocal)", - "id": "GAswOzH3IxE" - }, - { - "title": "Jamie Cullum - All At Sea (Karaoke)", - "id": "zuKUfh6jhJc" - }, - { - "title": "Charlie Rich - My Elusive Dreams - Play A Tab (Guitar Karaoke) (Karaoke)", - "id": "BQpzIIZp34U" - }, - { - "title": "Hank Williams - I Can't Get You Off My Mind (Karaoke)", - "id": "3cVRONDgb5I" - }, - { - "title": "Rhett Akins - Love You Back (Karaoke)", - "id": "dj8c6yioCjI" - }, - { - "title": "Sade - Love Is Stronger Than Pride (Karaoke)", - "id": "PhI1cRtBcyA" - }, - { - "title": "Sonya Isaacs - Barefoot In The Grass (Karaoke)", - "id": "8sWwdJ5v30I" - }, - { - "title": "Adam Lambert - If I Had You (Karaoke)", - "id": "PEfQ7tvniVA" - }, - { - "title": "Jamey Johnson - Heartache (Karaoke)", - "id": "eFt_kilai70" - }, - { - "title": "Capital Cities - One Minute More (Karaoke)", - "id": "e3sd-XViaLI" - }, - { - "title": "Tracy Lawrence - You Can't Hide Redneck (Karaoke Guide Vocal)", - "id": "Ug7ip1ER7i0" - }, - { - "title": "Cole Swindell - Chillin' It (Karaoke Guide Vocal)", - "id": "StPp_YfhBz8" - }, - { - "title": "Hank Williams - Ready To Go Home (Karaoke)", - "id": "ymmgMNhjaYg" - }, - { - "title": "Randy Houser - Goodnight Kiss (Karaoke)", - "id": "IH-y68iRF2g" - }, - { - "title": "Dionne Farris - I Know (Karaoke)", - "id": "bwEPGYP46uY" - }, - { - "title": "Sara Evans - I Keep Looking (Karaoke)", - "id": "YDgCvVOL61w" - }, - { - "title": "Crystal Gayle - Too Many Lovers (Karaoke)", - "id": "C_iBprtO9Rw" - }, - { - "title": "Lauryn Hill - Doo Wop (That Thing) (Karaoke)", - "id": "44nSHrfkaMw" - }, - { - "title": "Alan Jackson - Hard Hat And A Hammer (Karaoke)", - "id": "AIt6NqCWPKU" - }, - { - "title": "Alan Jackson - I Still Like Bologna (Karaoke)", - "id": "T4NMvffm4SE" - }, - { - "title": "Pussycat Dolls - I Don't Need A Man (Karaoke)", - "id": "NDw0Y8I3C2M" - }, - { - "title": "Larry Gatlin - I Just Wish You Were Someone I Love (Karaoke)", - "id": "vOU26xHqQEw" - }, - { - "title": "Tim McGraw - Telluride (Karaoke)", - "id": "lKyeos5e6aQ" - }, - { - "title": "Tim McGraw - Some Things Never Change (Karaoke)", - "id": "ku_J0cnw4lU" - }, - { - "title": "Mike Posner - I Took A Pill In Ibiza (Karaoke)", - "id": "0aDnrF84ZJM" - }, - { - "title": "Donny Osmond - Go Away Little Girl (Karaoke)", - "id": "Rnn2vrG9nAA" - }, - { - "title": "Brenda Lee - Nobody Wins (Karaoke)", - "id": "_ZvBa-41llU" - }, - { - "title": "The Coasters - Little Egypt (Karaoke)", - "id": "xd3A4u1nY-I" - }, - { - "title": "Tyler Farr - Whiskey In My Water (Karaoke)", - "id": "ZyBLM2BEI1g" - }, - { - "title": "John Conlee - As Long As I'm Rockin' With You (Karaoke)", - "id": "QBTgtuIQlO4" - }, - { - "title": "Clay Walker - Where Do I Go From You (Karaoke)", - "id": "ASmPzf3VB-s" - }, - { - "title": "The Wreckers - Tennessee (Karaoke)", - "id": "HFbIStN2kBU" - }, - { - "title": "Usher, Young Jeezy - Love In This Club (Karaoke)", - "id": "K3VmiZ6iSYg" - }, - { - "title": "Colbie Caillat - Dreams Collide (Karaoke)", - "id": "BFDfIdB2jCU" - }, - { - "title": "Jennifer Hanson - Half A Heart Tattoo (Karaoke Guide Vocal)", - "id": "lD2vOsSzNxY" - }, - { - "title": "3Oh!3, Katy Perry - StarStrukk (Karaoke Guide Vocal)", - "id": "J6oKPtlphz0" - }, - { - "title": "Dottie West - Come See Me And Come Lonely (Karaoke)", - "id": "_zmpOzgZZ2Y" - }, - { - "title": "Luke Bryan - Rain Is A Good Thing (Karaoke Guide Vocal)", - "id": "pDmbHjqogS4" - }, - { - "title": "Paula Cole - Saturn Girl (Karaoke)", - "id": "pI1VJRyK6y8" - }, - { - "title": "Chris Brown - Sing Like Me (Karaoke)", - "id": "XXPBsTVSrD0" - }, - { - "title": "Lauryn Hill - Lost Ones (Karaoke)", - "id": "IX125tyCUxs" - }, - { - "title": "Lily Allen - The Fear (Karaoke)", - "id": "JbowAZ5O1DE" - }, - { - "title": "Carrie Underwood - Inside Your Heaven (Karaoke)", - "id": "gnUMza9IqcI" - }, - { - "title": "Three Days Grace - Never Too Late (Karaoke)", - "id": "exJHC6EUuQs" - }, - { - "title": "Sara Bareilles - King Of Anything (Karaoke)", - "id": "u_aiGSOja0k" - }, - { - "title": "Jamie O'Neal - Frantic (Karaoke Guide Vocal)", - "id": "vDAgdfT36jI" - }, - { - "title": "Charley Pride - Never Been So Loved (In All My Life) (Karaoke)", - "id": "bZwbj1Yp0_s" - }, - { - "title": "Jim Reeves - Distant Drums (Karaoke)", - "id": "N_lGpK7ITtw" - }, - { - "title": "John Rich - I Pray For You (Karaoke)", - "id": "Wk3nKN5tAnE" - }, - { - "title": "Mark Chesnutt - I'm A Saint (Karaoke Guide Vocal)", - "id": "CZIFR8rsbbQ" - }, - { - "title": "Alan Jackson - Where Were You (Karaoke)", - "id": "M4wMPeDc7rw" - }, - { - "title": "Travis Tritt - Strong Enough to Be Your Man (Karaoke)", - "id": "0BEinZ3M3RA" - }, - { - "title": "LoCash Cowboys - You Got Me (Karaoke)", - "id": "9fyOHuVWNqo" - }, - { - "title": "Hank Williams as Luke The Drifter - Ramblin' Man (Karaoke)", - "id": "LThl5pHasWk" - }, - { - "title": "Jamey Johnson - High Cost Of Living (Karaoke)", - "id": "6NjBgUxvJLc" - }, - { - "title": "Parmalee - Close Your Eyes (Karaoke)", - "id": "1Xfu2Qo0-gI" - }, - { - "title": "Randy Travis - Three Wooden Crosses (Karaoke Guide Vocal)", - "id": "gncfTkcQcw8" - }, - { - "title": "Hank Williams - Message To My Mother (Karaoke)", - "id": "_8A19hk3-7s" - }, - { - "title": "Earl Thomas Conley - Once In A Blue Moon (Karaoke)", - "id": "uvppoYKySLk" - }, - { - "title": "Pat Green - Don't Break My Heart Again (Karaoke Guide Vocal)", - "id": "mV8JQgQAB4w" - }, - { - "title": "Buck Owens - Love's Gonna Live Here (Karaoke)", - "id": "tS4ogUPUIU0" - }, - { - "title": "Eddy Arnold - It's A Sin (Karaoke)", - "id": "hi5oOzlSi4A" - }, - { - "title": "Carolyn Dawn Johnson - Georgia (Karaoke)", - "id": "RPOTVthdmwI" - }, - { - "title": "Guy Mitchell - Singing The Blues (Karaoke Guide Vocal)", - "id": "-pzYg0X1iqY" - }, - { - "title": "Carolyn Dawn Johnson - Complicated (Karaoke)", - "id": "cBHY3nxVFh4" - }, - { - "title": "Alan Jackson - Small Town Southern Man (Karaoke)", - "id": "4pTo8LQz-AI" - }, - { - "title": "Toby Keith - American Ride (Karaoke Guide Vocal)", - "id": "ZGgIYcOxPAA" - }, - { - "title": "Aaron Lines - You Can't Hide Beautiful (Karaoke Guide Vocal)", - "id": "RrjDyhSYpJs" - }, - { - "title": "Yankee Grey - Another Nine Minutes (Karaoke)", - "id": "AP_AII4P2zw" - }, - { - "title": "Phil Vassar - That's When I Love You (Karaoke Guide Vocal)", - "id": "CScoKgmM_KI" - }, - { - "title": "Gene Watson - Memories To Burn (Karaoke Guide Vocal)", - "id": "ydljaEwLEMM" - }, - { - "title": "Cole Swindell - Should've Ran After You (Karaoke)", - "id": "k8n-pHkhYnc" - }, - { - "title": "Charley Pride - I Don't Think She's In Love Anymore (Karaoke)", - "id": "vbMJcbGwQ1o" - }, - { - "title": "112.0 - Dance With Me (Karaoke)", - "id": "QTEP8cFkups" - }, - { - "title": "Hank Williams - Jambalaya (On The Bayou) - Play A Tab (Guitar Karaoke) (Karaoke)", - "id": "xp_YgOg9cY0" - }, - { - "title": "Alexandra Slate - Guilty (Karaoke)", - "id": "U27xT2jeG3k" - }, - { - "title": "Dusty Drake - Smaller Pieces (Karaoke Guide Vocal)", - "id": "FIHXsISsVQA" - }, - { - "title": "Alan Jackson - Sissy's Song (Karaoke)", - "id": "Z13BENi5tAc" - }, - { - "title": "Luke Bryan - Roller Coaster (Karaoke)", - "id": "03lYM3zzjds" - }, - { - "title": "Walker Hayes - Pants (Karaoke Guide Vocal)", - "id": "-S6t-zoKEfY" - }, - { - "title": "Kongos - I Want To Know (Karaoke)", - "id": "21TCjN1vz8U" - }, - { - "title": "Merle Haggard - Okie From Muskogee - Play A Tab (Guitar Karaoke) (Karaoke)", - "id": "mBeTbv-LPpg" - }, - { - "title": "Avril Lavigne - Losing Grip (Karaoke)", - "id": "oYvpYmG-WuM" - }, - { - "title": "Jack Ingram - Love You (Karaoke Guide Vocal)", - "id": "MogXSBhrirk" - }, - { - "title": "Sara Evans - Perfect (Karaoke)", - "id": "PeMSXtogy-Y" - }, - { - "title": "Joanna Smith - Georgia Mud (Karaoke Guide Vocal)", - "id": "3MmcfxwHjkY" - }, - { - "title": "OneRepublic - Secrets (Karaoke)", - "id": "-D5mlfbk_ZU" - }, - { - "title": "Joe Jonas - See No More (Karaoke)", - "id": "kwjeicjIMEY" - }, - { - "title": "Rihanna - Russian Roulette (Karaoke)", - "id": "qokH0FFlHWg" - }, - { - "title": "The Judds - River Of Time (Karaoke)", - "id": "SjwGUyQl3bM" - }, - { - "title": "Fall Out Boy - I Don't Care (Karaoke Guide Vocal)", - "id": "w9LdsznG7jw" - }, - { - "title": "Fall Out Boy - Dance, Dance (Karaoke)", - "id": "Jgvbbk8UevU" - }, - { - "title": "Emerson Drive - Belongs To You (Karaoke)", - "id": "0vNPpjETuPo" - }, - { - "title": "Brady Seals - Best Is Yet To Come (Karaoke)", - "id": "96Qtad-KwUs" - }, - { - "title": "Eddy Arnold - Last Word In Lonesome Is Me (Karaoke)", - "id": "shXPSGWvpjE" - }, - { - "title": "Anna Nalick - Shine (Karaoke)", - "id": "FHkzqx1phrg" - }, - { - "title": "Trace Adkins - Hot Mama (Karaoke Guide Vocal)", - "id": "IzPv2JaoLJM" - }, - { - "title": "Martina McBride - She's A Butterfly (Karaoke Guide Vocal)", - "id": "tagBXlwxP6w" - }, - { - "title": "Jake Owen - Yee Haw (Karaoke)", - "id": "oR9PWJV2XPY" - }, - { - "title": "Sons Of The Desert - What I Did Right (Karaoke)", - "id": "oPstLtuXFb4" - }, - { - "title": "Jonas Brothers - Tonight (Karaoke Guide Vocal)", - "id": "dZGtEXPcSzk" - }, - { - "title": "Rascal Flatts - Long Slow Beautiful Dance (Karaoke Guide Vocal)", - "id": "lMwuROvm0is" - }, - { - "title": "Secondhand Serenade - Fall For You (Karaoke Guide Vocal)", - "id": "l92iRFSpsBM" - }, - { - "title": "Tammy Wynette, George Jones - Southern California (Karaoke Guide Vocal)", - "id": "To1GdQoAn0w" - }, - { - "title": "Mariah Carey - I Still Believe (Karaoke)", - "id": "sY42LNU1g1E" - }, - { - "title": "Jewel - Hands (Karaoke)", - "id": "DzRCujNEKUs" - }, - { - "title": "Jonas Brothers - S.O.S. (Karaoke Guide Vocal)", - "id": "sFqdPRA8aVc" - }, - { - "title": "Shinedown - If You Only Knew (Karaoke Guide Vocal)", - "id": "pRCVauDY8ec" - }, - { - "title": "Elvis Presley - Silver Bells - Play A Tab (Guitar Karaoke) (Karaoke)", - "id": "VwFwfEtLbHA" - }, - { - "title": "Hank Williams - Mansion On The Hill (Karaoke Guide Vocal)", - "id": "yxoRapPoC1w" - }, - { - "title": "Kevin Sharp - Beautiful People (Karaoke)", - "id": "fj8t5ZnYTK8" - }, - { - "title": "Marc Anthony - You Sang To Me (Karaoke Guide Vocal)", - "id": "9rjQcRDsYY4" - }, - { - "title": "Tanya Tucker - I Believe The South Is Gonna Rise Again (Karaoke)", - "id": "j0AGTHH2vtY" - }, - { - "title": "Lindsay Lohan - Rumors (Karaoke Guide Vocal)", - "id": "cW0FabqLMI0" - }, - { - "title": "Toby Keith - I'm Just Talkin' About Tonight (Karaoke)", - "id": "YNH7mbVOaQc" - }, - { - "title": "Mark Wills - Days Of Thunder (Karaoke)", - "id": "N_rMvkTyo_k" - }, - { - "title": "Avril Lavigne - My Happy Ending (Karaoke)", - "id": "75TmbWCtyQQ" - }, - { - "title": "Tanya Tucker - Can I See You Tonight (Karaoke)", - "id": "i7lPGtMr3CI" - }, - { - "title": "Sarah McLachlan - Sweet Surrender (Karaoke)", - "id": "-hyPHU6xBes" - }, - { - "title": "One Flew South - My Kind Of Beautiful (Karaoke)", - "id": "KuvTATtj5wU" - }, - { - "title": "George Strait - She Let Herself Go (Karaoke)", - "id": "KnX4_4F-OSE" - }, - { - "title": "Charly McClain - Sleepin' With The Radio On (Karaoke)", - "id": "YtrbUoLkmoY" - }, - { - "title": "Alicia Keys - Lovin' U (Karaoke)", - "id": "gKIuNiKH8es" - }, - { - "title": "Hank Thompson - Older The Violin Sweeter The Music (Karaoke Guide Vocal)", - "id": "rzOu8sddZaY" - }, - { - "title": "Steve Wariner - Two Teardrops (Karaoke)", - "id": "qKW_AJcsCt4" - }, - { - "title": "Eddy Arnold - Lonely Again (Karaoke Guide Vocal)", - "id": "cV_r996Z7Oo" - }, - { - "title": "Jessica King - Gift Of Grace (Karaoke Guide Vocal)", - "id": "cozKDVlVj6Y" - }, - { - "title": "Bobby Helms - Fraulein (Karaoke)", - "id": "kuuLpHHGxIc" - }, - { - "title": "Toya - No Matta What (Party All Night) (Karaoke)", - "id": "YfZEj5psvOY" - }, - { - "title": "Terri Clark - I Just Wanna Be Mad (Karaoke Guide Vocal)", - "id": "fC1xFIdJw7M" - }, - { - "title": "Mac Davis - Let's Keep It That Way (Karaoke)", - "id": "3lQFutPf4Ek" - }, - { - "title": "Donna Fargo - Don't Be Angry (Karaoke Guide Vocal)", - "id": "riWRrDw9EVg" - }, - { - "title": "John Michael Montgomery - Beer And Bones (Karaoke)", - "id": "EmDUtnd0eOY" - }, - { - "title": "Sara Bareilles - Bottle It Up (Karaoke)", - "id": "3z98oeOl2S0" - }, - { - "title": "David Houston - Baby, Baby (I Know You're A Lady) (Karaoke)", - "id": "zQhnMYPKNxg" - }, - { - "title": "Chely Wright - Single White Female (Karaoke)", - "id": "o1Zv8PAj6YY" - }, - { - "title": "Moe Bandy - Till I'm Too Old To Die Young (Karaoke)", - "id": "bMG71Zd76yA" - }, - { - "title": "Martina McBride - Whatever You Say (Karaoke)", - "id": "rgBL0Eu-zrk" - }, - { - "title": "Aaron Tippin - I'm Leaving (Karaoke)", - "id": "WY-E6cMHMhU" - }, - { - "title": "Fall Out Boy - Headfirst Slide Into Cooperstown On A Bad Bet (Karaoke Guide Vocal)", - "id": "QRG-1fnOm1c" - }, - { - "title": "Luke Bryan - Country Girl (Shake It For Me) (Karaoke)", - "id": "B8VzfjDOszo" - }, - { - "title": "Alan Jackson - Good Time (Karaoke)", - "id": "WlvhTWsEzHo" - }, - { - "title": "Jerry Kilgore - Cactus In A Coffee Can (Karaoke)", - "id": "-LvTTcAM-1Y" - }, - { - "title": "Hank Snow - Hello Love (Karaoke)", - "id": "G3qmKcveDrw" - }, - { - "title": "Kevin Sharp - Nobody Knows (Karaoke)", - "id": "2D93QdVHX80" - }, - { - "title": "Keith Whitley - There's A New Kid In Town (Karaoke)", - "id": "2MKvPpAzryE" - }, - { - "title": "Trisha Yearwood - On A Bus To St. Cloud (Karaoke)", - "id": "5fGMY5-eXnQ" - }, - { - "title": "Buck Owens - Above And Beyond The Call Of Love (Karaoke)", - "id": "_knfI0kS7LI" - }, - { - "title": "Travis Tritt - Where Corn Don't Grow (Karaoke)", - "id": "_cJllOGmJ-k" - }, - { - "title": "Walker Hayes - Why Wait For Summer (Karaoke Guide Vocal)", - "id": "szPYVf4SxC4" - }, - { - "title": "Sara Bareilles - I Choose You (Karaoke)", - "id": "Hx8PoO2CCFk" - }, - { - "title": "Sara Evans - Shame About That (Karaoke)", - "id": "Vp26q_rf0NQ" - }, - { - "title": "Henningsens - I Miss You (Karaoke)", - "id": "n9vFAhAKGAo" - }, - { - "title": "Ty Herndon - Steam (Karaoke)", - "id": "lGl-tkViPw0" - }, - { - "title": "Kortney Kayle - Don't Let Me Down (Karaoke Guide Vocal)", - "id": "lq387-k4-wo" - }, - { - "title": "George Strait - I Got A Car (Karaoke)", - "id": "PIx5Ied8ZlU" - }, - { - "title": "Reba McEntire - If I Had Only Known (Karaoke)", - "id": "QpEG0H9Hs8I" - }, - { - "title": "Wynonna - When Love Starts Talking (Karaoke)", - "id": "0aDsZ-RRas0" - }, - { - "title": "John Conlee - Friday Night Blues (Karaoke)", - "id": "5a1_aKZlA_M" - }, - { - "title": "Diamond Rio - Oh Me, Oh My, Sweet Baby (Karaoke)", - "id": "6KE6C5xApc0" - }, - { - "title": "Mark Wills - Loving Every Minute (Karaoke)", - "id": "fz0tqZM1sAw" - }, - { - "title": "Jessica Andrews - Who I Am (Karaoke)", - "id": "juMM5Fs5e44" - }, - { - "title": "Eddy Arnold - Make The World Go Away - Play A Tab (Guitar Karaoke) (Karaoke)", - "id": "lZmcMscYA8s" - }, - { - "title": "Marc Anthony - I Need To Know (Karaoke Guide Vocal)", - "id": "90dRvBwrHlo" - }, - { - "title": "Pink - Catch Me While I'm Sleeping (Karaoke)", - "id": "nh9pUxidXAg" - }, - { - "title": "Josh Turner - Why Don't We Just Dance (Karaoke)", - "id": "-eS-yWMeYL4" - }, - { - "title": "Hank Locklin - Happy Birthday To Me (Karaoke)", - "id": "Uy6peR-MjWQ" - }, - { - "title": "Willow - Whip My Hair (Karaoke)", - "id": "qRL_6s3QvI4" - }, - { - "title": "The Kendalls - Heaven's Just A Sin Away (Karaoke)", - "id": "2dk4Ohom_jU" - }, - { - "title": "Mark Wills - Don't Laugh At Me (Karaoke)", - "id": "AjXxoN8FB2s" - }, - { - "title": "The Wilkinsons - I Wanna Be That Girl (Karaoke Guide Vocal)", - "id": "Lps2KNT0nhs" - }, - { - "title": "OneRepublic - Counting Stars (Karaoke)", - "id": "9lh5LQ0dafc" - }, - { - "title": "Mark Dinning - Teen Angel (Karaoke)", - "id": "a-xtT_kdkeQ" - }, - { - "title": "Mariah Carey - All In Your Mind (Karaoke)", - "id": "HyD_AEwLP80" - }, - { - "title": "Goldie Hill - I Let The Stars Get In My Eyes (Karaoke)", - "id": "lQv9oHyOYG4" - }, - { - "title": "Jenny Simpson - Ticket Out Of Kansas (Karaoke)", - "id": "ZqSmTR5hYo4" - }, - { - "title": "Lari White - Take Me (Karaoke)", - "id": "a1k6wKklIHo" - }, - { - "title": "Dixie Rose Deluxe's Honky Tonk, Feed Store, Gun Shop, Used Car, Beer, Bait, BBQ, Barber Sh...", - "id": "-QRT9NNIWQE" - }, - { - "title": "T.G. Sheppard - Do You Wanna Go To Heaven (Karaoke)", - "id": "ZT8NUVU_c2c" - }, - { - "title": "Ne-Yo - One In A Million (Karaoke)", - "id": "WDgBFEWzqBU" - }, - { - "title": "Eddie Rabbitt - You Can't Run From Love (Karaoke)", - "id": "uYWBgM964xE" - }, - { - "title": "Tracy Lawrence - While You Sleep (Karaoke)", - "id": "aq8RwhjMn_8" - }, - { - "title": "Charly McClain - Radio Heart (Karaoke)", - "id": "YV7k4MMA0V8" - }, - { - "title": "Oak Ridge Boys - American Made (Karaoke)", - "id": "lLxx0ODBkQQ" - }, - { - "title": "Crystal Gayle - Turning Away (Karaoke)", - "id": "bw4qnDTrJ2I" - }, - { - "title": "Tim McGraw - Grown Men Don't Cry (Karaoke Guide Vocal)", - "id": "3-Hzw88r29E" - }, - { - "title": "Paula Cole - I Don't Want To Wait (Karaoke)", - "id": "zZoisFR3sKo" - }, - { - "title": "Jack Greene - There Goes My Everything (Karaoke)", - "id": "s3rqumDoIjE" - }, - { - "title": "Tracy Lawrence - Is That A Tear (Karaoke)", - "id": "F44yr_LDNEk" - }, - { - "title": "Tanya Tucker - What's Your Mama's Name (Karaoke)", - "id": "W7p-jAtTHrg" - }, - { - "title": "Jo Dee Messina - Because You Love Me (Karaoke)", - "id": "WB3JRqilUCU" - }, - { - "title": "Sara Evans - You'll Always Be My Baby (Karaoke)", - "id": "wOR_vADJiU8" - }, - { - "title": "The Mavericks - Pretend (Karaoke)", - "id": "zVoqnsAr7gM" - }, - { - "title": "Joe Diffie - This Is Your Brain (Karaoke)", - "id": "h3zq2UjZcX0" - }, - { - "title": "Collin Raye - Gift (The Gift) (Karaoke)", - "id": "MP19nG7n3tU" - }, - { - "title": "Whitney Houston - Heartbreak Hotel (Karaoke)", - "id": "RDDF2fy0xgA" - }, - { - "title": "Sammy Kershaw - One Day Left To Live (Karaoke)", - "id": "x8KEiZxXQ8k" - }, - { - "title": "Tony Rich Project - Nobody Knows (Karaoke)", - "id": "gP3OXD3sIF8" - }, - { - "title": "Sammy Kershaw - Haunted Heart (Karaoke)", - "id": "Hkf7wsuJqYQ" - }, - { - "title": "Gene Watson - Should I Come Home (Or Should I Go Crazy) (Karaoke)", - "id": "BWMXjPh8PUY" - }, - { - "title": "Anita Cochran - For Crying Out Loud (Karaoke)", - "id": "FQTR48Dcidw" - }, - { - "title": "Highwaymen - Michael (Row The Boat Ashore) (Karaoke)", - "id": "6SrmAx8ScDk" - }, - { - "title": "Jake Owen - Something About A Woman (Karaoke)", - "id": "z7vWJeAtu6k" - }, - { - "title": "Righteous Brothers - You're My Soul And Inspiration (Karaoke)", - "id": "quGXXuw00fM" - }, - { - "title": "Wilbert Harrison - Kansas City (Karaoke)", - "id": "EizUsZ0tfAk" - }, - { - "title": "Terri Clark - You're Easy On The Eyes (Karaoke)", - "id": "uhQkAOKVA5o" - }, - { - "title": "Cookies, The - Don't Say Nothin' Bad (About My Baby) (Karaoke)", - "id": "Lqg89FV6pUw" - }, - { - "title": "Maxwell - Lifetime (Karaoke Guide Vocal)", - "id": "art38RMSV_w" - }, - { - "title": "Real McCoy - Come And Get Your Love (Karaoke)", - "id": "0D2ZzS7KDp4" - }, - { - "title": "George Strait - Easy Come, Easy Go (Karaoke)", - "id": "I2g6CfTRVjE" - }, - { - "title": "Gene Watson - Fourteen Carat Mind (Karaoke)", - "id": "MfKgYW4ZYWI" - }, - { - "title": "Chris Brown - Forever (Karaoke)", - "id": "dlm0RFxb_Ec" - }, - { - "title": "Carrie Underwood - We're Young And Beautiful (Karaoke)", - "id": "ExyJ5l2cW3k" - }, - { - "title": "Hank Williams - How Can You Refuse Him Now (Karaoke)", - "id": "T_vUq0arxP0" - }, - { - "title": "Leroy Van Dyke - Walk On By (Karaoke)", - "id": "C00EuJ78urM" - }, - { - "title": "Vern Gosdin - I Can Tell By The Way You Dance (Karaoke)", - "id": "QJANoVQisOM" - }, - { - "title": "Shania Twain - You Lay A Whole Lot Of Love On Me (Karaoke)", - "id": "Ep-9FqLfiQY" - }, - { - "title": "Connie Smith - If It Ain't Love (Let's Leave It Alone) (Karaoke)", - "id": "NZijTwu1bxQ" - }, - { - "title": "Neal McCoy - No Doubt About It (Karaoke)", - "id": "Fv10Aw8CNwM" - }, - { - "title": "George Strait - There's A New Kid In Town (Karaoke)", - "id": "su0UVXLnGG0" - }, - { - "title": "Buck Owens - Under Your Spell Again (Karaoke)", - "id": "mnfMDhtXe1c" - }, - { - "title": "Billy Dean - I Wanna Take Care Of You (Karaoke)", - "id": "H-abgNcz1Ak" - }, - { - "title": "Patsy Cline - In Care Of The Blues (Karaoke)", - "id": "lUTq5kCB5Ik" - }, - { - "title": "Little Texas - I'd Rather Miss You (Karaoke)", - "id": "UYgYjWEqRoM" - }, - { - "title": "Aaron Tippin - Everything I Own (Karaoke)", - "id": "fe-4ywBYELM" - }, - { - "title": "Jeff Carson - Shine On (Karaoke)", - "id": "VXgsaBQH7Yk" - }, - { - "title": "Gary Allan - Lovin' You Against My Will (Karaoke)", - "id": "-yK04yANzLY" - }, - { - "title": "Sara Evans - No Place That Far (Karaoke)", - "id": "lMajp2O-Qkc" - }, - { - "title": "Joe Nichols - The Impossible (Karaoke Guide Vocal)", - "id": "geuzVwWjwLM" - }, - { - "title": "Ty England - All Of The Above (Karaoke)", - "id": "YOYNyKcIDbE" - }, - { - "title": "Toby Keith - Whiskey Girl (Karaoke)", - "id": "GE2uS167-3U" - }, - { - "title": "Jennifer Lopez - I'm Glad (Karaoke)", - "id": "SYTragD6t3A" - }, - { - "title": "Jo Dee Messina - If Not You (Karaoke)", - "id": "lKVECvk9HPw" - }, - { - "title": "Red Foley, Kitty Wells - One By One (Karaoke)", - "id": "jvA3E0Qm6r4" - }, - { - "title": "Martina McBride - Cheap Whiskey (Karaoke)", - "id": "ZArcmFMPRcw" - }, - { - "title": "Oak Ridge Boys - Trying To Love Two Women (Karaoke)", - "id": "dYQSXMjekDM" - }, - { - "title": "Patty Loveless - Thousand Times Day (Karaoke)", - "id": "vs_biTzoeN8" - }, - { - "title": "Joanna Janet - Seven Little Steps (Karaoke Guide Vocal)", - "id": "vjS6tz3Mvtg" - }, - { - "title": "Alan Jackson - Remember When (Karaoke)", - "id": "fbe7Aox8ijY" - }, - { - "title": "Doug Stone - Made For Loving You (Karaoke)", - "id": "bzRZXiznrd0" - }, - { - "title": "Ronnie Milsap - She Keeps The Home Fires Burning (Karaoke)", - "id": "WAnCe43wXPg" - }, - { - "title": "Ginuwine - Differences (Karaoke Guide Vocal)", - "id": "HTwp286KYuk" - }, - { - "title": "George Strait - Round About Way (Karaoke)", - "id": "mX38bbqJ11U" - }, - { - "title": "Ronnie Milsap - There's No Gettin' Over Me (Karaoke)", - "id": "A3h3SWnPH_w" - }, - { - "title": "Don Gibson - Yes I'm Hurting (Karaoke)", - "id": "SM7V1wy1PBM" - }, - { - "title": "Shenandoah - Darned If I Don't (Danged If I Do) (Karaoke)", - "id": "Iyvv-hWzHxs" - }, - { - "title": "Shenandoah - I Want To Be Loved Like That (Karaoke)", - "id": "s38qRyDkzB0" - }, - { - "title": "Holly Dunn - Only When I Love (Karaoke)", - "id": "EN8KxjJUMEM" - }, - { - "title": "Tim McGraw - Just To See You Smile (Karaoke)", - "id": "Q9HfgPY0MnA" - }, - { - "title": "Shenandoah - Janie Baker's Love Slave (Karaoke)", - "id": "1wB6pq0bRpk" - }, - { - "title": "George Strait - Overnight Male (Karaoke)", - "id": "85iul7Vqq0I" - }, - { - "title": "Montgomery John Michael - Cowboy Love (Karaoke)", - "id": "0DpfhUYv5ns" - }, - { - "title": "Clay Walker - Live, Laugh, Love (Karaoke)", - "id": "GqwQEnlVvaE" - }, - { - "title": "David Kersh - Goodnight Sweetheart (Karaoke)", - "id": "A5EZt42U2kg" - }, - { - "title": "Reba McEntire - What If It's You (Karaoke)", - "id": "eC9FqJlhRSg" - }, - { - "title": "Restless Heart - When She Cries (Karaoke)", - "id": "hq1Pnv6Zpuk" - }, - { - "title": "The Paynes - Long Time Coming (Karaoke)", - "id": "AVTQhSjqALw" - }, - { - "title": "Mark Collie - Born To Love You (Karaoke)", - "id": "5BAXi-c3FS8" - }, - { - "title": "Tracy Byrd - The First Step (Karaoke)", - "id": "eJMad8A26rU" - }, - { - "title": "Diamond Rio - Sawmill Road (Karaoke)", - "id": "yYBtzNhxius" - }, - { - "title": "John Michael Montgomery - No Man's Land (Karaoke)", - "id": "4c1iZKu4MDs" - }, - { - "title": "Trisha Yearwood - That's What I Like About You (Karaoke)", - "id": "h0ZmN9qkvAs" - }, - { - "title": "Red Foley - Chattanoogie Shoe Shine Boy (Karaoke)", - "id": "ZFrnw_E4nzU" - }, - { - "title": "Neal McCoy - That Woman Of Mine (Karaoke)", - "id": "HhVCdW6szFc" - }, - { - "title": "Mark Chesnutt - Wherever You Are (Karaoke)", - "id": "jiwgvJR2_UY" - }, - { - "title": "Glen Campbell - I Wanna Live (Karaoke)", - "id": "rxWYIiLn5xk" - }, - { - "title": "George Strait - If I Know Me (Karaoke)", - "id": "JqMnUxbyuSU" - }, - { - "title": "John Michael Montgomery - I Can Love You Like That (Karaoke)", - "id": "5oUSADbmxo0" - }, - { - "title": "Collin Raye - One Boy, One Girl (Karaoke)", - "id": "Xy2ZZosqL3A" - }, - { - "title": "John Conlee - Lady Lay Down (Karaoke)", - "id": "c5fC5aINAak" - }, - { - "title": "Clay Walker - Dreaming With My Eyes Open (Karaoke)", - "id": "ful7eVGmExs" - }, - { - "title": "Mark Collie - Even The Man In The Moon Is Crying (Karaoke)", - "id": "rnzF4jcVjjM" - }, - { - "title": "Shenandoah - Two Dozen Roses (Karaoke)", - "id": "kyFntmIfIKo" - }, - { - "title": "George Strait - The Nerve (Karaoke)", - "id": "kIghhE6S2k0" - }, - { - "title": "Four Tops - Something About You (Karaoke)", - "id": "kbiDcE2XSXA" - }, - { - "title": "Whitney Houston - Miracle (Karaoke)", - "id": "1QSNE3Hg-EA" - }, - { - "title": "The Drifters - Up On The Roof (Karaoke)", - "id": "kk0io-DW9bQ" - }, - { - "title": "Mickey Gilley - Room Full Of Roses (Karaoke)", - "id": "yF0X4fLQ5X4" - }, - { - "title": "Connie Francis - Vacation (Karaoke)", - "id": "Mt0jSqBhmYQ" - }, - { - "title": "Billy Dean - Somewhere In My Broken Heart (Karaoke)", - "id": "3IGAdYQd1lk" - }, - { - "title": "Pam Tillis - All The Good Ones Are Gone (Karaoke)", - "id": "r1z_DmW4K7Y" - }, - { - "title": "George Strait - Lead On (Karaoke)", - "id": "TZTJ5DFSVAM" - }, - { - "title": "Helen Reddy - Ain't No Way To Treat A Lady (Karaoke)", - "id": "vH97l17OqBg" - }, - { - "title": "Vince Gill - Which Bridge To Cross Which Bridge To Burn (Karaoke)", - "id": "sloUjB4Y3i0" - }, - { - "title": "Exile - She's A Miracle (Karaoke)", - "id": "LuMJ6tctpzI" - }, - { - "title": "Rodney Crowell - My Past Is Present (Karaoke)", - "id": "Yf6fx8aTZh4" - }, - { - "title": "Mickey Gilley - A Headache Tomorrow (Or A Heartache Tonight) (Karaoke)", - "id": "BB0iHiz-7e0" - }, - { - "title": "Clay Walker - Who Needs You Baby (Karaoke)", - "id": "L2QUfUEwGjU" - }, - { - "title": "Kathy Mattea - Lonesome Standard Time (Karaoke)", - "id": "zhz299ZcoA4" - }, - { - "title": "Mary Chapin Carpenter - I Feel Lucky (Karaoke)", - "id": "uZ09REm84ws" - }, - { - "title": "Diamond Rio - Mirror Mirror (Karaoke)", - "id": "w8By4ZvIAW4" - }, - { - "title": "Doug Stone - In A Different Light (Karaoke)", - "id": "Xt36a7am0fY" - }, - { - "title": "Tracy Byrd - Holdin' Heaven (Karaoke)", - "id": "o7ZOYozjVW8" - }, - { - "title": "Connie Francis - Everybody's Somebody's Fool (Karaoke)", - "id": "Tqg1Ge9gwO8" - }, - { - "title": "Eddie Rabbitt - Someone Could Lose A Heart Tonight (Karaoke)", - "id": "0dFiUF9MHJM" - }, - { - "title": "Highway 101 - Who's Lonely Now (Karaoke)", - "id": "mtTY6kc8yHs" - }, - { - "title": "Tanya Tucker - Without You What Do I Do With Me (Karaoke)", - "id": "iXEm_UvUHHQ" - }, - { - "title": "Diamond Rio - Meet In The Middle (Karaoke)", - "id": "3As2DoVB4XQ" - }, - { - "title": "Ricky Nelson - Never Be Anyone Else But You (Karaoke)", - "id": "-5z5G6NJmGU" - }, - { - "title": "Eddie Rabbitt - Step By Step (Karaoke)", - "id": "4igeqCMZ-Qg" - }, - { - "title": "Kathy Mattea - Untold Stories (Karaoke)", - "id": "2ihYEbHw4gk" - }, - { - "title": "Barbara Mandrell, Lee Greenwood - To Me (Karaoke)", - "id": "m3ManmA3SlU" - }, - { - "title": "Ronnie Milsap - Snap Your Fingers (Karaoke)", - "id": "rEDq98LSQdw" - }, - { - "title": "Billy Dean - Only Here For A Little While (Karaoke)", - "id": "KkU6Xmmieds" - }, - { - "title": "Mary Chapin Carpenter - How Do (Karaoke)", - "id": "CEjtX4DHQO4" - }, - { - "title": "Patsy Cline - Foolin' Around (Karaoke)", - "id": "IZeWOORZg5k" - }, - { - "title": "Exile - Give Me One More Chance (Karaoke)", - "id": "83sefq50vJU" - }, - { - "title": "George Strait - What's Going On In Your World (Karaoke)", - "id": "2uRmetYUUnw" - }, - { - "title": "Exile - I Don't Want To Be A Memory (Karaoke)", - "id": "U538uTb8AuY" - }, - { - "title": "George Strait - I've Come To Expect It From You (Karaoke)", - "id": "OfUfJLz_-vE" - }, - { - "title": "Reba McEntire - Little Rock (Karaoke)", - "id": "oBeiZrU8uTA" - }, - { - "title": "Kathy Mattea - Come From The Heart (Karaoke)", - "id": "9MF-dqv0yQQ" - }, - { - "title": "Randy Travis - Forever And Ever, Amen (Karaoke)", - "id": "XWK06N3Pn7M" - }, - { - "title": "Exile - Nobody's Talking (Karaoke)", - "id": "2e7dEqtgqkY" - }, - { - "title": "Shelby Lynne - I'll Lie Myself To Sleep (Karaoke)", - "id": "3i8dsdCgwk8" - }, - { - "title": "Holly Dunn - That's What Your Love Does To Me (Karaoke)", - "id": "c7c4dXhPPOk" - }, - { - "title": "Kathy Mattea - Walk The Way The Wind Blows (Karaoke)", - "id": "dmg5xcTB_LA" - }, - { - "title": "R3HAB & Jolin Tsai - Stars Align (Alle Farben Remix) (Karaoke)", - "id": "KeJKbJU8QnM" - }, - { - "title": "Bebe Rexha - Last Hurrah (Karaoke)", - "id": "LnDJUxYrbCI" - }, - { - "title": "Kenny Chesney - Flip-Flop Summer (Karaoke)", - "id": "pKLZvWeF4pk" - }, - { - "title": "Lana Del Rey - Let Me Love You Like A Woman (Karaoke)", - "id": "oK8_eMQ5YBI" - }, - { - "title": "Khalid - My Bad (Karaoke)", - "id": "1G5QPSv5YX8" - }, - { - "title": "Five Finger Death Punch - A Little Bit Off (Karaoke)", - "id": "hmKxci5HjzA" - }, - { - "title": "Bring Me The Horizon & Yungblud - Obey (Duet Version) (Karaoke)", - "id": "SlphrrsoleA" - }, - { - "title": "Aron Wright - Look After You (Karaoke)", - "id": "lzLv-MrofOU" - }, - { - "title": "Pet Shop Boys - What Are We Going To Do About The Rich (Karaoke)", - "id": "W57a9qo5emQ" - }, - { - "title": "Craig Morgan - This Ain't Nothin' (Karaoke)", - "id": "3nVexor6DwU" - }, - { - "title": "Keith Urban - God Whispered Your Name (Karaoke)", - "id": "f-Otkn1bNk8" - }, - { - "title": "All-4-One - I Can Love You Like That (Karaoke)", - "id": "iYOsRYVVJOw" - }, - { - "title": "Four Tops - 7 Rooms of Gloom (Karaoke)", - "id": "qCKHOIvfTFM" - }, - { - "title": "David Houston - Where Love Used To Live (Karaoke)", - "id": "WCqiNP2tB7M" - }, - { - "title": "David Houston - I Do My Swinging At Home (Karaoke)", - "id": "EjmIaglOHhs" - }, - { - "title": "Travis Tritt - Put Some Drive In Your Country (Karaoke)", - "id": "rSOGUe-ps_E" - }, - { - "title": "Travis Tritt - Nothing Short Of Dying (Karaoke)", - "id": "6ubwIeKH-OU" - }, - { - "title": "Travis Tritt - Move It On Over (Karaoke)", - "id": "Yt_zcjajKZo" - }, - { - "title": "Travis Tritt - Anymore (Karaoke)", - "id": "2w9i5IwY2cw" - }, - { - "title": "Travis Tritt - Here's A Quarter (Call Someone Who Cares) (Karaoke)", - "id": "zRsU85CApAk" - }, - { - "title": "Tim McGraw - Please Remember Me (Karaoke)", - "id": "mlor2ZWuJ70" - }, - { - "title": "Tanya Tucker - One Love At A Time (Karaoke)", - "id": "vB8p3m74NkQ" - }, - { - "title": "Sara Evans - Cryin' Game (Karaoke)", - "id": "cVViFYMjBc0" - }, - { - "title": "Patty Loveless - If My Heart Had Windows (Karaoke)", - "id": "HvYSvPS25aI" - }, - { - "title": "Mark Chesnutt - Brother Jukebox (Karaoke)", - "id": "MZaTrSY5Ozs" - }, - { - "title": "Lorrie Morgan - Back In Your Arms Again (Karaoke)", - "id": "sGJYkIHWWyI" - }, - { - "title": "Lee Roy Parnell - Power Of Love (Karaoke)", - "id": "cGoIP6q_xBA" - }, - { - "title": "Lee Ann Womack - You've Got To Talk To Me (Karaoke)", - "id": "fYItTN1PDzo" - }, - { - "title": "John Michael Montgomery - If You've Got Love (Karaoke)", - "id": "OpvdEc46w-I" - }, - { - "title": "John Berry - She's Taken A Shine (Karaoke)", - "id": "kZ4tixbdPug" - }, - { - "title": "Joe Diffie - Texas Size Heartache (Karaoke)", - "id": "E4pYDoSaBQk" - }, - { - "title": "Janie Fricke - She's Single Again (Karaoke)", - "id": "j-_RIxUyw4c" - }, - { - "title": "George Jones - Take Me (Karaoke)", - "id": "uNYEGceymTQ" - }, - { - "title": "Fall Out Boy - Irresistible (Karaoke)", - "id": "ubaYtykddwU" - }, - { - "title": "Eric Church - Sinners Like Me (Karaoke)", - "id": "53fMrxL36KA" - }, - { - "title": "Eric Church - Guys Like Me (Karaoke)", - "id": "G0YBAU6K1DI" - }, - { - "title": "Doug Stone - Warning Labels (Karaoke)", - "id": "ZrrbdUWt5Bc" - }, - { - "title": "Andy Griggs, Martina McBride - Practice Life (Karaoke)", - "id": "cCmsQgZAQFk" - }, - { - "title": "Alabama - Jukebox In My Mind (Karaoke)", - "id": "Lw6jbee81Ck" - }, - { - "title": "Alabama - The Cheap Seats (Karaoke)", - "id": "n6prw4dmkjM" - }, - { - "title": "George Jones - You've Still Got A Place In My Heart (Karaoke)", - "id": "Y0KZvKDVXm0" - }, - { - "title": "Brooks & Dunn - Ain't Nothing 'Bout You (Karaoke)", - "id": "cACo7W2XiM0" - }, - { - "title": "Brooks & Dunn - We'll Burn That Bridge (Karaoke)", - "id": "sVxwQi1w3p8" - }, - { - "title": "Brooks & Dunn - My Next Broken Heart (Karaoke)", - "id": "-t7yjcw-A_U" - }, - { - "title": "Roger Miller - Husbands And Wives (Karaoke)", - "id": "bQ5rp4kY4bg" - }, - { - "title": "Brooks & Dunn - Husbands And Wives (Karaoke)", - "id": "ioyQUFJHWeI" - }, - { - "title": "Brooks & Dunn - How Long Gone (Karaoke)", - "id": "NVwmFWcrQAI" - }, - { - "title": "Brooks & Dunn - Honky Tonk Truth (Karaoke)", - "id": "8B6RnMpXDp4" - }, - { - "title": "Brooks & Dunn - Brand New Man (Karaoke)", - "id": "_A3RkiUNvEw" - }, - { - "title": "Brooks & Dunn - I'll Never Forgive My Heart (Karaoke)", - "id": "6DkD8Nw9NpE" - }, - { - "title": "Brooks & Dunn - Heartbroke Out Of My Mind (Karaoke)", - "id": "zcq9jE9GPBI" - }, - { - "title": "Mary Chapin Carpenter - The Hard Way (Karaoke)", - "id": "lowoZFEG3sQ" - }, - { - "title": "Little Boots - Earthquake (Karaoke)", - "id": "5sQzn8D20_s" - }, - { - "title": "Ricky Skaggs & James Taylor - New Star Shining (Karaoke)", - "id": "Rk7JAAKhmA8" - }, - { - "title": "Vince Gill - Liza Jane (Karaoke)", - "id": "tB1R5PUmt2U" - }, - { - "title": "Alicia Keys - Piano & I (Karaoke)", - "id": "VlW_Z3lm19k" - }, - { - "title": "Debbie Gibson - Lost In Your Eyes (Karaoke)", - "id": "v3cJTJMuaMI" - }, - { - "title": "Tanya Tucker - Love's The Answer (Karaoke)", - "id": "IXzp8gE9yso" - }, - { - "title": "Hilary Duff - Fly (Karaoke)", - "id": "megSGqLCUMA" - }, - { - "title": "Hilary Duff - Come Clean (Karaoke)", - "id": "fSEpzqdoPCw" - }, - { - "title": "Restless Road & Kane Brown - Take Me Home (Karaoke)", - "id": "wFo3QiL3uKY" - }, - { - "title": "Elton John & Dua Lipa - Cold Heart (PNAU Remix) (Karaoke)", - "id": "8PZ4CIZwyck" - }, - { - "title": "Sting - Angel Eyes (Karaoke)", - "id": "BkRqklosRpA" - }, - { - "title": "Skeeter Davis - End Of The World (Karaoke)", - "id": "-_XjwpGxF_c" - }, - { - "title": "Joe Nichols - What's A Guy Gotta Do (Karaoke)", - "id": "xrBw3sABAik" - }, - { - "title": "Lee Brice - Beautiful Every Time (Karaoke)", - "id": "BBpECBOOPr0" - }, - { - "title": "Lee Ann Womack - I May Hate Myself In The Morning (Karaoke)", - "id": "MB5iRPg86OE" - }, - { - "title": "Enrique Iglesias & Ludacris - Tonight (I'm Lovin' You) (Karaoke)", - "id": "U0a7o22f2Bo" - }, - { - "title": "Sub Urban - Cradles (Karaoke)", - "id": "ldBAESyycLM" - }, - { - "title": "Kevin Gates - 2 Phones (Karaoke)", - "id": "2MSJp_YtUhA" - }, - { - "title": "k.d. lang - Big Big Love (Karaoke)", - "id": "h8QDF-9blIA" - }, - { - "title": "Mary Chapin Carpenter - Something Of A Dreamer (Karaoke)", - "id": "m1bbyvMQ6oA" - }, - { - "title": "Dwight Yoakam - I Want You To Want Me (Karaoke)", - "id": "uhfmICfEdZw" - }, - { - "title": "Cheap Trick - Surrender (Karaoke)", - "id": "WOrUBESWZUk" - }, - { - "title": "Wynonna - Girls With Guitars (Karaoke)", - "id": "DWqooPgXvmg" - }, - { - "title": "Mary Chapin Carpenter - Down At The Twist And Shout (Karaoke)", - "id": "ePbVWH_YNVQ" - }, - { - "title": "J. J. Jackson - But It's Alright (Karaoke)", - "id": "h5e95HNdo88" - }, - { - "title": "Merle Haggard - Red Bandana (Karaoke)", - "id": "YgxnZdE0OIg" - }, - { - "title": "Mary Chapin Carpenter - Come On Come On (Karaoke)", - "id": "XHICk2AqQf4" - }, - { - "title": "Merle Haggard - Someday When Things Are Good (Karaoke)", - "id": "U6eJHKzBDhw" - }, - { - "title": "Westlife - Fool Again (Karaoke)", - "id": "gy6CWiA51aU" - }, - { - "title": "Marvin Gaye - Let's Get It On [Unplugged] (Karaoke)", - "id": "ad6n-nWBaLU" - }, - { - "title": "Mary Chapin Carpenter - You Win Again (Karaoke)", - "id": "o4jlAjAa4Oc" - }, - { - "title": "Sweet Inspirations - Sweet Inspiration (Karaoke)", - "id": "5Yjatcuxa5I" - }, - { - "title": "Sarah McLachlan - Good Enough (Karaoke)", - "id": "1ntqxN_T2io" - }, - { - "title": "Sarah McLachlan - Possession (Karaoke)", - "id": "5sjLvnJe3Nw" - }, - { - "title": "Wynonna - Woman To Woman (Karaoke)", - "id": "PYudV3id29s" - }, - { - "title": "Elton John - Simple Life (Karaoke)", - "id": "VxBi_A3qbf8" - }, - { - "title": "Sia & Kendrick Lamar - The Greatest (Karaoke)", - "id": "zUriUjmaQWo" - }, - { - "title": "Jim & Jesse - Ole Slew Foot (Karaoke)", - "id": "ZT1j4JlLYvo" - }, - { - "title": "Jim Reeves - Adios Amigo (Karaoke)", - "id": "dX7uvjX_2Uk" - }, - { - "title": "The Script - The Last Time (Karaoke)", - "id": "iiqpFovbJBM" - }, - { - "title": "Kane Brown & John Legend - Last Time I Say Sorry (Duet Version) (Karaoke)", - "id": "iucvhX-iyxM" - }, - { - "title": "Suzy Bogguss - Somewhere Between (Karaoke)", - "id": "WA-F371kUV8" - }, - { - "title": "Billy \"Crash\" Craddock - I Cheated On A Good Woman's Love (Karaoke EZ Sing)", - "id": "1XPhQ5CLIRo" - }, - { - "title": "Tammy Wynette - Sweet Dreams (Karaoke)", - "id": "tQV_O5g84fo" - }, - { - "title": "Tammy Wynette - Good Lovin' Makes It Right (Karaoke)", - "id": "RDm6C2cH8LQ" - }, - { - "title": "The Toys - A Lover's Concerto (Karaoke)", - "id": "C45_QIwLLtI" - }, - { - "title": "Three Days Grace - I Hate Everything About You (Karaoke)", - "id": "2BgVE1LmKWg" - }, - { - "title": "Bryan Adams - I'll Always Be Right There (Karaoke)", - "id": "KZg9dDarUCk" - }, - { - "title": "Jonathan Singleton & The Grove - Look Who's Back In Love (Karaoke)", - "id": "YcwT1KxiijU" - }, - { - "title": "Jonas Brothers - Paranoid (Karaoke)", - "id": "Cf8wO1wONUw" - }, - { - "title": "Train - Calling All Angels (Karaoke)", - "id": "LIkmTSAHo50" - }, - { - "title": "The Impalas - Sorry (I Ran All The Way Home) (Karaoke)", - "id": "md7UU-fbca0" - }, - { - "title": "Jason Aldean & Kelly Clarkson - Don't You Wanna Stay (Karaoke)", - "id": "Pdp3MOVt6i8" - }, - { - "title": "Panic! At The Disco - Ready To Go (Get Me Out Of My Mind) (Karaoke)", - "id": "K65fitqepyY" - }, - { - "title": "Tracy Byrd - Ten Rounds With Jose Cuervo (Karaoke)", - "id": "PPJBifd3b9Y" - }, - { - "title": "Tracy Byrd - How'd I Wind Up In Jamaica (Karaoke)", - "id": "PyQuOun9Ruo" - }, - { - "title": "The Charlie Daniels Band - Funky Junky (Karaoke)", - "id": "qLh1KKud0hM" - }, - { - "title": "Easton Corbin - I Can't Love You Back (Karaoke)", - "id": "Y2tvybwo8LY" - }, - { - "title": "Tammy Wynette - They Call It Making Love (Karaoke)", - "id": "4mf2925wRPQ" - }, - { - "title": "Tammy Wynette - Too Far Gone (Karaoke Guide Vocal)", - "id": "FH9Cm2o1Too" - }, - { - "title": "Tammy Wynette - Almost Persuaded (Karaoke)", - "id": "X6We0Pc2rik" - }, - { - "title": "Tammy Wynette - Good Lovin' Makes It Right (Karaoke Guide Vocal)", - "id": "VxMnpRkwJ8I" - }, - { - "title": "Delbert McClinton - Same Kind Of Crazy (Karaoke)", - "id": "TavZqq1rvRw" - }, - { - "title": "Tammy Wynette - The Ways To Love A Man (Karaoke)", - "id": "AwJpEsNzH5U" - }, - { - "title": "Sara Evans - Born To Fly (Karaoke)", - "id": "Lff_sLHQuKs" - }, - { - "title": "Johnnie Taylor - Disco Lady (Karaoke)", - "id": "uyLVbBTAhRA" - }, - { - "title": "T. Graham Brown - Never In A Million Tears (Karaoke)", - "id": "l6dGwMyVg_E" - }, - { - "title": "Rob Thomas - Lonely No More (Karaoke)", - "id": "r8FbjFKV-L0" - }, - { - "title": "Barry Manilow - Could It Be Magic (Karaoke)", - "id": "QmRMbsEKnqA" - }, - { - "title": "Billy \"Crash\" Craddock - I Cheated On A Good Woman's Love (Karaoke Guide Vocal)", - "id": "_080HHETuFU" - }, - { - "title": "Bryan Adams - Have You Ever Really Loved A Woman (Karaoke)", - "id": "bhF2EXtR5as" - }, - { - "title": "Rosie & The Originals - Angel Baby (Karaoke)", - "id": "vBorMWDk3iE" - }, - { - "title": "Huey Lewis & The News - But It's Alright (Karaoke)", - "id": "g3a78kZ6jrQ" - }, - { - "title": "Eric Church - Record Year (Karaoke)", - "id": "_jZhe9FNAY0" - }, - { - "title": "Eric Church - Like Jesus Does (Karaoke)", - "id": "tjdTa61j1yw" - }, - { - "title": "Webb Pierce - Honky Tonk Song (Karaoke)", - "id": "4tZaw9JOsiQ" - }, - { - "title": "Miranda Lambert - The House That Built Me (Karaoke)", - "id": "5VzG_AnPQLA" - }, - { - "title": "Blink-182 - All The Small Things (Karaoke)", - "id": "gDopOhL2X6Q" - }, - { - "title": "Brook Benton - Rainy Night In Georgia (Karaoke)", - "id": "5aKtvyjWABU" - }, - { - "title": "Alan Jackson - Who's Cheatin' Who (Karaoke)", - "id": "gZ-vthDRUZA" - }, - { - "title": "Kenny Rogers - He Will, She Knows (Karaoke)", - "id": "zm1eMim5dBA" - }, - { - "title": "Roy Orbison - Goodnight (Karaoke)", - "id": "M_-rU3-KfwI" - }, - { - "title": "Dixie Chicks - Cold Day In July (Karaoke)", - "id": "icLL1_z2jcQ" - }, - { - "title": "Jonathan Singleton & The Grove - Look Who's Back In Love (Karaoke Guide Vocal)", - "id": "cX48ZDBsvyA" - }, - { - "title": "Kongos - Come With Me Now (Karaoke)", - "id": "ynuywzCF1hc" - }, - { - "title": "Train - Calling All Angels (Karaoke Guide Vocal)", - "id": "-FWkYV5pO4U" - }, - { - "title": "Jonas Brothers - Paranoid (Karaoke Guide Vocal)", - "id": "RTPVZBgovOs" - }, - { - "title": "Kelly Clarkson - Let Your Tears Fall (Karaoke)", - "id": "PoIxObS3cwo" - }, - { - "title": "Dale & Grace - I'm Leavin' It All Up To You (Karaoke)", - "id": "aCR1N6QXsqs" - }, - { - "title": "Engelbert Humperdinck - The Last Waltz (Karaoke)", - "id": "x1OrKx-6ywY" - }, - { - "title": "Glen Campbell - Dream Baby (Karaoke)", - "id": "dzidpzgr3ZE" - }, - { - "title": "Hank Thompson - Wild Side Of Life (Karaoke)", - "id": "l_N8w-IIu8c" - }, - { - "title": "Hal Ketchum - Five O'Clock World (Karaoke)", - "id": "pkBvYJt88gw" - }, - { - "title": "The Impalas - Sorry (I Ran All The Way Home) (Karaoke Guide Vocal)", - "id": "0piWlgID_i4" - }, - { - "title": "Engelbert Humperdinck - Spanish Eyes (Karaoke)", - "id": "UN6lCK-ukC4" - }, - { - "title": "Glenn Miller & His Orchestra - Chattanooga Choo Choo (Karaoke)", - "id": "UMd5DiYKZ8E" - }, - { - "title": "Jason Aldean & Kelly Clarkson - Don't You Wanna Stay (Karaoke Guide Vocal)", - "id": "8U5ErrTIUxo" - }, - { - "title": "Daughtry - Waiting For Superman (Karaoke)", - "id": "ST7N1ix8wak" - }, - { - "title": "Jason Derulo - Ridin' Solo (Karaoke)", - "id": "MeNtgCEQXgM" - }, - { - "title": "Jason Derulo - Marry Me (Karaoke)", - "id": "OwhGyAHcyRc" - }, - { - "title": "Panic At The Disco - Ready To Go (Get Me Out Of My Mind) (Karaoke Guide Vocal)", - "id": "OekflifPv5k" - }, - { - "title": "Panic At The Disco - Nine In The Afternoon (Karaoke)", - "id": "EWOu7wCLFls" - }, - { - "title": "Lee Ann Womack - Something Worth Leaving Behind (Karaoke)", - "id": "-i6A3KU6JHI" - }, - { - "title": "Lee Ann Womack - I Hope You Dance (Karaoke)", - "id": "r74SYsO34Y0" - }, - { - "title": "Tracy Byrd - Ten Rounds With Jose Cuervo (Karaoke Guide Vocal)", - "id": "L7Rtl1AvtD8" - }, - { - "title": "Tracy Byrd - How'd I Wind Up In Jamaica (Karaoke Guide Vocal)", - "id": "xALO9Www5J0" - }, - { - "title": "Tanya Tucker - Delta Dawn (Karaoke)", - "id": "wBm18sR0ybM" - }, - { - "title": "Rod Stewart - Some Guys Have All The Luck (Karaoke)", - "id": "pkbuY_UHBwk" - }, - { - "title": "Garth Brooks & Trisha Yearwood - Squeeze Me In (Karaoke)", - "id": "zgtJpFjZMUI" - }, - { - "title": "Brooks & Dunn - Whiskey Under The Bridge (Karaoke)", - "id": "kpExX__MEis" - }, - { - "title": "Tammy Wynette - Singing My Song (Karaoke)", - "id": "dIiZnqb6CG4" - }, - { - "title": "Tammy Wynette - Take Me To Your World (Karaoke)", - "id": "OnK77IGuELM" - }, - { - "title": "Hank Williams - Alone And Forsaken (Karaoke)", - "id": "2gaMrVukKTA" - }, - { - "title": "Commander Cody & His Lost Planet Airmen - Hot Rod Lincoln (Karaoke)", - "id": "28QHjonuiGM" - }, - { - "title": "Train - Drops Of Jupiter (Karaoke)", - "id": "9hnlatCUwFk" - }, - { - "title": "George Jones & Tammy Wynette - Two Story House (Karaoke)", - "id": "F09aWsyBgyM" - }, - { - "title": "Tim McGraw - Where The Green Grass Grows (Karaoke)", - "id": "fpeZ4J9cYVo" - }, - { - "title": "Faron Young - Hello Walls (Karaoke)", - "id": "dtibKmXir0Y" - }, - { - "title": "The Charlie Daniels Band - Funky Junky (Karaoke Guide Vocal)", - "id": "G0yIF_E4tvA" - }, - { - "title": "Charlie Rich - Rollin' With The Flow (Karaoke)", - "id": "w1lKXONd0bM" - }, - { - "title": "Canned Heat - Going Up The Country (Karaoke)", - "id": "ql8HjcxaGzo" - }, - { - "title": "Lefty Frizzell - Saginaw, Michigan (Karaoke)", - "id": "UznDolaPa9c" - }, - { - "title": "David Allan Coe & Bill Anderson - Get A Little Dirt On Your Hands (Karaoke)", - "id": "8Cb1gMGmzN8" - }, - { - "title": "Brad Paisley & Alison Kraus - Whiskey Lullaby (Karaoke)", - "id": "o7-yjwrlEkY" - }, - { - "title": "Dee Dee Sharp - Mashed Potato Time (Karaoke)", - "id": "szPX-rDoVJM" - }, - { - "title": "Roy Orbison - Running Scared (Karaoke)", - "id": "mLZYLHDVlxg" - }, - { - "title": "Hootie & The Blowfish - Old Man & Me (Karaoke)", - "id": "X0SARWSkPTc" - }, - { - "title": "Carole King - Sweet Seasons (Karaoke)", - "id": "zZoNHNRJ__4" - }, - { - "title": "Roy Orbison - Blue Angel (Karaoke)", - "id": "CFP3S8TMJ38" - }, - { - "title": "Alan Jackson - Drive (For Daddy Gene) (Karaoke)", - "id": "U9a4vwgY6u4" - }, - { - "title": "Dwight Yoakam & Buck Owens - Streets Of Bakersfield (Karaoke)", - "id": "YTB8A56eRjw" - }, - { - "title": "Christina Aguilera, Pink, Mya, Lil' Kim - Lady Marmalade (Karaoke)", - "id": "8Uei5lRh_DA" - }, - { - "title": "Britney Spears - Womanizer (Karaoke)", - "id": "OUVkePP0s0M" - }, - { - "title": "Joni Mitchell - Big Yellow Taxi (Karaoke)", - "id": "AYhTbssRGPU" - }, - { - "title": "Marc Cohn - Walking In Memphis (Karaoke)", - "id": "IGzn_MRzh54" - }, - { - "title": "The Miracles - You've Really Got A Hold On Me (Karaoke)", - "id": "GeihRM6sFZI" - }, - { - "title": "Johnny Mathis - It's Not For Me To Say (Karaoke)", - "id": "CUlU9I7pyOU" - }, - { - "title": "P. Diddy - I Need A Girl (Karaoke)", - "id": "24M4U1DxCfk" - }, - { - "title": "Johnny Cash - Hurt (Karaoke)", - "id": "o_7dxSS5TRk" - }, - { - "title": "Megan Thee Stallion - Thot S--t (Karaoke)", - "id": "qbkdB6uk1dU" - }, - { - "title": "Easton Corbin - I Can't Love You Back (Karaoke Guide Vocal)", - "id": "th4yjYbWR0M" - }, - { - "title": "Louis Tomlinson - Kill My Mind (Karaoke)", - "id": "xLdn8Q-IoKI" - }, - { - "title": "Kane Brown - For My Daughter (Karaoke)", - "id": "jZlOiI3F5BY" - }, - { - "title": "Dion - Ruby Baby (Karaoke)", - "id": "f9CPTxM4B6s" - }, - { - "title": "Barry Manilow - Ships (Karaoke)", - "id": "Xks_Tp1cQno" - }, - { - "title": "Bachman-Turner Overdrive - Four Wheel Drive (Karaoke)", - "id": "s9g8vVE8Nyg" - }, - { - "title": "Gloria Estefan - Everlasting Love (Karaoke)", - "id": "HwiNv8xrse4" - }, - { - "title": "Glen Campbell - Gentle On My Mind (Karaoke)", - "id": "ZG-8l1A_Pa0" - }, - { - "title": "Four Tops - Bernadette (Karaoke)", - "id": "qTkW3onCrYs" - }, - { - "title": "Norah Jones - Come Away With Me (Karaoke)", - "id": "6W3-33g9dZY" - }, - { - "title": "Anne Murray - Could I Have This Dance (Karaoke)", - "id": "L6-vnZa6I6M" - }, - { - "title": "Mariah Carey - Always Be My Baby (Karaoke)", - "id": "pm3YAUMeebk" - }, - { - "title": "Pharrell Williams - Happy (Karaoke)", - "id": "9L7WfC60Ajw" - }, - { - "title": "The Marvelettes - Please Mr. Postman (Karaoke)", - "id": "nwD35uWNP64" - }, - { - "title": "Pink - Raise Your Glass (Karaoke)", - "id": "VOPp0hLuWiQ" - }, - { - "title": "Sia - Elastic Heart (Karaoke)", - "id": "l8y1np66zSo" - }, - { - "title": "The Supremes - I Hear A Symphony (Karaoke)", - "id": "YG39qwJk7eo" - }, - { - "title": "Martina McBride - Strangers (Karaoke)", - "id": "7qLWhAHZvkY" - }, - { - "title": "KT Tunstall - Suddenly I See (Karaoke)", - "id": "QuqIwMphQU8" - }, - { - "title": "Tanya Tucker - Don't Believe My Heart Can Stand Another You (Karaoke)", - "id": "l3NawQACIbE" - }, - { - "title": "Jack Greene - Until My Dreams Come True (Karaoke)", - "id": "c4rsm46xyDU" - }, - { - "title": "Donna Fargo - Little Girl Gone (Karaoke)", - "id": "fF6kIKZULdE" - }, - { - "title": "Little Texas - First Time For Everything (Karaoke)", - "id": "6iyDWsEDZzU" - }, - { - "title": "Barry Manilow - It's Not For Me To Say (Karaoke)", - "id": "CRxQ0_hK4As" - }, - { - "title": "The Broadman Hymnal - When I Survey The Wondrous Cross (Karaoke)", - "id": "A_lKHyGKH68" - }, - { - "title": "Reba McEntire - The Angels Sang (Karaoke)", - "id": "ohca5tsg9mQ" - }, - { - "title": "Ashley Gearing - Ribbons Of Love (Karaoke)", - "id": "IKjhCCTL0kg" - }, - { - "title": "Eric Clapton - White Christmas (Karaoke)", - "id": "qRXSZNYMcis" - }, - { - "title": "Mariah Carey - Miss You Most (At Christmas Time) (Karaoke EZ Sing)", - "id": "sAXymzcpISk" - }, - { - "title": "Carrie Underwood - Silent Night (Karaoke)", - "id": "CBlziwDB8bY" - }, - { - "title": "Travis Tritt - Christmas In My Hometown (Karaoke)", - "id": "60XaV1g8H_0" - }, - { - "title": "Merle Haggard - Santa Claus And Popcorn (Karaoke)", - "id": "S6oTMRhe8Ak" - }, - { - "title": "George Strait - The Chair (Karaoke)", - "id": "II_Rq1Z64_I" - }, - { - "title": "Four Tops - Reach Out I'll Be There (Karaoke)", - "id": "Hp6b0aJY--w" - }, - { - "title": "Brooks & Dunn - You're Gonna Miss Me When I'm Gone (Karaoke)", - "id": "Jfmn1hzfsJ4" - }, - { - "title": "Ant Saunders - Yellow Hearts (Karaoke)", - "id": "XXWIFg_cLrw" - }, - { - "title": "Carrie Underwood and John Legend - Hallelujah (Duet Version) (Karaoke)", - "id": "61ibkbSi67o" - }, - { - "title": "Craig Morgan - The Father, My Son And The Holy Ghost (Karaoke)", - "id": "Hw8k57SBwuE" - }, - { - "title": "Justin Wellington - Iko Iko (Karaoke)", - "id": "Cdqxt_ta8CM" - }, - { - "title": "k.d. lang - Down To My Last Cigarette (Karaoke)", - "id": "83vssnLPjfc" - }, - { - "title": "k.d. lang - Lock, Stock And Teardrops (Karaoke)", - "id": "xZPpu2jWQM4" - }, - { - "title": "Tori Kelly - Nobody Love (Karaoke)", - "id": "kOiiyq1_c0E" - }, - { - "title": "T. Graham Brown - Moonshadow Road (Karaoke)", - "id": "4qFaTQa1HRU" - }, - { - "title": "Lee Greenwood & Suzy Bogguss - Hopelessly Yours (Karaoke)", - "id": "czV-4pjPtNs" - }, - { - "title": "Diana Ross & The Supremes - Love Child (Karaoke)", - "id": "8lMrYg3HhTI" - }, - { - "title": "Alabama - If I Had You (Karaoke)", - "id": "PIW-dNNJoF4" - }, - { - "title": "Holly Dunn - There Goes My Heart Again (Karaoke)", - "id": "mewPdhPUkqM" - }, - { - "title": "Anita Baker - Sweet Love (Karaoke)", - "id": "fdtSjGPIkyE" - }, - { - "title": "Alabama - Southern Star (Karaoke)", - "id": "zVZfhNYixOA" - }, - { - "title": "Terri Clark - If I Were You (Karaoke)", - "id": "s-6exV2kf_w" - }, - { - "title": "Selena - I Could Fall In Love (Karaoke)", - "id": "VsxXzJ3BBFE" - }, - { - "title": "George Strait - Famous Last Words Of A Fool (Karaoke)", - "id": "V0aSRT0Ffvc" - }, - { - "title": "Roy Orbison - Only The Lonely (Karaoke)", - "id": "hokK7aY1v2Q" - }, - { - "title": "En Vogue - My Lovin' (You're Never Gonna Get It) (Karaoke)", - "id": "jFmfDu13uL0" - }, - { - "title": "Roy Orbison - In Dreams (Karaoke)", - "id": "cq_IXcNt46k" - }, - { - "title": "Don McLean - Crying (Karaoke)", - "id": "kv8PR4PaHRE" - }, - { - "title": "Three Dog Night - Easy To Be Hard (Karaoke)", - "id": "IzWkV1GNjzA" - }, - { - "title": "Roy Orbison - It's Over (Karaoke)", - "id": "VOEO5WgroOc" - }, - { - "title": "Roy Orbison - Crying (Karaoke)", - "id": "z-21z2S7b1s" - }, - { - "title": "Elvis Presley - Silver Bells (Karaoke)", - "id": "TvTcPHmKT4k" - }, - { - "title": "Doug Stone - All I Want For Christmas Is You (Karaoke)", - "id": "BMv9p7ksloM" - }, - { - "title": "Traditional Christmas - Silver Bells (Karaoke)", - "id": "Z2UqNaUBzp0" - }, - { - "title": "Elvis Presley - On A Snowy Christmas Night (Karaoke)", - "id": "CE_coWRXM8o" - }, - { - "title": "Randy Travis - How Do I Wrap My Heart Up For Christmas (Karaoke)", - "id": "euyr-uMn2GI" - }, - { - "title": "The Lettermen - Deck The Halls (Karaoke)", - "id": "_TgqF5HSLU8" - }, - { - "title": "Elvis Presley - It Won't Seem Like Christmas Without You (Karaoke)", - "id": "WVYqsdEPqsk" - }, - { - "title": "Ricky Van Shelton - Please Come Home For Christmas (Karaoke)", - "id": "HjxNAV5nvAE" - }, - { - "title": "Eagles - Please Come Home For Christmas (Karaoke)", - "id": "_ClLCCWoa5Q" - }, - { - "title": "George Strait - When It's Christmas Time In Texas (Karaoke)", - "id": "E-W3KwR3TUg" - }, - { - "title": "Elvis Presley - Silent Night (Karaoke)", - "id": "DU5xgOYXTTA" - }, - { - "title": "Heavy Metal Christmas - We Wish You A Merry Christmas (Karaoke)", - "id": "dOJ5GYlp9-M" - }, - { - "title": "Tammy Wynette - You And Me (Karaoke)", - "id": "AGrRYfKWVZ4" - }, - { - "title": "Tammy Wynette - One Of A Kind (Karaoke)", - "id": "kAlhE5JX2F8" - }, - { - "title": "Marvin Gaye & Tammi Terrell - Ain't Nothin' Like The Real Thing (Karaoke)", - "id": "6Rx_tnDR2bE" - }, - { - "title": "Marvin Gaye & Tammi Terrell - Ain't No Mountain High Enough (Karaoke)", - "id": "hC7sjBqttqU" - }, - { - "title": "Erykah Badu - Your Precious Love (Karaoke)", - "id": "-pXF5z_Z1BI" - }, - { - "title": "Porter Wagoner - We Wish You A Merry Christmas (Karaoke)", - "id": "Gavl9zlUwYI" - }, - { - "title": "Tracy Lawrence - Time Marches On (Karaoke)", - "id": "QTjXXQE3F0M" - }, - { - "title": "Tommy Roe - Sheila (Karaoke)", - "id": "H_A6G2q4ZeY" - }, - { - "title": "Three Days Grace - I Hate Everything About You (Karaoke Guide Vocal)", - "id": "KFSzqJvudEk" - }, - { - "title": "Soul Christmas - Joy To The World (Karaoke)", - "id": "8RvFzoT7LWQ" - }, - { - "title": "Traditional Christmas - Joy To The World (Karaoke)", - "id": "CCBC3rf0fNY" - }, - { - "title": "Elvis Presley - Santa Bring My Baby Back (Karaoke)", - "id": "j_5SAoqfR8I" - }, - { - "title": "Traditional Christmas - We Wish You A Merry Christmas (Karaoke)", - "id": "AWg5CqX36-c" - }, - { - "title": "Eddie Rabbitt - We Wish You A Merry Christmas (Karaoke)", - "id": "5XCHzmjnB-0" - }, - { - "title": "Larry Gatlin - I Heard The Bells On Christmas Day (Karaoke)", - "id": "KsBPISr_1Rs" - }, - { - "title": "Elvis Presley - If I Get Home On Christmas Day (Karaoke)", - "id": "I5RkAip2740" - }, - { - "title": "Elvis Presley - The First Noel (Karaoke)", - "id": "JHVH4KljwUs" - }, - { - "title": "B. J. Thomas - Another Somebody Done Somebody Wrong Song (Karaoke)", - "id": "FfxY0KHhOdU" - }, - { - "title": "Natalie Imbruglia - Torn (Karaoke EZ Sing)", - "id": "kGGcpnDKUVM" - }, - { - "title": "Tony Joe White - Polk Salad Annie (Karaoke)", - "id": "XU0LufQhtjs" - }, - { - "title": "Tracy Lawrence - Life Don't Have To Be So Hard (Karaoke Guide Vocal)", - "id": "Mv-b6DOEzO4" - }, - { - "title": "One Direction - What Makes You Beautiful (Karaoke)", - "id": "TOVMNA5BlNE" - }, - { - "title": "The Toys - A Lover's Concerto (Karaoke Guide Vocal)", - "id": "L40aTLbIkBA" - }, - { - "title": "Children's Bible Songs - Go Tell It On The Mountain (Karaoke)", - "id": "zdcRx7hWJjo" - }, - { - "title": "Diana Ross - Ain't No Mountain High Enough (Karaoke)", - "id": "pCon4ZYPMQY" - }, - { - "title": "Marvin Gaye & Tammi Terrell - Your Precious Love (Karaoke)", - "id": "aVoc-eVtf8c" - }, - { - "title": "Marvin Gaye - I Heard It Through The Grapevine (Karaoke)", - "id": "fElMeQqKHJc" - }, - { - "title": "Tammy Wynette & George Jones - Did You Ever (Karaoke)", - "id": "4QHQ18D9c7I" - }, - { - "title": "Boxcar Willie - Joy To The World (Karaoke)", - "id": "I8DlcSApGqU" - }, - { - "title": "Traditional Christmas - Jingle Bells (Karaoke)", - "id": "GY8NK6Z0py0" - }, - { - "title": "The Carpenters - Have Yourself A Merry Little Christmas (Karaoke)", - "id": "pxpPI0DAVdA" - }, - { - "title": "Tammy Wynette - I'll See Him Through (Karaoke)", - "id": "EcxMyQ1B4n8" - }, - { - "title": "Jim Reeves - Blue Side Of Lonesome (Karaoke)", - "id": "i8NMJasNqRA" - }, - { - "title": "Bing Crosby - Count Your Blessings Instead Of Sheep (Karaoke)", - "id": "MF_TxUXHWQU" - }, - { - "title": "Commander Cody and His Lost Planet Airmen - Daddy's Drinking Up Our Christmas (Karaoke)", - "id": "V1rwZJoyj2w" - }, - { - "title": "Doug Stone - A Christmas Card (Karaoke Guide Vocal)", - "id": "E06I8Zi1_gU" - }, - { - "title": "Tracy Lawrence - All Wrapped Up In Christmas (Karaoke)", - "id": "wxMgYF_v6Hg" - }, - { - "title": "Traditional - Ave Maria (Latin Catholic Prayer) (Karaoke)", - "id": "zWjMI9H4zQY" - }, - { - "title": "John Anderson - Christmas Time (Karaoke)", - "id": "b_YcC5UWRPc" - }, - { - "title": "Patti Page - Boogie Woogie Santa Claus (Karaoke)", - "id": "-GzolIH9CCw" - }, - { - "title": "Elvis Presley - O' Come All Ye Faithful (Karaoke)", - "id": "65YtwxphM8M" - }, - { - "title": "Tammy Wynette - Womanhood (Karaoke)", - "id": "0qUOjPOehhU" - }, - { - "title": "Tammy Wynette - Till I Get It Right (Karaoke)", - "id": "SLFnBsjrc70" - }, - { - "title": "T. G. Sheppard - I Loved 'Em Every One (Karaoke)", - "id": "o-w1frpct78" - }, - { - "title": "T. G. Sheppard - I Feel Like Loving You Again (Karaoke)", - "id": "gIgtZCHDxbg" - }, - { - "title": "T. G. Sheppard - I'll Be Coming Back For You (Karaoke)", - "id": "eYs18GXOigM" - }, - { - "title": "T. G. Sheppard - Last Cheater's Waltz (Karaoke)", - "id": "GMJDKMQ4b-Q" - }, - { - "title": "Andy Williams - Moon River (Karaoke)", - "id": "OSEMGOCFOjw" - }, - { - "title": "T. G. Sheppard - Party Time (Karaoke)", - "id": "O-FCHd9So3s" - }, - { - "title": "Sylvia - Nobody (Karaoke)", - "id": "viQWgoGGzzY" - }, - { - "title": "Waylon Jennings - O' Come All Ye Faithful (Karaoke)", - "id": "xONi177FkrY" - }, - { - "title": "Sara Bareilles - Love Song (Karaoke)", - "id": "q_hvdZXxTl0" - }, - { - "title": "Sweethearts Of The Rodeo - I Feel Fine (Karaoke)", - "id": "i00Kz5pIlWU" - }, - { - "title": "Soul Christmas - Have Yourself A Merry Little Christmas (Karaoke)", - "id": "ERRJqIxjnM0" - }, - { - "title": "Elvis Presley - O' Little Town Of Bethlehem (Karaoke)", - "id": "XTHWIq0Nxjk" - }, - { - "title": "Stella Parton - Hark! The Herald Angels Sing (Karaoke)", - "id": "A65sK14wGSU" - }, - { - "title": "Traditional Christmas - Hark! The Herald Angels Sing (Karaoke)", - "id": "fUJzxHZbFLM" - }, - { - "title": "Traditional Christmas - Twas The Night Before Christmas (Karaoke)", - "id": "8OJ20XaVfXc" - }, - { - "title": "Daft Punk & Pharrell Williams - Get Lucky (Karaoke)", - "id": "dVCS-ZYsny4" - }, - { - "title": "Tony Orlando - Away In A Manger (Karaoke)", - "id": "TiFKnYMj37w" - }, - { - "title": "The Lettermen - Away In A Manger (Karaoke)", - "id": "w7Fh-nAry84" - }, - { - "title": "Wilson Phillips - You're In Love (Karaoke)", - "id": "vNP3uaUxV-w" - }, - { - "title": "Crystal Gayle - Have Yourself A Merry Little Christmas (Karaoke)", - "id": "l3NLe4gJerA" - }, - { - "title": "Blake Shelton - Boys 'Round Here (Karaoke)", - "id": "fMqpKuAvLi8" - }, - { - "title": "George Thorogood & The Destroyers - Rock & Roll Christmas (Karaoke)", - "id": "Cth8IDGpkic" - }, - { - "title": "Various Artists - Christmas - You're A Mean One Mr. Grinch (Karaoke)", - "id": "Ml3th3fnafc" - }, - { - "title": "Sia - Santa's Coming For Us (Karaoke)", - "id": "kk6ImwexvPU" - }, - { - "title": "Mariah Carey - Oh Santa! (Karaoke)", - "id": "wFUcbh0ykcI" - }, - { - "title": "Mariah Carey feat. Ariana Grande & Jennifer Hudson - Oh Santa! (Duet Version) (Karaoke)", - "id": "DYV2WFOnAcE" - }, - { - "title": "Stevie Wonder and Andra Day - Someday At Christmas (Karaoke)", - "id": "SOl8C70T9IE" - }, - { - "title": "Kelly Clarkson - Underneath The Tree (Karaoke)", - "id": "1KOKzDY3Xt4" - }, - { - "title": "Walk The Moon - Different Colors (Karaoke)", - "id": "8uN-MzhyOK0" - }, - { - "title": "George Strait - You Look So Good In Love (Karaoke)", - "id": "_GkD6_A9Sgk" - }, - { - "title": "5 Seconds Of Summer - Girls Talk Boys (Karaoke)", - "id": "THjI0KlYT1A" - }, - { - "title": "Lorrie Morgan - He Talks To Me (Karaoke)", - "id": "MJX75JaxtB0" - }, - { - "title": "Clay Walker - Once In A Lifetime Love (Karaoke EZ Sing)", - "id": "0apwdXE5tX0" - }, - { - "title": "Natalie Cole - Inseparable (Karaoke)", - "id": "JAorklJGjXc" - }, - { - "title": "Linda Ronstadt - How Do I Make You (Karaoke)", - "id": "Vdoz983Qn_E" - }, - { - "title": "Skeeter Davis - I Can't Stay Mad At You (Karaoke)", - "id": "hbBJUgJHooo" - }, - { - "title": "Lisa Loeb - Stay (I Missed You) (Karaoke)", - "id": "rR5D_0hjn2E" - }, - { - "title": "Ronnie McDowell - I Got A Million Of 'Em (Karaoke)", - "id": "_t3ad8om04w" - }, - { - "title": "Ronnie McDowell - When You Hurt, I Hurt (Karaoke)", - "id": "Kca3-Q9d-sQ" - }, - { - "title": "Ronnie McDowell - All Tied Up (Karaoke)", - "id": "SiYj6diSPzE" - }, - { - "title": "Cyndi Lauper - I Drove All Night (Karaoke)", - "id": "FwAUjEeBrCU" - }, - { - "title": "Fall Out Boy - America's Suitehearts (Karaoke)", - "id": "nEmq3E9qgPA" - }, - { - "title": "Fall Out Boy - Alone Together (Karaoke)", - "id": "RCXGNETuUUA" - }, - { - "title": "Larry Stewart - Alright Already (Karaoke)", - "id": "BG36SrN_3Nw" - }, - { - "title": "Mary J. Blige - All That I Can Say (Karaoke)", - "id": "wvYSVERxuRQ" - }, - { - "title": "Andy Williams - (There's No Place Like) Home For The Holidays (Karaoke)", - "id": "pfROJt9cSKk" - }, - { - "title": "Post Malone - Only Wanna Be With You (Pokemon 25 Version) (Karaoke)", - "id": "VuJbhyWMBA0" - }, - { - "title": "Merle Haggard - Every Fool Has A Rainbow (Karaoke)", - "id": "uBzdCJock6s" - }, - { - "title": "Keyshia Cole - Love (Karaoke)", - "id": "77SB27S4YBM" - }, - { - "title": "Luke Bryan - What She Wants Tonight (Karaoke EZ Sing)", - "id": "SnX6jelJSwg" - }, - { - "title": "Luke Bryan - What She Wants Tonight (Karaoke)", - "id": "FVzO0LCYjZM" - }, - { - "title": "Morgan Wallen - More Than My Hometown (Karaoke)", - "id": "rMpfc5D6ksU" - }, - { - "title": "Morgan Wallen - Sand In My Boots (Karaoke)", - "id": "3Ufocq6f8r8" - }, - { - "title": "Kane Brown - Like A Rodeo (Karaoke)", - "id": "n3LGGiO-XLY" - }, - { - "title": "Jim Stafford - Spiders & Snakes (Karaoke)", - "id": "JGKJir2oTiw" - }, - { - "title": "Anna Nalick - Breathe (2 AM) (Karaoke)", - "id": "TdYTXJJEeAk" - }, - { - "title": "Trisha Yearwood - Santa Claus Is Back In Town (Karaoke)", - "id": "LOjfNFg0L_A" - }, - { - "title": "Country Christmas - Silver Bells (Karaoke)", - "id": "7tDF8oYr7sk" - }, - { - "title": "Christina Aguilera - Have Yourself A Merry Little Christmas (Karaoke)", - "id": "3onmLUer9j0" - }, - { - "title": "Elvis Presley - Santa Claus Is Back In Town (Karaoke)", - "id": "EFMpFDJY_zM" - }, - { - "title": "Post Malone feat. Ty Dolla $ign - Psycho (Karaoke)", - "id": "SdgtU47yvDY" - }, - { - "title": "Kelly Clarkson - Stronger (What Doesn't Kill You) (Karaoke)", - "id": "kEg3VtWTjhQ" - }, - { - "title": "Kelly Clarkson - Beautiful Disaster (Karaoke)", - "id": "MCfy2K7eyWo" - }, - { - "title": "Lorde - Green Light (Karaoke)", - "id": "JfwXw_eskJI" - }, - { - "title": "Roy Orbison - Falling (Karaoke)", - "id": "SGk6wnZsaUg" - }, - { - "title": "Young Rascals - I've Been Lonely Too Long (Karaoke)", - "id": "BRwfq6oZ3RM" - }, - { - "title": "Luke Bryan - Knockin' Boots (Karaoke)", - "id": "vLmRpBTSsY8" - }, - { - "title": "Carole King - It's Too Late (Karaoke)", - "id": "mALFazhF6cU" - }, - { - "title": "Carole King - Way Over Yonder (Karaoke)", - "id": "5BZ2Kpav_mM" - }, - { - "title": "Carole King - So Far Away (Karaoke)", - "id": "U6PTjpvpUAY" - }, - { - "title": "Willie Nelson - Uncloudy Day (Karaoke)", - "id": "48qKdjx5UJU" - }, - { - "title": "George Strait - If You Ain't Lovin' (You Ain't Livin') (Karaoke)", - "id": "DIyiAsAWhqU" - }, - { - "title": "3T ftg. Michael Jackson - Why (Karaoke)", - "id": "Qsj3_lH-vOM" - }, - { - "title": "Rihanna - Disturbia (Karaoke)", - "id": "2CkQZSC1C64" - }, - { - "title": "Wilson Phillips - You Won't See Me Cry (Karaoke)", - "id": "n_wpT4joUDU" - }, - { - "title": "Rod Stewart - Have I Told You Lately (I Love You) (Karaoke)", - "id": "zyySraXHQ1I" - }, - { - "title": "Loretta Lynn - Precious Memories (Karaoke)", - "id": "rHXB0F93plI" - }, - { - "title": "Merle Haggard - The Emptiest Arms In The World (Karaoke)", - "id": "K6QdT7P32SQ" - }, - { - "title": "Willie Nelson - If You Can Touch Her At All (Karaoke)", - "id": "OpFVisQrnwI" - }, - { - "title": "Ella Fitzgerald - A-Tisket, A-Tasket (Karaoke Guide Vocal)", - "id": "ykdtswvltJc" - }, - { - "title": "Lee Brice - Parking Lot Party (Karaoke)", - "id": "rXjfJOKSN9I" - }, - { - "title": "Little Eva - The Loco-Motion (Karaoke)", - "id": "H1nyPulKqD0" - }, - { - "title": "Madonna - Material Girl (Karaoke EZ Sing)", - "id": "3914zZpSQtk" - }, - { - "title": "Tradional Style - Angels We Have Heard On High (Karaoke)", - "id": "Q8Cw6ys2PnQ" - }, - { - "title": "Rock Christmas - Away In A Manger (Karaoke)", - "id": "0fVWjwmNdY0" - }, - { - "title": "Waylon Jennings - Away In A Manger (Karaoke)", - "id": "Q3dBROCIMlA" - }, - { - "title": "Marvin Gaye - That's The Way Love Is (Karaoke)", - "id": "Dz3t5NfQjGk" - }, - { - "title": "Marvin Gaye & Kim Weston - It Takes Two (Karaoke EZ Sing)", - "id": "WEK-Im4qjwM" - }, - { - "title": "Kelly Clarkson - Take You High (Karaoke)", - "id": "u6R9a3w3kUY" - }, - { - "title": "The Karaoke Show - Episode 1 - New Releases for Week of 10/25/21", - "id": "-H5LdVRVz68" - }, - { - "title": "Episode 1 - New Releases of the Week 10/25/21 - The Karaoke Show", - "id": "z3AQeQindes" - }, - { - "title": "Alan Jackson - Honky Tonk Christmas (Karaoke)", - "id": "YTGPSo7uVWw" - }, - { - "title": "Tony Bennett - Blue Moon (Karaoke)", - "id": "0-2DI2_ca3A" - }, - { - "title": "Tony Bennett - I Left My Heart In San Francisco (Karaoke)", - "id": "FoQPz3gVFcM" - }, - { - "title": "Toby Keith - I Wanna Talk About Me (Karaoke)", - "id": "46ArD1KvOvk" - }, - { - "title": "Temptations - I Can't Get Next To You (Karaoke EZ Sing)", - "id": "vUIv4UZU4Mk" - }, - { - "title": "Miley Cyrus - Midnight Sky (Karaoke)", - "id": "a2w--FndnmI" - }, - { - "title": "Depeche Mode - I Just Can't Get Enough (Karaoke)", - "id": "f1QtFzPUb6A" - }, - { - "title": "Oasis - Live Forever (Karaoke)", - "id": "h28MWhI3-jo" - }, - { - "title": "Faith Hill - Dearly Beloved (Karaoke)", - "id": "hQI2ev2fSVk" - }, - { - "title": "Rod Stewart - Oh No Not My Baby (Karaoke)", - "id": "H_ZXJjgrZj4" - }, - { - "title": "Kelly Clarkson - Just Missed The Train (Karaoke)", - "id": "1PsuHmtqdoU" - }, - { - "title": "Anne Murray - Son Of A Rotten Gambler (Karaoke)", - "id": "E7splSPMFmo" - }, - { - "title": "Pussycat Dolls - Feelin' Good (Karaoke)", - "id": "t4NLbHZWdFc" - }, - { - "title": "Alan Jackson - When We All Get To Heaven (Karaoke)", - "id": "z_rIzcbXs2g" - }, - { - "title": "Alan Jackson - In The Garden (Karaoke)", - "id": "GZ1YMrp10N4" - }, - { - "title": "Alan Jackson - I Love To Tell The Story (Karaoke)", - "id": "uC6SLCEbwHQ" - }, - { - "title": "Kenny Chesney - Pretty Paper (Karaoke)", - "id": "ul2arvjgVwU" - }, - { - "title": "The Chicks - Gaslighter (Karaoke)", - "id": "_kbEYip-jW0" - }, - { - "title": "M.C. Hammer - U Can't Touch This (Karaoke EZ Sing)", - "id": "01Boyo98Fe8" - }, - { - "title": "Tommy Roe - Dizzy (Karaoke)", - "id": "FpAaixLHhT4" - }, - { - "title": "Wynonna - Always Will (Karaoke)", - "id": "E0V6456-s-k" - }, - { - "title": "Leroy Van Dyke - Auctioneer (Karaoke)", - "id": "B4OZvTwVnF8" - }, - { - "title": "Tracy Lawrence - Texas Tornado (Karaoke)", - "id": "arKQvsILcEc" - }, - { - "title": "Tracy Lawrence - Alibis (Karaoke)", - "id": "LL2r-c2UmgU" - }, - { - "title": "Lady Gaga - You And I (Karaoke)", - "id": "B1RxlpJocmw" - }, - { - "title": "Lady Gaga - Alejandro (Karaoke)", - "id": "Smgxw6IWBNg" - }, - { - "title": "Randy Montana - Ain't Much Left Of Lovin' You (Karaoke)", - "id": "ROpKfFq4phA" - }, - { - "title": "Buck Owens - Santa Looked A Lot Like Daddy (Karaoke)", - "id": "lJGUhzKFGgs" - }, - { - "title": "Merle Haggard & George Jones - Yesterday's Wine (Karaoke)", - "id": "aAJqVSzX8T8" - }, - { - "title": "Merle Haggard - Rainbow Stew (Karaoke)", - "id": "PI9T3yvCHYo" - }, - { - "title": "Merle Haggard - I Take A Lot Of Pride In What I Am (Karaoke Guide Vocal)", - "id": "1lM-xg1_D3Y" - }, - { - "title": "Merle Haggard - You Take Me For Granted (Karaoke)", - "id": "YJ0qmAIuJ4E" - }, - { - "title": "The Supremes - Love Is Here And Now You're Gone (Karaoke)", - "id": "B3gG8fDPwCA" - }, - { - "title": "David Houston - Already It's Heaven (Karaoke)", - "id": "ooa6-XrfUWQ" - }, - { - "title": "David Houston - With One Exception (Karaoke)", - "id": "sLZI_CftIhQ" - }, - { - "title": "Carly Simon - Mockingbird (Karaoke)", - "id": "4zNZjKohdX4" - }, - { - "title": "Buffalo Springfield - Sit Down I Think I Love You (Karaoke)", - "id": "gO6E1SA9vMU" - }, - { - "title": "Conway Twitty - I've Already Loved You In My Mind (Karaoke)", - "id": "RfOqPBQOwoY" - }, - { - "title": "Ronnie McDowell - It's Only Make Believe (Karaoke)", - "id": "3ouhTCqHRwI" - }, - { - "title": "Conway Twitty - I'm Not Through Loving You Yet (Karaoke)", - "id": "bsJsY14yQE8" - }, - { - "title": "Blake Shelton - Goodbye Time (Karaoke)", - "id": "3tznockXh94" - }, - { - "title": "Conway Twitty - Baby's Gone (Karaoke)", - "id": "hk2sFOw6rIA" - }, - { - "title": "Bread - Diary (Karaoke EZ Sing)", - "id": "NOqRle6Azlc" - }, - { - "title": "Oasis - Don't Look Back In Anger (Karaoke EZ Sing)", - "id": "GJgibKtIQhs" - }, - { - "title": "The Blues Brothers - Rubber Biscuit (Karaoke)", - "id": "pXdidEBiPBk" - }, - { - "title": "Mary Wells - One Who Really Loves You (Karaoke)", - "id": "sHt5Yz3QEqg" - }, - { - "title": "Mary Wells - What's Easy For Two Is So Hard For One (Karaoke)", - "id": "_9lPGOOZUuU" - }, - { - "title": "Edwin Starr - Twenty-Five Miles (Karaoke)", - "id": "u_dxYSH-2MM" - }, - { - "title": "Roy Orbison - Communication Breakdown (Karaoke)", - "id": "-MjCOZHxZrA" - }, - { - "title": "Rod Stewart And Tina Turner - It Takes Two (Karaoke)", - "id": "MNmoILcc7QI" - }, - { - "title": "The Velvet Underground - Rock And Roll (LOADED Version) (Karaoke)", - "id": "XItbUvREyjY" - }, - { - "title": "The Velvet Underground - Cool It Down (Karaoke)", - "id": "TLmgVcv9H34" - }, - { - "title": "Martha Reeves And The Vandellas - (Love Is Like A) Heat Wave (Heatwave) (Karaoke)", - "id": "fQJ-EsQpXC8" - }, - { - "title": "The Supremes - Back In My Arms Again (Karaoke)", - "id": "M5vFTYKGH1g" - }, - { - "title": "The Supremes - I Hear A Symphony (Karaoke Guide Vocal)", - "id": "xtvLIey-3Lg" - }, - { - "title": "The Supremes - Come See About Me (Karaoke)", - "id": "qV8RDgR_EjQ" - }, - { - "title": "The Supremes - Baby Love (Karaoke)", - "id": "zs6oJoqCdC0" - }, - { - "title": "The Supremes - You Keep Me Hanging On (Karaoke)", - "id": "C3KQvtwvH3I" - }, - { - "title": "The Supremes - You Can't Hurry Love (Karaoke)", - "id": "gBQypKf3jVk" - }, - { - "title": "The Supremes - Where Did Our Love Go (Karaoke)", - "id": "NqkmeOqR080" - }, - { - "title": "The Supremes - Stop! In The Name Of Love (Karaoke)", - "id": "2Olu9qY3pXM" - }, - { - "title": "Marty Robbins - Singing The Blues (Karaoke)", - "id": "j89yZtLyX4E" - }, - { - "title": "Martina McBride - Strangers (Karaoke Guide Vocal)", - "id": "V44MGt72ihI" - }, - { - "title": "Martina McBride - Independence Day (Karaoke)", - "id": "ekCvKipszRk" - }, - { - "title": "Madonna - Dress You Up (Karaoke)", - "id": "1oUlj_5lw80" - }, - { - "title": "Mac Davis - Forever Lovers (Karaoke)", - "id": "LkBEzTBL5Yw" - }, - { - "title": "Mac Davis - I Believe In Music (Karaoke)", - "id": "nkoC_d9CIUQ" - }, - { - "title": "Mac Davis - Friend, Lover, Woman, Wife (Karaoke)", - "id": "zPLGERa0Foc" - }, - { - "title": "Mac Davis - Baby Don't Get Hooked On Me (Karaoke)", - "id": "5DDW7DfHHGc" - }, - { - "title": "Len - Steal My Sunshine (Karaoke)", - "id": "ZgmmhfSOitQ" - }, - { - "title": "Lari White - Now I Know (Karaoke)", - "id": "hoSQ9s6GLFM" - }, - { - "title": "Larry Gatlin - Night Time Magic (Karaoke)", - "id": "QhD2a-MnfPI" - }, - { - "title": "Larry Gatlin - Broken Lady (Karaoke)", - "id": "ukp2kQvGIYE" - }, - { - "title": "Marty Robbins - It's A Sin (Karaoke)", - "id": "_fp5JM8gqhE" - }, - { - "title": "Marty Robbins - Knee Deep In The Blues (Karaoke)", - "id": "_-VIXDskJ3c" - }, - { - "title": "Martha & The Vandellas - Nowhere To Run (Karaoke)", - "id": "BGXp5Yn6zO8" - }, - { - "title": "Martha & The Vandellas - Heat Wave (Karaoke)", - "id": "VNLv7rp5KFM" - }, - { - "title": "Martha & The Vandellas - Jimmy Mack (Karaoke)", - "id": "53C2--Fd7U8" - }, - { - "title": "Keith Whitley - I Wonder Do You Think Of Me (Karaoke)", - "id": "gA6yotqn6Jw" - }, - { - "title": "Kenny Chesney - Big Star (Karaoke)", - "id": "65jCWXJOc1Y" - }, - { - "title": "The Temptations - Ain't Too Proud To Beg [Unplugged] (Karaoke)", - "id": "RaAWTClljn4" - }, - { - "title": "The Temptations - Just My Imagination [Unplugged] (Karaoke)", - "id": "_dLKeq_q1EI" - }, - { - "title": "The Temptations - Psychedelic Shack (Karaoke)", - "id": "oUwLaK5qayw" - }, - { - "title": "The Temptations - You're My Everything (Karaoke)", - "id": "XD2TTf2ZL9w" - }, - { - "title": "KT Tunstall - Suddenly I See (Karaoke)", - "id": "jNfShb5VzOQ" - }, - { - "title": "KT Tunstall - Black Horse & The Cherry Tree (Karaoke Guide Vocal)", - "id": "pXJx8vcIfNg" - }, - { - "title": "Tanya Tucker - Here's Some Love (Karaoke)", - "id": "m93MbGp95-U" - }, - { - "title": "Tanya Tucker - Texas (When I Die) (Karaoke)", - "id": "1zDzWfJ1zvg" - }, - { - "title": "Tanya Tucker - Don't Believe My Heart Can Stand Another You (Karaoke Guide Vocal)", - "id": "tMgDJilQIvc" - }, - { - "title": "Don Gibson - Rings Of Gold (Karaoke)", - "id": "z89ToXtW4M0" - }, - { - "title": "Waylon Jennings - I'm A Ramblin' Man (Karaoke)", - "id": "XbhrokvCGew" - }, - { - "title": "Waylon Jennings - Honky Tonk Heroes (Karaoke)", - "id": "I4XZkiH_dW8" - }, - { - "title": "The Warren Brothers - It Ain't Me (Karaoke)", - "id": "jCZHTNfoDC0" - }, - { - "title": "The Warren Brothers - Where Does It Hurt (Karaoke)", - "id": "4IPk7HGydgg" - }, - { - "title": "The Warren Brothers - Better Man (Karaoke)", - "id": "UGqSdS8Scag" - }, - { - "title": "Chris Stapleton & Justin Timberlake - Tennessee Whiskey (Karaoke)", - "id": "cgvBNHCvt5g" - }, - { - "title": "Eric Church - Give Me Back My Hometown (Karaoke)", - "id": "WmIsAgpuuCE" - }, - { - "title": "Eric Church - Talladega (Karaoke)", - "id": "6XLTsh3qTFU" - }, - { - "title": "Lana Del Rey - High By The Beach (Karaoke)", - "id": "qncyKfxI6TQ" - }, - { - "title": "Electric Light Orchestra - Evil Woman (US single mix) (Karaoke)", - "id": "Q2eMJDTYsQc" - }, - { - "title": "Electric Light Orchestra - Livin' Thing (Karaoke)", - "id": "k2c7HP8LbAc" - }, - { - "title": "Velvet Underground And Nico - Venus In Furs (Karaoke EZ Sing)", - "id": "64wa_qwXGLI" - }, - { - "title": "The Marvelettes - Beechwood 4-5789 (Karaoke)", - "id": "Q5dlQnQvf_s" - }, - { - "title": "Earth, Wind And Fire - Fantasy (Karaoke)", - "id": "9lPcmSfyTtM" - }, - { - "title": "The Partridge Family - I Woke Up In Love This Morning (Karaoke)", - "id": "NJkWMolOuRg" - }, - { - "title": "The Commitments - Do Right Woman Do Right Man (Karaoke)", - "id": "UBEnds8hQpY" - }, - { - "title": "Dave Edmunds Band - I Hear You Knockin' (Karaoke)", - "id": "w6JseMmprHc" - }, - { - "title": "Elmore James - Shake Your Moneymaker (Karaoke)", - "id": "ZPLIZdPf3-A" - }, - { - "title": "Blood Sweat & Tears - Go Down Gamblin' (Karaoke)", - "id": "sM0KNXtmIv8" - }, - { - "title": "John Denver - Some Days Are Diamonds (Some Days Are Stone) (Karaoke)", - "id": "WHQLkCpsAq8" - }, - { - "title": "Redbone - Come And Get Your Love (Karaoke)", - "id": "WaTH59s7QBY" - }, - { - "title": "Brad Paisley - The World (Karaoke)", - "id": "P-AeOAfCqIM" - }, - { - "title": "Kelly Clarkson - Walk Away (Karaoke)", - "id": "dIMfO1dGFys" - }, - { - "title": "Keith Urban - You Gonna Fly (Karaoke)", - "id": "ZIQabPj7x8c" - }, - { - "title": "Keith Urban - Only You Can Love Me This Way (Karaoke)", - "id": "o8MHZ0vnfd8" - }, - { - "title": "Keith Urban - Making Memories Of Us (Karaoke)", - "id": "tAKf52CRpAo" - }, - { - "title": "Tim McGraw - I've Got Friends That Do (Karaoke)", - "id": "piT0TfTFMGs" - }, - { - "title": "Gretchen Wilson - Not Bad For A Bartender (Karaoke)", - "id": "JVQwgr5G-nY" - }, - { - "title": "Gladys Knight & The Pips - If I Were Your Woman (Karaoke)", - "id": "bOhKvEwUrr4" - }, - { - "title": "Brooks & Dunn - Red Dirt Road (Karaoke)", - "id": "xvlVWF3a7SI" - }, - { - "title": "Brad Paisley - Water (Karaoke)", - "id": "hdjTgORiMfY" - }, - { - "title": "Bowling For Soup - Girl All The Bad Guys Want (Karaoke)", - "id": "lQBbncwDtwU" - }, - { - "title": "Gary Allan - Watching Airplanes (Karaoke)", - "id": "wghqjn5pTko" - }, - { - "title": "Brad Paisley - Ticks (Karaoke)", - "id": "OJhXRC92-do" - }, - { - "title": "Brad Paisley - Online (Karaoke)", - "id": "IemqUAsGGco" - }, - { - "title": "Trent Willmon - Beer Man (Karaoke)", - "id": "hU89KYgyklc" - }, - { - "title": "Diamond Rio - That's Just That (Karaoke)", - "id": "mtIwZMdCDp4" - }, - { - "title": "Brad Paisley - Two People Fell In Love (Karaoke)", - "id": "y5aIiju9Y6A" - }, - { - "title": "Lana Del Rey - West Coast (Karaoke)", - "id": "m6ufLDK3Rzo" - }, - { - "title": "Lorde - Yellow Flicker Beat (Karaoke)", - "id": "cusddsQwvfU" - }, - { - "title": "Lady Gaga - Perfect Illusion (Karaoke)", - "id": "XlImNDjjf54" - }, - { - "title": "Lorde - Glory and Gore (Karaoke)", - "id": "kuUENfmmacE" - }, - { - "title": "Lana Del Rey feat. The Weeknd - Lust For Life (Karaoke)", - "id": "TOk7b1Jk4Ow" - }, - { - "title": "Demi Lovato - Sorry Not Sorry (Karaoke)", - "id": "1Uc7kf8BZk0" - }, - { - "title": "Five Finger Death Punch - Trouble (Karaoke)", - "id": "t1Ramn8Tqas" - }, - { - "title": "Kenny Chesney - The Big Revival (Karaoke)", - "id": "tljvr7FAEvc" - }, - { - "title": "Toby Keith - Drunk Americans (Karaoke)", - "id": "8fQLOKGqUQc" - }, - { - "title": "The Blues Brothers - Minnie The Moocher (Karaoke)", - "id": "dw8u9bXH0GI" - }, - { - "title": "Ricky Nelson - Teenage Idol (Karaoke)", - "id": "DRBsfKAduKI" - }, - { - "title": "Ricky Nelson - Be-Bop Baby (Karaoke)", - "id": "CFke0L3chP4" - }, - { - "title": "En Vogue - Hold On (Karaoke)", - "id": "flC85MlzQyE" - }, - { - "title": "Ernie K-Doe - Mother-In-Law (Karaoke)", - "id": "lPWxoJ-MS6Y" - }, - { - "title": "Dixie Chicks - Hello Mr. Heartache (Karaoke)", - "id": "-HAWR7YPqEQ" - }, - { - "title": "Barrett Strong - Money (That's What I Want) (Karaoke Guide Vocal)", - "id": "CQ-HKce0mxU" - }, - { - "title": "Dixie Chicks - Goodbye Earl (Karaoke)", - "id": "Ij1N6-YRnoM" - }, - { - "title": "David Allan Coe - Now I Lay Me Down To Cheat (Karaoke)", - "id": "hAE_Eclujpw" - }, - { - "title": "Toni Braxton - He Wasn't Man Enough (Karaoke)", - "id": "YDxQl6R-2rk" - }, - { - "title": "T.I. - No Mediocre (Karaoke) ft. Iggy Azalea", - "id": "uW0yrm-13Zs" - }, - { - "title": "Mariah Carey - All I Want For Christmas (Karaoke)", - "id": "1Y8l-i-LJ0E" - }, - { - "title": "Chris Brown - Love More (Karaoke) ft. Nicki Minaj", - "id": "MbFD0jnl61k" - }, - { - "title": "Mariah Carey - Never Forget You (Karaoke)", - "id": "bIRR0Hgjqv8" - }, - { - "title": "Alison Krauss with Union Station - When You Say Nothing At All (Karaoke)", - "id": "VwiY1eiQL-4" - }, - { - "title": "Rodney Atkins - Take A Back Road (Karaoke)", - "id": "Kwp2HZFPCPI" - }, - { - "title": "Tim McGraw & Faith Hill - It's Your Love (Karaoke)", - "id": "3D9ETa5Ffyk" - }, - { - "title": "Reba McEntire - I Know How He Feels (Karaoke)", - "id": "TdFqQQKthHw" - }, - { - "title": "Jonas Brothers - Year 3000 (Karaoke)", - "id": "ddi0pINeW3M" - }, - { - "title": "Ariana Grande & Mac Miller - The Way (Karaoke Guide Vocal)", - "id": "yMj2Ym7bR9Y" - }, - { - "title": "Usher - DJ Got Us Falling In Love (Karaoke) ft. Pitbull", - "id": "xdN_4KrmB1k" - }, - { - "title": "Scotty Emerick & Toby Keith - I Can't Take You Anywhere (Karaoke)", - "id": "cZ0Puyslazs" - }, - { - "title": "Britney Spears - Toxic (Karaoke)", - "id": "jnA353bUeV4" - }, - { - "title": "Frankie Valli - My Eyes Adored You (Karaoke)", - "id": "rgmunXUj6QI" - }, - { - "title": "Lady Antebellum - Hello World (Karaoke)", - "id": "xQHmUwMshzA" - }, - { - "title": "Burl Ives - A Little Bitty Tear (Karaoke)", - "id": "QktfQkv7QpU" - }, - { - "title": "David Houston - Livin' In A House Full Of Love (Karaoke Guide Vocal)", - "id": "9Be_aOGT6F4" - }, - { - "title": "David Allan Coe - Tennessee Whiskey (Karaoke)", - "id": "l0TQMR4XmDo" - }, - { - "title": "Lady Gaga - Eh, Eh (Nothing Else I Can Say) (Karaoke)", - "id": "eDAWZAcBMIA" - }, - { - "title": "Kenny Chesney - Don't Happen Twice (Karaoke)", - "id": "NzQA8GeCdXQ" - }, - { - "title": "Kelly Clarkson - Walk Away (Karaoke Guide Vocal)", - "id": "2MP7nX52-Ec" - }, - { - "title": "Keith Whitley - Talk To Me Texas (Karaoke)", - "id": "wa5SORrRMhQ" - }, - { - "title": "Keith Whitley - Miami, My Amy (Karaoke)", - "id": "Y1dIp0efbRI" - }, - { - "title": "Keith Urban - You Gonna Fly (Karaoke Guide Vocal)", - "id": "OnM1fUY7y6g" - }, - { - "title": "Keith Urban - You'll Think Of Me (Karaoke)", - "id": "Tp8dI7QLlOo" - }, - { - "title": "Keith Urban - Only You Can Love Me This Way (Karaoke Guide Vocal)", - "id": "Q7upoiltssY" - }, - { - "title": "Keith Urban - Making Memories Of Us (Karaoke Guide Vocals)", - "id": "eIizuwmIEr4" - }, - { - "title": "Tom T. Hall - Your Man Loves You, Honey (Karaoke)", - "id": "I1QjMKvCdWY" - }, - { - "title": "TLC - Dear Lie (Karaoke)", - "id": "u5VtRE74QoA" - }, - { - "title": "Tim McGraw - I've Got Friends That Do (Karaoke Guide Vocal)", - "id": "ez1-Yf917Vs" - }, - { - "title": "Hanson - Thinkin' 'Bout Something (Karaoke)", - "id": "eHhmupmNV9Q" - }, - { - "title": "Hanson - Get The Girl Back (Karaoke)", - "id": "8FtyCmUezIo" - }, - { - "title": "Charley Pride - Honky Tonk Blues (Karaoke)", - "id": "n0Ut8MaZo0w" - }, - { - "title": "Carla Thomas - Gee Whiz (Karaoke)", - "id": "VsB743YiSYI" - }, - { - "title": "Al Jolson - Toot, Toot, Tootsie (Goodbye) (Karaoke)", - "id": "bCoZcAQ0Wf4" - }, - { - "title": "Hank Williams Sr. & Hank Williams Jr. - There's A Tear In My Beer (Karaoke)", - "id": "JdAUDiJwyYI" - }, - { - "title": "Brooks & Dunn - Lost And Found (Karaoke)", - "id": "Oqmd3OnW06w" - }, - { - "title": "Reba McEntire - Somebody Should Leave (Karaoke)", - "id": "pTpBcqJUMTs" - }, - { - "title": "Brad Paisley - The World (Karaoke Guide Vocal)", - "id": "EXn3K02jVNM" - }, - { - "title": "Brad Paisley - He Didn't Have To Be (Karaoke)", - "id": "O1HCdaxhRwo" - }, - { - "title": "Brad Paisley - Wrapped Around (Karaoke)", - "id": "0ARPR27C-eQ" - }, - { - "title": "Diamond Rio - That's Just That (Karaoke Guide Vocal)", - "id": "8dz4VrRxw0o" - }, - { - "title": "Joe Diffie - C. O. U. N. T. R. Y. (Karaoke)", - "id": "RMGVQ48uJOc" - }, - { - "title": "Wade Hayes - What I Meant To Say (Karaoke)", - "id": "R4A7a2ApQVI" - }, - { - "title": "Brad Paisley - Two People Fell In Love (Karaoke Guide Vocals)", - "id": "jsKuORcsFTU" - }, - { - "title": "Brad Paisley - Online (Karaoke Guide Vocal)", - "id": "Ex8gQQmQJyw" - }, - { - "title": "Bachman-Turner Overdrive - Roll On Down The Highway (Karaoke)", - "id": "p38uYeJ7UiU" - }, - { - "title": "Billy Dean - We Just Disagree (Karaoke)", - "id": "lfcQArE2Yok" - }, - { - "title": "Dixie Chicks - There's Your Trouble (Karaoke)", - "id": "D5LlUFtgpQk" - }, - { - "title": "Joe Diffie - New Way (To Light Up An Old Flame) (Karaoke)", - "id": "ZRVydPdrLgg" - }, - { - "title": "Brad Paisley - Ticks (Karaoke Guide Vocal)", - "id": "FGHDvWUP50g" - }, - { - "title": "John Michael Montgomery - Life's A Dance (Karaoke)", - "id": "UuLttdoJEM4" - }, - { - "title": "Rhett Akins - Every Cowboy's Dream (Karaoke)", - "id": "g1MVglv2z1c" - }, - { - "title": "SHeDaisy - Little Good-byes (Karaoke)", - "id": "OXOc8gdirJE" - }, - { - "title": "Gary Allan - Watching Airplanes (Karaoke Guide Vocal)", - "id": "zS8nDajpHWc" - }, - { - "title": "Joe Diffie - If The Devil Danced (In Empty Pockets) (Karaoke)", - "id": "nUmIWCLTNPQ" - }, - { - "title": "Joe Diffie - If You Want Me To (Karaoke)", - "id": "o_jwb-NTaUY" - }, - { - "title": "Alabama - Pass It On Down (Karaoke)", - "id": "7rTOe8nkTAA" - }, - { - "title": "Tim McGraw - Down On The Farm (Karaoke)", - "id": "wjA_0WVE4fQ" - }, - { - "title": "Brooks & Dunn - Red Dirt Road (Karaoke Guide Vocal)", - "id": "FXoG05cofUc" - }, - { - "title": "Brad Paisley - Water (Karaoke Guide Vocal)", - "id": "ms33rSWw2_U" - }, - { - "title": "Bobby Lewis - Tossin' And Turnin' (Karaoke)", - "id": "rq3urfgUTUk" - }, - { - "title": "Cross Canadian Ragweed - Cry Lonely (Karaoke)", - "id": "mvazjpKGwwM" - }, - { - "title": "Merle Haggard - Jesus, Take A Hold (Karaoke)", - "id": "MYapQ9Fr9CI" - }, - { - "title": "Merle Haggard - It's Been A Great Afternoon (Karaoke)", - "id": "1IVz735rck8" - }, - { - "title": "Mary Chapin Carpenter - This Shirt (Karaoke)", - "id": "vOH5-GB-qvs" - }, - { - "title": "John Anderson - A Woman Knows (Karaoke)", - "id": "HPaf8kbyr2s" - }, - { - "title": "Joe Stampley - Put Your Clothes Back On (Karaoke)", - "id": "IGeCwzetAiA" - }, - { - "title": "Tommy Sands - Teen-Age Crush (Karaoke)", - "id": "FKUoVMlTw-w" - }, - { - "title": "Change - Change Of Heart (Karaoke)", - "id": "TTjSCAPj7eU" - }, - { - "title": "Tammy Wynette - Woman To Woman (Karaoke)", - "id": "62sBFHFrxZg" - }, - { - "title": "George Jones - Her Name Is... (Karaoke)", - "id": "lstS1LDQsaw" - }, - { - "title": "Toby Keith & Willie Nelson - Beer For My Horses (Karaoke)", - "id": "ei5nXmJBkAo" - }, - { - "title": "Tim McGraw - Do You Want Fries With That (Karaoke)", - "id": "RqSdrxR18oM" - }, - { - "title": "Miranda Lambert - Crazy Ex-Girlfriend (Karaoke)", - "id": "fXRHqNT8x9E" - }, - { - "title": "The Animals - We Gotta Get Out Of This Place (Karaoke)", - "id": "C88bgF-0k84" - }, - { - "title": "Dolly Parton - Why'd You Come In Here Lookin' Like That (Karaoke)", - "id": "yrUpNFaDKTc" - }, - { - "title": "Josh Gracin - I Want To Live (Karaoke)", - "id": "LspRIrX3QH8" - }, - { - "title": "Isley Brothers - It's Your Thing (Karaoke)", - "id": "Rqh3dXfUaX0" - }, - { - "title": "Little Texas - What Might Have Been (Karaoke)", - "id": "US5FPo9DqoM" - }, - { - "title": "Little Texas - My Love (Karaoke)", - "id": "Sx-XBcu54I0" - }, - { - "title": "Little Texas - God Blessed Texas (Karaoke)", - "id": "KyQ7AKVQ7XI" - }, - { - "title": "Anita Baker - Just Because (Karaoke)", - "id": "vJD0Btta8NU" - }, - { - "title": "Wilson Phillips - The Dream Is Still Alive (Karaoke)", - "id": "rtNJtQavkBM" - }, - { - "title": "Aaron Lewis - Granddaddy's Gun (Karaoke)", - "id": "p5StjOOyEXE" - }, - { - "title": "The Bellamy Brothers - Lovers Live Longer (Karaoke)", - "id": "A2l-JTRs0gk" - }, - { - "title": "The Bellamy Brothers - Redneck Girl (Karaoke)", - "id": "-TuT18JcEKU" - }, - { - "title": "The Bellamy Brothers - Sugar Daddy (Karaoke)", - "id": "BHexme4eMas" - }, - { - "title": "Billy Currington - Don't (Karaoke Guide Vocal)", - "id": "QbTIszjklDY" - }, - { - "title": "Billy Currington - Drinkin' Town With A Football Problem (Karaoke)", - "id": "0DOfpKRqBAM" - }, - { - "title": "Brotherhood Of Man - United We Stand (Karaoke)", - "id": "nMd8ugvBbto" - }, - { - "title": "The Carpenters - Please Mr. Postman (Karaoke)", - "id": "GMtYA9k1HNM" - }, - { - "title": "Dolly Parton - Here You Come Again (Karaoke)", - "id": "_yDqAcgCGz4" - }, - { - "title": "Skeeter Davis - Homebreaker (Karaoke)", - "id": "aAty-HwElXc" - }, - { - "title": "Skeeter Davis - My Last Date (With You) (Karaoke)", - "id": "XvJNCnIcUwE" - }, - { - "title": "Skeeter Davis - Set Him Free (Karaoke)", - "id": "QX3JIlUGo9Q" - }, - { - "title": "Skeeter Davis - Am I That Easy To Forget? (Karaoke)", - "id": "j8CKsamD9X4" - }, - { - "title": "Jim Reeves - Is It Really Over? (Karaoke)", - "id": "4j2oLkgiN1E" - }, - { - "title": "Jim Reeves - Bimbo (Karaoke)", - "id": "htVZ9OnghtI" - }, - { - "title": "Jim Reeves - This Is It (Karaoke)", - "id": "Yqs_SRzqf4s" - }, - { - "title": "Sammy Davis Jr. - What Kind Of Fool Am I (Karaoke)", - "id": "5rJhcyon5_Q" - }, - { - "title": "Jim Reeves - Welcome To My World (Karaoke)", - "id": "dhsAM77BVGg" - }, - { - "title": "Jim Reeves - He'll Have To Go (Karaoke)", - "id": "m8LGmE8bsXk" - }, - { - "title": "Jim Reeves - Am I Losing You (Karaoke)", - "id": "tmvIrh7wK4o" - }, - { - "title": "Sarah McLachlan - Angel (Karaoke)", - "id": "CGc1wMafxlA" - }, - { - "title": "Ethel Merman - There's No Business Like Show Business (Karaoke)", - "id": "R3dzwnyBDR8" - }, - { - "title": "Elvis Presley - You'll Never Walk Alone (Karaoke)", - "id": "LKb0rwwKXP4" - }, - { - "title": "Alabama - Santa Claus I Still Believe In You (Karaoke)", - "id": "6oMcG9E47hA" - }, - { - "title": "Bachman-Turner Overdrive - The Letter (Karaoke)", - "id": "pr2JtihijRc" - }, - { - "title": "Alan Jackson - Blessed Assurance (Karaoke)", - "id": "rbeW_uAMwmU" - }, - { - "title": "Wilco - Outtasite (Outta Mind) (Karaoke)", - "id": "qKnHAQPvSZE" - }, - { - "title": "Doobie Brothers - It Keeps You Runnin' (Karaoke)", - "id": "lvTb9q7n-U0" - }, - { - "title": "Doobie Brothers - Takin' It To The Streets (Karaoke)", - "id": "mkZ8nnBXUr8" - }, - { - "title": "OneRepublic - All The Right Moves (Karaoke)", - "id": "3Csv9VhaPIo" - }, - { - "title": "Crystal Gayle - Don't It Make My Brown Eyes Blue (Karaoke)", - "id": "FpXxcYbMirg" - }, - { - "title": "Holly Dunn - Daddy's Hands (Karaoke)", - "id": "3G_oDSTJ2Mg" - }, - { - "title": "Gretchen Wilson - You Don't Have To Go Home (Karaoke Guide Vocal)", - "id": "p2sRkc0s3f0" - }, - { - "title": "Gretchen Wilson - Not Bad For A Bartender (Karaoke Guide Vocal)", - "id": "wb6QAZyezdo" - }, - { - "title": "Gladys Knight & The Pips - If I Were Your Woman (Karaoke Guide Vocal)", - "id": "N3w4lNw1HD4" - }, - { - "title": "Toby Keith - I Love This Bar (Karaoke)", - "id": "oh3ENVdAnto" - }, - { - "title": "Keith Urban - It's A Love Thing (Karaoke)", - "id": "_bG-6Bsw79I" - }, - { - "title": "Lonestar - Tequila Talkin' (Karaoke)", - "id": "RNwQfsvGRrw" - }, - { - "title": "Little Richard - Lucille (Karaoke)", - "id": "y41VqSiEgxI" - }, - { - "title": "Little Richard - Tutti Frutti (Karaoke)", - "id": "h4TivzTIhPA" - }, - { - "title": "Little Richard - Jenny Jenny (Karaoke)", - "id": "jex5QP0WtSw" - }, - { - "title": "George Jones - Tennessee Whiskey (Karaoke)", - "id": "F0GHXiRfKvk" - }, - { - "title": "Elvis Presley - Treat Me Nice (Karaoke)", - "id": "ios3sXvgu_Y" - }, - { - "title": "Elvis Presley - Loving You (Karaoke)", - "id": "qYakbi0JxOI" - }, - { - "title": "Elvis Presley - Don't (Karaoke)", - "id": "Sqzmz3Mka8M" - }, - { - "title": "Bachman-Turner Overdrive - Let It Ride (Karaoke)", - "id": "i2LXhZzCMTQ" - }, - { - "title": "Marvin Gaye - Inner City Blues (Make Me Wanna Holler) (Karaoke)", - "id": "RRk_5O9LVFg" - }, - { - "title": "Kenny Chesney & Uncle Kracker - When The Sun Goes Down (Karaoke Guide Vocal)", - "id": "xg1-HHDKMUk" - }, - { - "title": "Pilot - Magic (Karaoke Guide Vocal)", - "id": "DclL8lwMWCo" - }, - { - "title": "James Brown - Give It Up Or Turn It Loose (Karaoke)", - "id": "bZvkdDV3pJ4" - }, - { - "title": "Bachman-Turner Overdrive - Takin' Care Of Business (Karaoke)", - "id": "UE8QWy_36us" - }, - { - "title": "John Hartford - Big Rock Candy Mountain (Karaoke)", - "id": "7Z6LZk6lEV8" - }, - { - "title": "Jerry Lee Lewis - Once More With Feeling (Karaoke)", - "id": "tySgMES3E70" - }, - { - "title": "Rare Earth - I Just Want To Celebrate (Karaoke)", - "id": "uSfs1TTCItQ" - }, - { - "title": "Ferlin Husky - Heavenly Sunshine (Karaoke)", - "id": "PFzZq5Mo0b4" - }, - { - "title": "Kenny Chesney - A Lot Of Things Different (Karaoke)", - "id": "afsmoAH61cU" - }, - { - "title": "George Strait - The Road Less Traveled (Karaoke)", - "id": "6TbCayUSDmE" - }, - { - "title": "George Strait - Tell Me Something Bad About Tulsa (Karaoke)", - "id": "D4mzX772h2w" - }, - { - "title": "Kenny Chesney - No Shoes, No Shirt, No Problems (Karaoke)", - "id": "P5LpoMN80lw" - }, - { - "title": "Tommy James & The Shondells - Draggin' The Line (Karaoke)", - "id": "RrjUcgwgbjs" - }, - { - "title": "Marvin Gaye - Too Busy Thinking About My Baby (Karaoke)", - "id": "nnOO_JPT1k8" - }, - { - "title": "Marvin Gaye - Mercy Mercy Me (The Ecology) (Karaoke)", - "id": "YPlmCgYPHUQ" - }, - { - "title": "Cyndi Lauper - True Colors (Karaoke)", - "id": "0hXYwsKsAmk" - }, - { - "title": "Brooks & Dunn - It Won't Be Christmas Without You (Karaoke)", - "id": "KmpVvywGQu4" - }, - { - "title": "Irene Cara - Fame (Karaoke)", - "id": "Y-V72yBNHmE" - }, - { - "title": "Hank Williams - Someday You'll Call My Name (Karaoke)", - "id": "emzgb55PkIc" - }, - { - "title": "Stevie Wonder - Yester(Karaoke)", - "id": "o7bMYQkmFCA" - }, - { - "title": "Five Finger Death Punch - Fake (clean) (Karaoke EZ Sing)", - "id": "mJKN4h_JURo" - }, - { - "title": "Mary Wells - You Beat Me To The Punch (Karaoke)", - "id": "BRGSaIbwGg4" - }, - { - "title": "Eric Church - Some Of It (Karaoke)", - "id": "vcj0WKTHakU" - }, - { - "title": "Ariana Grande feat. Nicki Minaj - The Light Is Coming (Karaoke)", - "id": "QsMV6wqQtbM" - }, - { - "title": "Ariana Grande and Social House - Boyfriend (Karaoke) (Duet Version)", - "id": "NdJQZ2lbb3o" - }, - { - "title": "Ariana Grande - Sweetener (Karaoke)", - "id": "iQSkpidYZ6Q" - }, - { - "title": "Ariana Grande - Get Well Soon (Karaoke)", - "id": "Yrljbp9sGh8" - }, - { - "title": "Amy Shark - Everybody Rise (Karaoke)", - "id": "SbKQyI1v9x0" - }, - { - "title": "21 Savage feat. Offset, Metro Boomin and Travis Scott - Ghostface Killers (Karaoke)", - "id": "sn1IIh8M56g" - }, - { - "title": "George Strait - What A Merry Christmas This Could Be (Karaoke)", - "id": "-IDeYVMmcwg" - }, - { - "title": "Marvin Gaye - Ain't That Peculiar (Karaoke EZ Sing)", - "id": "7EddQT2OeHo" - }, - { - "title": "George Jones - Door (Karaoke EZ Sing)", - "id": "i1Xry0GncEo" - }, - { - "title": "Sam The Sham And The Pharaohs - Wooly Bully (Karaoke)", - "id": "pK_pL9VPkc0" - }, - { - "title": "Leo Sayer - You Make Me Feel Like Dancing (Karaoke)", - "id": "zv69wFMLeZs" - }, - { - "title": "John Denver - Some Days Are Diamonds (Some Days Are Stone) (Karaoke Guide Vocal)", - "id": "SQmEjJnznWw" - }, - { - "title": "The Spin Doctors - Little Miss Can't Be Wrong (Karaoke)", - "id": "fw-_n1zmKHw" - }, - { - "title": "Redbone - Come And Get Your Love (Karaoke Guide Vocal)", - "id": "2AYF3M-LYA0" - }, - { - "title": "Cannibal And The Headhunters - Land Of 1000 Dances (Karaoke)", - "id": "0MyPSf5RR5U" - }, - { - "title": "Elmore James - Shake Your Moneymaker (Karaoke Guide Vocal)", - "id": "65tImjwVSPE" - }, - { - "title": "Blood Sweat & Tears - Go Down Gamblin' (Karaoke Guide Vocal)", - "id": "0qjG6gZFa9U" - }, - { - "title": "Alabama - We Made Love (Karaoke)", - "id": "HdbC6sI6Kek" - }, - { - "title": "Shirelles - Will You Love Me Tomorrow (Karaoke)", - "id": "qx1hcrAHl6g" - }, - { - "title": "Silhouettes - Get A Job (Karaoke)", - "id": "tGHiOc926O8" - }, - { - "title": "Salt-N-Pepa - Shake Your Thang (It's Your Thing) (Karaoke)", - "id": "0i6NWb6qwEg" - }, - { - "title": "Great White - Once Bitten, Twice Shy (Karaoke)", - "id": "QnTgrOaWzTk" - }, - { - "title": "Frank Sinatra - Moonlight Serenade (Karaoke)", - "id": "bd11faVYQIk" - }, - { - "title": "Uriah Heep - Easy Livin' (Karaoke)", - "id": "NaQV5wIkOn0" - }, - { - "title": "The Spin Doctors - Two Princes (Karaoke)", - "id": "nOwV_6qDy64" - }, - { - "title": "Louis Armstrong - We Have All The Time In The World (Karaoke)", - "id": "R-JHeE_SbsQ" - }, - { - "title": "The Animals - We Gotta Get Out Of This Place (Karaoke Guide Vocal)", - "id": "YuqNQnio7T8" - }, - { - "title": "Roger Miller - Kansas City Star (Karaoke)", - "id": "a4nIDD5RDxI" - }, - { - "title": "Roger Miller - Dang Me (Karaoke)", - "id": "sByLqQ_GHro" - }, - { - "title": "Mungo Jerry - In The Summertime (Karaoke)", - "id": "Hn0YzydMTYI" - }, - { - "title": "Miranda Lambert - Crazy Ex-Girlfriend (Karaoke Guide Vocal)", - "id": "J282WQLKQVY" - }, - { - "title": "Willie Nelson & Toby Keith - Beer For My Horses (Karaoke Guide Vocal)", - "id": "gdiiEgbiUGg" - }, - { - "title": "Kenny Rogers - The Gambler (Karaoke)", - "id": "VwIZ4i8yAbo" - }, - { - "title": "Kenny Loggins - Footloose (Karaoke)", - "id": "FeaUwYvA750" - }, - { - "title": "Kenny Chesney - She Thinks My Tractor's Sexy (Karaoke)", - "id": "ZHDGSljoKVM" - }, - { - "title": "Tim McGraw - Do You Want Fries With That (Karaoke Guide Vocal)", - "id": "ho65tuAto7U" - }, - { - "title": "George Jones - Her Name Is... (Karaoke Guide Vocal)", - "id": "-CaeGvhHGyI" - }, - { - "title": "Garth Brooks - Learning To Live Again (Karaoke)", - "id": "7RGlSF6hsSc" - }, - { - "title": "Garth Brooks - Friends In Low Places (Karaoke)", - "id": "-cskWQ4SaFw" - }, - { - "title": "Aretha Franklin - You Make Me Feel Like A Natural Woman (Karaoke)", - "id": "o3iA-ebNIhI" - }, - { - "title": "Eddie Rabbitt & Crystal Gayle - You And I (Karaoke)", - "id": "lp--9CkaTgM" - }, - { - "title": "Garth Brooks - Uptown Down-Home Good Ol' Boy (Karaoke)", - "id": "EsdK1BvkDTo" - }, - { - "title": "The Bellamy Brothers - If I Said You Had A Beautiful Body (Would You Hold It Against Me) (Karaoke)", - "id": "wbpbaSWtyKk" - }, - { - "title": "Roy Orbison - Blue Bayou (Karaoke)", - "id": "TgticrCmcRo" - }, - { - "title": "Roy Orbison - Oh, Pretty Woman (Karaoke)", - "id": "WyQFmuMajUo" - }, - { - "title": "Steve Winwood - Roll With It (Karaoke)", - "id": "i8hpq4dSjds" - }, - { - "title": "Roger Miller - When Two Worlds Collide (Karaoke)", - "id": "_eVvos-lnD0" - }, - { - "title": "George Jones - The Race Is On (Karaoke)", - "id": "nZctERd-_tA" - }, - { - "title": "Brooks & Dunn - Who Says There Ain't No Santa (Karaoke)", - "id": "_Gssm70hG8Y" - }, - { - "title": "Brooks & Dunn - Santa's Coming Over To Your House (Karaoke)", - "id": "WAQiUPDMBdU" - }, - { - "title": "The Beatles - I Feel Fine (Karaoke)", - "id": "Y684BRmyy0I" - }, - { - "title": "The Beatles - Do You Want To Know A Secret (Karaoke)", - "id": "2e9hz2M6Wko" - }, - { - "title": "Abba - Thank You For The Music (Karaoke)", - "id": "ngfPteX2okk" - }, - { - "title": "Abba - Take A Chance On Me (Karaoke)", - "id": "shh1SiXkGe4" - }, - { - "title": "Abba - Super Trouper (Karaoke)", - "id": "avuvRM-xjZE" - }, - { - "title": "Abba - Lay All Your Love On Me (Karaoke)", - "id": "F8N_m3fZPJA" - }, - { - "title": "Abba - I Have A Dream (Karaoke)", - "id": "flUbrpl1DPA" - }, - { - "title": "Abba - Gimmie Gimmie Gimmie (Karaoke)", - "id": "IO2v6z_YPfU" - }, - { - "title": "John Denver - I Want To Live (Karaoke)", - "id": "pgsLZL9Y9ZY" - }, - { - "title": "Mitch Miller - Ain't We Got Fun (Karaoke)", - "id": "V6LSKI115TQ" - }, - { - "title": "Lorde - The Love Club (Karaoke)", - "id": "5Ufgor9B_w4" - }, - { - "title": "Lorde - Team (Karaoke)", - "id": "CFF-9cJgcFw" - }, - { - "title": "Post Malone - Ball For Me (Karaoke) (Clean version) ft. Nicki Minaj", - "id": "xUdqmpYyMf8" - }, - { - "title": "Post Malone - Take What You Want (Karaoke) ft. Travis Scott, Ozzy Osbourne", - "id": "0ueoJ-GXFTk" - }, - { - "title": "Oasis - Don't Stop (Karaoke)", - "id": "wtDWGr2XeFo" - }, - { - "title": "Megan Thee Stallion - Captain Hook (Karaoke) (clean version)", - "id": "Gl4olc0K2us" - }, - { - "title": "Halsey - You Should Be Sad (Karaoke)", - "id": "vUKv6QDjrlg" - }, - { - "title": "Electric Light Orchestra - Turn To Stone (Karaoke)", - "id": "GXQsC4BcJ0g" - }, - { - "title": "Abba - Mamma Mia (Karaoke)", - "id": "EA_NuPKLcbw" - }, - { - "title": "Badfinger - Come And Get It (Karaoke)", - "id": "00Jg2ew_2Ls" - }, - { - "title": "Bachman-Turner Overdrive - Let It Ride (Karaoke Guide Vocal)", - "id": "-qzaYMdG2ac" - }, - { - "title": "Tammy Wynette & George Jones - (We're Not) The Jet Set (Karaoke)", - "id": "Brs7Pfz4fAY" - }, - { - "title": "Ray Charles - Busted (Karaoke)", - "id": "8AxYkKdJQnE" - }, - { - "title": "Johnny Cash - Oney (Karaoke)", - "id": "Q1HvdtfxyOA" - }, - { - "title": "Hootie & The Blowfish - I Only Wanna Be With You (Karaoke)", - "id": "ux8A-9oq5JY" - }, - { - "title": "The Shangri-Las - Leader Of The Pack (Karaoke)", - "id": "3KUz8gXWwFE" - }, - { - "title": "Stevie Wonder - For Once In My Life (Karaoke)", - "id": "oca8u0fq_Zg" - }, - { - "title": "Stevie Wonder - Yester-Me, Yester-You, Yesterday (Karaoke)", - "id": "KCLU291ublI" - }, - { - "title": "Michael Jackson - Ben (Karaoke)", - "id": "GCyzZlMu7lY" - }, - { - "title": "Juice Newton - Angel Of The Morning (Karaoke)", - "id": "ddS4_0jXnGY" - }, - { - "title": "Marvin Gaye & Kim Weston - It Takes Two (Karaoke Guide Vocal)", - "id": "Mq6uv0ms8gw" - }, - { - "title": "Marvin Gaye - Mercy Mercy Me (The Ecology) (Karaoke Guide Vocal)", - "id": "OVkjJX_K_wg" - }, - { - "title": "Marvin Gaye - I Heard It Through The Grapevine (Karaoke)", - "id": "bVzVMgzA3H0" - }, - { - "title": "Marvin Gaye - Got To Give It Up (Karaoke Guide Vocal)", - "id": "SGpV5KAX_C8" - }, - { - "title": "Martha & The Vandellas - Dancing In The Street (Karaoke)", - "id": "Vzi_kXvjeXA" - }, - { - "title": "Marvin Gaye - Ain't That Peculiar (Karaoke)", - "id": "cgASTcF7QWk" - }, - { - "title": "Marvin Gaye & Tammi Terrell - You're All I Need To Get By (Karaoke)", - "id": "gzDyzfyfWME" - }, - { - "title": "Marvin Gaye - What's Going On (Karaoke)", - "id": "rt38mryKqLI" - }, - { - "title": "Marvin Gaye - Too Busy Thinking About My Baby (Karaoke Guide Vocal)", - "id": "YfBBMLgJWnY" - }, - { - "title": "Marvin Gaye - That's The Way Love Is (Karaoke Guide Vocal)", - "id": "VRRtohuFCts" - }, - { - "title": "Marvin Gaye - Pride And Joy (Karaoke)", - "id": "6SkFKLUCRdM" - }, - { - "title": "Josh Turner - What It Ain't (Karaoke)", - "id": "RUYX6K64-Ac" - }, - { - "title": "Fats Domino - Whole Lotta Loving (Karaoke)", - "id": "E_piJCVGs6c" - }, - { - "title": "Fats Domino - I'm Walkin' (Karaoke)", - "id": "kh23gR9ev_c" - }, - { - "title": "Fats Domino - I Want To Walk You Home (Karaoke)", - "id": "Pfe8HVryHG8" - }, - { - "title": "Fats Domino - Ain't That A Shame (Karaoke)", - "id": "Hb3evG8ttGY" - }, - { - "title": "Edgar Winter Group - Free Ride (Karaoke)", - "id": "KSjAjESb8v0" - }, - { - "title": "Eddie Rabbitt - Pour Me Another Tequila (Karaoke)", - "id": "7WWDR4dQGOA" - }, - { - "title": "Eddie Kendricks - Keep On Truckin' (Karaoke)", - "id": "NfT2k1XtA1M" - }, - { - "title": "Eddie Kendricks - Boogie Down (Karaoke)", - "id": "tW69joTxz14" - }, - { - "title": "Dave Edmunds Band - I Hear You Knockin' (Karaoke Guide Vocal)", - "id": "vyST4G4skeQ" - }, - { - "title": "Marvin Gaye - Let's Get It On (Karaoke)", - "id": "lNE6c-rG8HQ" - }, - { - "title": "Tommy Roe - Jam Up, Jelly Tight (Karaoke)", - "id": "UL7ZxVwaJS0" - }, - { - "title": "Tommy James & The Shondells - Draggin' The Line (Karaoke Guide Vocal)", - "id": "dYAQtdeSm4s" - }, - { - "title": "Tommy James & The Shondells - Crystal Blue Persuasion (Karaoke)", - "id": "TaKdlgHeN3M" - }, - { - "title": "Tommy James & The Shondells - Crimson And Clover (Karaoke)", - "id": "DO_4Zp5Ms78" - }, - { - "title": "Tom T. Hall - That Song Is Driving Me Crazy (Karaoke)", - "id": "x1nIzGvRV9w" - }, - { - "title": "Tom T. Hall - Ravishing Ruby (Karaoke)", - "id": "SzpSrn4LCaM" - }, - { - "title": "Kenny Chesney - No Shoes, No Shirt, No Problems (Karaoke Guide Vocal)", - "id": "J0Zlnryj9oM" - }, - { - "title": "BTS - Dynamite (Karaoke)", - "id": "rfX_ndc0J-A" - }, - { - "title": "The Temptations - Papa Was A Rolling Stone (Karaoke)", - "id": "FRwrbWeyRjo" - }, - { - "title": "The Temptations - Beauty Is Only Skin Deep (Karaoke)", - "id": "tT29CkwJUC4" - }, - { - "title": "Kenny Chesney - A Lot Of Things Different (Karaoke Guide Vocal)", - "id": "mf9j7AeiOIM" - }, - { - "title": "Huey Lewis, Gwyneth Paltrow - Cruisin' (Karaoke)", - "id": "Qt2Bwyg0VtQ" - }, - { - "title": "The Temptations - All I Need (Karaoke)", - "id": "BoBuZMz_aK0" - }, - { - "title": "The Temptations - Ball Of Confusion (Karaoke)", - "id": "nZF7r5zFMo0" - }, - { - "title": "The Temptations - Cloud Nine (Karaoke)", - "id": "rlcxMUS08jk" - }, - { - "title": "The Temptations - Just My Imagination (Karaoke)", - "id": "rjecTyWHXZY" - }, - { - "title": "The Temptations - Get Ready (Karaoke)", - "id": "hzMgTMcgof0" - }, - { - "title": "The Temptations - I Wish It Would Rain (Karaoke)", - "id": "s4CQBF2lksM" - }, - { - "title": "Alan Jackson - My Own Kind Of Hat (Karaoke)", - "id": "MLHIKf33nuY" - }, - { - "title": "Alan Jackson - Pop A Top (Karaoke)", - "id": "Js3kQvaHwN0" - }, - { - "title": "Waylon Jennings - The Eagle (Karaoke)", - "id": "Iw3ohBR0fUY" - }, - { - "title": "Jackson 5 - Never Can Say Goodbye (Karaoke)", - "id": "XHmAYy7Mnuc" - }, - { - "title": "George Thorogood - Move It On Over (Karaoke)", - "id": "0pr42O8rNCU" - }, - { - "title": "George Thorogood - Move It On Over (Karaoke Guide Vocal)", - "id": "0mwQV_HVVZU" - }, - { - "title": "George Strait - The Seashores Of Old Mexico (Karaoke)", - "id": "UQkv5wI0SN4" - }, - { - "title": "George Strait - Tell Me Something Bad About Tulsa (Karaoke Guide Vocal)", - "id": "_oTZJWWqoOU" - }, - { - "title": "George Strait - The Road Less Traveled (Karaoke Guide Vocal)", - "id": "GjiyA7iwPwk" - }, - { - "title": "George Strait - When Did You Stop Loving Me (Karaoke)", - "id": "9vD3xtz-AB4" - }, - { - "title": "George Strait - Overnight Success (Karaoke)", - "id": "5Kjwj0oWSi4" - }, - { - "title": "George Strait - Does Ft. Worth Ever Cross Your Mind (Karaoke)", - "id": "HvBkc7A8yVY" - }, - { - "title": "George Strait - Drinking Champagne (Karaoke)", - "id": "Vj9cCrp2boo" - }, - { - "title": "George Strait - All My Ex's Live In Texas (Karaoke)", - "id": "lhcfaCec8SI" - }, - { - "title": "George Hamilton IV - Abilene (Karaoke)", - "id": "6YjkfCRASjs" - }, - { - "title": "Johnny Paycheck - A-11 (Karaoke)", - "id": "jYSn0oNjXpg" - }, - { - "title": "Jimmy Elledge - Funny How Time Slips Away (Karaoke)", - "id": "cjXnTk53oU4" - }, - { - "title": "Willie Nelson - City Of New Orleans (Karaoke)", - "id": "Rk8j_93HP80" - }, - { - "title": "Roxie Dean - A Soldier's Wife (Karaoke)", - "id": "OgFI9uLJzEc" - }, - { - "title": "Burl Ives - A Little Bitty Tear (Karaoke Guide Vocal)", - "id": "wUw-xXhO7FI" - }, - { - "title": "Martina McBride - A Broken Wing (Karaoke)", - "id": "U124_1HvxM0" - }, - { - "title": "Randy Montana - 1,000 Faces (Karaoke)", - "id": "1Q-EDvl35Tc" - }, - { - "title": "Lorrie Morgan - Except For Monday (Karaoke)", - "id": "h5CnNJhmXSY" - }, - { - "title": "Jamey Johnson - The Dollar (Karaoke)", - "id": "XAXTn4FPwcQ" - }, - { - "title": "Lit - My Own Worst Enemy (Karaoke)", - "id": "pGCFUftLFq0" - }, - { - "title": "Marty Robbins - Big Iron (Karaoke)", - "id": "3JzEbgpRe0M" - }, - { - "title": "Hanson - If Only (Karaoke)", - "id": "r2T_ju0s1qs" - }, - { - "title": "Hanson - Give A Little (Karaoke)", - "id": "auKbW8IM_-M" - }, - { - "title": "Keith Urban - We Were (Karaoke)", - "id": "tCZLHXfQWOU" - }, - { - "title": "The Chainsmokers - Beach House (Karaoke)", - "id": "ShbeiGY09Nc" - }, - { - "title": "Five Finger Death Punch - Full Circle (Karaoke)", - "id": "PNIrds9fNHE" - }, - { - "title": "Eric Church - Desperate Man (Karaoke)", - "id": "7LwIOjfQx3A" - }, - { - "title": "Lana Del Rey - Mariners Apartment Complex (Karaoke)", - "id": "2BbCblq6gmg" - }, - { - "title": "Lady Gaga - Always Remember Us This Way (Karaoke EZ Sing)", - "id": "n4q7AWdRl9I" - }, - { - "title": "Amy Shark - Mess Her Up (Karaoke)", - "id": "2I2nomuxOIY" - }, - { - "title": "Lewis Capaldi - Before You Go (Karaoke)", - "id": "mwNmSHt5qSM" - }, - { - "title": "Linda Ronstadt - Different Drum (Karaoke)", - "id": "KrGYOaJvX-4" - }, - { - "title": "Lana Del Rey - Gods & Monsters (Karaoke)", - "id": "uoDskFxm3wo" - }, - { - "title": "Southern Gospel - Why Me Lord (Karaoke)", - "id": "sMETVCLoqPQ" - }, - { - "title": "Kenny Rogers - You Decorated My Life (Karaoke)", - "id": "33WZ1dg7EkI" - }, - { - "title": "Ferlin Husky - Heavenly Sunshine (Karaoke Guide Vocal)", - "id": "JCc_WbWusB0" - }, - { - "title": "Dottie West & Kenny Rogers - All I Ever Need Is You (Karaoke)", - "id": "mPQCwf3rVOc" - }, - { - "title": "Sonny & Cher - All I Ever Need Is You (Karaoke)", - "id": "4uH9StZ5Zys" - }, - { - "title": "Toby Keith - As Good As I Once Was (Karaoke)", - "id": "3xw6DzAfIuE" - }, - { - "title": "Tracy Byrd - Watermelon Crawl (Karaoke)", - "id": "URcIcTnB04k" - }, - { - "title": "Robert Palmer - Bad Case Of Loving You (Doctor, Doctor) (Karaoke)", - "id": "rxmGzliQ5Y8" - }, - { - "title": "Garth Brooks - Callin' Baton Rouge (Karaoke)", - "id": "WXHtfx0dg2Q" - }, - { - "title": "George Strait - Ocean Front Property (Karaoke)", - "id": "VgbyBeehVMU" - }, - { - "title": "George Strait - Fool Hearted Memory (Karaoke)", - "id": "bOBbGiNlh08" - }, - { - "title": "George Strait - The Fireman (Karaoke)", - "id": "jGoscyVJYv4" - }, - { - "title": "George Jones - The Cold Hard Truth (Karaoke)", - "id": "OqhPJo413kQ" - }, - { - "title": "George Jones - Golden Ring (Karaoke) ft. Tammy Wynette", - "id": "KcTGPTvqhfU" - }, - { - "title": "George Jones - You Comb Her Hair (Karaoke)", - "id": "Qph6uFpyJKo" - }, - { - "title": "George Jones - I Always Get Lucky With You (Karaoke)", - "id": "ApZixo5f6TY" - }, - { - "title": "Hank Williams - Lost Highway (Karaoke)", - "id": "PHa6_Z78NN0" - }, - { - "title": "Miranda Lambert - New Strings (Karaoke)", - "id": "zyrmHTES5A0" - }, - { - "title": "Miranda Lambert - More Like Her (Karaoke)", - "id": "lpahT2kh62o" - }, - { - "title": "Jack Greene - Lord Is That Me (Karaoke EZ Sing)", - "id": "G0QZV_lkhgc" - }, - { - "title": "Jack Greene - Wish I Didn't Have To Miss You (Karaoke EZ Sing)", - "id": "5rFi4vMRqDM" - }, - { - "title": "Jack Greene - Back In The Arms Of Love (Karaoke EZ Sing)", - "id": "pF3Fx7YiDaw" - }, - { - "title": "Jack Greene - What Locks The Door (Karaoke EZ Sing)", - "id": "oIX4iqsPF_w" - }, - { - "title": "Kenny Chesney - When I See This Bar (Karaoke EZ Sing)", - "id": "HT48jxrFl6Q" - }, - { - "title": "Kenny Chesney - Old Blue Chair (Karaoke)", - "id": "d0RGTD9xvsM" - }, - { - "title": "Kenny Chesney - Beer In Mexico (Karaoke)", - "id": "JrgqEoexmmQ" - }, - { - "title": "Hank Williams - Cold Cold Heart (Karaoke EZ Sing)", - "id": "N4KTwiQHKVI" - }, - { - "title": "Commodores - Brick House (Karaoke EZ Sing)", - "id": "kgl4hrVVzXs" - }, - { - "title": "The Charlie Daniels Band - Uneasy Rider (Karaoke)", - "id": "EnFY-Ebh0sM" - }, - { - "title": "The Charlie Daniels Band - Long Haired Country Boy (Karaoke)", - "id": "CJFeCMsa1Oc" - }, - { - "title": "The Commodores - Three Times A Lady (Karaoke)", - "id": "OzLe8Q0oTtI" - }, - { - "title": "Tom T. Hall - I Care (Karaoke)", - "id": "tZ_hjbruSMY" - }, - { - "title": "Tom T. Hall - I Like Beer (Karaoke)", - "id": "6BBo-Fhj2qc" - }, - { - "title": "Tom T. Hall - Country Is (Karaoke)", - "id": "O2yK_g2qb8Y" - }, - { - "title": "Tom T. Hall - Faster Horses (The Cowboy And The Poet) (Karaoke)", - "id": "Moelm7NDhTU" - }, - { - "title": "Tom T. Hall - I Love (Karaoke)", - "id": "Pt2x-yGR_AI" - }, - { - "title": "Tom T. Hall - Old Dogs, Children And Watermelon Wine (Karaoke)", - "id": "LyJFPqDfLYA" - }, - { - "title": "Tom Jones - Green Green Grass Of Home (Karaoke)", - "id": "nXT9TaDFR94" - }, - { - "title": "Tom Jones - Delilah (Karaoke)", - "id": "RW39Rk_PS_c" - }, - { - "title": "Todd Rundgren - Hello It's Me (Karaoke)", - "id": "ugpGXHYHPyU" - }, - { - "title": "Toby Keith - Honky Tonk U (Karaoke)", - "id": "WYG8V7w7cQU" - }, - { - "title": "Toby Keith - I Wanna Talk About Me (Karaoke Guide Vocal)", - "id": "ozoJWSSKueY" - }, - { - "title": "Tammy Wynette - Woman To Woman (Karaoke Guide Vocal)", - "id": "OsvxkJDhXgs" - }, - { - "title": "Tammy Wynette - Kids Say The Darndest Things (Karaoke)", - "id": "czFbgVjYEOU" - }, - { - "title": "Tammy Wynette - Stand By Your Man (Karaoke)", - "id": "gDC0TTAIHeM" - }, - { - "title": "Tammy Wynette - I Don't Wanna Play House (Karaoke)", - "id": "muAvzR_hN-o" - }, - { - "title": "Tammy Wynette - Your Good Girl's Gonna Go Bad (Karaoke)", - "id": "PPCuYm3r_pk" - }, - { - "title": "Tammy Wynette - D.I.V.O.R.C.E. (Karaoke)", - "id": "lmb8ngZxl0c" - }, - { - "title": "Traditional - A Bicycle Built For Two (Karaoke)", - "id": "7Azg-aa343Y" - }, - { - "title": "R.E.M. - Man On The Moon (Karaoke)", - "id": "52kap5cUMGo" - }, - { - "title": "Britney Spears - Break The Ice (Karaoke)", - "id": "ZzHVnZMvwrA" - }, - { - "title": "Alicia Keys - Butterflyz (Karaoke)", - "id": "KaLqcgrsh8Y" - }, - { - "title": "The Chainsmokers - Paris (Karaoke)", - "id": "yZ7v8dkeYs8" - }, - { - "title": "Marshmello & Halsey - Be Kind (Karaoke)", - "id": "6HH96AN0o6I" - }, - { - "title": "Machine Gun Kelly feat. blackbear - My Ex's Best Friend (Karaoke)", - "id": "tgv0yx3T50g" - }, - { - "title": "Khalid - Talk (Karaoke)", - "id": "XRYA2b1_i0k" - }, - { - "title": "Anne Murray - You Won't See Me (Karaoke)", - "id": "QMLT_DRCL1U" - }, - { - "title": "The Chainsmokers feat. ROZES - Roses (Karaoke)", - "id": "I-PNiLP44-0" - }, - { - "title": "The Chainsmokers - All We Know (Karaoke) ft. Phoebe Ryan", - "id": "viTYHxxdb1I" - }, - { - "title": "Lewis Capaldi - Someone You Loved (Karaoke EZ Sing)", - "id": "kZ_e10tvxs4" - }, - { - "title": "The Rascals - A Beautiful Morning (Karaoke)", - "id": "NUS1UT8lz2E" - }, - { - "title": "Heart - Alone (Karaoke)", - "id": "DTsskpuPGzQ" - }, - { - "title": "Madonna - Like A Virgin (Karaoke)", - "id": "Z7w_OOKHEV8" - }, - { - "title": "Jennifer Lopez - Ain't It Funny (Karaoke)", - "id": "MyIHEjmbF2M" - }, - { - "title": "Ray Stevens - It's Me Again Margaret (Karaoke)", - "id": "uWybnQ7l1ns" - }, - { - "title": "Ray Stevens - Santa Claus Is Watching You (Karaoke)", - "id": "ywmSEYW1-60" - }, - { - "title": "Ray Stevens - Along Came Jones (Karaoke)", - "id": "NPA2G0SRVgA" - }, - { - "title": "Michael W. Smith - Agnus Dei (Karaoke)", - "id": "jncZe0UQZfY" - }, - { - "title": "Emmylou Harris - Once More (Karaoke)", - "id": "4Y_dLjpwo5Y" - }, - { - "title": "Emmylou Harris - Making Believe (Karaoke)", - "id": "83hyia2AoKQ" - }, - { - "title": "Emmylou Harris - Beneath Still Waters (Karaoke)", - "id": "toXicdjyIcQ" - }, - { - "title": "Jimmy Dean - Big Bad John (Karaoke)", - "id": "kjlXt45LEY8" - }, - { - "title": "Billie Jo Spears - Blanket On The Ground (Karaoke)", - "id": "JX0zU7qz1Xs" - }, - { - "title": "Buck Owens - Before You Go (Karaoke)", - "id": "4TxOVt7uKcc" - }, - { - "title": "Miranda Lambert - What About Georgia (Karaoke)", - "id": "q_gJsFL6ukA" - }, - { - "title": "Miranda Lambert - New Strings (Karaoke Guide Vocal)", - "id": "UVyrqICEZNM" - }, - { - "title": "Miranda Lambert - More Like Her (Karaoke Guide Vocal)", - "id": "4vSXYPAE-Bc" - }, - { - "title": "Miranda Lambert - Dead Flowers (Karaoke)", - "id": "JuItyqLhqnk" - }, - { - "title": "Miranda Lambert - Bathroom Sink (Karaoke)", - "id": "uHOT2UOQta0" - }, - { - "title": "Christina Aguilera - Beautiful (Karaoke)", - "id": "1bE13COTE58" - }, - { - "title": "Jack Greene - Lord Is That Me (Karaoke Guide Vocal)", - "id": "3H3gVaYKPAI" - }, - { - "title": "Jack Greene - Wish I Didn't Have To Miss You (Karaoke Guide Vocal)", - "id": "mPfOLXAEgmw" - }, - { - "title": "Jack Greene - Back In The Arms Of Love (Karaoke Guide Vocal)", - "id": "V2F5YG_ZMmc" - }, - { - "title": "Jack Greene - What Locks The Door (Karaoke Guide Vocal)", - "id": "_zsquuc8RWU" - }, - { - "title": "Kenny Chesney - When I See This Bar (Karaoke Guide Vocal)", - "id": "GzyuerAOnHA" - }, - { - "title": "Kenny Chesney - Old Blue Chair (Karaoke Guide Vocal)", - "id": "XBPDyabfhKw" - }, - { - "title": "Johnny Cash - One Piece At A Time (Karaoke)", - "id": "95ZpyK3u4F8" - }, - { - "title": "Robert Palmer - Sneakin' Sally Thru The Alley (Karaoke)", - "id": "Nu2JsYYOeVc" - }, - { - "title": "Robert Palmer - Bad Case Of Loving You (Doctor, Doctor) (Karaoke Guide Vocal)", - "id": "zvWBbDLCoGc" - }, - { - "title": "Toby Keith - Red Solo Cup (Karaoke)", - "id": "KIIEM5Jdagk" - }, - { - "title": "Merle Haggard - Let's Chase Each Other Around The Room (Karaoke EZ Sing)", - "id": "W3g03LcqmqA" - }, - { - "title": "Kenny Chesney - Beer In Mexico (Karaoke Guide Vocal)", - "id": "ny4pU4nPVR0" - }, - { - "title": "Merle Haggard - From Graceland To The Promised Land (Karaoke)", - "id": "Ja8wN0F1We8" - }, - { - "title": "Heart - Magic Man (Karaoke)", - "id": "PE5uDXPz_9g" - }, - { - "title": "Hank Williams Jr. - I'd Rather Be Gone (Karaoke)", - "id": "dyYHc4BjcYw" - }, - { - "title": "Hank Williams Jr. - All For The Love Of Sunshine (Karaoke)", - "id": "wsqFVvzj2cE" - }, - { - "title": "Hank Williams - There's A Tear In My Beer (Karaoke)", - "id": "gYHIPG32WbE" - }, - { - "title": "Hank Williams - Lost Highway (Karaoke Guide Vocal)", - "id": "3P6ohYVjMjE" - }, - { - "title": "Hank Williams - I Can't Help It If I'm Still In Love With You (Karaoke)", - "id": "dhx9qdW128E" - }, - { - "title": "Hank Williams - Honky Tonk Blues (Karaoke)", - "id": "83Ol-EXM9zM" - }, - { - "title": "Hank Williams - Calling You (Karaoke)", - "id": "9ddm0YqZsRw" - }, - { - "title": "Buck Owens - I Don't Care (Just As Long As You Love Me) (Karaoke)", - "id": "Di5CUrWrl0Q" - }, - { - "title": "Buck Owens - It Takes People Like You (To Make People Like Me) (Karaoke)", - "id": "MKuFZSPhgwA" - }, - { - "title": "Buck Owens - Act Naturally (Karaoke)", - "id": "LItCtAZc-ao" - }, - { - "title": "Buck Owens - Waitin' In Your Welfare Line (Karaoke)", - "id": "9ReP-pODxiY" - }, - { - "title": "Buck Owens - Made In Japan (Karaoke)", - "id": "V070goWtBos" - }, - { - "title": "Buck Owens - Act Naturally (Karaoke)", - "id": "A-1O3Wu47_g" - }, - { - "title": "Rod Stewart - This Old Heart Of Mine (Karaoke)", - "id": "p5hkASbllAw" - }, - { - "title": "Robin S. - Show Me Love (Karaoke)", - "id": "3IbCcdWz3Nk" - }, - { - "title": "The Temptations - Treat Her Like A Lady (Karaoke)", - "id": "_op28iOD1j8" - }, - { - "title": "The Isley Brothers - This Old Heart Of Mine (Karaoke)", - "id": "L1sFNvRYZXM" - }, - { - "title": "Buck Owens - Together Again (Karaoke Guide Vocal)", - "id": "SK3WCsOoeVQ" - }, - { - "title": "Post Malone - Congratulations (Karaoke) ft. Quavo", - "id": "3XAuX5Xx94A" - }, - { - "title": "Luke Bryan - Move (Karaoke)", - "id": "NbSohGXlZIk" - }, - { - "title": "Luke Bryan - Light It Up (Karaoke)", - "id": "8XWc6sbeecI" - }, - { - "title": "Machine Gun Kelly - Forget Me Too (Duet Version) (Karaoke) ft. Halsey", - "id": "S7vbX6lpmKE" - }, - { - "title": "The Chainsmokers - #SELFIE (Karaoke)", - "id": "61VZyPh7LEE" - }, - { - "title": "Sia - Bird Set Free (Karaoke)", - "id": "rFKazvmsBZ4" - }, - { - "title": "Danny & The Juniors - At The Hop (Karaoke)", - "id": "KCSFNqeqwNw" - }, - { - "title": "Hanson - Mmm Bop (Karaoke)", - "id": "304cBW3GKP4" - }, - { - "title": "Merle Haggard - Are The Good Times Really Over (I Wish A Buck Was Still Silver) (Karaoke)", - "id": "m4gvtVMSfoo" - }, - { - "title": "Merle Haggard - I'm Always On A Mountain When I Fall (Karaoke)", - "id": "uOooGLOiE18" - }, - { - "title": "Hank Williams - House Of Gold (Karaoke)", - "id": "BU8H-3qezkw" - }, - { - "title": "Hank Williams - Move It On Over (Karaoke)", - "id": "gF68EuqUKpk" - }, - { - "title": "Hank Williams - Alone And Forsaken (Karaoke)", - "id": "Lq8Q8Uj7zeU" - }, - { - "title": "Merle Haggard - I Can't Be Myself (Karaoke)", - "id": "b_jQQNW-7S8" - }, - { - "title": "Merle Haggard - The Legend Of Bonnie And Clyde (Karaoke)", - "id": "OGpmqBoo9z4" - }, - { - "title": "Merle Haggard - I Wonder If They Ever Think Of Me (Karaoke)", - "id": "iWTT4-6yQA8" - }, - { - "title": "Merle Haggard - Old Man From The Mountain (Karaoke)", - "id": "XFtg86UGCGk" - }, - { - "title": "Merle Haggard - Going Where The Lonely Go (Karaoke)", - "id": "kV21iJUSWo8" - }, - { - "title": "Merle Haggard - Always Wanting You (Karaoke)", - "id": "DNZbF-adcMc" - }, - { - "title": "Merle Haggard - Carolyn (Karaoke)", - "id": "zTRmP1jKR3g" - }, - { - "title": "Merle Haggard - Natural High (Karaoke)", - "id": "pXGzAOaKih0" - }, - { - "title": "Merle Haggard - Grandma Harp (Karaoke)", - "id": "TAy59EGd3z0" - }, - { - "title": "Merle Haggard - My Favorite Memory (Karaoke)", - "id": "dONa-FSu91A" - }, - { - "title": "Merle Haggard - We Never Touch At All (Karaoke)", - "id": "YlH7KEVbC8c" - }, - { - "title": "Merle Haggard - Twinkle Twinkle Lucky Star (Karaoke)", - "id": "uPDeufvHkaE" - }, - { - "title": "Merle Haggard - Swinging Doors (Karaoke)", - "id": "bF8a26j6gT0" - }, - { - "title": "Merle Haggard - Things Aren't Funny Anymore (Karaoke)", - "id": "pzWDm6H_FOk" - }, - { - "title": "Merle Haggard - Someday We'll Look Back (Karaoke)", - "id": "MSaQ3QDihpQ" - }, - { - "title": "Merle Haggard - Sing Me Back Home (Karaoke)", - "id": "BlLwu_GHPc8" - }, - { - "title": "Merle Haggard - Ramblin' Fever (Karaoke)", - "id": "lojeizj8TqM" - }, - { - "title": "Merle Haggard - It's Not Love But It's Not Bad (Karaoke)", - "id": "8dcKgUwOXlI" - }, - { - "title": "Merle Haggard - It's All In The Movies (Karaoke)", - "id": "zBNjCeFq0Gk" - }, - { - "title": "Merle Haggard - I Threw Away The Rose (Karaoke)", - "id": "yKLT3sv30dg" - }, - { - "title": "Merle Haggard - Hungry Eyes (Karaoke)", - "id": "T32EEXyAoNg" - }, - { - "title": "Merle Haggard - Here Comes The Freedom Train (Karaoke)", - "id": "UKVOlazPlyM" - }, - { - "title": "Merle Haggard - Farmer's Daughter (Karaoke)", - "id": "jGxYqw505lM" - }, - { - "title": "Merle Haggard - Everybody's Had The Blues (Karaoke)", - "id": "e4Gj_0eUxl0" - }, - { - "title": "Willie Nelson - Touch Me (Karaoke)", - "id": "H1wSJ-RZDs0" - }, - { - "title": "Patsy Cline - Crazy (Karaoke)", - "id": "2uNkhflbboY" - }, - { - "title": "Waylon Jennings - A Good Hearted Woman (Karaoke)", - "id": "bZ7Cza2Nhag" - }, - { - "title": "Kenny Chesney - Christmas In Dixie (Karaoke)", - "id": "Hxqq-xVNSwI" - }, - { - "title": "Steve Wariner - This Christmas Prayer (Karaoke)", - "id": "1utu6MlsQOg" - }, - { - "title": "Tommy Shane Steiner - What We're Gonna Do About It (Karaoke)", - "id": "WRls7BbfuH0" - }, - { - "title": "The Freemans - Something Out Of Nothing (Karaoke)", - "id": "hQu7KDOyrRg" - }, - { - "title": "SHeDAISY - Still Holding Out For You (Karaoke)", - "id": "YJ2kp-9dqiA" - }, - { - "title": "Elvis Presley - Way Down (Karaoke)", - "id": "6fwNqvC2-EM" - }, - { - "title": "Ronnie Milsap - I'm A Stand By My Woman Man (Karaoke)", - "id": "kMsmRZbJmio" - }, - { - "title": "Hal Ketchum - Just This Side Of Heaven (Hal-Lelujah) (Karaoke)", - "id": "2kbKFpa4NG4" - }, - { - "title": "Doris Day - Everybody Loves A Lover (Karaoke)", - "id": "bK2gKbctsvI" - }, - { - "title": "\"Little\" Jimmy Dickens - Hillbilly Fever (Karaoke)", - "id": "sEouyKnbBNg" - }, - { - "title": "Willie Nelson - Uncloudy Day (Karaoke Guide Vocal)", - "id": "LVyeD7vlo-w" - }, - { - "title": "Willie Nelson - Sweet Memories (Karaoke)", - "id": "JYAEQewuAq4" - }, - { - "title": "Willie Nelson - Pretty Paper (Karaoke)", - "id": "N8_0FCh-NUw" - }, - { - "title": "Willie Nelson - Always On My Mind (Karaoke)", - "id": "dtgLY1gGw9k" - }, - { - "title": "Willie Nelson - Whiskey River (Karaoke)", - "id": "H23gwN-dgig" - }, - { - "title": "Willie Nelson - Angel Flying Too Close To The Ground (Karaoke)", - "id": "7GoZZDEIvr8" - }, - { - "title": "Willie Nelson - On The Road Again (Karaoke)", - "id": "ThTNQMXgD_0" - }, - { - "title": "Willie Nelson - Blue Eyes Cryin' In The Rain (Karaoke)", - "id": "KWeZNX2zpao" - }, - { - "title": "Waylon Jennings - Good Ol' Boys [From \"The Dukes Of Hazzard] (Karaoke)", - "id": "jlc1oCWyCyE" - }, - { - "title": "Merle Haggard - Daddy Frank (Karaoke)", - "id": "Ep4235PHVdg" - }, - { - "title": "Merle Haggard - Branded Man (Karaoke)", - "id": "0Pq-8IszAGE" - }, - { - "title": "Merle Haggard - The Bottle Let Me Down (Karaoke)", - "id": "UeIa97FHRr4" - }, - { - "title": "Merle Haggard - (My Friends Are Gonna Be) Strangers (Karaoke)", - "id": "xnhFkH0KQ5w" - }, - { - "title": "Merle Haggard - Silver Wings (Karaoke)", - "id": "sDsz365F7Aw" - }, - { - "title": "Merle Haggard - If We Make It Through December (Karaoke)", - "id": "2cGzlOUEUL4" - }, - { - "title": "Merle Haggard - A Working Man Can't Get Nowhere Today (Karaoke)", - "id": "riuPddVUzow" - }, - { - "title": "Merle Haggard - Big City (Karaoke)", - "id": "CUKvAVS_HmE" - }, - { - "title": "Merle Haggard - Okie From Muskogee (Karaoke)", - "id": "UUPAW6HAX4M" - }, - { - "title": "The Beatles - A Hard Day's Night (Karaoke)", - "id": "NZqMpQXPibY" - }, - { - "title": "Los Lonely Boys - Heaven (Karaoke)", - "id": "j-hvYElSahg" - }, - { - "title": "Loverboy - Turn Me Loose (Karaoke)", - "id": "MNxpFjaMblQ" - }, - { - "title": "Hank Williams - Lovesick Blues (Karaoke)", - "id": "1d_6xY-Q0oA" - }, - { - "title": "KC And The Sunshine Band - That's The Way (I Like It) (Karaoke)", - "id": "r71RFRseccs" - }, - { - "title": "KC And The Sunshine Band - Get Down Tonight (Karaoke)", - "id": "3KyPW_R7opI" - }, - { - "title": "Maxwell - This Woman's Work (Karaoke)", - "id": "2WFSG3pMnt0" - }, - { - "title": "Johnny Paycheck - Friend, Lover, Wife (Karaoke)", - "id": "ZzM7jQjisBs" - }, - { - "title": "Joe Stampley - Roll On Big Mama (Karaoke)", - "id": "Ey94XYEIeRc" - }, - { - "title": "Joe Diffie - John Deere Green (Karaoke)", - "id": "wdXrkA69zkQ" - }, - { - "title": "Joe Diffie - Pickup Man (Karaoke)", - "id": "8Jmt2uba6zU" - }, - { - "title": "Jimmy Ruffin - What Becomes Of The Brokenhearted (Karaoke)", - "id": "cUv3zWG0jMw" - }, - { - "title": "The Troggs - Wild Thing (Karaoke)", - "id": "dwNVPWpg9lk" - }, - { - "title": "Jerry Lee Lewis - Thirty Nine And Holding (Karaoke)", - "id": "tKcntsH1ITQ" - }, - { - "title": "Jerry Lee Lewis - What's Made Milwaukee Famous (Has Made A Loser Out Of Me) (Karaoke)", - "id": "mDb1KcQFpxc" - }, - { - "title": "Jan & Dean - Dead Man's Curve (Karaoke)", - "id": "ApSilzHkVZg" - }, - { - "title": "Jan & Dean - Surf City (Karaoke)", - "id": "_QBa-9y71ws" - }, - { - "title": "Jamey Johnson - The Dollar (Karaoke Guide Vocal)", - "id": "I7KPwwGzR_o" - }, - { - "title": "The Jackson 5 - Never Can Say Goodbye (Karaoke Guide Vocal)", - "id": "gQejpG6ZWr8" - }, - { - "title": "The Jackson 5 - Dancing Machine (Karaoke)", - "id": "WXNdrXvZNVw" - }, - { - "title": "The Jackson 5 - ABC (Karaoke)", - "id": "UFi0tYMyLMw" - }, - { - "title": "Jackson 5 - I'll Be There (Karaoke)", - "id": "VGy1ZPIMSfM" - }, - { - "title": "Ricky Van Shelton - Don't We All Have The Right (Karaoke)", - "id": "iA5ibNuDbkU" - }, - { - "title": "Rhonda Vincent & The Rage - My Sweet Love Ain't Around (Karaoke)", - "id": "qOS0I-KgjK8" - }, - { - "title": "Red Foley, Kitty Wells - As Long As I Live (Karaoke)", - "id": "g4BtgRvxo-I" - }, - { - "title": "Red Foley - Mississippi (Karaoke)", - "id": "MrJ0E_pjb-8" - }, - { - "title": "Reba McEntire - Walk On (Karaoke)", - "id": "2xqrYiaiTnU" - }, - { - "title": "Reba McEntire - Cathy's Clown (Karaoke)", - "id": "Lhol5tICXtI" - }, - { - "title": "Ray Price - The Same Old Me (Karaoke)", - "id": "nS6uNTTGb04" - }, - { - "title": "Ray Charles - I Can't Stop Loving You (Karaoke)", - "id": "iGKnWsiqSfs" - }, - { - "title": "Randy Travis - On The Other Hand (Karaoke)", - "id": "LyAYy_EZ8oY" - }, - { - "title": "Merle Haggard - Fightin' Side Of Me (Karaoke)", - "id": "j0u1jbHgFOw" - }, - { - "title": "Mel Carter - Hold Me, Thrill Me, Kiss Me (Karaoke)", - "id": "g2wpT6xm0pc" - }, - { - "title": "Los Lobos - La Bamba (Karaoke)", - "id": "1LgSRgNcB4g" - }, - { - "title": "Kristin Garner - Singing To The Scarecrow (Karaoke EZ Sing)", - "id": "KrztCf-6TRE" - }, - { - "title": "Eric Church - Drink In My Hand (Karaoke)", - "id": "Jy39lwpbxMM" - }, - { - "title": "Kitty Wells - I Can't Stop Loving You (Karaoke)", - "id": "qFb08Wm5_gk" - }, - { - "title": "Ellie Goulding - How Long Will I Love You (Karaoke)", - "id": "KUh3m00Uw_I" - }, - { - "title": "Ellie Goulding - Anything Could Happen (Karaoke)", - "id": "zlO1RBOZ6q8" - }, - { - "title": "Demi Lovato - Anyone (clean) (Karaoke EZ Sing)", - "id": "6fqDgYftoZw" - }, - { - "title": "Lady Gaga - G.U.Y. (Guy) (Karaoke)", - "id": "chZ8TsPL7to" - }, - { - "title": "Lady Gaga - Million Reasons (Karaoke)", - "id": "T0vXbTc7YWU" - }, - { - "title": "The Judds - Working In The Coal Mine (Karaoke)", - "id": "EtlunCC66Q0" - }, - { - "title": "Lana Del Rey - Shades Of Cool (Karaoke EZ Sing)", - "id": "8fMTGvxgPJY" - }, - { - "title": "Jr. Walker & The All Stars - What Does It Take (To Win Your Love) (Karaoke EZ Sing)", - "id": "SeeTrczEq0Q" - }, - { - "title": "Nicki Minaj - Anaconda (clean) (Karaoke)", - "id": "4468Bn6N0xE" - }, - { - "title": "Joss Stone - Super Duper Love (Are You Diggin' On Me) Pt. 1 (Karaoke)", - "id": "qkS-qZ38-7c" - }, - { - "title": "Lorde - Tennis Court (clean) (Karaoke)", - "id": "WUFARxkqXqI" - }, - { - "title": "Orleans - Still The One (Karaoke)", - "id": "GTuc6LYUDdc" - }, - { - "title": "John Anderson - Big Revival (Karaoke EZ Sing)", - "id": "kh_S5VSEHOw" - }, - { - "title": "Wilson Pickett - Land Of 1000 Dances (Karaoke EZ Sing)", - "id": "TP1spTKxClA" - }, - { - "title": "Dave Thomas Junior - I Can't Make You Love Me (Karaoke)", - "id": "3iiERfyAQLg" - }, - { - "title": "Juice WRLD, Marshmello - Come And Go (clean version) (Karaoke)", - "id": "S8jrxg3Rd1Y" - }, - { - "title": "Fetty Wap - Trap Queen (clean version) (Karaoke)", - "id": "cx3dkiY6mgw" - }, - { - "title": "Glass Animals - Heat Waves (Karaoke)", - "id": "R8R0n56whic" - }, - { - "title": "Brett Eldredge - Raymond (Karaoke)", - "id": "mNUPPicdZaU" - }, - { - "title": "Velvet Underground - Sweet Jane (Original Loaded Version) (Karaoke EZ Sing)", - "id": "Y6iavIRPQe4" - }, - { - "title": "Kelly Clarkson - Piece By Piece (Karaoke)", - "id": "b9TkK7vgOH8" - }, - { - "title": "Lorde - Perfect Places (Karaoke)", - "id": "2pJMXFmSsw8" - }, - { - "title": "Lana Del Rey - Love (Karaoke)", - "id": "aPrOHaADnRQ" - }, - { - "title": "Lana Del Rey - Summertime Sadness (Karaoke)", - "id": "rQw5NxS9RLs" - }, - { - "title": "Romantics - What I Like About You (Karaoke)", - "id": "AeG2v_lcGDA" - }, - { - "title": "The Romantics - Talking In Your Sleep (Karaoke)", - "id": "p1MsnEg8obo" - }, - { - "title": "Rod Stewart - I'm In The Mood For Love (Karaoke)", - "id": "yYYOYH6NW-s" - }, - { - "title": "Rod Stewart - I Left My Heart In San Francisco (Karaoke)", - "id": "Mc3XamFoAWM" - }, - { - "title": "Mark Chesnutt - Lovin' Her Was Easier (Than Anything I'll Ever Do Again) (Karaoke)", - "id": "tqfAB5XaZPE" - }, - { - "title": "Hank Williams - I Saw The Light (Karaoke)", - "id": "2rekYVbMhyI" - }, - { - "title": "Hank Williams - Nobody's Lonesome For Me (Karaoke)", - "id": "oNpgYCwCbWU" - }, - { - "title": "Hank Williams - You're Gonna Change Or I'm Gonna Leave (Karaoke)", - "id": "vLB1MT3ZlIk" - }, - { - "title": "Hank Williams - I'm A Long Gone Daddy (Karaoke)", - "id": "FxWN9bygNsU" - }, - { - "title": "Hank Williams - I'll Never Get Out Of This World Alive (Karaoke)", - "id": "Be0oBTATJ9o" - }, - { - "title": "Hank Williams - Howlin' At The Moon (Karaoke)", - "id": "k5Hzaz6Vujo" - }, - { - "title": "Hank Williams - Settin' The Woods On Fire (Karaoke)", - "id": "ITxrDlGD03s" - }, - { - "title": "Hank Williams - Half As Much (Karaoke)", - "id": "LPFjieysPWw" - }, - { - "title": "Hank Williams - Moanin' The Blues (Karaoke)", - "id": "z6hVN6B9mww" - }, - { - "title": "Hank Williams - Honky Tonkin' (Karaoke)", - "id": "GyyI3RNbqa4" - }, - { - "title": "Star De Azlan - She's Pretty (Karaoke)", - "id": "VnevRLtVTts" - }, - { - "title": "Hank Williams - I'm So Lonesome I Could Cry (Karaoke)", - "id": "baynXYpCl5M" - }, - { - "title": "Hank Williams - Hey Good Lookin' (Karaoke)", - "id": "14iResapABY" - }, - { - "title": "Hank Williams - Take These Chains From My Heart (Karaoke)", - "id": "2GywXJayjIM" - }, - { - "title": "Hank Williams - House Of Gold (Karaoke Guide Vocal)", - "id": "zMutUbGeWc8" - }, - { - "title": "Hank Williams - Baby We're Really In Love (Karaoke)", - "id": "3_2KtcQAnOQ" - }, - { - "title": "Hank Williams - Crazy Heart (Karaoke)", - "id": "ft4pV--d4CE" - }, - { - "title": "Hank Williams - Mind Your Own Business (Karaoke)", - "id": "RIiz2594aec" - }, - { - "title": "Hank Williams - You Win Again (Karaoke)", - "id": "zxp51_OQfs4" - }, - { - "title": "Hank Williams - Long Gone Lonesome Blues (Karaoke)", - "id": "ivS5wG2MYB0" - }, - { - "title": "Hank Williams - Cold Cold Heart (Karaoke)", - "id": "5ykKfDZW0Cw" - }, - { - "title": "Hank Williams - Kaw-Liga (Karaoke)", - "id": "-uVH5l8w0t4" - }, - { - "title": "Hank Williams - Jambalaya (On The Bayou) (Karaoke)", - "id": "HHdHQmOgG3Y" - }, - { - "title": "Hank Williams - Take These Chains From My Heart (Karaoke)", - "id": "xNnA0a2eFqM" - }, - { - "title": "Hank Williams - Why Don't You Love Me (Karaoke)", - "id": "H-DA2wrB4S4" - }, - { - "title": "Hank Williams - Alone And Forsaken (Karaoke)", - "id": "vwyExW3YxnE" - }, - { - "title": "Rare Earth - I Just Want To Celebrate (Karaoke Guide Vocal)", - "id": "dMWHApWiN9w" - }, - { - "title": "Rare Earth - Born To Wander (Karaoke)", - "id": "61NBe7lCSU4" - }, - { - "title": "R. Dean Taylor - Indiana Wants Me (Karaoke)", - "id": "HBzZezC3-A8" - }, - { - "title": "Patsy Cline - Sweet Dreams (Karaoke)", - "id": "i4E6d0Vul3s" - }, - { - "title": "Pam Tillis - Don't Tell Me What To Do (Karaoke)", - "id": "wgWNGtlwbdA" - }, - { - "title": "Porter Wagoner, Dolly Parton - The Last Thing On My Mind (Karaoke)", - "id": "DzDgNWCYuvM" - }, - { - "title": "Porter Wagoner - Green, Green Grass Of Home (Karaoke)", - "id": "RGpUswBwiCo" - }, - { - "title": "The Pointer Sisters - Yes We Can Can (Karaoke)", - "id": "GrMWoCoKPaw" - }, - { - "title": "The Pointer Sisters - I'm So Excited (Karaoke)", - "id": "4AszO4f_-bk" - }, - { - "title": "Pinmonkey - I Drove All Night (Karaoke)", - "id": "2xjZXAwbZBw" - }, - { - "title": "Pee Wee King - Tennessee Waltz (Karaoke)", - "id": "uWGXkwu8p5g" - }, - { - "title": "Patsy Cline - He Called Me Baby (Karaoke)", - "id": "1cRh7_KujUM" - }, - { - "title": "Pat Benatar - We Belong (Karaoke)", - "id": "k4QZ3S2VKVY" - }, - { - "title": "The Partridge Family - I Think I Love You (Karaoke)", - "id": "R4qtQkL9A0s" - }, - { - "title": "Pam Tillis - Spilled Perfume (Karaoke)", - "id": "Nr3TyZqk0V8" - }, - { - "title": "Pam Tillis - Shake The Sugar Tree (Karaoke)", - "id": "6OsgikDuwUk" - }, - { - "title": "Pam Tillis - Let That Pony Run (Karaoke)", - "id": "CjK5nU4fY2Q" - }, - { - "title": "Pam Tillis - Blue Rose Is (Karaoke)", - "id": "flCXmEEPcwQ" - }, - { - "title": "Paloma Faith - Can't Rely On You (Karaoke)", - "id": "cPafNPxwwp8" - }, - { - "title": "The Osmonds - One Bad Apple (Karaoke)", - "id": "fddvQNtu5HE" - }, - { - "title": "Olivia Newton-John - Let Me Be There (Karaoke)", - "id": "oQ8KljM0WVU" - }, - { - "title": "Otis Day & The Knights - Shout (Karaoke)", - "id": "HNeXwvZ9ESo" - }, - { - "title": "The Oak Ridge Boys - (You're My) Soul And Inspiration (Karaoke)", - "id": "2ZjX2oktqmY" - }, - { - "title": "Ocean - Put Your Hand In The Hand (Karaoke)", - "id": "3yJbafzqQNs" - }, - { - "title": "The Oak Ridge Boys - Thank God For Kids (Karaoke)", - "id": "HMuzm09cy1o" - }, - { - "title": "The Oak Ridge Boys - It Takes A Little Rain (To Make Love Grow) (Karaoke)", - "id": "Kohx2bccnFE" - }, - { - "title": "The Oak Ridge Boys - I'll Be True To You (Karaoke)", - "id": "3Ib9ARBmecQ" - }, - { - "title": "The Oak Ridge Boys - Elvira (Karaoke)", - "id": "1OWkKs-VCcw" - }, - { - "title": "Nick Jonas & The Administration - Who I Am (Karaoke)", - "id": "TcuIBZN7x-M" - }, - { - "title": "New Kids On The Block - You Got It (The Right Stuff) (Karaoke)", - "id": "04pRJy7BqMk" - }, - { - "title": "New Kids On The Block - Step By Step (Karaoke)", - "id": "FGkFFmFFMzk" - }, - { - "title": "New Kids On The Block - Hangin' Tough (Karaoke)", - "id": "ZESgV6hhW0A" - }, - { - "title": "New Kids On The Block - Cover Girl (Karaoke)", - "id": "2k8I8ubN9us" - }, - { - "title": "The Kinks - You Really Got Me (Karaoke)", - "id": "sgqT2vzIoTY" - }, - { - "title": "The Miracles - Ooo Baby Baby (Karaoke)", - "id": "OKL8vZG3rBg" - }, - { - "title": "Michael Martin Murphey - What's Forever For (Karaoke)", - "id": "1PEp6QS9RgQ" - }, - { - "title": "Merle Haggard - Working Man Blues (Karaoke)", - "id": "laOdQIOeIW4" - }, - { - "title": "Merle Haggard - Today I Started Loving You Again (Karaoke)", - "id": "tyL7tJFDRz0" - }, - { - "title": "Merle Haggard - The Roots Of My Raising (Karaoke Guide Vocal)", - "id": "eN_zPa1LL3o" - }, - { - "title": "Merle Haggard - If We're Not Back In Love By Monday (Karaoke)", - "id": "aKxNxRGjM_U" - }, - { - "title": "Merle Haggard - I Think I'll Just Stay Here And Drink (Karaoke)", - "id": "h-eGwYqoHWc" - }, - { - "title": "Timbaland, OneRepublic - Apologize (Karaoke)", - "id": "KdW2XmKixlA" - }, - { - "title": "Mel Carter - Hold Me, Thrill Me, Kiss Me (Karaoke Guide Vocal)", - "id": "rpMzTgJkwMQ" - }, - { - "title": "Melanie - Brand New Key (Karaoke)", - "id": "rs6IuFA0Cfg" - }, - { - "title": "Los Lobos - La Bamba (Karaoke Guide Vocal)", - "id": "a9OnqgLNdsA" - }, - { - "title": "Lulu - To Sir With Love (Karaoke)", - "id": "dHPmCfqB2EI" - }, - { - "title": "Loretta Lynn, Conway Twitty - As Soon As Hang I Up The Phone (Karaoke)", - "id": "1y-wCDbqvJo" - }, - { - "title": "Lonestar - Walking In Memphis (Karaoke)", - "id": "liaNlxyUQSc" - }, - { - "title": "Lloyd Price - Lawdy Miss Clawdy (Karaoke)", - "id": "yXhmb4_V7DA" - }, - { - "title": "Linda Ronstadt - When Will I Be Loved (Karaoke)", - "id": "FXx7xZualgw" - }, - { - "title": "Kristin Garner - Singing To The Scarecrow (Karaoke Guide Vocal)", - "id": "5FRPOx4VCj8" - }, - { - "title": "Kitty Wells - I Can't Stop Loving You (Karaoke Guide Vocal)", - "id": "YKxuCgPGnqk" - }, - { - "title": "Kim Wilde - You Keep Me Hangin' On (Karaoke)", - "id": "IWxplFRZKs4" - }, - { - "title": "The Judds - Working In The Coal Mine (Karaoke Guide Vocal)", - "id": "Nxb39smasrs" - }, - { - "title": "The Judds - John Deere Tractor (Karaoke)", - "id": "Dai6Jaah3y8" - }, - { - "title": "Jr. Walker & The All Stars - What Does It Take (To Win Your Love) (Karaoke Guide Vocal)", - "id": "yClROaXc0zA" - }, - { - "title": "Johnny Rodriguez - We're Over (Karaoke)", - "id": "uEi0pysARSE" - }, - { - "title": "Johnny Rodriguez - I Just Can't Get Her Out Of My Mind (Karaoke)", - "id": "5SaytuW-yGU" - }, - { - "title": "Johnny Rodriguez - Ridin' My Thumb To Mexico (Karaoke)", - "id": "QCpPkmevsAs" - }, - { - "title": "Johnny Rodriguez - You Always Come Back (To Hurting Me) (Karaoke)", - "id": "zgvS5UW7NG0" - }, - { - "title": "Johnny Rodriguez - I Wonder If I Ever Said Goodbye (Karaoke)", - "id": "OZO2PpjhGz4" - }, - { - "title": "Johnny Rodriguez - I Couldn't Be Me Without You (Karaoke)", - "id": "x5CqgsZD2so" - }, - { - "title": "Johnny Rodriguez - Dance With Me (Just One More Time) (Karaoke)", - "id": "aRIw3yQ-jws" - }, - { - "title": "Johnny Rivers - The Tracks Of My Tears (Karaoke)", - "id": "CoZ503M-cnI" - }, - { - "title": "Johnny Paycheck - I'm The Only Hell (Mama Ever Raised) (Karaoke)", - "id": "_k7ZoPNrJsM" - }, - { - "title": "Johnny Cash - Sunday Morning Coming Down (Karaoke)", - "id": "l-EkuOVmDrs" - }, - { - "title": "John Conlee - Miss Emily's Picture (Karaoke)", - "id": "vu4L3AckqiA" - }, - { - "title": "John Anderson - Money In The Bank (Karaoke)", - "id": "Y0LNd7lwFfw" - }, - { - "title": "Joe Tex - Show Me (Karaoke)", - "id": "IfjddgytneM" - }, - { - "title": "Joe Stampley - Red Wine And Blue Memories (Karaoke)", - "id": "kTcVcj0-Q84" - }, - { - "title": "The Young Rascals - How Can I Be Sure (Karaoke)", - "id": "IsfgMcHjPqA" - }, - { - "title": "Wilson Phillips - Release Me (Karaoke)", - "id": "MH_cd2gs7pA" - }, - { - "title": "Wilson Pickett - Land Of 1000 Dances (Karaoke Guide Vocal)", - "id": "DwP--tOdBFI" - }, - { - "title": "Whitney Houston - I'm Every Woman (Karaoke)", - "id": "rZgFaOeti54" - }, - { - "title": "Wanda Jackson - Right Or Wrong (Karaoke)", - "id": "kqabpWZZPq4" - }, - { - "title": "Wade Hayes - Old Enough To Know Better (Karaoke)", - "id": "PRQuyPy8lWg" - }, - { - "title": "Wade Hayes - I'm Still Dancing With You (Karaoke)", - "id": "MZygZBuWoyw" - }, - { - "title": "Vince Gill - Loving You Makes Me A Better Man (Karaoke)", - "id": "kVx9NbGxVvE" - }, - { - "title": "Tommy James & The Shondells - I Think We're Alone Now (Karaoke)", - "id": "B7HyET0CWls" - }, - { - "title": "Smallpools - Karaoke (Karaoke)", - "id": "To1ThD9J91o" - }, - { - "title": "Sia - Chandelier (Karaoke)", - "id": "2y-TbHxx47U" - }, - { - "title": "Sheena Easton - For Your Eyes Only (Karaoke)", - "id": "UkT0lMXY95A" - }, - { - "title": "Ruff Endz - Someone To Love You (Karaoke)", - "id": "AZLPGoGCprw" - }, - { - "title": "Roy Rogers - Happy Trails (Karaoke)", - "id": "X15EIXcRvjA" - }, - { - "title": "Roy Acuff, The Nitty Gritty Dirt Band - Wreck On The Highway (Karaoke)", - "id": "hqakhQq3ynk" - }, - { - "title": "Ronnie McDowell - You're Gonna Ruin My Bad Reputation (Karaoke)", - "id": "dyUOJg7H0pA" - }, - { - "title": "Rod Stewart - I Left My Heart In San Francisco (Karaoke Guide Vocal)", - "id": "chiY6dbFbcs" - }, - { - "title": "Five Finger Death Punch - Wrong Side Of Heaven (Karaoke)", - "id": "NtX2X6F_0MY" - }, - { - "title": "Phil Collins - Groovy Kind Of Love (Karaoke)", - "id": "y_qp1FYbqlk" - }, - { - "title": "Ronnie McDowell - Watchin' Girls Go By (Karaoke)", - "id": "6fKcvKuD1VM" - }, - { - "title": "Ronnie McDowell - Personally (Karaoke)", - "id": "rIcpKKMWZ9s" - }, - { - "title": "Roger Miller - King Of The Road (Karaoke)", - "id": "q_4VPPivuGs" - }, - { - "title": "The Romantics - What I Like About You (Karaoke Guide Vocal)", - "id": "WjLrX6_h9Fo" - }, - { - "title": "The Romantics - Talking In Your Sleep (Karaoke Guide Vocal)", - "id": "iGAL2uYFrVc" - }, - { - "title": "Rod Stewart - I'm In The Mood For Love (Karaoke Guide Vocal)", - "id": "d6c1hELzj_c" - }, - { - "title": "Phil Vassar - This Is God (Karaoke)", - "id": "-hK8lYNdF64" - }, - { - "title": "The Isley Brothers - I Wanna Be With You (Karaoke)", - "id": "4l3-kXOOmtk" - }, - { - "title": "Flatt & Scruggs - Preachin' Prayin' Singin' (Karaoke)", - "id": "XkVmVgm1O-0" - }, - { - "title": "Ferlin Husky - I Can't Stop Loving You (Karaoke)", - "id": "BqwOaVZqhI0" - }, - { - "title": "Ferlin Husky - Just For You (Karaoke EZ Sing)", - "id": "QziQOLIGb9w" - }, - { - "title": "Ferlin Husky - Little Tom (Karaoke EZ Sing)", - "id": "aCTnjs2pFBM" - }, - { - "title": "The Everly Brothers - When Will I Be Loved (Karaoke)", - "id": "QECFIWi1jHk" - }, - { - "title": "The Everly Brothers - Ebony Eyes (Karaoke)", - "id": "qNHCJM1sPXg" - }, - { - "title": "The Everly Brothers - Cathy's Clown (Karaoke)", - "id": "96ehbev2JNU" - }, - { - "title": "Eric Church - Homeboy (Karaoke)", - "id": "jHFT4JK_ctc" - }, - { - "title": "Eric Church - Like A Wrecking Ball (Karaoke)", - "id": "r082xvnHP-o" - }, - { - "title": "Engelbert Humperdinck - Am I That Easy To Forget? (Karaoke)", - "id": "n3zmv3Qnaog" - }, - { - "title": "Aretha Franklin - Baby I Love You (Karaoke)", - "id": "E4N4jZv-RIQ" - }, - { - "title": "Emmylou Harris - Lost His Love On Our First Date (Karaoke EZ Sing)", - "id": "OJ0qhPri_t0" - }, - { - "title": "Peggy Lee - I'm A Woman (Karaoke)", - "id": "37-DUTgD-3I" - }, - { - "title": "Pharrell Williams, Alicia Keys - Know Who You Are (Karaoke)", - "id": "is8UYDZGKS0" - }, - { - "title": "Pharrell Williams, Miley Cyrus - Come Get It Bae (Karaoke)", - "id": "WQeiLrQX4E0" - }, - { - "title": "Percy Sledge - Take Time To Know Her (Karaoke)", - "id": "ym2Lxh9zREg" - }, - { - "title": "Pat Boone - April Love (Karaoke)", - "id": "bPL2CuWIOKQ" - }, - { - "title": "Marty Robbins - Streets Of Laredo (Cowboy's Lament) (Karaoke)", - "id": "eW7USs1u9vs" - }, - { - "title": "Martina McBride - Over The Rainbow (Karaoke)", - "id": "x8yc9rnyYqw" - }, - { - "title": "Martina McBride - My Baby Loves Me (Karaoke)", - "id": "jVB4NfTL6xI" - }, - { - "title": "Martha & The Vandellas - Quicksand (Karaoke)", - "id": "oi9_ZZhxip4" - }, - { - "title": "Amy Winehouse - Back To Black (Karaoke)", - "id": "Ar69MNVGns8" - }, - { - "title": "Juice WRLD, NBA Youngboy - Bandit (Karaoke)", - "id": "CFJW5WDE40c" - }, - { - "title": "Phil Collins - Thru' These Walls (Karaoke)", - "id": "73K09GjD2Cw" - }, - { - "title": "Phil Collins - It's In Your Eyes (Karaoke)", - "id": "ThYX6pAES44" - }, - { - "title": "Phil Collins - Inside Out (Karaoke)", - "id": "n9FpLbd6OQU" - }, - { - "title": "The Judds - When King Jesus Calls His Children Home (Karaoke)", - "id": "9F8chdd88Y8" - }, - { - "title": "Gary Numan - Music For Chameleons (Karaoke EZ Sing)", - "id": "YtCuMMNh4aM" - }, - { - "title": "Martina McBride - Help Me Make It Through The Night (Karaoke)", - "id": "OgUpl7Bsh4k" - }, - { - "title": "Mark Wills - High Low And In Between (Karaoke)", - "id": "eur8GAwlDPw" - }, - { - "title": "Mark Chesnutt - Lovin' Her Was Easier (Than Anything I'll Ever Do Again) (Karaoke Guide Vocal)", - "id": "hmKXINQs34A" - }, - { - "title": "Mark Collie - Hard Lovin' Woman (Karaoke)", - "id": "gWf3O21ch80" - }, - { - "title": "Marilyn McCoo & Billy Davis Jr. - You Don't Have To Be A Star (To Be In My Show) (Karaoke)", - "id": "47-kMdgGzwE" - }, - { - "title": "Mariah Carey - I'll Be There (Karaoke)", - "id": "Zyz6dKRD-kI" - }, - { - "title": "Lynn Anderson - Stay There 'Til I Get There (Karaoke)", - "id": "M0pjgFJgjJY" - }, - { - "title": "Lynn Anderson - No Another Time (Karaoke)", - "id": "dSbksYtTDZ4" - }, - { - "title": "Lynn Anderson - If I Kiss You (Will You Go Away) (Karaoke)", - "id": "zmL2GoWg3Lo" - }, - { - "title": "Joe Cocker - With A little Help From My Friends (Karaoke)", - "id": "WFsuruWNqMI" - }, - { - "title": "Jimmy Dickens - May The Bird Of Paradise Fly Up Your Nose (Karaoke)", - "id": "J-6DEPwh52A" - }, - { - "title": "Jim Ed Brown - Pop A Top (Karaoke)", - "id": "IOhJTeUKMag" - }, - { - "title": "Jerry Wallace - In The Misty Moonlight (Karaoke)", - "id": "cl2uvhTX8KU" - }, - { - "title": "Jerry Lee Lewis - She Even Woke Me Up To Say Goodbye (Karaoke)", - "id": "QBSsMy_yhZc" - }, - { - "title": "Jerry Lee Lewis - Middle Age Crazy (Karaoke)", - "id": "k-cmBs_PqI8" - }, - { - "title": "Jenai - Cool Me Down (Karaoke Guide Vocal)", - "id": "aPErt4gXCZo" - }, - { - "title": "Jeannie Seely - Don't Touch Me (Karaoke)", - "id": "YsEOTibcGPo" - }, - { - "title": "Jason Mraz - It's So Hard To Say Goodbye To Yesterday (Karaoke)", - "id": "s5SG2ERWQuk" - }, - { - "title": "Janis Joplin - Me And Bobby McGee (Karaoke)", - "id": "Sh0rttcYS4g" - }, - { - "title": "Janie Fricke - Don't Worry 'Bout Me Baby (Karaoke)", - "id": "Dca48ZGnHvE" - }, - { - "title": "Jana Kramer - I Hope It Rains (Karaoke)", - "id": "iwVcRjA_AYg" - }, - { - "title": "Jan Howard - Evil On Your Mind (Karaoke)", - "id": "WfQOspZo_k4" - }, - { - "title": "James Taylor - How Sweet It Is (To Be Loved By You) (Karaoke)", - "id": "nWOTpq2r-wQ" - }, - { - "title": "James Taylor - Handy Man (Karaoke)", - "id": "SmES5eKHhd0" - }, - { - "title": "James Ingram - Just Once (Karaoke)", - "id": "ezx_JanOwBo" - }, - { - "title": "J. D. Souther - You're Only Lonely (Karaoke)", - "id": "tPTMQDJcHNk" - }, - { - "title": "The Isley Brothers - Who's That Lady? (Karaoke)", - "id": "k0MYDj4MONk" - }, - { - "title": "Imagine Dragons - Whatever It Takes (Karaoke)", - "id": "kYl59JECcF0" - }, - { - "title": "Hinder - Without You (Karaoke)", - "id": "IxEBFAZ8VXo" - }, - { - "title": "Hinder - Up All Night (Karaoke)", - "id": "20pp1-fOnes" - }, - { - "title": "George M. Cochan - Over There (Karaoke)", - "id": "hUfzZbd3eIU" - }, - { - "title": "Freddy Fender - Wasted Days And Wasted Nights (Karaoke)", - "id": "-k_QGexH2sE" - }, - { - "title": "Four Tops - It's The Same Old Song (Karaoke)", - "id": "wXF_7-BDvzQ" - }, - { - "title": "Four Tops - I Can't Help Myself (Sugar Pie, Honey Bunch) (Karaoke)", - "id": "uEjulLCYGdI" - }, - { - "title": "Four Tops - Baby I Need Your Lovin' (Karaoke)", - "id": "9tuakmoGDAo" - }, - { - "title": "Flatt & Scruggs - Preachin' Prayin' Singin' (Karaoke Guide Vocal)", - "id": "PoSE5Gyy2zA" - }, - { - "title": "Five Finger Death Punch - Wrong Side Of Heaven (Karaoke Guide Vocal)", - "id": "MzUk-O3vBKw" - }, - { - "title": "Ferlin Husky - I Can't Stop Loving You (Karaoke Guide Vocal)", - "id": "1OJblfHLzDg" - }, - { - "title": "Ferlin Husky - Just For You (Karaoke Guide Vocal)", - "id": "ZLKT7Vb8hvc" - }, - { - "title": "Eric Church - Mr. Misunderstood (Karaoke)", - "id": "AtZxqInTEKw" - }, - { - "title": "The Everly Brothers - When Will I Be Loved (Karaoke Guide Vocal)", - "id": "P-DUR1_lWVQ" - }, - { - "title": "The Everly Brothers - Ebony Eyes (Karaoke Guide Vocal)", - "id": "z5sAGPKLEeg" - }, - { - "title": "The Everly Brothers - Cathy's Clown (Karaoke Guide Vocal)", - "id": "D3trIYzlEyg" - }, - { - "title": "Eric Church - Outsiders (Karaoke)", - "id": "sB6IicSvMS8" - }, - { - "title": "Eric Church - Love Your Love The Most (Karaoke)", - "id": "IKxwtQACIA0" - }, - { - "title": "Eric Church - Hell On The Heart (Karaoke)", - "id": "guR2KSX5Em8" - }, - { - "title": "Eric Church - Cold One (Karaoke Guide Vocal)", - "id": "o_E_MegUtPo" - }, - { - "title": "Engelbert Humperdinck - Am I That Easy To Forget? (Karaoke Guide Vocal)", - "id": "mB560ULJeJA" - }, - { - "title": "En Vogue - Don't Go (Karaoke)", - "id": "M3younEW5QA" - }, - { - "title": "Elvis Presley - Welcome To My World (Karaoke)", - "id": "4zN9Tnkgy4A" - }, - { - "title": "Elvis Presley - Suspicious Minds (Karaoke)", - "id": "EKltg1s_k1o" - }, - { - "title": "Elvis Presley - If You Love Me (Let Me Know) (Live Version) (Karaoke)", - "id": "hPux1IG9p1c" - }, - { - "title": "Elvis Presley - Moody Blue (Karaoke)", - "id": "CMMIElryjFY" - }, - { - "title": "Elvis Presley - Love Me (Karaoke)", - "id": "h9s9edBjsFA" - }, - { - "title": "Elvis Presley - Jailhouse Rock (Karaoke)", - "id": "KjNXRz4JWf4" - }, - { - "title": "Elvis Presley - I Really Don't Want To Know (Karaoke)", - "id": "9ksg-CxpJNc" - }, - { - "title": "Elvis Presley - Hound Dog (Karaoke)", - "id": "ZsM28dUIX5M" - }, - { - "title": "Elvis Presley - Funny How Time Slips Away (Karaoke)", - "id": "D0BkgXMFaJY" - }, - { - "title": "Elvis Presley - Burning Love (Live Version) (Karaoke)", - "id": "z4Qgm4aJtUU" - }, - { - "title": "Elvis Presley - Bossa Nova Baby (Karaoke)", - "id": "xF7TvPFJqyo" - }, - { - "title": "Elvis Presley - American Trilogy (Karaoke)", - "id": "X6vGhUSjAA4" - }, - { - "title": "Dave Dudley - Cowboy Boots (Karaoke)", - "id": "8XDDCarVWbs" - }, - { - "title": "The Carlisles - No Help Wanted (Karaoke)", - "id": "ylZf0sE9Br8" - }, - { - "title": "David Houston - I'm Down To My Last I Love You (Karaoke EZ Sing)", - "id": "NIrTVDwRVw4" - }, - { - "title": "Edwin Starr - War (Karaoke)", - "id": "d1a9i9cj6G8" - }, - { - "title": "Elton John - Lucy In The Sky With Diamonds (Karaoke)", - "id": "5ntJhmJ0a7M" - }, - { - "title": "Eddy Arnold - What's He Doing In My World (Karaoke)", - "id": "KIS1XbNI-ho" - }, - { - "title": "Eddy Arnold - Make The World Go Away (Karaoke)", - "id": "b_gTGLkRaEU" - }, - { - "title": "Eddy Arnold - A Full Time Job (Karaoke)", - "id": "k78QVhxgtdo" - }, - { - "title": "Eddy Arnold - I Want To Go With You (Karaoke)", - "id": "tZQMXkj4JJE" - }, - { - "title": "Eddie Rabbitt - B-B-B-Burnin' Up With Love (Karaoke)", - "id": "5LckXjCI9no" - }, - { - "title": "Eddie Rabbitt - Drivin' My Life Away (Karaoke)", - "id": "chazzfFkUbk" - }, - { - "title": "Earth, Wind & Fire - Sing A Song (Karaoke)", - "id": "cZLDYJv4eS8" - }, - { - "title": "Earth, Wind & Fire - Shining Star (Karaoke)", - "id": "GUrCtpV2gd8" - }, - { - "title": "Earth, Wind & Fire - Mighty Mighty (Karaoke)", - "id": "PyyoNLW8jdo" - }, - { - "title": "The Doobie Brothers - Take Me In Your Arms (Rock Me A Little While) (Karaoke)", - "id": "uyweT6xfjpY" - }, - { - "title": "Diana Krall - The Look Of Love (Karaoke)", - "id": "Gx2Fed33oQs" - }, - { - "title": "Cutting Crew - I Just Died In Your Arms (Karaoke EZ Sing)", - "id": "tjTVXI_1PFo" - }, - { - "title": "Colbie Caillat - Fallin' For You (Karaoke)", - "id": "ie1qAg79iQ4" - }, - { - "title": "Dramatics - In The Rain (Karaoke)", - "id": "jRrnjCnsrRg" - }, - { - "title": "The Doobie Brothers - Take Me In Your Arms (Rock Me A Little While) (Karaoke Guide Vocal)", - "id": "-07Ue3svRMo" - }, - { - "title": "Dixie Chicks - Heartbreak Town (Karaoke)", - "id": "6IF-n3wo_Zo" - }, - { - "title": "Dixie Chicks - You Can't Hurry Love (Karaoke)", - "id": "1xiCdJVmlAQ" - }, - { - "title": "Diana Krall - The Look Of Love (Karaoke Guide Vocal)", - "id": "OUR_gqSHQNk" - }, - { - "title": "David Houston - I'm Down To My Last \"I Love You\" (Karaoke Guide Vocal)", - "id": "yxXkvb8UuJU" - }, - { - "title": "David Ball - When The Thought Of You Catches Up With Me (Karaoke)", - "id": "gO9lwTc7LMc" - }, - { - "title": "David Ball - Look What Followed Me Home (Karaoke)", - "id": "ZojgDJVF0Uc" - }, - { - "title": "Dave Dudley - Cowboy Boots (Karaoke Guide Vocal)", - "id": "9Iz630UC26M" - }, - { - "title": "Carl Smith - Are You Teasing Me (Karaoke)", - "id": "--dMHQ-Rceg" - }, - { - "title": "Barry Manilow - Love Is A Many Splendored Thing (Karaoke)", - "id": "e4LwZ8MvH9Y" - }, - { - "title": "Association - Cherish (Karaoke EZ Sing)", - "id": "by0rjRXK2FA" - }, - { - "title": "Alicia Keys - Fallin' (Karaoke EZ Sing)", - "id": "lOGzNP7dHBU" - }, - { - "title": "Ray Price - Night Life (Karaoke)", - "id": "CrgnVXJXyLE" - }, - { - "title": "The King Cole Trio - Straighten Up And Fly Right (Karaoke)", - "id": "bj7BX4jMOXo" - }, - { - "title": "Kim Weston - Take Me In Your Arms (Rock Me A Little While) (Karaoke EZ Sing)", - "id": "_g9KtPQQW58" - }, - { - "title": "Phil Collins - Both Sides Of The Story (Karaoke)", - "id": "5dPPZFYWO8M" - }, - { - "title": "Lisa Brokop - Wildflower (Karaoke)", - "id": "Bp3O-kRDaqY" - }, - { - "title": "Alabama - Why Lady Why (Karaoke)", - "id": "In0bzPFrdGs" - }, - { - "title": "South Sixty-Five - No Easy Goodbye (Karaoke)", - "id": "1m-ubD0l3TI" - }, - { - "title": "LeAnn Rimes - These Arms Of Mine (Karaoke)", - "id": "tnsAIT2pqzQ" - }, - { - "title": "Sherrie' Austin - One Solitary Tear (Karaoke)", - "id": "m99coO0C2fs" - }, - { - "title": "John Michael Montgomery - Friends (Karaoke)", - "id": "OdWEXiiLw6E" - }, - { - "title": "LeAnn Rimes - What I Cannot Change (Karaoke)", - "id": "ZI5nc6IrfGw" - }, - { - "title": "Lee Brice - Upper Middle Class White Trash (Karaoke)", - "id": "YXK01ZnxUhk" - }, - { - "title": "Rodney Atkins - Invisibly Shaken (Karaoke)", - "id": "9W4-KXsz0IM" - }, - { - "title": "Flo Rida, T-Pain - Low (Karaoke)", - "id": "fVSRXogN4Ho" - }, - { - "title": "Everly Brothers - Devoted To You (Karaoke EZ Sing)", - "id": "MwsO8njDOPs" - }, - { - "title": "Mac Davis - Rock N' Roll (I Gave You The Best Years Of My Life) (Karaoke)", - "id": "ayRUP9apUuQ" - }, - { - "title": "The Manhattans - Kiss And Say Goodbye (Karaoke)", - "id": "L25I4g7TQD4" - }, - { - "title": "Toby Keith, Scotty Emerick - The Taliban Song (Karaoke)", - "id": "h2P25qhy6X0" - }, - { - "title": "Phil Collins - Against All Odds (Karaoke)", - "id": "-s1L3Cv1zY0" - }, - { - "title": "Selena Gomez, Marshmello - Wolves (Karaoke)", - "id": "CAYhjIEcdsU" - }, - { - "title": "The Isley Brothers - Take Me To The Next Phase (Part 1) (Karaoke)", - "id": "mBm18PevC0U" - }, - { - "title": "Keith Whitley - When You Say Nothing At All (Karaoke)", - "id": "k2ALC3yFSdE" - }, - { - "title": "Fall Out Boy - Thnks Fr Th Mmrs (Karaoke)", - "id": "FXORiTPy7GE" - }, - { - "title": "Fall Out Boy - Sugar, We're Going Down (Karaoke)", - "id": "hakkZ6wpIqU" - }, - { - "title": "The Fortunes - You've Got Your Troubles (Karaoke)", - "id": "UsELoJRw_EA" - }, - { - "title": "Lady Gaga - Love Game (Karaoke)", - "id": "upsDtw7o5CA" - }, - { - "title": "Roger Miller - Walkin' In The Sunshine (Karaoke)", - "id": "PKQ54YrIUBY" - }, - { - "title": "Cutting Crew - I Just Died In Your Arms (Karaoke)", - "id": "b1Lea1ljx5o" - }, - { - "title": "Dan Hartman - I Can Dream About You (Karaoke)", - "id": "e1Ci9Q22oR0" - }, - { - "title": "The Cookies - Chains (Karaoke)", - "id": "Zxk5vi-mMF0" - }, - { - "title": "Conway Twitty - Linda On My Mind (Karaoke)", - "id": "MrCby858h5k" - }, - { - "title": "Conway Twitty - Don't Cry Joni (Karaoke)", - "id": "JDGKFa_Ggcs" - }, - { - "title": "Colbie Caillat - Try (Karaoke)", - "id": "S55LCv6_rjI" - }, - { - "title": "Colbie Caillat - Fallin' For You (Karaoke Guide Vocal)", - "id": "qliVmlHQ6Kc" - }, - { - "title": "Colbie Caillat - Bubbly (Karaoke)", - "id": "xqvTgiO9xJ8" - }, - { - "title": "The Coasters - Poison Ivy (Karaoke)", - "id": "37CZHiXp3qY" - }, - { - "title": "Chris LeDoux - Silence On The Line (Karaoke)", - "id": "BNqnNsAswz0" - }, - { - "title": "Chalee Tennison - Just Because She Lives There (Karaoke)", - "id": "8u7O_kHFCjs" - }, - { - "title": "Carol Elizabeth Jones - Comin' Down From God (Karaoke)", - "id": "O8izvmpCFoA" - }, - { - "title": "The Carlisles - No Help Wanted (Karaoke Guide Vocal)", - "id": "12GmM6jysyw" - }, - { - "title": "Carl Smith - Loose Talk (Karaoke)", - "id": "WApqs7WZERg" - }, - { - "title": "Billie Eilish, Khalid - Lovely (Karaoke)", - "id": "ZbMTGVOPsT0" - }, - { - "title": "Steve Holy - Blue Moon (Karaoke)", - "id": "G-J3YEALXfw" - }, - { - "title": "Sonny James - Don't Keep Me Hangin' On (Karaoke)", - "id": "TJq0jyv-20Y" - }, - { - "title": "Sonny James - It's The Little Things (Karaoke)", - "id": "Xir_MfkwBHY" - }, - { - "title": "Philip Claypool - Perfect World (Karaoke)", - "id": "3cSRHXqK5Jo" - }, - { - "title": "Shane McAnally - Say Anything (Karaoke)", - "id": "SzmeM1Qm6-w" - }, - { - "title": "Sonny James - You're The Only World I Know (Karaoke)", - "id": "7Q_1zPB42tE" - }, - { - "title": "Billy Dean - Real Man (Karaoke)", - "id": "WCrDFfp_jtw" - }, - { - "title": "The Judds - Change Of Heart (Karaoke)", - "id": "vH4M0wGpKUA" - }, - { - "title": "Garth Brooks - More Than A Memory (Karaoke)", - "id": "0P-Q8Ol6Ofo" - }, - { - "title": "Collin Raye - She's All That (Karaoke EZ Sing)", - "id": "eW_Pwml2FSk" - }, - { - "title": "Mickey Gilley - Fool For Your Love (Karaoke)", - "id": "lFmoAA9yEM8" - }, - { - "title": "Bryan White - One Small Miracle (Karaoke)", - "id": "SYzhP5_KfjQ" - }, - { - "title": "Martina McBride - Swingin' Doors (Karaoke)", - "id": "DIl1U1pyBGM" - }, - { - "title": "Jamey Johnson - That Lonesome Song (Karaoke)", - "id": "z0Tc6FmaZOA" - }, - { - "title": "Alicia Keys (ft. Beyonce) - Put It In A Love Song (Karaoke)", - "id": "VXJb6qbtoD0" - }, - { - "title": "Chad Brock - Lightening Does The Work (Karaoke)", - "id": "S3aIBWMKsP0" - }, - { - "title": "Khalid - Young, Dumb and Broke (Karaoke)", - "id": "VV1vraEgM9Y" - }, - { - "title": "The JaneDear Girls - Shotgun Girl (Karaoke)", - "id": "Ez5KizPsY0w" - }, - { - "title": "Stevens Sisters - Wherever You Are (Karaoke)", - "id": "ob0oe9IAHXE" - }, - { - "title": "Jonas Brothers - Pushing Me Away (Karaoke)", - "id": "Fke1Z4dv8Jg" - }, - { - "title": "Thompson Square - I Got You (Karaoke)", - "id": "bECoJndMFSk" - }, - { - "title": "Solomon Burke - Cry To Me (Karaoke)", - "id": "LwkPdMgxsGo" - }, - { - "title": "Pistol Annies - Hell On Heels (Karaoke)", - "id": "l-2uD1cNWN4" - }, - { - "title": "Pirates of the Mississippi - Feed Jake (Karaoke)", - "id": "HqfyYLDAsvc" - }, - { - "title": "Phil Stacey - Old Glory (Karaoke)", - "id": "Sz9BFj7Wuks" - }, - { - "title": "Nelly Furtado - I'm Like A Bird (Karaoke)", - "id": "iWhXh2jB7xk" - }, - { - "title": "Nelly Furtado - In God's Hands (Karaoke)", - "id": "_t-aZuUfbew" - }, - { - "title": "Marshmello, Khalid - Silence (Karaoke)", - "id": "5llYeqrO8H0" - }, - { - "title": "Gnash, Olivia O'Brien - I Hate U, I Love U (Karaoke)", - "id": "SOJVZanyZ7I" - }, - { - "title": "Martina McBride - Love's The Only House (Karaoke)", - "id": "cF8A-bh4Okk" - }, - { - "title": "Steve Wariner - I'm Your Man (Karaoke)", - "id": "p23SWXipy5Y" - }, - { - "title": "Steve Wariner - Faith In You (Karaoke)", - "id": "NeVOgRrJlWk" - }, - { - "title": "Chris Young - Gettin' You Home (The Black Dress Song) (Karaoke)", - "id": "puLa0UHAKI0" - }, - { - "title": "Mickey Gilley - City Lights (Karaoke)", - "id": "xy8I8SpdPrw" - }, - { - "title": "Michael Jackson - One Day In Your Life (Karaoke)", - "id": "E3gN1KxltFg" - }, - { - "title": "Martha & The Vandellas - I'm Ready For Love (Karaoke)", - "id": "N4UQIlEEHBQ" - }, - { - "title": "Kesha - Your Love Is My Drug (Karaoke)", - "id": "orlhvaVMt-0" - }, - { - "title": "Kane Brown - Heaven (Karaoke)", - "id": "f3jxvzLN1oU" - }, - { - "title": "Jon Randall - Cold Coffee Morning (Karaoke)", - "id": "P6FI_Sg6ApA" - }, - { - "title": "Wade Hayes - Its Over My Head (Karaoke)", - "id": "MIE1nG9sOlQ" - }, - { - "title": "The 5 Stairsteps - O-O-H Child (Karaoke)", - "id": "idlBLQFwIEU" - }, - { - "title": "George Thorogood And The Destroyers - Bad To The Bone (Karaoke)", - "id": "1wLQ6fNdJ18" - }, - { - "title": "Merle Haggard, George Jones - C. C. Waterback (Karaoke)", - "id": "9EashiNVIj4" - }, - { - "title": "Maxwell - This Woman's Work (Karaoke)", - "id": "4pwj-l0Spl0" - }, - { - "title": "Faron Young - If You Ain't Lovin' (You Ain't Livin') (Karaoke)", - "id": "dIXW_63El2o" - }, - { - "title": "Fall Out Boy - A Little Less Sixteen Candles, A Little More \"Touch Me\" (Karaoke)", - "id": "yCIqcik7ghk" - }, - { - "title": "Jackson 5 - I'll Be There (Karaoke)", - "id": "xHMNnTj-ylM" - }, - { - "title": "Carl Smith - Back Up Buddy (Karaoke)", - "id": "vzCrTJQGaSk" - }, - { - "title": "Carl Smith - Are You Teasing Me (Karaoke Guide Vocal)", - "id": "XAeZl7T2QLY" - }, - { - "title": "Carl Carlton - Everlasting Love (Karaoke)", - "id": "N2Z48y5DBj4" - }, - { - "title": "Capital Cities - Safe And Sound (Karaoke)", - "id": "BaPX8mwFbng" - }, - { - "title": "Capital Cities - I Sold My Bed, But Not My Stereo (Karaoke)", - "id": "quZ9ouZB4pI" - }, - { - "title": "Canaan Smith - Love You Like That (Karaoke)", - "id": "5FqJcxO-p94" - }, - { - "title": "Cam - Burning House (Karaoke)", - "id": "WoHviuU9y8Q" - }, - { - "title": "Cal Smith - Country Bumpkin (Karaoke)", - "id": "grvXsphzBF8" - }, - { - "title": "Broadway - We're Off To See The Wizard (Karaoke Guide Vocal)", - "id": "GzpynzZgbQY" - }, - { - "title": "Brandy, Monica - The Boy Is Mine (Karaoke)", - "id": "9yAJnkkg9hE" - }, - { - "title": "Billy Dean - Shine On (Karaoke)", - "id": "nebozm6wj38" - }, - { - "title": "The Bellamy Brothers - I Need More Of You (Karaoke)", - "id": "0WUtqbO6MuY" - }, - { - "title": "Barry Manilow - Love Is A Many Splendored Thing (Karaoke Guide Vocal)", - "id": "kInsG2lJCho" - }, - { - "title": "Barbara Mandrell - Satisfied (Karaoke)", - "id": "4pVdmwZTcf8" - }, - { - "title": "Barbara Mandrell - Happy Birthday Dear Heartache (Karaoke)", - "id": "bSKaGOkzSqo" - }, - { - "title": "B. J. Thomas - Hooked On A Feeling (Karaoke)", - "id": "uYRJuZm7u8s" - }, - { - "title": "The Association - Cherish (Karaoke Guide Vocal)", - "id": "MIEY0XlMmeU" - }, - { - "title": "Andy Williams - Love Is A Many Splendored Thing (Karaoke)", - "id": "F2qkmziyXV0" - }, - { - "title": "Andy Grammer - Honey, I'm Good (Karaoke)", - "id": "wHFnQNH90Wo" - }, - { - "title": "Amerie - Why Don't We Fall In Love (Karaoke)", - "id": "ui-xMqJEW1k" - }, - { - "title": "Amerie - Talkin' To Me (Karaoke)", - "id": "QfTQw_gimh0" - }, - { - "title": "Alison Krauss, Union Station - I Don't Believe You've Met My Baby (Karaoke)", - "id": "S9kLmOjWip4" - }, - { - "title": "Alicia Keys - Fallin' (Karaoke Guide Vocal)", - "id": "Tj59OUA0yS8" - }, - { - "title": "Alan Jackson - The Talkin' Song Repair Blues (Karaoke)", - "id": "jKjp0lVP8io" - }, - { - "title": "Alan Jackson - Santa's Gonna Come In A Pick-Up Truck (Karaoke)", - "id": "CnHEbU7Pgd0" - }, - { - "title": "Alabama - Born Country (Karaoke)", - "id": "JqcZJTRqwmU" - }, - { - "title": "Aaron Tippin - Where The Stars And Stripes And The Eagle Fly (Karaoke)", - "id": "p2VSgr3ZyAU" - }, - { - "title": "The 5th Dimension - Wedding Bell Blues (Karaoke)", - "id": "1Pm0G3ZvLQQ" - }, - { - "title": "The 5th Dimension - Aquarius/Let The Sun Shine In (Karaoke)", - "id": "XaqyAbmb3qA" - }, - { - "title": "38 Special - Back Where You Belong (Karaoke)", - "id": "thjp76gZqWw" - }, - { - "title": "Porter Wagoner - Sorrow On The Rocks (Karaoke)", - "id": "jH-s5RPK1RQ" - }, - { - "title": "Judy Garland - Somewhere Over The Rainbow (Karaoke)", - "id": "uXK6xzvFPJI" - }, - { - "title": "Ray Price - Heartaches By The Number (Karaoke)", - "id": "VLXIMbSp2WU" - }, - { - "title": "Ray Price - Soft Rain (Karaoke)", - "id": "NVZV-1BeJ6A" - }, - { - "title": "Roger Miller - You Can't Roller Skate In A Buffalo Herd (Karaoke)", - "id": "Z6f2spiPn1o" - }, - { - "title": "Roger Miller - One Dyin' And A Buryin' (Karaoke)", - "id": "3MnzQlR2ohU" - }, - { - "title": "Roger Miller - My Uncle Used To Love Me But She Died (Karaoke)", - "id": "TKjhj17Bc8g" - }, - { - "title": "Kitty Wells - Heartbreak U.S.A (Karaoke)", - "id": "ig0b0mSI4a8" - }, - { - "title": "The Kinleys - My Heart Is Still Beating (Karaoke)", - "id": "22r-gN56Fv0" - }, - { - "title": "The Kingsmen - Louie Louie (Karaoke)", - "id": "3gCcDm1vvJI" - }, - { - "title": "The King Cole Trio - Straighten Up And Fly Right (Karaoke Guide Vocal)", - "id": "xmq9ifN1SL4" - }, - { - "title": "Brad Martin - Rub Me The Right Way (Karaoke)", - "id": "QZr2iJ6BtdE" - }, - { - "title": "Rodney Atkins - My Old Man (Karaoke)", - "id": "9UBUAgAE8Yo" - }, - { - "title": "Junior Brown - Holding Pattern (Karaoke)", - "id": "kkKSOf_Apr8" - }, - { - "title": "Junior Brown - Venom Wearing Denim (Karaoke)", - "id": "sF0wN7qQI-4" - }, - { - "title": "Junior Brown - My Wife Thinks You're Dead (Karaoke)", - "id": "U3SMF69mtJ8" - }, - { - "title": "Donovan Chapman - House Like That (Karaoke)", - "id": "h_2v12aCklc" - }, - { - "title": "Amy Winehouse - Me And Mr. Jones (Karaoke)", - "id": "-pxxBZR6zSY" - }, - { - "title": "Amy Winehouse - Best Friend (Karaoke)", - "id": "Lw4Q2CDznT8" - }, - { - "title": "Ariana Grande, Zedd - Break Free (Karaoke)", - "id": "WZekK19rZGI" - }, - { - "title": "The Cadillac Three - White Lightning (Karaoke)", - "id": "rzKL6EjcbWc" - }, - { - "title": "Thompson Square - If I Didn't Have You (Karaoke)", - "id": "x8VWgET3awI" - }, - { - "title": "Shalamar - The Second Time Around (Karaoke)", - "id": "wrU2XrrgSMs" - }, - { - "title": "Bobby Bloom - Montego Bay (Karaoke)", - "id": "hLtPof_jkcw" - }, - { - "title": "Shinedown - The Crow & The Butterfly (Karaoke)", - "id": "HGQjCM6pm-A" - }, - { - "title": "The Weeknd - Acquainted (Karaoke)", - "id": "j5tBA9Pibss" - }, - { - "title": "Animals - It's My Life (Karaoke)", - "id": "VPnDZxhiASE" - }, - { - "title": "Jackson 5 - I Want You Back (Karaoke)", - "id": "zYkjKfFBus0" - }, - { - "title": "Hootie & The Blowfish - Let Her Cry (Karaoke)", - "id": "8jFmXm9WlkM" - }, - { - "title": "Hootie & The Blowfish - Hold My Hand (Karaoke)", - "id": "3aSNJPnAe8k" - }, - { - "title": "Hinder - Loaded And Alone (Karaoke)", - "id": "cd8O-YdX4IQ" - }, - { - "title": "Hinder - Best Is Yet To Come (Karaoke)", - "id": "cJCeD2PCHp4" - }, - { - "title": "Hinder - Better Than Me (Karaoke)", - "id": "GsPFg4lrS_Q" - }, - { - "title": "Hinder - Lips Of An Angel (Karaoke)", - "id": "rWxmGwu2DgU" - }, - { - "title": "Herman's Hermits - I'm Henry The VIII I Am (Karaoke)", - "id": "jWcsd47j6Lk" - }, - { - "title": "The Grass Roots - Sooner Or Later (Karaoke)", - "id": "JzmJLymBE08" - }, - { - "title": "Glen Campbell - Try A Little Kindness (Karaoke)", - "id": "6CYoZFB6uyg" - }, - { - "title": "Glen Campbell - Galveston (Karaoke)", - "id": "ftOmxtKnAYg" - }, - { - "title": "Glen Campbell - Dreams Of The Everyday Housewife (Karaoke)", - "id": "Y6WYFR3gUKw" - }, - { - "title": "George Strait - Fire I Can't Put Out (Karaoke)", - "id": "PthSEoKMm-M" - }, - { - "title": "Kenny Chesney - I Go Back (Karaoke)", - "id": "JLvxPsD1K3A" - }, - { - "title": "Pink - Family Portrait (Karaoke)", - "id": "ZqZLYsIq3oo" - }, - { - "title": "Pink - I Don't Believe You (Karaoke)", - "id": "1Kzo9qDo-jc" - }, - { - "title": "Pink - Don't Let Me Get Me (Karaoke)", - "id": "RzIiJoulvFs" - }, - { - "title": "Pink - God Is A DJ (Karaoke)", - "id": "1ShNc8zFCPg" - }, - { - "title": "Whitney Houston - Million Dollar Bill (Karaoke)", - "id": "FYHZXEzcQY8" - }, - { - "title": "Whitney Houston - One Of Those Days (Karaoke)", - "id": "SqESG9zuvxU" - }, - { - "title": "Surface - Shower Me With Your Love (Karaoke)", - "id": "xHkLOGbX8-Q" - }, - { - "title": "Amy Winehouse - Rehab (Karaoke)", - "id": "ZNB44J43w9Y" - }, - { - "title": "a-ha - Take On Me (Karaoke)", - "id": "BGmJhiGWZOs" - }, - { - "title": "Beatles - Rocky Raccoon (Karaoke EZ Sing)", - "id": "hwpAZe9y_ws" - }, - { - "title": "Beatles - Nowhere Man (Karaoke EZ Sing)", - "id": "JA1LzZLKexo" - }, - { - "title": "Beatles - I Am The Walrus (Karaoke EZ Sing)", - "id": "MUwg7enHX1k" - }, - { - "title": "George Jones & Tammy Wynette - We're Gonna Hold On (Karaoke)", - "id": "KIAXW8mPpaM" - }, - { - "title": "George Jones, Tammy Wynette - We Loved It Away (Karaoke)", - "id": "sQSMl2a2jW0" - }, - { - "title": "George Jones - The One I Loved Back Then (The Corvette Song) (Karaoke)", - "id": "uDMNn1srxUQ" - }, - { - "title": "George Jones - The Grand Tour (Karaoke)", - "id": "hTBjFP1oQSk" - }, - { - "title": "Frankie Lymon & The Teenagers - Why Do Fools Fall In Love (Karaoke)", - "id": "F-v1Rd9quCw" - }, - { - "title": "Frank Sinatra - Didn't We (Karaoke)", - "id": "Lype0s_Eb7g" - }, - { - "title": "Selena - Missing My Baby (Karaoke EZ Sing)", - "id": "nEF1XRB2_lo" - }, - { - "title": "The Seldom Scene - House Of Gold (Karaoke)", - "id": "ZKP4ZGxh-4c" - }, - { - "title": "Sarah McLachlan - Stupid (Karaoke)", - "id": "kMiZOLDQk3I" - }, - { - "title": "Sarah McLachlan - Fallen (Karaoke)", - "id": "055x8cbjatc" - }, - { - "title": "Frank Sinatra - Love Is A Many Splendored Thing (Karaoke)", - "id": "Ooi2eZvNCDA" - }, - { - "title": "Faron Young - Live Fast, Love Hard, Die Young (Karaoke)", - "id": "wkf9DxdIO5o" - }, - { - "title": "Faron Young - Country Girl (Karaoke)", - "id": "DldVV6BMc2U" - }, - { - "title": "Rascal Flatts - Revolution (Karaoke)", - "id": "5IKdfzFZW40" - }, - { - "title": "The Esquires - Get On Up (Karaoke)", - "id": "MG9pkWiSXn4" - }, - { - "title": "Rascal Flatts - Unstoppable (Karaoke)", - "id": "DPpqwE2KkHc" - }, - { - "title": "Fats Domino - Walking To New Orleans (Karaoke)", - "id": "44ElpvsOp2I" - }, - { - "title": "Faron Young - If You Ain't Lovin' (You Ain't Livin') (Karaoke Guide Vocal)", - "id": "PhxtwqLwVIs" - }, - { - "title": "Faron Young - Goin' Steady (Karaoke)", - "id": "-3UXIbX45VI" - }, - { - "title": "Emmylou Harris - High Powered Love (Karaoke)", - "id": "B3Mq3Zj9hkA" - }, - { - "title": "Elvis Presley - Separate Ways (Karaoke)", - "id": "WZ3mGU_Dd0U" - }, - { - "title": "Elvis Presley - Polk Salad Annie (Karaoke)", - "id": "z-FCaegYQmA" - }, - { - "title": "Elvis Presley - I've Got A Thing About You Baby (Karaoke)", - "id": "9d6RvDwLtQ0" - }, - { - "title": "Elvis Presley - For The Heart (Karaoke)", - "id": "YgubwMLGjs0" - }, - { - "title": "John Conlee - Years After You (Karaoke)", - "id": "aYbAFrFqeCk" - }, - { - "title": "Eddie Rabbitt - Suspicions (Karaoke)", - "id": "C722xt5_WlM" - }, - { - "title": "Kim Weston - Take Me In Your Arms (Rock Me A Little While) (Karaoke Guide Vocal)", - "id": "zsMv_3qWI1I" - }, - { - "title": "Rod Stewart - Blue Skies (Karaoke)", - "id": "dSNPCt2RqJE" - }, - { - "title": "Rod Stewart - I've Got My Love To Keep Me Warm (Karaoke)", - "id": "_qN4ve8glAk" - }, - { - "title": "Blues Brothers - Sweet Home Chicago (Karaoke EZ Sing)", - "id": "vqowghFUDcs" - }, - { - "title": "The Moody Blues - Tuesday Afternoon (Karaoke)", - "id": "oAS5D_Ka_sU" - }, - { - "title": "T. Rex - Ride A White Swan (Karaoke)", - "id": "afLuZH6m9vI" - }, - { - "title": "Usher, Juicy J - I Don't Mind (Karaoke)", - "id": "cGYk-j33WcE" - }, - { - "title": "Phil Collins - That's Just The Way It Is (Karaoke)", - "id": "qWF26pBU32c" - }, - { - "title": "Phil Collins - It Don't Matter To Me (Karaoke)", - "id": "Mx4BmaPAqSI" - }, - { - "title": "Phil Collins - I Don't Care Anymore (Karaoke EZ Sing)", - "id": "3jf4GkLUG1s" - }, - { - "title": "Phil Collins - I Missed Again (Karaoke)", - "id": "YSy2HO8JbiI" - }, - { - "title": "The Supremes - Someday We'll Be Together (Karaoke)", - "id": "Ep4rgHAKXVY" - }, - { - "title": "Diana Ross - Love Hangover (Karaoke)", - "id": "V9YfldGNMgg" - }, - { - "title": "Kenny Chesney - Fall In Love (Karaoke)", - "id": "8hIXZBJ_MNk" - }, - { - "title": "Eddie Rabbitt - Do You Right Tonight (Karaoke)", - "id": "mVNOicero-Y" - }, - { - "title": "Eddie Rabbitt - Rocky Mountain Music (Karaoke)", - "id": "t_ax9sBMO_s" - }, - { - "title": "Don Williams - I Believe In You (Karaoke)", - "id": "A8-xA8hAksg" - }, - { - "title": "Kenny Rogers, Dolly Parton - The Greatest Gift Of All (Karaoke)", - "id": "HdZI-Plezvg" - }, - { - "title": "Kenny Chesney - When I Close My Eyes (Karaoke)", - "id": "DUgmUOsIr3w" - }, - { - "title": "Kelly Clarkson - Someone (Karaoke)", - "id": "CphXTWhoFhQ" - }, - { - "title": "The Supremes - Love Is Here And Now You're Gone (Karaoke Guide Vocal)", - "id": "0IdFXPZN8ps" - }, - { - "title": "Kenny Chesney - A Chance (Karaoke)", - "id": "UefE1OekDkk" - }, - { - "title": "Kenny Chesney - That's Why I'm Here (Karaoke)", - "id": "28CDhEgl3u0" - }, - { - "title": "Diana Ross - Touch Me In The Morning (Karaoke)", - "id": "AEoH6yrNjG4" - }, - { - "title": "Dexys Midnight Runners - Come On Eileen (Karaoke)", - "id": "YbNz_lIAgnU" - }, - { - "title": "KC And The Sunshine Band - Give It Up (Karaoke)", - "id": "6_TjDum-b1A" - }, - { - "title": "Kathy Mattea - Where've You Been (Karaoke)", - "id": "bU3GP7BwjFM" - }, - { - "title": "Kathy Mattea - Standing Knee Deep In A River (Dying Of Thirst) (Karaoke)", - "id": "IapJafUsCD0" - }, - { - "title": "Karyn White - Can I Stay With You (Karaoke)", - "id": "Sh1mDTk3Iqo" - }, - { - "title": "Pink - Family Portrait (Karaoke Guide Vocal)", - "id": "F3V0-qBOvHc" - }, - { - "title": "Pink - Glitter In The Air (Karaoke)", - "id": "QD4O4I04VJ0" - }, - { - "title": "Pink - I Don't Believe You (Karaoke Guide Vocal)", - "id": "8H6HTCl1Lhw" - }, - { - "title": "Pink - Don't Let Me Get Me (Karaoke Guide Vocal)", - "id": "8YqdMSC1Bew" - }, - { - "title": "Pink - God Is A DJ (Karaoke Guide Vocal)", - "id": "5UsmJxYChh0" - }, - { - "title": "Pink - Heartbreak Down (Karaoke)", - "id": "SXBhKL9TN7g" - }, - { - "title": "Pink - Get The Party Started (Karaoke)", - "id": "fL2WPUr_9JI" - }, - { - "title": "Pink - Who Knew (Karaoke)", - "id": "ungcIHEi4U8" - }, - { - "title": "Pink, Lily Allen - True Love (Karaoke)", - "id": "cKhAB0opWAA" - }, - { - "title": "Pink - There You Go (Karaoke)", - "id": "sFETz4NmCMo" - }, - { - "title": "Pink - So What (Karaoke)", - "id": "zBGRQuUBNo4" - }, - { - "title": "P!nk - Please Don't Leave Me (Karaoke)", - "id": "RtAQH5hbKT4" - }, - { - "title": "P!nk - Just Like A Pill (Karaoke)", - "id": "9vDNsPlwb0Y" - }, - { - "title": "David Houston - Already It's Heaven (Karaoke Guide Vocal)", - "id": "M4qMiBrGHws" - }, - { - "title": "The Young Rascals - Groovin' (Karaoke)", - "id": "n6golIkbXKo" - }, - { - "title": "David Houston - With One Exception (Karaoke Guide Vocal)", - "id": "bpWayJVsU-Q" - }, - { - "title": "David Houston - Almost Persuaded (Karaoke)", - "id": "iER-ChRcU3U" - }, - { - "title": "Cornelius Brothers & Sister Rose - Too Late To Turn Back Now (Karaoke)", - "id": "-ACSzahS6aA" - }, - { - "title": "Conway Twitty - I'd Love To Lay You Down (Karaoke)", - "id": "UlOso3aluHo" - }, - { - "title": "Conway Twitty - Crazy In Love (Karaoke)", - "id": "JdhowjbalY8" - }, - { - "title": "Collin Raye - She's All That (Karaoke Guide Vocal)", - "id": "TBlkgCojzbM" - }, - { - "title": "The Rascals - People Got To Be Free (Karaoke)", - "id": "V1QohGM2OMs" - }, - { - "title": "Charlie Rich - Most Beautiful Girl (Karaoke)", - "id": "Pd_cBIm4EmA" - }, - { - "title": "Neal McCoy - For A Change (Karaoke)", - "id": "3FVxg4Z9tK4" - }, - { - "title": "Charlie Rich - I Love My Friend (Karaoke)", - "id": "Ne7Lao5el8I" - }, - { - "title": "Whitney Houston - Million Dollar Bill (Karaoke)", - "id": "W_IQoz1wS3U" - }, - { - "title": "Whitney Houston - Saving All My Love For You (Karaoke)", - "id": "bieS0q7obho" - }, - { - "title": "Cathy Dennis - Just Another Dream (Karaoke)", - "id": "xN1yb5Yy9QQ" - }, - { - "title": "Carly Simon - Nobody Does It Better (Karaoke)", - "id": "lG60Vm29F4g" - }, - { - "title": "Whitney Houston - The Greatest Love Of All (Karaoke)", - "id": "zqnbs0Pnr-s" - }, - { - "title": "Whitney Houston - Try It On My Own (Karaoke)", - "id": "cVSyZz7nwEI" - }, - { - "title": "Whitney Houston - Where Do Broken Hearts Go (Karaoke)", - "id": "cU7FVIclXGI" - }, - { - "title": "Carly Simon - Mockingbird (Karaoke Guide Vocal)", - "id": "fr2_S4Q334w" - }, - { - "title": "Whitney Houston - I'm Your Baby Tonight (Karaoke)", - "id": "z7xsUrBGkqI" - }, - { - "title": "Buffalo Springfield - Sit Down I Think I Love You (Karaoke Guide Vocal)", - "id": "0_55WSf5VX0" - }, - { - "title": "Whitney Houston - My Love Is Your Love (Karaoke)", - "id": "TmGRAQJ7wdc" - }, - { - "title": "Boyz II Men - It's So Hard To Say Goodbye To Yesterday (Karaoke)", - "id": "QteRdj0kkks" - }, - { - "title": "Whitney Houston - So Emotional (Karaoke)", - "id": "TIDZ87zMPhM" - }, - { - "title": "Whitney Houston - My Heart Is Calling (Karaoke)", - "id": "LIe-78pnk2E" - }, - { - "title": "Boys Like Girls - Thunder (Karaoke)", - "id": "she-bD2eE5c" - }, - { - "title": "Whitney Houston - One Of Those Days (Karaoke Guide Vocals)", - "id": "dVqm45_8ECA" - }, - { - "title": "Surface - Shower Me With Your Love (Karaoke)", - "id": "CmQHxiEEsYE" - }, - { - "title": "Boys Like Girls - Hero/Heroine (Karaoke)", - "id": "otXJv5Rl6ZU" - }, - { - "title": "Smash Mouth - Can't Get Enough Of You Baby (Karaoke)", - "id": "AKEkq1LTtB4" - }, - { - "title": "Sigala - Easy Love (Karaoke)", - "id": "x0z2Q6_qoYY" - }, - { - "title": "Blu Cantrell - Hit 'Em Up Style (Karaoke)", - "id": "Hxb-tIIEQw0" - }, - { - "title": "The Shirelles - Soldier Boy (Karaoke)", - "id": "omZGzRS26sA" - }, - { - "title": "Shenandoah - Heaven Bound (Karaoke)", - "id": "aLe4cs2zaQg" - }, - { - "title": "Selena - Missing My Baby (Karaoke Guide Vocals)", - "id": "1_IIgwlj258" - }, - { - "title": "The Seldom Scene - House Of Gold (Karaoke Guide Vocal)", - "id": "S82BObqTAEA" - }, - { - "title": "The Searchers - Love Potion Number Nine (Karaoke)", - "id": "DrfBLdoAQ4o" - }, - { - "title": "Sarah McLachlan - Stupid (Karaoke Guide Vocal)", - "id": "1rWc6cEvaiI" - }, - { - "title": "Sarah McLachlan - Fallen (Karaoke Guide Vocal)", - "id": "yslhRwoYyow" - }, - { - "title": "Sammy Kershaw - Queen Of My Double Wide Trailer (Karaoke)", - "id": "iLqwKqn9q2E" - }, - { - "title": "Rufus, Chaka Khan - Ain't Nobody (Karaoke)", - "id": "8rH2Onm7Ppc" - }, - { - "title": "Roy Orbison - Dream Baby (How Long Must I Dream) (Karaoke)", - "id": "iUaakyuFu90" - }, - { - "title": "Roy Drusky, Priscilla Mitchell - Yes, Mr. Peters (Karaoke)", - "id": "cRyOQqJFcZM" - }, - { - "title": "Roy Drusky - Long Long Texas Road (Karaoke)", - "id": "zaQ__ebyqgo" - }, - { - "title": "Ronnie Milsap - Please Don't Tell Me How The Story Ends (Karaoke)", - "id": "ei1n8PRhqgA" - }, - { - "title": "Ronnie Milsap - Don't You Ever Get Tired (Of Hurting Me) (Karaoke)", - "id": "QHow_VFwqT0" - }, - { - "title": "Eric Clapton - Before You Accuse Me (Take A Look At Yourself) (Karaoke)", - "id": "o0IKeOE8-2o" - }, - { - "title": "Rascal Flatts - Winner At A Losing Game (Karaoke)", - "id": "ABPLB3SmP3c" - }, - { - "title": "The Davis Sisters - I Forgot More Than You'll Ever Know (Karaoke)", - "id": "iLvBB9eK-fg" - }, - { - "title": "David Houston - A Woman Always Knows (Karaoke EZ Sing)", - "id": "onK3xh232jU" - }, - { - "title": "David Houston - My Woman's Good To Me (Karaoke EZ Sing)", - "id": "z6spByYzTE0" - }, - { - "title": "Carole King - You've Got A Friend (Karaoke EZ Sing)", - "id": "vfxY06bhKVw" - }, - { - "title": "The Band Perry - You Lie (Karaoke)", - "id": "TZ0QCRF5wK0" - }, - { - "title": "Freddie Hart - Easy Loving (Karaoke)", - "id": "pAFtIR7m5Yk" - }, - { - "title": "Frank Sinatra - Love Is A Many Splendored Thing (Karaoke)", - "id": "AdvgR_Jd50Q" - }, - { - "title": "The Fleetwoods - Mr. Blue (Karaoke)", - "id": "xwcQbgXFvEc" - }, - { - "title": "Firehouse - Love Of A Lifetime (Karaoke)", - "id": "G3TgX7W_fCc" - }, - { - "title": "Fiona Apple - Across The Universe (Karaoke)", - "id": "zcWGKaRZh4g" - }, - { - "title": "Felix Jaehn, Jasmine Thompson - Ain't Nobody (Loves Me Better) (Karaoke)", - "id": "xoqoBynO97A" - }, - { - "title": "Faith Hill - Love Is A Sweet Thing (Karaoke)", - "id": "tEE89BV24sk" - }, - { - "title": "Faith Hill - Take Me As I Am (Karaoke)", - "id": "I1JbVuCZYZg" - }, - { - "title": "Faith Hill - Let's Go To Vegas (Karaoke)", - "id": "OLwfBZf1HB8" - }, - { - "title": "Faith Hill - The Secret Of Life (Karaoke)", - "id": "y0Z9KPzUu-8" - }, - { - "title": "Etta James - At Last (Karaoke)", - "id": "yydDfNVRWVg" - }, - { - "title": "Rascal Flatts - Revolution (Karaoke)", - "id": "IxxxLlKizbE" - }, - { - "title": "Rascal Flatts - I Won't Let Go (Karaoke)", - "id": "Tl9fn9BZFYw" - }, - { - "title": "Rascal Flatts - While You Loved Me (Karaoke)", - "id": "vzda2gIPN-g" - }, - { - "title": "The Esquires - Get On Up (Karaoke)", - "id": "WfAJ4e5CppY" - }, - { - "title": "Rascal Flatts - Unstoppable (Karaoke)", - "id": "DlhFATko6VI" - }, - { - "title": "Ernest Tubb - I Love You Because (Karaoke)", - "id": "69Ijye-tboo" - }, - { - "title": "Eric Clapton - Before You Accuse Me (Take A Look At Yourself) (Karaoke Guide Vocal)", - "id": "SjxxR_CQZis" - }, - { - "title": "Engelbert Humperdinck - Winter World Of Love (Karaoke)", - "id": "pFwBWcTYOyo" - }, - { - "title": "Rascal Flatts - Winner At A Losing Game (Karaoke)", - "id": "CYIj_c8fGX4" - }, - { - "title": "Elvis Presley - I Can't Stop Loving You (Karaoke)", - "id": "F1Wgq9nMybw" - }, - { - "title": "Elvis Presley - Always On My Mind (Karaoke)", - "id": "VrQSAv66IMY" - }, - { - "title": "The Davis Sisters - I Forgot More Than You'll Ever Know (Karaoke)", - "id": "QsdgLEqV6KY" - }, - { - "title": "David Houston - A Woman Always Knows (Karaoke)", - "id": "Vo73M22v53U" - }, - { - "title": "David Houston - My Woman's Good To Me (Karaoke)", - "id": "vxDqncq2_Lk" - }, - { - "title": "Daniel Boone - Beautiful Sunday (Karaoke)", - "id": "NpUGBkiBvEE" - }, - { - "title": "Billy Swan - I Can Help (Karaoke)", - "id": "E6761y2EvBo" - }, - { - "title": "Anne Murray - Snowbird (Karaoke)", - "id": "Mq5evmNkq4I" - }, - { - "title": "Chubby Checker - Pony Time (Karaoke)", - "id": "mY6ERBe4IHs" - }, - { - "title": "Cyndi Lauper - Girls Just Wanna Have Fun (Karaoke)", - "id": "rbKvdLaUYhI" - }, - { - "title": "Roger Miller - England Swings (Karaoke)", - "id": "mlcMEDVd7e0" - }, - { - "title": "Roger Miller - Do-Wacka-Do (Karaoke)", - "id": "ywjCbCrbbAM" - }, - { - "title": "Ricky Nelson - Young World (Karaoke)", - "id": "heqi6I_29f8" - }, - { - "title": "Ricky Nelson - It's Up To You (Karaoke)", - "id": "mIuKjLz7EtY" - }, - { - "title": "Norah Jones - Those Sweet Words (Karaoke)", - "id": "APK3miYupts" - }, - { - "title": "Norah Jones - Sunrise (Karaoke)", - "id": "i9bIvJx26iY" - }, - { - "title": "Norah Jones - The Long Day Is Over (Karaoke)", - "id": "GvGtLDH9F10" - }, - { - "title": "Norah Jones - Don't Know Why (Karaoke)", - "id": "Ll2GRBomjOg" - }, - { - "title": "Anne Murray - Put Your Hand In The Hand (Karaoke)", - "id": "3S1GOI7XWK0" - }, - { - "title": "Andy Williams - Somewhere My Love (Karaoke)", - "id": "76c6Onrdcnw" - }, - { - "title": "Loretta Lynn, Conway Twitty - After The Fire Is Gone (Karaoke)", - "id": "dJGyUoq-iDU" - }, - { - "title": "Conway Twitty - You've Never Been This Far Before (Karaoke)", - "id": "tiU2Vk7i6zc" - }, - { - "title": "Conway Twitty - Touch The Hand (Karaoke)", - "id": "BUI3HRwv4K8" - }, - { - "title": "Conway Twitty - Play Guitar Play (Karaoke)", - "id": "tSwya7ZdM8Q" - }, - { - "title": "Conway Twitty - Julia (Karaoke)", - "id": "hLDN3lksM9Y" - }, - { - "title": "Chubby Checker - Limbo Rock (Karaoke)", - "id": "gim-R9g62Sc" - }, - { - "title": "Chaka Khan - I'm Every Woman (Karaoke)", - "id": "wN5Un02feC0" - }, - { - "title": "Conway Twitty - I've Already Loved You In My Mind (Karaoke Guide Vocal)", - "id": "6-GVFjIkEEM" - }, - { - "title": "Cรฉline Dion - Here There And Everywhere (Karaoke)", - "id": "IMMKOvnXfj8" - }, - { - "title": "Carole King - You've Got A Friend (Karaoke Guide Vocal)", - "id": "gjg-EvTGOjs" - }, - { - "title": "Ronnie McDowell - It's Only Make Believe (Karaoke Guide Vocal)", - "id": "E4g68u4THlg" - }, - { - "title": "The Band Perry - You Lie (Karaoke Guide Vocals)", - "id": "zAsUIX9sRLY" - }, - { - "title": "Conway Twitty - I'm Not Through Loving You Yet (Karaoke Guide Vocal)", - "id": "7_ezVvV3iZw" - }, - { - "title": "Bachman-Turner Overdrive - Rock Is My Life, And This Is My Song (Quad Mix) (Karaoke)", - "id": "RnfqM3I4TOc" - }, - { - "title": "Conway Twitty - I Wish I Was Still In Your Dreams (Karaoke)", - "id": "ivc0C_opI-g" - }, - { - "title": "Conway Twitty - Hello Darlin' (Karaoke)", - "id": "p9MIaiS7rXI" - }, - { - "title": "Blake Shelton - Goodbye Time (Karaoke Guide Vocal)", - "id": "J_Rk5v8hjrw" - }, - { - "title": "Roger Miller - England Swings (Karaoke) (Guide Vocals)", - "id": "6Ktv9e1UAok" - }, - { - "title": "Conway Twitty, Loretta Lynn - Desperado Love (Karaoke)", - "id": "99LwNweXFd8" - }, - { - "title": "Conway Twitty - Baby's Gone (Karaoke Guide Vocal)", - "id": "BDbb1iHdTe4" - }, - { - "title": "Roger Miller - Engine Engine #9 (Karaoke)", - "id": "wlj4OD4GbAc" - }, - { - "title": "Conway Twitty - I May Never Get To Heaven (Karaoke)", - "id": "L5CDrKC54v4" - }, - { - "title": "Roger Miller - Do-Wacka-Do (Karaoke) (Guide Vocals)", - "id": "OOtHGj6eSY0" - }, - { - "title": "Roger Miller - Chug-a-lug (Karaoke)", - "id": "ZPPO-BkFhWc" - }, - { - "title": "Conway Twitty - After All The Good Is Gone (Karaoke)", - "id": "Mrb1fd7vZME" - }, - { - "title": "Ricky Nelson - Young World (Karaoke) (Guide Vocals)", - "id": "FA4o4UeifoM" - }, - { - "title": "Ricky Nelson - Travelin' Man (Karaoke)", - "id": "KU1Ttd_HJpc" - }, - { - "title": "Ricky Nelson - Stood Up (Karaoke)", - "id": "pE-QO1q1vlM" - }, - { - "title": "Ricky Nelson - It's Up To You (Karaoke) (Guide Vocals)", - "id": "P0rgueoojw0" - }, - { - "title": "Ricky Nelson - Garden Party (Karaoke)", - "id": "KkSHIGM0VW0" - }, - { - "title": "Indian Reservation (The Lament Of The Cherokee Reservation Indian) (Karaoke)", - "id": "LLDzxrFqDtc" - }, - { - "title": "Patty Loveless - You Don't Even Know Who I Am (Karaoke)", - "id": "VRqiTiWLHc4" - }, - { - "title": "Patty Loveless - The Trouble With The Truth (Karaoke)", - "id": "YPqarLHOdJE" - }, - { - "title": "Connie Smith - The Hurtin's All Over (Karaoke)", - "id": "04c8NtIrU0k" - }, - { - "title": "Connie Smith - Run Away Little Tears (Karaoke)", - "id": "bPcqbJGZPAs" - }, - { - "title": "Connie Smith - I'll Come Runnin' (Karaoke)", - "id": "Hs1s2_EgIJw" - }, - { - "title": "Connie Smith - I Never Once Stopped Loving You (Karaoke)", - "id": "Iet8MAgqxWk" - }, - { - "title": "Connie Smith - Ain't Had No Lovin' (Karaoke)", - "id": "dPEuPyBTQNw" - }, - { - "title": "Bread - Everything I Own (Karaoke)", - "id": "1Y_WStSPNzc" - }, - { - "title": "Bread - Make It With You (Karaoke)", - "id": "cjl-YJYuzlc" - }, - { - "title": "Bread - Diary (Karaoke Guide Vocal)", - "id": "MVf-fYYq6M4" - }, - { - "title": "Bread - Baby I'm-A Want You (Karaoke)", - "id": "MSzC5EPgub0" - }, - { - "title": "Bread - If (Karaoke)", - "id": "tNgNPGdlFr8" - }, - { - "title": "Bonnie Pointer - Heaven Must Have Sent You (Karaoke)", - "id": "nmNScIOe7As" - }, - { - "title": "Bobby Bloom - Montego Bay (Karaoke Vocal Guide)", - "id": "8K41wBBARi0" - }, - { - "title": "Bobby Bare - Please Don't Tell Me How The Story Ends (Karaoke)", - "id": "vsdIaqDwKQA" - }, - { - "title": "Collin Raye - Love Remains (Karaoke)", - "id": "oUVLOh_H5g4" - }, - { - "title": "Collin Raye - Little Rock (Karaoke)", - "id": "ezPvE0etKqc" - }, - { - "title": "Collin Raye - All I Can Be (Is A Sweet Memory) (Karaoke)", - "id": "MfOiF6jpRRg" - }, - { - "title": "Tommy James & The Shondells - Mony Mony (Karaoke)", - "id": "USOFKw2KuTo" - }, - { - "title": "Billy Idol - Mony Mony (Karaoke)", - "id": "XWLkxnqwlEA" - }, - { - "title": "Patty Loveless - Like Water Into Wine (Karaoke)", - "id": "-SBsEBgtJaA" - }, - { - "title": "The Beach Boys - Barbara Ann (Karaoke)", - "id": "EW7dKWrjOt8" - }, - { - "title": "Patsy Cline - When I Get Thru With You (Karaoke)", - "id": "lr3a52ACJ9E" - }, - { - "title": "Bay City Rollers - Saturday Night (Karaoke)", - "id": "TNbzRefJ6VY" - }, - { - "title": "Patsy Cline - Walkin' After Midnight (Karaoke)", - "id": "V-EpR9Isp5Y" - }, - { - "title": "Patsy Cline - Three Cigarettes In An Ashtray (Karaoke)", - "id": "EMJ9UoKRcz8" - }, - { - "title": "Patsy Cline - She's Got You (Karaoke)", - "id": "W-IbrMvNH90" - }, - { - "title": "Patsy Cline - Imagine That (Karaoke)", - "id": "zYi24f5Q0Rs" - }, - { - "title": "Norah Jones - Those Sweet Words (Karaoke)", - "id": "EaUk9R8ayro" - }, - { - "title": "Norah Jones - Sunrise (Karaoke)", - "id": "hpa9B54YcWI" - }, - { - "title": "Norah Jones - The Long Day Is Over (Karaoke) (Guide Vocals)", - "id": "bupRbompNaM" - }, - { - "title": "Norah Jones - Nightingale (Karaoke)", - "id": "FFa5M3xzyWc" - }, - { - "title": "Norah Jones - One Flight Down (Karaoke)", - "id": "dOkUhsXMsoU" - }, - { - "title": "Norah Jones - Painter Song (Karaoke)", - "id": "xl3OgVsTDtQ" - }, - { - "title": "Norah Jones - Seven Years (Karaoke)", - "id": "6h8_7NHXzW4" - }, - { - "title": "Norah Jones - Feelin' The Same Way (Karaoke)", - "id": "QsEypfDm2kQ" - }, - { - "title": "Norah Jones - Don't Know Why (Karaoke) (Guide Vocals)", - "id": "IfIeqzFy69U" - }, - { - "title": "Norah Jones - Shoot The Moon (Karaoke)", - "id": "_stMcsPw9vw" - }, - { - "title": "Norah Jones - Lonestar (Karaoke)", - "id": "nsaU3AFDcPY" - }, - { - "title": "Norah Jones - I've Got To See You Again (Karaoke)", - "id": "UtDco_W22pY" - }, - { - "title": "Norah Jones - Cold Cold Heart (Karaoke)", - "id": "5XQJJzDHtgg" - }, - { - "title": "Anne Murray, Dave Loggins - Nobody Loves Me Like You Do (Karaoke)", - "id": "Ht9hA6qm09w" - }, - { - "title": "The Animals - It's My Life (Karaoke Vocal Guide)", - "id": "ilrPO99dqXc" - }, - { - "title": "The Angels - My Boyfriend's Back (Karaoke)", - "id": "fNJpY-ZiP00" - }, - { - "title": "Andrea True Connection - More, More, More (Karaoke)", - "id": "eYmxTH3ePX0" - }, - { - "title": "Amy Winehouse - Tears Dry On Their Own (Karaoke)", - "id": "Hma1jezX6DQ" - }, - { - "title": "Amy Winehouse - You Know I'm No Good (Karaoke)", - "id": "Aq5pw2Y5kWY" - }, - { - "title": "Amy Winehouse - Rehab (Karaoke Vocal Guide)", - "id": "Tn8AkDqjZfo" - }, - { - "title": "Amanda Perez - Angel (Karaoke)", - "id": "ujvCE0saTOQ" - }, - { - "title": "Moe Bandy - It's A Cheating Situation (Karaoke EZ Sing)", - "id": "mGFQcWHiwu8" - }, - { - "title": "Mac Wiseman - Dust On The Bible (Karaoke)", - "id": "YcP8amDaZmw" - }, - { - "title": "Alicia Keys - If I Ain't Got You (Karaoke)", - "id": "OmocQWnv6GU" - }, - { - "title": "The Isley Brothers - That Lady (Part 1) (Karaoke)", - "id": "RMXi4CqxE6k" - }, - { - "title": "The Isley Brothers - The Pride (Karaoke)", - "id": "kX09_atNf0k" - }, - { - "title": "Alabama - Angels Among Us (Karaoke)", - "id": "p3tshsCTe2w" - }, - { - "title": "Al Wilson - Show And Tell (Karaoke)", - "id": "riHnNk6XZEI" - }, - { - "title": "Charley Pride - Someone Loves You Honey (Karaoke)", - "id": "JNrsLTSVk7c" - }, - { - "title": "The Isley Brothers - Fight The Power (Karaoke)", - "id": "bzVDO6sfdpw" - }, - { - "title": "Ed Townsend - For Your Love (Karaoke)", - "id": "exG9ICnQdO4" - }, - { - "title": "Don Gibson - Who Cares (Karaoke EZ Sing)", - "id": "1_5XXQV6whU" - }, - { - "title": "Don Gibson - Sweet Dreams (Karaoke)", - "id": "H6ewzRzPvmY" - }, - { - "title": "Don Gibson - Lonesome Number One (Karaoke EZ Sing)", - "id": "Sn9VIBD7wp0" - }, - { - "title": "Don Gibson - I Can Mend Your Broken Heart (Karaoke EZ Sing)", - "id": "sE41H2ohmuo" - }, - { - "title": "Don Gibson - Give Myself A Party (Karaoke EZ Sing)", - "id": "B6WAMdR4VfM" - }, - { - "title": "Don Gibson - Don't Tell Me Your Troubles (Karaoke EZ Sing)", - "id": "QcTIZESqCr0" - }, - { - "title": "Chiffons - One Fine Day (Karaoke EZ Sing)", - "id": "Qxg51l59mKU" - }, - { - "title": "Charley Pride - A Shoulder To Cry On (Karaoke)", - "id": "mVbUql6Ndsk" - }, - { - "title": "Burl Ives - Funny Way Of Laughin' (Karaoke)", - "id": "4aJHMZKMxnE" - }, - { - "title": "Bobby Fuller Four - I Fought The Law (Karaoke)", - "id": "mnzHyNr8Oa8" - }, - { - "title": "Blue Oyster Cult - Don't Fear The Reaper (Karaoke)", - "id": "4DZwSY22ZyU" - }, - { - "title": "Blake Shelton - The Dreamer (Karaoke)", - "id": "vOTtWLfKZxg" - }, - { - "title": "Billy Gilman - There's A Hero (Karaoke EZ Sing)", - "id": "nD7neOwQop8" - }, - { - "title": "Connie Smith - Nobody But A Fool Would Love You (Karaoke EZ Sing)", - "id": "rsoAow3Q0m4" - }, - { - "title": "Bill Anderson, Jan Howard - Dis-Satisfied (Karaoke)", - "id": "Yn-vPzQHK9A" - }, - { - "title": "Bill Anderson - The Corner Of My Life (Karaoke)", - "id": "mHaSpC24K9g" - }, - { - "title": "Bill Anderson - If You Can Live With It (I Can Live Without It) (Karaoke)", - "id": "En8DCjpBp_k" - }, - { - "title": "Bill Anderson - I Get The Fever (Karaoke)", - "id": "uoH2s3QbWjg" - }, - { - "title": "Bill Anderson - Happy State Of Mind (Karaoke)", - "id": "PWAMHFjo758" - }, - { - "title": "Bachman-Turner Overdrive - Take It Like A Man (Karaoke)", - "id": "TQd70GzbeiM" - }, - { - "title": "Bachman-Turner Overdrive - Hold Back The Water (Karaoke)", - "id": "earYLBgpOBY" - }, - { - "title": "Bachman-Turner Overdrive - Give It Time (Karaoke)", - "id": "kmI-vRehhcQ" - }, - { - "title": "Bachman-Turner Overdrive - Gimme Your Money Please (Karaoke)", - "id": "77WHTkp_Chw" - }, - { - "title": "Tim Rushlow - She Misses Him (Karaoke EZ Sing)", - "id": "u7pEVvBv4aY" - }, - { - "title": "Maroon 5 - This Summer's Gonna Hurt like a Motherf---er (Clean) Karaoke", - "id": "40nFxoJ1fxo" - }, - { - "title": "Alabama - Christmas In Dixie (Karaoke)", - "id": "aeSmd0A_5xs" - }, - { - "title": "Sammy Kershaw - I Can't Reach Her Anymore (Karaoke)", - "id": "eB9a6bWGLU0" - }, - { - "title": "Phil Collins - Dance Into The Light (Karaoke)", - "id": "4SVW5owcqN8" - }, - { - "title": "Nicki Minaj - Va Va Voom (Explicit) (Karaoke)", - "id": "jCIRp2GJ7Jc" - }, - { - "title": "Dylan Scott - Nothing To Do Town (Karaoke)", - "id": "HoM9PUR23Lk" - }, - { - "title": "Tom Walker - Better Half Of Me (Karaoke)", - "id": "FWP_XUUQZpY" - }, - { - "title": "Rod Stewart - If I Had You (Karaoke)", - "id": "nrAATvo_Efw" - }, - { - "title": "Carrie Underwood - Look At Me (Karaoke)", - "id": "iALDHgIx7IQ" - }, - { - "title": "Southern Gospel - I'm Standing On The Solid Rock (Karaoke)", - "id": "F2btfzKH-Ac" - }, - { - "title": "Southern Gospel - Where Would I Be (Karaoke)", - "id": "57xiWKHpPNY" - }, - { - "title": "Tim McGraw - Suspicions (Karaoke)", - "id": "cOc95p_WBOg" - }, - { - "title": "The Beatles - Yellow Submarine (Karaoke)", - "id": "GXi9Y3lJLYU" - }, - { - "title": "Larry Gatlin - Statues Without Hearts (Karaoke)", - "id": "39dJc5hpFLg" - }, - { - "title": "Nick Gilder - Hot Child In The City (Karaoke)", - "id": "mKMmIa4kIyM" - }, - { - "title": "Nick Gilder - Hot Child In The City (Karaoke) (Guide Vocal)", - "id": "FtEg25u6OHA" - }, - { - "title": "The Beatles - Maxwell's Silver Hammer (Karaoke)", - "id": "l48eGJa4TX4" - }, - { - "title": "Newbeats - Bread And Butter (Karaoke Vocal Guide)", - "id": "RLdFGzMFGl4" - }, - { - "title": "Neal McCoy - Then You Can Tell Me Goodbye (Karaoke)", - "id": "LfDRZpndRCc" - }, - { - "title": "Nat King Cole - Ramblin' Rose (Karaoke)", - "id": "KP3lvEyCqCA" - }, - { - "title": "Nat King Cole - Mona Lisa (Karaoke)", - "id": "ir3zHGOB69g" - }, - { - "title": "The Monkees - Last Train To Clarksville (Karaoke)", - "id": "9qV_8zzPkbE" - }, - { - "title": "The Monkees - Daydream Believer (Karaoke)", - "id": "0pvUR3vWNKY" - }, - { - "title": "Moe Bandy, Joe Stampley - Hey Joe (Hey Moe) (Karaoke)", - "id": "6HW4OS0KRjA" - }, - { - "title": "Moe Bandy - I'm Sorry For You My Friend (Karaoke)", - "id": "JhyLKrvS08s" - }, - { - "title": "Moe Bandy - Two Lonely People (Karaoke)", - "id": "Besumbb6Sdc" - }, - { - "title": "a-ha - Take On Me (Karaoke Vocal Guide)", - "id": "V15SHCxw8yA" - }, - { - "title": "Mickey Gilley - You've Really Got A Hold On Me (Karaoke)", - "id": "XomnsOK7Alw" - }, - { - "title": "Moe Bandy - It's A Cheating Situation (Karaoke Vocal Guide)", - "id": "AGx27Bn2T6Q" - }, - { - "title": "Alan Jackson - Little Bitty (Karaoke)", - "id": "i72IfUvTXjo" - }, - { - "title": "The Beatles - Paperback Writer (Karaoke)", - "id": "JQAkJfAwtao" - }, - { - "title": "Mark Chesnutt - Too Cold At Home (Karaoke)", - "id": "n-W1mgDopRk" - }, - { - "title": "Mark Chesnutt - Bubba Shot The Jukebox (Karaoke)", - "id": "KXL9-4drcv8" - }, - { - "title": "Aaron Tippin - My Blue Angel (Karaoke EZ Sing)", - "id": "e8qvX3yv3KI" - }, - { - "title": "The Beatles - Ticket To Ride (Karaoke)", - "id": "SuSzX4EHlH8" - }, - { - "title": "Mark Chesnutt - It Sure Is Monday (Karaoke)", - "id": "DgZIMGcuN4o" - }, - { - "title": "Mac Wiseman - Dust On The Bible (Karaoke Vocal Guide)", - "id": "T3UH04OdErQ" - }, - { - "title": "Larry Gatlin - Love Is Just A Game (Karaoke)", - "id": "9EC8uow9bcA" - }, - { - "title": "Mickey Gilley - That's All That Matters (Karaoke)", - "id": "lEBPF1ulpGE" - }, - { - "title": "Mickey Gilley - Put Your Dreams Away (Karaoke)", - "id": "wq2LadLZjHU" - }, - { - "title": "Mickey Gilley - Lonely Nights (Karaoke)", - "id": "rVQHGMgZYDM" - }, - { - "title": "Mark Chesnutt - Rollin' With The Flow (Karaoke)", - "id": "PM-vBy0A434" - }, - { - "title": "Aaron Tippin - You've Got To Stand For Something (Karaoke)", - "id": "SwLQhUgzSE4" - }, - { - "title": "Mac Davis - Watchin' Scotty Grow (Karaoke)", - "id": "Hp6foJcbsWw" - }, - { - "title": "Lee Dorsey - Ya Ya (Karaoke)", - "id": "Ab62sAcmVVo" - }, - { - "title": "The Beatles - The Long And Winding Road (Karaoke)", - "id": "J0-Wkk5s8b4" - }, - { - "title": "Beatles - She Came In Thru The Bathroom Window (Karaoke EZ Sing)", - "id": "IbwZQEsReWY" - }, - { - "title": "The Isley Brothers - That Lady (Part 1) (Karaoke Vocal Guide)", - "id": "0rMRLQEROEA" - }, - { - "title": "The Isley Brothers - The Pride (Karaoke Vocal Guide)", - "id": "nZTxRLWJHfs" - }, - { - "title": "The Beatles - With A Little Help From My Friends (Karaoke)", - "id": "ciJuFURHlGY" - }, - { - "title": "The Isley Brothers - Fight The Power (Karaoke Vocal Guide)", - "id": "Vc7V3Oa1VwA" - }, - { - "title": "Rick James - Super Freak (Karaoke)", - "id": "FywHX2qW9ho" - }, - { - "title": "Otis Redding - Try A Little Tenderness (Karaoke)", - "id": "z6GD5NBlb9g" - }, - { - "title": "Ed Townsend - For Your Love (Karaoke Vocal Guide)", - "id": "VLUx5jZ3Y4s" - }, - { - "title": "Earl-Jean - I'm Into Something Good (Karaoke)", - "id": "1n5ftNayOSU" - }, - { - "title": "The Beatles - We Can Work It Out (Karaoke)", - "id": "GzKsh8RTdHk" - }, - { - "title": "Earl Thomas Conley - Holding Her And Loving You (Karaoke)", - "id": "e4Aaj8ny9N8" - }, - { - "title": "The Drifters - Some Kind Of Wonderful (Karaoke)", - "id": "wrWabVR7JU0" - }, - { - "title": "The Drifters - On Broadway (Karaoke)", - "id": "BQV1gXWjQwU" - }, - { - "title": "Doug Stone - These Lips Don't Know How To Say Goodbye (Karaoke)", - "id": "OBeW06psAlo" - }, - { - "title": "Dottie West - Last Time I Saw Him (Karaoke)", - "id": "JDMciZTP4TM" - }, - { - "title": "Dottie West - Here Comes My Baby (Karaoke)", - "id": "zpaoj8cgC10" - }, - { - "title": "Don Gibson - Who Cares (Karaoke Vocal Guide)", - "id": "tMmELmk5KiM" - }, - { - "title": "Don Gibson - Too Soon To Know (Karaoke)", - "id": "l1UO84LRaIo" - }, - { - "title": "Don Gibson - Sweet Dreams (Karaoke Vocal Guide)", - "id": "BbiJGnycolE" - }, - { - "title": "Don Gibson - Oh, Lonesome Me (Karaoke)", - "id": "2XN9SIojNFI" - }, - { - "title": "Don Gibson - Lonesome Number One (Karaoke Vocal Guide)", - "id": "07VK3Ac9xLo" - }, - { - "title": "Don Gibson - I Can Mend Your Broken Heart (Karaoke Vocal Guide)", - "id": "bnad2lxnK1E" - }, - { - "title": "Don Gibson - Give Myself A Party (Karaoke Vocal Guide)", - "id": "5hQravHWtNw" - }, - { - "title": "Don Gibson - Don't Tell Me Your Troubles (Karaoke Vocal Guide)", - "id": "_h7nC6bE3v4" - }, - { - "title": "Don Gibson - Blue Blue Day (Karaoke)", - "id": "tEqIkfKVMG4" - }, - { - "title": "The Contours - Do You Love Me (Karaoke)", - "id": "X-ZjUugi4S0" - }, - { - "title": "Connie Smith - Just One Time (Karaoke)", - "id": "4h2yNQK4Quw" - }, - { - "title": "Confederate Railroad - Jesus And Mama (Karaoke)", - "id": "DIxkBpWYF0M" - }, - { - "title": "Ronnie Milsap - I'd Be A Legend In My Time (Karaoke)", - "id": "ksFEgYlJQTQ" - }, - { - "title": "Cheap Trick - Surrender (Karaoke)", - "id": "srO3-00rRco" - }, - { - "title": "Cheap Trick - If You Want My Love (Karaoke)", - "id": "-bHBLfJ27Tw" - }, - { - "title": "Charlie Rich - A Very Special Love Song (Karaoke)", - "id": "Z7bg28XoXhE" - }, - { - "title": "Charlie Rich - My Elusive Dreams (Karaoke)", - "id": "ghJUsShmnLg" - }, - { - "title": "Charley Pride - Someone Loves You Honey (Karaoke Vocal Guide)", - "id": "SbErN0WslnU" - }, - { - "title": "Charley Pride - Is Anybody Goin' To San Antone (Karaoke)", - "id": "6ze-Mfmj4Ec" - }, - { - "title": "Charley Pride - I'm Just Me (Karaoke)", - "id": "Svwx9xzcYt0" - }, - { - "title": "Carole King - I Feel The Earth Move (Karaoke)", - "id": "R1s6KV23agI" - }, - { - "title": "Burl Ives - Funny Way Of Laughin' (Karaoke Vocal Guide)", - "id": "xnEYIE_JmEs" - }, - { - "title": "Bruce Channel - Hey! Baby (Karaoke)", - "id": "Rm2VGkWVoTk" - }, - { - "title": "Brooks & Dunn - Why Would I Say Goodbye (Karaoke)", - "id": "jdG68jQfz4M" - }, - { - "title": "Brenda Lee - Too Many Rivers (Karaoke)", - "id": "DZOhTl0EVdk" - }, - { - "title": "Bread - It Don't Matter To Me (Karaoke)", - "id": "TQCezk1JsDk" - }, - { - "title": "Boyz II Men - Water Runs Dry (Karaoke)", - "id": "oZ8H5sik8YE" - }, - { - "title": "Boyz II Men - I'll Make Love To You (Karaoke)", - "id": "rqVhLII1YHE" - }, - { - "title": "Bobby Vee - Take Good Care Of My Baby (Karaoke)", - "id": "vknbuvGqnRE" - }, - { - "title": "Bobby Fuller Four - I Fought The Law (Karaoke Vocal Guide)", - "id": "6CoCD2toUb4" - }, - { - "title": "Bobby Bare - Come Sundown (Karaoke)", - "id": "869A9owVKdc" - }, - { - "title": "Blue Oyster Cult - Don't Fear The Reaper (Karaoke Vocal Guide)", - "id": "8FhZJATo9qw" - }, - { - "title": "Blue Oyster Cult - Burnin' For You (Karaoke)", - "id": "aynIHivULDE" - }, - { - "title": "Blake Shelton - The Dreamer (Karaoke Vocal Guide)", - "id": "bM7dMQtk98A" - }, - { - "title": "Billy Gilman - There's A Hero (Karaoke Vocal Guide)", - "id": "zXzWqp3m2ww" - }, - { - "title": "Steve Wariner - The Tips Of My Fingers (Karaoke)", - "id": "SKS4Jx0zDV4" - }, - { - "title": "Jean Shepard - Slippin' Away (Karaoke)", - "id": "QpOa0LRJvF4" - }, - { - "title": "Connie Smith - Nobody But A Fool Would Love You (Karaoke Vocal Guide)", - "id": "65YqUExXlSc" - }, - { - "title": "Mo Pitney - Country (Karaoke)", - "id": "FXntBryqSek" - }, - { - "title": "Porter Wagoner - The Cold Hard Facts Of Life (Karaoke)", - "id": "TIMYEoA4RwM" - }, - { - "title": "Roy Drusky - Tip Of My Fingers (Karaoke)", - "id": "sBFdy3LLN1s" - }, - { - "title": "Bill Anderson, Jan Howard - Dis-Satisfied (Karaoke Vocal Guide)", - "id": "izNk2kpQmH0" - }, - { - "title": "Bill Anderson - If You Can Live With It (I Can Live Without It) (Karaoke Vocal Guide)", - "id": "rH8bdR1TLTA" - }, - { - "title": "Bill Anderson - I Get The Fever (Karaoke Vocal Guide)", - "id": "-K7sTW88ruA" - }, - { - "title": "Bill Anderson - Happy State Of Mind (Karaoke Vocal Guide)", - "id": "5D9K98iHYVE" - }, - { - "title": "Barbra Streisand - The Way We Were (Karaoke)", - "id": "GIy6UKUTonI" - }, - { - "title": "Bachman-Turner Overdrive - You Ain't Seen Nothing Yet (Karaoke)", - "id": "0AXKlim53Yg" - }, - { - "title": "Bachman-Turner Overdrive - Take It Like A Man (Karaoke Vocal Guide)", - "id": "KgCrcc-BQGA" - }, - { - "title": "Bachman-Turner Overdrive - Hold Back The Water (Karaoke Vocal Guide)", - "id": "fsaohS7tWcI" - }, - { - "title": "Bachman-Turner Overdrive - Hey You (Karaoke)", - "id": "sBbKWTmGkR8" - }, - { - "title": "Bachman-Turner Overdrive - Give It Time (Karaoke Vocal Guide)", - "id": "XqyJVtAbbRs" - }, - { - "title": "Bachman-Turner Overdrive - Lookin' Out For #1 (Karaoke)", - "id": "_Tu3U5QMAwA" - }, - { - "title": "Bachman-Turner Overdrive - Not Fragile (Karaoke)", - "id": "Yacf91YA2CA" - }, - { - "title": "Doug Supernaw - What'll You Do About Me (Karaoke)", - "id": "BhX-T5W5_3g" - }, - { - "title": "Bachman-Turner Overdrive - Thank You For The Feelin' (Karaoke)", - "id": "0STDh32jCHk" - }, - { - "title": "Bachman-Turner Overdrive - Gimme Your Money Please (Karaoke Vocal Guide)", - "id": "JNH8L4yWd1g" - }, - { - "title": "Tom T. Hall - Deal (Karaoke)", - "id": "b6bvlX5d5aM" - }, - { - "title": "TLC - Red Light Special (Karaoke)", - "id": "NyBzlbUnuO4" - }, - { - "title": "TLC - Diggin' On You (Karaoke)", - "id": "5ZI5oOLW7Gs" - }, - { - "title": "The Beatles - Ticket To Ride (Karaoke)", - "id": "NIMTNxde9Ic" - }, - { - "title": "The Beatles - Strawberry Fields Forever (Karaoke)", - "id": "RwcpToNvQTY" - }, - { - "title": "The Beatles - Sgt. Pepper's Lonely Hearts Club Band (Karaoke)", - "id": "t4vL8z0TgIE" - }, - { - "title": "The Beatles - Rocky Raccoon (Karaoke Vocal Guide)", - "id": "QN0V0vcGmEg" - }, - { - "title": "The Beatles - Penny Lane (Karaoke)", - "id": "SH8mJTSPu3s" - }, - { - "title": "The Beatles - Paperback Writer (Karaoke Vocal Guide)", - "id": "v8inm2koyzQ" - }, - { - "title": "The Beatles - Nowhere Man (Karaoke Vocal Guide)", - "id": "bzhMyksxo8w" - }, - { - "title": "The Beatles - Lucy In The Sky With Diamonds (Karaoke)", - "id": "jr98mDwAFc0" - }, - { - "title": "The Beatles - Lady Madonna (Karaoke)", - "id": "JrxZHi46v-s" - }, - { - "title": "George McCrae - Rock Your Baby (Karaoke)", - "id": "4PMA3_elIuA" - }, - { - "title": "The Beatles - I Am The Walrus (Karaoke Vocal Guide)", - "id": "tUpu--L6YyQ" - }, - { - "title": "Good Charlotte - The Young & The Hopeless (Karaoke Vocal Guide)", - "id": "eEVdvmQ9UUU" - }, - { - "title": "Brooks & Dunn - Play Something Country (Karaoke Vocal Guide)", - "id": "5l_K00akaxk" - }, - { - "title": "Brooks & Dunn - She's Not The Cheatin' Kind (Karaoke)", - "id": "nTBHyYs2sWc" - }, - { - "title": "The Beatles - Help! (Karaoke)", - "id": "XEEafJhXrdA" - }, - { - "title": "The Beatles - Got To Get You Into My Life (Karaoke)", - "id": "RCWy6BtBNGA" - }, - { - "title": "The Beatles - Get Back (Karaoke)", - "id": "IGvnMfXA00Y" - }, - { - "title": "The Beatles - Eleanor Rigby (Karaoke)", - "id": "vQXr-PoNhwQ" - }, - { - "title": "The Beatles - Eight Days A Week (Karaoke)", - "id": "aM-E4dZTmBE" - }, - { - "title": "The Beatles - Day Tripper (Karaoke)", - "id": "HO5PwIidRhU" - }, - { - "title": "The Beatles - Come Together (Karaoke)", - "id": "O1d8uF77cB0" - }, - { - "title": "The Beatles - Back In The USSR (Karaoke)", - "id": "QkFaURLl9yQ" - }, - { - "title": "ABBA - Knowing Me Knowing You (Karaoke)", - "id": "buvs48JmXkA" - }, - { - "title": "Aaron Tippin - Whole Lotta Love On The Line (Karaoke)", - "id": "paFh0XQwZHM" - }, - { - "title": "Aaron Tippin - There Ain't Nothin' Wrong With The Radio (Karaoke)", - "id": "CNiFgOLO2UM" - }, - { - "title": "Good Charlotte - Lifestyles Of The Rich & Famous (Karaoke Vocal Guide)", - "id": "RVapFC82sY4" - }, - { - "title": "Gilbert O'Sullivan - Alone Again (Naturally) (Karaoke)", - "id": "160bH_Bf7Z8" - }, - { - "title": "TLC - Creep (Karaoke)", - "id": "kzEts4A9oTU" - }, - { - "title": "Tim Rushlow - She Misses Him (Karaoke Vocal Guide)", - "id": "YvYpKvpDvqs" - }, - { - "title": "Tim McGraw - Suspicions (Karaoke)", - "id": "vkyfnSDab94" - }, - { - "title": "Sonny James - Heaven Says Hello (Karaoke)", - "id": "dv7y2gcDvGE" - }, - { - "title": "Sonny James - Behind The Tear (Karaoke)", - "id": "fJ_lYcE2eCU" - }, - { - "title": "Captain & Tennille - Shop Around (Karaoke)", - "id": "g_mn-uq0_bI" - }, - { - "title": "Kim Carnes - More Love (Karaoke)", - "id": "XmHxwzzHJhg" - }, - { - "title": "Alabama - You've Got The Touch (Karaoke)", - "id": "TO-LVDqt9Qc" - }, - { - "title": "Alabama - Mountain Music (Karaoke)", - "id": "3dImOz7ctSM" - }, - { - "title": "Alabama - My Home's In Alabama (Karaoke)", - "id": "8RGNnKZfouU" - }, - { - "title": "Alabama - She's Got That Look In Her Eyes (Karaoke)", - "id": "wRO6a3Gukq0" - }, - { - "title": "Alabama - Feels So Right (Karaoke)", - "id": "6Wxc-oDjMdU" - }, - { - "title": "Gary Allan - Man Of Me (Karaoke)", - "id": "5p6st4tgAZM" - }, - { - "title": "Southern Gospel - What A Day That Will Be (Karaoke)", - "id": "YI4DMtlmg9w" - }, - { - "title": "Patsy Cline - Always (Karaoke)", - "id": "jHfUA7dINRI" - }, - { - "title": "Phil Collins - In The Air Tonight (Karaoke)", - "id": "sgfns-Vbb9Q" - }, - { - "title": "Kentucky Headhunters - Oh Lonesome Me (Karaoke)", - "id": "5gDnJw8tIr8" - }, - { - "title": "George Jones - He Stopped Loving Her Today (Karaoke)", - "id": "_puPCHHxnCg" - }, - { - "title": "Merle Haggard - Are The Good Times Really Over (Karaoke Guide Vocal)", - "id": "i6N8BpEXR7g" - }, - { - "title": "George Jones - 50,000 Names (Karaoke)", - "id": "mrPh2E1yq5A" - }, - { - "title": "Merle Haggard - Mama Tried (Karaoke)", - "id": "sTxR-C6oZGw" - }, - { - "title": "Eddie Rabbit - I Love A Rainy Night (Karaoke)", - "id": "WhZxXNjy5IM" - }, - { - "title": "Justin Bieber - One Less Lonely Girl (Karaoke)", - "id": "g0X6swJm-8Y" - }, - { - "title": "Jonas Brothers - Burnin' Up (Karaoke)", - "id": "-ajN8uDcGKI" - }, - { - "title": "The Beatles - Drive My Car (Karaoke)", - "id": "rtvcI1KI5aw" - }, - { - "title": "Phil Collins - Don't Lose My Number (Karaoke)", - "id": "igfvs8AhWRM" - }, - { - "title": "Atlanta Rhythm Section - Champagne Jam (Karaoke)", - "id": "b5tpQIbVlFA" - }, - { - "title": "Alabama, K.T. Oslin - Face To Face (Karaoke)", - "id": "yycDCa3F-3Y" - }, - { - "title": "Roy Drusky - All My Hard Times (Karaoke)", - "id": "OvntZxgeuEc" - }, - { - "title": "Porter Wagoner - Misery Loves Company (Karaoke)", - "id": "30p4DuDG-7g" - }, - { - "title": "Blues Traveler - Optimistic Thought (Karaoke)", - "id": "kjF7zoA4LDs" - }, - { - "title": "Crabb Family - The Walk (Karaoke)", - "id": "KccjVALr574" - }, - { - "title": "LeAnn Rimes - Nothin' Better To Do (Karaoke)", - "id": "kfCTofp4Fdo" - }, - { - "title": "Junior Brown - I Hung It Up (Karaoke)", - "id": "-PgsvbWb6_o" - }, - { - "title": "Tim McGraw - Still (Karaoke)", - "id": "hXThcPKRv_A" - }, - { - "title": "The Beatles - Let It Be (Karaoke)", - "id": "cXAd_-IgR_s" - }, - { - "title": "Alabama - Lady Down On Love (Karaoke)", - "id": "SUT7ztJ14eA" - }, - { - "title": "Debby Boone - You Light Up My Life (Karaoke)", - "id": "I3o402DChc0" - }, - { - "title": "Billy Joe Royal - Down In The Boondocks (Karaoke)", - "id": "SnYyq0bEFcI" - }, - { - "title": "Alabama - There's No Way (Karaoke)", - "id": "7oPrwose5bY" - }, - { - "title": "Ray Stevens - Ahab The Arab (Karaoke)", - "id": "aFRLnlhWX_8" - }, - { - "title": "Alicia Bridges - I Love The Nightlife (Karaoke)", - "id": "xRPDeBTgvm0" - }, - { - "title": "Alabama - Tennessee River (Karaoke)", - "id": "oSXzYUkCjhk" - }, - { - "title": "Atlanta Rhythm Section - Georgia Rhythm (Karaoke)", - "id": "NcrEOtArehI" - }, - { - "title": "Starbuck - Moonlight Feels Right (Karaoke)", - "id": "_CP1y8ZKua4" - }, - { - "title": "Tanya Tucker - Between The Two Of Them (Karaoke)", - "id": "srQotfLzEoc" - }, - { - "title": "The Tokens - The Lion Sleeps Tonight (Karaoke)", - "id": "Cn56cdLK73o" - }, - { - "title": "Legally Blonde - Omigod You Guys (Karaoke EZ Sing)", - "id": "jKzF6yNc8AI" - }, - { - "title": "ABBA - Dancing Queen (Karaoke)", - "id": "qKrOvIROJ7k" - }, - { - "title": "ABBA - I Do, I Do, I Do, I Do, I Do (Karaoke)", - "id": "GnK_GAqH1J4" - }, - { - "title": "The Beatles - When I'm Sixty-Four (Karaoke)", - "id": "gmhlt0RpA0o" - }, - { - "title": "Blue Swede - Hooked On A Feeling (Karaoke)", - "id": "4XwgXADI6QY" - }, - { - "title": "Hank Williams - Your Cheatin' Heart (Karaoke)", - "id": "T8TUAq8aD14" - }, - { - "title": "Lady Gaga - Bad Romance (Karaoke)", - "id": "Y-lQavtOUxE" - }, - { - "title": "Luis Fonsi, Daddy Yankee, Justin Bieber - Despacito (Karaoke)", - "id": "iD1xDadDeq4" - }, - { - "title": "Brooks & Dunn - Boot Scootin' Boogie (Karaoke)", - "id": "_kvchbI1Hp0" - }, - { - "title": "The Beatles - All You Need Is Love (Karaoke)", - "id": "KnptZcAR920" - }, - { - "title": "The Beatles - Hey Jude (Karaoke)", - "id": "LsA9WdsBd6k" - }, - { - "title": "ABBA - Waterloo (Karaoke)", - "id": "LHAc7FJlnaM" - }, - { - "title": "ABBA - S. O. S. (Karaoke)", - "id": "tSEdqsVrd4I" - }, - { - "title": "John Anderson - I Wish I Could Have Been There (Karaoke)", - "id": "TMSL4qaV3aU" - }, - { - "title": "Dinah Shore - Sentimental Journey (Karaoke)", - "id": "gQe6jMhgh58" - }, - { - "title": "Mitch Miller - When The Red, Red Robin Comes Bob-Bob-Bobbin' Along (Karaoke)", - "id": "6_bCU0TgJGU" - }, - { - "title": "Hank Williams Jr. - All Jokes Aside (Karaoke)", - "id": "z7Z6ipvIGs4" - }, - { - "title": "Tony Bennett - Rags To Riches (Karaoke)", - "id": "-PdTfERqqTo" - }, - { - "title": "Chad Brock, Hank Williams Jr., George Jones - A Country Boy Can Survive (Y2K Version) (Karaoke)", - "id": "70F8mrRoCKk" - }, - { - "title": "Hank Williams Jr. - All My Rowdy Friends Are Coming Over Tonight (Karaoke)", - "id": "LiuucLTIR3U" - }, - { - "title": "Hank Williams Jr. - The American Dream (Karaoke)", - "id": "Lw39hNWqu_U" - }, - { - "title": "Hank Williams Jr. - America Will Survive (Karaoke)", - "id": "-7o_pwyiXM8" - }, - { - "title": "Juan Luis Guerra - Que Me Des Tu Carino (Karaoke)", - "id": "TnCDypikCJk" - }, - { - "title": "Selena - Yo Me Voy (Karaoke)", - "id": "fWLPiK49G78" - }, - { - "title": "Juan Luis Guerra - Visa Para Un Sueno (Karaoke)", - "id": "SnGOo-Zz3hk" - }, - { - "title": "Hank Williams - Cool Water (Karaoke)", - "id": "UTbtiwW2aa4" - }, - { - "title": "American Patriotic - Battle Hymn Of The Republic (Karaoke)", - "id": "YIMEpNjtSLo" - }, - { - "title": "Martina McBride - Ride (Karaoke)", - "id": "5mcMJU1-EI4" - }, - { - "title": "Maroon 5 - It Was Always You (Karaoke)", - "id": "-enfYJFkJbY" - }, - { - "title": "Maroon 5 - This Summer's Gonna Hurt like a Motherf---er (explicit) (Karaoke)", - "id": "zKpbKI2Scbo" - }, - { - "title": "Nicki Minaj - Va Va Voom (Karaoke)", - "id": "imztN5Hy8Uk" - }, - { - "title": "Ellie Goulding - Guns And Horses (Karaoke)", - "id": "oVGC96F5ybk" - }, - { - "title": "Stevie Nicks - Rooms On Fire (Karaoke)", - "id": "xj540ql2OmE" - }, - { - "title": "Ted Lewis - Baby Face (Karaoke)", - "id": "mT3pbskHoaQ" - }, - { - "title": "Ellie Goulding, Tinie Tempah - Hanging On (Karaoke)", - "id": "XtleHLjL6Yg" - }, - { - "title": "Maroon 5 - Daylight (Karaoke)", - "id": "2R0jmXLXUpg" - }, - { - "title": "Nino Tempo, April Stevens - Deep Purple (Karaoke)", - "id": "4DcmresImqY" - }, - { - "title": "Nicki Minaj - Pills N Potions (Karaoke)", - "id": "z1mVU2fIC2g" - }, - { - "title": "John Denver - Shanghai Breezes (Karaoke)", - "id": "b6qNUE8bJgI" - }, - { - "title": "Stevie Nicks - Planets of the Universe (Karaoke)", - "id": "V2O8MsL9IvM" - }, - { - "title": "Bush - Warm Machine (Karaoke)", - "id": "8irPPuxlm1k" - }, - { - "title": "Gary Numan - Devious (Karaoke)", - "id": "7UHHa2hj2sQ" - }, - { - "title": "REO Speedwagon - Keep The Fire Burning (Karaoke)", - "id": "9Z5OCV2a4Zg" - }, - { - "title": "Norah Jones and Willie Nelson - Wurlitzer Prize (Karaoke EZ Sing)", - "id": "CB8-5TQ7QHk" - }, - { - "title": "The Who - The Seeker (Karaoke)", - "id": "UA0_c0ST0YI" - }, - { - "title": "Machine Gun Kelly feat. Ester Dean - Invincible (explicit) Karaoke)", - "id": "YpYbmQoZgjU" - }, - { - "title": "Maroon 5 - Harder To Breathe (explicit version) (Karaoke)", - "id": "f0O1Uu3szC0" - }, - { - "title": "Gary Numan - This Wreckage (Karaoke EZ Sing)", - "id": "U_P7ehQKN0I" - }, - { - "title": "Patsy Cline - Someday You'll Want Me To Want You (Karaoke)", - "id": "G7U6t3oYI2I" - }, - { - "title": "Bush - Headful Of Ghosts (Karaoke)", - "id": "axa971Oqq6g" - }, - { - "title": "Bush - People That We Love (Speed Kills) (Karaoke)", - "id": "Rh1sdO4gU0s" - }, - { - "title": "John Anderson - Small Town (Karaoke)", - "id": "qljqnS8buHk" - }, - { - "title": "Dwight Yoakam - Back Of Your Hand (Karaoke)", - "id": "aeZxbKmzxy0" - }, - { - "title": "T. Rex - Get It On (Bang A Gong) (Karaoke)", - "id": "HC77CgwPz8s" - }, - { - "title": "The Beatles - While My Guitar Gently Weeps (Karaoke)", - "id": "icz6IxLum7o" - }, - { - "title": "Ellie Goulding - Explosions (Karaoke)", - "id": "7sOVIKaJT0o" - }, - { - "title": "Hank Williams Jr. - Young Country (Karaoke)", - "id": "58V0aQIY7O8" - }, - { - "title": "Hank Williams Jr. - Women I've Never Had (Karaoke)", - "id": "MAAzTlH2R_M" - }, - { - "title": "Hank Williams Jr. - Whiskey Bent And Hell Bound", - "id": "8VA1xkuSZJc" - }, - { - "title": "Hank Williams Jr. - Where Would We Be Without Yankees (Karaoke)", - "id": "y7haWN3i1oQ" - }, - { - "title": "Hank Williams Jr. - This Ain't Dallas (Karaoke)", - "id": "OmnTszHoAek" - }, - { - "title": "Lisa Brokop - Big Picture (Karaoke)", - "id": "7b0LEz4_-3g" - }, - { - "title": "Crosby, Stills And Nash - Wasted On The Way (Karaoke)", - "id": "xlAU5hWyNEU" - }, - { - "title": "Waylon Jennings - Shine (Karaoke)", - "id": "e3s9zU3_WHc" - }, - { - "title": "David Essex - Silver Dream Machine (Karaoke)", - "id": "6N7dSFf63h0" - }, - { - "title": "50 Cent - Just A Little Bit (Karaoke)", - "id": "j1wdrmFKceg" - }, - { - "title": "Brad Paisley - I'm Gonna Miss Her (The Fishin' Song) (Karaoke)", - "id": "3-kM7I382-0" - }, - { - "title": "Waylon Jennings - Bob Wills Is Still The King (live version) (Karaoke)", - "id": "8_cRQU6UfY8" - }, - { - "title": "Crosby, Stills, Nash And Young - Teach Your Children (Karaoke)", - "id": "AcQ8s-tvy5I" - }, - { - "title": "The Who - Pinball Wizard (Karaoke)", - "id": "G2qJrfcft04" - }, - { - "title": "Nicki Minaj - Pills N Potions (Explicit) (Karaoke)", - "id": "LpES4qZNMnY" - }, - { - "title": "Hank Williams Jr. - They All Want To Go Wild (And I Want To Go Home) (Karaoke)", - "id": "rvum7FxupGI" - }, - { - "title": "Hank Williams Jr. - Texas Women (Karaoke)", - "id": "9oWD4LpxbWg" - }, - { - "title": "Hank Williams Jr. - Naked Women And Beer (Karaoke)", - "id": "p-99Q9bHxVE" - }, - { - "title": "Hank Williams Jr. - Man Of Steel (Karaoke)", - "id": "0uP938w6W1c" - }, - { - "title": "Junior Brown - Party Lights (Karaoke)", - "id": "xEAJzhANbhQ" - }, - { - "title": "Waylon Jennings - Can't You See (Karaoke)", - "id": "OfNoO15FY4w" - }, - { - "title": "50 Cent - Candy Shop (Karaoke)", - "id": "g5MNMfzP_Qc" - }, - { - "title": "Crosby, Stills & Nash - Just A Song Before I Go (Karaoke)", - "id": "w4Lp8R05Y2c" - }, - { - "title": "Waylon Jennings - Rainy Day Woman (Karaoke)", - "id": "OCViZj06IiM" - }, - { - "title": "Tom Jones - Black Betty (Karaoke)", - "id": "mAG7CbGABjc" - }, - { - "title": "The Beatles - Here Comes The Sun (Karaoke)", - "id": "EE0J8D3kkLg" - }, - { - "title": "Hank Williams Jr. - I'm For Love (Karaoke)", - "id": "6oImgKJdQ2U" - }, - { - "title": "Stevie Nicks - If You Ever Did Believe (Karaoke)", - "id": "CYh76ykHvN0" - }, - { - "title": "Hank Williams Jr. - If Heaven Ain't A Lot Like Dixie (Karaoke)", - "id": "iHiDo7i1mHY" - }, - { - "title": "Hank Williams Jr. - Eleven Roses (Karaoke)", - "id": "2Wh3B4e-tHI" - }, - { - "title": "Steve Winwood - Valerie (Karaoke EZ Sing)", - "id": "xmgvWrebp7A" - }, - { - "title": "Hank Williams Jr. - I'd Love To Knock The Hell Out Of You (Karaoke)", - "id": "P8odzaZFJJ8" - }, - { - "title": "Hank Williams Jr. - If It Will It Will (Karaoke)", - "id": "J6rtZAX35QE" - }, - { - "title": "The Who - Gettin' In Tune (Karaoke)", - "id": "bTG12H43B6A" - }, - { - "title": "Steve Winwood - While You See A Chance (Karaoke)", - "id": "JMt-C72PdiU" - }, - { - "title": "Type O Negative - I Don't Wanna Be Me (Karaoke)", - "id": "FLXpZ8JEwqk" - }, - { - "title": "Sawyer Brown - Did It For Love (Karaoke)", - "id": "zUmiezj8T88" - }, - { - "title": "Ellie Goulding feat. Tinie Tempah - Hanging On (Explicit) (Karaoke)", - "id": "4L3ONNnvfok" - }, - { - "title": "Paula Abdul - Opposites Attract (Karaoke)", - "id": "SBWiq-1ZVs8" - }, - { - "title": "Dixie Chicks - Silent House (Karaoke)", - "id": "4XScv2335m4" - }, - { - "title": "Stevie Nicks & Don Henley - Leather And Lace (Karaoke)", - "id": "Sh391KilFGc" - }, - { - "title": "Stevie Nicks - Edge Of Seventeen (Karaoke)", - "id": "O3RuKPr4TAk" - }, - { - "title": "Hank Williams Jr. - Don't Give Us A Reason (Karaoke)", - "id": "ZQKfyc7fmIE" - }, - { - "title": "Hank Williams Jr. - Dixie On My Mind (Karaoke)", - "id": "NdzUM3eOPQ4" - }, - { - "title": "Hank Williams Jr. - Country State Of Mind (Karaoke)", - "id": "iVBx85vqbCQ" - }, - { - "title": "Alan Jackson - The Blues Man (Karaoke)", - "id": "D9eNhqzINwU" - }, - { - "title": "Hank Williams Jr. - Attitude Adjustment (Karaoke)", - "id": "hc8VdQPPxtg" - }, - { - "title": "Elton John - Don't Let The Sun Go Down On Me (Karaoke)", - "id": "lGRQFeVs-dg" - }, - { - "title": "Nu Shooz - I Can't Wait (Karaoke)", - "id": "RZdLwicDwn4" - }, - { - "title": "Type O Negative - My Girlfriend's Girlfriend (Karaoke)", - "id": "d8xBOZ3feEI" - }, - { - "title": "Portishead - Glory Box (Karaoke EZ Sing)", - "id": "35HJChbE-E4" - }, - { - "title": "The Who - I'm Free (Karaoke)", - "id": "n87cET1Ez9M" - }, - { - "title": "The Who - Tommy Can You Hear Me (Karaoke)", - "id": "tTj8fGSZuv8" - }, - { - "title": "The Who - We're Not Gonna Take It (Karaoke)", - "id": "UvfmDZQPa0w" - }, - { - "title": "The Who - Welcome (Tommy Soundtrack) (Karaoke)", - "id": "GneZqCXSk0U" - }, - { - "title": "Hank Williams Jr. - Family Tradition (Karaoke)", - "id": "Q81jhFuAqfI" - }, - { - "title": "Gary Allan - Tough Little Boys (Karaoke)", - "id": "LGTv3N_A9AI" - }, - { - "title": "Busta Rhymes ftg. Linkin Park - We Made It (Karaoke)", - "id": "XWZIHmoPNwQ" - }, - { - "title": "Crosby, Stills & Nash - Long Time Gone (Karaoke)", - "id": "UGiw3qOvdn0" - }, - { - "title": "The Who - Baba O'Reilly (Teenage Wasteland) (Karaoke)", - "id": "ayJHaSoiMSE" - }, - { - "title": "The Who - Won't Get Fooled Again (Karaoke)", - "id": "jFcgtqDh9no" - }, - { - "title": "Kellie Pickler - Someone Somewhere Tonight (Karaoke EZ Sing)", - "id": "Mn6BeP9b-d4" - }, - { - "title": "LeAnn Rimes - You Light Up My Life (Karaoke)", - "id": "tPxlOP1xOZ8" - }, - { - "title": "The Marshall Tucker Band - Can't You See (Karaoke)", - "id": "WSdnt8TipI4" - }, - { - "title": "Brooks & Dunn - Cowgirls Don't Cry (Karaoke)", - "id": "V2971nzz_2w" - }, - { - "title": "Alabama - T. L. C. A. S. A P. (Karaoke)", - "id": "KFa0yWAsyuc" - }, - { - "title": "Johnny Cash & June Carter Cash - If I Were A Carpenter (Karaoke)", - "id": "CBg4M7ws2mU" - }, - { - "title": "Kelly Price - Not My Daddy (Karaoke)", - "id": "MtGHRY-xRGs" - }, - { - "title": "Ellie Goulding - Beating Heart (Karaoke)", - "id": "H4yWpojWe5E" - }, - { - "title": "Pure Prairie League - Let Me Love You Tonight (Karaoke)", - "id": "A9r0GdRTpiY" - }, - { - "title": "The Marshall Tucker Band - Searchin' For A Rainbow (Karaoke)", - "id": "vPxO8RU24Ag" - }, - { - "title": "Paul Overstreet - Ball And Chain (Karaoke)", - "id": "WyLV9wfnVic" - }, - { - "title": "Machine Gun Kelly, Hailee Steinfeld - At My Best (Karaoke)", - "id": "-XGEt7E_iak" - }, - { - "title": "Ronnie McDowell - Older Women (Karaoke)", - "id": "nTpwOPh62GA" - }, - { - "title": "Jedd Hughes - High Lonesome (Karaoke)", - "id": "m-xeavWMmnM" - }, - { - "title": "Ellie Goulding - Your Song (Karaoke)", - "id": "-DzJl_T79KM" - }, - { - "title": "Crosby, Stills, Nash And Young - Our House (Karaoke)", - "id": "Qbya6KG4xhg" - }, - { - "title": "John Anderson - Seminole Wind (Karaoke)", - "id": "bjbcF6KoPIE" - }, - { - "title": "Orianthi - Shut Up And Kiss Me (Karaoke)", - "id": "CxlRBL1KTbc" - }, - { - "title": "Carly Rae Jepsen - Curiosity (Karaoke)", - "id": "qIzDesS0wTw" - }, - { - "title": "Richard Marx - Straight From My Heart (Karaoke)", - "id": "aD1iSTPH9UI" - }, - { - "title": "George Strait - I Believe (Karaoke)", - "id": "SF8iND3Yo0s" - }, - { - "title": "Rod Stewart - Reason To Believe (Karaoke)", - "id": "10KT8KrHQdU" - }, - { - "title": "Noah Cyrus - Lonely (Karaoke)", - "id": "iwikXdeLUK0" - }, - { - "title": "David Nail - Red Light (Karaoke)", - "id": "DJtNmWdZj5E" - }, - { - "title": "Gold City - I Believe (Karaoke)", - "id": "HbdEK0F49Fk" - }, - { - "title": "Dolly Parton - Old Flames Can't Hold A Candle To You (Karaoke)", - "id": "yn304mTcfX0" - }, - { - "title": "Ariana Grande - Goodnight N Go (Karaoke)", - "id": "jp4q_p7evAg" - }, - { - "title": "Dolly Parton, Emmylou Harris, Linda Ronstadt - Those Memories Of You (Karaoke)", - "id": "XviXUWdBRuw" - }, - { - "title": "Carrie Underwood - I Told You So (Karaoke)", - "id": "8OrmQnmiPb8" - }, - { - "title": "21 Savage with Metro Boomin feat. Future - X", - "id": "mPafSaUfbyo" - }, - { - "title": "Collin Raye - In This Life (Karaoke)", - "id": "oP47RaMHlFc" - }, - { - "title": "Kenny Chesney - El Cerrito Place (Karaoke)", - "id": "y5v94DYV44s" - }, - { - "title": "Machine Gun Kelly, Ester Dean - Invincible (clean)", - "id": "n-pgNk40ckA" - }, - { - "title": "Winger - Easy Come Easy Go (Karaoke)", - "id": "A6GuPaHOynQ" - }, - { - "title": "Mudvayne - Some Assembly Required (Karaoke)", - "id": "b3Ecob_qGOE" - }, - { - "title": "The Bishops - You're Already Gonna Live Forever (Karaoke)", - "id": "zSj-w3QbuiA" - }, - { - "title": "Faron Young - It's Four In The Morning (Karaoke)", - "id": "u_ubZh9Usb8" - }, - { - "title": "The Bishops - Great Things (Karaoke)", - "id": "2VoRSWgMWmU" - }, - { - "title": "Saliva - Your Disease (Karaoke)", - "id": "C0iAvwN21Vk" - }, - { - "title": "Brad Paisley - Little Moments (Karaoke)", - "id": "ONEClTvwW_8" - }, - { - "title": "Loretta Lynn - They Don't Make 'Em Like My Daddy (Karaoke)", - "id": "RC9IUNBh9Dc" - }, - { - "title": "Bill Anderson - Don't She Look Good (Karaoke)", - "id": "gRPzuDTywYA" - }, - { - "title": "Brooks & Dunn - She Used To Be Mine (Karaoke)", - "id": "jon-oKYZvM8" - }, - { - "title": "Five For Fighting - Superman (Karaoke)", - "id": "xD-zLsVs0Dc" - }, - { - "title": "Jerry Lee Lewis - Another Place Another Time (Karaoke)", - "id": "twXc3j75alM" - }, - { - "title": "Elvis Presley - T-R-O-U-B-L-E (Karaoke)", - "id": "9nvVdnTOpm8" - }, - { - "title": "Ronnie McDowell - Wandering Eyes (Karaoke)", - "id": "Y0bKFGK4u1I" - }, - { - "title": "Porter Wagoner, Dolly Parton - Holding On To Nothin' (Karaoke)", - "id": "E5isPTAXMEk" - }, - { - "title": "Brooks & Dunn - Neon Moon (Karaoke)", - "id": "5tGbWoivQqs" - }, - { - "title": "Santana ftg. Michelle Branch - The Game Of Love (Karaoke)", - "id": "u4ezbSDNkOk" - }, - { - "title": "Steve Holy - Don't Make Me Beg (Karaoke)", - "id": "3-kdsg_GFpk" - }, - { - "title": "Brooks & Dunn - Little Miss Honky Tonk (Karaoke)", - "id": "TAn9V-d9ALo" - }, - { - "title": "Waylon Jennings - Are You Sure Hank Done It This Way (Karaoke)", - "id": "Mx3y6hxXcgU" - }, - { - "title": "Bring Me The Horizon - Avalanche (Karaoke)", - "id": "Mln-IhlZrfc" - }, - { - "title": "Mudvayne - Central Disposal (Karaoke)", - "id": "9vaMx0hK4ac" - }, - { - "title": "Charlie Puth - Attention (Karaoke)", - "id": "PZ6HOjiY9-0" - }, - { - "title": "EMF - Unbelievable (Karaoke)", - "id": "0CkzdMMms8E" - }, - { - "title": "The Human League - Human (Karaoke)", - "id": "nFD0EmTgl2w" - }, - { - "title": "Josh Thompson - Cold Beer With Your Name On It (Karaoke)", - "id": "frEWBYj7E1s" - }, - { - "title": "Reba McEntire - Turn On The Radio (Karaoke)", - "id": "eKIjpU9RpJE" - }, - { - "title": "Brooks & Dunn - Believe (Karaoke)", - "id": "HLpxmF6O-A8" - }, - { - "title": "Babyface - This Is For The Lover In You (Karaoke)", - "id": "IcGhfBGsg0M" - }, - { - "title": "Boyz II Men - 4 Seasons Of Loneliness (Karaoke)", - "id": "RRV7Ze_fTnE" - }, - { - "title": "Frank Sinatra - People Will Say We're In Love (Karaoke)", - "id": "yul6GD0z7yo" - }, - { - "title": "Maroon 5 - The Sun (Karaoke)", - "id": "ZXD_7dWuKKE" - }, - { - "title": "Britney Spears - My Prerogative (Karaoke)", - "id": "yT6B3Ozm_Sc" - }, - { - "title": "Maroon 5 - Not Coming Home (Karaoke)", - "id": "T6cgfT2VDss" - }, - { - "title": "Keith Urban - Got It Right This Time (Karaoke EZ Sing)", - "id": "1kFU05GE69Q" - }, - { - "title": "Maroon 5 - Not Falling Apart (Karaoke)", - "id": "CWDfUo8PbyE" - }, - { - "title": "Jason Aldean - Love Was Easy (Karaoke)", - "id": "iw3z5gJINZk" - }, - { - "title": "Bobby Brown - My Prerogative (Karaoke)", - "id": "L8oP7orArmk" - }, - { - "title": "Charlie Puth - Cheating On You (Karaoke)", - "id": "iGZ2Qqa2xek" - }, - { - "title": "Richard Marx - Can't Help Falling In Love (Karaoke)", - "id": "OPCh71E_Y74" - }, - { - "title": "Cyndi Lauper - Money Changes Everything (Karaoke)", - "id": "xIaBADR9ByQ" - }, - { - "title": "Nick & Simon - Rosanne (Karaoke)", - "id": "FkyqtXgOCvg" - }, - { - "title": "Years & Years - Traps (Karaoke)", - "id": "y6XgNAFSL40" - }, - { - "title": "The Strypes - Blue Collar Jane (Karaoke)", - "id": "FgAscB3psrs" - }, - { - "title": "Beastie Boys - Three Mc's And One DJ (Karaoke)", - "id": "esc3JpuNTNo" - }, - { - "title": "Ram Jam - Black Betty (Karaoke)", - "id": "Nkk9KKYTTaQ" - }, - { - "title": "Saint Motel - Cold Cold Man (Karaoke)", - "id": "RBnTcDaO6EU" - }, - { - "title": "Vigiland - Friday Night (Karaoke)", - "id": "V-Ankh72jhU" - }, - { - "title": "Yellowcard - Breathing (Karaoke)", - "id": "1uFt1OlrS5Q" - }, - { - "title": "Snow Patrol - Spitting Games (Karaoke)", - "id": "c4jE0OUKpoQ" - }, - { - "title": "Styx - Come Sail Away (Karaoke)", - "id": "jRzGbfZRD2c" - }, - { - "title": "Tom Petty And The Heartbreakers - Breakdown (Karaoke)", - "id": "2p9-dnkMAUU" - }, - { - "title": "T-Pain - Take Your Shirt Off (Karaoke)", - "id": "J_b0wdsuT7E" - }, - { - "title": "Bonnie Raitt - Not The Only One (Karaoke)", - "id": "0tGy3auosls" - }, - { - "title": "P!nk - Try (Karaoke)", - "id": "3jCH1c2KY-Q" - }, - { - "title": "Kenny Chesney, Tim McGraw - Feel Like A Rock Star (Karaoke)", - "id": "QGDfq0aNAsw" - }, - { - "title": "Captain & Tennille - Love Will Keep Us Together (Karaoke)", - "id": "Whk06yn2jV0" - }, - { - "title": "Car Seat Headrest - Nervous Young Inhumans (Karaoke)", - "id": "2ZrmehMmFWQ" - }, - { - "title": "Bring Me The Horizon - Mantra (Karaoke)", - "id": "Y0jQJct8G9w" - }, - { - "title": "Poison - Something To Believe In (Karaoke)", - "id": "fd20J97sQqk" - }, - { - "title": "Isley Brothers ftg. R. Kelly And Chante Moore - Contagious (Karaoke)", - "id": "ysrStRzG5fI" - }, - { - "title": "Mark Wills - Almost Doesn't Count (Karaoke)", - "id": "oqwd-SPuyDc" - }, - { - "title": "John Denver And Placido Domingo - Perhaps Love (Karaoke EZ Sing)", - "id": "OqaVhBgVqoA" - }, - { - "title": "Elvis Presley - It's Now Or Never (Karaoke)", - "id": "qfRBDejBVFI" - }, - { - "title": "Enrique Iglesias - Esperanza (Karaoke)", - "id": "5XnRyFQNlTA" - }, - { - "title": "Enrique Iglesias - Nunca Te Olividarรบ (Karaoke)", - "id": "LWdzqOMUPI8" - }, - { - "title": "Enrique Iglesias - Para De Jugar (Karaoke)", - "id": "oRjQMRpbuvg" - }, - { - "title": "Miriam Makeba - Pata Pata (Karaoke)", - "id": "68ghzL0KCqo" - }, - { - "title": "Tony! Toni! Tonรฉ! - Feels Good (Karaoke)", - "id": "ws2XxP4UEIo" - }, - { - "title": "Jade - Don't Walk Away (Karaoke)", - "id": "4dy5zXZCXQU" - }, - { - "title": "Camp Rock - We Rock (Movie) (Karaoke)", - "id": "vSxQjs-HCgs" - }, - { - "title": "Shanice - If I Never Knew You (Pocahantas Disney Movie) (Karaoke EZ Sing)", - "id": "tY08fwIhqcY" - }, - { - "title": "Frank Sinatra - I Saw Mommy Kissing Santa Claus (Karaoke)", - "id": "2YmifMRHA9U" - }, - { - "title": "Jackson 5 - I Saw Mommy Kissing Santa Claus (Karaoke)", - "id": "Q-PWMRSpMdI" - }, - { - "title": "Cliff Richard - Mistletoe And Wine (Karaoke)", - "id": "hdmzIsd23ms" - }, - { - "title": "The Drifters - White Christmas (Karaoke)", - "id": "Tsbh7zebEmI" - }, - { - "title": "Cliff Richard - Saviour's Day (Karaoke)", - "id": "kSbzvQGozWI" - }, - { - "title": "Kenny Chesney - All I Want For Christmas Is A Real Good Tan (Karaoke)", - "id": "sONGu-jEaok" - }, - { - "title": "Oscar McLollie And His Honey Jumpers - Dig That Crazy Santa Claus (Karaoke)", - "id": "70ylfzuCWaY" - }, - { - "title": "Jeff Carson - Santa Got Lost In Texas (Karaoke)", - "id": "CQIxBz8eo_g" - }, - { - "title": "Ray Stevens - Redneck Christmas (Karaoke)", - "id": "VtkzprSaRJg" - }, - { - "title": "Sublime - What I Got (Karaoke)", - "id": "6ztKnRS-Teg" - }, - { - "title": "Blues Traveler - Most Precarious (Karaoke EZ Sing)", - "id": "7HZKXbdq1_c" - }, - { - "title": "Seal - Prayer For The Dying (Karaoke)", - "id": "j9ymsWFiaVs" - }, - { - "title": "Seal - Human Beings (Karaoke)", - "id": "55QeErVlp0U" - }, - { - "title": "Seal - Don't Cry (Karaoke EZ Sing)", - "id": "_qbVDEqPbPw" - }, - { - "title": "Seal - Amazing (Karaoke)", - "id": "jS9nopFmQgw" - }, - { - "title": "Il Divo And Toni Braxton - Time Of Our Lives (Karaoke EZ Sing)", - "id": "TLDVQVcJcF4" - }, - { - "title": "Patti LaBelle - New Attitude (Karaoke)", - "id": "CuW38rtENo0" - }, - { - "title": "Bing Crosby - White Christmas (Karaoke)", - "id": "_y8hGxTwLrM" - }, - { - "title": "Christmas Vol. 3 - Karaoke Lightning Round Game", - "id": "zMpPhxE8TLQ" - }, - { - "title": "McFly - I Wanna Hold You (Karaoke)", - "id": "3D1J0SVaIGk" - }, - { - "title": "Christmas Remix - O Come All Ye Faithful (Karaoke)", - "id": "62jJcbWWn2I" - }, - { - "title": "R&B Christmas - White Christmas (Karaoke)", - "id": "8Ffy5LWdmtU" - }, - { - "title": "Christmas Vol. 1 - Karaoke Lightning Round Game", - "id": "lo7L7XsDs1Q" - }, - { - "title": "Christmas Vol 2 - Karaoke Lightning Round Game", - "id": "Kk3IdCz5lLM" - }, - { - "title": "The Lumineers - Gale Song (Karaoke EZ Sing)", - "id": "_OVMAElEXuQ" - }, - { - "title": "The Lumineers - Slow It Down (Karaoke EZ Sing)", - "id": "spn3xZGs2PE" - }, - { - "title": "Pet Shop Boys - Suburbia (Karaoke EZ Sing)", - "id": "IqMbf6cZlCQ" - }, - { - "title": "The Lumineers - Flowers In Your Hair (Karaoke)", - "id": "wRd_I9OrVCI" - }, - { - "title": "Nine Inch Nails - Reptile (Acoustic) Karaoke", - "id": "Y-yQ-lj_RHg" - }, - { - "title": "Lynn Anderson - Fool Me (Karaoke)", - "id": "TBaLye_rIyQ" - }, - { - "title": "The Crabb Family - Jesus In A Song (Karaoke)", - "id": "8a5zdENe_OQ" - }, - { - "title": "Lauv - Getting Over You (Karaoke)", - "id": "hx1VhmsgPEQ" - }, - { - "title": "Pat Benatar - Love Is A Battlefield (Karaoke)", - "id": "xb77RLRnFqM" - }, - { - "title": "McFly - All About You (Karaoke)", - "id": "GwtgBm_iS0g" - }, - { - "title": "BANKS - Gimme (explicit) (Karaoke)", - "id": "tz2lN2wa2iY" - }, - { - "title": "Nine Inch Nails - Mr. Self Destruct (Acoustic) (Karaoke EZ Sing)", - "id": "an1BBYGT7rs" - }, - { - "title": "Vince Gill - Take Your Memory With You (Karaoke)", - "id": "lL7ys-4z7Xo" - }, - { - "title": "The Crabb Family - Please Come Down To Me (Karaoke)", - "id": "3BRHFwnIpd0" - }, - { - "title": "Montgomery Gentry - Daddy Won't Sell The Farm (Karaoke)", - "id": "GdYWmGcrZxA" - }, - { - "title": "Jimmy Boyd - I Saw Mommy Kissing Santa Claus (Karaoke)", - "id": "S-Xkj0Pew0E" - }, - { - "title": "Lynn Anderson - How Can I Unlove You (Karaoke)", - "id": "3AiTusePxIg" - }, - { - "title": "Jake Bugg - Slumville Sunrise (Karaoke EZ Sing)", - "id": "wKL4V5g6Cjg" - }, - { - "title": "Pet Shop Boys - So Hard (Karaoke)", - "id": "4Um9mOPQnTw" - }, - { - "title": "Hayley Kiyoko - I Wish (explicit) (Karaoke EZ Sing)", - "id": "PfDl0bNNRPA" - }, - { - "title": "Charlie Puth - How Long (Karaoke)", - "id": "tnEMvzi0ZaY" - }, - { - "title": "Dave Thomas Junior - Little Piece of Nothing (Karaoke EZ Sing)", - "id": "CL1sOhSwjiU" - }, - { - "title": "George Ezra - Shotgun (Karaoke)", - "id": "KOmDkR5FPfU" - }, - { - "title": "JET - Cold Hard Bitch (Karaoke)", - "id": "kYK89lzPawY" - }, - { - "title": "Jet - Put Your Money Where Your Mouth Is (Karaoke EZ Sing)", - "id": "8IDuWlNeXkM" - }, - { - "title": "JET - Rollover D.J. (Karaoke)", - "id": "plg-4MpC8KA" - }, - { - "title": "JET - Seventeen (Karaoke)", - "id": "0aBidtxlHvQ" - }, - { - "title": "JET - Sgt. Major (Karaoke)", - "id": "Ryz2vcrj5n4" - }, - { - "title": "JET - She's A Genius (Karaoke)", - "id": "ZLtveVv9g8A" - }, - { - "title": "JET - Shine On (Karaoke)", - "id": "fPrjGEhQlZc" - }, - { - "title": "Blossoms - I Can't Stand It (Karaoke)", - "id": "iKiMftFT8Ho" - }, - { - "title": "Blues Traveler - Canadian Rose (Karaoke)", - "id": "gP9lcAzKAoM" - }, - { - "title": "Dorothy - Missile (Karaoke)", - "id": "w3ehD-MzJ9c" - }, - { - "title": "The 1975 - Settle Down (Karaoke EZ Sing)", - "id": "Zg7r3A9MZlo" - }, - { - "title": "Demi Lovato - Stone Cold (Karaoke EZ Sing)", - "id": "wW8ZcdV9SuA" - }, - { - "title": "Billie Eilish - Xanny (Karaoke EZ Sing)", - "id": "HIlXEfaDnYo" - }, - { - "title": "Maisie Peters - Favourite Ex (Karaoke EZ Sing)", - "id": "46bkIYDTmUM" - }, - { - "title": "Broadway: Dreamgirls - When I First Saw You (Karaoke)", - "id": "l-ScfCvsNDo" - }, - { - "title": "Dave Thomas Junior - Silence (Karaoke)", - "id": "yQsOsCv_Zuc" - }, - { - "title": "Twisted Sister - Burn In Hell (Karaoke)", - "id": "Ve8EMdPsgKY" - }, - { - "title": "Chvrches - Under The Tide (Karaoke EZ Sing)", - "id": "vaonzhSeQhU" - }, - { - "title": "Mud - Tiger Feet (Karaoke)", - "id": "VBR4UIJu3p8" - }, - { - "title": "Pet Shop Boys - Can You Forgive Her (Karaoke EZ Sing)", - "id": "YWATnhcYdcI" - }, - { - "title": "Mac Miller - Good News (Karaoke EZ Sing)", - "id": "AmuPxdtMOr0" - }, - { - "title": "Vince Gill - Go Rest High On That Mountain (Karaoke)", - "id": "7HDug0y___0" - }, - { - "title": "Jamie T. - Sticks 'N' Stones (explicit) (Karaoke EZ Sing)", - "id": "JNLFrmFc6W0" - }, - { - "title": "James - Laid (Karaoke EZ Sing)", - "id": "axg06FL_gb8" - }, - { - "title": "Pet Shop Boys - Left To My Own Devices (Karaoke EZ Sing)", - "id": "vsWJzoW-xsw" - }, - { - "title": "Dorothy - After Midnight (Karaoke EZ Sing)", - "id": "OBQ_-Vln8Xg" - }, - { - "title": "Carla Thomas - B-A-B-Y (Karaoke)", - "id": "guOys3rXpY8" - }, - { - "title": "The 1975 - Robbers (Karaoke EZ Sing)", - "id": "xN16zzl8EWg" - }, - { - "title": "Garbage - Sex Is Not The Enemy (Karaoke EZ Sing)", - "id": "7FqF1W7dv5k" - }, - { - "title": "Zac Brown Band - The Man Who Loves You The Most (Karaoke)", - "id": "zCX9qHO2IRA" - }, - { - "title": "Bob Marley ft. Lvndscape and Boiler - Is This Love (Remix) (Karaoke EZ Sing)", - "id": "Yylh_q2VDgU" - }, - { - "title": "will.i.am, Cheryl Cole - Heartbreaker (explicit) (Karaoke)", - "id": "NxzCSJkcfb8" - }, - { - "title": "The 1975 - Love Me (Karaoke)", - "id": "zgDm4pAG9uQ" - }, - { - "title": "Nine Inch Nails - Hurt (Acoustic) (Karaoke EZ Sing)", - "id": "wO4jZS84tWg" - }, - { - "title": "Tom Walker - Just You And I (Karaoke EZ Sing)", - "id": "CvrCyb7fgzc" - }, - { - "title": "Volbeat Feat. Neil Fallon - Die To Live (Karaoke EZ Sing)", - "id": "krlmbwD1CIg" - }, - { - "title": "Pet Shop Boys - Being Boring (Karaoke EZ Sing)", - "id": "rxlwmzQUlCA" - }, - { - "title": "Garbage - Til' The Day I Die (Karaoke EZ Sing)", - "id": "bJs0dRzMSVw" - }, - { - "title": "Busted - Crashed The Wedding (Karaoke EZ Sing)", - "id": "lUTHGJhqKoc" - }, - { - "title": "Bob Marley - Jammin' (Benny Benassi Remix) (Karaoke)", - "id": "GUaBpX60XNU" - }, - { - "title": "Charlie Puth - Girlfriend (Karaoke)", - "id": "VvxbL6VfznQ" - }, - { - "title": "Gloria Estefan - Tus Ojos (Karaoke)", - "id": "nOG3xW6JIxo" - }, - { - "title": "Sixpence None The Richer - I Need Love (Karaoke)", - "id": "AiZJKVfAiZM" - }, - { - "title": "Natalie Taylor - Surrender (Karaoke)", - "id": "6mTIXQWpP4M" - }, - { - "title": "Rachel Proctor - Me And Emily (Karaoke)", - "id": "TByT-OzskIc" - }, - { - "title": "Patsy Cline - Have You Ever Been Lonely (Karaoke)", - "id": "pEHIBanN3_I" - }, - { - "title": "Alan Jackson ftg. Lee Ann Womack - Ring Of Fire (Karaoke)", - "id": "iWRUpUTjnUM" - }, - { - "title": "Mac Miller - Circles (Karaoke EZ Sing)", - "id": "NpQW0FWD9fg" - }, - { - "title": "Childish Gambino - Bonfire (Explicit) (Karaoke EZ Sing)", - "id": "PpOYw388Sz8" - }, - { - "title": "Logan Brill - Wish You Loved Me (Karaoke)", - "id": "wCt1p3YSPVg" - }, - { - "title": "Ronnie Dunn - Kiss You There (Karaoke)", - "id": "coI8stwAtWQ" - }, - { - "title": "Trace Adkins - Marry For Money (Karaoke)", - "id": "zxuWSnUeKSg" - }, - { - "title": "The Crabb Family - Jesus Will Do What You Can't (Karaoke)", - "id": "33FJ0f0pQII" - }, - { - "title": "Alejandro Sanz - No Tengo Nada (Karaoke)", - "id": "s849iZiQjkc" - }, - { - "title": "Crabb Family - Something Going On In The Graveyard (Karaoke)", - "id": "JDiLX3WkDk4" - }, - { - "title": "Tony Gore & Majesty - Final Chapter (Karaoke)", - "id": "zNKfQzKyFR4" - }, - { - "title": "The 1975 - The City (Karaoke EZ Sing)", - "id": "nLfLzIHCTjQ" - }, - { - "title": "Garbage - Can't Cry These Tears (Karaoke EZ Sing)", - "id": "5tjCLE0uhGo" - }, - { - "title": "Fatback Band - I Found Lovin' (Karaoke EZ Sing)", - "id": "QsqzdtixKc8" - }, - { - "title": "Fatback Band - Backstrokin' (Karaoke EZ Sing)", - "id": "1uSfuV483dk" - }, - { - "title": "Lynn Anderson - Cry (Karaoke)", - "id": "gv28lISdXm0" - }, - { - "title": "Morgan Wallen - Chasin' You (Karaoke EZ Sing)", - "id": "Awe2aW4Gdmc" - }, - { - "title": "Maroon 5 - Animals (Karaoke)", - "id": "EyS9UgqP_PA" - }, - { - "title": "The Rolling Stones - Harlem Shuffle (Karaoke)", - "id": "Jms04u0TFvE" - }, - { - "title": "Lynn Anderson - Rose Garden (Karaoke)", - "id": "cCebfsZtV90" - }, - { - "title": "Kem - Love Calls (Karaoke)", - "id": "Sfq7ePRsono" - }, - { - "title": "Janet Jackson - Nasty (Karaoke)", - "id": "c_cAqsZwqP8" - }, - { - "title": "Bob Marley And The Wailers - Stop That Train (Karaoke)", - "id": "YV4jxU8wtrE" - }, - { - "title": "Celine Dion - Courage (Karaoke EZ Sing)", - "id": "0o_KytjAATM" - }, - { - "title": "Sheppard - Thank You (Karaoke)", - "id": "JwXhsLa1IEM" - }, - { - "title": "Joe South - Games People Play (Karaoke)", - "id": "gOTissFkp7Q" - }, - { - "title": "The 1975 - Girls (clean) (Karaoke EZ Sing)", - "id": "hn2B6iaZkIU" - }, - { - "title": "Crabb Family - Still Holding On (Karaoke)", - "id": "9Uk6CeLboH0" - }, - { - "title": "Garbage - Cherry Lips (Go Baby Go!) (Karaoke EZ Sing)", - "id": "vSVqSo96KoU" - }, - { - "title": "Zac Brown Band - You And Islands (Karaoke)", - "id": "-fSJMl9TaG0" - }, - { - "title": "Julie Roberts - Girl Next Door (Karaoke)", - "id": "t6UGYLuKvIo" - }, - { - "title": "Little Richard - Keep A(Karaoke)", - "id": "DTbFWJ0WNbo" - }, - { - "title": "Little Mix feat. Charlie Puth - Oops (Karaoke EZ Sing)", - "id": "hJX8H7D0Anc" - }, - { - "title": "Juan Gabriel & Natalia Lafourcade - Ya No Vivo Por Vivir (Karaoke)", - "id": "AjiGn8HcJTY" - }, - { - "title": "CNCO - Mamita (Karaoke)", - "id": "BZY8sz2-0yU" - }, - { - "title": "Moby - Extreme Ways (Karaoke)", - "id": "OzS9IXboBcA" - }, - { - "title": "Kat Dahlia - Crazy (Karaoke)", - "id": "KhiwjO6muPk" - }, - { - "title": "David Gray - The One I Love (Karaoke)", - "id": "m8kpSRR9Imc" - }, - { - "title": "Surfaces - Sunday Best (Karaoke EZ Sing)", - "id": "Z6TMTDL-fCg" - }, - { - "title": "Vince Gill - Never Knew Lonely (Karaoke)", - "id": "Tt-xjCPAJYA" - }, - { - "title": "Badly Drawn Boy - Disillusion (Karaoke EZ Sing)", - "id": "f1FjuOyuuzU" - }, - { - "title": "Lauv - I Like Me Better (Karaoke)", - "id": "6ih2nmqXgvM" - }, - { - "title": "Busted - Who's David (Karaoke EZ Sing)", - "id": "KgzUERjOVNQ" - }, - { - "title": "Ariana Grande - Just A Little Bit Of Your Heart (Karaoke EZ Sing)", - "id": "ZEcqweOCdYo" - }, - { - "title": "George Strait - The Man In Love With You", - "id": "GGwEFMgkZAg" - }, - { - "title": "McFly - I'll Be Ok (Karaoke EZ Sing)", - "id": "TZT4p0HaZPM" - }, - { - "title": "Babybird - You're Gorgeous (Karaoke EZ Sing)", - "id": "UphHqcyhOr0" - }, - { - "title": "Kem - It's You (Karaoke)", - "id": "Jb4PFRck9K0" - }, - { - "title": "Billie Eilish - My Future (Karaoke EZ Sing)", - "id": "TzPQwp_mjqI" - }, - { - "title": "Vince Gill - When Love Finds You (Karaoke)", - "id": "Geu8DVsdZqY" - }, - { - "title": "Farm - All Together Now (Karaoke EZ Sing)", - "id": "j-unFdTCaDM" - }, - { - "title": "Rocketman (The Movie) - (I'm Gonna) Love Me Again (Karaoke EZ Sing)", - "id": "QaRvt7bbZ-o" - }, - { - "title": "Phil Collins - One More Night (Karaoke EZ Sing)", - "id": "lTPpzTX8aRw" - }, - { - "title": "Leonel Garcรญa - Bailar (Karaoke)", - "id": "pBcHmTEIf4E" - }, - { - "title": "El Bebeto - Mi Persona Preferida (Karaoke)", - "id": "xBPNgcgjfoE" - }, - { - "title": "Leonel Garcรญa - Para Empezar (Karaoke)", - "id": "BaHJxCaaYuE" - }, - { - "title": "Editors - Bullets (Karaoke)", - "id": "3-BF4AMWT7s" - }, - { - "title": "The Skids - Into The Valley (Karaoke)", - "id": "SsFx20Y_TA8" - }, - { - "title": "The Members - The Sound Of The Suburbs (Karaoke)", - "id": "ta-T9Go1G-8" - }, - { - "title": "Jet - Are You Gonna Be My Girl (Karaoke)", - "id": "UWKfzoFQ6KQ" - }, - { - "title": "Phil Collins - Another Day In Paradise (Karaoke)", - "id": "jR0cagWbr1k" - }, - { - "title": "Phil Collins - I Wish It Would Rain Down (Karaoke)", - "id": "7gQGN0q0RKU" - }, - { - "title": "Moe Bandy - Barstool Mountain (Karaoke)", - "id": "rundjy3ohBM" - }, - { - "title": "Alan Jackson - Between The Devil And Me (Karaoke)", - "id": "LG_PINU2Se8" - }, - { - "title": "Keith Whitley - I'm Over You (Karaoke)", - "id": "UBmF4UuLSFk" - }, - { - "title": "Luke Bryan - We Rode In Trucks (Karaoke)", - "id": "Z2AipI_U9sE" - }, - { - "title": "Ajr - Bang (Karaoke EZ Sing)", - "id": "Ls0m69xlORg" - }, - { - "title": "The 1975 - Me & You Together Song (Clean) (Karaoke EZ Sing)", - "id": "y5954gYRP_Y" - }, - { - "title": "Don Toliver - No Idea (Karaoke EZ Sing)", - "id": "B5YqfO02R2I" - }, - { - "title": "Harry Styles - Adore You (Karaoke)", - "id": "SjLdu8DnqLw" - }, - { - "title": "Alicia Keys - Underdog (Karaoke)", - "id": "_bhDfjmxYF8" - }, - { - "title": "Tanya Tucker - Two Sparrows In A Hurricane (Karaoke)", - "id": "y1TIx5R5PyI" - }, - { - "title": "Conway Twitty - I See The Want To In Your Eyes (Karaoke)", - "id": "epCrahItaog" - }, - { - "title": "The Who - Squeeze Box (Karaoke)", - "id": "MrI0x5Akr2M" - }, - { - "title": "Nine Inch Nails - Heresy (Acoustic) (Karaoke)", - "id": "sx0W9TJIAOc" - }, - { - "title": "Nine Inch Nails - We're In This Together (Acoustic) (Karaoke EZ Sing)", - "id": "zFrUJuEcFPc" - }, - { - "title": "The Ides Of March - Vehicle (Karaoke)", - "id": "wR3RaY0Cuxc" - }, - { - "title": "Blackfoot - Train, Train (Karaoke)", - "id": "eUOXKGfGxsU" - }, - { - "title": "Kelly Clarkson, John Legend - Run Run Run (Karaoke)", - "id": "wB0E1521lCg" - }, - { - "title": "Banks - Gimme (Karaoke EZ Sing)", - "id": "psPGaj3v88Q" - }, - { - "title": "Lapsley - Love Is Blind (Karaoke)", - "id": "BA_cJMzqNlo" - }, - { - "title": "Ingrid Andress - More Hearts Than Mine (Karaoke EZ Sing)", - "id": "F07YTwzoKgg" - }, - { - "title": "Caylee Hammack - Family Tree (Karaoke)", - "id": "0wOn37eslEY" - }, - { - "title": "City Girls - Act Up (Karaoke EZ Sing)", - "id": "IVxAR9IXjvk" - }, - { - "title": "Harry Styles - Watermelon Sugar (Karaoke EZ Sing)", - "id": "MJACzAM1YhM" - }, - { - "title": "Peter McCann - Do You Wanna Make Love (Karaoke EZ Sing)", - "id": "t_29UX3We24" - }, - { - "title": "The Bellamy Brothers - Let Your Love Flow (Karaoke)", - "id": "ZtVatvljb64" - }, - { - "title": "Dave Clark Five - Over And Over (Karaoke)", - "id": "kMg8uhmMgrM" - }, - { - "title": "Bobby Vinton - Beer Barrel Polka (Karaoke)", - "id": "5jy9MePniRQ" - }, - { - "title": "Shed Seven - Disco Down (Karaoke EZ Sing)", - "id": "3v4JQumu6KQ" - }, - { - "title": "Kula Shaker - Govinda (Karaoke EZ Sing)", - "id": "PRHn3KPRxwM" - }, - { - "title": "Editors - Blood (Karaoke)", - "id": "Pa7ZwMENHZA" - }, - { - "title": "Garbage - When I Grow Up (Karaoke EZ Sing)", - "id": "EGp-GPAUkSg" - }, - { - "title": "Placebo - The Bitter End (Karaoke EZ Sing)", - "id": "u0HOrbzNwCg" - }, - { - "title": "Roy Clark - Yesterday When I Was Young (Karaoke)", - "id": "kQwhxoBh9R0" - }, - { - "title": "Don Gibson - Sea Of Heartbreak (Karaoke)", - "id": "BsfT3jF4iM8" - }, - { - "title": "Roy Drusky - Second Hand Rose (Karaoke)", - "id": "Eblw2_lR73s" - }, - { - "title": "Claude King - Wolverton Mountain (Karaoke)", - "id": "WEVEXJBv_-E" - }, - { - "title": "Ernest Tubb - Have You Ever Been Lonely (Karaoke)", - "id": "OCq9mIdFahE" - }, - { - "title": "Shakira - Try Everything (Karaoke EZ Sing)", - "id": "LWUzk4ppz-E" - }, - { - "title": "Blackbear feat. Gucci Mane - Do Re Mi (Karaoke EZ Sing)", - "id": "FtUw-RC2mD0" - }, - { - "title": "Billie Eilish - Everything I Wanted (Karaoke EZ Sing)", - "id": "ZQhG0lAICQg" - }, - { - "title": "Sandrine - Where Do We Go (Karaoke)", - "id": "ZR6cgIWwhZI" - }, - { - "title": "Lucie Silvas - What You're Made Of (Karaoke)", - "id": "sXEikkyJdTI" - }, - { - "title": "David Gray - Sail Away (Karaoke EZ Sing)", - "id": "zXiSXbdXaPA" - }, - { - "title": "David Gray - Please Forgive Me (Karaoke EZ Sing)", - "id": "dvp2Ie2rwdg" - }, - { - "title": "Bobby Day - Rockin' Robin (Karaoke)", - "id": "hE4dIAugimA" - }, - { - "title": "Thurston Harris - Little Bitty Pretty One (Karaoke)", - "id": "pQiWABsXfXM" - }, - { - "title": "Wilson Pickett - Funky Broadway (Karaoke)", - "id": "EdV6DWeI-9I" - }, - { - "title": "The Platters - My Prayer (Karaoke)", - "id": "uPGoxKXxP7E" - }, - { - "title": "Mitch Miller - Side By Side (Karaoke)", - "id": "FoOfTk223iE" - }, - { - "title": "Ringo Starr - It Donโ€™t Come Easy (Karaoke)", - "id": "RlXDSVSB80U" - }, - { - "title": "Manuel Carrasco - Ya No (Karaoke)", - "id": "iBV3pMaOSfQ" - }, - { - "title": "Manuel Carrasco - Dejame Ser (Karaoke)", - "id": "16VEvuuDkY4" - }, - { - "title": "Charly Garcรญa - Nos Siguen Pegando Abajo (Karaoke)", - "id": "wXd5LsjNFfk" - }, - { - "title": "Los Iracundos - La Lluvia Termino (Karaoke)", - "id": "Te1b0w2-21E" - }, - { - "title": "T3R Elemento - En Boca De Todos (Karaoke)", - "id": "_fcje9JRhZY" - }, - { - "title": "Fleetwood Mac - Big Love (Karaoke)", - "id": "ULKusqetnxM" - }, - { - "title": "Bette Midler - Glory Of Love (Karaoke)", - "id": "2e5OqYS2TqA" - }, - { - "title": "Dwight Yoakam, Elle King - Please, Please Baby (Karaoke)", - "id": "jRT8NsMr288" - }, - { - "title": "Elvis Presley - Walk A Mile In My Shoes (Live Version) (Karaoke)", - "id": "SVpdmDGDeZM" - }, - { - "title": "Johnny Cash - Ring Of Fire (Karaoke)", - "id": "cHHmuVj4J84" - }, - { - "title": "Corinne Bailey Rae - Put Your Records On (Karaoke)", - "id": "yeCHA0yZdxc" - }, - { - "title": "Frank Sinatra - A Fine Romance (Karaoke EZ Sing)", - "id": "N6CZ_WHlxHA" - }, - { - "title": "Elvis Presley - Puppet On A String (Karaoke)", - "id": "AkApHeI-FVY" - }, - { - "title": "Elvis Presley - Poor Boy (Karaoke)", - "id": "7GkWkG__MuE" - }, - { - "title": "Elvis Presley - One Broken Heart For Sale (Karaoke)", - "id": "oZ9OIfp1S3Q" - }, - { - "title": "Elvis Presley - I Want You, I Need You, I Love You (Karaoke EZ Sing)", - "id": "jOYlf4LzGTE" - }, - { - "title": "Stereophonics - Devil (Karaoke)", - "id": "AWF-V_b1gBQ" - }, - { - "title": "Babybird - Bad Old Man (Karaoke EZ Sing)", - "id": "QaQjs1_iqCQ" - }, - { - "title": "Ash - You Can't Have It All (Karaoke EZ Sing)", - "id": "uEls3OqVChc" - }, - { - "title": "Feeder - Shatter (Karaoke)", - "id": "Km9MmyqteTo" - }, - { - "title": "McFly - Room On The 3rd Floor (Karaoke EZ Sing)", - "id": "mPgjYqMT3Fk" - }, - { - "title": "Blake Shelton - Doin' What She Likes (Karaoke)", - "id": "YvboEOWOTPA" - }, - { - "title": "Dierks Bentley, Elle King - Different For Girls (Karaoke)", - "id": "cKyTW8RqStk" - }, - { - "title": "Martha and the Muffins - Echo Beach (Karaoke EZ Sing)", - "id": "rc_G4Hedheg" - }, - { - "title": "The Pretenders - Precious (Explicit) (Karaoke EZ Sing)", - "id": "A988_ADhd8c" - }, - { - "title": "Simple Minds - SHE'S A RIVER (Karaoke EZ Sing)", - "id": "5eA7aPHlyoM" - }, - { - "title": "Joe Jackson - It's Different For Girls (Karaoke EZ Sing)", - "id": "AgE1P4Snt0Y" - }, - { - "title": "Armando Manzanero - Todavia (Karaoke)", - "id": "POpDLFWtxhU" - }, - { - "title": "Armando Manzanero - Pensando En Ti (Karaoke)", - "id": "0fLrEK4qsv0" - }, - { - "title": "Elvis Presley - I Got Stung (Karaoke)", - "id": "HxhKJYgpMDw" - }, - { - "title": "Elvis Presley - Hard Headed Woman (Karaoke)", - "id": "rK4ngMDm0tA" - }, - { - "title": "Elvis Presley - A Big Hunk O' Love (Karaoke)", - "id": "3IzbjH7OuiA" - }, - { - "title": "Elvis Presley - I Gotta Know (Karaoke)", - "id": "dd52IMuOlbA" - }, - { - "title": "Kodaline - The One (Acoustic) (Karaoke)", - "id": "RgYFyjIWdPg" - }, - { - "title": "The Mock Turtles - Can You Dig It? (Karaoke)", - "id": "C5u760mnjqw" - }, - { - "title": "Alt-J - Left Hand Free (Karaoke)", - "id": "1FmkHlLZcTk" - }, - { - "title": "The Kooks - Always Where I Need To Be (Karaoke)", - "id": "woyROMZRokE" - }, - { - "title": "Peter, Paul & Mary - If I Had A Hammer (Karaoke)", - "id": "D5OWSNjOTKE" - }, - { - "title": "Woody Guthrie - This Land Is Your Land (Karaoke)", - "id": "SqIJMV4NVtY" - }, - { - "title": "Rocky Burnette - Tired Of Toein' The Line (Karaoke)", - "id": "C3eJb8y9R_w" - }, - { - "title": "Juan Gabriel, Julion Alvarez & J. Balvin - La Frontera (Karaoke)", - "id": "hKHuH1Adt0w" - }, - { - "title": "Rocio Durcal - Ni Siquiera Una Mirada (Karaoke)", - "id": "7HaY9DRoeD0" - }, - { - "title": "Miguel Gallardo - Yo Fui El Segundo En Tu Vida (Karaoke)", - "id": "gmJxN-woS8s" - }, - { - "title": "Martina McBride - (I Never Promised You A) Rose Garden (Karaoke)", - "id": "95Wmle198Gg" - }, - { - "title": "Elvis Presley - Good Luck Charm (Karaoke)", - "id": "lwblc1NYagA" - }, - { - "title": "Elvis Presley - By And By (Karaoke)", - "id": "8uVpEiUbPtY" - }, - { - "title": "Elvis Presley - Amazing Grace (Karaoke)", - "id": "HTH7chk8Nl0" - }, - { - "title": "LMFAO feat. Natalia Kills - Champagne Showers (Clean) (Karaoke)", - "id": "48d1pnYcGHA" - }, - { - "title": "Kelly Clarkson - Catch My Breath (Karaoke)", - "id": "5L7xrWn-xsE" - }, - { - "title": "LMFAO - Sexy And I Know It (Karaoke)", - "id": "8ZMsOBPHkDg" - }, - { - "title": "Nicki Minaj ft. 2 Chainz - Beez In The Trap (Karaoke)", - "id": "hUfrZ62RHCg" - }, - { - "title": "Dolly Parton - But You Know I Love You (Karaoke)", - "id": "CyrX2LnJMuQ" - }, - { - "title": "Tom Jones - (It Looks Like) I'll Never Fall In Love Again (Karaoke)", - "id": "hODVpASkMLc" - }, - { - "title": "The Moody Blues - Nights In White Satin (Karaoke)", - "id": "sfnydwljkr8" - }, - { - "title": "Marilyn Monroe - Diamonds Are A Girl's Best Friend (Karaoke)", - "id": "n8q-xfjeHyg" - }, - { - "title": "Trace Adkins - Arlington (Karaoke)", - "id": "9XPVlnwMYKc" - }, - { - "title": "Brad Paisley - Mud On The Tires (Karaoke)", - "id": "6ZAV_bRFiW8" - }, - { - "title": "Brad Paisley - I Wish You'd Stay (Karaoke)", - "id": "S29itDUS82g" - }, - { - "title": "Brad Paisley - I'm Gonna Miss Her (Karaoke)", - "id": "vsVyD7ScXlo" - }, - { - "title": "Montgomery Gentry - Lucky Man (Karaoke)", - "id": "9xQxAJsIejM" - }, - { - "title": "Elvis Presley - (Let Me Be Your) Teddy Bear (Karaoke)", - "id": "Ea0uxtDn6To" - }, - { - "title": "Elvis Presley - Kentucky Rain (Karaoke)", - "id": "lgK_UvkKxKM" - }, - { - "title": "Elvis Presley - If I Can Dream (Karaoke)", - "id": "AjojG5uQWeo" - }, - { - "title": "Elvis Presley - Stuck On You (Karaoke)", - "id": "_aQo36okzo0" - }, - { - "title": "Elvis Presley - Can't Help Falling In Love (Karaoke)", - "id": "0jD1_dA6oBE" - }, - { - "title": "Dj Fresh Vs Tc - Make U Bounce (Karaoke EZ Sing)", - "id": "14DjuCkj2iU" - }, - { - "title": "Eminem - Phenomenal (Karaoke EZ Sing)", - "id": "_rkBg6OZZTE" - }, - { - "title": "Faith Evans Ft. Twista - Hope (Karaoke EZ Sing)", - "id": "0dO7F7-Qh38" - }, - { - "title": "Kid Cudi vs Crookers - Day N Nite (Karaoke EZ Sing)", - "id": "q9WGhR_quig" - }, - { - "title": "Eminem - My Name Is (Explicit) (Karaoke EZ Sing)", - "id": "_FePzBscMwU" - }, - { - "title": "Juan Luis Guerra - Kitipun (Karaoke)", - "id": "5I5VDPA1ynw" - }, - { - "title": "Juan Gabriel - No Tengas Miedo (Karaoke)", - "id": "Mbp8pWzj3jo" - }, - { - "title": "Celia Cruz - Mas Fuerte Que Tu Amor (Karaoke)", - "id": "N4dZ1cK5SvU" - }, - { - "title": "Pedro Capรณ - Duele Ser Infiel (Karaoke)", - "id": "UmONKdl-WfA" - }, - { - "title": "David Bisbal & Alejandro Fernandez - Abrire La Puerta (Karaoke)", - "id": "U6ezu9a70tM" - }, - { - "title": "Ringo Starr - Photograph (Karaoke)", - "id": "fTq9snzUCIQ" - }, - { - "title": "Jimi Hendrix Experience - Hey Joe (Karaoke)", - "id": "0sd4SGdRS7Q" - }, - { - "title": "Fleetwood Mac - Rhiannon (Karaoke EZ Sing)", - "id": "u1Am2iptgO0" - }, - { - "title": "Frank Sinatra - Fly Me To The Moon (In Other Words) (Karaoke)", - "id": "hB9qgopgW-Y" - }, - { - "title": "The Wanted - Lose My Mind (Karaoke EZ Sing)", - "id": "17tYRpoloCw" - }, - { - "title": "The Lumineers - Stubborn Love (Karaoke EZ Sing)", - "id": "88UbpKLPWFc" - }, - { - "title": "Miguel - Sky Walker (Karaoke EZ Sing)", - "id": "wcTE_Ozp21U" - }, - { - "title": "Grace Phipps - Falling For Ya (Karaoke EZ Sing)", - "id": "A4webRuEWC8" - }, - { - "title": "Billie Eilish - Copycat (Karaoke EZ Sing)", - "id": "qdAgg6PKO0U" - }, - { - "title": "Dorothy - Gun In My Hand (Karaoke EZ Sing)", - "id": "16vi8MRtu0Q" - }, - { - "title": "Harry Styles - Lights Up (Karaoke EZ Sing)", - "id": "edbXoiGZ2sE" - }, - { - "title": "Broadway: Hairspray - Good Morning Baltimore (Karaoke)", - "id": "3R22e4Aovbg" - }, - { - "title": "Jimmie Rodgers - Kisses Sweeter Than Wine (Karaoke)", - "id": "_FAxNFRAGv8" - }, - { - "title": "The Weavers - Goodnight Irene (Karaoke)", - "id": "vhdjPdpGlDU" - }, - { - "title": "Roxette - Anyone (Karaoke)", - "id": "5Uvr0nWEI3I" - }, - { - "title": "The Highwaymen - Cotton Fields (Karaoke)", - "id": "jtTE1_fbNFA" - }, - { - "title": "James Bay - Best Fake Smile (Karaoke EZ Sing)", - "id": "Pg6Oj6tU7Gs" - }, - { - "title": "Dorothy - Raise Hell (Hell Yes) (Karaoke EZ Sing)", - "id": "msD7SfqInhI" - }, - { - "title": "Freya Ridings - Castles (Karaoke EZ Sing)", - "id": "w81Pm0zgJVU" - }, - { - "title": "Lewis Capaldi - Hold Me While You Wait (Karaoke EZ Sing)", - "id": "O9pdudWb_T0" - }, - { - "title": "Herstory - Karaoke Lightning Round Game", - "id": "sMZzBoO0Qg4" - }, - { - "title": "Days of The Week - Karaoke Lightning Round Game", - "id": "-kUWlCqEeDI" - }, - { - "title": "Godsmack - Karaoke Lightning Round Game", - "id": "t-IT81KTFNQ" - }, - { - "title": "Dannii Minogue - This Is It (Karaoke)", - "id": "oTbofKpCfJI" - }, - { - "title": "Vince Gill - In These Last Few Days (Karaoke)", - "id": "L-LRWJ-p4Mk" - }, - { - "title": "Ash - Sometimes (Karaoke)", - "id": "JrDsN3GFTw0" - }, - { - "title": "Tash Sultana - Cigarettes (Karaoke EZ Sing)", - "id": "K32Ba8Oh4f4" - }, - { - "title": "Vince Gill, Patty Loveless - My Kind Of Woman - My Kind Of Man (Karaoke)", - "id": "4432pCA0itE" - }, - { - "title": "Garbage - Untouchable (Karaoke EZ Sing)", - "id": "h4DJT0wiNdo" - }, - { - "title": "Placebo - Pure Morning (Karaoke EZ Sing)", - "id": "er22tlN_aSw" - }, - { - "title": "Pet Shop Boys - Flamboyant (Karaoke)", - "id": "nWl3IRIXT6o" - }, - { - "title": "Blue October - Hate Me (Karaoke)", - "id": "EHj8UMljRsE" - }, - { - "title": "R.E.M. - Karaoke Lightning Round Game", - "id": "VhwBMrapIYo" - }, - { - "title": "Steely Dan - Karaoke Lightning Round Game", - "id": "gZeor01AXVE" - }, - { - "title": "Supertramp - Karaoke Lightning Round Game", - "id": "W_sPU1Ceszg" - }, - { - "title": "Billie Eilish - Karaoke Lightning Round Game", - "id": "KaaviCHl4WY" - }, - { - "title": "Elvis Presley - Karaoke Lightning Round Game", - "id": "14kXX8-xXlQ" - }, - { - "title": "Juan Gabriel - Hasta Que Te Conoci (Karaoke)", - "id": "zVCdnwFBOv8" - }, - { - "title": "Juan Luis Guerra - El Niagara En Bicicleta (Karaoke)", - "id": "WSB0g36khZw" - }, - { - "title": "Juan Luis Guerra - Como Abeja Al Panal (Karaoke)", - "id": "es3QVt4yoi4" - }, - { - "title": "Maldita Vecindad - Kumbala (Karaoke)", - "id": "zrHY3SJ4EnQ" - }, - { - "title": "El Chapo de Sinaloa - A Ti Si Puedo Decirte (Karaoke)", - "id": "joj6jbB8qHk" - }, - { - "title": "Emmanuel - No He Podido Verte (Karaoke)", - "id": "rBK7dMrSq6k" - }, - { - "title": "Jose Alfredo Jimenez - El Rey (Karaoke)", - "id": "-CLi1e7TrJc" - }, - { - "title": "Los Panchos - Di Que No Es Verdad (Karaoke)", - "id": "_Y4WFf_VaSw" - }, - { - "title": "Tito Rojas - Seรฑora De Madrugada (Karaoke)", - "id": "NZGgAv_D26w" - }, - { - "title": "Rudy La Scala - Cuando Yo Amo (Karaoke)", - "id": "n7LbcHeIih8" - }, - { - "title": "The Sacados - Mas De Lo Que Te Imaginas (Karaoke)", - "id": "3HdYRa7VFOE" - }, - { - "title": "Mary Hopkin - Those Were The Days (Karaoke)", - "id": "kZud7KI9tpM" - }, - { - "title": "Procol Harum - A Whiter Shade Of Pale (Karaoke)", - "id": "ODrMeljeShY" - }, - { - "title": "John Rich - For The Kids (Karaoke)", - "id": "qwThq6wE4tU" - }, - { - "title": "Smokie - What Can I Do (Karaoke EZ Sing)", - "id": "-ReG636z6AU" - }, - { - "title": "Vince Gill - Young Man's Town (Karaoke)", - "id": "bFuZWBZ2m1U" - }, - { - "title": "Hunter Hayes - Karaoke Lightning Round Game", - "id": "o1K602UFo7k" - }, - { - "title": "Maroon 5 - Karaoke Lightning Round Game", - "id": "dKBKL9vbYLQ" - }, - { - "title": "Carly Simon - Karaoke Lightning Round Game", - "id": "VK1cWKYKORE" - }, - { - "title": "Jeanette - Frente A Frente (Karaoke)", - "id": "522g7pMvt-k" - }, - { - "title": "Gloria Trevi - Siempre A Mi (Karaoke)", - "id": "6IRbHaGYOF4" - }, - { - "title": "Gloria Trevi - A Gatas (Karaoke)", - "id": "5qc5Cqgt4ck" - }, - { - "title": "Juan Luis Guerra - Burbujas De Amor (Karaoke)", - "id": "skfBPj6CTG4" - }, - { - "title": "Juan Luis Guerra - Bachata Rosa (Karaoke)", - "id": "h8sTpBZHP4U" - }, - { - "title": "Juan Luis Guerra - Bachata En Fukuoka (Karaoke)", - "id": "s8OPL0TFiSQ" - }, - { - "title": "Juan Luis Guerra - Frio Frio (Karaoke)", - "id": "lhhUTEVMHy8" - }, - { - "title": "Jennifer Pena - Hasta El Fin Del Mundo (Karaoke)", - "id": "YmYAOYDEZcs" - }, - { - "title": "Heleno - La Chica De La Boutique (Karaoke)", - "id": "JufC51pI6FU" - }, - { - "title": "Hector El Torito Acosta - Me Duele La Cabeza (Karaoke)", - "id": "eqDKX988jUU" - }, - { - "title": "Hector El Father, Wisin & Yandel - El Telefono (Karaoke)", - "id": "X1bnEyO7FKc" - }, - { - "title": "Bob Marley - Karaoke Lightning Round Game", - "id": "Q9OFq_H5G4E" - }, - { - "title": "Juanes - Regalito (Karaoke)", - "id": "9v11RHjkjm8" - }, - { - "title": "Leonel Garcรญa - Recuerdas (Karaoke)", - "id": "lk0LBYM5N9I" - }, - { - "title": "Leonel Garcรญa, Jorge Drexler - Ella Es (Karaoke)", - "id": "snZ9FmHfDVI" - }, - { - "title": "Cafรฉ Tacuba - Quiero Ver (Karaoke)", - "id": "0I2membC6Mg" - }, - { - "title": "Pedro Fernรกndez - Cachito De Cielo (Karaoke)", - "id": "x6k9HFl29UE" - }, - { - "title": "Los Autenticos Decadentes - El Murguero (Karaoke)", - "id": "IotOw1GT9JU" - }, - { - "title": "Juanes - Odio Por Amor (Karaoke)", - "id": "VmC4qa1NrVQ" - }, - { - "title": "Juanes - Yerbatero (Karaoke)", - "id": "Ghk3hThu25k" - }, - { - "title": "Juanes - La Senal (Karaoke)", - "id": "Umg1Ng1DZwI" - }, - { - "title": "Juanes - La Luz (Karaoke)", - "id": "IKrr_kCXpsI" - }, - { - "title": "Miguel Bosรฉ - Teorema De Amor (Karaoke)", - "id": "kaO_qadILYE" - }, - { - "title": "Fanny Lu - Celos (Karaoke)", - "id": "oZQ_kuGvFSc" - }, - { - "title": "Bush - Machinehead (Karaoke)", - "id": "rzjUh_Qft9A" - }, - { - "title": "Enrique Iglesias - Rhythm Divine (Karaoke)", - "id": "p985Yx9DkZI" - }, - { - "title": "Rick Astley - Together Forever (Karaoke)", - "id": "1tl3F7iqOIE" - }, - { - "title": "CHICHI PERALTA - Amor Narcotico (Karaoke)", - "id": "EWFobBXD_5Q" - }, - { - "title": "NE-YO, Juicy J - She Knows (Karaoke)", - "id": "20TyEtNN-6I" - }, - { - "title": "Vince Gill - Feels Like Love (Karaoke EZ Sing)", - "id": "WCfJaAV2YN8" - }, - { - "title": "John Rich - The Good Lord And The Man (Karaoke)", - "id": "G6XFZ6cJoak" - }, - { - "title": "Bob Marley - Iron Lion Zion (Karaoke EZ Sing)", - "id": "EXlXTfRBYBc" - }, - { - "title": "Luis Alberto Spinetta - Muchacha Ojos De Papel (Karaoke)", - "id": "Icv2PT3q1CY" - }, - { - "title": "Cristian - Llorando Por Dentro (Karaoke)", - "id": "aOlU3A2fnkM" - }, - { - "title": "Chayanne - Tu Boca (Karaoke)", - "id": "hM8g0wxkHlI" - }, - { - "title": "Mon Laferte - Cumbia Para Olvidar (Karaoke)", - "id": "7kBdyToCU4M" - }, - { - "title": "Tito Nieves - Eres Linda (Karaoke)", - "id": "pJaiYpTdIeI" - }, - { - "title": "The King & I - Something Wonderful (Karaoke)", - "id": "vtH24zSVxc8" - }, - { - "title": "Maisie Peters - This Is On You (Karaoke EZ Sing)", - "id": "DG-yKMO0mqk" - }, - { - "title": "Mijares - Yo Sin Ti (Karaoke)", - "id": "Xkkq85FcQDA" - }, - { - "title": "Charly Garcรญa - No Me Dejan Salir (Karaoke)", - "id": "qHYOaZuzpsI" - }, - { - "title": "Cafรฉ Tacuba - Aprovechate (Karaoke)", - "id": "wCRShj0HXD0" - }, - { - "title": "Mon Laferte - Funeral (Karaoke)", - "id": "qNxtCogxtjg" - }, - { - "title": "Nicki Minaj - Your Love (Karaoke)", - "id": "LWZFKLiQZu0" - }, - { - "title": "Rednex - Cotton Eyed Joe (Karaoke EZ Sing)", - "id": "JackfNucSBA" - }, - { - "title": "The Lumineers - Ho Hey (Karaoke EZ Sing)", - "id": "FpnuO0YtXfA" - }, - { - "title": "Janet Jackson - What Have You Done For Me Lately (Karaoke)", - "id": "RRoN3t76qr8" - }, - { - "title": "Aaliyah - I'm Down (Karaoke EZ Sing)", - "id": "_92m-QQA5mI" - }, - { - "title": "Boy Bands - Karaoke Lightning Round Game", - "id": "CmNiqvWNHRU" - }, - { - "title": "Miley Cyrus - Adore You (Bite-Size Karaoke)", - "id": "MLFUTwSVr8M" - }, - { - "title": "Bring Me The Horizon - Happy Song (Bite-Size Karaoke)", - "id": "p7ZHCHvnxTU" - }, - { - "title": "Hunter Hayes - I Want Crazy (Bite-Size Karaoke)", - "id": "hPJBGIp4En8" - }, - { - "title": "Blake Shelton ftg. Trace Adkins - Hillbilly Bone (Bite-Size Karaoke)", - "id": "LgcPJAKbRaU" - }, - { - "title": "Tom Jones - It's Not Unusual (Bite-Size Karaoke)", - "id": "olJrEHVSSlI" - }, - { - "title": "America - You Can Do Magic (Bite-Size Karaoke)", - "id": "yG7oTrWRiIA" - }, - { - "title": "Samantha Fox - I Wanna Have Some Fun (Bite-Size Karaoke)", - "id": "eG9mYUmk7Ag" - }, - { - "title": "Travis Tritt - Lord Have Mercy On The Working Man (Bite-Size Karaoke)", - "id": "t-o_w-TjnCQ" - }, - { - "title": "Billy Joel - Only The Good Die Young (Bite-Size Karaoke)", - "id": "EhvBTEeTqY0" - }, - { - "title": "George Jones & Tammy Wynette - We're Gonna Hold On (Bite-Size Karaoke)", - "id": "fmMih0bvgis" - }, - { - "title": "Las Ketchup - Asereje (The Ketchup Song) (Karaoke)", - "id": "JcA1nP7c6FU" - }, - { - "title": "Josรฉ Feliciano - Cuando Te Toque Llorar (Karaoke)", - "id": "nVkdTLpYcVA" - }, - { - "title": "Jaguares - Te Lo Pido Por Favor (Karaoke)", - "id": "RKgctbBERtQ" - }, - { - "title": "Isabel Pantoja - Hoy Quiero Confesarme (Karaoke)", - "id": "9gImgIjnBCg" - }, - { - "title": "Jon Secada - Angel (Espaรฑol - Karaoke)", - "id": "d7yADw-8Fbs" - }, - { - "title": "Juan Luis Guerra & Juanes - La Calle (Karaoke)", - "id": "dq8pBPFVlmA" - }, - { - "title": "Liberaciรณn - Quien Me Ha Robado Tu Corazon (Karaoke)", - "id": "ujYUX4vogR8" - }, - { - "title": "Maldita Vecindad - Un Poco De Sangre (Karaoke)", - "id": "wQFF1pNic70" - }, - { - "title": "Maldita Vecindad - Un Gran Circo (Karaoke)", - "id": "LrycM6XY75k" - }, - { - "title": "Mon Laferte - Chilango Blues (Karaoke)", - "id": "XWv0bi8b9qc" - }, - { - "title": "Mon Laferte - Cancion De Mierda (Karaoke)", - "id": "LJSVBSWsj4k" - }, - { - "title": "Angelica Maria - Es Que Estas Enamorado (Karaoke)", - "id": "dwcjzcl4kAw" - }, - { - "title": "Armando Manzanero - Yo Se Que Te Amo (Karaoke)", - "id": "ujj9Vv6bhsg" - }, - { - "title": "Billie Eilish - My Strange Addiction (Karaoke EZ Sing)", - "id": "MeeW8KiYbRw" - }, - { - "title": "Bob Marley And The Wailers - Lively Up Yourself (Karaoke EZ Sing)", - "id": "quKHRLMM9Zs" - }, - { - "title": "Kem - I Can't Stop Loving You (Karaoke)", - "id": "1BrEmgW8juI" - }, - { - "title": "Garbage - Androgyny (Karaoke EZ Sing)", - "id": "5m6TptNPZQo" - }, - { - "title": "Bob Marley And The Wailers - Could You Be Loved (Karaoke EZ Sing)", - "id": "QfrTGWpCUKY" - }, - { - "title": "70s Hits - Karaoke Lightning Round Game", - "id": "-YsfIL_iyBs" - }, - { - "title": "Poison - Nothin' But A Good Time (Bite-Size Karaoke)", - "id": "UnA7KTiTTlA" - }, - { - "title": "Right Said Fred - I'm Too Sexy (Bite-Size Karaoke)", - "id": "tZD-NtThI7o" - }, - { - "title": "Reba McEntire - Fancy (Bite-Size Karaoke)", - "id": "UGlwdsyQgpw" - }, - { - "title": "Three Dog Night - Joy To The World (Bite-Size Karaoke)", - "id": "DaVkeGVvbsU" - }, - { - "title": "Peaches & Herb - Shake Your Groove Thing (Bite-Size Karaoke)", - "id": "5VsNAtR8hY4" - }, - { - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Bite-Size Karaoke)", - "id": "6f74p_xVNrI" - }, - { - "title": "Sir Mix-A-Lot - Baby Got Back (Bite-Size Karaoke)", - "id": "S0nj2XaI8WI" - }, - { - "title": "Armando Manzanero - Dime Quien (Karaoke)", - "id": "k5RYM4y7DYs" - }, - { - "title": "Armando Manzanero - Yo Te Quiero (Karaoke)", - "id": "o9MA-2H3TCY" - }, - { - "title": "Lucia Mendez - Un Alma En Pena (Karaoke)", - "id": "s1ANboUA-4k" - }, - { - "title": "Armando Manzanero - Tengo (Karaoke)", - "id": "Hf9GR3MT4ZM" - }, - { - "title": "Armando Manzanero - Hoy (Karaoke)", - "id": "-CditJ5zXzE" - }, - { - "title": "Lil Baby - Crush A Lot (Karaoke EZ Sing)", - "id": "_-aq5wRHTPo" - }, - { - "title": "The Pretenders - 2000 Miles (Karaoke EZ Sing)", - "id": "YTwe9leX4sU" - }, - { - "title": "Jamie T. - Rabbit Hole (Karaoke EZ Sing)", - "id": "BvUQB-vVaKk" - }, - { - "title": "Bob Marley And The Wailers - No Woman No Cry (Karaoke EZ Sing)", - "id": "Nv8qyl62-n8" - }, - { - "title": "The Cure - Karaoke Lightning Round Game", - "id": "XjljC9tyH3I" - }, - { - "title": "High School Musical Hits - Karaoke Lightning Round Game", - "id": "iIOiprGE7dc" - }, - { - "title": "Girls Night Out - Karaoke Lightning Round Game", - "id": "FiarfcS8Cbw" - }, - { - "title": "Hannah Montana - Best Of Both Worlds (Karaoke EZ Sing)", - "id": "H0VGjrxbU7c" - }, - { - "title": "David Gray - Be Mine (Karaoke)", - "id": "8ksITlJWj8c" - }, - { - "title": "Badfinger - Day After Day (Karaoke EZ Sing)", - "id": "rOuy0pHnZYM" - }, - { - "title": "Finch - What It Is To Burn (Karaoke)", - "id": "Ef_zDWjR6Yg" - }, - { - "title": "Keane - Nothing In My Way (Karaoke)", - "id": "v0Me6fOb1Ho" - }, - { - "title": "Bob Marley And The Wailers - Three Little Birds (Karaoke EZ Sing)", - "id": "MvFagHy-1wM" - }, - { - "title": "Loretta Lynn - Karaoke Lightning Round Game", - "id": "7XBHAVXELO0" - }, - { - "title": "Jim Croce - Karaoke Lightning Round Game", - "id": "xpdtu-XVgwg" - }, - { - "title": "Culture Club - Karma Chameleon (Bite-Size Karaoke)", - "id": "QU918XwQ1Pg" - }, - { - "title": "Baha Men - Who Let The Dogs Out (Bite-Size Karaoke)", - "id": "d0eLkj7PPw4" - }, - { - "title": "Toni Basil - Mickey (Bite-Size Karaoke)", - "id": "F20ICaOI81M" - }, - { - "title": "Freda Payne - Band Of Gold (Bite-Size Karaoke)", - "id": "M2V7uqwrSew" - }, - { - "title": "Charly Garcรญa - No Voy En Tren (Karaoke)", - "id": "dBxdK-6O91A" - }, - { - "title": "Jaci Velasquez - Como Se Cura Una Herida (Karaoke)", - "id": "E8babHTTbB8" - }, - { - "title": "Inspector - Amargo Adios (Karaoke)", - "id": "Rkw4R16knMk" - }, - { - "title": "Julio Iglesias - Me Olvide De Vivir (Karaoke)", - "id": "6-l3V9jR0hQ" - }, - { - "title": "Los รngeles Azules - Sin Ti No Se Vivir (Karaoke)", - "id": "Fbj_sYFHkw4" - }, - { - "title": "Los รngeles Azules - El Liston De Tu Pelo (Karaoke)", - "id": "fRG3ADWY3y8" - }, - { - "title": "Los Autenticos Decadentes - Corazon (Karaoke)", - "id": "CfnDEZSQ8zg" - }, - { - "title": "Los รngeles Azules - Como Te Voy A Olvidar (Karaoke)", - "id": "3GCPLT5qsmk" - }, - { - "title": "Caifanes - Los Dioses Ocultos (Karaoke)", - "id": "5GWPd7yqmgc" - }, - { - "title": "Caifanes - La Celula Que Explota (Karaoke)", - "id": "ykAFkxYjOlI" - }, - { - "title": "Disney Ditties - Karaoke Lightning Round Game", - "id": "BrCDBoIZEM4" - }, - { - "title": "Bill Withers - Ain't No Sunshine (Bite-Size Karaoke)", - "id": "1BTKRBI0G3U" - }, - { - "title": "Bill Withers - Lean On Me (Bite-Size Karaoke)", - "id": "mGF1W4sIERU" - }, - { - "title": "Reik - Con La Cara En Alto (Karaoke)", - "id": "tWbNwATTI4g" - }, - { - "title": "Worth the 'Wait' - Karaoke Lightning Round Game", - "id": "PFwv-NM5m90" - }, - { - "title": "Chubby Checker - Let's Twist Again (Bite-Size Karaoke)", - "id": "8AVJd-KdsZg" - }, - { - "title": "Fleetwood Mac - Karaoke Lightning Round Game", - "id": "ClZvHO8V9Io" - }, - { - "title": "Thompson Twins - Hold Me Now (Bite-Size Karaoke)", - "id": "LBoV73xokQs" - }, - { - "title": "Going 'Crazy' - Karaoke Lightning Round Game", - "id": "cDh59M1RLwk" - }, - { - "title": "Godsmack - Serenity (Bite-Size Karaoke)", - "id": "mf35wF2XlqY" - }, - { - "title": "Jim Croce - Bad Bad Leroy Brown (Bite-Size Karaoke)", - "id": "Az-qb8DZYJA" - }, - { - "title": "Elton John - Crocodile Rock (Bite-Size Karaoke)", - "id": "NW2Jd68odpc" - }, - { - "title": "Juice Newton - Queen Of Hearts (Bite-Size Karaoke)", - "id": "mJZGqqbKsNo" - }, - { - "title": "Broadway Bound - Karaoke Lightning Round Game", - "id": "vOjpxZb9CBk" - }, - { - "title": "Gloria Estefan - Mi Buen Amor (Karaoke)", - "id": "NsRm1hs33ds" - }, - { - "title": "Grupo Miramar - Una Lagrima Y Un Recuerdo (Karaoke)", - "id": "qiAqDV0rzzk" - }, - { - "title": "Grupo Bryndis - Por Que Me Enamore (Karaoke)", - "id": "yrov2X5PyMg" - }, - { - "title": "Gloria Trevi - Con Los Ojos Cerrados (Karaoke)", - "id": "INowkqtUkxU" - }, - { - "title": "Gloria Estefan - Tu Fotografia (Karaoke)", - "id": "0dX0wIMUOVc" - }, - { - "title": "Cher - Karaoke Lightning Round Game", - "id": "MbszkKpT5iE" - }, - { - "title": "Gloria Estefan - No Te Olvidare (Karaoke)", - "id": "iAylmh8VDgA" - }, - { - "title": "Gloria Estefan - No Sera Facil (Karaoke)", - "id": "NhSNI1jhzsQ" - }, - { - "title": "Gloria Estefan - Mi Tierra (Karaoke)", - "id": "GffD5tTQqbM" - }, - { - "title": "Armando Manzanero - Felicidad (Karaoke)", - "id": "gAk5oYz498U" - }, - { - "title": "Ana Gabriel - Luna (Karaoke)", - "id": "969-HNJLOBQ" - }, - { - "title": "Gloria Estefan - Abriendo Puertas (Karaoke)", - "id": "dWLFWsas7dg" - }, - { - "title": "Gisselle - Huele A Peligro (Karaoke)", - "id": "tKCWMK7zD9o" - }, - { - "title": "Gisselle, Sergio Vargas - Perdoname, Olvidalo (Karaoke)", - "id": "iWVKEXUWRzA" - }, - { - "title": "Gilberto Santa Rosa - Yo No Te Pido (Karaoke)", - "id": "PBTdBzK_ew4" - }, - { - "title": "Gilberto Santa Rosa - Un Amor Para La Historia (Karaoke)", - "id": "UIzFCzjmYFI" - }, - { - "title": "Gilberto Santa Rosa - Te Propongo (Karaoke)", - "id": "Z-hnI1SZHkw" - }, - { - "title": "Gilberto Santa Rosa - Por La Herida De Un Amor (Karaoke)", - "id": "S7Sw3aEF2gk" - }, - { - "title": "Gilberto Santa Rosa - Perdoname (Karaoke)", - "id": "odf-h1-XNBY" - }, - { - "title": "Gilberto Santa Rosa - Pensando En Ti (Karaoke)", - "id": "NAom3OoiwIE" - }, - { - "title": "Gilberto Santa Rosa - No Pense Enamorarme Otra Vez (Karaoke)", - "id": "aJQpYOHu5LU" - }, - { - "title": "Gilberto Santa Rosa - No Me Dejes Solo (Karaoke)", - "id": "s2pgDXgG870" - }, - { - "title": "Gilberto Santa Rosa - Dejame Sentirte (Karaoke)", - "id": "T6KE1tBPcpQ" - }, - { - "title": "Songs about Rock & Roll - Karaoke Lightning Round Game", - "id": "9CEUc0y-TK0" - }, - { - "title": "Kenny Rogers - Through The Years (Bite-Size Karaoke)", - "id": "NR3E-2cA0_8" - }, - { - "title": "Billy Ray Cyrus - Achy Breaky Heart (Bite-Size Karaoke)", - "id": "Gobsvc8WLxw" - }, - { - "title": "Marty Robbins - El Paso (Bite-Size Karaoke)", - "id": "sOJBGdnLVuw" - }, - { - "title": "Richard Marx - Hold On To The Nights (Bite-Size Karaoke)", - "id": "NAh0auJB3qs" - }, - { - "title": "Lee Greenwood - God Bless The USA (Bite-Size Karaoke)", - "id": "TfyyLCdfl3U" - }, - { - "title": "The Judds - Cry Myself To Sleep (Bite-Size Karaoke)", - "id": "s5_HzKPMvf4" - }, - { - "title": "Clint Black - Killin' Time (Bite-Size Karaoke)", - "id": "tSCw8sqhc4w" - }, - { - "title": "Teen Beach Movie - Cruisin' For A Bruisin' (Karaoke EZ Sing)", - "id": "w2dbstsAtII" - }, - { - "title": "From Cinderella - Bibbidi Bobbidi Boo (Karaoke)", - "id": "C8ESMY_OTec" - }, - { - "title": "Mary Poppins - Chim Chim Cheree (Karaoke)", - "id": "IP46mEyDKIo" - }, - { - "title": "The Little Mermaid - Under The Sea (Karaoke)", - "id": "Zi61omu23RU" - }, - { - "title": "The Little Mermaid - Poor Unfortunate Souls (Karaoke)", - "id": "d-z6EXYs7Sw" - }, - { - "title": "Garbage - Shut Your Mouth (Karaoke)", - "id": "ydZkZUG-Ynk" - }, - { - "title": "R.E.M. - Leaving New York (Karaoke EZ Sing)", - "id": "nWyM3oxyAXI" - }, - { - "title": "Britney Spears - Don't Hang Up (Karaoke)", - "id": "s98r1ryy57k" - }, - { - "title": "Craig David - World Filled With Love (Karaoke EZ Sing)", - "id": "9ZUB5WrF9Hc" - }, - { - "title": "Arrow - Hot Hot Hot (Karaoke EZ Sing)", - "id": "YR6WEttxJJU" - }, - { - "title": "Disney Hits - Karaoke Lightning Round Game", - "id": "uW46pDPanqA" - }, - { - "title": "Elton John - Karaoke Lightning Round Game", - "id": "e0MEilCxR_c" - }, - { - "title": "Jenni Rivera - Resulta (Karaoke)", - "id": "QtOUVPJd-c0" - }, - { - "title": "Cedรญ - La Arrolladora Banda El Limon (Karaoke)", - "id": "d8HbZorwD_c" - }, - { - "title": "Reik, Wisin & Yandel - Duele (Karaoke)", - "id": "WY963LY_0i0" - }, - { - "title": "Menudo - Quiero Ser (Karaoke)", - "id": "LCZ-etvam-4" - }, - { - "title": "Maldita Vecindad - Pachuco (Karaoke)", - "id": "IgDLD3pdx8Y" - }, - { - "title": "Juan Gabriel - Gracias Al Amor (Karaoke)", - "id": "mnINCUEOvlE" - }, - { - "title": "80s Rock Anthems - Karaoke Lightning Round Game", - "id": "5kUyAiyeCGc" - }, - { - "title": "The Youngbloods - Get Together (Bite-Size Karaoke)", - "id": "HZvCnUQIaXo" - }, - { - "title": "Bobby McFerrin - Don't Worry Be Happy (Bite-Size Karaoke)", - "id": "-2E26W382Gs" - }, - { - "title": "Belanova - No Me Voy A Morir (Karaoke)", - "id": "FVRnoZ7791E" - }, - { - "title": "Mach & Daddy - La Botella (Karaoke)", - "id": "X-J9F-26RGc" - }, - { - "title": "Marc Anthony - Cambio De Piel (Karaoke)", - "id": "Lhc9uHg-LDc" - }, - { - "title": "Natalia Lafourcade - En El 2000 (Karaoke)", - "id": "QEpLaZ5J6UI" - }, - { - "title": "Tito Rojas - Usted (Karaoke)", - "id": "OT4x7xSa5Cg" - }, - { - "title": "Gloria Gaynor - Sobrevivire (Karaoke)", - "id": "fx2lLVVq8dE" - }, - { - "title": "Beastie Boys - (You Gotta) Fight For Your Right (To Party) (Bite Size Karaoke)", - "id": "WjMtOY1N5zM" - }, - { - "title": "Peabo Bryson & Regina Belle - A Whole New World (Aladdin's Theme) (Bite-Size Karaoke)", - "id": "CbOvXRKfmh8" - }, - { - "title": "Pablo Milanรฉs - Yolanda (Karaoke)", - "id": "g592gZ10QKY" - }, - { - "title": "Tradicional Infantil - Raton Vaquero (Karaoke)", - "id": "aGSJI6Kdgz8" - }, - { - "title": "Reyli - Amor Del Bueno (Karaoke)", - "id": "n8W04EIYcHw" - }, - { - "title": "Alejandro Sanz - Amiga Mia (Karaoke)", - "id": "LKzMmhHROxc" - }, - { - "title": "Kenny Rogers - Karaoke Lightning Round Game", - "id": "sYn-U72S4hk" - }, - { - "title": "Bob Marley - Positive Vibration (Karaoke EZ Sing)", - "id": "vkUGspJLjvw" - }, - { - "title": "From The Movie Hercules - I Won't Say I'm In Love (Karaoke)", - "id": "RtLZzWR8FDE" - }, - { - "title": "Gloria Gaynor - I Will Survive (Bite-Size Karaoke)", - "id": "sU5Ls7OGkEY" - }, - { - "title": "Pilar Montenegro - Cuando Estamos Juntos (Karaoke)", - "id": "l0VnGaflD-M" - }, - { - "title": "Billy Joel - Karaoke Lightning Round Game", - "id": "2UlX781ayYM" - }, - { - "title": "Stereophonics - Just Looking (Karaoke EZ Sing)", - "id": "wWmS4MwIAow" - }, - { - "title": "Pedro Fernรกndez - Si Te Vas (Karaoke)", - "id": "on-IeblFkok" - }, - { - "title": "Sandro - Se Te Nota (Karaoke)", - "id": "kAS2vi7uzWQ" - }, - { - "title": "Vicente Fernรกndez - Que Te Vaya Bonito (Karaoke)", - "id": "ksRyOBVnE9o" - }, - { - "title": "Pilar Montenegro - Quitame Ese Hombre (Karaoke)", - "id": "9OhAkemg9io" - }, - { - "title": "McFly - That Girl (Karaoke EZ Sing)", - "id": "nmrazIN3UW0" - }, - { - "title": "icehouse - Crazy (Karaoke)", - "id": "l8OfTXIPFQ4" - }, - { - "title": "Fuel - Million Miles (Karaoke EZ Sing)", - "id": "OZ1HSbCMYHc" - }, - { - "title": "Pablo Montero - Que Voy A Hacer Sin Ti (Karaoke)", - "id": "bzQe7r1PhtI" - }, - { - "title": "Rey Ruiz - No Me Acostumbro (Karaoke)", - "id": "2yNqgwgO8RE" - }, - { - "title": "Paulina Rubio - Nieva Nieva (Karaoke)", - "id": "dtGphE5tkcU" - }, - { - "title": "Roberto Jordรกn - Amor De Estudiante (Karaoke)", - "id": "ocpDPBAZbao" - }, - { - "title": "Pepe Aguilar - Te Dejo Un Paรฑuelo (Karaoke)", - "id": "_kmOqlJ2N8M" - }, - { - "title": "Palito Ortega - La Felicidad (Karaoke)", - "id": "UNBRRKcD44E" - }, - { - "title": "Los Temerarios - Pequeรฑa (Karaoke)", - "id": "Ir7-qP1ulIQ" - }, - { - "title": "Juan Luis Guerra 4.40 - Tus Besos (Karaoke)", - "id": "JmjxTk8gWng" - }, - { - "title": "Frankie Ruiz - Deseandote (Karaoke)", - "id": "fZe1JZGyi3s" - }, - { - "title": "Emmanuel - Detenedla Ya (Karaoke)", - "id": "X44fn1uGee0" - }, - { - "title": "Alejandro Sanz - Como Te Echo De Menos (Karaoke)", - "id": "BIHflyEe2U0" - }, - { - "title": "Ana Bรกrbara - Todo Lo Aprendi De Ti (Karaoke)", - "id": "nzwT5lCUeFw" - }, - { - "title": "From The Broadway Musical Godspell - Learn Your Lessons Well (Karaoke)", - "id": "KyzD_7uSJ6o" - }, - { - "title": "From The Broadway Musical Godspell - Day By Day (Karaoke)", - "id": "BISlFGdJVD8" - }, - { - "title": "From The Broadway Musical Godspell - Save The People (Karaoke)", - "id": "-DbQXfSWaEk" - }, - { - "title": "From The Broadway Musical Godspell - Prepare Ye The Way Of The Lord (Karaoke)", - "id": "hgWozqq0--c" - }, - { - "title": "From The Broadway Musical Godspell - Prologue (Karaoke)", - "id": "mgFVA5AQaFA" - }, - { - "title": "Hoobastank ft. Vanessa Amorosi - The Letter (Karaoke EZ Sing)", - "id": "t0zxq4yIMtk" - }, - { - "title": "Nine Inch Nails - Piggy [Acoustic] (Karaoke EZ Sing)", - "id": "sMUh8tQfLEE" - }, - { - "title": "B-52's - Good Stuff (Karaoke EZ Sing)", - "id": "ccuoKwH5QLg" - }, - { - "title": "Moby - Extreme Ways (Karaoke)", - "id": "Ob4CG2No1oo" - }, - { - "title": "Marshmello - Proud (Karaoke)", - "id": "HxJs-sMiHTc" - }, - { - "title": "Skylar Grey - Angel With Tattoos (Karaoke EZ Sing)", - "id": "6RnHw1yqLqY" - }, - { - "title": "Billie Eilish - No Time To Die (Karaoke EZ Sing)", - "id": "h3xsdXJTmgI" - }, - { - "title": "Carly Rae Jepsen - Take A Picture (Karaoke EZ Sing)", - "id": "F0vhxopvsc0" - }, - { - "title": "Robyn - Honey (Karaoke)", - "id": "MrmGwitFrkc" - }, - { - "title": "Billie Eilish - Goodbye (Karaoke EZ Sing)", - "id": "tEPLSOzSIic" - }, - { - "title": "Oklahoma! The Musical - Kansas City (Karaoke)", - "id": "TlmEmJ5QecY" - }, - { - "title": "Oklahoma! The Musical - The Surrey With the Fringe on Top (Karaoke)", - "id": "wA1JPHd87jQ" - }, - { - "title": "Oklahoma! The Musical - Oh, What a Beautiful Mornin' (Karaoke)", - "id": "Z78e71roInE" - }, - { - "title": "South Pacific, The Musical - This Nearly Was Mine (Karaoke)", - "id": "AvVPEok4iRc" - }, - { - "title": "South Pacific, The Musical - You've Got to Be Carefully Taught (Karaoke)", - "id": "zCDkvcpEoEA" - }, - { - "title": "Frozen 2 - Lost in the Woods (Karaoke)", - "id": "nQSwJV7AwDs" - }, - { - "title": "Frozen 2 (Disney Original Masters) - Reindeer(s) Are Better Than People (Karaoke)", - "id": "9tR2PMOFSRA" - }, - { - "title": "I Just Can't Wait to Be King [From The Lion King] (Karaoke EZ Sing)", - "id": "LZwXPrHngKM" - }, - { - "title": "Zombies - My Year (Karaoke EZ Sing)", - "id": "991kolXPXlA" - }, - { - "title": "Fleetwood Mac - The Chain (Karaoke)", - "id": "JmT-xOi7GmY" - }, - { - "title": "Jethro Tull - Life Is A Long Song (Karaoke EZ Sing)", - "id": "oJgUQcM_4wQ" - }, - { - "title": "Garbage - Special (Karaoke EZ Sing)", - "id": "ua0mMeTad2o" - }, - { - "title": "Steely Dan - Peg (Karaoke EZ Sing)", - "id": "FUy5YXtGvDs" - }, - { - "title": "Feeder - Just The Way I'm Feeling (Karaoke EZ Sing)", - "id": "Y6-X4N5etZw" - }, - { - "title": "Billie Eilish - Ilomilo (Karaoke)", - "id": "kc0OmqbO1Jc" - }, - { - "title": "Lil Baby - Global (Karaoke EZ Sing)", - "id": "txsdPD9acQ4" - }, - { - "title": "Jordan Pruitt - Celebrate Love (Karaoke EZ Sing)", - "id": "o3CtgrAs3ts" - }, - { - "title": "Conrad Sewell - Healing Hands (Karaoke)", - "id": "1UacbMnTo-U" - }, - { - "title": "South Pacific, The Musical - Honey Bun (Karaoke)", - "id": "ThbvgwC28eQ" - }, - { - "title": "South Pacific, The Musical - Happy Talk (Karaoke)", - "id": "UB0dLHj_ldA" - }, - { - "title": "South Pacific, The Musical - This is How it Feels (Karaoke)", - "id": "Yi1U0EGKRxQ" - }, - { - "title": "South Pacific, The Musical - Younger Than Springtime (Karaoke)", - "id": "SIagDXYRVb0" - }, - { - "title": "South Pacific, The Musical - A Wonderful Guy (Karaoke)", - "id": "RQg65Qmu0-U" - }, - { - "title": "The Little Mermaid - Part Of Your World (Karaoke)", - "id": "up61MxagX_8" - }, - { - "title": "From The Movie Frozen - Love Is An Open Door (Karaoke)", - "id": "pwPp6URLhAE" - }, - { - "title": "From The Movie Frozen - In Summer (Karaoke)", - "id": "NBKXZwquXsA" - }, - { - "title": "Suzi Quatro - 48 Crash (Karaoke EZ Sing)", - "id": "uynFM53WNSg" - }, - { - "title": "W.A.S.P. - I Wanna Be Somebody (Karaoke EZ Sing)", - "id": "5uEcPPkthrc" - }, - { - "title": "Bob Marley & The Wailers - Jammin' (Karaoke)", - "id": "GQpVhQL7NC4" - }, - { - "title": "Christina Aguilera - Twice (Karaoke)", - "id": "ajgnFhpq6uI" - }, - { - "title": "Volbeat - Last Day Under The Sun (Karaoke EZ Sing)", - "id": "2dRA9u7QcW0" - }, - { - "title": "Skylar Grey - Shame On You (Karaoke EZ Sing)", - "id": "wDbDgjrCE6w" - }, - { - "title": "Idina Menzel And Evan Rachel Wood (Frozen 2) - Show Yourself (Karaoke EZ Sing)", - "id": "zFiaLbMxos4" - }, - { - "title": "Elvis Presley - Clean Up Your Own Back Yard (Karaoke)", - "id": "IIiKxDPDkmo" - }, - { - "title": "South Pacific, The Musical - Some Enchanted Evening (Reprise) (Karaoke)", - "id": "muRnkL9g7yg" - }, - { - "title": "South Pacific, The Musical - I'm Gonna Wash That Man Right Outa My Hair (Karaoke)", - "id": "aNVoDvWcAcg" - }, - { - "title": "South Pacific, The Musical - My Girl Back Home (Karaoke)", - "id": "3ZNBjRSMAxE" - }, - { - "title": "South Pacific, The Musical - Bali Ha'i (Karaoke)", - "id": "welCm4QPMrI" - }, - { - "title": "South Pacific, The Musical - There is Nothin' Like a Dame (Karaoke)", - "id": "kb4XCcP0HvA" - }, - { - "title": "Garbage - I Think I'm Paranoid (Karaoke EZ Sing)", - "id": "QyLrth9soX0" - }, - { - "title": "The Cardigans - Erase Rewind (Karaoke EZ Sing)", - "id": "DIm16pfRy2s" - }, - { - "title": "Christina Perri - Burning Gold (Karaoke EZ Sing)", - "id": "2Ur2xXPU2nE" - }, - { - "title": "Bazzi - Paradise (Clean) (Karaoke EZ Sing)", - "id": "SG9fgo0d6wI" - }, - { - "title": "Badfinger - Baby Blue (Karaoke)", - "id": "s8HklzeG6p4" - }, - { - "title": "Zombies 2 - We Got This (Karaoke)", - "id": "E1WbdK7_CoQ" - }, - { - "title": "Offset, Metro Boomin - Ric Flair Drip (Karaoke)", - "id": "2q-3pjOyn00" - }, - { - "title": "Frozen 2 - All Is Found (Karaoke EZ Sing)", - "id": "k5Hl1Z0ZnqA" - }, - { - "title": "From The Movie Aquaman - Everything I Need (Karaoke)", - "id": "x-tpq6HpmIY" - }, - { - "title": "LMFAO ft. Lauren Bennett and Goonrock - Party Rock Anthem (Karaoke EZ Sing)", - "id": "OLncCDsX20w" - }, - { - "title": "J Cole - KOD (Karaoke EZ Sing)", - "id": "KlGUSUu8a-c" - }, - { - "title": "Songs From Rent - Take Me Or Leave Me (Karaoke)", - "id": "3mz4984-raE" - }, - { - "title": "Songs From Rent - Without You (Karaoke)", - "id": "pN3_bL1wBH0" - }, - { - "title": "Songs From Rent - Halloween (Karaoke)", - "id": "mmowFVI0zQA" - }, - { - "title": "Songs From Rent - What You Own (Karaoke)", - "id": "dIrJJmz8jiI" - }, - { - "title": "Songs From Rent - Your Eyes (Karaoke)", - "id": "7-9x3fZjVEg" - }, - { - "title": "Enrique Iglesias - Love To See You Cry (Karaoke EZ Sing)", - "id": "635x7_UCj5s" - }, - { - "title": "Nine Inch Nails - Burn (Acoustic) (Karaoke EZ Sing)", - "id": "V67LsMNgcQs" - }, - { - "title": "Maximo Park - Graffiti (Karaoke)", - "id": "dFwZvnB-O9k" - }, - { - "title": "Badfinger - No Matter What (Karaoke EZ Sing)", - "id": "czJQRuXCbdQ" - }, - { - "title": "Keith Whitley - Some Old Side Road (Karaoke)", - "id": "EB_1-yc2r78" - }, - { - "title": "Lionel Richie - Angel (Karaoke)", - "id": "P4HOQbR_Y_8" - }, - { - "title": "Jolie & The Wanted - Boom (Karaoke)", - "id": "jd9BX5y0baw" - }, - { - "title": "Elvis Presley - The Next Step Is Love (Karaoke)", - "id": "NbFIf7F4PpE" - }, - { - "title": "Goo Goo Dolls - Broadway (Karaoke)", - "id": "QO83-1o-azU" - }, - { - "title": "Johnny Preston - Running Bear (Karaoke)", - "id": "5Gsi9DzOdh8" - }, - { - "title": "Randy Newman - You've Got A Friend In Me (Karaoke EZ Sing)", - "id": "pHBQveSWq4E" - }, - { - "title": "Third Eye Blind - How's It Going To Be (Karaoke)", - "id": "_XaTOwSw0Jw" - }, - { - "title": "Sawyer Brown - 800 Pound Jesus (Karaoke)", - "id": "TtIWAJa0L88" - }, - { - "title": "Gary Allan - Runaway (Karaoke)", - "id": "v4GJybsj0_E" - }, - { - "title": "Mel Tillis - I Ain't Never (Karaoke)", - "id": "ADCRPLuEKRY" - }, - { - "title": "Gene Watson - Speak Softly (You're Talking To My Heart) (Karaoke)", - "id": "SLzrGTj_RkQ" - }, - { - "title": "Gene Watson - Love In The Hot Afternoon (Karaoke)", - "id": "OahG2B2EVo8" - }, - { - "title": "Faith Hill - What's In It For Me (Karaoke)", - "id": "V4dMsj7tjxo" - }, - { - "title": "Faith Hill - There Will Come A Day (Karaoke)", - "id": "-3wd2OpxEcE" - }, - { - "title": "Wynonna - Can't Nobody Love You (Like I Do) (Karaoke)", - "id": "t1a-ZKAZUCg" - }, - { - "title": "NSYNC, Gloria Estefan - Music Of My Heart (Karaoke)", - "id": "Md7brJ4qK8Q" - }, - { - "title": "NSYNC - For The Girl Who Has Everything (Karaoke)", - "id": "zCWm7HRJwT4" - }, - { - "title": "Lee Ann Womack - Don't Tell Me (Karaoke)", - "id": "hvqD6pyQI9M" - }, - { - "title": "Mickey Gilley - Talk To Me (Karaoke)", - "id": "EicpPr02TAE" - }, - { - "title": "Don Williams - Love Me Over Again (Karaoke)", - "id": "a2QylHcJ4-c" - }, - { - "title": "Lisa Angell - I Wear Your Love (Karaoke)", - "id": "F2bpXkHAbYM" - }, - { - "title": "Standard, Patriotic - God Bless America (Karaoke)", - "id": "qjypeAFkNf4" - }, - { - "title": "Monica - Angel Of Mine (Karaoke)", - "id": "zXP9VcPvoZ0" - }, - { - "title": "Tim McGraw - My Best Friend (Karaoke)", - "id": "IvEa4B991hI" - }, - { - "title": "Tim McGraw - Seventeen (Karaoke)", - "id": "1bCtCGvr3jk" - }, - { - "title": "Doug Stone - Make Up In Love (Karaoke)", - "id": "muJ7aDgcQ3k" - }, - { - "title": "Sabrina Carpenter - Rescue Me (Karaoke EZ Sing)", - "id": "u2xjBUWrgyg" - }, - { - "title": "John Michael Montgomery - Hello L. O. V. E (Karaoke)", - "id": "28T_AtGZB9A" - }, - { - "title": "Cars, The Movie - Our Town (Karaoke)", - "id": "y4JcbK-15gA" - }, - { - "title": "Hannah Montana - If We Were A Movie (Karaoke)", - "id": "_eIUzL6tV10" - }, - { - "title": "High School Musical - Start of Something New (Karaoke)", - "id": "Sr7BrpryNMg" - }, - { - "title": "Frozen 2 - When I Am Older (Karaoke EZ Sing)", - "id": "tnHXfkaQu_k" - }, - { - "title": "J Cole - 1985 (Intro To The Fall Off) (Karaoke EZ Sing)", - "id": "gIK8QSE3hPQ" - }, - { - "title": "Kristen Bell, Idina Menzel, Josh Gad, Jonathan Groff - Some Things Never Change (Karaoke)", - "id": "FeY0O23mFPU" - }, - { - "title": "South Pacific, The Musical - Dites-Moi (Karaoke)", - "id": "d2Lc92YSCNs" - }, - { - "title": "South Pacific, The Musical - Cockeyed Optimist (Karaoke)", - "id": "rYeT3qDxwnk" - }, - { - "title": "Kristen Bell - The Next Right Thing (Karaoke EZ Sing)", - "id": "kBh7KG0JOdw" - }, - { - "title": "South Pacific, The Musical - Twin Soliloquies (Karaoke)", - "id": "UgQHYJu1yhE" - }, - { - "title": "South Pacific, The Musical - Some Enchanted Evening (Karaoke)", - "id": "JxeZCpmazbw" - }, - { - "title": "Idina Menzel Ft Aurora - Into The Unknown (Karaoke)", - "id": "oi3mZrDHLr8" - }, - { - "title": "South Pacific, The Musical - Bloody Mary (Karaoke)", - "id": "RkXm9JJDA-c" - }, - { - "title": "The Editors - Papillon (Karaoke EZ Sing)", - "id": "VLHXvvHbHUw" - }, - { - "title": "Pet Shop Boys - Rent (Karaoke EZ Sing)", - "id": "DeFvJBc1QMs" - }, - { - "title": "Big And Rich - Look At You (Karaoke)", - "id": "G24Ivg5Xf2k" - }, - { - "title": "Garbage - Push It (Karaoke EZ Sing)", - "id": "PqQHcIydTBU" - }, - { - "title": "Deryl Dodd - Good Idea Tomorrow (Karaoke)", - "id": "a11Gegem6qA" - }, - { - "title": "David Gray - This Years Love (Karaoke EZ Sing)", - "id": "aAaXtIOGr58" - }, - { - "title": "Rent, The Musical - Rent (Karaoke)", - "id": "jhRmyz0THnM" - }, - { - "title": "Rent, The Musical - Out Tonight (Karaoke)", - "id": "aAw71dbCZjQ" - }, - { - "title": "Patty Loveless - Can't Get Enough (Karaoke)", - "id": "W4iSK8H_Im8" - }, - { - "title": "Don Williams - Lord, I Hope This Day Is Good (Karaoke)", - "id": "IljxBUCaJMw" - }, - { - "title": "Don Williams - I Wouldn't Want To Live If You Didn't Love Me (Karaoke)", - "id": "P0s06S_pxyQ" - }, - { - "title": "Crystal Gayle - You Never Miss A Real Good Thing (Karaoke)", - "id": "wfsud7L4KsA" - }, - { - "title": "Patsy Cline - Heartaches (Karaoke)", - "id": "nP-kauW6QIw" - }, - { - "title": "Steve Wariner - Road Trippin' (Karaoke)", - "id": "Ht9ICN18MA0" - }, - { - "title": "Patty Loveless - High On Love (Karaoke)", - "id": "6Zk83xx2gLU" - }, - { - "title": "Trisha Yearwood - There Goes My Baby (Karaoke)", - "id": "CwYOOzrcglk" - }, - { - "title": "Don Williams - It Must Be Love (Karaoke)", - "id": "VXT3oPXiIr8" - }, - { - "title": "Ty Herndon - A Man Holdin' On (Karaoke)", - "id": "s22-qn3naVM" - }, - { - "title": "LeAnn Rimes - God Bless America (Karaoke)", - "id": "w3hIMdEnYus" - }, - { - "title": "Tom T. Hall - Fox On The Run (Karaoke)", - "id": "CVFngmJcAjw" - }, - { - "title": "Sawyer Brown - Another Side (Karaoke)", - "id": "1BY3hreTj2E" - }, - { - "title": "Gary Allan - It Would Be You (Karaoke)", - "id": "qhZia2VpoeE" - }, - { - "title": "Randy Travis - Meet Me Under The Mistletoe (Karaoke)", - "id": "mPjBgz2BuvY" - }, - { - "title": "Billy Ocean - Suddenly (Karaoke)", - "id": "YpAxMB5pQMc" - }, - { - "title": "Jerry Reed - When You're Hot, You're Hot (Karaoke)", - "id": "oOUs8MaKA9M" - }, - { - "title": "Jessi Colter - I'm Not Lisa (Karaoke)", - "id": "FWGjcAdz9-Q" - }, - { - "title": "Mila Mason - Closer To Heaven (Karaoke)", - "id": "T8sTxNYAAsc" - }, - { - "title": "Tracy Lawrence - The Coast Is Clear (Karaoke)", - "id": "edn8Y30-zu4" - }, - { - "title": "LeAnn Rimes - Cowboy's Sweetheart (Karaoke)", - "id": "0q7mxTXqfbk" - }, - { - "title": "Tim McGraw - Everywhere (Karaoke)", - "id": "4t9h4fCKjoE" - }, - { - "title": "Tracy Byrd - Don't Love Make A Diamond Shine (Karaoke)", - "id": "ggZAVUUEbwE" - }, - { - "title": "Trisha Yearwood - How Do I Live (Karaoke)", - "id": "nQwG2a_ajTw" - }, - { - "title": "Ty Herndon - Loved Too Much (Karaoke)", - "id": "IBQ-nXNYEzo" - }, - { - "title": "Ingrid Andress - Lady Like (Karaoke EZ Sing)", - "id": "-5r4SB4Pg7g" - }, - { - "title": "2 Chainz - Iโ€™m Different (Clean) (Karaoke EZ Sing)", - "id": "aFiDQ0vsUrQ" - }, - { - "title": "Billie Eilish - Listen Before I Go (Karaoke EZ Sing)", - "id": "IKoAVefF3ZU" - }, - { - "title": "Young Dolph - By Mistake (Karaoke)", - "id": "vKvt3TzkYBk" - }, - { - "title": "Lorrie Morgan - Good As I Was To You (Karaoke)", - "id": "AKAmad5OR8E" - }, - { - "title": "Diamond Rio - Holdin' (Karaoke)", - "id": "nWSpi9ksei4" - }, - { - "title": "Ty Herndon - She Wants To Be Wanted Again (Karaoke)", - "id": "KGlSPHeqDlQ" - }, - { - "title": "Gary Allan - Her Man (Karaoke)", - "id": "7WeFFZQhaH4" - }, - { - "title": "Loretta Lynn - Before I'm Over You (Karaoke)", - "id": "1NEC7CxKwWk" - }, - { - "title": "Loretta Lynn - Dear Uncle Sam (Karaoke)", - "id": "bftWFL96Dv4" - }, - { - "title": "Vince Gill, Sheryl Crow - What You Give Away (Karaoke)", - "id": "zHP_pQl-ySk" - }, - { - "title": "Kid Rock - Amen (Karaoke)", - "id": "eQYP9HvgOHM" - }, - { - "title": "Jimmy Buffett - Tin Cup Chalice (Karaoke EZ Sing)", - "id": "hXAr_LmYH8Q" - }, - { - "title": "Pretenders - Don't Get Me Wrong (Karaoke EZ Sing)", - "id": "MJnDCJGkTCg" - }, - { - "title": "Moby - Porcelain (Karaoke)", - "id": "anO0Rai-OLw" - }, - { - "title": "McFly - Obviously (Karaoke)", - "id": "AtItE_A4jss" - }, - { - "title": "Lady And The Tramp (Disney Original Master) - He's A Tramp (Karaoke)", - "id": "AJcbZWB1gyM" - }, - { - "title": "The B-52s - Roam (Karaoke)", - "id": "nzYvOlfYGzs" - }, - { - "title": "Phineas And Pherb (Disney Original Master) - Ain't Got Rhythm (Karaoke EZ Sing)", - "id": "iKdiczhJbqs" - }, - { - "title": "Rent, The Musical - I'll Cover You (Karaoke)", - "id": "dXppMu_eK7g" - }, - { - "title": "Rent, The Musical - Seasons Of Love (Karaoke)", - "id": "G8YsCd69MxI" - }, - { - "title": "Princess And The Frog (Disney Original Master) - Almost There (Karaoke EZ Sing)", - "id": "aAbWvdGOlA4" - }, - { - "title": "The Little Mermaid (Disney Original Master) - Kiss The Girl (Karaoke)", - "id": "ixWfsvHH-xc" - }, - { - "title": "Mickey Mouse Clubhouse Theme Song (Karaoke)", - "id": "b4lgi2WrmFU" - }, - { - "title": "Reba McEntire - On My Own (Karaoke)", - "id": "_8JKF_73Oh0" - }, - { - "title": "Lorrie Morgan, Jon Randall - By My Side (Karaoke)", - "id": "nrBf6ctVs-o" - }, - { - "title": "Daron Norwood - If It Wasn't For Her I Wouldn't Have You (Karaoke)", - "id": "hXmOOjrQPGI" - }, - { - "title": "Kenny Chesney - Back In My Arms Again (Karaoke)", - "id": "QLQOdz_6le4" - }, - { - "title": "Neal McCoy - You Gotta Love That (Karaoke)", - "id": "SMFZxdEDTOk" - }, - { - "title": "Mandy Barnett - Now That's All Right With Me (Karaoke)", - "id": "rBD4eRPVvvE" - }, - { - "title": "Dwight Yoakam - Nothing (Karaoke)", - "id": "eoEZgQBngTM" - }, - { - "title": "Urban Christmas - Hark! The Herald Angels Sing (Karaoke)", - "id": "IbnmBWcT_gA" - }, - { - "title": "Tim McGraw - Can't Be Really Gone (Karaoke)", - "id": "P0H5md0x8Wo" - }, - { - "title": "Hal Ketchum - Every Little Word (Karaoke)", - "id": "nPfE2EtA6Kk" - }, - { - "title": "Martina McBride - Safe In The Arms Of Love (Karaoke)", - "id": "DsEZtD2vz1g" - }, - { - "title": "Trisha Yearwood - I Wanna Go Too Far (Karaoke)", - "id": "Ym_TPfVgPDU" - }, - { - "title": "The Lovin' Spoonful - You Didn't Have To Be So Nice (Karaoke)", - "id": "bLp0pOH3JjI" - }, - { - "title": "Little Anthony & The Imperials - Hurt So Bad (Karaoke)", - "id": "Jg8BmETZbF4" - }, - { - "title": "Elvis Presley - A Fool Such As I (Karaoke)", - "id": "QjNlNqmSaKc" - }, - { - "title": "Tanya Tucker - Find Out What's Happenin' (Karaoke)", - "id": "Tpengfl7EnI" - }, - { - "title": "Sammy Kershaw - If You're Gonna Walk, I'm Gonna Crawl (Karaoke)", - "id": "K9H8E2ZkzaM" - }, - { - "title": "Tim McGraw - Refried Dreams (Karaoke)", - "id": "Nif7IhY27p4" - }, - { - "title": "Martina McBride - Where I Used To Have A Heart (Karaoke)", - "id": "G44KlrRaA0w" - }, - { - "title": "Martina McBride - Heart Trouble (Karaoke)", - "id": "j_RXSuT4rfY" - }, - { - "title": "Steve Wariner - Drive (Karaoke)", - "id": "XcU1k4Wx2E0" - }, - { - "title": "Patty Loveless - I Try To Think About Elvis (Karaoke)", - "id": "j3Kh1F70NEY" - }, - { - "title": "Neal McCoy - The City Put The Country Back In Me (Karaoke)", - "id": "lGQEn1OTndo" - }, - { - "title": "John Michael Montgomery - Be My Baby Tonight (Karaoke)", - "id": "hzIB3FiWGYM" - }, - { - "title": "Steve Wariner - It Won't Be Over You (Karaoke)", - "id": "SC-v9s4pxTU" - }, - { - "title": "Dwight Yoakam - Try Not To Look So Pretty (Karaoke)", - "id": "zDv1h5eeD9U" - }, - { - "title": "Linda Davis - Company Time (Karaoke)", - "id": "9LPSL659aTw" - }, - { - "title": "Tracy Byrd - Why Don't That Telephone Ring (Karaoke)", - "id": "mZ-dKKAoomI" - }, - { - "title": "Hal Ketchum - Someplace Far Away (Careful What You're Dreaming) (Karaoke)", - "id": "0dbi1cYMMeQ" - }, - { - "title": "Trisha Yearwood - The Song Remembers When (Karaoke)", - "id": "yUh81lBPMWE" - }, - { - "title": "Gospel - Southern - Children Go Where I Send Thee (Karaoke)", - "id": "mqOP4pSLrZo" - }, - { - "title": "Steve Winwood - Holding On (Karaoke)", - "id": "DZuFvfwCOoM" - }, - { - "title": "Duran Duran - All She Wants Is (Karaoke)", - "id": "03zQj4R_x1c" - }, - { - "title": "Debbie Gibson - Foolish Beat (Karaoke)", - "id": "6aW8oMpdRvI" - }, - { - "title": "Steve Winwood - Back In The High Life", - "id": "rUQ04bLHFxE" - }, - { - "title": "Loretta Lynn - In The Sweet Bye And Bye (Karaoke)", - "id": "p9_9u2i5cTE" - }, - { - "title": "Loretta Lynn - Somebody Somewhere (Don't Know What He's Missin' Tonight) (Karaoke)", - "id": "Ys0gZWgXKFg" - }, - { - "title": "Jim Reeves - Blue Boy (Karaoke)", - "id": "u4NwGwSBzvk" - }, - { - "title": "Mark Wills - Back At One (Karaoke)", - "id": "J2bM3Y6UCPg" - }, - { - "title": "Sonny James - My Love (Karaoke)", - "id": "jDnuJ1ywiqo" - }, - { - "title": "Mel Tillis - Heart Healer (Karaoke)", - "id": "qVSwdTzlpVI" - }, - { - "title": "Webb Pierce - Why Baby Why (Karaoke)", - "id": "NUQGM-Tk03g" - }, - { - "title": "Shane Minor - I Think You're Beautiful (Karaoke)", - "id": "s1QrHudWzko" - }, - { - "title": "Gene Watson - Got No Reason Now For Going Home (Karaoke)", - "id": "WcPWe87ikdM" - }, - { - "title": "Future - Rocket Ship (Karaoke EZ Sing)", - "id": "fsvLPC8YlBg" - }, - { - "title": "XXXTENTACION - Hope (Karaoke)", - "id": "8j3LuBu_0DI" - }, - { - "title": "Lil Baby - My Dawg (Karaoke EZ Sing)", - "id": "ROLRGXEbLwo" - }, - { - "title": "Patsy Cline - Crazy Arms (Karaoke)", - "id": "8iR0WvTcB1k" - }, - { - "title": "Michael Bolton - When I'm Back On My Feet Again (Karaoke)", - "id": "mhf8B5DcIKI" - }, - { - "title": "Kentucky Headhunters - Rag Top (Karaoke)", - "id": "z2g7rbWQW5c" - }, - { - "title": "Lorrie Morgan - Something In Red (Karaoke)", - "id": "DIfvGN-QTW4" - }, - { - "title": "Kiss - I Was Made For Lovin' You (Karaoke)", - "id": "cZJUD52IESU" - }, - { - "title": "Doris Day - Teacher's Pet (Karaoke)", - "id": "pwd2ofu8AiM" - }, - { - "title": "Sawyer Brown - Some Girls Do (Karaoke)", - "id": "TK8uar0sCBw" - }, - { - "title": "George Ezra - Pretty Shining People (Karaoke EZ Sing)", - "id": "QzDlc39zb7U" - }, - { - "title": "Collin Raye - Every Second (Karaoke)", - "id": "1yDoTK1GiMM" - }, - { - "title": "Glen Campbell - Country Boy (You Got Your Feet In L. A.) (Karaoke)", - "id": "2pKO3Xg_4SY" - }, - { - "title": "Goo Goo Dolls - Name (Karaoke)", - "id": "kNaetbc9vpA" - }, - { - "title": "Paul Overstreet - If I Could Bottle This Up (Karaoke)", - "id": "D_VI80nyYtM" - }, - { - "title": "Suzy Bogguss - Outbound Plane (Karaoke)", - "id": "Pl5QX0Km0w0" - }, - { - "title": "Otis Redding - I've Been Loving You Too Long (To Stop Now) (Karaoke)", - "id": "qgHOTNN8E48" - }, - { - "title": "John Anderson - Swingin' (Karaoke)", - "id": "jQmvMv4Qfng" - }, - { - "title": "Melodie Crittenden - Broken Road (Karaoke)", - "id": "6MdBaLih4fA" - }, - { - "title": "Elvis Presley - Never Been To Spain (Karaoke)", - "id": "Aw0mpXiCAhQ" - }, - { - "title": "Ray Price - One More Time (Karaoke)", - "id": "NpE8CYkKLVU" - }, - { - "title": "*NSYNC - Sailing (Karaoke)", - "id": "fbYoM_9-q_A" - }, - { - "title": "Goo Goo Dolls - Dizzy (Karaoke)", - "id": "20aPZ-iZVC4" - }, - { - "title": "Goo Goo Dolls - Black Balloon (Karaoke)", - "id": "0uYULB8uVL0" - }, - { - "title": "Goo Goo Dolls - Slide (Karaoke)", - "id": "xkASswJyfUQ" - }, - { - "title": "Kenny Chesney - What I Need To Do (Karaoke)", - "id": "vYS10oZL5pk" - }, - { - "title": "Mark Chesnutt - I Don't Want To Miss A Thing (Karaoke)", - "id": "OBxO-x-BNR0" - }, - { - "title": "Sonny James - Running Bear (Karaoke)", - "id": "wJ4ID-gNERs" - }, - { - "title": "Jean Shepard - Second Fiddle (To An Old Guitar) (Karaoke)", - "id": "ohhCeoUC0DU" - }, - { - "title": "The Kinleys - Dance In The Boat (Karaoke)", - "id": "i-5_P6gWBKA" - }, - { - "title": "Vince Gill - If You Ever Have Forever In Mind (Karaoke)", - "id": "xNfJMYIkWTU" - }, - { - "title": "Stonewall Jackson - B. J. The D. J. (Karaoke)", - "id": "qLrv0bsLWRk" - }, - { - "title": "Dwight Yoakam - Things Change (Karaoke)", - "id": "9bGXUEBBEvE" - }, - { - "title": "Mark Chesnutt - Almost Goodbye (Karaoke)", - "id": "Qo6bKSJZEgo" - }, - { - "title": "Marty Stuart - Hey Baby (Karaoke)", - "id": "JL41EW6D3NU" - }, - { - "title": "Panic! At the Disco - Into The Unknown (Karaoke)", - "id": "NQyA4HUb1Vg" - }, - { - "title": "Blackbear - Hot Girl Bummer (Karaoke EZ Sing)", - "id": "nw49bqc7mmo" - }, - { - "title": "Youngboy Never Broke Again - Overdose (Karaoke EZ Sing)", - "id": "kKaoXXzKr5A" - }, - { - "title": "Three 6 Mafia - Hard Out Here For A Pimp (Karaoke EZ Sing)", - "id": "qApW5pE41ZM" - }, - { - "title": "Kygo, Whitney Houston - Higher Love (Karaoke)", - "id": "i2lhL6s3CRU" - }, - { - "title": "Lil Baby - My Drip (Karaoke)", - "id": "BvjH9C6KGu0" - }, - { - "title": "Vince Gill - Pretty Words (Karaoke)", - "id": "vDwaGbaVoUM" - }, - { - "title": "Lorrie Morgan - Someone To Call Me Darling (Karaoke)", - "id": "BAKR0U-UdYo" - }, - { - "title": "Johnny Hates Jazz - Shattered Dreams (Karaoke)", - "id": "GONH4zpU80Y" - }, - { - "title": "Janie Fricke - Pride (Karaoke)", - "id": "cYcxGTfT3wo" - }, - { - "title": "Mac Davis - I Never Made Love (Till I Made Love With You) (Karaoke)", - "id": "7w0HQTgOdAc" - }, - { - "title": "Ronnie Milsap - In Love (Karaoke)", - "id": "sKBbRDBhLBU" - }, - { - "title": "The Derailers - More Of Your Love (Karaoke)", - "id": "GYSY1PHCIGM" - }, - { - "title": "Public Domain - For He's A Jolly Good Fellow (Karaoke)", - "id": "A1eVqvPcviI" - }, - { - "title": "Traditional / Standard - Bill Bailey, Won't You Please Come Home (Karaoke)", - "id": "lEWSFVvCFgk" - }, - { - "title": "Roy Drusky - Anymore (Karaoke)", - "id": "uTE5QORSfCg" - }, - { - "title": "Hank Thompson - The New Green Light (Karaoke)", - "id": "dLI5joVgvPs" - }, - { - "title": "The Fontane Sisters - Hearts Of Stone (Karaoke)", - "id": "YI2oJSewGCE" - }, - { - "title": "Winger - Headed For A Heartbreak (Karaoke)", - "id": "8c2naDk5NOY" - }, - { - "title": "Goo Goo Dolls - Big Machine (Karaoke)", - "id": "4gD0g432Aww" - }, - { - "title": "O-Town - I Showed Her (Karaoke)", - "id": "wMd17DqoyME" - }, - { - "title": "Pam Tillis - So Wrong (Karaoke)", - "id": "CveJb1DKMgM" - }, - { - "title": "Deana Carter - I'm Just A Girl (Karaoke)", - "id": "LRpYl7xavsY" - }, - { - "title": "Hank Locklin - The Same Sweet Girl (Karaoke)", - "id": "3G43fu9xih0" - }, - { - "title": "Michael Martin Murphey - Never Givin' Up On Love (Karaoke)", - "id": "U1hrDLz2FSs" - }, - { - "title": "Johnny Rodriguez - We Believe In Happy Endings (Karaoke)", - "id": "hLMZ9TlHzbY" - }, - { - "title": "Marty Stuart And His Fabulous Superlatives - If There Ain't There Oughta Be (Karaoke)", - "id": "xUNx2JuRMm8" - }, - { - "title": "Shelby Lynne - Telephone (Karaoke)", - "id": "u7sCmWLa1dE" - }, - { - "title": "Kevin Denney - Walk Out Of The Rain (Karaoke)", - "id": "9LAsuslIErM" - }, - { - "title": "Kelly Clarkson - Low (Karaoke)", - "id": "UtvmfkTSzxY" - }, - { - "title": "Stories - Brother Louie (Karaoke)", - "id": "AMks_KnI24Q" - }, - { - "title": "Tamia - Questions (Karaoke)", - "id": "xbvJBWonC3U" - }, - { - "title": "Trace Adkins - Rough & Ready (Karaoke)", - "id": "iN5_rRg5Wys" - }, - { - "title": "The System - Don't Disturb This Groove (Karaoke)", - "id": "jBeDLiFwu2w" - }, - { - "title": "Kelly Clarkson - Behind These Hazel Eyes (Karaoke)", - "id": "G9mn6lqbvv8" - }, - { - "title": "Don Williams - Rake And Ramblin' Man (Karaoke)", - "id": "7RY0Dt-Ylrc" - }, - { - "title": "Goo Goo Dolls - Better Days (Karaoke)", - "id": "AWPl1gyyxGM" - }, - { - "title": "Lifehouse - Blind (Karaoke)", - "id": "4O8hZdpiCHE" - }, - { - "title": "Delaney & Bonnie & Friends - Only You Know And I Know (Karaoke)", - "id": "vb5gO4edC5Q" - }, - { - "title": "Nine Inch Nails - Every Day Is Exactly The Same (Karaoke)", - "id": "6YuQmZEBmnM" - }, - { - "title": "Goo Goo Dolls - Fiction (Before It's Too Late) (Karaoke)", - "id": "R44GdRAPaEs" - }, - { - "title": "Keith Urban - Tu Compania (Karaoke)", - "id": "0AB-Mb2BiYc" - }, - { - "title": "Lee Ann Womack - Last Call (Karaoke)", - "id": "H7vJQGXx200" - }, - { - "title": "Michelle Wright & Jim Brickman - Your Love (Karaoke)", - "id": "vqjTyJ0Q0IM" - }, - { - "title": "Leona Lewis - I Will Be (Karaoke)", - "id": "_uCl9KdhZRw" - }, - { - "title": "Mel Tillis - Stomp Them Grapes (Karaoke)", - "id": "xaiwpEEyYws" - }, - { - "title": "Faith Hill - Bringing Out The Elvis (Karaoke)", - "id": "2dg7M14ZRh4" - }, - { - "title": "Kate Voegele - You Can't Break A Broken Heart (Karaoke)", - "id": "_WAYOj5_tn0" - }, - { - "title": "Kelly Price - Not My Daddy (Karaoke)", - "id": "NzzP9qABAGw" - }, - { - "title": "John Newman - Love Me Again (Karaoke)", - "id": "s3iu2jb7iKY" - }, - { - "title": "Rascal Flatts - Bless The Broken Road (Karaoke)", - "id": "lOOACuugtWw" - }, - { - "title": "*NSYNC - God Must Have Spent A Little More Time On You (Karaoke)", - "id": "49I_6r57tas" - }, - { - "title": "Backstreet Boys - I Want It That Way (Karaoke)", - "id": "QrJC44kGH14" - }, - { - "title": "Restless Heart - You Can Depend On Me (Karaoke)", - "id": "vTlBKni2d4U" - }, - { - "title": "Wilson Pickett - Fire And Water (Karaoke)", - "id": "jD8T7lH5K0w" - }, - { - "title": "Erykah Badu - Other Side Of The Game (Karaoke)", - "id": "c38gLOUUGC8" - }, - { - "title": "The Lovin' Spoonful - Daydream (Karaoke)", - "id": "CFmlb6_H1BM" - }, - { - "title": "Holly Dunn - Heart Full Of Love (Karaoke)", - "id": "fYQVMZJrdNY" - }, - { - "title": "Jon Secada - Just Another Day (Karaoke)", - "id": "z0UYcFH2fTk" - }, - { - "title": "Gospel - Southern - He Loves Me (Karaoke)", - "id": "Sy1vlL3pSNc" - }, - { - "title": "T.G. Sheppard - You Still Do (Karaoke)", - "id": "XN91qRgIuIU" - }, - { - "title": "Hal Ketchum - Small Town Saturday Night (Karaoke)", - "id": "OmP0cedlvoQ" - }, - { - "title": "Lisa Lisa & Cult Jam - Head To Toe (Karaoke)", - "id": "RtVAPHvWyDQ" - }, - { - "title": "Reba McEntire - Before I Met You (Karaoke)", - "id": "h_wi9Ad9T0c" - }, - { - "title": "Petula Clark - My Love (Karaoke)", - "id": "wiDkEPQVJxU" - }, - { - "title": "Reba McEntire - I'm In Love All Over (Karaoke)", - "id": "k6n0HVwKyMs" - }, - { - "title": "Don Williams - Lord Have Mercy On A Country Boy (Karaoke)", - "id": "6qrwcozsQkw" - }, - { - "title": "The McCarters - Shot Full Of Love (Karaoke)", - "id": "cwrCRfp_RjY" - }, - { - "title": "Lee Roy Parnell - Crocodile Tears (Karaoke)", - "id": "Qt-rLaWzyQU" - }, - { - "title": "Emmylou Harris - Two More Bottles Of Wine (Karaoke)", - "id": "a2iHpEujvL8" - }, - { - "title": "Marty Stuart - Little Things (Karaoke)", - "id": "RkS5yRZkuXw" - }, - { - "title": "Shelby Lynne - Things Are Tough All Over (Karaoke)", - "id": "T6w6UkPdZwQ" - }, - { - "title": "Tanya Tucker - I'll Come Back As Another Woman (Karaoke)", - "id": "L8jipR-N-KY" - }, - { - "title": "Crystal Gayle - I'll Get Over You (Karaoke)", - "id": "X-nuVYhVBc8" - }, - { - "title": "K.T. Oslin - Mary And Willie (Karaoke)", - "id": "9zOpCSx1wzg" - }, - { - "title": "Tanya Tucker, T. Graham Brown - Don't Go Out (Karaoke)", - "id": "aG0W2Ow4QGI" - }, - { - "title": "Mike Reid - Walk On Faith (Karaoke)", - "id": "5PCvFK2jw3I" - }, - { - "title": "Ray Price - Crazy Arms (Karaoke)", - "id": "VjkroWVSWD0" - }, - { - "title": "Engelbert Humperdinck - A Man Without Love (Karaoke)", - "id": "ed9BV7-3tOU" - }, - { - "title": "Rodney Crowell - After All This Time (Karaoke)", - "id": "t5MmMljyeS0" - }, - { - "title": "Jennifer Warnes - Right Time Of The Night (Karaoke)", - "id": "YihwULP6ZeY" - }, - { - "title": "K.T. Oslin - Didn't Expect It To Go Down This Way (Karaoke)", - "id": "1UPNVTWsKSA" - }, - { - "title": "The Judds - One Man Woman (Karaoke)", - "id": "w9OYwiMEqQw" - }, - { - "title": "Patsy Cline - So Wrong (Karaoke)", - "id": "qaP9awnU_o0" - }, - { - "title": "Patsy Cline - Leavin' On Your Mind (Karaoke)", - "id": "PsAHhXU1Oqg" - }, - { - "title": "Patty Loveless - The Blue Side Of Town (Karaoke)", - "id": "ak0sYiBU0S4" - }, - { - "title": "Ray Price - For The Good Times (Karaoke)", - "id": "EiOJjPs3xyA" - }, - { - "title": "Kentucky Headhunters - Rock \"N\" Roll Angel (Karaoke)", - "id": "K0eXUCMd5vU" - }, - { - "title": "Whitney Houston - Didn't We Almost Have It All (Karaoke)", - "id": "I_0H4w14vEY" - }, - { - "title": "Tanya Tucker - Call On Me (Karaoke)", - "id": "ga4oF3WDDuM" - }, - { - "title": "The Whites - Hangin' Around (Karaoke)", - "id": "sfn7miPXd-0" - }, - { - "title": "Keith Whitley - It Ain't Nothin' (Karaoke)", - "id": "ZbQ1jsiSVNk" - }, - { - "title": "Randy Travis - Too Gone Too Long (Karaoke)", - "id": "J6Ww5-Zp2nE" - }, - { - "title": "K.T. Oslin - I'll Always Come Back (Karaoke)", - "id": "VzWnUBZqT84" - }, - { - "title": "Lee Greenwood - I. O. U. (Karaoke)", - "id": "UNtDFhE7ptM" - }, - { - "title": "K.T. Oslin - Do Ya (Karaoke)", - "id": "gWhR1qDPJYo" - }, - { - "title": "Steve Wariner - Precious Thing (Karaoke)", - "id": "BQ-ktfN4qxo" - }, - { - "title": "Patty Loveless - Timber I'm Falling In Love (Karaoke)", - "id": "Y8s4SMNK0hE" - }, - { - "title": "Kathy Mattea - She Came From Ft. Worth (Karaoke)", - "id": "N0qpaPIgj2w" - }, - { - "title": "Future - Same Damn Time (Karaoke EZ Sing)", - "id": "b463fEsAC8k" - }, - { - "title": "Lil Baby Ft. Future - Out The Mud (Karaoke EZ Sing)", - "id": "Vd5N77Nn9do" - }, - { - "title": "Future - Magic (Karaoke)", - "id": "zKVdj-x0WKQ" - }, - { - "title": "Future - Government Official (Karaoke EZ Sing)", - "id": "8ygoQxA_84g" - }, - { - "title": "Future - Freak Hoe (Karaoke EZ Sing)", - "id": "sSw_z6fi614" - }, - { - "title": "The Judds - Love Is Alive (Karaoke)", - "id": "B6s16xQhFF4" - }, - { - "title": "Reba McEntire - Can't Even Get The Blues (Karaoke)", - "id": "mo7p2iFI5r0" - }, - { - "title": "John Denver - Follow Me (Karaoke)", - "id": "j8EK5DyC9es" - }, - { - "title": "Dixie Chicks - Tortured Tangled Hearts (Karaoke)", - "id": "TlMKe80k-y0" - }, - { - "title": "Big And Rich - Live This Life (Karaoke)", - "id": "dk68MB22d4k" - }, - { - "title": "Big And Rich - Real World (Karaoke)", - "id": "oTonxiTOg_g" - }, - { - "title": "McFly - One For The Radio (Karaoke)", - "id": "HI90OEZHT_U" - }, - { - "title": "Mystery Jets Ft. Laura Marling - Young Love (Karaoke)", - "id": "OnDXzX_EtGU" - }, - { - "title": "Duffy - Delayed Devotion (Karaoke)", - "id": "rRuAzOxdkng" - }, - { - "title": "Editors - Munich (Karaoke)", - "id": "xAHlcNTPefU" - }, - { - "title": "McFly - Ultraviolet (Karaoke)", - "id": "YTj5kZS76es" - }, - { - "title": "Pet Shop Boys - Before (Karaoke)", - "id": "z3tftN0orxg" - }, - { - "title": "Pet Shop Boys - The Pop Kids (Karaoke)", - "id": "Xy7YGeGhvb8" - }, - { - "title": "Erykah Badu - Booty (Karaoke)", - "id": "7-S4c-rk1wY" - }, - { - "title": "Crystal Gayle - Somebody Loves You (Karaoke)", - "id": "uZFTt2jubW8" - }, - { - "title": "Coven - One Tin Soldier (The Legend Of Billy Jack) (Karaoke)", - "id": "fSiyRpp0FaU" - }, - { - "title": "Contemporary Christian - Bring It To Jesus (Karaoke)", - "id": "8DejOCUiXCI" - }, - { - "title": "Confederate Railroad - When And Where (Karaoke)", - "id": "JBpX3Yh9x_8" - }, - { - "title": "Confederate Railroad - Elvis And Andy (Karaoke)", - "id": "8M_MCon5oKY" - }, - { - "title": "Collin Raye - Couldn't Last A Moment (Karaoke)", - "id": "2QBpVQJBixw" - }, - { - "title": "Collin Raye - Anyone Else (Karaoke)", - "id": "jpqPj0bATck" - }, - { - "title": "Collin Raye - On The Verge (Karaoke)", - "id": "nguTm6W5nPk" - }, - { - "title": "Children's Nursery Rhymes - Mary Had A Little Lamb (Karaoke)", - "id": "KStsjjCwkEI" - }, - { - "title": "Children's Favorites - Jimmy Cracked Corn (Karaoke)", - "id": "3klwqF0masI" - }, - { - "title": "Britney Spears - 3 (Karaoke)", - "id": "LDljgO1YC9M" - }, - { - "title": "Alabama - Forty Hour Week (Karaoke)", - "id": "Opd0f1paEg4" - }, - { - "title": "Collin Raye - If I Were You (Karaoke)", - "id": "dM29eXUv2k0" - }, - { - "title": "Collin Raye - That's My Story (Karaoke)", - "id": "83zFXc9fvMI" - }, - { - "title": "3 Of Hearts - Arizona Rain (Karaoke)", - "id": "0APnCgyajVg" - }, - { - "title": "Clay Walker - Ordinary People (Karaoke)", - "id": "ZiMrxN4CpFg" - }, - { - "title": "Clay Walker - One, Two, I Love You (Karaoke)", - "id": "CPeYDEIJaIg" - }, - { - "title": "Clay Walker - Where Do I Fit In The Picture (Karaoke)", - "id": "blYxY0T8Tns" - }, - { - "title": "Clay Walker - Live Until I Die (Karaoke)", - "id": "FGfZ_BHZ8KU" - }, - { - "title": "Frankie Ballard - Helluva Life (Karaoke)", - "id": "bbLsEZyUN7A" - }, - { - "title": "Chris LeDoux - Life Is A Highway (Karaoke)", - "id": "de7hEe250oo" - }, - { - "title": "Alice In Chains - Breath On A Window (Karaoke)", - "id": "6CkJxxWhp68" - }, - { - "title": "Kenny Chesney - The Woman With You (Karaoke)", - "id": "BQDHDjuk-iM" - }, - { - "title": "Faith Hill with Tim McGraw - Just To Hear You Say That You Love Me (Karaoke)", - "id": "w_9ibeS_oM0" - }, - { - "title": "Emmylou Harris - Heaven Only Knows (Karaoke)", - "id": "NT3ZFmDwKmY" - }, - { - "title": "Confederate Railroad - Cowboy Cadillac (Karaoke)", - "id": "PGKqDM8LMF4" - }, - { - "title": "Don Williams - Some Broken Hearts Never Mend (Karaoke)", - "id": "WVScIYYkl3c" - }, - { - "title": "Don Williams - Stay Young (Karaoke)", - "id": "Zily8C1H0yM" - }, - { - "title": "Elvis Presley - Danny Boy (Karaoke)", - "id": "UPpCEg4Hso0" - }, - { - "title": "Elvis Presley - Don'tcha Think It's Time / Blue Moon Of Kentucky (Karaoke)", - "id": "TQmtAenK1Dk" - }, - { - "title": "Gospel Hymn - Amazing Grace (Karaoke)", - "id": "BhzjxvHKKOs" - }, - { - "title": "Southern Gospel - I'll Fly Away (Karaoke)", - "id": "IFlpCBAFi9o" - }, - { - "title": "SWV - I'm So Into You (Karaoke)", - "id": "MSboDC_UI2Q" - }, - { - "title": "The Grass Roots - Midnight Confessions (Karaoke)", - "id": "moeUecWC7Io" - }, - { - "title": "Ricochet - Seven Bridges Road (Karaoke)", - "id": "xC1W9q70hq0" - }, - { - "title": "Porter Wagoner and Dolly Parton - Before I Met You (Karaoke)", - "id": "TUjFtxgSagU" - }, - { - "title": "Moby ftg. Gwen Stefani - South Side (Karaoke)", - "id": "ghkYpCqaJQ4" - }, - { - "title": "Children's Toddler Tunes - Muffin Man (Karaoke)", - "id": "d3nhr_za-CQ" - }, - { - "title": "Children's Toddler Tunes - There's A Hole In The Bucket (Karaoke)", - "id": "2p_FKUYpygc" - }, - { - "title": "Children's Toddler Tunes - One Little Brown Bird (Karaoke)", - "id": "OebwNNDl1mY" - }, - { - "title": "Children's Toddler Tunes - It Ain't Gonna Rain (Karaoke)", - "id": "iDmeEzD7uWk" - }, - { - "title": "Children's Nursery Rhymes - Little Bo-Peep (Karaoke)", - "id": "sRqHLhj4a9k" - }, - { - "title": "Children's Nursery Rhymes - Jack And Jill (Karaoke)", - "id": "0S4tnI6CVd4" - }, - { - "title": "Children's Nursery Rhymes - Ten Little Indians (Karaoke)", - "id": "7br-YjA8QpI" - }, - { - "title": "Children's Happy Songs - We're Going On A Bear Hunt (Karaoke)", - "id": "RcrPESM3og8" - }, - { - "title": "Children's Happy Songs - Alouette (Karaoke)", - "id": "D2CNNtrkCo4" - }, - { - "title": "Children's Happy Songs - The Old Grey Mare (Karaoke)", - "id": "yv-eje3z59c" - }, - { - "title": "Children's Fun Songs - Get On Board (Karaoke)", - "id": "0OvnAX1vcVs" - }, - { - "title": "Children's Fun Songs - Pat-A-Cake Pat-A-Cake (Karaoke)", - "id": "k98x6zzks20" - }, - { - "title": "Children's Fun Songs - One Potato (Karaoke)", - "id": "1N4pU6HGDWo" - }, - { - "title": "Children's Fun Songs - Oh Dear What Can The Matter Be? (Karaoke)", - "id": "VS7Y6V8DmOg" - }, - { - "title": "Children's Fun Songs - Hickory Dickory Dock (Karaoke)", - "id": "K6FDSweCld8" - }, - { - "title": "Children's Fun Songs - The Wheels On The Bus (Karaoke)", - "id": "Pw_kifaf4x4" - }, - { - "title": "Children's Favorites - Hush Little Baby (Karaoke)", - "id": "UX8d3WV6g-k" - }, - { - "title": "Children's Favorites - Turkey In The Straw (Karaoke)", - "id": "mrpP0XgkDAI" - }, - { - "title": "Children's Favorites - Old MacDonald (Karaoke)", - "id": "78pPOmEzCiY" - }, - { - "title": "Ashley Gearing - Ribbons Of Love (Karaoke)", - "id": "SQlyXUakV3Y" - }, - { - "title": "Children's Bible Songs - What A Mighty God We Serve (Karaoke)", - "id": "d5l1zpmXedM" - }, - { - "title": "Children's Bible Songs - I'm Gonna Sing (Karaoke)", - "id": "-DKLk_duuzc" - }, - { - "title": "Children's Bible Songs - Whisper A Prayer (Karaoke)", - "id": "kD-QodKhjGU" - }, - { - "title": "Children's Bible Songs - Standin' In The Need Of Prayer (Karaoke)", - "id": "d0YdwClP_eQ" - }, - { - "title": "Children's Bible Songs - Amazing Grace (Karaoke)", - "id": "js2njwkhlls" - }, - { - "title": "Children's Bible Songs - Rock My Soul (Karaoke)", - "id": "7stwzDOBkRo" - }, - { - "title": "Children's Bible Songs - Old Time Religion (Karaoke)", - "id": "5uKzGc2G1bE" - }, - { - "title": "Children's Bible Songs - Down By The Riverside (Karaoke)", - "id": "9986d2w8MjM" - }, - { - "title": "Children's Bible Songs - A Little Talk With Jesus (Karaoke)", - "id": "yLtxs9Ee0vw" - }, - { - "title": "Chely Wright - It Was (Karaoke)", - "id": "kUR6qDtE7mo" - }, - { - "title": "Charley Pride - I'll Be Leaving Alone (Karaoke)", - "id": "0eaqL_XR37E" - }, - { - "title": "Cรฉline Dion - That's The Way It Is (Karaoke)", - "id": "RhkNyf0byGo" - }, - { - "title": "Carol Douglas - Doctor's Orders (Karaoke)", - "id": "P2ONSJQLuW8" - }, - { - "title": "Carlene Carter - The Sweetest Thing (Karaoke)", - "id": "r-i_NJ6V0m4" - }, - { - "title": "Carl Smith - Mr. Moon (Karaoke)", - "id": "HChf9g-V9BY" - }, - { - "title": "Buddy Holly - Think It Over (Karaoke)", - "id": "jIWmwh5aOgA" - }, - { - "title": "Bryan White - So Much For Pretending (Karaoke)", - "id": "g0YXWgxjQZ8" - }, - { - "title": "Brooks & Dunn - A Man This Lonely (Karaoke)", - "id": "EMYb_RIrne4" - }, - { - "title": "Britney Spears - Sometimes (Karaoke)", - "id": "EDQ1NIE_2lY" - }, - { - "title": "Britney Spears - Soda Pop (Karaoke)", - "id": "O6RPdP3k41Y" - }, - { - "title": "Brian McKnight - Fall 5.0 (Karaoke)", - "id": "bXl48sMUzUQ" - }, - { - "title": "Brian McKnight - Just A Little Bit (Karaoke)", - "id": "r79lqdcqHGc" - }, - { - "title": "Brian McKnight - What's It Gonna Be (Karaoke)", - "id": "zaTrtDNpA0U" - }, - { - "title": "Brian McKnight - Crazy Love (Karaoke)", - "id": "S2vTHVkv6s0" - }, - { - "title": "Brian McKnight - Anytime (Karaoke)", - "id": "vHPvE4d2Vng" - }, - { - "title": "Brenda Lee - Sweet Nothings (Karaoke)", - "id": "SCDTBgaji6s" - }, - { - "title": "Brandy - Best Friend (Karaoke)", - "id": "0W03NnL3sqs" - }, - { - "title": "Smash Mouth - Why Can't We Be Friends (Karaoke)", - "id": "CWuxL7AWw_s" - }, - { - "title": "REO Speedwagon - Keep On Loving You (Karaoke)", - "id": "IFYEDvxvXHc" - }, - { - "title": "Billy Ray Cyrus - Talk Some (Karaoke)", - "id": "spClgEqYw4A" - }, - { - "title": "Billy Ocean - Loverboy (Karaoke)", - "id": "j_56rMjhaD8" - }, - { - "title": "Big Mountain - Baby, I Love Your Way (Karaoke)", - "id": "CZ36A8S831E" - }, - { - "title": "BBMak - Ghost Of You And Me (Karaoke)", - "id": "K65oLzWCzgA" - }, - { - "title": "Baillie & The Boys - Perfect (Karaoke)", - "id": "HCGjedCrnHM" - }, - { - "title": "Anne Murray - He Thinks I Still Care (Karaoke)", - "id": "NVPjVcQUsIY" - }, - { - "title": "Anne Murray - I Just Fall In Love Again (Karaoke)", - "id": "W1oGUTe6OE4" - }, - { - "title": "Anita Baker - Body & Soul (Karaoke)", - "id": "FQnzbE3IJv4" - }, - { - "title": "Amy Dalley - Let's Try Goodbye (Karaoke)", - "id": "9-PZWT_Anns" - }, - { - "title": "Big & Rich - 8th Of November (Karaoke)", - "id": "7zfEzPtofQ8" - }, - { - "title": "Alabama - Close Enough To Perfect (Karaoke)", - "id": "wxygVaOG45o" - }, - { - "title": "Alabama - Take Me Down (Karaoke)", - "id": "m2GZZc0AVok" - }, - { - "title": "Alabama - Old Flame (Karaoke)", - "id": "hXenQ_DfGZg" - }, - { - "title": "Alabama - In Pictures (Karaoke)", - "id": "nQs_odUIdio" - }, - { - "title": "Alabama - Once Upon A Lifetime (Karaoke)", - "id": "DgTI8KjuYUc" - }, - { - "title": "Dixie Chicks - So Hard (Karaoke)", - "id": "RbFHRIwOJLQ" - }, - { - "title": "Dixie Chicks - Easy Silence (Karaoke)", - "id": "robuNlb11t8" - }, - { - "title": "Dixie Chicks - The Long Way Around (Karaoke)", - "id": "2Z46Yi42Dv4" - }, - { - "title": "Dixie Chicks - Not Ready To Make Nice (Karaoke)", - "id": "piymrFmqLBg" - }, - { - "title": "Fleetwood Mac - Say You Will (Karaoke)", - "id": "PEAT2sPkVEc" - }, - { - "title": "Alabama - High Cotton (Karaoke)", - "id": "-QIzhfWPmho" - }, - { - "title": "Alabama - Forever's As Far As I'll Go (Karaoke)", - "id": "XNBg7-0PW-0" - }, - { - "title": "Poison - I Want Action (Karaoke)", - "id": "NQCEzPf9Jsw" - }, - { - "title": "P!nk, William Orbit - Feel Good Time (Karaoke)", - "id": "g-fgPKIMe4A" - }, - { - "title": "Pearl Jam - Jeremy (Karaoke)", - "id": "KHmDvff5b-8" - }, - { - "title": "Pet Shop Boys - West End Girls (Karaoke)", - "id": "tXisK3diYeE" - }, - { - "title": "Pearl Jam - Wishlist (Karaoke)", - "id": "sDW29eqlViU" - }, - { - "title": "Pearl Jam - Better Man (Karaoke)", - "id": "wS_6B0juyHg" - }, - { - "title": "The Outlaws - Green Grass & High Tides (Karaoke)", - "id": "bTW6Sk9-OwA" - }, - { - "title": "Melissa Etheridge - I'm The Only One (Karaoke)", - "id": "xwOKFZ7DUIQ" - }, - { - "title": "Melissa Etheridge - Angels Would Fall (Karaoke)", - "id": "56_aWmJysvk" - }, - { - "title": "Melissa Etheridge - Come To My Window (Karaoke)", - "id": "3CywXCA7wi8" - }, - { - "title": "Maroon 5 - Makes Me Wonder (Karaoke)", - "id": "gURP2napbOA" - }, - { - "title": "Jefferson Airplane - Somebody To Love (Karaoke)", - "id": "BqY1h-fwN40" - }, - { - "title": "George Strait - Write This Down (Karaoke)", - "id": "MmzYZPPVcg4" - }, - { - "title": "George Strait - You Can't Make A Heart Love Somebody (Karaoke)", - "id": "HhDdhEbqMPY" - }, - { - "title": "George Jones - Once You've Had The Best (Karaoke)", - "id": "U-fKTigNFtw" - }, - { - "title": "George Jones - Still Doin' Time (Karaoke)", - "id": "arMosC7e_MQ" - }, - { - "title": "Jimmy Buffett - Come Monday (Karaoke)", - "id": "WnIn-tK27nQ" - }, - { - "title": "Jimmy Eat World - The Middle (Karaoke)", - "id": "lVfs2XTEP1s" - }, - { - "title": "Dixie Chicks - Don't Waste Your Heart (Karaoke)", - "id": "t1oLASS4jYE" - }, - { - "title": "Dixie Chicks - Ready To Run (Karaoke)", - "id": "PHsY7YrnC3o" - }, - { - "title": "Dixie Chicks - Loving Arms (Karaoke)", - "id": "C8HYtZfccZ8" - }, - { - "title": "Dixie Chicks - Once You've Loved Somebody (Karaoke)", - "id": "qLCw15rQLfc" - }, - { - "title": "Dixie Chicks - You Were Mine (Karaoke)", - "id": "zPZd439_Hxc" - }, - { - "title": "George Jones - White Lightning (Karaoke)", - "id": "dnyoq3DnfRs" - }, - { - "title": "George Jones - The Right Left Hand (Karaoke)", - "id": "qyc1dHXpKPI" - }, - { - "title": "George Jones - She Thinks I Still Care (Karaoke)", - "id": "2XJRGgpKI0M" - }, - { - "title": "Eminem - Survival (Karaoke)", - "id": "P-LlSlCceFY" - }, - { - "title": "Dixie Chicks - Lullaby (Karaoke)", - "id": "3r0jehG5ywc" - }, - { - "title": "Dixie Chicks - White Trash Wedding (Karaoke)", - "id": "gW-5ENCpkLI" - }, - { - "title": "Dixie Chicks - Landslide (Karaoke)", - "id": "dcwAxdAldXA" - }, - { - "title": "Dixie Chicks - Cowboy Take Me Away (Karaoke)", - "id": "g9O2NnqPEuY" - }, - { - "title": "Dixie Chicks - Let 'Er Rip (Karaoke)", - "id": "B0gQMUWjNjM" - }, - { - "title": "Dixie Chicks - I Can Love You Better (Karaoke)", - "id": "pFC3IQ618y4" - }, - { - "title": "Christina Aguilera - Somebody's Somebody (Karaoke)", - "id": "Eg9wfeizK7A" - }, - { - "title": "Christina Aguilera - I Turn To You (Karaoke)", - "id": "D5Lu4tiu0jU" - }, - { - "title": "Bobby Darin - Dream Lover (Karaoke)", - "id": "5Q8ExqZepSY" - }, - { - "title": "The Beatles - Free As A Bird (Karaoke)", - "id": "EgjB6WwL4gE" - }, - { - "title": "The All-American Rejects - Move Along (Karaoke)", - "id": "Ubhp20xYYns" - }, - { - "title": "Air Supply - The One That You Love (Karaoke)", - "id": "xzNxeBpbQgw" - }, - { - "title": "Aaron Tippin - Her (Karaoke)", - "id": "BuHKDQ_QBYw" - }, - { - "title": "98ยบ, Stevie Wonder - True To Your Heart (Karaoke)", - "id": "fw2xHOrcgwQ" - }, - { - "title": "98ยบ - Because Of You (Karaoke)", - "id": "zUqSQ_i8i0g" - }, - { - "title": "4Him - The Basics Of Life (Karaoke)", - "id": "WfAmmYybKzU" - }, - { - "title": "Eric Clapton - Forever Man (Karaoke)", - "id": "8wwl-aj8vdI" - }, - { - "title": "Marc Almond - Days Of Pearly Spencer (Karaoke EZ Sing)", - "id": "kojeysqIee8" - }, - { - "title": "The Ordinary Boys - I Luv U (Karaoke)", - "id": "fuNL4JePxeU" - }, - { - "title": "Queen - Heaven For Everyone (Karaoke)", - "id": "98Krhf3nk3c" - }, - { - "title": "2 Unlimited - Magic Friend (Karaoke)", - "id": "roBwymLy9rI" - }, - { - "title": "Chantay Savage - I Will Survive (Karaoke)", - "id": "wKfLvL-XADk" - }, - { - "title": "Suzi Quatro - Can The Can (Karaoke)", - "id": "X6_JxOMLhdI" - }, - { - "title": "Carly Pearce - Closer To You (Karaoke)", - "id": "3xmZJ6mkRGs" - }, - { - "title": "Wolf Alice - Don't Delete The Kisses (Karaoke)", - "id": "TuUZrzZd2to" - }, - { - "title": "The Avengers Endgame Cast - We Didn't Start The Fire (Karaoke)", - "id": "PdYxiAw979Y" - }, - { - "title": "Zayn feat. Zhavia Ward - A Whole New World (Karaoke EZ Sing)", - "id": "LHDTYnhmjeo" - }, - { - "title": "Gary Numan - Love Hurt Bleed (Karaoke EZ Sing)", - "id": "3mVEybPOkrI" - }, - { - "title": "Kodaline - Honest (Karaoke)", - "id": "bMJV3O-X6zo" - }, - { - "title": "Gary Numan - Tracks (Karaoke EZ Sing)", - "id": "A1BKSd5VxoA" - }, - { - "title": "Gary Numan - Pure (Karaoke EZ Sing)", - "id": "yIzjI43sdrM" - }, - { - "title": "Gary Numan - My Breathing (Karaoke)", - "id": "g0Mp9m5eldI" - }, - { - "title": "Gary Numan - Berserker (Karaoke)", - "id": "3jje4WIzogQ" - }, - { - "title": "Gary Numan - I'm An Agent (Karaoke)", - "id": "jGLcU4qB4Z0" - }, - { - "title": "Gary Numan - Jo The Waiter (Karaoke EZ Sing)", - "id": "cIVWl0j4Ifo" - }, - { - "title": "Gary Numan - We Are So Fragile (Karaoke EZ Sing)", - "id": "Uw7DBIxFpsQ" - }, - { - "title": "Gary Numan - M.E (Karaoke EZ Sing)", - "id": "aWf_zjxwxqA" - }, - { - "title": "Gary Numan - Call Out The Dogs (Karaoke)", - "id": "Z6ZBBHkN-r4" - }, - { - "title": "Gary Numan - You Are In My Vision (Live) (Karaoke EZ Sing)", - "id": "AfS47nKsEDo" - }, - { - "title": "Kodaline - Honest (Acoustic) (Karaoke)", - "id": "9KLIUnRbS9g" - }, - { - "title": "Gary Numan - My Name Is Ruin (Karaoke)", - "id": "dmxJTFvmVOQ" - }, - { - "title": "Gary Numan - Everything Comes Down To This (Karaoke EZ Sing)", - "id": "K-aySCdYQds" - }, - { - "title": "Gary Numan - I Die You Die (Karaoke EZ Sing)", - "id": "mbAgfnpL9bU" - }, - { - "title": "Gary Numan - Me I Disconnect From You (Karaoke)", - "id": "v8Iaeymago8" - }, - { - "title": "Placebo - Song To Say Goodbye (Karaoke EZ Sing)", - "id": "WVuzjturd5A" - }, - { - "title": "Placebo - Meds (Karaoke)", - "id": "hAODCgvOTYA" - }, - { - "title": "Pet Shop Boys - Numb (Karaoke)", - "id": "aDidSLShaBc" - }, - { - "title": "Nine Inch Nails - The Day The World Went Away (Karaoke)", - "id": "_G5VYiYdHes" - }, - { - "title": "John Denver - On The Road (Karaoke)", - "id": "c6tRmdWYVxw" - }, - { - "title": "Jimmy Eat World - Bleed American (Karaoke)", - "id": "v1AgiWRS528" - }, - { - "title": "Editors - Smokers Outside The Hospital (Karaoke)", - "id": "E324wcaj5Ec" - }, - { - "title": "Garbage - Bleed Like Me (Karaoke)", - "id": "8R0PFfK274Q" - }, - { - "title": "The Editors - An End Has A Start (Karaoke EZ Sing)", - "id": "qc4RScg3_pQ" - }, - { - "title": "McFly - The Heart Never Lies (Karaoke)", - "id": "nKzOAqq9h7Q" - }, - { - "title": "Thrice - All That's Left (Karaoke)", - "id": "gvg75gqH_iM" - }, - { - "title": "Thrice - Image Of The Invisible (Karaoke)", - "id": "Fy3hq-JrKsI" - }, - { - "title": "Thrice - Stare At The Sun (Karaoke)", - "id": "v5uF7LJKFgw" - }, - { - "title": "Fleetwood Mac - Peacekeeper (Karaoke)", - "id": "rKLxHgT-47U" - }, - { - "title": "The Wanted - Warzone (Karaoke)", - "id": "lVfga3ltII0" - }, - { - "title": "Nine Inch Nails - Came Back Haunted (Karaoke)", - "id": "aKKNDXVYOSQ" - }, - { - "title": "Fleetwood Mac - Tusk (Karaoke)", - "id": "QpLbykWk7gw" - }, - { - "title": "Descendants Cast - Night Is Young (Karaoke)", - "id": "8ESXJlY4_zU" - }, - { - "title": "Descendants Cast - Ways to Be Wicked (Karaoke)", - "id": "fv3bdcAW_3s" - }, - { - "title": "Descendants Cast - What's My Name (Karaoke)", - "id": "Np_99nA_c2k" - }, - { - "title": "Descendants Cast - Space Between (Karaoke)", - "id": "JzO4TW4dDDA" - }, - { - "title": "Descendants Cast - Poor Unfortunate Souls (Karaoke)", - "id": "FgJVbTPhwOg" - }, - { - "title": "Descendants Cast - Better Together (Karaoke)", - "id": "L84VxwxvIto" - }, - { - "title": "Descendants Cast - Rather Be with You (Karaoke)", - "id": "1WqKgNBecC0" - }, - { - "title": "John Denver - I'm Sorry (Karaoke)", - "id": "fx4hQ3RIZGE" - }, - { - "title": "John Denver - My Sweet Lady (Karaoke)", - "id": "IWm6t8ZjUCw" - }, - { - "title": "John Denver - Like A Sad Song (Karaoke)", - "id": "U1AB87at2eY" - }, - { - "title": "John Denver - Looking For Space (Karaoke)", - "id": "jLyfjkhpQNo" - }, - { - "title": "Tom Jones - Help Yourself (Karaoke)", - "id": "s7OdpJo0_lM" - }, - { - "title": "Tony Orlando - Go Tell It On The Mountain (Karaoke)", - "id": "R569CoKQQEQ" - }, - { - "title": "John Denver - Today (Karaoke)", - "id": "Wzd2hxphkTg" - }, - { - "title": "Jimmy Eat World - Futures (Karaoke)", - "id": "NgEhoUe-nds" - }, - { - "title": "Jessie Ware - Wildest Moments (Karaoke)", - "id": "DmRQB9YEO0Q" - }, - { - "title": "Frank Turner - I Still Believe (Karaoke)", - "id": "3t7P9Avkua0" - }, - { - "title": "Jake Bugg - Two Fingers (Karaoke)", - "id": "IKPGQ2bxe9g" - }, - { - "title": "McFly - Love Is Easy (Karaoke)", - "id": "EmcwHwObZ0U" - }, - { - "title": "Jake Bugg - Lightning Bolt (Karaoke EZ Sing)", - "id": "e0dBrr6ZTOM" - }, - { - "title": "Jake Bugg - Seen It All (Karaoke)", - "id": "5qddsy_I7yY" - }, - { - "title": "Phoenix - Entertainment (Karaoke EZ Sing)", - "id": "zFsxktL9WkE" - }, - { - "title": "Jake Bugg - Country Song (Karaoke EZ Sing)", - "id": "17R3HTBKfjw" - }, - { - "title": "McFly - Love Is On The Radio (Karaoke)", - "id": "Q89cf0aplyM" - }, - { - "title": "Pet Shop Boys - Liberation (Karaoke)", - "id": "so67__u83q8" - }, - { - "title": "Fleetwood Mac - Seven Wonders (Karaoke)", - "id": "RLaXAtMizKg" - }, - { - "title": "Fleetwood Mac - Oh Well (Karaoke)", - "id": "Q5c_0UcsBP4" - }, - { - "title": "Roxette - You Don't Understand Me (Karaoke)", - "id": "XTuavaZ4iSU" - }, - { - "title": "Saxon - Denim And Leather (Karaoke)", - "id": "26bl5aytZDY" - }, - { - "title": "Saxon - Wheels Of Steel (Karaoke)", - "id": "DQeTkzxJjE0" - }, - { - "title": "Elton John - Believe (Karaoke)", - "id": "UWMpXJPG750" - }, - { - "title": "Elton John - Candle In The Wind (England's Rose) (Karaoke)", - "id": "okDW1HPJ-sM" - }, - { - "title": "Elvis Presley - And I Love You So (Karaoke)", - "id": "0ZcMEoNg6P0" - }, - { - "title": "John Denver - This Ole Guitar (Karaoke EZ Sing)", - "id": "QNSdH1jTVCQ" - }, - { - "title": "The Youngbloods - Get Together (Karaoke)", - "id": "0GpOWnuj9x4" - }, - { - "title": "Waylon Jennings - Luckenbach, Texas (Karaoke)", - "id": "XmFdm6HIdcs" - }, - { - "title": "Yarbrough & Peoples - Don't Stop The Music (Karaoke)", - "id": "brV_l-lyrHk" - }, - { - "title": "The Boomtown Rats - I Don't Like Mondays (Karaoke)", - "id": "zKeiZmnJB84" - }, - { - "title": "Pet Shop Boys - Heart (Karaoke)", - "id": "ZRgzp-qwNWo" - }, - { - "title": "Sylvia - Pillow Talk (Karaoke)", - "id": "0IK9cqu1qk0" - }, - { - "title": "John Denver - Leaving On A Jet Plane (Karaoke)", - "id": "n2xyTzIJc0A" - }, - { - "title": "McFly - Lies (Karaoke)", - "id": "J1meTeJ1Ov0" - }, - { - "title": "Emily Blunt - Can You Imagine That (Karaoke)", - "id": "08il_2c3OH4" - }, - { - "title": "Lifehouse - Just Another Name (Karaoke)", - "id": "nfIrX14qjcU" - }, - { - "title": "Maxwell - Fortunate (Karaoke)", - "id": "hx4jqEzDARw" - }, - { - "title": "Fastball - Out Of My Head (Karaoke)", - "id": "5Lt1oAipYyU" - }, - { - "title": "Fastball - Better Than It Was (Karaoke)", - "id": "UrKd5xwaZSA" - }, - { - "title": "Fastball - Fire Escape (Karaoke)", - "id": "9M32Qgb74fY" - }, - { - "title": "The Doobie Brothers - Minute By Minute (Karaoke)", - "id": "acKwiiHEnoU" - }, - { - "title": "Carly Simon - Jesse (Karaoke)", - "id": "oOXYXMNnqCQ" - }, - { - "title": "Buddy Holly - Peggy Sue (Karaoke)", - "id": "KmK-gACqFuc" - }, - { - "title": "Blake Shelton - The Baby (Karaoke)", - "id": "Va788WomCXg" - }, - { - "title": "Joan Jett & The Blackhearts - I Hate Myself For Loving You (Karaoke)", - "id": "yVmh4WiM2B4" - }, - { - "title": "Belinda Carlisle - Heaven Is A Place On Earth (Karaoke)", - "id": "tup3AnFeKfg" - }, - { - "title": "Backstreet Boys - I'll Never Break Your Heart (Karaoke)", - "id": "JoRlSRzhvbs" - }, - { - "title": "Bryan Adams - Run To You (Karaoke)", - "id": "v9haBg-4d6A" - }, - { - "title": "Carrie Underwood - Some Hearts (Karaoke)", - "id": "RWPMLFZHM3E" - }, - { - "title": "Third Eye Blind - Semi-Charmed Life (Karaoke)", - "id": "8ijBHAr_3_M" - }, - { - "title": "Elvis Presley - Holly Leaves And Christmas Trees (Karaoke)", - "id": "GtBTfnD-Kts" - }, - { - "title": "Elvis Presley - It Won't Seem Like Christmas Without You (Karaoke)", - "id": "1-xotqFTQoI" - }, - { - "title": "Neon Jungle - Braveheart (Karaoke)", - "id": "6k5VZiHDVdQ" - }, - { - "title": "Dโ€™Banj - Oliver Twist (Karaoke)", - "id": "drrfXSxVffA" - }, - { - "title": "Freya Ridings - Lost Without You (Karaoke EZ Sing)", - "id": "HjTFAY3n05w" - }, - { - "title": "Machine Gun Kelly ft. Ester Dean - Invincible (Clean) (Karaoke)", - "id": "HL8mdAO79f0" - }, - { - "title": "The Script - Hall Of Fame (Karaoke)", - "id": "bce7P6u7tQ4" - }, - { - "title": "Chicago - Beginnings (Karaoke)", - "id": "WQrNcG2UJDQ" - }, - { - "title": "Descendants 2 Original Soundtrack - Chillin' Like a Villain (Karaoke)", - "id": "gsSetxqu9Ok" - }, - { - "title": "Descendants Original Soundtrack - Set it Off (Karaoke)", - "id": "l_1BuyJ1j9A" - }, - { - "title": "Descendants Wicked World Original Soundtrack - I'm Your Girl (Karaoke)", - "id": "tZXJlurkiNU" - }, - { - "title": "Descendants Original Soundtrack - Did I Mention ( Karaoke)", - "id": "hGh8ag_xhqM" - }, - { - "title": "Zac Brown Band - Jump Right In (Karaoke)", - "id": "6P3FfLsi8Ps" - }, - { - "title": "Descendants Original Soundtrack - Evil Like Me (Karaoke)", - "id": "8oyNXDAI2Rw" - }, - { - "title": "Zac Brown Band - Goodbye In Her Eyes (Karaoke)", - "id": "2VZPbhOupS4" - }, - { - "title": "Zac Brown Band - Let It Go (Karaoke)", - "id": "VnvhSeJgniw" - }, - { - "title": "Kodaline - High Hopes (Karaoke)", - "id": "7OMsrzj2WGY" - }, - { - "title": "Zac Brown Band - Colder Weather (Karaoke)", - "id": "zleOhq23Bqc" - }, - { - "title": "Carrie Underwood - Blown Away (Karaoke)", - "id": "werzNAiQQqY" - }, - { - "title": "Zac Brown Band - Highway 20 Ride (Karaoke)", - "id": "yFE_eRsbM5s" - }, - { - "title": "Joe Jackson - Is She Really Going Out With Him? (Karaoke)", - "id": "vbuU2MIS8K8" - }, - { - "title": "Roxette - Crash! Boom! Bang! (Karaoke)", - "id": "SEQingyi2N0" - }, - { - "title": "Zac Brown Band - Whatever It Is (Karaoke)", - "id": "hv7HoSqq4Lg" - }, - { - "title": "Roxette - Listen To Your Heart (Karaoke)", - "id": "cqrscFG4WBk" - }, - { - "title": "Enrique Iglesias - Hero (Karaoke)", - "id": "3wWQRubi0rM" - }, - { - "title": "Fastball - The Way (Karaoke)", - "id": "NzJOt9LWBtQ" - }, - { - "title": "Brooks & Dunn - My Maria (Karaoke)", - "id": "MneJ-b9TyDQ" - }, - { - "title": "Backstreet Boys - Hey Mr. DJ (Keep Playin' This Song) (Karaoke)", - "id": "epwrazfZmUM" - }, - { - "title": "Backstreet Boys - If You Want To Be Good Girl (Karaoke)", - "id": "Z_xzY0ApM0U" - }, - { - "title": "Aretha Franklin - Respect (Karaoke)", - "id": "Vn3pApYvQTc" - }, - { - "title": "Alanis Morissette - Uninvited (Karaoke)", - "id": "taR_CvXx2Yg" - }, - { - "title": "Alan Jackson - I Only Want You For Christmas (Karaoke)", - "id": "zJQY1OZ06R4" - }, - { - "title": "Alan Jackson - Everything I Love (Karaoke)", - "id": "FhsNQxIHJaQ" - }, - { - "title": "Billie Eilish - All The Good Girls Go To Hell (Karaoke)", - "id": "yl0HARZLzA4" - }, - { - "title": "Joe Cocker - Unchain My Heart (Karaoke)", - "id": "rGJaFr3C2gI" - }, - { - "title": "Billie Eilish - Hostage (Karaoke)", - "id": "tt8RhIgKjGY" - }, - { - "title": "Taco - Puttin' On The Ritz (Karaoke)", - "id": "9U9ve5Ulb94" - }, - { - "title": "Lizzy McGuire - What Dreams Are Made Of (Karaoke)", - "id": "hm4Ln3xK98Y" - }, - { - "title": "Glen Campbell - Wichita Lineman (Karaoke)", - "id": "6_FLXz9R8g8" - }, - { - "title": "Club Nouveau - Lean On Me (Karaoke)", - "id": "Fl_GAOx7Ja8" - }, - { - "title": "Elvis Presley - White Christmas (Karaoke)", - "id": "i_o0nFMZUIU" - }, - { - "title": "Hilary Duff - With Love (Karaoke)", - "id": "Hlm3aw_d374" - }, - { - "title": "Dionne Warwick - I'll Never Love This Way Again (Karaoke)", - "id": "nHv1ffq4RJ4" - }, - { - "title": "Duffy - Warwick Avenue (Karaoke)", - "id": "zpBZfs4Brys" - }, - { - "title": "Zac Brown Band ftg. Jimmy Buffett - Knee Deep (Karaoke)", - "id": "LKNcyrPJ2KI" - }, - { - "title": "The Everly Brothers - All I Have To Do Is Dream (Karaoke)", - "id": "5LPt2jdOl9U" - }, - { - "title": "Alanis Morissette - Ironic (Karaoke)", - "id": "ICnAv4gjK-o" - }, - { - "title": "Backstreet Boys - As Long As You Love Me (Karaoke)", - "id": "eL07hRGtPBw" - }, - { - "title": "Starship - Nothing's Gonna Stop Us Now (Karaoke)", - "id": "9XZy4d8yOZk" - }, - { - "title": "Linda Ronstadt & James Ingram - Somewhere Out There (Karaoke)", - "id": "n9q_jT5WjZ4" - }, - { - "title": "Hank Williams Jr. - Ain't Nobody's Business (Karaoke)", - "id": "bMvUdHN-afk" - }, - { - "title": "Bobbie Gentry - Ode To Billy Joe (Karaoke)", - "id": "0IVr6LEyTVk" - }, - { - "title": "John Denver - Back Home Again (Karaoke)", - "id": "SJ_do3pbZTM" - }, - { - "title": "Elvis Presley - Love Me Tender (Karaoke)", - "id": "XaVskIPtxbs" - }, - { - "title": "Hunter Hayes ftg. Jason Mraz - Everybody's Got Somebody But Me (Karaoke)", - "id": "Shp9i-8UE8c" - }, - { - "title": "Zac Brown Band ftg. Alan Jackson - As She's Walking Away (Karaoke)", - "id": "QwRpAhe6XsE" - }, - { - "title": "Jim Croce - You Don't Mess Around With Jim (Karaoke)", - "id": "_eOBTt7HAds" - }, - { - "title": "Elvis Presley - Return To Sender (Karaoke)", - "id": "QZqETluBCco" - }, - { - "title": "George Ezra - Paradise (Karaoke)", - "id": "eN8d3uwRI-c" - }, - { - "title": "No Doubt - Don't Speak (Karaoke)", - "id": "KU4Zl57yDOw" - }, - { - "title": "The Cure - Lovesong", - "id": "nqBsCEu0jIo" - }, - { - "title": "Dolly Parton - Just Someone I Used To Know (Karaoke)", - "id": "MoivG9yIOHQ" - }, - { - "title": "The Marshall Tucker Band - Fire On The Mountain (Karaoke)", - "id": "3LnPb7Ghy9A" - }, - { - "title": "Creedence Clearwater Revival - Proud Mary (Karaoke)", - "id": "wAwIvcMA_UA" - }, - { - "title": "Kenny Rogers - Through The Years (Karaoke)", - "id": "hY5jWLYDvC8" - }, - { - "title": "The Four Tops - Ain't No Woman (Like The One I've Got) (Karaoke)", - "id": "y6f9SVM2xyU" - }, - { - "title": "Beck - Loser (Karaoke)", - "id": "vGLDOnZ4whU" - }, - { - "title": "Beastie Boys - (You Gotta) Fight For Your Right (To Party) (Karaoke)", - "id": "E411XdclBeI" - }, - { - "title": "Don Williams - Amanda (Karaoke)", - "id": "56zN5mcZLoE" - }, - { - "title": "The Platters - Smoke Gets In Your Eyes (Karaoke)", - "id": "XqYNHSXWsCI" - }, - { - "title": "The Beatles - I Saw Her Standing There (Karaoke)", - "id": "af30cJPeWro" - }, - { - "title": "Gladys Knight & The Pips - Midnight Train To Georgia (Karaoke)", - "id": "ycPRDzP00D4" - }, - { - "title": "Aretha Franklin & George Michael - I Knew You Were Waiting (Karaoke)", - "id": "t228zCVYOKY" - }, - { - "title": "Barry Manilow - Copacabana (Karaoke)", - "id": "iBqb_fKRO_k" - }, - { - "title": "Loggins & Messina - Your Mama Don't Dance (Karaoke)", - "id": "X5QPHYOozWA" - }, - { - "title": "Josรฉ Feliciano - Feliz Navidad (Karaoke)", - "id": "dTrXqP7UFMc" - }, - { - "title": "John Denver - Calypso (Karaoke)", - "id": "SAPXOmWK8M4" - }, - { - "title": "Zac Brown Band - Keep Me In Mind (Karaoke)", - "id": "oKZycCfKYAI" - }, - { - "title": "Joe Jonas - Lighthouse (Karaoke)", - "id": "4v5gonFTpw4" - }, - { - "title": "Cรฉline Dion - It's All Coming Back To Me Now (Karaoke)", - "id": "9DiHIlCLZ18" - }, - { - "title": "Rascal Flatts - Life Is A Highway (Karaoke)", - "id": "7im37lRafR4" - }, - { - "title": "Patsy Cline - Just A Closer Walk With Thee (Karaoke)", - "id": "L6uVT9gsbFQ" - }, - { - "title": "Fleetwood Mac - Go Your Own Way (Karaoke)", - "id": "flZnKnmYXIc" - }, - { - "title": "Chaka Khan, Rufus - Sweet Thing (Karaoke)", - "id": "DVuk0PFKUic" - }, - { - "title": "John Denver - Fly Away (Karaoke)", - "id": "gLmuJZ4yUko" - }, - { - "title": "John Denver - Rocky Mountain High (Karaoke)", - "id": "mI8A2q6NnKs" - }, - { - "title": "The Lovin' Spoonful - Did You Ever Have To Make Up Your Mind (Karaoke)", - "id": "CY0iwvklLGc" - }, - { - "title": "The Four Seasons - Candy Girl (Karaoke)", - "id": "q7dWrmse_BM" - }, - { - "title": "Goo Goo Dolls - Iris (Karaoke)", - "id": "VX96euHUdbE" - }, - { - "title": "Bryan Adams - Straight From The Heart (Karaoke)", - "id": "21T7_PLEW5Y" - }, - { - "title": "The Beatles - Octopus's Garden (Karaoke)", - "id": "3RDtddCCEbI" - }, - { - "title": "The Dells - Oh What A Night (Karaoke)", - "id": "qdrHaaJAMaw" - }, - { - "title": "The Pretenders - Back On The Chain Gang (Karaoke)", - "id": "Qe53-ESZUd4" - }, - { - "title": "Bonnie Raitt - I Can't Make You Love Me (Karaoke)", - "id": "czeQujZcR3o" - }, - { - "title": "Elvis Presley - Fever (Karaoke)", - "id": "eI1D7LMm3is" - }, - { - "title": "John Denver - Sunshine On My Shoulders (Karaoke)", - "id": "EVlmZGPy0cQ" - }, - { - "title": "Eric Clapton - I Shot The Sheriff (Karaoke)", - "id": "cvLE7yN_7RU" - }, - { - "title": "Nsync - Tearin' Up My Heart (Karaoke)", - "id": "_ll9wjn56Gw" - }, - { - "title": "John Denver - Annie's Song (Karaoke)", - "id": "XMEh5g1-ru8" - }, - { - "title": "Fleetwood Mac - Dreams (Karaoke)", - "id": "3dF2f6ds4Zk" - }, - { - "title": "Backstreet Boys - Everybody (Backstreet's Back) (Karaoke)", - "id": "vyPbmdGDwUU" - }, - { - "title": "Roxette - It Must Have Been Love (Karaoke)", - "id": "a-RXQlA3ytA" - }, - { - "title": "Roxette - The Look (Karaoke)", - "id": "y0o7e0PQv6s" - }, - { - "title": "John Denver - Take Me Home Country Roads (Karaoke)", - "id": "gDERFS-cEtc" - }, - { - "title": "The Platters - You've Got The Magic Touch (Karaoke)", - "id": "Uftm8cHhnU8" - }, - { - "title": "Lighthouse Family - Lifted (Karaoke)", - "id": "iV8SK8KxIbk" - }, - { - "title": "Diana Ross - I Will Survive (Karaoke)", - "id": "7NVG8eIf_g8" - }, - { - "title": "Meat Loaf - Not A Dry Eye In The House (Karaoke)", - "id": "TtyLSONCM_8" - }, - { - "title": "Shawn Stockman - Visions Of Sunset (Karaoke)", - "id": "vKMxEHAYMKc" - }, - { - "title": "Gary Moore - Still Got The Blues (for you) (Karaoke EZ Sing)", - "id": "UNCHcwWIvxc" - }, - { - "title": "Pulp - Disco 2000 (Karaoke)", - "id": "b5Z0eY6oYyQ" - }, - { - "title": "Simply Red - Remembering The First Time (Karaoke)", - "id": "uuFQZ2_F9Go" - }, - { - "title": "Mary Black - If I Gave My Heart To You (Karaoke)", - "id": "cXL9e2UZaIE" - }, - { - "title": "The Jam - Going Underground (Karaoke)", - "id": "o9eo5QPwevo" - }, - { - "title": "La Bouche - Fallin' In Love Again (Karaoke)", - "id": "0VY7PBjSqv0" - }, - { - "title": "The Nashville Teens - Tobacco Road (Karaoke)", - "id": "lHDX2U409Bo" - }, - { - "title": "The Human League - Tell Me When (Karaoke)", - "id": "XtoJ6ncdkgo" - }, - { - "title": "Gary Numan - New Anger (Karaoke)", - "id": "iKnx6Cf1SH0" - }, - { - "title": "McFly - Baby's Coming Back (Karaoke)", - "id": "2yc7_mEcyhY" - }, - { - "title": "Pet Shop Boys - I'm With Stupid (Karaoke)", - "id": "7hYVaOvYdvA" - }, - { - "title": "Gary Numan - We Take Mystery (To Bed) (Karaoke)", - "id": "T_jIZRv4HNM" - }, - { - "title": "Kodaline - Love Like This (Karaoke)", - "id": "gXV77JnTILY" - }, - { - "title": "Jimmy Eat World - I Will Steal You Back (Karaoke)", - "id": "PR4uEnEcv4w" - }, - { - "title": "Livin' Joy - Dreamer (Karaoke)", - "id": "O0dGjSoxNg4" - }, - { - "title": "The Sweet - Block Buster (Karaoke)", - "id": "F4oRwkWlDoI" - }, - { - "title": "Squeeze - Cool For Cats (Karaoke)", - "id": "tctzHKMTy-o" - }, - { - "title": "Squeeze - Up The Junction (Karaoke EZ Sing)", - "id": "gtkKENuE6HQ" - }, - { - "title": "Smokie - If You Think You Know How To Love Me (Karaoke)", - "id": "1G_PSaTng-0" - }, - { - "title": "Smokie - Don't Play Your Rock 'n' Roll To Me (Karaoke)", - "id": "pZIVmzXLUt4" - }, - { - "title": "Smokie - For A Few Dollars More (Karaoke)", - "id": "uvSPQHs26_U" - }, - { - "title": "Marshmello ft. CHVRCHES - Here With Me (Karaoke)", - "id": "D5bt6EwrdgA" - }, - { - "title": "Smokie - I'll Meet You At Midnight (Karaoke)", - "id": "WAD0_eAeJiQ" - }, - { - "title": "Smokie - It's Your Life (Karaoke)", - "id": "aM0NtLthU1s" - }, - { - "title": "Smokie - Lay Back In The Arms Of Someone (Karaoke)", - "id": "lDDPRYgp7bQ" - }, - { - "title": "Nine Inch Nails - Closer (Karaoke)", - "id": "7FNI17CMACg" - }, - { - "title": "Laura Mvula - Green Garden (Karaoke)", - "id": "IBcYiW-7Ark" - }, - { - "title": "Redfoo - New Thang (Karaoke)", - "id": "cMYCzv_s__0" - }, - { - "title": "Jamie N Commons - Lead Me Home (Karaoke EZ Sing)", - "id": "9m9MwYYMvNI" - }, - { - "title": "Westlife - Tonight (Karaoke)", - "id": "5jKZA7m6sBs" - }, - { - "title": "Valeria - Rhythm Of The Night (Karaoke)", - "id": "mN4UBNPH_Ww" - }, - { - "title": "Vengaboys - Forever As One (Karaoke)", - "id": "HyFICC9n6Lo" - }, - { - "title": "Dean Lewis - Waves (Karaoke)", - "id": "3k7b70-JRFA" - }, - { - "title": "Andrew Gold - Never Let Her Slip Away (Karaoke)", - "id": "vL80MfvS_Fw" - }, - { - "title": "PVRIS - What's Wrong (Karaoke)", - "id": "Hf4viNhpZbg" - }, - { - "title": "Years & Years - Real (Karaoke)", - "id": "dO4Ye4D_k88" - }, - { - "title": "Bush - Glycerine (Karaoke EZ Sing)", - "id": "MHPUrCDTuBw" - }, - { - "title": "Mary J. Blige - Your Child (Karaoke)", - "id": "ZFdZldN8v80" - }, - { - "title": "A-Teens - Floorfiller (Karaoke EZ Sing)", - "id": "Nd5ANPOUu_g" - }, - { - "title": "B.o.B - I Am The Champion (Karaoke)", - "id": "XOQQPcUKWic" - }, - { - "title": "AlunaGeorge - Turn Up The Love (Karaoke)", - "id": "0dk7yVHgF3M" - }, - { - "title": "Aan - Crazy Rap (Karaoke EZ Sing)", - "id": "ZSxeOjWm8tw" - }, - { - "title": "Death Cab for Cutie - You Can Do Better Than Me (Karaoke)", - "id": "X7h7b4PoOOI" - }, - { - "title": "Beck - E Pro (Karaoke)", - "id": "-OQuOhWJ9DU" - }, - { - "title": "Death Cab for Cutie - You Are A Tourist (Karaoke)", - "id": "Voui_mLdcvA" - }, - { - "title": "Descendants Original Soundtrack - If Only (Karaoke)", - "id": "8ZPZoSfZlVI" - }, - { - "title": "Death Cab For Cutie - What Sarah Said (Karaoke EZ Sing)", - "id": "pGOyfM1pngg" - }, - { - "title": "Jonas Blue & Sabrina Carpenter - Alien (Karaoke)", - "id": "9VYe3LCjsUQ" - }, - { - "title": "Bullet For My Valentine - Waking The Demon (Karaoke)", - "id": "SZSTK_I7sdw" - }, - { - "title": "Clutch - The Regulator (Karaoke)", - "id": "8GOAusv4KOU" - }, - { - "title": "GWAR - Sick Of You (Karaoke)", - "id": "f71g-RIPcQM" - }, - { - "title": "Death Cab for Cutie - Marching Bands Of Manhattan (Karaoke)", - "id": "7CmgFFz6tlI" - }, - { - "title": "Death Cab For Cutie - I Will Follow You Into The Dark (Karaoke EZ Sing)", - "id": "OiK0jWu8ahY" - }, - { - "title": "T-Pain - Going Thru A Lot (Karaoke)", - "id": "ouzxgRFCmWs" - }, - { - "title": "Beastie Boys - Boomin' Granny (Karaoke)", - "id": "ByzIxLm2ljY" - }, - { - "title": "Beastie Boys - Alive (Karaoke)", - "id": "UgGO4jLEY5c" - }, - { - "title": "Day Wave - Something Here (Karaoke)", - "id": "zW9h5zX98uQ" - }, - { - "title": "Alt-J - Breezeblocks (Karaoke)", - "id": "goXMCV9_IN0" - }, - { - "title": "Drowning Pool - Bodies (Karaoke)", - "id": "Rd-XRYVYJPY" - }, - { - "title": "Alt-J - Every Other Freckle (Karaoke)", - "id": "OEliWWwHH-A" - }, - { - "title": "DeBarge - Rhythm Of The Night (Karaoke)", - "id": "-KWesmc4YgU" - }, - { - "title": "Will Young - Leave Right Now (Karaoke EZ Sing)", - "id": "V_6cqrAr5Jk" - }, - { - "title": "AJR - I'm Ready (Karaoke)", - "id": "5soipIM_rJI" - }, - { - "title": "Biffy Clyro - Living Is A Problem Because Everything Dies (Karaoke)", - "id": "6QQg5PkKFyI" - }, - { - "title": "Placebo - Because I Want You (Karaoke EZ Sing)", - "id": "7z_9eVPhVsA" - }, - { - "title": "Christmas On Broadway - O Holy Night (Karaoke)", - "id": "tS7fem8zv8c" - }, - { - "title": "Christmas On Broadway - Go Tell It on the Mountain (Karaoke)", - "id": "Rgu-vTybMwY" - }, - { - "title": "Christmas On Broadway - The First Noel (Karaoke EZ Sing)", - "id": "3vWSBSQ7w_k" - }, - { - "title": "Christmas On Broadway - O Come All Ye Faithful (Karaoke)", - "id": "tsVDTpK8CFU" - }, - { - "title": "Catfish and the Bottlemen - Outside (Karaoke)", - "id": "D29EId1nuQo" - }, - { - "title": "Panic! At the Disco - This Is Gospel (Karaoke)", - "id": "rD-T4MuhHPA" - }, - { - "title": "Florida Georgia Line - Simple (Karaoke)", - "id": "fP7DDvGzxm8" - }, - { - "title": "Dierks Bentley ft. Brothers Osborne - Burning Man (Karaoke)", - "id": "7WeEP4OcBbs" - }, - { - "title": "Pablo Cruise - Love Will Find A Way (Karaoke)", - "id": "MVP1jaf-sGw" - }, - { - "title": "Redfoo - Let's Get Ridiculous (Karaoke)", - "id": "7j4ykqh18GM" - }, - { - "title": "Mudvayne - Scream With Me (Karaoke)", - "id": "hz8ZibGkTDU" - }, - { - "title": "Tom Petty And The Heartbreakers - Listen To Her Heart (Karaoke)", - "id": "oHBg9K7WzeQ" - }, - { - "title": "Mountain - Mississippi Queen (Karaoke)", - "id": "ME8I6lnTnc4" - }, - { - "title": "J. Geils Band - Centerfold (Karaoke)", - "id": "K2f1dDktFkY" - }, - { - "title": "Axwell & Ingrosso - Something New (Karaoke)", - "id": "tZ2Htb1Z7fo" - }, - { - "title": "T-Pain - Freeze (Karaoke)", - "id": "1o0DAcdt-HA" - }, - { - "title": "Tom Petty And The Heartbreakers - I Need To Know (Karaoke)", - "id": "h0SAq8nnPhs" - }, - { - "title": "Fleetwood Mac - Gypsy (Karaoke)", - "id": "0cpZ9eHQkSg" - }, - { - "title": "Alice In Chains - Junkhead (Karaoke)", - "id": "4UvTrD-Qbb4" - }, - { - "title": "Eminem - Lose Yourself (Karaoke)", - "id": "I-dSbrVWLPI" - }, - { - "title": "Alice In Chains - Man In The Box (Karaoke)", - "id": "ZV9nbsKDXcs" - }, - { - "title": "Machine Gun Kelly ft. Hailee Steinfeld - At My Best (Karaoke EZ Sing)", - "id": "wujNpIoGh9A" - }, - { - "title": "Marshmello And Bastille - Happier (Karaoke)", - "id": "XaAvCVYvGU8" - }, - { - "title": "Adam & The Ants - Antmusic (Karaoke)", - "id": "Z6ewWWJaF8s" - }, - { - "title": "Alice In Chains - Love, Hate, Love (Karaoke)", - "id": "aRRoKPctijE" - }, - { - "title": "The Buggles - Video Killed The Radio Star (Karaoke)", - "id": "wzVcgkLnhbE" - }, - { - "title": "Runaway June - Buy My Own Drinks (Karaoke)", - "id": "QFZssU6m4pM" - }, - { - "title": "Greta Van Fleet - When The Curtain Falls (Official Lyric Video)", - "id": "yX0c04oQ9x8" - }, - { - "title": "Alice In Chains - Again (Karaoke)", - "id": "81cOosaFgy8" - }, - { - "title": "Genesis - Invisible Touch (Karaoke)", - "id": "6O8rFvCo1TA" - }, - { - "title": "Huey Lewis And The News - Do You Believe In Love (Karaoke)", - "id": "1KpC5RPgkyk" - }, - { - "title": "The Go-Go's - We Got The Beat (Karaoke)", - "id": "BS3qTGQ56t0" - }, - { - "title": "Alice In Chains - Scalpel (Karaoke)", - "id": "rwj5QE5rq5o" - }, - { - "title": "Alice In Chains - Low Ceiling (Karaoke)", - "id": "ANnodSFkxsg" - }, - { - "title": "Alice In Chains - Hung On A Hook (Karaoke)", - "id": "UHiF2f9FPBk" - }, - { - "title": "Chicago - Along Comes A Woman (Karaoke)", - "id": "dS_bTzqVWDw" - }, - { - "title": "Amy Grant - Everywhere I Go (Karaoke)", - "id": "XP5A43dQZfo" - }, - { - "title": "The Cure - Let's Go To Bed (Karaoke)", - "id": "kumOLVsLXM0" - }, - { - "title": "CHVRCHES - Bury It (Karaoke)", - "id": "y3Z1geunAMI" - }, - { - "title": "CHVRCHES - Gun (Karaoke)", - "id": "1zEHGTCingM" - }, - { - "title": "Krokus - Screaming In The Night (Karaoke)", - "id": "ZwSgmjepHuY" - }, - { - "title": "Red Rider - Lunatic Fringe (Karaoke)", - "id": "UGWEJvoF1sk" - }, - { - "title": "Steely Dan - Midnight Cruiser (Karaoke)", - "id": "NS0b9stWLFY" - }, - { - "title": "Evanescence - The Chain (Karaoke)", - "id": "b7WqrMmOxu8" - }, - { - "title": "Childish Gambino - Summertime Magic (Karaoke)", - "id": "ZtaK5gLZnFY" - }, - { - "title": "Steely Dan - Dirty Work (Karaoke)", - "id": "SKePgAhlpA0" - }, - { - "title": "Steely Dan - Black Cow (Karaoke)", - "id": "92D32RRbsjk" - }, - { - "title": "Better Than Ezra - Good (Karaoke)", - "id": "OTSJtkOAIpY" - }, - { - "title": "Carpenters - For All We Know (Karaoke)", - "id": "1CrACfV3b5U" - }, - { - "title": "Manfred Mann - Do Wah Diddy Diddy (Karaoke)", - "id": "9bQMNMwCNpI" - }, - { - "title": "The Mamas and The Papas - Monday Monday (Karaoke)", - "id": "QIoiajlBXpU" - }, - { - "title": "Three Dog Night - Just An Old Fashioned Love Song (Karaoke)", - "id": "kgGeKEy2yRM" - }, - { - "title": "Carpenters - Hurting Each Other (Karaoke)", - "id": "ClJ3adm4yr0" - }, - { - "title": "Jim Croce - Operator (That's Not The Way It Feels) (Karaoke)", - "id": "xrCoP6PUpeY" - }, - { - "title": "Carpenters - Yesterday Once More (Karaoke)", - "id": "haTclnEeZT4" - }, - { - "title": "Joan Jett & The Blackhearts - I Love Rock 'N Roll (Karaoke)", - "id": "2sNTz0G4sKA" - }, - { - "title": "Gotye - Eyes Wide Open (Karaoke)", - "id": "BGOeOS1CQr0" - }, - { - "title": "LMFAO - Sorry For Party Rocking (Karaoke)", - "id": "Si7dJkFGLvc" - }, - { - "title": "Gary Numan - Everyday I Die (Live) (Karaoke)", - "id": "55L0cmNbMM8" - }, - { - "title": "Gary Numan - Creatures (Karaoke)", - "id": "fTscXspWVqo" - }, - { - "title": "John Denver - A Country Girl In Paris (Karaoke)", - "id": "3po6tiih74Y" - }, - { - "title": "Boxcar Willie - Up On The Housetop (Karaoke)", - "id": "GUWO5Hc7has" - }, - { - "title": "Jimmy Eat World - Work (Karaoke)", - "id": "lOtnttGkKw0" - }, - { - "title": "Editors - All Sparks (Karaoke)", - "id": "04ompZTEDJ4" - }, - { - "title": "98 Degrees - This Gift (Karaoke)", - "id": "ab1OQEfKh6w" - }, - { - "title": "Urban Christmas - O' Little Town Of Bethlehem (Karaoke)", - "id": "gGQ3tCxmjcY" - }, - { - "title": "Kodaline - The One (Karaoke)", - "id": "J9c2mYxhFSo" - }, - { - "title": "Soulful Christmas - Jolly Old St. Nicholas (Karaoke)", - "id": "qPudqQRd9CA" - }, - { - "title": "Boxcar Willie - Auld Lang Syne (Karaoke)", - "id": "tulG_oNukTM" - }, - { - "title": "Third Eye Blind - Losing A Whole Year (Karaoke)", - "id": "D5dicORE7Vk" - }, - { - "title": "Mel Tillis - Midnight, Me And The Blues (Karaoke)", - "id": "61HXlytErx0" - }, - { - "title": "Standard - Auld Lang Syne (Karaoke)", - "id": "W3p9B7DppcA" - }, - { - "title": "Country Christmas - Jingle Bells (Karaoke)", - "id": "uIrTC2mOMMM" - }, - { - "title": "Montgomery Gentry - Merry Christmas From The Family (Karaoke)", - "id": "UqNZ1fYr_WA" - }, - { - "title": "Brooks & Dunn - Hangin' 'Round The Mistletoe (Karaoke)", - "id": "iWa2tyrl7ZE" - }, - { - "title": "Larry Gatlin - O' Holy Night (Karaoke)", - "id": "hAt4-nwUfM8" - }, - { - "title": "Little Nas X ftg. Billy Ray Cyrus - Old Town Road (Karaoke)", - "id": "iHi0lW4P170" - }, - { - "title": "Billy Joel - She's Always A Woman To Me (Karaoke)", - "id": "om_Ib3WuNb0" - }, - { - "title": "Fleetwood Mac - Green Manalishi (Karaoke)", - "id": "bAGz85phR1Y" - }, - { - "title": "Gary Numan - Haunted (Karaoke)", - "id": "tHSbRjVH4bo" - }, - { - "title": "Big & Rich - Kick My Ass (Karaoke)", - "id": "n2zESHJAbiY" - }, - { - "title": "Urban Christmas - Jingle Bells (Karaoke)", - "id": "EGyFoHNt3AI" - }, - { - "title": "Joe Jackson - Steppin' Out (Karaoke)", - "id": "479dG4kTfh8" - }, - { - "title": "Urban Christmas - O' Come All Ye Faithful (Karaoke)", - "id": "Q_rofoWnqD4" - }, - { - "title": "Welshly Arms - Legendary (Karaoke)", - "id": "dEJeBrcJyq8" - }, - { - "title": "Nine Inch Nails - Hand That Feeds (Karaoke)", - "id": "5pZiWWvMqSw" - }, - { - "title": "AlunaGeorge - Supernatural (Karaoke)", - "id": "NuuV3H_NSeo" - }, - { - "title": "Juice WRLD - ROBBERY (Karaoke)", - "id": "DO_ZeA8mrmU" - }, - { - "title": "Christmas On Broadway - God Rest Ye Merry Gentlemen (Karaoke)", - "id": "IYOeS8MnW-4" - }, - { - "title": "Christmas On Broadway - O Christmas Tree (Karaoke EZ Sing)", - "id": "nNnzJar9gfI" - }, - { - "title": "Christmas On Broadway - Away in a Manger (Karaoke)", - "id": "I1CIGY_RpSU" - }, - { - "title": "Christmas On Broadway - Jingle Bells (Karaoke)", - "id": "RIqZsFPJOe0" - }, - { - "title": "Christmas On Broadway - O Little Town of Bethlehem (Karaoke)", - "id": "UZoPTRHROlY" - }, - { - "title": "Christmas On Broadway - Angels We Have Heard on High (Karaoke)", - "id": "_v9CHUJMRNQ" - }, - { - "title": "Christmas On Broadway - Silent Night (Karaoke)", - "id": "QXgcoSS711Y" - }, - { - "title": "Traditional Christmas - We Three Kings (Karaoke)", - "id": "QNT9XHJ58Z8" - }, - { - "title": "Rock Christmas - Hark! The Herald Angels Sing (Karaoke)", - "id": "UcBJjUzcWqk" - }, - { - "title": "Rock Christmas - O' Holy Night (Karaoke)", - "id": "zNWwNriEFbg" - }, - { - "title": "Rock Christmas - Silent Night (Karaoke)", - "id": "95a8N_snWLQ" - }, - { - "title": "George Strait - Christmas Cookies (Karaoke)", - "id": "i00IqoVxZ0U" - }, - { - "title": "Boxcar Willie - O' Come All Ye Faithful (Karaoke)", - "id": "VoBrMtsPPEM" - }, - { - "title": "Bill Anderson - It Came Upon A Midnight Clear (Karaoke)", - "id": "ENamRF0tDP4" - }, - { - "title": "Dolly Parton - Hard Candy Christmas (Karaoke)", - "id": "WsnzFzivxmc" - }, - { - "title": "Tom T. Hall - O' Christmas Tree (Karaoke)", - "id": "jnUuqyi7gLw" - }, - { - "title": "Elton John - Your Song (Karaoke)", - "id": "548DtJnOI7I" - }, - { - "title": "Godsmack - Straight Out Of Line (Karaoke)", - "id": "3CW2qnIzsCc" - }, - { - "title": "Godsmack - Re-Align (Karaoke)", - "id": "roRkS47iC_Y" - }, - { - "title": "Florida Georgia Line Ft. Tim McGraw - May We All (Karaoke)", - "id": "xXM6Alwynic" - }, - { - "title": "Jamie Lawson - Wasn't Expecting That (Karaoke)", - "id": "qXVuwB2GrcA" - }, - { - "title": "Amanda Watkins ftg. Jamey Johnson - If I Was Over You (Karaoke)", - "id": "Fp89c4WjHh0" - }, - { - "title": "Florida Georgia Line - Anything Goes (Karaoke)", - "id": "ee7V9mFC43A" - }, - { - "title": "Striking Matches - Miss Me More (Karaoke)", - "id": "o1RMG3MeRhQ" - }, - { - "title": "Sia - California Dreamin' (Karaoke)", - "id": "9rmDbsz0rr0" - }, - { - "title": "Skrillex & Diplo ftg. Justin Bieber - Where Are U Now (Karaoke)", - "id": "rUZIxqndpcc" - }, - { - "title": "ZZ Ward - Love 3X (Karaoke)", - "id": "DVf3NMw7VaA" - }, - { - "title": "Florida Georgia Line - Smoke (Karaoke)", - "id": "7P8RQqAPSKw" - }, - { - "title": "Axwell /\\ Ingrosso - Sun Is Shining (Karaoke)", - "id": "8VnKpVlu-w4" - }, - { - "title": "Sabrina Carpenter - Darling I'm A Mess (Karaoke)", - "id": "f3cFRCfH-00" - }, - { - "title": "Tyler Farr - Withdrawls (Karaoke)", - "id": "Q--hdgkiCgc" - }, - { - "title": "Maroon 5 - This Summer's Gonna Hurt Like Aโ€ฆ (Karaoke)", - "id": "r3uGOgRDc4Q" - }, - { - "title": "Blake Shelton ftg. Ashley Monroe - Lonely Tonight (Karaoke)", - "id": "6c8a6TI3Ylw" - }, - { - "title": "Breaking Benjamin - Angels Fall (Karaoke)", - "id": "p0gcBx0JKl8" - }, - { - "title": "The Script - No Good In Goodbye (Karaoke)", - "id": "QfX19BA56TQ" - }, - { - "title": "Jessie J - Masterpiece (Karaoke)", - "id": "NXQRn_X-0tk" - }, - { - "title": "Zac Brown Band - Homegrown (Karaoke)", - "id": "jcy4e6hBDJM" - }, - { - "title": "Bush - Only Way Out (Karaoke)", - "id": "vh3bAD5KP_I" - }, - { - "title": "Sheppard - Geronimo (Karaoke)", - "id": "qiW5_4NU4os" - }, - { - "title": "Bring Me The Horizon - Drown (Karaoke)", - "id": "upWLbFvxobk" - }, - { - "title": "Taylor John Williams - Mad World (Karaoke)", - "id": "hMsyzweURi0" - }, - { - "title": "Chase Bryant - Take It On Back (Karaoke)", - "id": "nuZv2IaFQlw" - }, - { - "title": "Weezer - Da Vinci (Karaoke)", - "id": "g02F2YlAzFQ" - }, - { - "title": "French Montana - Don't Panic (Karaoke)", - "id": "QxxLrewNB3k" - }, - { - "title": "Dierks Bentley - Drunk On A Plane (Karaoke)", - "id": "Re5-X5ce_bk" - }, - { - "title": "Henry Lee Summer - Hey Baby (Karaoke)", - "id": "iFX33MTqMVM" - }, - { - "title": "ZZ Ward - Til The Casket Drops (Karaoke)", - "id": "U8qJlg37_mI" - }, - { - "title": "ZZ Ward - Put The Gun Down (Karaoke)", - "id": "-eJ4o2RWy6I" - }, - { - "title": "ZZ Ward - Last Love Song (Karaoke)", - "id": "FTxOScauL-o" - }, - { - "title": "Billie Eilish - 8 (Eight) (Karaoke)", - "id": "m99G8uJfAic" - }, - { - "title": "Billie Eilish - Six Feet Under (Karaoke)", - "id": "cXcPzr7EP7w" - }, - { - "title": "Billie Eilish - idontwannabeyouanymore (Karaoke)", - "id": "Tz40axqOmrM" - }, - { - "title": "Billie Eilish - You Should See Me In A Crown (Karaoke)", - "id": "XVRtLjsCWdM" - }, - { - "title": "Billie Eilish - Wish You Were Gay (Karaoke)", - "id": "omEHAMhc6ss" - }, - { - "title": "Billie Eilish - Bury A Friend (Karaoke)", - "id": "EMHNdeL7pMA" - }, - { - "title": "Billie Eilish - When I Was Older (Karaoke)", - "id": "llTa3Vk_nHI" - }, - { - "title": "Billie Eilish - Come Out And Play (Karaoke)", - "id": "zZ4QNoRiUcs" - }, - { - "title": "Billie Eilish - I Love You (Karaoke)", - "id": "ZyJlVJHHZMk" - }, - { - "title": "Billie Eilish - Bad Guy (Karaoke)", - "id": "Tf-qs92KL7Q" - }, - { - "title": "Billie Eilish - When The Party's Over (Karaoke)", - "id": "Eil-pZpzInE" - }, - { - "title": "ABC - Poison Arrow (Karaoke)", - "id": "1QTezP4F91s" - }, - { - "title": "Kristen Bell & Idina Menzel - For The First Time In Forever (Karaoke)", - "id": "AC37bcFpSw4" - }, - { - "title": "Kristen Bell ftg. Agatha Lee Monn & Latie Lopez - Do You Want To Build A Snowman? (Karaoke)", - "id": "vI3BTE23x8U" - }, - { - "title": "Hunter Hayes - Invisible (Karaoke)", - "id": "91iUjtP_xPg" - }, - { - "title": "Idina Menzel - Let It Go (Karaoke)", - "id": "suDqkTCUbFc" - }, - { - "title": "Lily Allen - Somewhere Only We Know (Karaoke)", - "id": "7l0Y6gZCRGg" - }, - { - "title": "Gerry And The Pacemakers - I Like It (Karaoke)", - "id": "RmrjflYfBVk" - }, - { - "title": "Joe Cocker - When The Night Comes (Karaoke)", - "id": "XTSXFMhysIA" - }, - { - "title": "Bryan Adams - Kids Wanna Rock (Karaoke)", - "id": "WECh54nKFqA" - }, - { - "title": "Reel 2 Real Feat Mad Stuntman - Can You Feel It? (Karaoke)", - "id": "lZvBlHMSIeg" - }, - { - "title": "Jon Secada - Whipped (Karaoke)", - "id": "6c-XTzdKkM8" - }, - { - "title": "Atomic Kitten - Someone Like Me (Karaoke)", - "id": "jWfmcAWAwIQ" - }, - { - "title": "Norah Jones - In The Mornin' (Karaoke)", - "id": "WDCv3dCLUx8" - }, - { - "title": "Alex Parks - Cry (Karaoke)", - "id": "zY9ijfDWPjk" - }, - { - "title": "Ronan Keating - She Believes In Me (Karaoke)", - "id": "GALn_78RE9Q" - }, - { - "title": "Sugababes - Too Lost In You (Karaoke)", - "id": "RHbI82ZMhhc" - }, - { - "title": "Uncle Kracker ft. Dobie Gray - Drift Away (Karaoke)", - "id": "-BrJKIJtzNU" - }, - { - "title": "Craig David - Spanish (Karaoke)", - "id": "Rf2dvh_eV68" - }, - { - "title": "Amy Studt - Misfit (Karaoke)", - "id": "8NmUlGGSurc" - }, - { - "title": "Mudvayne - Seed (Karaoke)", - "id": "UBfyubNhN0Y" - }, - { - "title": "Mudvayne - Skrying (Karaoke)", - "id": "NYO2ZFSHn9M" - }, - { - "title": "Mudvayne - The Patient Mental (Karaoke)", - "id": "1Ntmwgo_KNc" - }, - { - "title": "Groove Armada - My Friend (Karaoke)", - "id": "hTpp25Hl6GY" - }, - { - "title": "Alanis Morissette - That Particular Time (Karaoke)", - "id": "CDVnNgLo_f4" - }, - { - "title": "Alanis Morissette - So Unsexy (Karaoke)", - "id": "aDC_WreWs5U" - }, - { - "title": "3 Doors Down - Ticket To Heaven (Karaoke)", - "id": "1u3gxWzWwbs" - }, - { - "title": "The Cheeky Girls - The Cheeky Song, (Touch My Bum) (Karaoke)", - "id": "5dwAZcbvXE0" - }, - { - "title": "Gareth Gates - What My Heart Wants To Say (Karaoke)", - "id": "8RoJV1iJ_-M" - }, - { - "title": "Christina Milian - When You Look At Me (Karaoke)", - "id": "zHrje3DcZ1A" - }, - { - "title": "Goo Goo Dolls - Burnin' Up (Karaoke)", - "id": "niutYUz3oZM" - }, - { - "title": "Goo Goo Dolls - Bullet Proof (Karaoke)", - "id": "2puJxkCPzTs" - }, - { - "title": "Goo Goo Dolls - All Eyes On Me (Karaoke)", - "id": "nQX1atb-eTk" - }, - { - "title": "Holly Valance - Kiss Kiss (Karaoke)", - "id": "koT8RlbZCr4" - }, - { - "title": "The Pogues ftg. Kristy Maccoll - Fairytale Of New York (Karaoke)", - "id": "wptW0TNSXEk" - }, - { - "title": "Heavy Metal Christmas - Jingle Bells (Karaoke)", - "id": "_ilpGsDaILo" - }, - { - "title": "Heavy Metal Christmas - Auld Lang Syne (Karaoke)", - "id": "cK3kDMWtsZM" - }, - { - "title": "Heavy Metal Christmas - Deck The Halls (Karaoke)", - "id": "WB2zDjklXR8" - }, - { - "title": "Standard - O Come O Come Emmanuel (Karaoke)", - "id": "JCAxcaX95bo" - }, - { - "title": "Standard - Toyland (Karaoke)", - "id": "i25C-lbiaIc" - }, - { - "title": "The Corrs - Would You Be Happier? (Karaoke)", - "id": "o157a4IRaRQ" - }, - { - "title": "Cher - (This Is) A Song For The Lonely (Karaoke)", - "id": "XDQHMqRl2Qk" - }, - { - "title": "Haven - Say Something (Karaoke)", - "id": "7BKRvbfSS6c" - }, - { - "title": "A*Teens - Halfway Around The World (Karaoke)", - "id": "N8J4J3R__pI" - }, - { - "title": "Death Cab for Cutie - Northern Lights (Karaoke)", - "id": "KJ-F5PzPmfk" - }, - { - "title": "Death Cab for Cutie - I Dreamt We Spoke Again (Karaoke)", - "id": "WomFTCboSCE" - }, - { - "title": "Alice Merton - Lash Out (Karaoke)", - "id": "7-Sc5L_Ehfo" - }, - { - "title": "Britney Spears - You Got It All (Karaoke)", - "id": "y1ovZe7N--A" - }, - { - "title": "Basement Jaxx - Romeo (Karaoke)", - "id": "_3P9x2pm1Vw" - }, - { - "title": "Hear'say - Monday Monday (Karaoke)", - "id": "Kwb8kIAWgH0" - }, - { - "title": "Stereophonics - Step On My Old Size Nines (Karaoke)", - "id": "V97lwCO0I_o" - }, - { - "title": "Hear'say - Pure And Simple (Karaoke)", - "id": "5i9EdcwneL8" - }, - { - "title": "The Corrs - Give Me A Reason (Karaoke)", - "id": "S665NdcGjnM" - }, - { - "title": "Atomic Kitten - Whole Again (Karaoke)", - "id": "9svR1n_q1Xc" - }, - { - "title": "Westlife - Uptown Girl (Karaoke)", - "id": "K_Fo8RlKD84" - }, - { - "title": "Feeder - Buck Rogers (Karaoke)", - "id": "LZ5Sr1uGfu8" - }, - { - "title": "A*Teens - Upside Down (Karaoke)", - "id": "tivm-kDDFsA" - }, - { - "title": "Fatboy Slim feat. Macy Gray - Demons (Karaoke)", - "id": "OKsHtErJbkA" - }, - { - "title": "Westlife - What Makes A Man (Karaoke)", - "id": "WbLvtuZPnac" - }, - { - "title": "Eddie And The Hot Rods - Do Anything You Wanna Do (Karaoke)", - "id": "NSuVOuOEpiI" - }, - { - "title": "Honeyz - Not Even Gonna Trip (Karaoke)", - "id": "vM_-tyv9NhE" - }, - { - "title": "Martine McCutcheon - I'm Over You (Karaoke)", - "id": "902h5OYFd2g" - }, - { - "title": "Toploader - Just Hold On (Karaoke)", - "id": "1RshQSrc9wY" - }, - { - "title": "Vengaboys - Cheekah Bow Bow (That Computer Song) (Karaoke)", - "id": "6Pzug21A6os" - }, - { - "title": "Stephen Gately - I Believe (Karaoke)", - "id": "8R-5u_cduU8" - }, - { - "title": "Kylie Minogue - On A Night Like This (Karaoke)", - "id": "Q6oXG75gkS0" - }, - { - "title": "N Sync - That's When I'll Stop Loving You (Karaoke)", - "id": "gWdHROaicYQ" - }, - { - "title": "Undercover - If You Leave Me Now (Karaoke)", - "id": "VgG4cAT3czE" - }, - { - "title": "Sonique - Sky (I Wanna Touch The Sky) (Karaoke)", - "id": "gJ2F_vJPmMc" - }, - { - "title": "Mariah Carey - Can't Take That Away From Me (Mariah's Theme) (Karaoke)", - "id": "8YJ1j5cGMH0" - }, - { - "title": "Vengaboys - Uncle John From Jamaica (Karaoke)", - "id": "jav05PMsdRs" - }, - { - "title": "Terry Callier - I Don't Want To See Myself (Karaoke)", - "id": "5Yb8i1MEEjw" - }, - { - "title": "BWitched - Jump Down (Karaoke)", - "id": "3nmgn1opbbY" - }, - { - "title": "Aqua - Cartoon Heroes (Karaoke)", - "id": "CuxbuUZu8ok" - }, - { - "title": "The Corrs - So Young (Karaoke)", - "id": "kwLW6uXQ5xQ" - }, - { - "title": "Mary J. Blige - Sweet Thing (Karaoke)", - "id": "WbUZmhftwb0" - }, - { - "title": "East 17 - Deep (Karaoke)", - "id": "LXkOXmRqczY" - }, - { - "title": "Michael Bolton - Drift Away (Karaoke)", - "id": "E_FQHzfFmGI" - }, - { - "title": "Diana Ross - If We Hold On Together (Karaoke)", - "id": "QkQMUeRqjA8" - }, - { - "title": "Charles & Eddie - Would I Lie To You? (Karaoke)", - "id": "TBDJsXikzAE" - }, - { - "title": "Elton John - Border Song (Karaoke)", - "id": "bY5Oz96yEYE" - }, - { - "title": "Michael Jackson - Ain't No Sunshine (Karaoke)", - "id": "-XFOq2618Wk" - }, - { - "title": "Rage - Run To You (Karaoke)", - "id": "wf7PYwrrpGk" - }, - { - "title": "Peggy Lee - So What's New (Karaoke)", - "id": "vFa2oCcmdoo" - }, - { - "title": "Crusaders Ft. Randy Crawford - Street Life (Karaoke)", - "id": "q7mni2zpzmk" - }, - { - "title": "Gregory Porter - Hey Laura (Karaoke)", - "id": "JPmodFPkoLM" - }, - { - "title": "Gregory Porter - Don't Lose Your Steam (Karaoke)", - "id": "w1zkFlGY5z4" - }, - { - "title": "Gregory Porter - Be Good (Lion Song) (Karaoke)", - "id": "3ikcJPZrQfA" - }, - { - "title": "Causes - Teach Me How To Dance With You (Karaoke)", - "id": "cp-KdMngT4o" - }, - { - "title": "Marian Hill - Subtle Thing (Karaoke)", - "id": "AT2mbC8jIx4" - }, - { - "title": "Frances - Don't Worry About Me (Karaoke)", - "id": "vv8hjCCiVy0" - }, - { - "title": "Frances - Borrowed Time (Karaoke)", - "id": "Yqxp2-gCrjA" - }, - { - "title": "Clean Cut Kid - Runaway (Karaoke)", - "id": "jvNTmTGVnZE" - }, - { - "title": "CHVRCHES - Never Ending Circles (Karaoke)", - "id": "yB1bNlPepC8" - }, - { - "title": "LP - Tokyo Sunrise (Karaoke)", - "id": "AlljDbDICZw" - }, - { - "title": "Sylvan Esso - Die Young (Karaoke)", - "id": "jvErHYfB6gk" - }, - { - "title": "Sylvan Esso - Radio (Karaoke)", - "id": "mNSjBRlvcYg" - }, - { - "title": "The xx - I Dare You (Karaoke)", - "id": "UuS16JrB20M" - }, - { - "title": "The National - Day I Die (Karaoke)", - "id": "KDT_QE5q4pg" - }, - { - "title": "Andra Day & Common - Stand Up For Something (Karaoke)", - "id": "3VOTe7_80Kg" - }, - { - "title": "Cake - The Distance (Karaoke)", - "id": "AM9ZwUx56U4" - }, - { - "title": "The Bamboos - Lit Up (Karaoke)", - "id": "YeBlEgxdL7g" - }, - { - "title": "The Avett Brothers - Laundry Room (Karaoke)", - "id": "Z2xKKpJcXrM" - }, - { - "title": "Gregory Porter Ftg Lalah Hathaway - Insanity (Karaoke)", - "id": "AN-cRAun6gs" - }, - { - "title": "Steel Pulse - Blues Dance Raid (Karaoke)", - "id": "S1urlYShzuY" - }, - { - "title": "Steel Pulse - Worth His Weight In Gold (Karaoke)", - "id": "g8qSBUyte8g" - }, - { - "title": "Roxy Music - Avalon (Karaoke)", - "id": "YVQy0spLD_s" - }, - { - "title": "MGMT - Alien Days (Karaoke)", - "id": "q3tSvnJlSfY" - }, - { - "title": "Yellowcard - Lights & Sounds (Karaoke)", - "id": "EfyIeHs13aE" - }, - { - "title": "Whodini - Freaks Come Out At Night (Karaoke)", - "id": "X9Zb2Ye12LM" - }, - { - "title": "Vigiland - Shots & Squats (Karaoke)", - "id": "UtpypYlw8ic" - }, - { - "title": "Vigiland - Pong Dance (Karaoke)", - "id": "exKbOpOP6yA" - }, - { - "title": "Vigiland - Let's Escape (Karaoke)", - "id": "07ujBqTSg4Q" - }, - { - "title": "Andrew W.K. - Party Hard (Karaoke)", - "id": "mP5CziY90is" - }, - { - "title": "Devo - The Day My Baby Gave Me A Surprise (Karaoke)", - "id": "KhjJAZ-Z3K4" - }, - { - "title": "Death Cab for Cutie - Good Help (Is So Hard To Find) (Karaoke)", - "id": "awG8xcZnkAo" - }, - { - "title": "Wall Of Voodoo - Mexican Radio (Karaoke)", - "id": "EHAIgFRAFfI" - }, - { - "title": "Type O Negative - Everything Dies (Karaoke)", - "id": "dAJMmBX1O7c" - }, - { - "title": "T-Pain Feat. One Chance - Drowning Again (Karaoke)", - "id": "TNl5hrH9t8A" - }, - { - "title": "Owl City - My Everything (Karaoke)", - "id": "DrgsS4MXX4g" - }, - { - "title": "Owl City - Hello Seattle (Karaoke)", - "id": "vM5CDuX_zGs" - }, - { - "title": "Owl City - Captains Of The Sky (Karaoke)", - "id": "6vYRf9l87rI" - }, - { - "title": "O-Town - Love Should Be A Crime (Karaoke)", - "id": "B5HbhBlCRvU" - }, - { - "title": "Maroon 5 - Tangled (Karaoke)", - "id": "DQIz6KqhmTs" - }, - { - "title": "Imagine Dragons - I Was Me (Karaoke)", - "id": "4CI-YNaPLF0" - }, - { - "title": "Crash Test Dummies - Superman's Song (Karaoke)", - "id": "8Cxe-u0Y904" - }, - { - "title": "Beastie Boys - Sabotage (Karaoke)", - "id": "1_kiT7omRQA" - }, - { - "title": "Saint Motel - Born Again (Karaoke)", - "id": "MdUQQcFj-K8" - }, - { - "title": "The Cure - Boys Don't Cry (Karaoke)", - "id": "4Peczl9PZiU" - }, - { - "title": "Type O Negative - Black No. 1 (Karaoke)", - "id": "z5LHdbDetbw" - }, - { - "title": "Fleetwood Mac - As Long As You Follow (Karaoke)", - "id": "7goGG83xq0w" - }, - { - "title": "Alice In Chains - Choke (Karaoke)", - "id": "QlIIdwHmxQA" - }, - { - "title": "Years & Years - Sanctify (Karaoke)", - "id": "ZG8uPGHNiYE" - }, - { - "title": "High School Musical 2 - Fabulous (Karaoke)", - "id": "afP4Po_LUJ4" - }, - { - "title": "Peter Tosh - Legalize It (Karaoke)", - "id": "UdSQyMJJWuY" - }, - { - "title": "Diamonds - The Stroll (Karaoke)", - "id": "vCBqcsQLo-M" - }, - { - "title": "Frank Ifield - The Wayward Wind (Karaoke)", - "id": "J_IeJXeoyME" - }, - { - "title": "Fleetwood Mac - Over My Head (Karaoke)", - "id": "bzgbglGmYUw" - }, - { - "title": "Showboat - Ol' Man River (Karaoke)", - "id": "0y1KkIjrmf8" - }, - { - "title": "Joy Division - Love Will Tear Us Apart (Karaoke)", - "id": "wYdNZ9rPQbo" - }, - { - "title": "Extreme - Hole Hearted (Karaoke)", - "id": "dLmSg1Q1ktc" - }, - { - "title": "MIKA - Happy Ending (Karaoke)", - "id": "lk3SVhOiclE" - }, - { - "title": "Milli Vanilli - Girl You Know It's True (Karaoke)", - "id": "lxhB90uezd8" - }, - { - "title": "Madonna - Crazy For You (Karaoke)", - "id": "GjBjZiDPuPs" - }, - { - "title": "Creedence Clearwater Revival - Born On The Bayou (Karaoke)", - "id": "pVNnOfNkJ08" - }, - { - "title": "Steely Dan - Reeling In The Years (Karaoke)", - "id": "kx9Ma_3zjNk" - }, - { - "title": "Rick Derringer - Rock And Roll Hoochie Koo (Karaoke)", - "id": "8Dl5yN7ia2Q" - }, - { - "title": "Al Green - Tired Of Being Alone (Karaoke)", - "id": "okvGCN1dpk8" - }, - { - "title": "Randy Houser - Anything Goes (Karaoke)", - "id": "9vWhNpVI2aU" - }, - { - "title": "Johnny Cash - The Ballad Of Ira Hayes (Karaoke)", - "id": "TW9NSr9KdRs" - }, - { - "title": "Poppy Family ftg. Susan Jacks - Which Way Are You Goin', Billy? (Karaoke)", - "id": "FgMEIbGfs7c" - }, - { - "title": "White Plains - My Baby Loves Lovin' (Karaoke)", - "id": "ss9UIJYzHbY" - }, - { - "title": "Britney Spears - Everytime (Karaoke)", - "id": "84tAPwnsWzM" - }, - { - "title": "John Prine - Take A Look At My Heart (Karaoke)", - "id": "O_h8xK50Hh8" - }, - { - "title": "Toby Keith - Baddest Boots (Karaoke)", - "id": "GRT2lJI16uY" - }, - { - "title": "Nat King Cole - Send For Me (Karaoke)", - "id": "1FAlEcMEzN0" - }, - { - "title": "Willie Nelson w/ Waylon Jennings - Just To Satisfy You (Karaoke)", - "id": "0DZU9nJ0CHQ" - }, - { - "title": "Ricky Skaggs - Walls Of Time (Karaoke)", - "id": "ptVRQzemRg8" - }, - { - "title": "Eve ftg. Alicia Keys - Gangsta Lovin' (Karaoke)", - "id": "6jxj2LKCQyU" - }, - { - "title": "Montgomery Gentry - My Town (Karaoke)", - "id": "z1Iumbic6Mc" - }, - { - "title": "Billy Jones - Yes! We Have No Bananas (Karaoke)", - "id": "EL3SGVfj2BM" - }, - { - "title": "Sherrie' Austin - Put Your Heart Into It (Karaoke EZ Sing)", - "id": "r5hfysIm3s0" - }, - { - "title": "Osborne Brothers - Roll Muddy River (Karaoke EZ Sing)", - "id": "-CufU84GjSw" - }, - { - "title": "Chubby Checker - Twist (Karaoke)", - "id": "_ooPMDut-I4" - }, - { - "title": "Elvis Presley - Last Farewell (Karaoke EZ Sing)", - "id": "VfrVj8b3_UY" - }, - { - "title": "Hollies - On A Carousel (Karaoke EZ Sing)", - "id": "88hwNLOKGFM" - }, - { - "title": "Michael Bolton - Time, Love And Tenderness (Karaoke EZ Sing)", - "id": "ULh7djBOK-E" - }, - { - "title": "Toby Keith - He Ain't Worth Missing (Karaoke)", - "id": "6rcU_J-NQbc" - }, - { - "title": "Tracey Ullman - They Don't Know (Karaoke)", - "id": "0FennQAOcf8" - }, - { - "title": "Lloyd Price - I'm Gonna Get Married (Karaoke)", - "id": "QNhF2kulvvU" - }, - { - "title": "Al Green - Here I Am (Come And Take Me) (Karaoke)", - "id": "pWaH3B0qO1g" - }, - { - "title": "Hank Thompson - Wake Up, Irene (Karaoke)", - "id": "mZLjx7vf42I" - }, - { - "title": "Roy Drusky - Another (Karaoke EZ Sing)", - "id": "Y6iSgkHtqTU" - }, - { - "title": "Kelly Price - You Should've Told Me (Karaoke)", - "id": "6Sd1tInwo30" - }, - { - "title": "Madonna - American Pie (Karaoke)", - "id": "jGdQ5lecsaM" - }, - { - "title": "Wet Wet Wet - Love Is All Around (Karaoke)", - "id": "m558N8XEDNc" - }, - { - "title": "Kiss - Love Gun (Karaoke)", - "id": "xRbfzSIGi0M" - }, - { - "title": "Cher - Love And Understanding (Karaoke)", - "id": "WNIB9-kKxwU" - }, - { - "title": "Jack Jones - Lollipops And Roses (Karaoke)", - "id": "lkvFYDukeFY" - }, - { - "title": "MIKA - Lollipop (Karaoke)", - "id": "ay0pGHVkq7o" - }, - { - "title": "The Chordettes - Lollipop (Karaoke)", - "id": "LOaZjmYOxhI" - }, - { - "title": "Rob Thomas - Little Wonders (Karaoke)", - "id": "pV-uIWhpf4o" - }, - { - "title": "Sweet - Little Willy (Karaoke)", - "id": "oEXGSFSj2WA" - }, - { - "title": "Lisa Stansfield - Little Bit Of Heaven (Karaoke)", - "id": "xD1olFVnln0" - }, - { - "title": "Kaiser Chiefs - Listen To Your Head (Karaoke)", - "id": "Z1bSK7JtfMg" - }, - { - "title": "Melissa Etheridge - Like The Way I Do (Karaoke)", - "id": "rsrXVA39RIw" - }, - { - "title": "Noah And The Whale - Life Is Life (Karaoke)", - "id": "BYra_4dcud4" - }, - { - "title": "Tom Cochrane - Life Is A Highway (Karaoke)", - "id": "rugvwEWpzC8" - }, - { - "title": "Kelly Rowland ftg. Big Sean - Lay It On Me (Karaoke)", - "id": "Ve1S2x5R2iQ" - }, - { - "title": "The All-American Rejects - Last Song (Karaoke)", - "id": "SAiwtADnAzc" - }, - { - "title": "D'Angelo - Lady (Karaoke)", - "id": "o3XiEA2ougo" - }, - { - "title": "Example - Kickstarts (Karaoke)", - "id": "I5LEZaZP3yQ" - }, - { - "title": "Linda Ronstadt - Just One Look (Karaoke)", - "id": "KgenHubKFlk" - }, - { - "title": "Noah And The Whale - L.I.F.E.G.O.E.S.O.N. (Karaoke)", - "id": "Elnqimq-iKk" - }, - { - "title": "Steely Dan - Kid Charlemagne (Karaoke)", - "id": "pGMP5LR4zgg" - }, - { - "title": "Colbie Caillat - Kiss The Girl (Karaoke)", - "id": "hX2pYTwF4pc" - }, - { - "title": "Peter Andre - Kiss The Girl (Karaoke)", - "id": "fF4FItvY6zg" - }, - { - "title": "The Spencer Davis Group - Keep On Running (Karaoke)", - "id": "Ho_riQLdgXE" - }, - { - "title": "The Hollies - Just One Look (Karaoke)", - "id": "LOS6SZhpP7k" - }, - { - "title": "Jann Arden - Insensitive (Karaoke)", - "id": "f9J85FsLYds" - }, - { - "title": "Fuel - Innocent (Karaoke)", - "id": "-72MujApyZs" - }, - { - "title": "Norah Jones - In The Morning (Karaoke)", - "id": "9tSH5OtkpvA" - }, - { - "title": "Crash Test Dummies - In The Days Of The Caveman (Karaoke)", - "id": "I52W2NmAvIM" - }, - { - "title": "Noah Cyrus Ft Labrinth - Make Me Cry (Karaoke)", - "id": "V2pn5XGqkjo" - }, - { - "title": "Luther Vandross - If Only For One Night (Karaoke)", - "id": "hKzXw5w-kkY" - }, - { - "title": "Backstreet Boys - If I Don't Have You (Karaoke)", - "id": "TfX3IlmSTwc" - }, - { - "title": "Eddie Fisher - I'm Walking Behind You (Karaoke)", - "id": "tks8sg15Gc4" - }, - { - "title": "Jude - I'm Sorry Now (Karaoke)", - "id": "euKB-vMjsqs" - }, - { - "title": "Rhonda Vincent - I'm Not Over You (Karaoke)", - "id": "oJXxBszlvVM" - }, - { - "title": "Exposรฉ - I'll Never Get Over You (Getting Over Me) (Karaoke)", - "id": "QoerL9ql94M" - }, - { - "title": "R.E.M. - Orange Crush (Karaoke)", - "id": "ZBr2Adr3xGg" - }, - { - "title": "Mark Chesnutt - I'll Think Of Something (Karaoke)", - "id": "5lYJdLFju0A" - }, - { - "title": "Frank Sinatra - I'll Never Smile Again (Karaoke)", - "id": "T9dWCB1lAew" - }, - { - "title": "B.o.B. - I'll Be In The Sky (Karaoke)", - "id": "d9_wWff8ouU" - }, - { - "title": "Peter Allen - I'd Rather Leave When I'm In Love (Karaoke)", - "id": "ymenHUwKVzM" - }, - { - "title": "Danzig - Mother (Karaoke)", - "id": "yDa_Gvv4X-8" - }, - { - "title": "Rod Stewart - I Wish You Love (Karaoke)", - "id": "gLABRbtjVsw" - }, - { - "title": "Maximo Park - I Want You To Stay (Karaoke)", - "id": "3oiddHnIFdU" - }, - { - "title": "Twisted Sister - I Wanna Rock (Karaoke)", - "id": "by0OMbH3C3s" - }, - { - "title": "Kaiser Chiefs - I Predict A Riot (Karaoke)", - "id": "qGkDL8XhDcU" - }, - { - "title": "Paula Abdul - I Need You (Karaoke)", - "id": "YWoHYlnUK_g" - }, - { - "title": "Dan Baird - I Love You Period (Karaoke)", - "id": "cELy5Md5CrQ" - }, - { - "title": "Peggy Lee - I Love Being Here With You (Karaoke)", - "id": "yXCnT88tWUM" - }, - { - "title": "Skylar Grey - I Know You (Karaoke)", - "id": "uAHzDw2ce7M" - }, - { - "title": "Peter Allen - I Go To Rio (Karaoke)", - "id": "5FMq72ILQyg" - }, - { - "title": "Sara Evans - I Give In (Karaoke)", - "id": "jk9udFQpMd4" - }, - { - "title": "Belinda Carlisle - I Get Weak (Karaoke)", - "id": "zfBydELnTM8" - }, - { - "title": "Toni Braxton - I Don't Want To (Karaoke)", - "id": "8HRziDOJi4E" - }, - { - "title": "Kenny Rogers - I Don't Need You (Karaoke)", - "id": "1LSW4ty1-yE" - }, - { - "title": "Roger Whittaker - I Am But A Small Voice (Karaoke)", - "id": "FVJQIgJReKM" - }, - { - "title": "James Ingram ftg. Patti Ausin - How Do You Keep The Music Playing (Karaoke)", - "id": "vcm6MYW3UXU" - }, - { - "title": "Frank Sinatra - How Do You Keep The Music Playing (Karaoke)", - "id": "KqVZGzFB34E" - }, - { - "title": "Johnny Horton - Honky Tonk Man (Karaoke)", - "id": "eqEQC4SLo8A" - }, - { - "title": "New Found Glory - Hit Or Miss (Karaoke)", - "id": "7nvogoUqeFs" - }, - { - "title": "UB40 - Higher Ground (Karaoke)", - "id": "EwP-UDaKTX8" - }, - { - "title": "Stereophonics - Have A Nice Day (Karaoke)", - "id": "IPHjJ4SGLRs" - }, - { - "title": "Robyn - Handle Me (Karaoke)", - "id": "YK6wSNgJDfE" - }, - { - "title": "Crystal Waters - Gypsy Woman (She's Homeless) (Karaoke)", - "id": "kGlbFP_Mcic" - }, - { - "title": "Syleena Johnson - Guess What (Karaoke)", - "id": "UHkTr9Nsfc8" - }, - { - "title": "Maximo Park - Going Missing (Karaoke)", - "id": "6bUtLSMjeIk" - }, - { - "title": "Kylie Minogue - Give Me Just A Little More Time (Karaoke)", - "id": "PqamcMidLRU" - }, - { - "title": "Maximo Park - Girls Who Play Guitar (Karaoke)", - "id": "68Js9pgx4DA" - }, - { - "title": "Britney Spears - Girl In The Mirror (Karaoke)", - "id": "na-gFJfOx8c" - }, - { - "title": "The Pipkins - Gimme Dat Ding (Karaoke)", - "id": "o8vV_poZRM8" - }, - { - "title": "Bobby Rydell - Forget Him (Karaoke)", - "id": "oGEIYWknVuo" - }, - { - "title": "Imagine Dragons - Shots (Karaoke)", - "id": "NudI-qhbPvM" - }, - { - "title": "The Cardigans - Lovefool (Karaoke)", - "id": "MBZ0O8JoOcI" - }, - { - "title": "Live - Lightning Crashes (Karaoke)", - "id": "g1yvYPPPTpQ" - }, - { - "title": "Kem - It's You (Karaoke)", - "id": "Hbg--JYvMZg" - }, - { - "title": "Imagine Dragons - I Bet My Life (Karaoke)", - "id": "8Y12sJjs_zQ" - }, - { - "title": "Nelly - E.I. (Karaoke)", - "id": "DiverueugfU" - }, - { - "title": "Statler Brothers - Daddy Sang Bass (Karaoke)", - "id": "aEk1Ftwegls" - }, - { - "title": "Bill Withers - Grandma's Hands (Karaoke)", - "id": "baRhi9P0M0o" - }, - { - "title": "Milli Vanilli - Blame It On The Rain (Karaoke)", - "id": "BwPcpKj3bdQ" - }, - { - "title": "Nat King Cole - For Sentimental Reasons (Karaoke)", - "id": "PlQS_Mn5SVM" - }, - { - "title": "Glee Cast - Gives You Hell (Karaoke)", - "id": "vyIjIM7tMPs" - }, - { - "title": "Snow Patrol - Hands Open (Karaoke)", - "id": "zKA1UtQx3W0" - }, - { - "title": "Mandy Moore - Have A Little Faith In Me (Karaoke)", - "id": "vyLpphiHEJo" - }, - { - "title": "Dashboard Confessional - Hands Down (Karaoke)", - "id": "103PnFPtxlk" - }, - { - "title": "Saliva - Always (Karaoke)", - "id": "XrgUTiAMMIE" - }, - { - "title": "koRn - Coming Undone (Karaoke)", - "id": "33GHIsoDQWA" - }, - { - "title": "Kenny Rogers And Kim Carnes - Don't Fall In Love With A Dreamer (Karaoke)", - "id": "MJ2bJyO31Jo" - }, - { - "title": "Supertramp - Dreamer (Karaoke)", - "id": "LhwjEpfGW_8" - }, - { - "title": "Linda Ronstadt - A River For Him (Karaoke)", - "id": "4ufs_SjI6Qg" - }, - { - "title": "Christine and the Queens - Tilted (Karaoke)", - "id": "5EBm1cQlrtw" - }, - { - "title": "Joe Jonas - Gotta Find You (Karaoke)", - "id": "X25hj29WDyg" - }, - { - "title": "Mario Joy - California (Karaoke)", - "id": "5H3SZWye6WU" - }, - { - "title": "Gym Class Heroes - Cupidโ€™s Chokehold (Karaoke)", - "id": "JYfkQJk4hBU" - }, - { - "title": "Jimmy Buffett - Grapefruit, Juicy Fruit (Karaoke)", - "id": "xHpeCILKcxE" - }, - { - "title": "Frank Sinatra - Bluebird Of Happiness (Karaoke)", - "id": "sk19Own6nco" - }, - { - "title": "Beastie Boys - Ch-Check It Out (Karaoke)", - "id": "MvfDBd-GixA" - }, - { - "title": "Elton John - Electricity (Karaoke)", - "id": "G4YaI6XIy-Q" - }, - { - "title": "Fuel - Bittersweet (Karaoke)", - "id": "JMkJ9zTTAJ8" - }, - { - "title": "koRn - Falling Away From Me (Karaoke)", - "id": "Hqcep4UH7cU" - }, - { - "title": "Frank Sinatra - Can I Steal A Little Love (Karaoke)", - "id": "YxfTDTBNs-s" - }, - { - "title": "Daniel Bedingfield - Gotta Get Thru This (Karaoke)", - "id": "H8TkG2_xThg" - }, - { - "title": "Jimmy Buffett - A Pirate Looks At Forty (Karaoke)", - "id": "RmvKPUOIoY8" - }, - { - "title": "Joe Cocker - Feelin' Alright (Karaoke)", - "id": "I6oMNuLfVWA" - }, - { - "title": "Garth Brooks - Do What You Gotta Do (Karaoke)", - "id": "bOEoScw1LeQ" - }, - { - "title": "Justin Hayward - Forever Autumn (Karaoke)", - "id": "AOSjCGjisXs" - }, - { - "title": "Wayne Newton - Daddy Don't You Walk So Fast (Karaoke)", - "id": "613SfQnLsZw" - }, - { - "title": "Britney Spears - Dear Diary (Karaoke)", - "id": "VyEqVEsHufg" - }, - { - "title": "Elton John - Blessed (Karaoke)", - "id": "dlD_yHAyklk" - }, - { - "title": "Joe Cocker - Have A Little Faith In Me (Karaoke)", - "id": "ritBbxV7UI4" - }, - { - "title": "Edie Brickell - Good Times (Karaoke)", - "id": "oRG80H64-fM" - }, - { - "title": "Tom Jones - Detroit City (Karaoke)", - "id": "I6AeFSrtdmM" - }, - { - "title": "Toby Keith - A Woman's Touch (Karaoke)", - "id": "U7yR-HJzCK4" - }, - { - "title": "Peter Cetera - Even A Fool Can See (Karaoke)", - "id": "_xqmrpeqoUA" - }, - { - "title": "R.E.M. - Radio Song (Karaoke)", - "id": "NNO1b5xiXeI" - }, - { - "title": "R.E.M. - The Great Beyond (Karaoke)", - "id": "ClQet-FmDyw" - }, - { - "title": "R.E.M. - At My Most Beautiful (Karaoke)", - "id": "ZeVX8IYvLoU" - }, - { - "title": "R.E.M. - Daysleeper (Karaoke)", - "id": "8F006gcPxKs" - }, - { - "title": "R.E.M. - Tongue (Karaoke)", - "id": "poy0u9FAKRs" - }, - { - "title": "R.E.M. - What's The Frequency, Kenneth (Karaoke)", - "id": "gw36cwmmOwU" - }, - { - "title": "R.E.M. - Nightswimming (Karaoke)", - "id": "UyvMsGTwKH4" - }, - { - "title": "R.E.M. - The Sidewinder Sleeps Tonite (Karaoke)", - "id": "xAbda_hheOE" - }, - { - "title": "R.E.M. - Drive (Karaoke)", - "id": "NUszKAnl5yw" - }, - { - "title": "Fantasia - Sleeping With The One I Love (Karaoke)", - "id": "13PkobaJpZU" - }, - { - "title": "Volbeat - Seal The Deal (Karaoke)", - "id": "OCRRui5ySj4" - }, - { - "title": "Don Williams - I Recall A Gypsy Woman (Karaoke)", - "id": "1ypDkdauw8I" - }, - { - "title": "Godsmack - Greed (Karaoke)", - "id": "BCSHd5K4ffA" - }, - { - "title": "The Cure - Lullaby (Karaoke)", - "id": "1LsLaf6aoeQ" - }, - { - "title": "The Cure - Just Like Heaven (Karaoke)", - "id": "joEco14jVMg" - }, - { - "title": "The Cure - The 13th (Karaoke)", - "id": "9Uso73jq2yY" - }, - { - "title": "The Cure - A Forest (Karaoke)", - "id": "G8OlQydiAlg" - }, - { - "title": "Billy Joel - A Minor Variation (Karaoke)", - "id": "CVRedmmcfYs" - }, - { - "title": "Billy Joel - Rosalinda's Eyes (Karaoke)", - "id": "Y40eXUM4638" - }, - { - "title": "Billy Joel - Lullabye (Goodnight My Angel) (Karaoke)", - "id": "q-VpFpmROGA" - }, - { - "title": "Billy Joel - Famous Last Words (Karaoke)", - "id": "UneNpnhU1VI" - }, - { - "title": "Billy Joel - And So It Goes (Karaoke)", - "id": "Nz3ZBMWwXTs" - }, - { - "title": "Billy Joel - Zanzibar (Karaoke)", - "id": "oG794pvhC0g" - }, - { - "title": "Billy Joel - She's Got A Way (Karaoke)", - "id": "iLQZaJXvPa0" - }, - { - "title": "Billy Joel - Stiletto (Karaoke)", - "id": "D_EIpb4jGg4" - }, - { - "title": "Billy Joel - Big Shot (Karaoke)", - "id": "mj17al7t_EQ" - }, - { - "title": "Billy Joel - Shameless (Karaoke)", - "id": "tdi_-yt8jvo" - }, - { - "title": "Billy Joel - Modern Woman (Karaoke)", - "id": "6phiDprd0ig" - }, - { - "title": "Billy Joel - Leave A Tender Moment Alone (Karaoke)", - "id": "mDtKaXhS7v8" - }, - { - "title": "Billy Joel - Don't Ask Me Why (Karaoke)", - "id": "PcOylNDPNog" - }, - { - "title": "Billy Joel - Goodnight Saigon (Karaoke)", - "id": "8tAHJEzLdT8" - }, - { - "title": "Billy Joel - An Innocent Man (Karaoke)", - "id": "Qf13m0K9E3Y" - }, - { - "title": "Billy Joel - All About Soul (Karaoke)", - "id": "X7U1zQL6m7U" - }, - { - "title": "Billy Joel - I Go To Extremes (Karaoke)", - "id": "XkwQSsCgpPQ" - }, - { - "title": "CHVRCHES - Get Away (Karaoke)", - "id": "ptDAVvMr4Rw" - }, - { - "title": "Chris Brown - No Bulls--t (Karaoke)", - "id": "NLVzxt_DyMY" - }, - { - "title": "Janis Joplin - Ball And Chain (Karaoke)", - "id": "M0eall6gXYU" - }, - { - "title": "Eminem ftg. Liz Rodrigues - Survival (Karaoke)", - "id": "89YgLrwb4pI" - }, - { - "title": "Elton John - I Guess That's Why They Call It The Blues (Karaoke)", - "id": "sp_Y4BzGy3c" - }, - { - "title": "The Cure - Burn (Karaoke)", - "id": "3mNaKqEPem8" - }, - { - "title": "Meat Loaf - I'd Do Anything For Love (But I Won't Do That) (Karaoke)", - "id": "2ogcBuVp484" - }, - { - "title": "Meat Loaf - Heaven Can Wait (Karaoke)", - "id": "8x35xiO_2i8" - }, - { - "title": "Elton John - Healing Hands (Karaoke)", - "id": "Thtm9rFFvJo" - }, - { - "title": "Elton John - Blue Eyes (Karaoke)", - "id": "QP1sPVxQTwU" - }, - { - "title": "Craig David And Sigala - Ain't Giving Up (Karaoke)", - "id": "tTpmFWtRg4A" - }, - { - "title": "Skylar Grey - Off Road (Karaoke)", - "id": "tAsWkYBZI4c" - }, - { - "title": "Skylar Grey - Moving Mountains (Karaoke)", - "id": "q1m8Hw3CCVk" - }, - { - "title": "M.I.A. ftg. Zayn - Freedun (Karaoke)", - "id": "UFsjukkMJBA" - }, - { - "title": "Chris Lane - For Her (Karaoke)", - "id": "eFoNgrREPmU" - }, - { - "title": "Calum Scott - Dancing On My Own (Karaoke)", - "id": "vHzfwz60k1o" - }, - { - "title": "Riton ftg. Kah-Lo - Rinse And Repeat (Karaoke)", - "id": "MeOCZXoD1PU" - }, - { - "title": "Aston Merrygold - Get Stupid (Karaoke)", - "id": "EMqPZMdDqBA" - }, - { - "title": "Jess Glynne - Don't Be So Hard On Yourself (Karaoke)", - "id": "MZ76uo8IIjw" - }, - { - "title": "Years & Years - Eyes Shut (Karaoke)", - "id": "Qjsyrch_jgA" - }, - { - "title": "Billy Joel - My Life (Karaoke)", - "id": "i9auCqza8uM" - }, - { - "title": "Elton John - Philadelphia Freedom (Karaoke)", - "id": "6VRdFHVhTLI" - }, - { - "title": "Toby Keith - Beautiful Stranger (Karaoke)", - "id": "Q36hh8aP3QA" - }, - { - "title": "Toby Keith - 35 Mph Town (Karaoke)", - "id": "pMtKvZaUAvk" - }, - { - "title": "Traditional Irish - I'll Take You Home Again Kathleen (Karaoke)", - "id": "jSAvVocNq1E" - }, - { - "title": "Traditional Irish - Cockles And Mussels (Karaoke)", - "id": "1MIcBk5EjF0" - }, - { - "title": "A Great Big World ftg. Christina Aguilera - Say Something (Karaoke)", - "id": "1C0WYXbdywY" - }, - { - "title": "Justin Bieber - All That Matters (Karaoke)", - "id": "bSZGaNQ2x60" - }, - { - "title": "Jeremy Messersmith - Tourniquet (Karaoke)", - "id": "lNpoycaDOkM" - }, - { - "title": "Keane - Higher Than The Sun (Karaoke)", - "id": "rSQtEPqOWzE" - }, - { - "title": "CHVRCHES - The Mother We Share (Karaoke)", - "id": "E8rCy0Ko-dU" - }, - { - "title": "Selena Gomez - Stars Dance (Karaoke)", - "id": "JEc4kXxokuo" - }, - { - "title": "B.B. King - See That My Grave Is Kept Clean (Karaoke)", - "id": "ZEQ46Lx9ojU" - }, - { - "title": "Cassadee Pope - You Hear A Song (Karaoke)", - "id": "S1-889i8YCs" - }, - { - "title": "Franz Ferdinand - Right Action (Karaoke)", - "id": "a-xqNT4w-F8" - }, - { - "title": "Disclosure - F For You (Karaoke)", - "id": "w8dTIhSdvNY" - }, - { - "title": "Ciara ftg. Nicki Minaj - I'm Out (Karaoke)", - "id": "g52ap2GDdj0" - }, - { - "title": "Elton John - Home Again (Karaoke)", - "id": "SQktkQ9VbLo" - }, - { - "title": "Maroon 5 - Sad (Karaoke)", - "id": "Cbfb51_KnRA" - }, - { - "title": "Justin Bieber - Nothing Like Us (Karaoke)", - "id": "5TOZctuW4yg" - }, - { - "title": "Imagine Dragons - Round And Round (Karaoke)", - "id": "sWznMyLX5rM" - }, - { - "title": "Anthony Hamilton - Best Of Me (Karaoke)", - "id": "kuLaxgkDGsc" - }, - { - "title": "Tim McGraw - One Of Those Nights (Karaoke)", - "id": "Qd89nnwS5VY" - }, - { - "title": "Imagine Dragons - It's Time (Karaoke)", - "id": "URybaLMdS5M" - }, - { - "title": "Cream - Born Under A Bad Sign (Karaoke)", - "id": "navYlMogrsk" - }, - { - "title": "Lefty Frizzell - The Long Black Veil (Karaoke)", - "id": "kChOszAEWoM" - }, - { - "title": "Luke Bryan - Drunk On You (Karaoke)", - "id": "R1_HLXdAs10" - }, - { - "title": "Sawyer Brown - Smokin' Hot Wife (Karaoke)", - "id": "-dizeAMsTuc" - }, - { - "title": "Rascal Flatts ftg. Natasha Bedingfield - Easy (Karaoke)", - "id": "TRIaPxXncYg" - }, - { - "title": "Sawyer Brown - All These Years (Karaoke)", - "id": "ThsmSc-N60o" - }, - { - "title": "Whitney Houston - You Give Good Love (Karaoke)", - "id": "KmPkz0tWIGM" - }, - { - "title": "Justin Bieber - Born To Be Somebody (Karaoke)", - "id": "ico6_wrX5TI" - }, - { - "title": "Michael Franti & Spearhead - I'll Be Waiting (Karaoke)", - "id": "Av--JWryTvc" - }, - { - "title": "Shontelle - Say Hello To Goodbye (Karaoke)", - "id": "VCrwT1p-oJM" - }, - { - "title": "Jennifer Hudson - Where You At (Karaoke)", - "id": "2WY6J94blP8" - }, - { - "title": "Darius Rucker - Together, Anything's Possible (Karaoke)", - "id": "N2n0A6sKHvA" - }, - { - "title": "Carter's Chord - A Little Less Comfortable (Karaoke)", - "id": "hY4lfEt1oCs" - }, - { - "title": "Maroon 5 - Never Gonna Leave This Bed (Karaoke)", - "id": "dc7jleaHkCM" - }, - { - "title": "Alabama - Are You Sure Hank Done It This Way (Karaoke)", - "id": "11gzxYV6-ZU" - }, - { - "title": "Cher - You Haven't Seen The Last Of Me (Karaoke)", - "id": "sYa_5NkMawE" - }, - { - "title": "Goo Goo Dolls - Not Broken (Karaoke)", - "id": "vXNeontcilE" - }, - { - "title": "Traditional Irish - Leaving Of Liverpool (Karaoke)", - "id": "YVAwFjfOVsU" - }, - { - "title": "Miranda Lambert - That's The Way The World Goes 'Round (Karaoke)", - "id": "U9hFLEXF7SE" - }, - { - "title": "Chuck Wicks - Old School (Karaoke)", - "id": "7erU6OqxCjY" - }, - { - "title": "Josh Turner - I Wouldn't Be A Man (Karaoke)", - "id": "Y65XhC5Am90" - }, - { - "title": "Gary Allan - Kiss Me When I'm Down (Karaoke)", - "id": "s_ljboclKsU" - }, - { - "title": "Kylie Minogue - Aphrodite (Karaoke)", - "id": "Oau1o2j4-5I" - }, - { - "title": "Dierks Bentley - Draw Me A Map (Karaoke)", - "id": "G5f3e2A-QA8" - }, - { - "title": "Goo Goo Dolls - Home (Karaoke)", - "id": "gZrM3-0PxcY" - }, - { - "title": "Creedence Clearwater Revival - Hey Tonight (Karaoke)", - "id": "loVbZ0SKP-c" - }, - { - "title": "NE-YO - Champagne Life (Karaoke)", - "id": "0aGpNGknFZU" - }, - { - "title": "LeAnn Rimes - Swingin' (Karaoke)", - "id": "QqyL0HmCf_s" - }, - { - "title": "Keith Urban - I'm In (Karaoke)", - "id": "YSbq7oS9_b0" - }, - { - "title": "Avril Lavigne - Alice (Underground) (Karaoke)", - "id": "OG3ccO4QBaA" - }, - { - "title": "Daughtry - September (Karaoke)", - "id": "BnClKoYHsoU" - }, - { - "title": "Lonestar - You're The Reason Why (Karaoke)", - "id": "Lv5C-XqIxco" - }, - { - "title": "Trailer Choir - Rollin' Through The Sunshine (Karaoke)", - "id": "-rrCmoclnrE" - }, - { - "title": "Owl City - Vanilla Twilight (Karaoke)", - "id": "dWk94vHz7zU" - }, - { - "title": "Kenny Chesney - Ain't Back Yet (Karaoke)", - "id": "D5otiiuDrq8" - }, - { - "title": "George Strait - I Gotta Get To You (Karaoke)", - "id": "w2tEfEJ9jOA" - }, - { - "title": "Kate Voegele - Inside Out (Karaoke)", - "id": "_o1yZfhHBJ8" - }, - { - "title": "Jack Ingram - Free (Karaoke)", - "id": "AUJL3i297Cc" - }, - { - "title": "Jo Dee Messina - That's God (Karaoke)", - "id": "6Eru3m0B5Go" - }, - { - "title": "Dixie Chicks - Am I The Only One (Who's Ever Felt This Way) (Karaoke)", - "id": "Yvv0boVXjcw" - }, - { - "title": "Skid Row - I Remember You (Karaoke)", - "id": "okwUyAgXV68" - }, - { - "title": "Keith Urban - Til Summer Comes Around (Karaoke)", - "id": "EnhjLkLOi0M" - }, - { - "title": "Owl City - Fireflies (Karaoke)", - "id": "0rL0RLHIpyM" - }, - { - "title": "Carrie Underwood - Change (Karaoke)", - "id": "lgbLv_kzQPY" - }, - { - "title": "Jack Ingram ftg. Patty Griffin - Seeing Stars (Karaoke)", - "id": "aPmXdxgzC4k" - }, - { - "title": "Whitney Houston - I Look To You (Karaoke)", - "id": "bYDO59955Uw" - }, - { - "title": "The All-American Rejects - Real World (Karaoke)", - "id": "YoqJq3GFZeQ" - }, - { - "title": "Dierks Bentley - I Wanna Make You Close Your Eyes (Karaoke)", - "id": "NT_311W6x2A" - }, - { - "title": "Kate Voegele - 99 Times (Karaoke)", - "id": "Cp14yavQjqI" - }, - { - "title": "The All-American Rejects - I Wanna (Karaoke)", - "id": "TpzOTLYPe7g" - }, - { - "title": "The Offspring - Pretty Fly (For A White Guy) (Karaoke)", - "id": "YwX70hL5Vj0" - }, - { - "title": "The Offspring - Smash It Up (Karaoke)", - "id": "WPaFBm9cG6M" - }, - { - "title": "The Offspring - Self Esteem (Karaoke)", - "id": "BkQzy9pm55g" - }, - { - "title": "Gretchen Wilson - If I Could Do It All Again (Karaoke)", - "id": "GoPTQjwoYuQ" - }, - { - "title": "Trailer Choir - Rockin' The Beer Gut (Karaoke)", - "id": "JkP527G5gA8" - }, - { - "title": "Britney Spears - Radar (Karaoke)", - "id": "gOGbESEN7-A" - }, - { - "title": "Meat Loaf - Dead Ringer For Love (Karaoke)", - "id": "DHMD1Xi5sFc" - }, - { - "title": "Jennifer Hudson - I'll Fight (Karaoke)", - "id": "bwzya311u6c" - }, - { - "title": "Phil Vassar - Love Is A Beautiful Thing (Karaoke)", - "id": "RrWcAjeGG54" - }, - { - "title": "The Pussycat Dolls - Hush Hush (Karaoke)", - "id": "sIotufih5KQ" - }, - { - "title": "Gretchen Wilson - The Earrings Song (Karaoke)", - "id": "rx8OE2IeCVQ" - }, - { - "title": "Toby Keith - Lost You Anyway (Karaoke)", - "id": "seRsPwJOTks" - }, - { - "title": "John Rich - Shuttin' Detroit Down (Karaoke)", - "id": "-uysrxVtGKs" - }, - { - "title": "John Legend - Everybody Knows (Karaoke)", - "id": "3JRzOjFCda0" - }, - { - "title": "The Offspring - Kristy, Are You Doing OK (Karaoke)", - "id": "FeLagoGNOHE" - }, - { - "title": "Duffy - Stepping Stone (Karaoke)", - "id": "9QZeIiSjIqE" - }, - { - "title": "Dolly Parton - Drives Me Crazy (Karaoke)", - "id": "DIwlZ2QGG78" - }, - { - "title": "Holly Williams - Keep The Change (Karaoke)", - "id": "MkO4CT7lnuc" - }, - { - "title": "Hoobastank - So Close So Far (Karaoke)", - "id": "e6yyPxxFlXo" - }, - { - "title": "New Found Glory - Listen To Your Friends (Karaoke)", - "id": "WpFWSp6bwZY" - }, - { - "title": "The Red Jumpsuit Apparatus - Pen & Paper (Karaoke)", - "id": "YJDp_SS1EdY" - }, - { - "title": "Randy Houser - Boots On (Karaoke)", - "id": "HOlTECcv2Aw" - }, - { - "title": "Craig Morgan - God Must Really Love Me (Karaoke)", - "id": "Y04bIkj_Org" - }, - { - "title": "Keyshia Cole - You Complete Me (Karaoke)", - "id": "_SI5KUT5J40" - }, - { - "title": "Mariah Carey - Right To Dream (Karaoke)", - "id": "ZGve2kzaJUs" - }, - { - "title": "Jennifer Hudson - If This Isn't Love (Karaoke)", - "id": "cOLGSsQHqr4" - }, - { - "title": "Toby Keith - That Don't Make Me A Bad Guy (Karaoke)", - "id": "JAqHUMP4s0U" - }, - { - "title": "Crystal Shawanda - My Roots Are Showing (Karaoke)", - "id": "73xgOlSzsm0" - }, - { - "title": "The All-American Rejects - Gives You Hell (Karaoke)", - "id": "VTL7C6RExvs" - }, - { - "title": "Beyoncรฉ - If I Were A Boy (Karaoke)", - "id": "aECsisC5nTA" - }, - { - "title": "Maroon 5 - Goodnight Goodnight (Karaoke)", - "id": "QpCPdrEiC80" - }, - { - "title": "Jason Mraz - Make It Mine (Karaoke)", - "id": "3VZPDUQOwkc" - }, - { - "title": "3 Doors Down - Let Me Be Myself (Karaoke)", - "id": "KfliahT9yNY" - }, - { - "title": "Jessica Simpson - Remember That (Karaoke)", - "id": "w07176m8fz4" - }, - { - "title": "Rihanna - It Just Don't Feel Like Xmas (Without You) (Karaoke)", - "id": "Qiqg8Vy1nbI" - }, - { - "title": "*NSYNC - You Don't Have To Be Alone (Karaoke)", - "id": "TUq8GiKQm7k" - }, - { - "title": "Britney Spears - My Only Wish (This Year) (Karaoke)", - "id": "zQypHMADh_U" - }, - { - "title": "Josh Groban - O Holy Night (Karaoke)", - "id": "Tm4bIALOXyo" - }, - { - "title": "Rascal Flatts - God Rest Ye Merry Gentlemen (Karaoke)", - "id": "Veb1Tm4nUYo" - }, - { - "title": "Jerry Reed - Lord, Mr. Ford (Karaoke)", - "id": "SO4BMiQY18c" - }, - { - "title": "Jerry Reed - Amos Moses (Karaoke)", - "id": "2gfxWV9chY0" - }, - { - "title": "Carter's Chord - Different Breed (Karaoke)", - "id": "fUhs1suDoSY" - }, - { - "title": "Jake Owen - Don't Think I Can't Love You (Karaoke)", - "id": "9RdmwkDFt1I" - }, - { - "title": "Josh Turner - Everything Is Fine (Karaoke)", - "id": "F31CVFb6pe4" - }, - { - "title": "Blake Shelton - She Wouldn't Be Gone (Karaoke)", - "id": "6TzLckNjkdk" - }, - { - "title": "Trisha Yearwood - They Call It Falling For A Reason (Karaoke)", - "id": "cHoQ44ZRtxE" - }, - { - "title": "Toby Keith - She Never Cried In Front Of Me (Karaoke)", - "id": "GrzKB3_Op2o" - }, - { - "title": "Gavin Rossdale - Love Remains The Same (Karaoke)", - "id": "zwn1MXjRdWM" - }, - { - "title": "The Offspring - Hammerhead (Karaoke)", - "id": "gs4CNkjTHak" - }, - { - "title": "David Cook - The Time Of My Life (Karaoke)", - "id": "5Ez5DsAcZOQ" - }, - { - "title": "Seether - Rise Above This (Karaoke)", - "id": "06rgjDM_SzQ" - }, - { - "title": "3 Doors Down - Train (Karaoke)", - "id": "W-ZH-B4pj5g" - }, - { - "title": "Duffy - Mercy (Karaoke)", - "id": "KstKC0FW_dQ" - }, - { - "title": "Keith Urban And Ronnie Dunn - Raise The Barn (Karaoke)", - "id": "jQnUEtFXkV0" - }, - { - "title": "Chuck Wicks - All I Ever Wanted (Karaoke)", - "id": "-23CONUD04I" - }, - { - "title": "Kate Voegele - Kindly Unspoken (Karaoke)", - "id": "eVPHpq5RPWs" - }, - { - "title": "Kate Voegele - Only Fooling Myself (Karaoke)", - "id": "wm9z0YFZSGA" - }, - { - "title": "Keyshia Cole - I Remember (Karaoke)", - "id": "OR159IwLSnI" - }, - { - "title": "James Brown - Licking Stick (Karaoke)", - "id": "jJtPefkvbZ8" - }, - { - "title": "James Brown - Out Of Sight (Karaoke)", - "id": "_n8dYU0cSIw" - }, - { - "title": "3 Doors Down - It's Not My Time (I Won't Go) (Karaoke)", - "id": "G25r_aMlShc" - }, - { - "title": "George Strait - I Saw God Today (Karaoke)", - "id": "zwkswRyJ-Sk" - }, - { - "title": "finger eleven - I'll Keep Your Memory Vague (Karaoke)", - "id": "iW1oFVLbN8k" - }, - { - "title": "3 Doors Down - Citizen Soldier (Karaoke)", - "id": "ecYPVQPVOpI" - }, - { - "title": "Britney Spears - Piece Of Me (Karaoke)", - "id": "XnXHJ8O-zWk" - }, - { - "title": "Mary J. Blige - Work That (Karaoke)", - "id": "SkuA4Cf28No" - }, - { - "title": "Clay Walker - She Likes It In The Morning (Karaoke)", - "id": "D24fbX-t4A8" - }, - { - "title": "Jason Michael Carroll - I Can Sleep When I'm Dead (Karaoke)", - "id": "fb56Xx-cvbQ" - }, - { - "title": "Cรฉline Dion - Taking Chances (Karaoke)", - "id": "P4MS-SeFUSY" - }, - { - "title": "Chuck Wicks - Stealing Cinderella (Karaoke)", - "id": "LVifwDlGQNM" - }, - { - "title": "Bucky Covington - It's Good To Be Us (Karaoke)", - "id": "Z9K7YiFKHHk" - }, - { - "title": "Bomshel - Power Of One (Karaoke)", - "id": "Uq-fpJ9YVd4" - }, - { - "title": "Keith Urban - Everybody (Karaoke)", - "id": "XW2RXpycDA4" - }, - { - "title": "Big & Rich - Between Raising Hell And Amazing Grace (Karaoke)", - "id": "suU3-ydmLdI" - }, - { - "title": "Nicki French - Total Eclipse Of The Heart (Karaoke)", - "id": "nEQ8cTOqkkI" - }, - { - "title": "Perry Como - And I Love You So (Karaoke)", - "id": "FNmWVyNAKU8" - }, - { - "title": "Chris Cagle - What Kinda Gone (Karaoke)", - "id": "C_FtTZyIbZY" - }, - { - "title": "Little Big Town - When Someone Stops Loving You (Karaoke)", - "id": "u1AXFu2uuVw" - }, - { - "title": "Andy Griggs - Tattoo Rose (Karaoke)", - "id": "RCnpBMjcJdc" - }, - { - "title": "Toby Keith - Love Me If You Can (Karaoke)", - "id": "7wMVOK4Ntwg" - }, - { - "title": "Joss Stone - Tell Me 'Bout It (Karaoke)", - "id": "XfNuWJFFXrY" - }, - { - "title": "Jordin Sparks - This Is My Now (Karaoke)", - "id": "plywc7PnI4k" - }, - { - "title": "Travis Tritt - You Never Take Me Dancing (Karaoke)", - "id": "zgRAGrwo3Mg" - }, - { - "title": "Evanescence - Sweet Sacrifice (Karaoke)", - "id": "VCPvn0QRNa0" - }, - { - "title": "Jason Michael Carroll - Livin' Our Love Song (Karaoke)", - "id": "oTw3oSs5y_4" - }, - { - "title": "Tracy Byrd - Better Places Than This (Karaoke)", - "id": "kPfWRmvn8LQ" - }, - { - "title": "Keith Urban - I Told You So (Karaoke)", - "id": "PtATbbOfuXI" - }, - { - "title": "The Animals - When I Was Young (Karaoke)", - "id": "U_sF5Rl5K4Q" - }, - { - "title": "Carly Simon - Better Not Tell Her (Karaoke)", - "id": "4KKU3-5XMdw" - }, - { - "title": "Carly Simon - Stuff That Dreams Are Made Of, The (Karaoke)", - "id": "4JSapt0aG9c" - }, - { - "title": "Carly Simon - Legend In Your Own Time (Karaoke)", - "id": "GvFP6UkyS5Y" - }, - { - "title": "Evanescence - Call Me When You're Sober (Karaoke)", - "id": "x4JIFcBqLts" - }, - { - "title": "Shooter Jennings - Gone To Carolina (Karaoke)", - "id": "GlUWn297XwU" - }, - { - "title": "Sarah Buxton - Innocence (Karaoke)", - "id": "4_YQiunySJc" - }, - { - "title": "Toby Keith - Crash Here Tonight (Karaoke)", - "id": "dQVde-x4f2c" - }, - { - "title": "Taylor Hicks - Do I Make You Proud (Karaoke)", - "id": "oBuDcL2adbY" - }, - { - "title": "Billy Currington - Off My Rocker (Karaoke)", - "id": "-S7p9W9zixA" - }, - { - "title": "Martina McBride - You Ain't Woman Enough (Karaoke)", - "id": "5nuCfHRVvSg" - }, - { - "title": "Goo Goo Dolls - Stay With You (Karaoke)", - "id": "fIlRsaAGK2Q" - }, - { - "title": "Diamond Rio - God Only Cries (Karaoke)", - "id": "w7A10UreJgs" - }, - { - "title": "3 Doors Down - Live For Today (Karaoke)", - "id": "SCgzKmnxcQQ" - }, - { - "title": "Keith Urban - Jeans On (Karaoke)", - "id": "5mdl85reV58" - }, - { - "title": "Tim McGraw - When The Stars Go Blue (Karaoke)", - "id": "CeT0Y_v_l2s" - }, - { - "title": "Lynyrd Skynyrd - Saturday Night Special (Karaoke)", - "id": "WjaljP_H-IU" - }, - { - "title": "Black Oak Arkansas - So You Want To Be A Rock 'N Roll Star (Karaoke)", - "id": "vPM8JrdrFZg" - }, - { - "title": "The Outlaws - Hurry Sundown (Karaoke)", - "id": "jv8ZhYOp3U4" - }, - { - "title": "Johnny Winter - Rock And Roll, Hoochie Koo (Karaoke)", - "id": "jk1KGUJGvsc" - }, - { - "title": "Charlie Daniels Band - Trudy (Karaoke)", - "id": "bs4lBRnF1ho" - }, - { - "title": "The Outlaws - There Goes Another Love Song (Karaoke)", - "id": "BXEiEJhccvA" - }, - { - "title": "Ozark Mountain Daredevils - If You Wanna Get To Heaven (Karaoke)", - "id": "NtXzYtJ-TDs" - }, - { - "title": "New Riders of the Purple Sage - Panama Red (Karaoke)", - "id": "bA2gvRCbfbs" - }, - { - "title": "Blackfoot - Highway Song (Karaoke)", - "id": "Jz4ALy3yYec" - }, - { - "title": "Barry Manilow - What A Diff'rence A Day Made (Karaoke)", - "id": "LwLD5FBsBuo" - }, - { - "title": "Barry Manilow - All I Have To Do Is Dream (Karaoke)", - "id": "WFnCcU-xohE" - }, - { - "title": "Barry Manilow - Rags To Riches (Karaoke)", - "id": "bIhh4IGNjDg" - }, - { - "title": "Shooter Jennings - Steady At The Wheel (Karaoke)", - "id": "GqjKMUbXLt0" - }, - { - "title": "Keith Urban - Tonight I Wanna Cry (Karaoke)", - "id": "fx7Kfl94QBU" - }, - { - "title": "Rod Stewart - Sailing (Karaoke)", - "id": "MA2B_hYv3zs" - }, - { - "title": "3 Doors Down ftg. Bob Seger - Landing In London (Karaoke)", - "id": "MH495Yg7z-k" - }, - { - "title": "Papa Roach - Scars (Karaoke)", - "id": "w4NUIhDhe90" - }, - { - "title": "Bobby Pinson - Way Down (Karaoke)", - "id": "XiwQRzy09pY" - }, - { - "title": "Hot Apple Pie - We're Makin' Up (Karaoke)", - "id": "sqWuYdB4mrM" - }, - { - "title": "Chris LeDoux - Airborne Cowboy (Karaoke)", - "id": "GOs-5eBKDjY" - }, - { - "title": "Alison Krauss & Union Station - Goodbye Is All We Have (Karaoke)", - "id": "f_9LPMerJeY" - }, - { - "title": "Ray Scott - My Kind Of Music (Karaoke)", - "id": "mNhBcJJgDcM" - }, - { - "title": "Trick Pony - Ain't Wastin' Good Whiskey On You (Karaoke)", - "id": "H99_Sajqh-Q" - }, - { - "title": "Big & Rich - Comin' To Your City (Karaoke)", - "id": "qn-0sfDbAtE" - }, - { - "title": "Patty Loveless - Keep Your Distance (Karaoke)", - "id": "jqe4iEsSk_w" - }, - { - "title": "Backstreet Boys - Just Want You To Know (Karaoke)", - "id": "vhsp2TovE1g" - }, - { - "title": "Jeff Bates - Good People (Karaoke)", - "id": "oj0mDO9vJcQ" - }, - { - "title": "Chris Cagle - Miss Me Baby (Karaoke)", - "id": "noDjvxwLxwM" - }, - { - "title": "Jo Dee Messina - Delicious Surprise (I Believe It) (Karaoke)", - "id": "QZxZdUbJlLI" - }, - { - "title": "Faith Hill - Mississippi Girl (Karaoke)", - "id": "z8NdZFTkgB0" - }, - { - "title": "Don Williams - Miracles (Karaoke)", - "id": "w64L0BIXmlw" - }, - { - "title": "Don Williams - Falling Again (Karaoke)", - "id": "17qQ536nV3s" - }, - { - "title": "Don Williams - Lay Down Beside Me (Karaoke)", - "id": "Jqw2j5Irnoo" - }, - { - "title": "Don Williams - I've Got A Winner In You (Karaoke)", - "id": "7TBq5UHGN3I" - }, - { - "title": "Don Williams - Say It Again (Karaoke)", - "id": "PePHeXSFoOM" - }, - { - "title": "Don Williams - Till The Rivers All Run Dry (karaoke)", - "id": "SuRxr8skriE" - }, - { - "title": "Don Williams - She Never Knew Me (Karaoke)", - "id": "-L-yViUq0sc" - }, - { - "title": "Don Williams - You're My Best Friend (Karaoke)", - "id": "i-YXq1eoUQU" - }, - { - "title": "Don Williams - We Should Be Together (Karaoke)", - "id": "6dxL97gBMNs" - }, - { - "title": "Ronnie Milsap - It's Already Taken (Karaoke)", - "id": "S3Ughb2S_iU" - }, - { - "title": "Ronnie Milsap - That Girl Who Waits On Tables (Karaoke)", - "id": "HjSHSc0jyYc" - }, - { - "title": "Ronnie Milsap - Still Losing You (Karaoke)", - "id": "dP0NCUawhow" - }, - { - "title": "Ronnie Milsap - Old Folks (Karaoke)", - "id": "Ay69_JgxYc8" - }, - { - "title": "Ronnie Milsap - Just In Case (Karaoke)", - "id": "yo75iztvMVo" - }, - { - "title": "Ronnie Milsap - Show Her (Karaoke)", - "id": "xSa1tTukDeY" - }, - { - "title": "Ronnie Milsap - Inside (Karaoke)", - "id": "MRdMNe7Lg3k" - }, - { - "title": "Ronnie Milsap - A Woman In Love (Karaoke)", - "id": "f4SsfKj70NE" - }, - { - "title": "Gene Watson - This Dream's On Me (Karaoke)", - "id": "KzZaBmlS3DI" - }, - { - "title": "Charley Pride - I Know One (Karaoke)", - "id": "L1SCOBiq3Xk" - }, - { - "title": "Charley Pride - A Whole Lotta Things To Sing About (Karaoke)", - "id": "bS3JeZ1n_kQ" - }, - { - "title": "Charley Pride - We Could (Karaoke)", - "id": "0K5lFIO5eRE" - }, - { - "title": "Charley Pride - Let The Chips Fall (Karaoke)", - "id": "2g497CSzx9c" - }, - { - "title": "Charley Pride - Roll On Mississippi (Karaoke)", - "id": "pgXIyvz_MWQ" - }, - { - "title": "Charley Pride - When I Stop Leaving I'll Be Gone (Karaoke)", - "id": "1UKyTvhHKic" - }, - { - "title": "Charley Pride - More To Me (Karaoke)", - "id": "4_r8AQWpRy0" - }, - { - "title": "Charley Pride - You Almost Slipped My Mind (Karaoke)", - "id": "ZkQVCJgChN0" - }, - { - "title": "Charley Pride - Where Do I Put Her Memory (Karaoke)", - "id": "vveeCx8C-jo" - }, - { - "title": "Charley Pride - Just Between You And Me (Karaoke)", - "id": "GcFjyyQA4mA" - }, - { - "title": "Charley Pride - Hope You're Feeling Me (Like I'm Feeling You) (Karaoke)", - "id": "CqHQ-OLzX1c" - }, - { - "title": "Charley Pride - Amazing Love (Karaoke)", - "id": "jT8JCsMa0jU" - }, - { - "title": "Charley Pride - It's Gonna Take A Little Bit Longer (Karaoke)", - "id": "DCDuL8zkCWA" - }, - { - "title": "Charley Pride with Henry Mancini - I'd Rather Love You (Karaoke)", - "id": "e8msNuEdoPM" - }, - { - "title": "Charley Pride - The Easy Part's Over (Karaoke)", - "id": "YYW1LGI1ktE" - }, - { - "title": "Marty Robbins - Walking Piece Of Heaven (Karaoke)", - "id": "zQ3hs5Ddh3E" - }, - { - "title": "Marty Robbins - It's Your World (Karaoke)", - "id": "idoF4ro-Q0A" - }, - { - "title": "Marty Robbins - She Was Seventeen (He Was One Year More) (Karaoke)", - "id": "-O3qXU38ZEY" - }, - { - "title": "Nat King Cole - Too Young (Karaoke)", - "id": "rOHbt_R0Xzs" - }, - { - "title": "Tammy Wynette - I'm Not A Candle In The Wind (Karaoke)", - "id": "L7O9x34iJHY" - }, - { - "title": "Loretta Lynn - Old Time Religion (Karaoke)", - "id": "80sZzwF0Fh4" - }, - { - "title": "Loretta Lynn - I Feel Like Traveling On (Karaoke)", - "id": "BWBVnaObcmY" - }, - { - "title": "Loretta Lynn - When The Roll Is Called Up Yonder (Karaoke)", - "id": "fblG67pnzCY" - }, - { - "title": "Loretta Lynn - Success (Karaoke)", - "id": "38LjbS_EuUU" - }, - { - "title": "Loretta Lynn - I Can't Feel You Anymore (Karaoke)", - "id": "6VPYdXncOys" - }, - { - "title": "Loretta Lynn - The Pill (Karaoke)", - "id": "SdKW0neCh8g" - }, - { - "title": "Loretta Lynn - I Wanna Be Free (Karaoke)", - "id": "WuOnW72g5GY" - }, - { - "title": "Loretta Lynn - I've Got A Picture Of Us On My Mind (Karaoke)", - "id": "uRvVod5BCow" - }, - { - "title": "Johnny Cash - Seasons Of My Heart (Karaoke)", - "id": "XcLuykj5iM0" - }, - { - "title": "Johnny Cash - It's Just About Time (Karaoke)", - "id": "EhCljR3EyDw" - }, - { - "title": "Johnny Cash - A Thing Called Love (Karaoke)", - "id": "hwUQmJqihDU" - }, - { - "title": "Johnny Cash - Any Old Wind That Blows (Karaoke)", - "id": "Ux3Tg9vVfRQ" - }, - { - "title": "Johnny Cash - Kate (Karaoke)", - "id": "T8i-o1fVXCw" - }, - { - "title": "George Jones - I'm A One Woman Man (Karaoke)", - "id": "VLxpHf8uI9k" - }, - { - "title": "George Jones - Why Baby Why (Karaoke)", - "id": "ulPBeGhClMU" - }, - { - "title": "George Jones & Melba Montgomery - We Must Have Been Out Of Our Minds (Karaoke)", - "id": "IFkGghJMO9k" - }, - { - "title": "George Jones - Your Heart Turned Left (And I Was On The Right) (Karaoke)", - "id": "7uetfJyCV0k" - }, - { - "title": "George Jones - Tall, Tall Trees (Karaoke)", - "id": "B3tq4uoY_8g" - }, - { - "title": "George Jones - A Girl I Used To Know (Karaoke)", - "id": "wccAXm6a2VM" - }, - { - "title": "George Jones - I'll Share My World With You (Karaoke)", - "id": "Sv63pjdnypE" - }, - { - "title": "George Jones - Loving You Could Never Be Better (Karaoke)", - "id": "vlccEVGUgVw" - }, - { - "title": "Conway Twitty - Ain't She Something Else (Karaoke)", - "id": "bH7gxN_lwxQ" - }, - { - "title": "Conway Twitty - Between Blue Eyes And Jeans (Karaoke)", - "id": "Vbep_Xas6Lw" - }, - { - "title": "Waylon Jennings - Lonesome, On'ry And Mean (Karaoke)", - "id": "NMvhxKg4lv8" - }, - { - "title": "Waylon Jennings - Amanda (Karaoke)", - "id": "Gmw9o6J2sZ0" - }, - { - "title": "Faith Hill - Life's Too Short To Love Like That (Karaoke)", - "id": "Ncfis45kGEU" - }, - { - "title": "Tim McGraw - Illegal (Karaoke)", - "id": "spuY4ZPZFbE" - }, - { - "title": "Tim McGraw - Home (Karaoke)", - "id": "vjGYIJTHjI4" - }, - { - "title": "Toby Keith - Blame It On The Mistletoe (Karaoke)", - "id": "RdnDGlHoTKk" - }, - { - "title": "Kenny Chesney - High And Dry (Karaoke)", - "id": "clYhjLMhTbY" - }, - { - "title": "Tori Baxley - Half A Man (Karaoke)", - "id": "7FgidNRzbT4" - }, - { - "title": "Randy Travis - Angels (Karaoke)", - "id": "tYF71GO3U50" - }, - { - "title": "3 Doors Down - Behind Those Eyes (Karaoke)", - "id": "nXbV5ZOwT5U" - }, - { - "title": "Shooter Jennings - 4th Of July (Karaoke)", - "id": "QdHgK7IoP44" - }, - { - "title": "Rick Springfield - Love Somebody (Karaoke)", - "id": "f6aw_O41lAU" - }, - { - "title": "MIKA - Love Today (Karaoke)", - "id": "FxyQTb6n4_I" - }, - { - "title": "Taylor Dayne - Love Will Lead You Back (Karaoke)", - "id": "dnb1fP2ZwxU" - }, - { - "title": "Kaiser Chiefs - Love's Not A Competition (But I'm Winning) (Karaoke)", - "id": "ZO4rk25qgcE" - }, - { - "title": "Whitney Houston - Lover For Life (Karaoke)", - "id": "Ku22AqQm1K0" - }, - { - "title": "Room 5 Ftg. Oliver Cheatham - Make Luv (Karaoke)", - "id": "cw7GSjVWsG8" - }, - { - "title": "Robbie Williams - Make Me Pure (Karaoke)", - "id": "wXTHUkORedA" - }, - { - "title": "David Naughton - Makin' It (Karaoke)", - "id": "Neh2Jl0Y5YE" - }, - { - "title": "Blue Mink - Melting Pot (Karaoke)", - "id": "mRzJ_C1Ogls" - }, - { - "title": "Shabba Ranks ftg. Chevelle Franklyn - Mr. Loverman (Karaoke)", - "id": "xpeIa_mDXAg" - }, - { - "title": "Years & Years - Meteorite (Karaoke)", - "id": "e4WBlhscl3o" - }, - { - "title": "Franz Ferdinand - Michael (Karaoke)", - "id": "oAcBjO8cogM" - }, - { - "title": "Westlife - Miss You Nights (Karaoke)", - "id": "IOCKvPBtwFA" - }, - { - "title": "Cliff Richard - Miss You Nights (Karaoke)", - "id": "-pa11_ZzIHg" - }, - { - "title": "Kaiser Chiefs - Modern Way (Karaoke)", - "id": "meFqRo70eUw" - }, - { - "title": "Pixies - Monkey Gone To Heaven (Karaoke)", - "id": "wCSP7grh854" - }, - { - "title": "Merril Bainbridge - Mouth (Karaoke)", - "id": "JmM60tyfJOA" - }, - { - "title": "Technotronic - Move This (Karaoke)", - "id": "8BZ2Y6Fiums" - }, - { - "title": "Stereophonics - Mr. Writer (Karaoke)", - "id": "snCRWajTIp8" - }, - { - "title": "Maroon 5 - Must Get Out (Karaoke)", - "id": "oOoo6EExukE" - }, - { - "title": "Katherine McPhee - My Destiny (Karaoke)", - "id": "lOKC2HEJt58" - }, - { - "title": "The Cardigans - My Favourite Game (Karaoke)", - "id": "TKSmrCq-Cik" - }, - { - "title": "Ghost - Square Hammer (Karaoke)", - "id": "6N-SI1eN1IA" - }, - { - "title": "Whitney Houston - My Name Is Not Susan (Karaoke)", - "id": "-fDIky4F7p0" - }, - { - "title": "Limp Bizkit - My Way (Karaoke)", - "id": "v4yzEH8xH7M" - }, - { - "title": "Selena Gomez & The Scene - Naturally (Karaoke)", - "id": "NJ7JY8RMtQo" - }, - { - "title": "Leigh Nash - Need To Be Next To You (Karaoke)", - "id": "EkDH3tY7mzI" - }, - { - "title": "Immature - Never Lie (Karaoke)", - "id": "5QRN09CYC3w" - }, - { - "title": "Kaiser Chiefs - Never Miss A Beat (Karaoke)", - "id": "b97Bh3DHcHE" - }, - { - "title": "Hi Five - Never Should've Let You Go (Karaoke)", - "id": "AKANjCH2fd8" - }, - { - "title": "Deadeye Dick - New Age Girl (Karaoke)", - "id": "UgT_pHG2x2Y" - }, - { - "title": "Florence + The Machine - No Light, No Light (Karaoke)", - "id": "xG03UK89bGA" - }, - { - "title": "Scorpions - No One Like You (Karaoke)", - "id": "oDe7lf9Dc7M" - }, - { - "title": "*NSYNC - No Strings Attached (Karaoke)", - "id": "sbsAhoA3vMs" - }, - { - "title": "Franz Ferdinand - No You Girls (Karaoke)", - "id": "3XFLK4tz54w" - }, - { - "title": "Theory Of A Deadman - Nothing Could Come Between Us (Karaoke)", - "id": "lQ6OVcjLars" - }, - { - "title": "Kaiser Chiefs - Oh My God Karaoke)", - "id": "M9o6g3U5H10" - }, - { - "title": "Larry Graham - One In A Million You (Karaoke)", - "id": "jrC8u3Ztvv0" - }, - { - "title": "Reba McEntire - Only In My Mind (Karaoke)", - "id": "ZCbcg3U9dDk" - }, - { - "title": "Snow Patrol - Open Your Eyes (Karaoke)", - "id": "kXIme1ymsrA" - }, - { - "title": "Demi Lovato - Our Time Is Here (Karaoke)", - "id": "nr6hk66GjDM" - }, - { - "title": "Maximo Park - Our Velocity (Karaoke)", - "id": "UafObz22JYg" - }, - { - "title": "Live - Overcome (Karaoke)", - "id": "CA72almq3Vg" - }, - { - "title": "Santana - Persuasion (Karaoke)", - "id": "_KB89ZDi-jg" - }, - { - "title": "Madonna - Physical Attraction (Karaoke)", - "id": "nxXmHwwiOW4" - }, - { - "title": "Status Quo - Pictures Of Matchstick Men (Karaoke)", - "id": "Cl-05I5ChqU" - }, - { - "title": "Nelly - Pimp Juice (Karaoke)", - "id": "2zIXRTcgGh8" - }, - { - "title": "Immature - Please Don't Go (Karaoke)", - "id": "92V8NqLJX4M" - }, - { - "title": "Johnny Tillotson - Poetry In Motion (Karaoke)", - "id": "l3EUNBivqo0" - }, - { - "title": "Indigo Girls - Power Of Two (Karaoke)", - "id": "82BbBgcMLxE" - }, - { - "title": "Fatboy Slim - Praise You (Karaoke)", - "id": "olIdWux_N98" - }, - { - "title": "World Party - Put The Message In A Box (Karaoke)", - "id": "cLuozai2woA" - }, - { - "title": "Dashboard Confessional - Rapid Hope Loss (Karaoke)", - "id": "XxL_IoJYXaE" - }, - { - "title": "Kiss - Reason To Live (Karaoke)", - "id": "xqikCPJnMqQ" - }, - { - "title": "Sage The Gemini - Red Nose (Karaoke)", - "id": "MJjXePaTLs8" - }, - { - "title": "Thrice - Red Sky (Karaoke)", - "id": "OG4E5RzcJWw" - }, - { - "title": "Christopher Cross - Ride Like The Wind (Karaoke)", - "id": "0_yk84rTjCc" - }, - { - "title": "Chingy - Right Thurr (Karaoke)", - "id": "Fts_8GSAYSQ" - }, - { - "title": "Scorpions - Rock You Like A Hurricane (Karaoke)", - "id": "Cs7ZbXud10U" - }, - { - "title": "Mott The Hoople - Roll Away The Stone (Karaoke)", - "id": "gJ_l_UImO7c" - }, - { - "title": "LeAnn Rimes - Probably Wouldn't Be This Way (Karaoke)", - "id": "ZfaF6Gn_rCs" - }, - { - "title": "Keane - Somewhere Only We Know (Karaoke)", - "id": "e1u2QgM_nf4" - }, - { - "title": "Tift Merritt - Good Hearted Man (Karaoke)", - "id": "uBvrI5_hNac" - }, - { - "title": "Jump 'N The Saddle - The Curly Shuffle", - "id": "qexDudUykXU" - }, - { - "title": "S.O.S. Band - Take Your Time (Do It Right) (Karaoke)", - "id": "VnO1OZukdnk" - }, - { - "title": "Pete Townshend - Let My Love Open The Door (Karaoke)", - "id": "NcxUBy011Bo" - }, - { - "title": "Bob Welch - Sentimental Lady (Karaoke)", - "id": "_Xsy0IXRFIo" - }, - { - "title": "Stephen Bishop - On And On (Karaoke)", - "id": "7uyhKQbtqzQ" - }, - { - "title": "Andrew Gold - Lonely Boy (Karaoke)", - "id": "FVqXdvnoFk8" - }, - { - "title": "Lee Michaels - Do You Know What I Mean (Karaoke)", - "id": "B4LWpu8utqY" - }, - { - "title": "Brian McKnight - Everytime You Go Away (Karaoke)", - "id": "SXPgA1Sb8T4" - }, - { - "title": "Joss Stone - Right To Be Wrong (Karaoke)", - "id": "bBlsVcMYAMU" - }, - { - "title": "3 Doors Down - Let Me Go (Karaoke)", - "id": "FldeCEsk7f4" - }, - { - "title": "Johnny Cymbal - Mr. Bass Man (Karaoke)", - "id": "opLWe17Mvkw" - }, - { - "title": "Amy Dalley - I Would Cry (Karaoke)", - "id": "A_O1Goo_i34" - }, - { - "title": "Crispian St. Peters - The Pied Piper", - "id": "Ev_YvHNTRWQ" - }, - { - "title": "Napoleon XIV - They're Coming To Take Me Away, Ha-Haaa! (Karaoke)", - "id": "a8qV_eQBGGM" - }, - { - "title": "Ad Libs - The Boy From New York City (Karaoke)", - "id": "7RhKXvlAwkY" - }, - { - "title": "Spanky And Our Gang - Sunday Will Never Be The Same (Karaoke)", - "id": "rN521w4ZOFA" - }, - { - "title": "Shirley Brown - Woman To Woman (Karaoke)", - "id": "tgwEGNu1N7c" - }, - { - "title": "New Found Glory - I Don't Wanna Know (Karaoke)", - "id": "hNcakoJ8jUg" - }, - { - "title": "Goo Goo Dolls - Give A Little Bit (Karaoke)", - "id": "8dh0XTkU8q4" - }, - { - "title": "O. C. Smith - Little Green Apples (Karaoke)", - "id": "XFaZtgemKwo" - }, - { - "title": "Shirley And Lee - Let The Good Times Roll (Karaoke)", - "id": "u_AOsljL-Z0" - }, - { - "title": "J. Frank Wilson And The Cavaliers - Last Kiss (Karaoke)", - "id": "Ga_bQZacI9A" - }, - { - "title": "Brenton Wood - Gimme Little Sign (Karaoke)", - "id": "9WS7WgYoRUU" - }, - { - "title": "Ray Charles - Bye Bye, Love (Karaoke)", - "id": "Kb3vbVWfHTE" - }, - { - "title": "Tracy Lawrence - Sawdust On Her Halo (Karaoke)", - "id": "W7rFnQo7Dgw" - }, - { - "title": "Avril Lavigne - Nobody's Home (Karaoke)", - "id": "xFQk8WyFuMM" - }, - { - "title": "Christina Aguilera feat. Missy Elliott - Car Wash (Shark Tale Mix) (Karaoke)", - "id": "ai-uDbrffe0" - }, - { - "title": "Josh Gracin - Nothin' To Lose (Karaoke)", - "id": "VqQnWHiCUJ0" - }, - { - "title": "LeAnn Rimes - Nothin' 'Bout Love Makes Sense (Karaoke)", - "id": "Q-Y7lii07Ts" - }, - { - "title": "New Found Glory - Failure's Not Flattering (Karaoke)", - "id": "jbZqFPrvkkU" - }, - { - "title": "Rascal Flatts - My Worst Fear (Karaoke)", - "id": "EMELlbUy8rg" - }, - { - "title": "Toby Keith - Stays In Mexico (Karaoke)", - "id": "Z066QA84PfQ" - }, - { - "title": "Brooks & Dunn - That's What It's All About (Karaoke)", - "id": "Qreg16cuR2Q" - }, - { - "title": "Restless Heart - Feel My Way To You (Karaoke)", - "id": "Qs4KummGKCQ" - }, - { - "title": "Clay Walker - Jesus Was A Country Boy (Karaoke)", - "id": "AY_0dM2HTkU" - }, - { - "title": "George Strait - I Hate Everything (Karaoke)", - "id": "JwOhe4mdKbE" - }, - { - "title": "Billy Dean - Thank God I'm A Country Boy (Karaoke)", - "id": "mrFgDYyoHWE" - }, - { - "title": "Rascal Flatts - Feels Like Today (Karaoke)", - "id": "n8plE0o2oWU" - }, - { - "title": "Keith Urban - Days Go By (Karaoke)", - "id": "9j3VFuY_8H8" - }, - { - "title": "Blue County - That's Cool (Karaoke)", - "id": "k_cnyIX4wHY" - }, - { - "title": "John Prine - Ain't Hurtin' Nobody (Karaoke)", - "id": "ZvSeoC7HVjg" - }, - { - "title": "Ann Peebles - I Can't Stand The Rain (Karaoke)", - "id": "XCbQSnktYb0" - }, - { - "title": "War - Why Can't We Be Friends (Karaoke)", - "id": "veHmkD4vTJc" - }, - { - "title": "Staple Singers - If You're Ready (Come Go With Me) (Karaoke)", - "id": "T0ZLT_tindo" - }, - { - "title": "Al Green - I'm Still In Love With You (Karaoke)", - "id": "bipjhXV-9Oc" - }, - { - "title": "Isaac Hayes - Do Your Thing (Karaoke)", - "id": "XlFpiiGIs1U" - }, - { - "title": "Moments - Love On A Two-Way Street (Karaoke)", - "id": "CLRc1pBUoZc" - }, - { - "title": "Gladys Knight & The Pips - Neither One Of Us (Wants To Be The First To Say Goodbye) (Karaoke)", - "id": "TELQMVaJP64" - }, - { - "title": "Del Amitri - Roll To Me (Karaoke)", - "id": "emn4bFgKMqI" - }, - { - "title": "Limp Bizkit - Rollin' (Air Raid Vehicle) (Karaoke)", - "id": "T0bnMVdwfvE" - }, - { - "title": "Rufus Thomas - Do The Push And Pull (Karaoke)", - "id": "2gPdCAkgZYE" - }, - { - "title": "Emmylou Harris - Rollin' And Ramblin' (The Death Of Hank Williams) (Karaoke)", - "id": "El5NebkugaU" - }, - { - "title": "The Glass House - Crumbs Off The Table (Karaoke)", - "id": "7EaDNXJI4UY" - }, - { - "title": "The Pigeon Detectives - Romantic Type (Karaoke)", - "id": "7DDwm9dOi_U" - }, - { - "title": "Kaiser Chiefs - Ruby (Karaoke)", - "id": "Hd3FI9H3npg" - }, - { - "title": "Elton John - Sacrifice (Karaoke)", - "id": "b3YHyudAJUk" - }, - { - "title": "Mandy Moore - Saturate Me (Karaoke)", - "id": "uhv77DtmjJw" - }, - { - "title": "Shanice - Saving Forever For You (Karaoke)", - "id": "ze0NjVI4zQw" - }, - { - "title": "Fleetwood Mac - Say You Love Me (Karaoke)", - "id": "Hjm7el6E-3o" - }, - { - "title": "Amy Dalley - Men Don't Change (Karaoke)", - "id": "mfUca4D-u4A" - }, - { - "title": "Dashboard Confessional - Screaming Infidelities (Karaoke)", - "id": "2XKg2jxZbVk" - }, - { - "title": "The Offspring - Hit That (Karaoke)", - "id": "JOZ4OAhFIR4" - }, - { - "title": "Fuel - Falls On Me (Karaoke)", - "id": "vgD7H0W8tiY" - }, - { - "title": "Mickey Gilley - She's Pulling Me Back Again (Karaoke)", - "id": "krrMTMAiaPE" - }, - { - "title": "Evanescence - Everybody's Fool (Karaoke)", - "id": "kzAre14LqGI" - }, - { - "title": "Cameo - She's Strange (Karaoke)", - "id": "1dl-V2A9oMs" - }, - { - "title": "Lloyd Price - Just Because (Karaoke)", - "id": "_QO-RBVHuRk" - }, - { - "title": "Robyn - Show Me Love (Karaoke)", - "id": "kkot0hqFc_g" - }, - { - "title": "Ilene Woods And Mike Douglas - So This Is Love (Karaoke)", - "id": "MVoNE6pMrjI" - }, - { - "title": "Maurice Chevalier - The Aristocats, (Karaoke)", - "id": "IGYzWpGxCgA" - }, - { - "title": "Jackie Wilson - I Get The Sweetest Feeling (Karaoke)", - "id": "13VTtUVzHiU" - }, - { - "title": "3 Doors Down - Away From The Sun (Karaoke)", - "id": "r81-ybZGcHs" - }, - { - "title": "Third Day - Sing A Song (Karaoke)", - "id": "jVh-YeI6Y9A" - }, - { - "title": "Toby Keith - The Critic (Karaoke)", - "id": "vq9seH-JaCo" - }, - { - "title": "Roxie Dean - Women Know Women (Karaoke)", - "id": "dHdrT9bHSiA" - }, - { - "title": "Clay Walker - I Can't Sleep (Karaoke)", - "id": "WbafYmyplO8" - }, - { - "title": "Rod Stewart - Crazy She Calls Me (Karaoke)", - "id": "D9lcwqgXdnA" - }, - { - "title": "Rod Stewart - The Very Thought Of You", - "id": "XjWZKOEcqZ0" - }, - { - "title": "John Denver - Sweet Surrender (Karaoke)", - "id": "xnYm6NoZkpA" - }, - { - "title": "Captain & Tennille - You Need A Woman Tonight (Karaoke)", - "id": "oy4zCsk1sBc" - }, - { - "title": "Captain & Tennille - Song Of Joy (Karaoke)", - "id": "55DLbKGSrSw" - }, - { - "title": "Captain & Tennille - We Never Really Say Goodbye (Karaoke)", - "id": "ssFXwnr4v6U" - }, - { - "title": "Air Supply - Now And Forever (Karaoke)", - "id": "wCnFuhr8EUQ" - }, - { - "title": "Air Supply - I Want To Give It All (Karaoke)", - "id": "0Mq_p62ZGh4" - }, - { - "title": "Air Supply - Making Love Out Of Nothing At All (Karaoke)", - "id": "6VyBdsDZ2NY" - }, - { - "title": "Air Supply - Even The Nights Are Better (Karaoke)", - "id": "QBcnCWJp99c" - }, - { - "title": "Air Supply - Sweet Dreams (Karaoke)", - "id": "WWouYTRw75k" - }, - { - "title": "All-4-One - Someday (Karaoke)", - "id": "0gi65_9o1P4" - }, - { - "title": "Three Dog Night - Out In The Country (Karaoke)", - "id": "poM2TkxxG9Q" - }, - { - "title": "Three Dog Night - Celebrate (Karaoke)", - "id": "a3il7mQVQmQ" - }, - { - "title": "Boyzone - Shooting Star (Karaoke)", - "id": "ClnVoozC39E" - }, - { - "title": "Three Dog Night - The Show Must Go On", - "id": "-HrAx62UnY4" - }, - { - "title": "Three Dog Night - Pieces Of April (Karaoke)", - "id": "ZnarKfk88zA" - }, - { - "title": "Three Dog Night - Never Been To Spain (Karaoke)", - "id": "qpAe4xew_rk" - }, - { - "title": "Phil Collins - Two Worlds (Karaoke)", - "id": "RBXZsdgr3-w" - }, - { - "title": "Phil Collins - Strangers Like Me (Karaoke)", - "id": "X_QRyYW1PbA" - }, - { - "title": "From Winnie The Pooh - Winnie The Pooh (Karaoke)", - "id": "GMX7e9jHFWo" - }, - { - "title": "High School Musical Cast - What Time Is It (Karaoke)", - "id": "RPHBG7XS97w" - }, - { - "title": "High School Musical Cast - You Are The Music In Me (Karaoke)", - "id": "8ebmJx2fo3E" - }, - { - "title": "High School Musical Cast - Gotta Go My Own Way (Karaoke)", - "id": "VQDhCpU2E_w" - }, - { - "title": "High School Musical Cast - Work This Out (Karaoke)", - "id": "QCwXsutBDwg" - }, - { - "title": "High School Musical Cast - Humuhumunukunukuapua'a (Karaoke)", - "id": "dNg0RjxeqZA" - }, - { - "title": "Zac Efron And Vanessa Hudgens - Everyday (Karaoke)", - "id": "qzGCPxrTGFg" - }, - { - "title": "High School Musical Cast - You Are The Music In Me (Sharpay Version) (Karaoke)", - "id": "nRd9qqtPZu0" - }, - { - "title": "High School Musical Cast - I Don't Dance (Karaoke)", - "id": "OmVsF2am7UM" - }, - { - "title": "High School Musical Cast - A Night To Remember (Karaoke)", - "id": "JTonRtG2nmY" - }, - { - "title": "Demi Lovato ftg. Joe Jonas - This Is Me (Karaoke)", - "id": "bqqZFyyWv84" - }, - { - "title": "The Everly Brothers - Take A Message To Mary (Karaoke)", - "id": "v-DtmBNECUQ" - }, - { - "title": "From The Movie Peter Pan - You Can Fly You Can Fly You Can Fly (Karaoke)", - "id": "MY9G2FJeUDc" - }, - { - "title": "The Everly Brothers - Problems (Karaoke)", - "id": "gmwQAtL_AhM" - }, - { - "title": "The Everly Brothers - Bird Dog (Karaoke)", - "id": "k-ZjZiMj8vY" - }, - { - "title": "Barry Manilow - It's A Miracle (Karaoke)", - "id": "jLJFcXtZRmM" - }, - { - "title": "Barry Manilow - This One's For You (Karaoke)", - "id": "rl1heTbP-ro" - }, - { - "title": "Barry Manilow - Even Now (Karaoke)", - "id": "q-zwqnW5ePo" - }, - { - "title": "Michael Jackson - One More Chance (Karaoke)", - "id": "X5-exuurQjo" - }, - { - "title": "Kelly Clarkson - The Trouble With Love Is (Karaoke)", - "id": "neHSAIbLSTc" - }, - { - "title": "From The Movie Bambi - Little April Showers (Karaoke)", - "id": "rYHKzL0ERRQ" - }, - { - "title": "High School Musical Cast - Now Or Never (Karaoke)", - "id": "1hkrR0atc14" - }, - { - "title": "Martina McBride - Reluctant Daughter (Karaoke)", - "id": "THN8bypWd10" - }, - { - "title": "Rascal Flatts - One Good Love (Karaoke)", - "id": "iwDJDzGWy14" - }, - { - "title": "Tim McGraw - Watch The Wind Blow By (Karaoke)", - "id": "UEQdaBpyq6Q" - }, - { - "title": "High School Musical Cast - Stick To The Status Quo (Karaoke)", - "id": "CYoobIOEyY0" - }, - { - "title": "Grace Potter & The Nocturnals - Something That I Want (Karaoke)", - "id": "vx1MG9YrmNM" - }, - { - "title": "From The Disney Movie Hercules - A Star Is Born (Karaoke)", - "id": "VbgCc98A7m4" - }, - { - "title": "High School Musical Cast - We're All In This Together (Karaoke)", - "id": "SuB6bkneTv0" - }, - { - "title": "Linda Ronstadt - You Can't Treat The Wrong Man Right (Karaoke)", - "id": "zem-GNBkktU" - }, - { - "title": "Alvin Stardust ftg. Pat Boone - Wonderful Time Up There (Karaoke)", - "id": "G1oD0Uw2Qco" - }, - { - "title": "Roger Whittaker - The Last Farewell (Karaoke)", - "id": "5eyAR21iKlA" - }, - { - "title": "Lisa Stansfield - This Is The Right Time (Karaoke)", - "id": "h6_9FQPRSLk" - }, - { - "title": "Tony Toni Tonรฉ - Thinking Of You (Karaoke)", - "id": "4KDBOLBfahw" - }, - { - "title": "The Drifters - You're More Than A Number In My Little Red Book (Karaoke)", - "id": "S3clXwqVsCo" - }, - { - "title": "Lisa Stansfield - Someday (I'm Coming Back) (Karaoke)", - "id": "lc8rIcjGfCU" - }, - { - "title": "Brian McKnight - Try Our Love Again (Karaoke)", - "id": "QUB-HJ0vJqA" - }, - { - "title": "Rosanne Cash, Johnny Cash - September When It Comes (Karaoke)", - "id": "ywfwdf35Wp4" - }, - { - "title": "Changing Faces - Stroke You Up (Karaoke)", - "id": "UOmLoESKdTg" - }, - { - "title": "Changing Faces - Foolin' Around (Karaoke)", - "id": "Hby8Bklrch0" - }, - { - "title": "Johnny Horton - The Mansion You Stole (Karaoke)", - "id": "Qiid7fg_xjc" - }, - { - "title": "The Troggs - With A Girl Like You (Karaoke)", - "id": "XAK-v2NLhWI" - }, - { - "title": "Martina McBride - In My Daughter's Eyes (Karaoke)", - "id": "UVmoA1GLOms" - }, - { - "title": "The Hollies - Stop Stop Stop (Karaoke)", - "id": "XZZbNh6jKMU" - }, - { - "title": "Amy Dalley - I Think You're Beautiful (Karaoke)", - "id": "3J3QdaOdDok" - }, - { - "title": "3 Doors Down - Here Without You (Karaoke)", - "id": "3f_EeE4ikHQ" - }, - { - "title": "Thompson Twins - You Take Me Up (Karaoke)", - "id": "FwJs7DfprAQ" - }, - { - "title": "The Beautiful South - Song For Whoever (Karaoke)", - "id": "0MLlR9l6CXk" - }, - { - "title": "Fleetwood Mac - You Make Loving Fun (Karaoke)", - "id": "1NExHDNBXhU" - }, - { - "title": "Seal - Crazy (Karaoke)", - "id": "7oHp-9EEfE4" - }, - { - "title": "Freddie Jackson - You Are My Lady (Karaoke)", - "id": "9IqsU2yuXt8" - }, - { - "title": "The Lovin' Spoonful - Darling, Be Home Soon (Karaoke)", - "id": "1u5SoSrY1lE" - }, - { - "title": "Craig David - What's Your Flava (Karaoke)", - "id": "ap6yMgPY8V8" - }, - { - "title": "Jigsaw - Sky High (Karaoke)", - "id": "fUTquDOETFw" - }, - { - "title": "Cรฉline Dion - Then You Look At Me (Karaoke)", - "id": "2fSE4g0RVc4" - }, - { - "title": "Bobby Darin - Things (Karaoke)", - "id": "OVYwlBLj_CM" - }, - { - "title": "Dean Martin - Houston (Karaoke)", - "id": "mMVNZwB7iGQ" - }, - { - "title": "Bette Midler - Under The Boardwalk (Karaoke)", - "id": "6cEFp87Ao58" - }, - { - "title": "Bette Midler - God Help The Outcasts (Karaoke)", - "id": "1FD1FWObfjs" - }, - { - "title": "Joss Stone - You Had Me (Karaoke)", - "id": "LLSSc1dTJi4" - }, - { - "title": "Smokie - Something's Been Making Me Blue (Karaoke)", - "id": "xNAcv1EIDbQ" - }, - { - "title": "Buddy Holly - Peggy Sue Got Married (Karaoke)", - "id": "lf_v7PWcgto" - }, - { - "title": "Cรฉline Dion - All By Myself (Karaoke)", - "id": "T54vydgdLCI" - }, - { - "title": "Boston - A Man I'll Never Be (Karaoke)", - "id": "Ue7SgyozAmg" - }, - { - "title": "Diamond Rio - Wrinkles (Karaoke)", - "id": "qeHI7pfH4rA" - }, - { - "title": "Ennis Sisters - It's Not About You (Karaoke)", - "id": "o9wW2f72hrM" - }, - { - "title": "The Four Tops - Keeper Of The Castle (Karaoke)", - "id": "h4s3_NEqGXo" - }, - { - "title": "Bing Crosby with Patti Page - Till We Meet Again (Karaoke)", - "id": "LZE2GF-c-6c" - }, - { - "title": "Jim Croce - Speedball Tucker (Karaoke)", - "id": "sf35ZuDvTpY" - }, - { - "title": "Jim Croce - New York's Not My Home (Karaoke)", - "id": "eY1xecUnGNU" - }, - { - "title": "Jim Croce - These Dreams (Karaoke)", - "id": "Nht06DdYNIY" - }, - { - "title": "Jim Croce - Roller Derby Queen (Karaoke)", - "id": "i2Ar5HeMNiY" - }, - { - "title": "Jim Croce - Rapid Roy (That Stock Car Boy) (Karaoke)", - "id": "BZlrrrzrm2E" - }, - { - "title": "Creedence Clearwater Revival - Up Around The Bend (Karaoke)", - "id": "CqXqxbDiiIQ" - }, - { - "title": "Creedence Clearwater Revival - Travelin' Band (Karaoke)", - "id": "Z4s2kcaiT8I" - }, - { - "title": "Creedence Clearwater Revival - Commotion (Karaoke)", - "id": "VG0Hl79ZaBQ" - }, - { - "title": "Creedence Clearwater Revival - Green River (Karaoke)", - "id": "dNu49k_uuBQ" - }, - { - "title": "Bill Anderson - 8 X 10 (Karaoke)", - "id": "yM2HpXXjRis" - }, - { - "title": "Tim McGraw - Real Good Man (Karaoke)", - "id": "ZDMTUPNDTWA" - }, - { - "title": "Cher - Dark Lady (Karaoke)", - "id": "ELWFQK91wJ4" - }, - { - "title": "The Carpenters - Only Yesterday (Karaoke)", - "id": "WG2AmlwCTsk" - }, - { - "title": "Sheryl Crow - Let's Get Free (Karaoke)", - "id": "V8OUk8KMK3E" - }, - { - "title": "Carl Smith - Kisses Don't Lie (Karaoke)", - "id": "ylYxkz-dMoM" - }, - { - "title": "Carl Smith - Why, Why (Karaoke)", - "id": "b0RWlwou9EQ" - }, - { - "title": "The Vogues - You're The One (Karaoke)", - "id": "VnJ4aghvf9o" - }, - { - "title": "Johnny Rodriguez - Love Put A Song In My Heart (Karaoke)", - "id": "RiRj4pgF2fc" - }, - { - "title": "Stereophonics - Vegas Two Times (Karaoke)", - "id": "TxA5b7OMSys" - }, - { - "title": "Johnny Rodriguez - Just Get Up And Close The Door (Karaoke)", - "id": "JypoXiMce50" - }, - { - "title": "Jessica Simpson - These Boots Are Made For Walking (Karaoke)", - "id": "5_wZKTMsD4k" - }, - { - "title": "Tex Ritter & His Texans - Have I Told You Lately That I Love You (Karaoke)", - "id": "xHGnY2-ezn8" - }, - { - "title": "Franz Ferdinand - Walk Away (Karaoke)", - "id": "MUOrBFj37iw" - }, - { - "title": "Michael Martin Murphey with Ryan Murphey - Talkin' To The Wrong Man (Karaoke)", - "id": "K05Uh6ZcSmQ" - }, - { - "title": "Michael Martin Murphey - A Face In The Crowd (Karaoke)", - "id": "8fpz9qTNtWs" - }, - { - "title": "Franz Ferdinand - The Fallen (Karaoke)", - "id": "JJa8Asjb4zA" - }, - { - "title": "Michael Martin Murphey - Carolina In The Pines (Karaoke)", - "id": "IOf1J15aY8w" - }, - { - "title": "Michael Martin Murphey - Still Taking Chances (Karaoke)", - "id": "7vOqhV4qrWE" - }, - { - "title": "Hank Locklin - You're The Reason (Karaoke)", - "id": "FpEixmhIUBM" - }, - { - "title": "Hank Locklin - Why Baby Why (Karaoke)", - "id": "9hHs460ReWs" - }, - { - "title": "Gene Autry - Someday You'll Want Me To Want You (Karaoke)", - "id": "qxfrTO9Kpws" - }, - { - "title": "Snow Patrol - You're All I Have (Karaoke)", - "id": "wGjd6IdE324" - }, - { - "title": "Bill Anderson And Jan Howard - If It's All The Same To You (Karaoke)", - "id": "Ha5a2uO1GKo" - }, - { - "title": "Robbie Williams - Sin Sin Sin (Karaoke)", - "id": "YXnLZ4TwAe8" - }, - { - "title": "Just Jack - Starz In Their Eyes (Karaoke)", - "id": "NOMfwHcQ8D0" - }, - { - "title": "Faron Young - Your Old Used To Be (Karaoke)", - "id": "5PzHQ7SAUfA" - }, - { - "title": "NE-YO - Sign Me Up (Karaoke)", - "id": "JzRjK-nHk2Y" - }, - { - "title": "Faron Young - You're Still Mine (Karaoke)", - "id": "se7PuF9oAVI" - }, - { - "title": "Leonard Cohen - The Partisan (Karaoke)", - "id": "mjKkFI22FdE" - }, - { - "title": "Faron Young - All Right (Karaoke)", - "id": "QV9JG0ckxC8" - }, - { - "title": "Kitty Wells - Left To Right (Karaoke)", - "id": "O8szRoi457Q" - }, - { - "title": "Kitty Wells - Jealousy (Karaoke)", - "id": "S67O2XTCjdo" - }, - { - "title": "Kitty Wells - The White Circle On My Finger (Karaoke)", - "id": "moQZj5WPfSQ" - }, - { - "title": "Kitty Wells - Amigo's Guitar (Karaoke)", - "id": "sQKLt6diSew" - }, - { - "title": "Willie Nelson - My Heroes Have Always Been Cowboys (Karaoke)", - "id": "Z4JXKtxYxMM" - }, - { - "title": "LeAnn Rimes - Tic Toc (Karaoke)", - "id": "u24sayZ7u9w" - }, - { - "title": "Blake Shelton - Heavy Liftin' (Karaoke)", - "id": "m-MpvLipY5U" - }, - { - "title": "Evanescence - Bring Me To Life (Karaoke)", - "id": "iqKYjiDJALY" - }, - { - "title": "Brad Martin - One Of Those Days (Karaoke)", - "id": "2Ywz0mf1A14" - }, - { - "title": "Aaron Lines - Love Changes Everything (Karaoke)", - "id": "kuOhC0C2DC4" - }, - { - "title": "Johnny Paycheck - My Part Of Forever (Karaoke)", - "id": "ADAwLZmppUk" - }, - { - "title": "Johnny Paycheck - Love Is A Good Thing (Karaoke)", - "id": "tjzEfn7O0F4" - }, - { - "title": "Johnny Paycheck - Something About You I Love (Karaoke)", - "id": "7w49Zlo08yg" - }, - { - "title": "Johnny Paycheck - For A Minute There (Karaoke)", - "id": "lGvD2P_-EIU" - }, - { - "title": "Johnny Paycheck - Someone To Give My Love To (Karaoke)", - "id": "W9cSbomAJOk" - }, - { - "title": "Johnny Paycheck with Jody Miller - Let's All Go Down To The River (Karaoke)", - "id": "m1fcxTcGenA" - }, - { - "title": "3 Doors Down - The Road I'm On (Karaoke)", - "id": "1j45px3MnAM" - }, - { - "title": "Lynyrd Skynyrd - Swamp Music (Karaoke)", - "id": "5qpRtIjtwVM" - }, - { - "title": "Lynyrd Skynyrd - I Know A Little (Karaoke)", - "id": "LSlppn56rfg" - }, - { - "title": "Lynyrd Skynyrd - The Needle And The Spoon (Karaoke)", - "id": "GLopcgOwFjA" - }, - { - "title": "Lynyrd Skynyrd - The Ballad Of Curtis Loew (Karaoke)", - "id": "hA3RxvbT35c" - }, - { - "title": "Lynyrd Skynyrd - Simple Man (Karaoke)", - "id": "V11zO2_h8Mc" - }, - { - "title": "Lynyrd Skynyrd - Don't Ask Me No Questions (Karaoke)", - "id": "WXdTCe0_YHI" - }, - { - "title": "Lynyrd Skynyrd - Whiskey Rock-A-Roller (Karaoke)", - "id": "YBhBw3sduLI" - }, - { - "title": "Lynyrd Skynyrd - Poison Whiskey (Karaoke)", - "id": "LoH_45YKl-k" - }, - { - "title": "Lynyrd Skynyrd - Gimme Back My Bullets (Karaoke)", - "id": "upInJLNeZT0" - }, - { - "title": "Lynyrd Skynyrd - I Ain't the One (Karaoke)", - "id": "wIDhQnK8EfU" - }, - { - "title": "Steve Wariner - Snowfall On The Sand (Karaoke)", - "id": "2vRoA7vML0o" - }, - { - "title": "Ronnie Bowman - Rise Above (Karaoke)", - "id": "W7IV7TNFJjI" - }, - { - "title": "The Nelons - He Rolled Back The Stone (Karaoke)", - "id": "hJqB6FAem8g" - }, - { - "title": "Statler Brothers - Bed Of Roses (Karaoke)", - "id": "Sp5pmkDZzjE" - }, - { - "title": "Jennifer Knapp - The Way I Am (Karaoke)", - "id": "smubqX4XACw" - }, - { - "title": "Jars Of Clay - I Need You (Karaoke)", - "id": "17KeaMJx-SA" - }, - { - "title": "Jars Of Clay - Crazy Times (Karaoke)", - "id": "Fd1SmuthgAA" - }, - { - "title": "Gold City - I'm Not What I Was (Karaoke)", - "id": "VldwzlHs4jk" - }, - { - "title": "Won By One - Somewhere In Gloryland (Karaoke)", - "id": "h9rTlRbJWwI" - }, - { - "title": "Engelbert Humperdinck - I Never Said Goodbye (Karaoke)", - "id": "04hmWhoy1PE" - }, - { - "title": "Engelbert Humperdinck - Another Time, Another Place (Karaoke)", - "id": "_useP55-ynA" - }, - { - "title": "Elton John & Leann Rimes - Written In The Stars (Karaoke)", - "id": "wtdHS_SFFYg" - }, - { - "title": "Britney Spears - Let Me Be (Karaoke)", - "id": "r52LFv1oXvo" - }, - { - "title": "Britney Spears - Anticipating (Karaoke)", - "id": "Q-WXSbRNy1Y" - }, - { - "title": "Roxette - Joyride (Karaoke)", - "id": "5pQzZuqKyro" - }, - { - "title": "Blondie - Hanging On The Telephone (Karaoke)", - "id": "Rl5qohe-Prw" - }, - { - "title": "Roxette - Fading Like A Flower (Every Time You Leave) (Karaoke)", - "id": "yAucnvQspMg" - }, - { - "title": "Josh Groban - Vincent (Starry Starry Night) (Karaoke)", - "id": "GJPVeIur5s8" - }, - { - "title": "Josh Groban - My Confession (Karaoke)", - "id": "CnPcDGCb_og" - }, - { - "title": "The Who - Who Are You (Karaoke)", - "id": "F2h_KmQ8iXU" - }, - { - "title": "Fuel - Shimmer (Karaoke)", - "id": "6M9Ge4r-QF0" - }, - { - "title": "Keith Urban - Raining On Sunday (Karaoke)", - "id": "tALbOT_zA5U" - }, - { - "title": "Faith Hill - You're Still Here (Karaoke)", - "id": "N7ZZr1DJg6I" - }, - { - "title": "Faith Hill - When The Lights Go Down (Karaoke)", - "id": "0scklrcZZhE" - }, - { - "title": "Faith Hill - I Think I Will (Karaoke)", - "id": "xFxvJgPxnLw" - }, - { - "title": "George Strait - Santa's On His Way (karaoke)", - "id": "XH-Q1XMPe4I" - }, - { - "title": "Martina McBride - Concrete Angel (Karaoke)", - "id": "IgysqFpZ31U" - }, - { - "title": "Tim McGraw - She's My Kind Of Rain (Karaoke)", - "id": "nZ7IDPwlXlk" - }, - { - "title": "Diamond Rio - Completely (Karaoke)", - "id": "KvlPlNrvLWU" - }, - { - "title": "Creed - Weathered (Karaoke)", - "id": "rIHcGaVRQZA" - }, - { - "title": "Paulina Rubio - The One You Love", - "id": "ygxZybkdtSQ" - }, - { - "title": "Vanessa Carlton - Pretty Baby (Karaoke)", - "id": "RsvO364kLHI" - }, - { - "title": "Cรฉline Dion - Goodbye's (The Saddest Word) (Karaoke)", - "id": "mB8XMAFbNFo" - }, - { - "title": "Vince Gill - Next Big Thing (Karaoke)", - "id": "Ohh4uHqZ408" - }, - { - "title": "Del McCoury Band - Cheek To Cheek With The Blues (Karaoke)", - "id": "Bd3ZZSE9pxE" - }, - { - "title": "Brothers Osborne - I'll Be Alright Tomorrow (Karaoke)", - "id": "zApGTVBEfQQ" - }, - { - "title": "Rhonda Vincent & The Rage - Is The Grass Any Bluer On The Other Side (Karaoke)", - "id": "h6hg0DEucQY" - }, - { - "title": "Rhonda Vincent & The Rage - Bluegrass Express (Karaoke)", - "id": "M4fTpaSzSQ0" - }, - { - "title": "Bluegrass Album Band - Big Spike Hammer (Karaoke)", - "id": "kFy_8lgbwWI" - }, - { - "title": "Boone Creek - One Way Track (Karaoke)", - "id": "nUyhELGR7Fk" - }, - { - "title": "Nine Days - Good Friend (Karaoke)", - "id": "hqQlby_v1I0" - }, - { - "title": "Creed - Don't Stop Dancing (Karaoke)", - "id": "X1TLS3NUBgA" - }, - { - "title": "Michael Johnson - Give Me Wings (Karaoke)", - "id": "sRtiI_Y5Q_Q" - }, - { - "title": "Restless Heart - Wheels (Karaoke)", - "id": "7oCB_OlZbVg" - }, - { - "title": "George Strait - Baby Blue (Karaoke)", - "id": "wWR_FvBCrIE" - }, - { - "title": "Fine Young Cannibals - She Drives Me Crazy (Karaoke)", - "id": "PJGRtm9Pyh4" - }, - { - "title": "Chris LeDoux - Cowboy Up (Karaoke)", - "id": "4-5Gh2PRtRU" - }, - { - "title": "Pam Tillis - Unmitigated Gall (Karaoke)", - "id": "LuEMjMCBFSI" - }, - { - "title": "Allison Moorer - Up This High (Karaoke)", - "id": "7eWPpFAasy0" - }, - { - "title": "Counting Crows - Miami (Karaoke)", - "id": "h6w50C__uH0" - }, - { - "title": "Dixie Chicks - Top Of The World (Karaoke)", - "id": "_5Kiu1RSp0s" - }, - { - "title": "Dixie Chicks - I Believe In Love (Karaoke)", - "id": "w-7MXbk2Fe4" - }, - { - "title": "Dixie Chicks - Truth No. 2 (Karaoke)", - "id": "wOxVGIQqNKU" - }, - { - "title": "Dixie Chicks - Tortured, Tangled Hearts (Karaoke)", - "id": "dn5N-gLckW0" - }, - { - "title": "George Strait - Stars On The Water (Karaoke)", - "id": "VYUKaANi4yM" - }, - { - "title": "Trace Adkins - Chrome (Karaoke)", - "id": "QC-kP2UjLs8" - }, - { - "title": "Kelly Willis - If I Left You (Karaoke)", - "id": "2acj0tgRYj0" - }, - { - "title": "Cher - A Different Kind Of Love Song (Karaoke)", - "id": "8HSDO_5M8js" - }, - { - "title": "Westlife - World Of Our Own (Karaoke)", - "id": "w6V9lRH5ULI" - }, - { - "title": "Children's Bible Songs - Jacob's Ladder (Karaoke)", - "id": "a4pvkbgOai8" - }, - { - "title": "Children's Toddler Tunes - Michael Finnegan (Karaoke)", - "id": "Y9xH-TevsMA" - }, - { - "title": "Children's Toddler Tunes - Polly, Put The Kettle On (Karaoke)", - "id": "EjsHUhYfig4" - }, - { - "title": "Children's Toddler Tunes - Oats, Peas, Beans And Barley Grow (Karaoke)", - "id": "2qYXJShYG7U" - }, - { - "title": "Children's Toddler Tunes - Do Your Ears Hang Low? (Karaoke)", - "id": "9Di5Xu1mh-A" - }, - { - "title": "Children's Toddler Tunes - Bluebird, Bluebird (Karaoke)", - "id": "E5_mf2iK7Hc" - }, - { - "title": "Children's Happy Songs - Girls & Boys Come Out To Play (Karaoke)", - "id": "ddBlN7YfAkM" - }, - { - "title": "Children's Happy Songs - Ding Dong Bell (Karaoke)", - "id": "7tib0Ty16K8" - }, - { - "title": "Children's Fun Songs - Dry Bones (Karaoke)", - "id": "PRk7x5mBPlw" - }, - { - "title": "Children's Fun Songs - Six Little Ducks (Karaoke)", - "id": "KFOK3cCVzCE" - }, - { - "title": "Children's Fun Songs - Sing A Song Of Sixpence (Karaoke)", - "id": "MFNIlMqWFi8" - }, - { - "title": "Children's Fun Songs - Rub-A-Dub-Dub Three Men In A Tub (Karaoke)", - "id": "QsYIIDmrPdw" - }, - { - "title": "Children's Fun Songs - Hey Diddle Diddle (Karaoke)", - "id": "z_-eVUFhf9o" - }, - { - "title": "Children's Fun Songs - Eensy Weensy Spider (Karaoke)", - "id": "YNWJVxmtQ5E" - }, - { - "title": "Toby Keith - It's All Good (Karaoke)", - "id": "62I1FfZKEbM" - }, - { - "title": "Nickel Creek - This Side (Karaoke)", - "id": "bMNilkinrps" - }, - { - "title": "The Calling - Could It Be Any Harder (Karaoke)", - "id": "f7R3Q8a-Lv8" - }, - { - "title": "Counting Crows - American Girls (Karaoke)", - "id": "nSHMurCtmeM" - }, - { - "title": "Papa Roach - She Loves Me Not (Karaoke)", - "id": "qMq6pS0sVUI" - }, - { - "title": "No Doubt - Underneath It All (Karaoke) ft. Lady Saw", - "id": "tpf1fOpTnGs" - }, - { - "title": "Jack Ingram - One Thing (Karaoke)", - "id": "XkPVmcVo764" - }, - { - "title": "Sawyer Brown - I Need A Girlfriend (Karaoke)", - "id": "h9urERxYn4Y" - }, - { - "title": "Vanessa Carlton - Ordinary Day (Karaoke)", - "id": "a2cXvKOtjEc" - }, - { - "title": "Joe - What If A Woman (Karaoke)", - "id": "v9k5kS9IG2I" - }, - { - "title": "Deryl Dodd - Pearl Snaps (Karaoke)", - "id": "CDaJT9UEeYk" - }, - { - "title": "Daryle Singletary - That's Why I Sing This Way (Karaoke)", - "id": "bLCA8-ckf_4" - }, - { - "title": "Hometown News - Minivan (Karaoke)", - "id": "cS2vtKRBTuo" - }, - { - "title": "Marcel - Country Rock Star (Karaoke)", - "id": "uj7Hx9Eim3g" - }, - { - "title": "Chris Cagle - Country By The Grace Of God (Karaoke)", - "id": "HyDo1sBEbsE" - }, - { - "title": "Toby Keith - The Angry American (Courtesy Of The Red, White And Blue) (Karaoke)", - "id": "6gEfcZvo04Q" - }, - { - "title": "Alison Krauss & The Cox Family - In The Palm Of Your Hand (Karaoke)", - "id": "Rv9BdbPtoBo" - }, - { - "title": "Emmylou Harris & Ricky Skaggs - Darkest Hour Is Just Before Dawn (Karaoke)", - "id": "XClnLm4zhi8" - }, - { - "title": "Mollie O'Brien - Orphan Girl (Karaoke)", - "id": "ATIr7bFut0o" - }, - { - "title": "Joe Isaacs - From A Cabin To A Mansion (Karaoke)", - "id": "d4EdJvHMl24" - }, - { - "title": "Ricky Skaggs & The Nitty Gritty Dirt Band - Little Mountain Church House (Karaoke)", - "id": "yIaoIFAeRrc" - }, - { - "title": "Jane's Addiction - Just Because (Karaoke)", - "id": "oUFUolHMaa0" - }, - { - "title": "Run DMC Vs. Jason Nevins - It's Tricky (Karaoke EZ Sing)", - "id": "uh9WJhpq34U" - }, - { - "title": "The Stanley Brothers - Rank Strangers (Karaoke)", - "id": "9xh9O7mE7gE" - }, - { - "title": "Stereophonics - It Means Nothing (Karaoke)", - "id": "Eog2ZggVAc0" - }, - { - "title": "Jai Ho (You Are My Destiny) (Karaoke EZ Sing)", - "id": "XI5gcTSRk6k" - }, - { - "title": "Jorgen Elofsson - It Happens Every Time (Karaoke)", - "id": "xdDjsYFmz3o" - }, - { - "title": "Beastie Boys - Intergalactic (Karaoke)", - "id": "Xtt7QfqM2B8" - }, - { - "title": "Keane - Is It Any Wonder (Karaoke EZ Sing)", - "id": "Au-uSbf8GBw" - }, - { - "title": "Alison Krauss & Union Station - Two Highways (Karaoke)", - "id": "p0OM9VkBIRA" - }, - { - "title": "Alison Krauss & Union Station - Every Time You Say Goodbye (Karaoke)", - "id": "l1zBW9BrYo4" - }, - { - "title": "Bill Monroe - Kentucky Waltz (Karaoke)", - "id": "Vp_Fb2iZj20" - }, - { - "title": "Gene Autry - Have I Told You Lately That I Love You (Karaoke)", - "id": "spZuaCAOdPo" - }, - { - "title": "Tex Ritter & His Texans - You Will Have To Pay (Karaoke)", - "id": "hOhYREvhxhE" - }, - { - "title": "George Jones - Tender Years (Karaoke)", - "id": "azQPvYYPF4Y" - }, - { - "title": "Dixie Chicks - I Believe In Love (Karaoke)", - "id": "8vqXm_Y0e2I" - }, - { - "title": "Creed - One Last Breath (Karaoke)", - "id": "j8p7DNSKQ_E" - }, - { - "title": "Charlie Daniels Band - Legend Of Wooley Swamp (Karaoke)", - "id": "nOe6uq7Fies" - }, - { - "title": "Charlie Daniels Band - Simple Man (Karaoke)", - "id": "okwhLbRvmFQ" - }, - { - "title": "Charlie Daniels Band - Wichita Jail (Karaoke)", - "id": "jA_LJ0tMSys" - }, - { - "title": "Charlie Daniels Band - Drinkin' My Baby Goodbye (Karaoke)", - "id": "BmA11k5gz18" - }, - { - "title": "Sawyer Brown - Can You Hear Me Now (Karaoke)", - "id": "vpb9ph9VhGc" - }, - { - "title": "Kenny Rogers - Harder Cards (Karaoke)", - "id": "FSci7nz_JEU" - }, - { - "title": "Marie Sisters - Real Bad Mood (Karaoke)", - "id": "EgyH2qB8hkk" - }, - { - "title": "Kasey Chambers - Not Pretty Enough (Karaoke)", - "id": "14Q7ywE1BY8" - }, - { - "title": "Jameson Clark - Still Smokin' (Karaoke)", - "id": "cw1uttJpNic" - }, - { - "title": "Goo Goo Dolls - Here Is Gone (Karaoke)", - "id": "KMePA5YRt14" - }, - { - "title": "Montgomery Gentry - Didn't I (Karaoke)", - "id": "HC4iFDDmq-s" - }, - { - "title": "Jessica King - Keep Me In Your Will (Karaoke)", - "id": "H3SUODX00go" - }, - { - "title": "The Hoppers - Yes, I Am (Karaoke)", - "id": "gI4iBFBcvzw" - }, - { - "title": "Trace Adkins - Help Me Understand (Karaoke)", - "id": "EEFvS9EWW3Q" - }, - { - "title": "Nickel Creek - The Lighthouse Tale (Karaoke)", - "id": "Nz6pvQ-3OgI" - }, - { - "title": "Shania Twain - The Heart is Blind (Karaoke)", - "id": "fWfZ7DSxwOA" - }, - { - "title": "Reba McEntire - Sweet Music Man (Karaoke)", - "id": "uB_RN1_LLBA" - }, - { - "title": "Brian McKnight - Still (Karaoke)", - "id": "LdGD8rVt4Ro" - }, - { - "title": "Skeeter Davis - He Says The Same Things To Me (Karaoke)", - "id": "xJCr6eeqRdc" - }, - { - "title": "The Pigeon Detectives - Take Her Back (Karaoke)", - "id": "Ug7givi7ZY0" - }, - { - "title": "Roger Whittaker - You Are My Miracle (Karaoke)", - "id": "T1wQDlrhYhM" - }, - { - "title": "Skeeter Davis - Gonna Get Along Without You Now (Karaoke)", - "id": "gStao9J9wTI" - }, - { - "title": "Shawn Colvin - When The Rainbow Comes (Karaoke)", - "id": "Apxn34G2JEc" - }, - { - "title": "Live - Simple Creed (Karaoke)", - "id": "lnsraV8JZbg" - }, - { - "title": "Snow Patrol - Signal Fire (Karaoke)", - "id": "UaAToBYubys" - }, - { - "title": "Jack Penate - Torn On The Platform (Karaoke EZ Sing)", - "id": "8NROOxwEs_Y" - }, - { - "title": "Kaiser Chiefs - Angry Mob (Karaoke)", - "id": "1UN6P-7-Q4I" - }, - { - "title": "Robyn - With Every Heartbeat (Karaoke)", - "id": "1jQFakUtUNY" - }, - { - "title": "The Courteeners - What Took You So Long (Karaoke)", - "id": "RceMvkaVW44" - }, - { - "title": "Ricky Skaggs - Don't Cheat In Our Hometown (Karaoke)", - "id": "0xlSgYXtAos" - }, - { - "title": "Ricky Skaggs - Love's Gonna Get You Someday (Karaoke)", - "id": "gp70aVsQT8s" - }, - { - "title": "A Flock Of Seagulls - The More You Live The More You Love (Karaoke EZ Sing)", - "id": "tSDM3V_N2Ns" - }, - { - "title": "Ricky Skaggs - Something In My Heart (Karaoke)", - "id": "BoybCbYJ-VM" - }, - { - "title": "Ricky Skaggs - You've Got A Lover (Karaoke)", - "id": "qONnAWSCByU" - }, - { - "title": "Ronnie Milsap - My Heart (Karaoke)", - "id": "h0pUjIE0f40" - }, - { - "title": "Ronnie Milsap - Let's Take The Long Way Around The World (Karaoke)", - "id": "mp0LoQ2COYw" - }, - { - "title": "Ronnie Milsap - Let My Love Be Your Pillow (Karaoke)", - "id": "BWJAiWd3EFk" - }, - { - "title": "Roger Miller - Little Green Apples (Karaoke)", - "id": "i2Bu3oF4_Uc" - }, - { - "title": "Donna Fargo - Shame On Me (Karaoke)", - "id": "teO_RJajjDQ" - }, - { - "title": "Jolie & The Wanted - Party On The Patio (Karaoke)", - "id": "6nfo8e86WsI" - }, - { - "title": "Peaches and Herb - Reunited (Karaoke)", - "id": "9HoINcMLV8w" - }, - { - "title": "Barry Manilow - Looks Like We Made It (Karaoke)", - "id": "NiSL4tR2wfI" - }, - { - "title": "Barry Manilow - I Write The Songs (Karaoke)", - "id": "oo4QTRFbdaE" - }, - { - "title": "The Dell-Vikings - Come Go With Me (Karaoke)", - "id": "ONG3bxyMfik" - }, - { - "title": "Georgia Gibbs - Dance With Me Henry (The Wallflower) (Karaoke)", - "id": "cAvSkmXRLN4" - }, - { - "title": "Hank Thompson - Smoky The Bar (Karaoke)", - "id": "aInH76YsaDo" - }, - { - "title": "Hank Thompson - On Tap, In The Can, Or In The Bottle (Karaoke)", - "id": "Iqfc96wg-ZQ" - }, - { - "title": "Hank Thompson - Honky-Tonk Girl (Karaoke)", - "id": "J1IsG64PbHU" - }, - { - "title": "Hank Thompson - A Six Pack To Go (Karaoke)", - "id": "DGMqULWHQ3E" - }, - { - "title": "Hank Thompson - I've Come Awful Close (Karaoke)", - "id": "MTzKRMyvH5o" - }, - { - "title": "Hank Thompson - The Blackboard Of My Heart (Karaoke)", - "id": "ijbY9q-_N2U" - }, - { - "title": "Hank Thompson - Rub-A-Dub-Dub (Karaoke)", - "id": "Z5o-bfM77pg" - }, - { - "title": "Statler Brothers - How To Be A Country Star (Karaoke)", - "id": "aypjqje18OI" - }, - { - "title": "Statler Brothers - Thank God I've Got You (Karaoke)", - "id": "ui98NpQFL6s" - }, - { - "title": "Judy Collins - Who Knows Where The Time Goes (Karaoke EZ Sing)", - "id": "Lbf1334aiR8" - }, - { - "title": "Statler Brothers - Too Much Of My Heart (Karaoke)", - "id": "uVbZ3YZWUfc" - }, - { - "title": "The Statler Brothers - My Only Love (Karaoke)", - "id": "m_H3pOK2Jl4" - }, - { - "title": "The Statler Brothers - Elizabeth (Karaoke)", - "id": "a9pJIFqOOLY" - }, - { - "title": "Robyn - Who's That Girl (Karaoke)", - "id": "i7UyL524VUs" - }, - { - "title": "The Statler Brothers - Do You Know You Are My Sunshine (Karaoke)", - "id": "TD4eOb8wvY8" - }, - { - "title": "The Statler Brothers - Do You Remember These (Karaoke)", - "id": "O8Ye--LfNDQ" - }, - { - "title": "Marie Digby - Unfold (Karaoke EZ Sing)", - "id": "CyNrQcx4_w0" - }, - { - "title": "Joe Stampley - If You've Got Ten Minutes (Let's Fall In Love) (Karaoke)", - "id": "_sMo8fnV0rQ" - }, - { - "title": "Hawkshaw Hawkins - Car Hoppin' Mama (Karaoke)", - "id": "6qQuuN4br28" - }, - { - "title": "Hawkshaw Hawkins - I'm Waiting Just For You (Karaoke)", - "id": "30IxRTZ-AOg" - }, - { - "title": "Cowboy Copas - Flat Top (Karaoke)", - "id": "inJRHW4ONFc" - }, - { - "title": "Cowboy Copas - Louisian (Karaoke)", - "id": "QqwlAM-FPiw" - }, - { - "title": "Cowboy Copas - Sunny Tennessee (Karaoke)", - "id": "UqhYiqRxkiM" - }, - { - "title": "Cowboy Copas - Signed Sealed And Delivered (Karaoke)", - "id": "hqcMdYdPa7c" - }, - { - "title": "Jack Greene - All The Time (Karaoke)", - "id": "rrzxeUYGwHI" - }, - { - "title": "Don Gibson - Woman (Sensuous Woman) (Karaoke)", - "id": "GiMAAp7l8OY" - }, - { - "title": "Red Foley - Satisfied Mind (Karaoke)", - "id": "6D6GoZPpGPo" - }, - { - "title": "Roy Drusky - Such A Fool (Karaoke)", - "id": "jAPFazDcYag" - }, - { - "title": "Lynyrd Skynyrd - You Got That Right (Karaoke)", - "id": "60wnsOrgYc8" - }, - { - "title": "George Strait - You're Something Special To Me (Karaoke)", - "id": "Ttn-VRqgrEA" - }, - { - "title": "Live - They Stood Up For Love (Karaoke)", - "id": "iO6-NGfmvnY" - }, - { - "title": "Snow Patrol - Take Back The City (Karaoke)", - "id": "0XBaM7OIK1Y" - }, - { - "title": "Isley Brothers ftg. Ronald Isley AKA Mr. Biggs - What Would You Do (Karaoke)", - "id": "OYVmfreJSxI" - }, - { - "title": "Mandy Moore - Walk Me Home (Karaoke)", - "id": "O7jBhoa57lc" - }, - { - "title": "Ronnie Milsap - Stranger In My House (Karaoke)", - "id": "zno-d4II2BA" - }, - { - "title": "The Script - Talk You Down (Karaoke)", - "id": "X-3AV9TiN1k" - }, - { - "title": "Roy Drusky - Peel Me A Nanner (Karaoke)", - "id": "UUln6Uk33E0" - }, - { - "title": "Hi-Five - Unconditional Love (Karaoke)", - "id": "Wdl8ovO80RQ" - }, - { - "title": "Roy Drusky - Three Hearts In A Triangle (Karaoke)", - "id": "wCE9oyGNzX4" - }, - { - "title": "MIKA - We Are Golden (Karaoke)", - "id": "6n0BHkrQRMk" - }, - { - "title": "Jeffrey Osborne - Stay With Me Tonight (Karaoke)", - "id": "kWC5QNdRqKM" - }, - { - "title": "Lee Ann Womack - You Should've Lied (Karaoke)", - "id": "1kMrXyDAKaM" - }, - { - "title": "The Mamas and The Papas - Words Of Love (Karaoke)", - "id": "P_oSXBaErh8" - }, - { - "title": "No Secrets - Skin Deep (Karaoke)", - "id": "bXHJwVZZ_aA" - }, - { - "title": "Noah And The Whale - Waiting For My Chance To Come (Karaoke)", - "id": "n95LnDD3h90" - }, - { - "title": "The Capitols - Cool Jerk (Karaoke)", - "id": "GVrGHzKLZIM" - }, - { - "title": "Al Dexter And His Troopers - I'm Losing My Mind Over You (Karaoke)", - "id": "WEZFVmm-a3U" - }, - { - "title": "Al Dexter And His Troopers - So Long Pal (Karaoke)", - "id": "4s0oZwIZfms" - }, - { - "title": "Gene Austin - Carolina Moon (Karaoke)", - "id": "H5w1QHryc8I" - }, - { - "title": "Mitch Miller - Clementine (Karaoke)", - "id": "uXYKrikvJEc" - }, - { - "title": "Mitch Miller & The Gang - I'm Looking Over A Four Leaf Clover (Karaoke)", - "id": "HrAJJuCDhrU" - }, - { - "title": "Burl Ives - My Gal Sal (Karaoke)", - "id": "HxJXHLZR6S0" - }, - { - "title": "Mitch Miller & The Gang - Down By The Old Mill Stream (Karaoke)", - "id": "Hk18KJXPhfA" - }, - { - "title": "Traditional - Down By The Riverside (Karaoke)", - "id": "zdfzOm0ELgU" - }, - { - "title": "Barry McGuire - Eve Of Destruction (Karaoke)", - "id": "uKabGXr3CWg" - }, - { - "title": "The Calling - Wherever You Will Go (Karaoke)", - "id": "_fl0fK7zmNg" - }, - { - "title": "Blues Traveler - Most Precarious (Karaoke)", - "id": "mIPw4YXWB54" - }, - { - "title": "Michael Jackson - Cry (You Can Change The World) (Karaoke)", - "id": "FoB25AXUHis" - }, - { - "title": "Tim Rushlow - The Package (Karaoke)", - "id": "w9TvvRRowPE" - }, - { - "title": "Sister Hazel - Champagne High (Karaoke)", - "id": "JxJZz57Xoa8" - }, - { - "title": "Sister Hazel - Happy (Karaoke)", - "id": "R45AachQVkM" - }, - { - "title": "Sister Hazel - All For You (Karaoke)", - "id": "cRY-qeT-DlA" - }, - { - "title": "Fastball - You're An Ocean (Karaoke)", - "id": "xReJzBGOEKQ" - }, - { - "title": "Everclear - Father Of Mine (Karaoke)", - "id": "prWYxIrMPrs" - }, - { - "title": "Everclear - I Will Buy You A New Life (Karaoke)", - "id": "jCvL7DG_1VQ" - }, - { - "title": "Otis Redding - These Arms Of Mine (Karaoke)", - "id": "C1jVTh4FvqQ" - }, - { - "title": "Creedence Clearwater Revival - Suzie Q (Karaoke)", - "id": "PDIVvo1bhGo" - }, - { - "title": "Creedence Clearwater Revival - The Midnight Special (Karaoke)", - "id": "vAjSXQD-gDs" - }, - { - "title": "Michael Jackson - Cry (Karaoke)", - "id": "B8cE8XiBa1k" - }, - { - "title": "Lee Ann Womack - Does My Ring Burn Your Finger (Karaoke)", - "id": "zqiFV7k6WrM" - }, - { - "title": "Creed - My Sacrifice (Karaoke)", - "id": "oJ99iV76DFE" - }, - { - "title": "Brooks & Dunn - The Long Goodbye", - "id": "jDJ9b2uq30I" - }, - { - "title": "Jewel - Standing Still (Karaoke)", - "id": "1B7EQpgwNWI" - }, - { - "title": "Brian McKnight - Love Of My Life (Karaoke)", - "id": "9eGs7lYXRaQ" - }, - { - "title": "Samantha Mumba - I Don't Need You To Tell Me I'm Pretty (Karaoke)", - "id": "yl9bpN29c4c" - }, - { - "title": "Mandy Moore - Crush (Karaoke)", - "id": "mLAwgj0Y3ag" - }, - { - "title": "Lifehouse - Hanging By A Moment (Karaoke)", - "id": "wRBWqYdRiXc" - }, - { - "title": "Bobby Bare with Norm Jean & Liz Anderson - The Games Of Triangles (Karaoke)", - "id": "Db3-lzsWCyU" - }, - { - "title": "Fuel - Bad Day (Karaoke)", - "id": "-EozA_IEdsk" - }, - { - "title": "LeAnn Rimes - Soon (Karaoke)", - "id": "yTkCSHP720s" - }, - { - "title": "Montgomery Gentry - Cold One Comin' On (Karaoke)", - "id": "PRw210GCRVI" - }, - { - "title": "Billy \"Crash\" Craddock - Dream Lover (Karaoke)", - "id": "J3c7V3qObsk" - }, - { - "title": "Billy \"Crash\" Craddock - I'm Gonna Knock On Your Door (Karaoke)", - "id": "rUKxY5Ea7JE" - }, - { - "title": "Eddy Arnold - That Do Make It Nice (Karaoke)", - "id": "ACC0GKct35c" - }, - { - "title": "Mandy Moore - In My Pocket (Karaoke)", - "id": "Ir-_btQ4wXE" - }, - { - "title": "Britney Spears - One Kiss From You (Karaoke)", - "id": "T6jDf_h9vzU" - }, - { - "title": "Britney Spears - What You See (Is What You Get) (Karaoke)", - "id": "IuK2-YYBxwc" - }, - { - "title": "Patty Loveless & Travis Tritt - Out Of Control Raging Fire (Karaoke)", - "id": "y82-rjTZ2xs" - }, - { - "title": "Moe Bandy - Here I Am Drunk Again (Karaoke)", - "id": "X6GuexN_FTc" - }, - { - "title": "Mac Davis - You're My Bestest Friend (Karaoke)", - "id": "8rJa6DwiqTk" - }, - { - "title": "Mac Davis - Hooked On Music (Karaoke)", - "id": "vusXvnkuqXc" - }, - { - "title": "Marshall Dyllon - She Ain't Gonna Cry (Karaoke)", - "id": "-IHAPdFu6lU" - }, - { - "title": "Trace Adkins - I'm Tryin' (Karaoke)", - "id": "eefU3LUXfts" - }, - { - "title": "Lynn Anderson - Listen To A Country Song (Karaoke)", - "id": "j8Yrj5oMN98" - }, - { - "title": "Jill Scott - A Long Walk (Karaoke)", - "id": "4MVKXBQylwo" - }, - { - "title": "O-Town - All Or Nothing (Karaoke)", - "id": "-92PJ2OhkMc" - }, - { - "title": "Janie Fricke - Easy To Please (Karaoke)", - "id": "bh9LVhbS9zI" - }, - { - "title": "Janie Fricke - Do Me With Love (Karaoke)", - "id": "wuw0eLWG7Ts" - }, - { - "title": "Janie Fricke - I'll Need Someone To Hold Me When I Cry (Karaoke)", - "id": "sXC4KDIgTwc" - }, - { - "title": "Bellamy Brothers - When I'm Away From You (Karaoke)", - "id": "VdD97810ocA" - }, - { - "title": "The Oak Ridge Boys - Everyday (Karaoke)", - "id": "hEhKNkfql_I" - }, - { - "title": "Oak Ridge Boys - Y'All Come Back Saloon (Karaoke)", - "id": "VaX8Pqs8Zzw" - }, - { - "title": "Larry Gatlin - Love Of A Lifetime (Karaoke)", - "id": "65e0XbKTAH4" - }, - { - "title": "Larry Gatlin - Talkin' To The Moon (Karaoke)", - "id": "rS3NV1P4wWM" - }, - { - "title": "Larry Gatlin - She Used To Be Somebody's Baby (Karaoke)", - "id": "H8fmidiTTZE" - }, - { - "title": "Barbara Mandrell - Wish You Were Here (Karaoke)", - "id": "yi0keg7GBPs" - }, - { - "title": "Barbara Mandrell - Crackers (Karaoke)", - "id": "NuE8-TD3X2s" - }, - { - "title": "Barbara Mandrell - Years (Karaoke)", - "id": "CSUtW5UVHp4" - }, - { - "title": "John Conlee - Working Man (Karaoke)", - "id": "e_qPbLiFvZA" - }, - { - "title": "Dwight Yoakam - Honky Tonk Man (Karaoke)", - "id": "6DJ3UjSXDzY" - }, - { - "title": "Dwight Yoakam - Turn It On, Turn It Up, Turn Me Loose (Karaoke)", - "id": "j7U01_fJ3ps" - }, - { - "title": "Dwight Yoakam - Takes A Lot To Rock You (Karaoke)", - "id": "2Ybo5N_0hoA" - }, - { - "title": "Dwight Yoakam - Little Ways (Karaoke)", - "id": "axCQ3BUI4HM" - }, - { - "title": "Dwight Yoakam - Long White Cadillac (Karaoke)", - "id": "un2Q_gD6f_k" - }, - { - "title": "Sheryl Crow - Kiss That Girl (Karaoke)", - "id": "gFNIPkbAElc" - }, - { - "title": "Josh Joplin Group - Camera One (Karaoke)", - "id": "Yb6U1rE6h-Q" - }, - { - "title": "Faith Hill - There You'll Be (Karaoke)", - "id": "Yv-2YyGt62w" - }, - { - "title": "Ricky Martin & Christina Aguilera - Nobody Wants To Be Lonely (Karaoke)", - "id": "gzgFwEoWnP8" - }, - { - "title": "Tim McGraw - Set This Circus Down (Karaoke)", - "id": "Oz3_w2BK3QU" - }, - { - "title": "Tim McGraw - The Cowboy In Me (Karaoke)", - "id": "lpMtFO8k6rQ" - }, - { - "title": "Tim McGraw - Angel Boy (Karaoke)", - "id": "jHOloH6djU8" - }, - { - "title": "Selena - I'm Getting Used To You (Karaoke)", - "id": "Z6ffWj3amLk" - }, - { - "title": "Toni Braxton - Un-break My Heart (Karaoke)", - "id": "qPYwwIaRn28" - }, - { - "title": "Cledus T. Judd - Every Bulb In The House Is Blown (Karaoke)", - "id": "q8WPrF9HhKw" - }, - { - "title": "3 Doors Down - The Better Life (Karaoke)", - "id": "xTOQ0OM3tz4" - }, - { - "title": "Sister Hazel - Thank You (Karaoke)", - "id": "DLbpyNO3ElM" - }, - { - "title": "Sister Hazel - Beautiful Thing (Karaoke)", - "id": "RMLCaBWD6eM" - }, - { - "title": "Fastball - Sooner Or Later (Karaoke)", - "id": "iiHCRHPKTEc" - }, - { - "title": "3 Doors Down - Duck And Run (Karaoke)", - "id": "UJb-ohT6H8g" - }, - { - "title": "3 Doors Down - So I Need You (Karaoke)", - "id": "A-bw6TLeVm0" - }, - { - "title": "3 Doors Down - Be Like That (Karaoke)", - "id": "mwCOsZBmkBc" - }, - { - "title": "Blues Traveler - Hook (Karaoke)", - "id": "TaoYHxMBYWg" - }, - { - "title": "Blues Traveler - But Anyway (Karaoke)", - "id": "mmlgGZWXLCQ" - }, - { - "title": "Everclear - Everything To Everyone (Karaoke)", - "id": "-HZzxnoTcxY" - }, - { - "title": "Everclear - Santa Monica (Karaoke)", - "id": "qy9VqIWa51E" - }, - { - "title": "Jessica Simpson - I've Got My Eyes On You (Karaoke)", - "id": "cUq-c_qkSI8" - }, - { - "title": "Creed - What's This Life For? (Karaoke)", - "id": "IxZCvFO6tio" - }, - { - "title": "Creed - One (Karaoke)", - "id": "BKBgpBjzBds" - }, - { - "title": "Creed - Young Grow Old (Karaoke)", - "id": "YbwKOQT83HM" - }, - { - "title": "Creed - Are You Ready (Karaoke)", - "id": "COKXpORKX20" - }, - { - "title": "Bill Luther - You Will Always Be Mine (Karaoke)", - "id": "V-DDNOIM87k" - }, - { - "title": "Chris Cagle - Laredo (Karaoke)", - "id": "mAnz3q3xZy8" - }, - { - "title": "Musiq Souldchild - Just Friends (Karaoke)", - "id": "kIgGMS1y4cQ" - }, - { - "title": "A-Teens - Bouncing Off The Ceiling (Upside Down) (Karaoke)", - "id": "XOTitYzooP4" - }, - { - "title": "3 Doors Down - Loser (Karaoke)", - "id": "UyPMJQpSv6o" - }, - { - "title": "Fuel - Hemorrhage (In My Hands) (Karaoke)", - "id": "WcM3gbPLNFQ" - }, - { - "title": "David Gray - Babylon (Karaoke)", - "id": "kdGz3XO3qqo" - }, - { - "title": "Boyz II Men - Thank You In Advance (Karaoke)", - "id": "Xt0D8IXxvj0" - }, - { - "title": "Toni Braxton - Spanish Guitar (Karaoke)", - "id": "BNCm6XPOmgs" - }, - { - "title": "Billy Ray Cyrus - Burn Down The Trailer Park (Karaoke)", - "id": "Gqe1a3ct30k" - }, - { - "title": "Sara Evans - I Could Not Ask For More (Karaoke)", - "id": "LTQ49aTlvTo" - }, - { - "title": "Martina McBride - Good Bye (Karaoke)", - "id": "Rc0BWig4rYA" - }, - { - "title": "Martina McBride - Do What You Do (Karaoke)", - "id": "MuvgJJDdu84" - }, - { - "title": "Alison Krauss & Union Station - Maybe (Karaoke)", - "id": "wShynbSU-Og" - }, - { - "title": "Allison Moorer - Think It Over (Karaoke)", - "id": "o3ce2WcLzGM" - }, - { - "title": "Kasey Chambers - Cry Like A Baby (Karaoke)", - "id": "2TaCn4YAORM" - }, - { - "title": "Third Eye Blind - Deep Inside Of You (Karaoke)", - "id": "-WTp1VcSBew" - }, - { - "title": "Johnny Taylor - Who's Making Love (Karaoke)", - "id": "NSJp27sioiI" - }, - { - "title": "Rufus Thomas - Walking The Dog (Karaoke)", - "id": "PzKCPfjhv30" - }, - { - "title": "The Dells - Stay In My Corner (Karaoke)", - "id": "o48FTWrWw1w" - }, - { - "title": "Jaynetts - Sally Go 'Round The Roses (Karaoke)", - "id": "2yGQMciP2Hk" - }, - { - "title": "Chambers Brothers - Time Has Come Today (Karaoke)", - "id": "z5CuHOcQ5Ls" - }, - { - "title": "Doris Troy - Just One Look (Karaoke)", - "id": "ZyVxIKk1RJY" - }, - { - "title": "Britney Spears - Stronger (Karaoke)", - "id": "giQ0qC0PoI8" - }, - { - "title": "Debelah Morgan - Dance With Me (Karaoke)", - "id": "OTkTnosLs2Y" - }, - { - "title": "Britney Spears - Lucky (Karaoke)", - "id": "y_O7KBlJLWk" - }, - { - "title": "\"Earl\" Paul Craft - Hey Girls...This Is Earl...I Didn't Die (Karaoke)", - "id": "lxG5k9g3TVM" - }, - { - "title": "Toby Keith - You Shouldn't Kiss Me Like This (Karaoke)", - "id": "-U-UGi71eCo" - }, - { - "title": "Terri Clark - Easy From Now On (Karaoke)", - "id": "wY22UDK9q2U" - }, - { - "title": "Terri Clark - The Real Thing (Karaoke)", - "id": "shrYsoV52DU" - }, - { - "title": "Terri Clark - Getting There (Karaoke)", - "id": "sa3sUQbFIVY" - }, - { - "title": "LeAnn Rimes - But I Do Love You (Karaoke)", - "id": "TpfnOu3XsEI" - }, - { - "title": "LeAnn Rimes - The Right Kind Of Wrong (Karaoke)", - "id": "9VOgZqvsBgo" - }, - { - "title": "LeAnn Rimes - Please Remember (Karaoke)", - "id": "qA9QCo-RC_U" - }, - { - "title": "LeAnn Rimes - Can't Fight The Moonlight (Karaoke)", - "id": "_8mmCo4jvOM" - }, - { - "title": "Lonestar - Tell Her (Karaoke)", - "id": "2HpKOmX8UhQ" - }, - { - "title": "Montgomery Gentry - All Night Long (Karaoke)", - "id": "GsOIjy-Me9E" - }, - { - "title": "Dwight Yoakam - What Do You Know About Love (Karaoke)", - "id": "_XEimmY1w0c" - }, - { - "title": "Bryan White - How Long (Karaoke)", - "id": "dE0AjRDNwu8" - }, - { - "title": "The Gap Band - Oops Upside Your Head (I Don't Believe You Want To Get Up And Dance) (Karaoke)", - "id": "LwXz2fme3Lo" - }, - { - "title": "France Joli - Come To Me (Karaoke)", - "id": "HzIMxgzc4tU" - }, - { - "title": "Elton John - Little Jeannie (Karaoke)", - "id": "qLKHuDsdoLs" - }, - { - "title": "Sammy Kershaw - Louisiana Hot Sauce (Karaoke)", - "id": "ZzG9456YHZw" - }, - { - "title": "Elvis Presley - You Gave Me A Mountain (Karaoke)", - "id": "fU2tOVLzvKI" - }, - { - "title": "Elvis Presley - Guitar Man (Karaoke)", - "id": "MMNgKX3zhOM" - }, - { - "title": "Elvis Presley - Trying To Get To You (Karaoke)", - "id": "0iVzLJ6KCMk" - }, - { - "title": "Elvis Presley - Until It's Time For You To Go (Karaoke)", - "id": "xAFyFeRk3GE" - }, - { - "title": "Elvis Presley - U. S. Male (Karaoke)", - "id": "4xIxX82gZkA" - }, - { - "title": "Alice Deejay - Better Off Alone (Karaoke)", - "id": "nQ2d5Cd2eYc" - }, - { - "title": "Sister Hazel - Change Your Mind (Karaoke)", - "id": "cP4JAQz7OyA" - }, - { - "title": "Everclear - Wonderful (Karaoke)", - "id": "k-kCBaqOKzo" - }, - { - "title": "Chairmen Of The Board - Give Me Just A Little More Time (Karaoke)", - "id": "xk70MeFb4lM" - }, - { - "title": "Terry Jacks - Seasons In The Sun (Karaoke)", - "id": "F4sa7pJZL50" - }, - { - "title": "Chuck Berry - My Ding-A-Ling (Karaoke)", - "id": "u4GINrhdpEg" - }, - { - "title": "Hamilton, Joe Frank & Reynolds - Don't Pull Your Love (Karaoke)", - "id": "IR6aPOIJQ0o" - }, - { - "title": "The Fortunes - Here Comes That Rainy Day Feeling Again (Karaoke)", - "id": "CHvCpMEUKJ0" - }, - { - "title": "Bo Donaldson & Heywoods - Billy Don't Be A Hero (Karaoke)", - "id": "VsCfbHaL_yg" - }, - { - "title": "Elton John - Sorry Seems To Be The Hardest Word (Karaoke)", - "id": "S7tCgipfsik" - }, - { - "title": "B. W. Stevenson - My Maria (Karaoke)", - "id": "306v7nilOVo" - }, - { - "title": "Rick Dees & His Cast Of Idiots - Disco Duck (Karaoke)", - "id": "JDukGCTpBGk" - }, - { - "title": "Gary Wright - Dream Weaver (Karaoke)", - "id": "us4XjmgLsD8" - }, - { - "title": "Dr. Hook & The Medicine Show - The Cover Of The Rolling Stone (Karaoke)", - "id": "43mLeqzUgZA" - }, - { - "title": "Elton John - Philadelphia Freedom (Karaoke)", - "id": "VsfjMwnRSzQ" - }, - { - "title": "The Main Ingredient - Everybody Plays The Fool (Karaoke)", - "id": "ss0zgfvxFkw" - }, - { - "title": "David Soul - Don't Give Up On Us (Karaoke)", - "id": "UbLuca3qpBM" - }, - { - "title": "David Essex - Rock On (Karaoke)", - "id": "bx2x5xQHAzA" - }, - { - "title": "Clay Walker - Once In A Lifetime Love (Karaoke)", - "id": "3WGFQDD6jU4" - }, - { - "title": "Yankee Grey - This Time Around (Karaoke)", - "id": "egd4J4nUoqY" - }, - { - "title": "Allison Moorer - Send Down An Angel (Karaoke)", - "id": "Chhb1BIYQKo" - }, - { - "title": "Whitney Houston with Enrique Iglesias - Could I Have This Kiss Forever (Karaoke)", - "id": "S7EovkJ3QgY" - }, - { - "title": "Mary J. Blige - Give Me You (Karaoke)", - "id": "Muc_NPR0kdM" - }, - { - "title": "Cรฉline Dion - I Want You To Need Me (Karaoke)", - "id": "ObnrTAtqvSQ" - }, - { - "title": "*NSYNC - This I Promise You (Karaoke)", - "id": "SKZjXrQuvRc" - }, - { - "title": "Enrique Iglesias - Rhythm Divine (Karaoke)", - "id": "ELnCxJ1AV9A" - }, - { - "title": "Lou Bega - Tricky Tricky (Karaoke)", - "id": "lx7pEk6Dj6s" - }, - { - "title": "LFO - Summer Girls (Karaoke)", - "id": "lqBNLlOhFhg" - }, - { - "title": "The Platters - If I Didn't Care (Karaoke)", - "id": "_Zp4Om1nHzs" - }, - { - "title": "Del Shannon - Hats Off To Larry (Karaoke)", - "id": "j7Lr_BDPt6E" - }, - { - "title": "Curtis Lee - Pretty Little Angel Eyes (Karaoke)", - "id": "3gWhGhKG2CU" - }, - { - "title": "Brenda Lee - Everybody Loves Me But You (Karaoke)", - "id": "lTBODGzsZwk" - }, - { - "title": "Brenda Lee - Emotions (Karaoke)", - "id": "rYZMpnwysbk" - }, - { - "title": "Brenda Lee - All Alone Am I (Karaoke)", - "id": "23ZgK_qZeeY" - }, - { - "title": "Backstreet Boys - The One (Karaoke)", - "id": "WfeA4SH_aqE" - }, - { - "title": "Westlife - Swear It Again (Karaoke)", - "id": "uSGmIs32F40" - }, - { - "title": "Toby Keith - Country Comes To Town (Karaoke)", - "id": "VGqyGa4MRms" - }, - { - "title": "Sonya Issacs - Since I Gave My Heart Away (Karaoke)", - "id": "X6GeQyPnYh4" - }, - { - "title": "The Wilkinson - Shame On Me (Karaoke)", - "id": "Ls6Nt00ypAU" - }, - { - "title": "Nickel Creek - Reasons Why (Karaoke)", - "id": "PbzjKA-e1gg" - }, - { - "title": "Lace - Kiss 'Em All (Karaoke)", - "id": "anMPkN4tjIw" - }, - { - "title": "Alan Jackson - It Must Be Love (Karaoke)", - "id": "EPjXYR2ZVhw" - }, - { - "title": "Wade Hayes - Goodbye Is The Wrong Way To Go (Karaoke)", - "id": "CExypvk06zw" - }, - { - "title": "Creed - Higher (Karaoke)", - "id": "XxBI8WTgjRc" - }, - { - "title": "Lloyd Price - Personality (Karaoke)", - "id": "PAQuf2RN6AI" - }, - { - "title": "Kingston Trio - Tom Dooley (Karaoke)", - "id": "h-8xiqc8B8U" - }, - { - "title": "Trisha Yearwood - You're Where I Belong (Karaoke)", - "id": "l4Qn_GdoKD8" - }, - { - "title": "Counting Crows - Hangin' Around (Karaoke)", - "id": "k22Wdbcdy1c" - }, - { - "title": "Counting Crows - Raining In Baltimore (Karaoke)", - "id": "zpnzdM7z7Iw" - }, - { - "title": "Counting Crows - Have You Seen Me Lately (Karaoke)", - "id": "9NwrecFCdzY" - }, - { - "title": "Counting Crows - Round Here (Karaoke)", - "id": "-bTu1pQELNA" - }, - { - "title": "Counting Crows - Mr. Jones (Karaoke)", - "id": "t2s9XmgSwSs" - }, - { - "title": "Melissa Etheridge - Enough of Me (Karaoke)", - "id": "2baL_YBwb48" - }, - { - "title": "Melissa Etheridge - Ain't It Heavy (Karaoke)", - "id": "N0j-xLfBayo" - }, - { - "title": "Melissa Etheridge - I Want To Come Over (Karaoke)", - "id": "fw1Oeqcb02I" - }, - { - "title": "Standard - I Saw Three Ships (Karaoke)", - "id": "wJCWXgjojv4" - }, - { - "title": "Standard - The Holly And The Ivy (Karaoke)", - "id": "TmlqJq30Q84" - }, - { - "title": "Standard - Angels From The Realms of Glory (Karaoke)", - "id": "bfIQtZYBJpE" - }, - { - "title": "Standard - All Through The Night (Karaoke)", - "id": "QS3JhGmAHIg" - }, - { - "title": "Traditional Christmas Songs - Good King Wenceslas (Karaoke)", - "id": "1sD8Hc64X7w" - }, - { - "title": "Mud - Lonely This Christmas (Karaoke)", - "id": "cG95QOD2kpI" - }, - { - "title": "Backstreet Boys - Christmas Time (Karaoke)", - "id": "8OM3hSjtG5c" - }, - { - "title": "Carrie Underwood - Do You Hear What I Hear (Karaoke)", - "id": "4Ve0jjQ1WDs" - }, - { - "title": "Babs Gonzales - Be-Bop Santa Claus (Karaoke)", - "id": "EkI1nAHaomY" - }, - { - "title": "Big John Greer - We Wanna See Santa Do The Mambo (Karaoke)", - "id": "qi08RnbooPo" - }, - { - "title": "Leroy - Santa Stole My Baby (Karaoke)", - "id": "ZcE7psKBsHU" - }, - { - "title": "Alabama - Thistlehair The Christmas Bear (Karaoke)", - "id": "9jO2sYD463M" - }, - { - "title": "Faith Hill - Where Are You Christmas (Karaoke)", - "id": "LuNokWPb2nQ" - }, - { - "title": "John Michael Montgomery - My Christmas Wish (Karaoke)", - "id": "zV_es8xZWF4" - }, - { - "title": "Robert Earl Keen - Happy Holidays Y'All (Karaoke)", - "id": "P2isKyM6J0I" - }, - { - "title": "TLC - Come On Down (Karaoke)", - "id": "KTjoWh-Vk4Q" - }, - { - "title": "Andy Williams - Until It's Time For You To Go (Karaoke)", - "id": "UN6KoUQkWzw" - }, - { - "title": "Whitney Houston - I Learned From The Best (Karaoke)", - "id": "oqNrFm1jwj0" - }, - { - "title": "Christina Aguilera - Obvious (Karaoke)", - "id": "2ZE6P3F2mjU" - }, - { - "title": "Christina Aguilera - Reflection (Karaoke)", - "id": "aM0N9E9l67A" - }, - { - "title": "Candi Staton - Young Hearts Run Free (Karaoke)", - "id": "sbpUMVlK9fs" - }, - { - "title": "Wade Hayes - Up North (Down South, Back East, Out West) (Karaoke)", - "id": "i_cWhl8XQDw" - }, - { - "title": "Madness - It Must Be Love (Karaoke)", - "id": "kgh_3CzPrtw" - }, - { - "title": "Garth Brooks - Do What You Gotta Do (Karaoke)", - "id": "Kk-4II4exk0" - }, - { - "title": "Barry Manilow - Sweet Heaven (Karaoke)", - "id": "A2CMKI8zGdI" - }, - { - "title": "The Hollies - I'm Alive (Karaoke)", - "id": "sN-fV1i0JuQ" - }, - { - "title": "Reba McEntire - We're All Alone (Karaoke)", - "id": "WYQTN7wB4f8" - }, - { - "title": "Buddy Holly with Leo Sayer - Raining In My Heart (Karaoke)", - "id": "WMAKW8IkOpo" - }, - { - "title": "Copacabana - Man Wanted (Karaoke EZ Sing)", - "id": "4yIN3ceBUtg" - }, - { - "title": "Elton John - Someone Saved My Life Tonight (Karaoke)", - "id": "Diz129619mY" - }, - { - "title": "Marc Bolan And T. Rex - Twentieth Century Boy (Karaoke)", - "id": "DDMMuYahSGE" - }, - { - "title": "Ty Herndon - No Mercy (Karaoke)", - "id": "KdIxLg_FniA" - }, - { - "title": "Sonny James - Bright Lights, Big City (Karaoke)", - "id": "T0cfAdhSrMo" - }, - { - "title": "Doug Stone - Take A Letter Maria (Karaoke)", - "id": "-QFaOxRReRA" - }, - { - "title": "Roxette - Church Of Your Heart (Karaoke)", - "id": "rfzs2YyaTXI" - }, - { - "title": "Roxette - How Do You Do (Karaoke EZ Sing)", - "id": "ekqQ5SiVCnU" - }, - { - "title": "Duran Duran - Come Undone (Karaoke EZ Sing)", - "id": "m82fqn6gho8" - }, - { - "title": "Roxette - Almost Unreal (Karaoke EZ Sing)", - "id": "E--QMsWWY44" - }, - { - "title": "Mel Tillis - Send Me Down To Tucson (Karaoke)", - "id": "bpFl5BnNGbI" - }, - { - "title": "Cรฉline Dion - Water From The Moon (Karaoke)", - "id": "9UrM5NFu6U8" - }, - { - "title": "Roxette - Sleeping In My Car (Karaoke)", - "id": "Rzwtp7Roe58" - }, - { - "title": "Connie Smith - Burning A Hole In My Mind (Karaoke)", - "id": "dRQLhC0usCY" - }, - { - "title": "Dinosaur Jr. - Feel The Pain (Karaoke)", - "id": "bUwBFzpeMlA" - }, - { - "title": "Connie Smith - If I Talk To Him (Karaoke)", - "id": "8xNEHscHdOU" - }, - { - "title": "Gerry And The Pacemakers - How Do You Do It (Karaoke EZ Sing)", - "id": "aNqNNGYrPlQ" - }, - { - "title": "Connie Smith - Then And Only Then (Karaoke)", - "id": "nSA6vgq2YJw" - }, - { - "title": "Smokie - Living Next Door To Alice (Karaoke)", - "id": "ZRYwvqoC6-4" - }, - { - "title": "Porter Wagoner - Skid Row Joe (Karaoke)", - "id": "ZZL7-qCFyBM" - }, - { - "title": "Porter Wagoner - I'll Go Down Swinging (Karaoke)", - "id": "omPMbPFxrlA" - }, - { - "title": "Copacabana - Just Arrived (Karaoke)", - "id": "fBnJkRagfpc" - }, - { - "title": "Porter Wagoner - I've Enjoyed As Much Of This As I Can Stand (Karaoke)", - "id": "SD4DK1B4OFw" - }, - { - "title": "Porter Wagoner - Tryin' To Forget The Blues (Karaoke)", - "id": "dhx_oHldiH8" - }, - { - "title": "Porter Wagoner - A Satisfied Mind (Karaoke)", - "id": "CtYhHn3P6o8" - }, - { - "title": "Porter Wagoner & Dolly Parton - Making Plans (Karaoke)", - "id": "Nju9t7hl7G4" - }, - { - "title": "Gene Watson - Nothing Sure Looked Good On You (Karaoke)", - "id": "5KyadjguIC4" - }, - { - "title": "Alan Jackson - She Just Started Liking Cheatin' Songs (Karaoke)", - "id": "v9GEgacX0nI" - }, - { - "title": "Jennifer Lopez - Promise Me You'll Try (Karaoke)", - "id": "8dUyyTQc61A" - }, - { - "title": "Eric Clapton - Blue Eyes Blue (Karaoke)", - "id": "RPPzQg3_zNc" - }, - { - "title": "Boyz II Men - I Will Get There (Karaoke)", - "id": "DLVin6Kc224" - }, - { - "title": "Barbra Streisand with Vince Gill - If You Ever Leave Me (Karaoke)", - "id": "wJXkl5E3ySg" - }, - { - "title": "Deborah Cox - Who Do U Love (Who Do You Love) (Karaoke)", - "id": "2DxdCpem1hg" - }, - { - "title": "Everly Brothers - Love Hurts (Karaoke)", - "id": "d3xoWKMOOPA" - }, - { - "title": "Keith Harling - Bring It On (Karaoke)", - "id": "6o9iWdiUYUw" - }, - { - "title": "R.E.M. - Shiny Happy People (Karaoke)", - "id": "rUQy2H_TQdk" - }, - { - "title": "Alison Limerick - Where Love Lives (Karaoke)", - "id": "5eGBdPha6Io" - }, - { - "title": "Long John Baldry - Let The Heartaches Begin (Karaoke)", - "id": "-9zFcJAFoBg" - }, - { - "title": "R.E.M. - Radio Free Europe (Karaoke)", - "id": "9dh9S24oB2c" - }, - { - "title": "Backstreet Boys - I Wanna Be With You (Karaoke)", - "id": "RvxOXX07WJM" - }, - { - "title": "R.E.M. - It's The End Of The World As We Know It (And I Feel Fine) (Karaoke)", - "id": "yvPujua_ik8" - }, - { - "title": "R.E.M. - Everybody Hurts (Karaoke)", - "id": "-cVWQTNow8w" - }, - { - "title": "Backstreet Boys - Anywhere For You (Karaoke)", - "id": "vGtgGxIXKuk" - }, - { - "title": "Bob Luman - Let's Think About Living (Karaoke)", - "id": "p12JDGPmWNQ" - }, - { - "title": "Elton John - Something About The Way You Look Tonight (Karaoke)", - "id": "YHQGzHrrR7s" - }, - { - "title": "Backstreet Boys - That's What She Said (Karaoke)", - "id": "s89qYoOw8co" - }, - { - "title": "A Flock Of Seagulls - Wishing (If I Had A Photograph Of You) (Karaoke)", - "id": "UmCJQ5jvJls" - }, - { - "title": "Elvis Presley - Silent Night (Karaoke)", - "id": "P3G1HWJvFys" - }, - { - "title": "George Strait - Merry Christmas Strait To You (Karaoke)", - "id": "4j6PkAgaqdo" - }, - { - "title": "Traditional Christmas Songs - Christ Was Born On Christmas Day (Karaoke)", - "id": "QblLIZD6E6k" - }, - { - "title": "Dixie Chicks - Let Him Fly (Karaoke)", - "id": "zvR-Havpefo" - }, - { - "title": "John Berry - Power Windows (Karaoke)", - "id": "qFSWldlZfv4" - }, - { - "title": "Paul Brandt - It's A Beautiful Thing (Karaoke)", - "id": "RhAXDJ_3Jho" - }, - { - "title": "Meja - All 'Bout The Money (Karaoke EZ Sing)", - "id": "wkqwDsjr3NE" - }, - { - "title": "Ray Price - I've Got A New Heartache (Karaoke)", - "id": "S1WQCNGkH78" - }, - { - "title": "Black Lace - Penny Arcade (Karaoke)", - "id": "rlNbdSSt5Zc" - }, - { - "title": "R. Kelly Feat. Keith Murray - Home Alone (Karaoke)", - "id": "GqJIMsY4rXU" - }, - { - "title": "Christopher Cross - Think Of Laura (Karaoke)", - "id": "myGgaFbzgBE" - }, - { - "title": "Billy Joel - Entertainer (Karaoke EZ Sing)", - "id": "vzdXX7zvn8U" - }, - { - "title": "Britney Spears - When Your Eyes Say It (Karaoke)", - "id": "QUzjGvcCfKo" - }, - { - "title": "Billy Joel - Sometimes A Fantasy (Karaoke EZ Sing)", - "id": "4Uh9tZB-Z3E" - }, - { - "title": "Santana Feat. Michelle Branch - The Game Of Love (Karaoke)", - "id": "DWjtm6KhLJA" - }, - { - "title": "Keane - Somewhere Only We Know (Karaoke)", - "id": "IyNlF0PcmYM" - }, - { - "title": "Hard-Fi - Hard To Beat (Karaoke)", - "id": "TUaFk5thIIs" - }, - { - "title": "Elton John - Step Into Christmas (Karaoke)", - "id": "AXS9aErfCa8" - }, - { - "title": "Hard-Fi - Suburban Knights (Karaoke)", - "id": "pXvsKgurLbs" - }, - { - "title": "Richard Marx - Angelia (Karaoke)", - "id": "hIOnJFFekIc" - }, - { - "title": "Cรฉline Dion - Stand By Your Side (Karaoke)", - "id": "7UeSE9PRLPE" - }, - { - "title": "Elton John - You Can Make History (Young Again) (Karaoke)", - "id": "ubMaG9APpyI" - }, - { - "title": "New Order - Bizarre Love Triangle (Karaoke)", - "id": "ylbZWVnOrLk" - }, - { - "title": "Johnny Cash - Guess Things Happen That Way (Karaoke)", - "id": "tZ8F2hrB-uU" - }, - { - "title": "Johnny Cash - Ballad Of A Teenage Queen (Karaoke)", - "id": "IWY5bpinmD8" - }, - { - "title": "Loretta Lynn - Woman Of The World (Leave My World Alone) (Karaoke)", - "id": "2zIB0JNy17A" - }, - { - "title": "Loretta Lynn - Fist City (Karaoke)", - "id": "zUa2fH9xhR4" - }, - { - "title": "Loretta Lynn - You've Just Stepped In (From Stepping Out On Me) (Karaoke)", - "id": "lJB07UNIMv8" - }, - { - "title": "Loretta Lynn - Rated \"X\" (Karaoke)", - "id": "dcjr9mpzPmw" - }, - { - "title": "Hank Williams - Dear John (Karaoke)", - "id": "XeTbEojg20Q" - }, - { - "title": "Marty Robbins - Tonight Carmen (Karaoke)", - "id": "JgzBG8a3Mug" - }, - { - "title": "Marty Robbins - Begging To You (Karaoke)", - "id": "mL807fXsxrU" - }, - { - "title": "Charley Pride - Why Baby Why (Karaoke)", - "id": "Zw_JTDjF1mc" - }, - { - "title": "Charley Pride - She's Just An Old Love Turned Memory (Karaoke)", - "id": "N8tENwJkJJs" - }, - { - "title": "Hank Williams Jr. - If The South Woulda Won (Karaoke)", - "id": "YhUHDvksL5U" - }, - { - "title": "Owl City & Carly Rae Jepsen - Good Time (Karaoke)", - "id": "NAs-zsnDVG8" - }, - { - "title": "Maroon 5 - This Love (Karaoke)", - "id": "_W-ZhKNOYM4" - }, - { - "title": "Willie Nelson & Lee Ann Womack - Mendocino County Line (Karaoke)", - "id": "10p-cBc5m2Q" - }, - { - "title": "Elvis Presley - Let It Be Me (Karaoke)", - "id": "-30Of3FVQig" - }, - { - "title": "R. Kelly - I Wish (Karaoke)", - "id": "5TfFrYp04dw" - }, - { - "title": "Elvis Presley - It's Over (Karaoke)", - "id": "802IHYkwVQc" - }, - { - "title": "Elvis Presley - It's Impossible (Karaoke)", - "id": "X8Je9MPJ2Gg" - }, - { - "title": "No Doubt - Just A Girl (Karaoke)", - "id": "0LR_v6qPyr0" - }, - { - "title": "Yankee Grey - All Things Considered (Karaoke)", - "id": "lvd5cTHY5hU" - }, - { - "title": "Cher - Strong Enough (Karaoke)", - "id": "7PTX2NefrYc" - }, - { - "title": "Faith Hill - When You Cry (Karaoke)", - "id": "StuzwIfRrsI" - }, - { - "title": "Brewer & Shipley - One Toke Over The Line (Karaoke)", - "id": "Fx23MnjZxI4" - }, - { - "title": "Crystal Gayle - Ready For The Times To Get Better (Karaoke)", - "id": "ezYmbtCk8AQ" - }, - { - "title": "Charley Pride - Wonder Could I Live There Anymore (Karaoke)", - "id": "Isv_eRV8EHM" - }, - { - "title": "Johnny Duncan - She Can Put Her Shoes (Under My Bed Anytime) (Karaoke)", - "id": "MYAecO4F8LQ" - }, - { - "title": "Rosanne Cash - I Don't Know Why You Don't Want Me (Karaoke)", - "id": "e-eG2o1AkPg" - }, - { - "title": "Keith Harling - Write It In Stone (Karaoke)", - "id": "Lwx5gNaKuO4" - }, - { - "title": "Chad Brock - Ordinary Life (Karaoke)", - "id": "54kFiba2FWE" - }, - { - "title": "Marty Robbins - El Paso City (Karaoke)", - "id": "b-emulJsEoM" - }, - { - "title": "Allison Moorer - Alabama Song (Karaoke)", - "id": "sQ9pwUWsrVk" - }, - { - "title": "Rosanne Cash - My Baby Thinks He's A Train (Karaoke)", - "id": "9qzWC6EzCTw" - }, - { - "title": "Johnny Lee - One In A Million (Karaoke)", - "id": "0tP9iuCObPo" - }, - { - "title": "Dolly Parton - You're The Only One (Karaoke)", - "id": "62B6nu4q8_I" - }, - { - "title": "Jo Dee Messina - Stand Beside Me (Karaoke)", - "id": "9mrHl9YHykc" - }, - { - "title": "Bill Engvall - I'm A Cowboy (Karaoke)", - "id": "9VqwCaAmyDI" - }, - { - "title": "R. City featuring Adam Levine - Locked Away (Karaoke)", - "id": "C9SDpPl1M8k" - }, - { - "title": "John Michael Montgomery - Hold On To Me (Karaoke)", - "id": "cG2DukgzWfg" - }, - { - "title": "Barbara Mandrell - If Loving You Is Wrong (I Don't Want To Be Right) (Karaoke)", - "id": "-qP0aHOzZ7U" - }, - { - "title": "Marty Robbins - Ruby Ann (Karaoke)", - "id": "6bMrTJ0tKrs" - }, - { - "title": "Dwight Yoakam - These Arms (Karaoke)", - "id": "2wxwQmAOA44" - }, - { - "title": "Lila Downs - To Get Me To You (Karaoke)", - "id": "TAI4VTiRqbc" - }, - { - "title": "Faron Young - Alone With You (Karaoke)", - "id": "J3U4zoNLIEo" - }, - { - "title": "Wanda Jackson - The Window Up Above", - "id": "5rs6xkr1zfM" - }, - { - "title": "Dixie Chicks - Wide Open Spaces (Karaoke)", - "id": "z15wTzk3LCY" - }, - { - "title": "Alan Jackson - I'll Go On Loving You (Karaoke)", - "id": "VY4QHw-EG7s" - }, - { - "title": "Billy Joel - Movin' Out (Anthony's Song) (Karaoke)", - "id": "kUeA5G-QUCs" - }, - { - "title": "Cure - Friday I'm In Love (Karaoke EZ Sing)", - "id": "cpOiHcU6-5s" - }, - { - "title": "Billy Joel - Keeping The Faith (Karaoke)", - "id": "NasF-7hEZb0" - }, - { - "title": "Little Anthony & The Imperials - Goin' Out Of My Head (Karaoke EZ Sing)", - "id": "RdIDnSAujtQ" - }, - { - "title": "Aaron Neville - Don't Take Away My Heaven (Karaoke)", - "id": "9STjY9bQaLI" - }, - { - "title": "Elton John - Circle Of Life (Karaoke)", - "id": "Lu59qXqbxFA" - }, - { - "title": "Santana - Evil Ways (Karaoke EZ Sing)", - "id": "TEPYGpDFJpw" - }, - { - "title": "Florida Georgia Line - H.O.L.Y. (Karaoke)", - "id": "VMXRYIsby6I" - }, - { - "title": "Aan - Because I Got High (Karaoke EZ Sing)", - "id": "mNZzF-oZSeI" - }, - { - "title": "Hunter Hayes - Wanted (Karaoke)", - "id": "SXnYPuqNfzo" - }, - { - "title": "Keith Urban - Wasted Time (Karaoke)", - "id": "9tnPKpq9Q1Q" - }, - { - "title": "Blood Sweat & Tears - God Bless The Child (Karaoke)", - "id": "HEiLcMH8IyE" - }, - { - "title": "Elton John - Goodbye Yellow Brick Road (Karaoke)", - "id": "HbxEoFSBi90" - }, - { - "title": "The Lemon Pipers - Green Tambourine (Karaoke)", - "id": "tsj8iZvcmo4" - }, - { - "title": "John Fred & His Playboy Band - Judy In Disguise (With Glasses) (Karaoke)", - "id": "fuUKvmR4E4g" - }, - { - "title": "Usher - U Remind Me (Karaoke)", - "id": "GlQ-FQiNOC8" - }, - { - "title": "American Hi-Fi - Flavor Of The Weak (Karaoke)", - "id": "GZBZydWWEdY" - }, - { - "title": "The Kinleys - You Make It Seem So Easy (Karaoke)", - "id": "aGuDnn7-Mac" - }, - { - "title": "SHERRIE' AUSTIN - Innocent Man (Karaoke)", - "id": "6kbtVGtGglU" - }, - { - "title": "The Wilkinsons - 26 Cents (Karaoke)", - "id": "EOCGReL_xyE" - }, - { - "title": "Kevin Sharp - If She Only Knew (Karaoke)", - "id": "fAGg3Ek22s4" - }, - { - "title": "The Everly Brothers - Let It Be Me (Karaoke)", - "id": "X86dKVU1fQ8" - }, - { - "title": "Hank Locklin - Send Me The Pillow You Dream On (karaoke)", - "id": "iTnD3Ff8KIM" - }, - { - "title": "Joe Cocker - The Letter (Karaoke)", - "id": "jAi0aJPQ4G8" - }, - { - "title": "Steve Wariner - Burnin' The Roadhouse Down (Karaoke)", - "id": "FdGVxrMibcc" - }, - { - "title": "Merle Travis - I Am A Pilgrim (Karaoke)", - "id": "Vi_rv1kUYRg" - }, - { - "title": "Bobby Darin - As Long As I'm Singing (Karaoke)", - "id": "1FHiNaml5Cg" - }, - { - "title": "Evanescence - Going Under (Karaoke)", - "id": "ijGQf0PH9ns" - }, - { - "title": "Ralph Stanley - Old Time Religion (Karaoke)", - "id": "9Ie7XDBv-jA" - }, - { - "title": "Lynyrd Skynyrd - Tuesday's Gone (Karaoke)", - "id": "LyYZBuyEFoQ" - }, - { - "title": "Carl Story - Angel Band (Karaoke)", - "id": "c_scCnxj2J0" - }, - { - "title": "Reno & Smiley - I'm Using My Bible For A Roadmap (Karaoke)", - "id": "dJs8LWgJQz8" - }, - { - "title": "Bill Anderson - Still (Karaoke)", - "id": "AvjGMFg8YEo" - }, - { - "title": "Jerry Wallace - Primrose Lane (Karaoke)", - "id": "AJN8KHfM13E" - }, - { - "title": "Roy Clark - Come Live With Me (Karaoke)", - "id": "6wpvV6goLUM" - }, - { - "title": "Ray Price - You're The Best Thing That Ever Happened To Me (Karaoke)", - "id": "2hrIuFRCgxE" - }, - { - "title": "Creedence Clearwater Revival - Run Through The Jungle (Karaoke)", - "id": "z69ukaOykXs" - }, - { - "title": "Conway Twitty - There's A Honky Tonk Angel (Who'll Take Me Back In) (Karaoke)", - "id": "YKjCBWcBb64" - }, - { - "title": "Emmylou Harris - One Of These Days (Karaoke)", - "id": "y8E9VOwYOz4" - }, - { - "title": "Carl & Pearl Butler - Don't Let Me Cross Over (Karaoke)", - "id": "zJjFF7FQpZ8" - }, - { - "title": "Cowboy Copas - Alabam (Karaoke)", - "id": "AGuPBB9jvAA" - }, - { - "title": "George Strait - You Haven't Left Me Yet (Karaoke)", - "id": "h0sFGZlKYuI" - }, - { - "title": "Don Williams - True Love (Karaoke)", - "id": "HnpqrY73Keo" - }, - { - "title": "Patty Loveless & Dwight Yoakam - Send A Message To My Heart (Karaoke)", - "id": "Z3PLN3DzH8Y" - }, - { - "title": "Connie Francis - My Happiness (Karaoke)", - "id": "LLdj5k7pO-s" - }, - { - "title": "Loretta Lynn - Love Is The Foundation (Karaoke)", - "id": "1V3umtRXNwY" - }, - { - "title": "Kathy Mattea - Listen To The Radio (Karaoke)", - "id": "VGfYR1ktIWo" - }, - { - "title": "Jean Shepard - A Satisfied Mind (Karaoke)", - "id": "pYplcKQ7_eA" - }, - { - "title": "Steve Wariner - Holes In The Floor Of Heaven (Karaoke)", - "id": "DGDU6C4Kk6E" - }, - { - "title": "George Jones - Wine Colored Roses (Karaoke)", - "id": "kS1JNhLj4ts" - }, - { - "title": "Rosanne Cash - Seven Year Ache (Karaoke)", - "id": "hI8mSs1QBbE" - }, - { - "title": "Lynyrd Skynyrd - Gimme Three Steps (Karaoke)", - "id": "5jYmbFbVixg" - }, - { - "title": "David Frizzell - I'm Gonna Hire A Wino (Karaoke)", - "id": "Z6psMcTSPIY" - }, - { - "title": "Kirk Talley - I Start My Day (Karaoke)", - "id": "lKTfob1Zkvg" - }, - { - "title": "Gospel - Hymn - All Hail The Power (Karaoke)", - "id": "Ng8_xtEerSQ" - }, - { - "title": "Gospel - Hymn - Alas! And Did My Savior Bleed? (Karaoke)", - "id": "8yPBwj2878I" - }, - { - "title": "Gospel - Hymn - Christ Receiveth Sinful Men (Karaoke)", - "id": "49S2mlaLhXk" - }, - { - "title": "Gospel - Hymn - Are You Washed In The Blood (Karaoke)", - "id": "0JeurFar7Mg" - }, - { - "title": "Gospel - Hymn - He Keeps Me Singing (Karaoke)", - "id": "1-zFl-50m4A" - }, - { - "title": "Gospel - Hymn - Blessed Be The Name (Karaoke)", - "id": "K95WdJrD330" - }, - { - "title": "Gospel - Hymn - Close To Thee (Karaoke)", - "id": "upJ7Xxqyd58" - }, - { - "title": "Gospel - Hymn - Fairest Lord Jesus (Karaoke)", - "id": "MF3IHjCT66k" - }, - { - "title": "Gospel - Hymn - Brethren, We Have Met To Worship (Karoake)", - "id": "cY6v-CQjvYE" - }, - { - "title": "Gospel - Hymn - Come Thou Fount (Karaoke)", - "id": "zMvUgqPAhOc" - }, - { - "title": "Gospel - Hymn - Glory To His Name (Karaoke)", - "id": "Maz4RvRUbbE" - }, - { - "title": "Gospel - Hymn - The Haven Of Rest (Karaoke)", - "id": "PbpSv5RAZsw" - }, - { - "title": "Kenny Chesney - From Hillbilly Heaven To Honky Tonk Hell (Karaoke)", - "id": "53ait-cfnZM" - }, - { - "title": "Patsy Cline - The Wayward Wind (Karaoke)", - "id": "2peQIVhJLNM" - }, - { - "title": "Patsy Cline - If I Could See The World (Karaoke)", - "id": "PY-Cl74_zMY" - }, - { - "title": "Loretta Lynn - Don't Come Home A'Drinkin' (With Lovin' On Your Mind) (Karaoke)", - "id": "_ZSUmFpsB1A" - }, - { - "title": "Jerry Reed - Eastbound And Down (Karaoke)", - "id": "ppqhC6AsW00" - }, - { - "title": "Wynonna - Let's Make A Baby King (Karaoke)", - "id": "sy6lU1L8qZ8" - }, - { - "title": "The Judds - Beautiful Star Of Bethlehem (Karaoke)", - "id": "L-Vmb7gNItI" - }, - { - "title": "Elvis Presley - If Every Day Was Like Christmas (Karaoke)", - "id": "QzMjGYrij-c" - }, - { - "title": "The Kinleys - Please (Karaoke)", - "id": "2T-Dsodv7lE" - }, - { - "title": "Lee Roy Parnell - You Can't Get There From Here (Karaoke)", - "id": "PYNyVRRwQaI" - }, - { - "title": "Jeff Carson - Here's The Deal (Karaoke)", - "id": "fkfgSXloVkg" - }, - { - "title": "SHERRIE' AUSTIN - Lucky In Love (Karaoke)", - "id": "nvc6KhOnf80" - }, - { - "title": "Bryan White - Love Is The Right Place (Karaoke)", - "id": "s50edoLNsQE" - }, - { - "title": "Stanley Brothers, The - Pig In The Pen (Karaoke)", - "id": "lpv-V04OOog" - }, - { - "title": "Flatt & Scruggs - Roll In My Sweet Baby's Arms (Karaoke)", - "id": "2GlBA1GySX8" - }, - { - "title": "Bill Monroe - Dark Hollow (Karaoke)", - "id": "EVEjtHYrgMM" - }, - { - "title": "Bill Monroe - Blue Moon Of Kentucky (Karaoke)", - "id": "4fXjRqvE16k" - }, - { - "title": "George Morgan - Candy Kisses (Karaoke)", - "id": "5Z_OhQ_xmZ0" - }, - { - "title": "George Jones - The Window Up Above (Karaoke)", - "id": "tOADmhXO0Lk" - }, - { - "title": "Conway Twitty - Georgia Keeps Pullin' On My Ring (Karaoke)", - "id": "H81gaPHZgQ4" - }, - { - "title": "Connie Smith - Cincinnati, Ohio (Karaoke)", - "id": "FgVfSdULe4Q" - }, - { - "title": "Charly McClain - Dancin' Your Memory Away (Karaoke)", - "id": "Vojc6YlYl5k" - }, - { - "title": "Kirk Talley - Serenaded By Angels (Karaoke)", - "id": "qkHRSHNjtOo" - }, - { - "title": "Reba McEntire - What If (Karaoke)", - "id": "RnqdpZ9_kXw" - }, - { - "title": "Jim Collins - The Next Step (Karaoke)", - "id": "JamtQgRGNEk" - }, - { - "title": "Jimmy Buffett - Why Don't We Get Drunk (Karaoke)", - "id": "4KtNMD2YNSw" - }, - { - "title": "Standard - When Johnny Comes Marching Home Again (Karaoke)", - "id": "68Dk5fSG7PE" - }, - { - "title": "Whitney Houston - You'll Never Stand Alone (Karaoke)", - "id": "4DceTe4KC1k" - }, - { - "title": "Brandy - Have You Ever? (Karaoke)", - "id": "vNILRCz3T0s" - }, - { - "title": "Mariah Carey - You Need Me (Karaoke)", - "id": "D5DgHkaWgyU" - }, - { - "title": "Bonnie Raitt - Runaway (Karaoke)", - "id": "DM-iIv0FALk" - }, - { - "title": "Cher - Love Hurts (Karaoke)", - "id": "sA8eEiVJum0" - }, - { - "title": "Alabama - God Must Have Spent A Little More Time On You (Karaoke)", - "id": "r_YFu_BezO8" - }, - { - "title": "Julie Reeves - He Keeps Me In One Piece (Karaoke)", - "id": "o2u-pTA2gmU" - }, - { - "title": "Sheryl Crow - Anything But Down (Karaoke)", - "id": "YH9t9Jlaris" - }, - { - "title": "Jewel - Near You Always (Karaoke)", - "id": "xm0FtSlkOnE" - }, - { - "title": "Jewel - Who Will Save Your Soul? (Karaoke)", - "id": "4xe8Zw37b6A" - }, - { - "title": "Trisha Yearwood - I'll Still Love You More (Karaoke)", - "id": "poRtxSSpKNo" - }, - { - "title": "Steve Wariner - Can I Come Over Tonight (Karaoke)", - "id": "4FCXQFDbosM" - }, - { - "title": "Allison Moorer - Pardon Me (Karaoke)", - "id": "cRqRemGS4nU" - }, - { - "title": "Eric Clapton - Cocaine (Karaoke)", - "id": "AXuj7b9JTMA" - }, - { - "title": "Keith Harling - There Goes The Neighborhood (Karaoke)", - "id": "OP6dsBRy4Eg" - }, - { - "title": "Lynyrd Skynyrd - Call Me The Breeze (Karaoke)", - "id": "2iIO8z4PnQA" - }, - { - "title": "David Kersh - Day In, Day Out (Karaoke)", - "id": "FlMXB1rp2gg" - }, - { - "title": "John Michael Montgomery - How Was I To Know (Karaoke)", - "id": "OtB7--4udXg" - }, - { - "title": "Country Christmas - O' Come All Ye Faithful (Karaoke)", - "id": "CPic5Ah5tlY" - }, - { - "title": "Helen Cornelius - The First Noel (Karaoke)", - "id": "XmO0FY6NhIU" - }, - { - "title": "Con Hunley - Jolly Old St. Nicholas (Karaoke)", - "id": "q8kSYbOI4VU" - }, - { - "title": "The Wilburns - Looking For A Place To Cross (Karaoke)", - "id": "0OliwrqacpE" - }, - { - "title": "The Kingsmen - Behold The Master Cometh (Karaoke)", - "id": "GvLpFDLEzCE" - }, - { - "title": "Kirk Talley - If He Hung The Moon (Karaoke)", - "id": "b29_FAetSfs" - }, - { - "title": "The Freemans - Hello In Heaven (Karaoke)", - "id": "PJPcCDPmdQU" - }, - { - "title": "Tony Gore & Majesty - Meanwhile In The Garden (Karaoke)", - "id": "OM0SGDHVW6Q" - }, - { - "title": "Lisa Brokop - Shake Me, I Rattle (Karaoke)", - "id": "4J4oFluy1tk" - }, - { - "title": "LeAnn Rimes - Blue (Karaoke)", - "id": "aZZ9e8lmSTY" - }, - { - "title": "Cรฉline Dion - Because You Loved Me (Karaoke)", - "id": "1TyUXDUYtqs" - }, - { - "title": "Joe - The One For Me (Karaoke)", - "id": "KV4QdwvlGU4" - }, - { - "title": "Meat Loaf - I'd Lie For You (Karaoke)", - "id": "7KCCNWioxGI" - }, - { - "title": "Lisa Loeb - Do You Sleep? (Karaoke)", - "id": "qniG3UAgmy0" - }, - { - "title": "Joe - All Or Nothing (Karaoke)", - "id": "8T6fEtULA9o" - }, - { - "title": "Elton John - Made In England (Karaoke)", - "id": "naoentM8XDY" - }, - { - "title": "Michael Jackson - You Are Not Alone (Karaoke)", - "id": "2kSlEjcp4uI" - }, - { - "title": "5th Dimension, The - Last Night I Didn't Get To Sleep At All (Karaoke)", - "id": "ZyLjZRkZ05E" - }, - { - "title": "Jeff Carson - When You Said You Loved Me (Karaoke)", - "id": "Ao1kNQjkMiI" - }, - { - "title": "The All-American Rejects - Top Of The World (Karaoke)", - "id": "bYsh0ZU-Pa4" - }, - { - "title": "Brian McKnight - Find Myself In You (Karaoke)", - "id": "jIFqLKu9lNI" - }, - { - "title": "Diana Krall - Just The Way You Are (Karaoke)", - "id": "X2TkuXEFy5k" - }, - { - "title": "Diana Krall - Let's Face The Music And Dance (Karaoke)", - "id": "afyhya0jFQo" - }, - { - "title": "Amy Dalley - Good Kind Of Crazy (Karaoke)", - "id": "6y6RgkRQsbw" - }, - { - "title": "Rodney Atkins - These Are My People (Karaoke)", - "id": "obM0WZiqSQA" - }, - { - "title": "Jamie Cullum - These Are The Days (Karaoke)", - "id": "AqFxP-Yv4Gg" - }, - { - "title": "Toby Keith - High Maintenance Woman (Karaoke)", - "id": "-KlzmJO_d9g" - }, - { - "title": "Richard Marx - Now And Forever (Karaoke)", - "id": "iwHvspmt8tU" - }, - { - "title": "Cole Deggs & The Lonesome - I Got More (Karaoke)", - "id": "_E8JgYT8B88" - }, - { - "title": "Tim McGraw - Last Dollar (Fly Away) (Karaoke)", - "id": "y5_yW5QHlmM" - }, - { - "title": "Dolly Parton - He's Alive (Karaoke)", - "id": "0a-yWgOrWG8" - }, - { - "title": "Eric Clapton - Pretending (Karaoke)", - "id": "eCRj21CGSyE" - }, - { - "title": "Joan Osborne - Who Divided (Karaoke)", - "id": "i3MW0Jqjfew" - }, - { - "title": "Sara Evans - Missing Missouri (Karaoke)", - "id": "FkccaKICD8o" - }, - { - "title": "Keith Urban - Stupid Boy (Karaoke)", - "id": "rn_rCcVgx-8" - }, - { - "title": "The Pussycat Dolls - How Many Times, How Many Lies (Karaoke)", - "id": "htdwsctSHFg" - }, - { - "title": "Snow Patrol - Chasing Cars (Karaoke)", - "id": "xr1R26SIwjc" - }, - { - "title": "Jake Owen - Startin' With Me (Karaoke)", - "id": "vTx1XXLNcd4" - }, - { - "title": "Jason Michael Carroll - Alyssa Lies (Karaoke)", - "id": "o5ATZA-1goA" - }, - { - "title": "New Found Glory - It's Not Your Fault (Karaoke)", - "id": "5Uzq_bnwcIY" - }, - { - "title": "The All-American Rejects - It Ends Tonight (Karaoke)", - "id": "-YKVjzGnuF4" - }, - { - "title": "Lil Wayne - Go DJ (Karaoke)", - "id": "cuR17E03kbQ" - }, - { - "title": "Craig David - All We Needed (Karaoke)", - "id": "hYCrdyd1_x8" - }, - { - "title": "Taylor Dayne - I'll Be Your Shelter (Karaoke)", - "id": "7ZXq1_2D-2A" - }, - { - "title": "The Brand New Heavies - Midnight At The Oasis (Karaoke)", - "id": "bG78yxnWiEk" - }, - { - "title": "Simply Red - Fairground (Karaoke)", - "id": "r0b8CoSk6Zw" - }, - { - "title": "Simply Red - Never Never Love (Karaoke)", - "id": "iCjfzSWGnQs" - }, - { - "title": "Roxy Music - Virginia Plain (Karaoke EZ Sing)", - "id": "Bjazx9ZWDsM" - }, - { - "title": "Simply Red - We're In This Together (Karaoke)", - "id": "kVU-MF1nIVk" - }, - { - "title": "Michael Bublรฉ - A Song For You (Karaoke)", - "id": "s93DFQcPZSg" - }, - { - "title": "Sparks - This Town Ain't Big Enough For Both Of Us (Karaoke EZ Sing)", - "id": "boDxNLtWm5s" - }, - { - "title": "Barry Manilow - Beautiful Music (Karaoke)", - "id": "3GylGd-uRXE" - }, - { - "title": "Aaron Carter - How I Beat Shaq (Karaoke)", - "id": "gWDt6DRLNJM" - }, - { - "title": "Better Than Ezra - Desperately Wanting (Karaoke)", - "id": "vRet40yFoNQ" - }, - { - "title": "Emmylou Harris - The Pearl (Karaoke)", - "id": "2OK2jpYQyl0" - }, - { - "title": "Keane - Spiralling (Karaoke)", - "id": "wHdhcB1knA8" - }, - { - "title": "Aaron Carter - Oh Aaron (Karaoke)", - "id": "Lgd3KklE2Cs" - }, - { - "title": "Keni Burke - Risin' To The Top (Karaoke)", - "id": "dQtOJThE4_0" - }, - { - "title": "David Essex - Hold Me Close (Karaoke)", - "id": "6ParC5Ar8pM" - }, - { - "title": "American Hi-Fi - The Art Of Losing (Karaoke)", - "id": "bbNJId2fcqc" - }, - { - "title": "Dashboard Confessional - Don't Wait (Karaoke)", - "id": "chhzRI0Sv4I" - }, - { - "title": "Tommy Reilly - Give Me A Call (Karaoke)", - "id": "rZ1wJv0vyQM" - }, - { - "title": "Brian McKnight - What We Do Here (Karaoke)", - "id": "P5F2RzevP2Y" - }, - { - "title": "David Essex - Gonna Make You A Star (Karaoke)", - "id": "btg5io19Fy0" - }, - { - "title": "Belinda Carlisle - Leave A Light On (Karaoke EZ Sing)", - "id": "2hfcZ9-AyQY" - }, - { - "title": "Terence Trent D'Arby - If You Let Me Stay (Karaoke)", - "id": "QX_Q74wUEwk" - }, - { - "title": "Tears For Fears - Sowing The Seeds Of Love (Karaoke)", - "id": "Gan9SRMuzIQ" - }, - { - "title": "Simply Red - Sad Old Red (Karaoke EZ Sing)", - "id": "9gZKkYttBsM" - }, - { - "title": "Gregory Porter - Consequence Of Love (Karaoke EZ Sing)", - "id": "RcSbhTmLoTc" - }, - { - "title": "Roxette - Dangerous (Karaoke)", - "id": "O1rUhZ-z5-E" - }, - { - "title": "Irish Standard - Isle Of Innisfree (Karaoke)", - "id": "wzY8T_kPyDY" - }, - { - "title": "Tony Bennett - Why Do People Fall In Love (Karaoke)", - "id": "zrb-INWy3FE" - }, - { - "title": "The Asteroids Galaxy Tour - The Golden Age (Karaoke)", - "id": "yfg9xMgGJZA" - }, - { - "title": "On The Town - Lucky To Be Me (Karaoke EZ Sing)", - "id": "bHZF6FpJpS4" - }, - { - "title": "Cรฉline Dion - Think Twice (Karaoke)", - "id": "Kq3k4-Uf_uw" - }, - { - "title": "Bow Wow ft. Chris Brown - Ain't Thinkin' 'Bout You (Karaoke EZ Sing)", - "id": "KnXxHKjwITU" - }, - { - "title": "Chaka Khan - Once You Get Started (Karaoke)", - "id": "MvLJ_20hwto" - }, - { - "title": "Seether - Betray And Degrade (Karaoke)", - "id": "5w6LPxCSwak" - }, - { - "title": "The Mavericks - Neon Blue (Karaoke)", - "id": "axMZ1ksWqWg" - }, - { - "title": "Pop Evil - Waking Lions (Karaoke)", - "id": "xfRDWr4xNKs" - }, - { - "title": "Kathy Mattea - Maybe She's Human (Karaoke)", - "id": "iQhWUbneovw" - }, - { - "title": "CamelPhat & Elderbrook - Cola (Karaoke)", - "id": "a_1qLJ22kUU" - }, - { - "title": "Garth Brooks - The Change", - "id": "hwJ6zORXIqk" - }, - { - "title": "Nathaniel Rateliff & The Night Sweats - Coolin' Out (Karaoke)", - "id": "UXr6IyPkZmo" - }, - { - "title": "Toby Keith - Does That Blue Moon Ever Shine On You (Karaoke)", - "id": "BMuDhxym3g0" - }, - { - "title": "Simply Red - Your Mirror (Karaoke)", - "id": "RMNx-RaaaZc" - }, - { - "title": "Billie Jo Spears - Misty Blue (Karaoke)", - "id": "Kdp8GErll0I" - }, - { - "title": "Simply Red - Say You Love Me (Karaoke)", - "id": "qMS8pooFIKU" - }, - { - "title": "Xscape - The Arms Of The One Who Loves You (Karaoke)", - "id": "hICquq4Nx_Q" - }, - { - "title": "The Specials - Ghost Town (Karaoke)", - "id": "1UoPJZsZd6c" - }, - { - "title": "The Specials - Too Much Too Young (Karaoke)", - "id": "MUn4n5a-xRM" - }, - { - "title": "Simply Red - Your Eyes (Karaoke)", - "id": "-Fn4pBdVAmw" - }, - { - "title": "Buddy Holly - Bo Diddley (Karaoke EZ Sing)", - "id": "w9dSU5IGB4g" - }, - { - "title": "The Beach Boys - Surfin' Safari (Karaoke)", - "id": "O5yrKksu2iU" - }, - { - "title": "Athlete - Hurricane (Karaoke EZ Sing)", - "id": "sRUnCJnoQ2Y" - }, - { - "title": "Telepopmusik - Breathe (Karaoke EZ Sing)", - "id": "RsLzH97Pa48" - }, - { - "title": "Gary Jules - Mad World (Karaoke)", - "id": "LdCimkf3wVQ" - }, - { - "title": "Athlete - Half Light (Karaoke EZ Sing)", - "id": "nS4-gVTZSa8" - }, - { - "title": "The Lettermen - We Three Kings (Karaoke)", - "id": "JZvyu1G8WKQ" - }, - { - "title": "The Lettermen - O' Come All Ye Faithful (Karaoke)", - "id": "uOhEzcidBCQ" - }, - { - "title": "The Lettermen - What Child Is This? (Karaoke)", - "id": "wAGxLbUHUM0" - }, - { - "title": "The Lettermen - O' Holy Night (Karaoke)", - "id": "UGK3HW4W5o4" - }, - { - "title": "The Lettermen - The First Noel (Karaoke)", - "id": "KYUNIcJ4mCY" - }, - { - "title": "Jennifer Wilson - Jingle Bells (Karaoke)", - "id": "pipLVkjbYmg" - }, - { - "title": "George Strait - Check Yes Or No (Karaoke)", - "id": "LfpjA0Id9O8" - }, - { - "title": "Sawyer Brown - I Don't Believe In Goodbye (Karaoke)", - "id": "-x8Mwclj8-E" - }, - { - "title": "Toby Keith - Big Ol' Truck (Karaoke)", - "id": "ct1XSqMEP44" - }, - { - "title": "Little Anthony & The Imperials - Going Out Of My Head (Karaoke)", - "id": "AbI0H0Bfaac" - }, - { - "title": "Standard - Anchors Aweigh (Karaoke)", - "id": "skOBMMGbES0" - }, - { - "title": "Lloyd Price - Stagger Lee (Karaoke)", - "id": "v1Zsw_KjRAQ" - }, - { - "title": "Gospel - Southern - Living Over In Glory (Karaoke)", - "id": "avTFKKjmn5U" - }, - { - "title": "Nat King Cole - The Very Thought Of You (Karaoke)", - "id": "faUbZxJ8WVc" - }, - { - "title": "Kathy Mattea - Clown In Your Rodeo (Karaoke)", - "id": "0Bf31i5Ze4w" - }, - { - "title": "Trisha Yearwood - You Can Sleep While I Drive (Karaoke)", - "id": "n0srmQISdYU" - }, - { - "title": "George Strait - Adalida (Karaoke)", - "id": "5VnswCNMgcA" - }, - { - "title": "Toby Keith - You Ain't Much Fun (Karaoke)", - "id": "fuzvWd8kuX4" - }, - { - "title": "Tommy Roe - Raining In My Heart (Karaoke)", - "id": "ZbfKGQCXpLY" - }, - { - "title": "Sammy Kershaw - Southbound (Karaoke)", - "id": "LfNVPgjxPGI" - }, - { - "title": "Toby Keith - Upstairs Downtown (Karaoke)", - "id": "dniprSIL6bM" - }, - { - "title": "Toby Keith - Who's That Man (Karaoke)", - "id": "H0Vx-ammBIg" - }, - { - "title": "Western Flyer - Western Flyer (Karaoke)", - "id": "jpfSWs5886g" - }, - { - "title": "Skid Row - 18 And Life (Karaoke)", - "id": "3k5jPmWBcrM" - }, - { - "title": "Mark Chesnutt - Woman, Sensuous Woman (Karaoke)", - "id": "CyjeyQNVavc" - }, - { - "title": "Decemberist, The - Severed (Karaoke)", - "id": "0cbREKA1WFA" - }, - { - "title": "Toby Keith - Wish I Didn't Know Now (Karaoke)", - "id": "vQofTol-SRc" - }, - { - "title": "Wynonna - Rock Bottom (Karaoke)", - "id": "tBVroDeAx7A" - }, - { - "title": "Tanya Tucker - We Don't Have To Do This (Karaoke)", - "id": "606PVxJjbj8" - }, - { - "title": "Martina McBride - Life #9 (Karaoke)", - "id": "SAF8GqcFiAQ" - }, - { - "title": "Tanya Tucker - You Just Watch Me (Karaoke)", - "id": "sS4HJ8XQSjs" - }, - { - "title": "Gospel - Southern - Pressed Against The Thorn (Karaoke)", - "id": "StSm8uaBqzM" - }, - { - "title": "Triumph - Fight The Good Fight (Karaoke)", - "id": "480oTlbA9YA" - }, - { - "title": "Gospel - Southern - More About Jesus (Karaoke)", - "id": "VQ23PI4CGr0" - }, - { - "title": "The Specials - Nite Klub (Karaoke)", - "id": "0JWnGUvjwSE" - }, - { - "title": "The Cribs - Man's Needs (Karaoke EZ Sing)", - "id": "2VmGuREdsVw" - }, - { - "title": "Bryan Ferry - Slave To Love (Karaoke)", - "id": "uDFDgpEtRT0" - }, - { - "title": "Tears For Fears - Woman In Chains (Karaoke)", - "id": "TteCTWYj0PI" - }, - { - "title": "Maria Muldaur - Midnight At The Oasis (Karaoke)", - "id": "ORMN7Y6vTNY" - }, - { - "title": "Duffy - Rockferry (Karaoke)", - "id": "80wV9a6PTbg" - }, - { - "title": "XTC - Towers Of London (Karaoke)", - "id": "ln4PWqcwUeU" - }, - { - "title": "Cave In - Anchor (Karaoke)", - "id": "6obNXQlU6Ow" - }, - { - "title": "Jethro Tull - Aqualung (Karaoke EZ Sing)", - "id": "holncWnGNnM" - }, - { - "title": "Robert Cray - Don't Be Afraid Of The Dark (Karaoke EZ Sing)", - "id": "pxUPijSJFCQ" - }, - { - "title": "Ben Folds - Landed (Karaoke)", - "id": "HZaEf9COt3c" - }, - { - "title": "Mario Lanza - Be My Love (Karaoke)", - "id": "1RJUUrWMDqc" - }, - { - "title": "Blindside - Pitiful (Karaoke)", - "id": "C0q7dtGcAEk" - }, - { - "title": "Dizzee Rascal, Armand Van Helden - Bonkers (Karaoke)", - "id": "EmHkp0JJBrM" - }, - { - "title": "Athlete - Superhuman Touch (Karaoke)", - "id": "ImfmliKhqmo" - }, - { - "title": "Jay & The Americans - She Cried (Karaoke)", - "id": "hm7q9BRnfnU" - }, - { - "title": "Blindside - Sleepwalking (Karaoke)", - "id": "h3QLHTRCErA" - }, - { - "title": "Fine Young Cannibals - Johnny Come Home (Karaoke EZ Sing)", - "id": "liQcdTtncUc" - }, - { - "title": "Alison Krauss - A Living Prayer (Karaoke)", - "id": "FeejJaoatvU" - }, - { - "title": "Traditional Irish - A Bunch Of Thyme (Karaoke)", - "id": "NGegQWitLOc" - }, - { - "title": "Selena Gomez - Back To You (Karaoke)", - "id": "OZmnkMDOJm4" - }, - { - "title": "Glass Animals - Youth (Karaoke)", - "id": "y_VTJiGyR_8" - }, - { - "title": "Gospel - Southern - Feelin' Mighty Fine (Karaoke)", - "id": "54pI1oqsit4" - }, - { - "title": "The Isaacs - From The Depths Of My Heart (Karaoke)", - "id": "yLeqrGfaZy8" - }, - { - "title": "Irish - Traditional - Galway Bay (Karaoke)", - "id": "7jsnp_R-dYw" - }, - { - "title": "Lewis Capaldi ftg Jessie Reyez - Rush (Karaoke EZ Sing)", - "id": "_z5Se8n_yas" - }, - { - "title": "Gospel - Southern - At The Cross (Karaoke)", - "id": "qmDAKMIapEk" - }, - { - "title": "Britt Nicole - Pave (Karaoke)", - "id": "tp_D9IM2m9o" - }, - { - "title": "Dallas Holmes - Rise Again (Karaoke)", - "id": "CaoYMFmVhG0" - }, - { - "title": "Children's Favorites - Oh Where, Oh Where Has My Little Dog Gone (Karaoke)", - "id": "_L33SUgreC8" - }, - { - "title": "Children's Fun Songs - Animal Fair (Karaoke)", - "id": "ASRyHHWb8rU" - }, - { - "title": "Tom Waits - Grapefruit Moon (Karaoke EZ Sing)", - "id": "SomGSs1ENOM" - }, - { - "title": "Tom Waits - Tom Traubert's Blues (Karaoke EZ Sing)", - "id": "oAUoHudxAPs" - }, - { - "title": "Children's Favorites - Little White Duck (Karaoke)", - "id": "DZDvpfsrWM8" - }, - { - "title": "Fka Twigs - Two Weeks (Karaoke EZ Sing)", - "id": "kRvQdeNJaDk" - }, - { - "title": "Tears For Fears - Pale Shelter (Karaoke EZ Sing)", - "id": "xMaiUIf4a18" - }, - { - "title": "Hunter Hayes - You Think You Know Somebody (Karaoke)", - "id": "3humYi9VGF0" - }, - { - "title": "Reba McEntire - Why Do We Want (What We Know We Canโ€™t Have) (Karaoke)", - "id": "AACJVrkzmhk" - }, - { - "title": "Richard Marx - Hazard (Karaoke)", - "id": "7Hn0Z3NBumA" - }, - { - "title": "Fleetwood Mac - Man Of The World (Karaoke EZ Sing)", - "id": "5SSymiuiI8E" - }, - { - "title": "Melissa Etheridge - If I Wanted To (Karaoke EZ Sing)", - "id": "T0ESBW038kk" - }, - { - "title": "Orchestral Manoeuvres In The Dark - Enola Gay (Karaoke)", - "id": "hodYUPbvm48" - }, - { - "title": "New Radicals - You Get What You Give (Karaoke)", - "id": "1BbXO-7GhTo" - }, - { - "title": "Moloko - Sing It Back (Karaoke)", - "id": "7Ct2VOS2Sb0" - }, - { - "title": "Garth Brooks - Same Old Story (Karaoke)", - "id": "UaI5rUC5oYs" - }, - { - "title": "Children's Fun Songs - Ring Around The Rosey (Karaoke)", - "id": "jC8LhIXyiUI" - }, - { - "title": "Children's Favorites - Here We Go 'Round The Mulberry Bush (Karaoke)", - "id": "REktHyLF7Rg" - }, - { - "title": "Children's Favorites - Blow The Man Down (Karaoke)", - "id": "n16PZDxc5DM" - }, - { - "title": "Children's Fun Songs - Camptown Races (Karaoke)", - "id": "hzYM9WUciUY" - }, - { - "title": "Children's Fun Songs - She'll Be Coming 'Round The Mountain (Karaoke)", - "id": "voUIEgDHNMY" - }, - { - "title": "Children's Favorites - Sailing Sailing (Karaoke)", - "id": "FDJkq3KRl8s" - }, - { - "title": "Children's Favorites - On Top Of Old Smoky (Karaoke)", - "id": "GXb-Z_l3chM" - }, - { - "title": "Children's Favorites - B-I-N-G-O (Karaoke)", - "id": "esHOvD_7JfE" - }, - { - "title": "Children's Fun Songs - Frere Jaques (Karaoke)", - "id": "jKbnlSyDsjk" - }, - { - "title": "Children's Fun Songs - Shortnin' Bread (Karaoke)", - "id": "cS1FEYH0cOk" - }, - { - "title": "Children's Fun Songs - Here We Go Loopty Loo (Karaoke)", - "id": "cW2IipABxHw" - }, - { - "title": "Glass Animals - Agnes (Karaoke)", - "id": "xWON-8rJmqM" - }, - { - "title": "Children's Fun Songs - Skip To My Lou (Karaoke)", - "id": "FkZI1b-v8Vk" - }, - { - "title": "Children's Fun Songs - Grandfather's Clock (Karaoke)", - "id": "7HONSSQlK4w" - }, - { - "title": "Texas - I Don't Want A Lover (Karaoke)", - "id": "0V0eYVS4boM" - }, - { - "title": "Children's Fun Songs - Shoo Fly (Karaoke)", - "id": "MBR5H5Ey7_c" - }, - { - "title": "Phil Collins - Something Happened On The Way To Heaven (Karaoke)", - "id": "HGcTp_vqmAc" - }, - { - "title": "Children's Nursery Rhymes - Polly Wolly Doodle (Karaoke)", - "id": "RdEyNtdqca4" - }, - { - "title": "Wet Wet Wet - Goodnight Girl (Karaoke)", - "id": "tmU-33bMcfk" - }, - { - "title": "Children's Nursery Rhymes - Hot Cross Buns (Karaoke)", - "id": "-6A8onVe8-o" - }, - { - "title": "Children's Nursery Rhymes - Row Row Your Boat (Karaoke)", - "id": "t_Zk4MT_z7s" - }, - { - "title": "Children's Nursery Rhymes - Rock-A-Bye-Baby (Karaoke)", - "id": "iy1optPqR5g" - }, - { - "title": "Children's Nursery Rhymes - This Old Man (Knick-Knack Paddy Whack) (Karaoke)", - "id": "Ly0tyDXoy4A" - }, - { - "title": "Children's Nursery Rhymes - Baa Baa Black Sheep (Karaoke)", - "id": "y2boARGsNU8" - }, - { - "title": "Children's - Brahm's Lullaby (Karaoke)", - "id": "hSMfxhAzbsM" - }, - { - "title": "Children's Favorites - London Bridge (Karaoke)", - "id": "P3f6384v4ys" - }, - { - "title": "Alan Jackson - Mercury Blues (Karaoke)", - "id": "-mwRKMBauRE" - }, - { - "title": "Gospel - Southern - When We All Get To Heaven (Karaoke)", - "id": "PAxJt2op8II" - }, - { - "title": "Gospel - Southern - When The Roll Is Called Up Yonder (Karaoke)", - "id": "jbZUG-BaChU" - }, - { - "title": "Simply Red - For Your Babies (Karaoke EZ Sing)", - "id": "RDneQFxxRGQ" - }, - { - "title": "The Kooks - You Don't Love Me (Karaoke)", - "id": "josqL8LQ8DE" - }, - { - "title": "The Kooks - Naรฏve (Karaoke)", - "id": "PW2KqcKgujs" - }, - { - "title": "The Kooks - Ooh La (Karaoke)", - "id": "PKp5xtJchFg" - }, - { - "title": "U2, Green Day - The Saints Are Coming (Karaoke)", - "id": "YVPoE_-1apg" - }, - { - "title": "Gospel - Southern - I Feel Like Traveling On (Karaoke)", - "id": "Z6koyLxZTVo" - }, - { - "title": "Traditional Gospel - Daddy Sang Bass (Karaoke)", - "id": "PdcNT7Xvdbg" - }, - { - "title": "One Night Only - Just For Tonight (Karaoke)", - "id": "JrKVXZKQR3I" - }, - { - "title": "Florence + The Machine - Kiss With A Fist (Karaoke)", - "id": "Jvuo9QU_ACQ" - }, - { - "title": "Florence + The Machine - Third Eye (Karaoke)", - "id": "hxeraPjF-dM" - }, - { - "title": "Greta Van Fleet - Meet On The Ledge (Karaoke)", - "id": "jKGoPdHTZ6U" - }, - { - "title": "Moloko - Pure Pleasure Seeker (Karaoke)", - "id": "s5UvNIYjqYI" - }, - { - "title": "James Ingram - One Hundred Ways (Karaoke)", - "id": "Rc-RL1r3768" - }, - { - "title": "The Kooks - Shine On (Karaoke)", - "id": "TsbMt-wr29M" - }, - { - "title": "Coheed and Cambria - A Favor House Atlantic (Karaoke)", - "id": "DriodM7TNcA" - }, - { - "title": "Melissa Etheridge - I Run For Life (Karaoke EZ Sing)", - "id": "GP7_Clg5VXg" - }, - { - "title": "Bobby Darin - This Could Be The Start Of Something Big (Karaoke)", - "id": "6r75EEpGm5A" - }, - { - "title": "Aaron Watson - Outta Style (Karaoke)", - "id": "XYamW9Zf4Ew" - }, - { - "title": "Oh Wonder - Ultralife (Karaoke)", - "id": "STcGu4gtQXE" - }, - { - "title": "Billy Joel - River Of Dreams (Karaoke)", - "id": "IM3_92yLJ00" - }, - { - "title": "Dreamers - Sweet Disaster", - "id": "BQB5eUdbgWU" - }, - { - "title": "Harry Styles - Sweet Creature (Karaoke)", - "id": "Z42mL-RpSr0" - }, - { - "title": "Lisa Stansfield - Change (Karaoke)", - "id": "cPauoIYuURc" - }, - { - "title": "Jon Secada - Angel (Karaoke)", - "id": "xh0zykfdxNQ" - }, - { - "title": "Johnny Horton - All For The Love Of A Girl (Karaoke)", - "id": "zlUhNdDS0xE" - }, - { - "title": "Joe - All The Things (Your Man Wonโ€™t Do) (Karaoke)", - "id": "k6yJfzqku2w" - }, - { - "title": "Sting - Angel Eyes (Karaoke)", - "id": "Y44lJEpgHR8" - }, - { - "title": "The Beautiful South - Rotterdam (Karaoke)", - "id": "8Q_UqdRAG_k" - }, - { - "title": "The Spencers - We Shall Meet (Karaoke)", - "id": "YWkywZDZr0s" - }, - { - "title": "Lighthouse Family - High (Karaoke)", - "id": "ExeZVXE7BpU" - }, - { - "title": "Dwight Yoakam - A Thousand Miles From Nowhere (Karaoke)", - "id": "LqdMya_b9Ew" - }, - { - "title": "ERA - Ameno (Karaoke)", - "id": "OY-9vfNW7aA" - }, - { - "title": "Trisha Yearwood - Down On My Knees (Karaoke)", - "id": "M4QmbWdrdSY" - }, - { - "title": "Tal Bachman - She's So High (Karaoke)", - "id": "qskz3E9n5OM" - }, - { - "title": "Mickey Gilley - O' Little Town Of Bethlehem (Karaoke)", - "id": "PzajXz7cpKQ" - }, - { - "title": "Heart - Barracuda (Acoustic Live) (Karaoke)", - "id": "qeADMHiA9cs" - }, - { - "title": "Crystal Gayle - What Child Is This? (Karaoke)", - "id": "a59Fj98i50c" - }, - { - "title": "The Grass Roots - Let's Live For Today (Karaoke)", - "id": "FUIH8x3Q5IE" - }, - { - "title": "Melissa Manchester - Don't Cry Out Loud (Karaoke)", - "id": "emkZJCE9Fnw" - }, - { - "title": "Alvin Stardust - Pretend (Karaoke)", - "id": "wJLy52nla9E" - }, - { - "title": "McBride And The Ride - Love On The Loose, Heart On The Run (Karaoke)", - "id": "6sl9SGZZTRE" - }, - { - "title": "M2M - Everything You Do (Karaoke)", - "id": "dCWjC-l7vkQ" - }, - { - "title": "Lee Roy Parnell - Tender Moment (Karaoke)", - "id": "Vtn5W6i-kGM" - }, - { - "title": "Suzy Bogguss - Lovin' A Hurricane (Karaoke)", - "id": "LIDHg9gpdTs" - }, - { - "title": "Steve Wariner - Like A River To The Sea (Karaoke)", - "id": "DNSmlp2-O3o" - }, - { - "title": "Clint Black - When My Ship Comes In (Karaoke)", - "id": "7x2wZ2I577Y" - }, - { - "title": "Nine Inch Nails - Head Like A Hole (Acoustic Goth) (Karaoke)", - "id": "Fltcqql1Ir8" - }, - { - "title": "Maximo Park - Apply Some Pressure (Karaoke)", - "id": "W451wKtSbxk" - }, - { - "title": "Tanya Tucker - Can't Run From Yourself (Karaoke)", - "id": "FxIrmLURy2g" - }, - { - "title": "Dreamgirls - I Am Changing (Karaoke)", - "id": "2XuMp7mwGfI" - }, - { - "title": "Jimmy Buffett - Christmas Island (Karaoke)", - "id": "MJEOzAG7U8g" - }, - { - "title": "Tanya Tucker - Danger Ahead (Karaoke)", - "id": "Y3YfIdjeJ6E" - }, - { - "title": "Roxy Music - Do The Strand (Karaoke)", - "id": "QnW1kqQgn1A" - }, - { - "title": "Kaiser Chiefs - Everything Is Average Nowadays (Karaoke)", - "id": "pl0QIQgmdsE" - }, - { - "title": "Stereophonics - Bank Holiday Monday (Karaoke)", - "id": "QyCl80SmeKs" - }, - { - "title": "Maximo Park - Books From Boxes (Karaoke)", - "id": "OWAexYP7VxI" - }, - { - "title": "Suzy Bogguss - Drive South (Karaoke)", - "id": "Y24ddc4SWwA" - }, - { - "title": "The Holloways - Generator (Karaoke)", - "id": "8h2WVnt7waw" - }, - { - "title": "Kansas - All I Wanted (Karaoke)", - "id": "KyYKVBE9PbY" - }, - { - "title": "Robyn - Be Mine (Karaoke)", - "id": "g54HvGBXbSM" - }, - { - "title": "Terence Trent D'Arby - Wishing Well (Karaoke)", - "id": "26dVnDdF6ME" - }, - { - "title": "Noah And The Whale - 5 Years Time (Five Years Time) (Karaoke)", - "id": "i926ghixy6s" - }, - { - "title": "Stereophonics - Dakota (You Make Me Feel Like The One) (Karaoke)", - "id": "UepUQ_hU-Ek" - }, - { - "title": "Billy Ocean - When The Going Gets Tough (Karaoke)", - "id": "2ivSfW2EXVQ" - }, - { - "title": "Kaiser Chiefs - Everyday I Love You Less And Less (Karaoke)", - "id": "4b-n6suKr0Y" - }, - { - "title": "Franz Ferdinand - Do You Want To (Karaoke)", - "id": "t1wiaaSBfAQ" - }, - { - "title": "Barbra Streisand & Don Johnson - Till I Loved You ( Karaoke)", - "id": "0-JYkIaxAOE" - }, - { - "title": "Joan Osborne - Crazy Baby (Karaoke)", - "id": "BlqmX0aKg98" - }, - { - "title": "Richard Marx - Satisfied (Karaoke)", - "id": "6XSHY8c9aEM" - }, - { - "title": "Chicago - Look Away (Karaoke)", - "id": "sZrFQXN3J74" - }, - { - "title": "Pat Benatar - All Fired Up (Karaoke)", - "id": "BDBYZ2dGF98" - }, - { - "title": "Keith Whitley - Heartbreak Highway (Karaoke)", - "id": "e5Zimmre58E" - }, - { - "title": "Earl Thomas Conley - Bring Back Your Lovin' To Me (Karaoke)", - "id": "vHhQbzS4-xU" - }, - { - "title": "Tennessee Ernie Ford - Hey Mr. Cottonpicker (Karaoke)", - "id": "rd-KUvLyw8g" - }, - { - "title": "DJ Jazzy Jeff & The Fresh Prince - A Nightmare On My Street (Karaoke)", - "id": "ORmk8gDg4fA" - }, - { - "title": "Snow Patrol - Crack The Shutters (Karaoke)", - "id": "ZgpnKbXhEEQ" - }, - { - "title": "The All-American Rejects - My Paper Heart (Karaoke)", - "id": "p6xYJMZe77k" - }, - { - "title": "John Holt - TheTide Is High (Karaoke)", - "id": "2DXSaFZa8fE" - }, - { - "title": "The Smithereens - A Girl Like You (Karaoke)", - "id": "P4kwz1T95UY" - }, - { - "title": "Lyle Lovett - I Loved You Yesterday (Karaoke)", - "id": "L1ZbT5oSfhw" - }, - { - "title": "Sheena Easton - Modern Girl (Karaoke)", - "id": "XvmN6iLUmWM" - }, - { - "title": "Robert Palmer - Early In The Morning (Karaoke)", - "id": "893l4Zyr7zM" - }, - { - "title": "Nat King Cole - Pretend (Karaoke)", - "id": "QzsRm0NZw7M" - }, - { - "title": "The Beach Boys - Surfer Girl (Karaoke)", - "id": "YlX4mZN2Vig" - }, - { - "title": "Larry Stewart - Fantasy (Karaoke)", - "id": "jAh_FX29_YA" - }, - { - "title": "Franz Ferdinand - Can't Stop Feeling (Karaoke)", - "id": "CrHCHyeSTXQ" - }, - { - "title": "Robyn - Dancing On My Own (Karaoke)", - "id": "-4c_ge1UZ68" - }, - { - "title": "The Association - Along Comes Mary (Karaoke)", - "id": "UXAMaZqT6lY" - }, - { - "title": "Peter Allen - Fly Away (Karaoke)", - "id": "qAy_g6Y-Ypg" - }, - { - "title": "Chubby Checker - Slow Twistin' (Karaoke)", - "id": "_87KbcJqToE" - }, - { - "title": "Poison - Fallen Angel (Karaoke)", - "id": "YNu27BM1EHQ" - }, - { - "title": "Glen Campbell - More Than Enough (Karaoke)", - "id": "mXurV_3sDIQ" - }, - { - "title": "Elton John - I Don't Want To Go On With You Like That (Karaoke)", - "id": "SemUkL_lDbg" - }, - { - "title": "Half Moon Run - Full Circle (Karaoke EZ Sing)", - "id": "hrt6_ZdLoXM" - }, - { - "title": "Johnny O'Keefe - She Wears My Ring (Karaoke)", - "id": "MRKrLNmdiJQ" - }, - { - "title": "Years & Years - Desire (Karaoke)", - "id": "3oMlmCxqtqg" - }, - { - "title": "Alessia Cara - How Far I'll Go (Karaoke)", - "id": "pbh3L8iEc1A" - }, - { - "title": "Auli'i Cravalho - How Far I'll Go (Karaoke)", - "id": "gwQHfnWoRrI" - }, - { - "title": "CeCe Peniston - Finally (Karaoke)", - "id": "TH8Aa7Ha9r8" - }, - { - "title": "Del Amitri - Always The Last To Know (Karaoke)", - "id": "aQLKn5gD2Is" - }, - { - "title": "Crash Test Dummies - Afternoons And Coffeespoons (Karaoke)", - "id": "F6wpl8CjZ2E" - }, - { - "title": "Aaliyah - Age Ain't Nothing But A Number (Karaoke)", - "id": "cXQWuqV4GYE" - }, - { - "title": "Edwyn Collins - A Girl Like You (Karaoke)", - "id": "Njn9EB-wcl0" - }, - { - "title": "D' Angelo - Brown Sugar (Karaoke)", - "id": "fNkWGYymdOY" - }, - { - "title": "Boyzone - All That I Need (Karaoke)", - "id": "Cdk9FosiXEI" - }, - { - "title": "The Specials - A Message To You Rudy (Karaoke)", - "id": "cDZvwai1Fqs" - }, - { - "title": "Aaron Carter - Aaron's Party (Come Get It) (Karaoke)", - "id": "MmedurRyMlY" - }, - { - "title": "Mickey & Sylvia - Love Is Strange (Karaoke)", - "id": "B231-pStpGQ" - }, - { - "title": "Blue - Breathe Easy (Karaoke)", - "id": "Yz4PyWl2Tn4" - }, - { - "title": "Keane - A Bad Dream", - "id": "cDlG7CePraI" - }, - { - "title": "Diana Krall - Devil May Care (Karaoke)", - "id": "kwkpvU0VXYI" - }, - { - "title": "Stereophonics - My Friends (Karaoke)", - "id": "JDINHztrnR4" - }, - { - "title": "Keane - Better Than This (Karaoke)", - "id": "29goM9UPnWg" - }, - { - "title": "T. Rex - Metal Guru (Karaoke)", - "id": "58hC7785spw" - }, - { - "title": "Aaliyah - I Can Be (Karaoke)", - "id": "OpFPG-f_WYk" - }, - { - "title": "Wynonna - A Little Bit Of Love (Goes A Long, Long Way) (Karaoke)", - "id": "OSg5hruo858" - }, - { - "title": "McBride And The Ride - Going Out Of My Mind (Karaoke)", - "id": "pBm2hxTNXwI" - }, - { - "title": "Radney Foster - Just Call Me Lonesome (Karaoke)", - "id": "QGgJEROAmlA" - }, - { - "title": "Clint Black - We Tell Ourselves (Karaoke)", - "id": "f22WtpoX3zg" - }, - { - "title": "Cรฉline Dion - Nothing Broken But My Heart (Karaoke)", - "id": "VpCy-lqFjx8" - }, - { - "title": "Marty Stuart - This One's Gonna Hurt You (Karaoke)", - "id": "ezs1GZM45zM" - }, - { - "title": "Lee Roy Parnell - What Kind Of Fool Do You Think I Am (Karaoke)", - "id": "zVC0h18JaaQ" - }, - { - "title": "Tracy Lawrence - Running Behind (Karaoke)", - "id": "Qs4ErLGXx3M" - }, - { - "title": "Dolly Parton, Emmylou Harris & Linda Ronstadt - Making Plans (Karaoke)", - "id": "0WksOdEwsy4" - }, - { - "title": "Ozzy Osbourne - Shot In The Dark (Karaoke)", - "id": "Vf9FM8cY6uw" - }, - { - "title": "Holly Dunn - No Love Have I (Karaoke)", - "id": "zWn75QfZEgM" - }, - { - "title": "Clint Black - This Nightlife (Karaoke)", - "id": "Sgb7XuTHi88" - }, - { - "title": "Celine Dion & Peabo Bryson - Beauty And The Beast (Karaoke)", - "id": "W5R0lrn7WRM" - }, - { - "title": "Dolly Parton - Straight Talk (Karaoke)", - "id": "cuNSTrO-zNM" - }, - { - "title": "Laura Branigan - Don't Show Your Love (Karaoke)", - "id": "ko5BuU6cu28" - }, - { - "title": "Belinda Carlisle - Circle In The Sand (Karaoke)", - "id": "GtBtTiYAS78" - }, - { - "title": "Alison Krauss & Union Station - I've Got That Old Feeling (Karaoke)", - "id": "iyUsuFyGBMQ" - }, - { - "title": "Pam Tillis - Maybe It Was Memphis (Karaoke)", - "id": "z8aH-r7JdAU" - }, - { - "title": "Roberta Flack & Maxi Priest - Set The Night To Music (Karaoke)", - "id": "fz-0d_2CrmA" - }, - { - "title": "Richard Marx - Endless Summer Nights (Karaoke)", - "id": "5wZT0UlRVI4" - }, - { - "title": "Aaliyah - I Refuse (Karaoke)", - "id": "yrMdocP1e5k" - }, - { - "title": "Jim Croce - Workin' At The Car Wash Blues (Karaoke)", - "id": "5SW0tSr5F8Q" - }, - { - "title": "Randy Travis - Honky Tonk Moon (Karaoke)", - "id": "Y-zEVBXkLIQ" - }, - { - "title": "Aaliyah - Never No More (Karaoke)", - "id": "n9ZYBCzJgGs" - }, - { - "title": "T. Rex - Telegram Sam (Karaoke)", - "id": "nx089bRUBoo" - }, - { - "title": "Garth Brooks - Shameless (Karaoke)", - "id": "2wQ-YA5xzhg" - }, - { - "title": "Powerman 5000 - Mega Kung Fu Radio (Karaoke)", - "id": "A5tEFtbAH9U" - }, - { - "title": "Larry Verne - Mr. Custer (Karaoke)", - "id": "4wl9duq-ceA" - }, - { - "title": "The Who - You Better Bet (Karaoke)", - "id": "I7H_oVnBMoc" - }, - { - "title": "Chicago - Does Anybody Really Know What Time It Is (Karaoke)", - "id": "o0p6iGJllSM" - }, - { - "title": "Brownsville Station - Smokin' In The Boys Room (Karaoke)", - "id": "1kIm0Y30BY4" - }, - { - "title": "Joan Jett & The Blackhearts - Fetish (Karaoke)", - "id": "5p6NcvfEy_8" - }, - { - "title": "Chicago - I've Been Searching So Long (Karaoke)", - "id": "9cy34pPSjRA" - }, - { - "title": "Rick Astley - Hold Me In Your Arms (Karaoke)", - "id": "EBQ-g74gV0Q" - }, - { - "title": "Conway Twitty - I've Never Seen The Likes Of You (Karaoke)", - "id": "m53JO4xF3u4" - }, - { - "title": "Rihanna - P.S. (I'm Still Not Over You) (Karaoke)", - "id": "tK1WHZqHGLQ" - }, - { - "title": "Robert DeLong - Happy (Karaoke)", - "id": "RvcGfn_5vRw" - }, - { - "title": "T-Pain - Sho-Time (Pleasure Thang) (Karaoke)", - "id": "34HCUYwXKiU" - }, - { - "title": "The Cure - Wrong Number (Karaoke)", - "id": "IEW270bKKIY" - }, - { - "title": "Whitney Houston - Just The Lonely Talking Again (Karaoke)", - "id": "PBHY03XWJWs" - }, - { - "title": "Bell Biv DeVoe - Do Me (Karaoke)", - "id": "Xpk1t5UuK80" - }, - { - "title": "Jimmy Buffett - Pencil Thin Moustache", - "id": "Dyk02R_04hw" - }, - { - "title": "La Roux - In For The Kill (Karaoke)", - "id": "GdN6dQ9y9Ok" - }, - { - "title": "Coheed and Cambria - Blood Red Summer (Karaoke)", - "id": "fQd0gsc7QME" - }, - { - "title": "Imelda May - Mayhem (Karaoke)", - "id": "2dKCcxnax6I" - }, - { - "title": "Urban Christmas - O' Holy Night (Karaoke)", - "id": "44PerbPUoEg" - }, - { - "title": "The Commitments - Take Me To The River (Karaoke)", - "id": "F2I5bIdkUvo" - }, - { - "title": "Birds Of Tokyo - Plans (Karaoke)", - "id": "Et-xo6E11CU" - }, - { - "title": "Traditional Christmas Songs - Good Christian Men Rejoice (Karaoke)", - "id": "HFjFCYzuMS0" - }, - { - "title": "Ash - A Life Less Ordinary (Karaoke)", - "id": "vreLa5pf21U" - }, - { - "title": "Scouting For Girls - Love How It Hurts (Karaoke)", - "id": "Slg6vEQVw14" - }, - { - "title": "Alanis Morissette - Joining You (Karaoke)", - "id": "MyZGFgri6ts" - }, - { - "title": "Alanis Morissette - So Pure (Karaoke)", - "id": "vU7a1-4xcac" - }, - { - "title": "The Hollies - Carrie-Anne (Karaoke)", - "id": "oA4KQJWp7gA" - }, - { - "title": "The Four Tops - Walk Away Renee (Karaoke)", - "id": "sk-P6s9RVj4" - }, - { - "title": "Scorpions - Wind Of Change (Karaoke)", - "id": "LgUhIf-UNWM" - }, - { - "title": "Frank Sinatra - All Or Nothing At All (Karaoke)", - "id": "ZxtGsT5rAf0" - }, - { - "title": "Glass Animals - Pork Soda (Karaoke)", - "id": "8ikT7rdIjsc" - }, - { - "title": "Dolly Parton - Take Me Back To The Country (Karaoke)", - "id": "9Ol9t6mVl4I" - }, - { - "title": "Dinah Washington - What A Difference A Day Makes (Karaoke)", - "id": "ibipcRhpVXs" - }, - { - "title": "Taylor Dayne - Don't Rush Me (Karaoke)", - "id": "tenKHzkdL30" - }, - { - "title": "Marty Stuart - Tempted (Karaoke)", - "id": "aSNc13jvHxk" - }, - { - "title": "Don Ho - Tiny Bubbles (Karaoke)", - "id": "kINN-cqOQrQ" - }, - { - "title": "Rick Springfield - Affair Of The Heart (Karaoke)", - "id": "VVF_8pYbfl8" - }, - { - "title": "Gregory Porter - Real Good Hands (Karaoke EZ Sing)", - "id": "-torYsdf6lg" - }, - { - "title": "Dolly Parton - Time For Me To Fly (Karaoke)", - "id": "xk7An_uDG1Q" - }, - { - "title": "Dreamgirls - Hard To Say Goodbye, My Love (Karaoke)", - "id": "YQnzXnMT6pQ" - }, - { - "title": "Robbie Williams - Advertising Space (Karaoke)", - "id": "XRqsbk3zxsk" - }, - { - "title": "MUNA - Loudspeaker (Karaoke)", - "id": "QUb8eW6qa9Y" - }, - { - "title": "Rick Springfield - Don't Talk To Strangers (Karaoke)", - "id": "ssR1RNxdBso" - }, - { - "title": "Dreamgirls - Dreamgirls (Karaoke)", - "id": "XpWJi_qWcro" - }, - { - "title": "General Public - Tenderness (Karaoke)", - "id": "quZBFp1Qtpk" - }, - { - "title": "Mondo Cozmo - Shine (Karaoke)", - "id": "nvDrPoKAfJ4" - }, - { - "title": "Jim Croce - One Less Set Of Footsteps (Karaoke)", - "id": "pQKTnnZ61TE" - }, - { - "title": "Living Colour - Cult Of Personality (Karaoke)", - "id": "5lfEia3xoe8" - }, - { - "title": "The SUperman Lovers - Starlight (Karaoke)", - "id": "cAdtBahhBM0" - }, - { - "title": "Southern Gospel - Old Time Way (Karaoke)", - "id": "E1sOqh940H8" - }, - { - "title": "Clint Black - Where Are You Now (Karaoke)", - "id": "yZOl27UuACM" - }, - { - "title": "Dwight Yoakam - I Sang Dixie (Karaoke)", - "id": "GPr6rZ_i2mc" - }, - { - "title": "Glasvegas - Daddy's Gone (Karaoke)", - "id": "JEJOR_b_MYQ" - }, - { - "title": "Saliva - After Me (Karaoke)", - "id": "Ipq59WV3K3U" - }, - { - "title": "Al Green - Sha La La (Make Me Happy) (Karaoke)", - "id": "xDoG3HG-38A" - }, - { - "title": "Brenda Lee - Fool Number One (Karaoke)", - "id": "tmOhfDM6-rI" - }, - { - "title": "Rick Astley - Keep Singing (Karaoke)", - "id": "RMmqnm21YRc" - }, - { - "title": "K.T. Oslin - 80's Ladies (Karaoke)", - "id": "iYcUNsdmCHg" - }, - { - "title": "Keane - Silenced By The Night (Karaoke)", - "id": "jBrxisk-4ws" - }, - { - "title": "JJ Cale - Call Me The Breeze (Karaoke)", - "id": "h8Chnfl8-0E" - }, - { - "title": "Dreamgirls - One Night Only (Karaoke)", - "id": "EkiQJz-P_00" - }, - { - "title": "Vaults - One Day I'll Fly Away (Karaoke)", - "id": "5tr7hvkdn4o" - }, - { - "title": "Kenny Rogers - For The Good Times (Karaoke)", - "id": "dCcAk9TEgFo" - }, - { - "title": "Lisa Stansfield - All Around The World (Karaoke)", - "id": "sZ-etpAiluA" - }, - { - "title": "Basia - Time And Tide (Karaoke)", - "id": "5fzG-urkdiM" - }, - { - "title": "Right Said Fred - Don't Talk Just Kiss (Karaoke)", - "id": "guCORQxpQdc" - }, - { - "title": "Randy Travis - Old 8 X 10 (Karaoke)", - "id": "Sj_VkHLlKTc" - }, - { - "title": "Esther Phillips - What A Difference A Day Makes (Karaoke)", - "id": "upa4ZQnOZj0" - }, - { - "title": "Lisa Stansfield - All Woman (Karaoke)", - "id": "He1CLocMldg" - }, - { - "title": "Bad English - When I See You Smile (Karaoke)", - "id": "Ex_EEVtOp-0" - }, - { - "title": "Jim Croce - I'll Have To Say I Love You In A Song (Karaoke)", - "id": "UVbem3cfAZ4" - }, - { - "title": "Tony! Toni! Tonรฉ! - (Lay Your Head On My) Pillow (Karaoke)", - "id": "yNmhixmkibs" - }, - { - "title": "Captain & Tennille - Do That To Me One More Time (Karaoke)", - "id": "mm8V80sXJSA" - }, - { - "title": "The Gap Band - Burn Rubber On Me (Karaoke)", - "id": "J98rHxv39rg" - }, - { - "title": "The Gap Band - Outstanding (Karaoke)", - "id": "shHty6Av4SQ" - }, - { - "title": "Metric - Help I'm Alive (Karaoke)", - "id": "E6wQAL1OTGc" - }, - { - "title": "Metric - Black Sheep (Karaoke)", - "id": "VplDWXSHiEs" - }, - { - "title": "Metric - Gimme Sympathy (Karaoke)", - "id": "1qZpc6ymL98" - }, - { - "title": "Metric - Satellite Mind (Karaoke)", - "id": "LkyleHTZYfw" - }, - { - "title": "Jimmy Buffett - Gentleman Of Leisure (Karaoke)", - "id": "y5Dnkon-BPQ" - }, - { - "title": "Terence Trent D'Arby - Dance Little Sister (Karaoke)", - "id": "g5oBNwg4IFY" - }, - { - "title": "Engelbert Humperdinck - Ten Guitars (Karaoke)", - "id": "KGZa1eGE8A0" - }, - { - "title": "Belinda Carlisle - (We Want) The Same Thing (Karaoke)", - "id": "aAAA_X7uSGg" - }, - { - "title": "Steel Pulse - Roller Skates (Karaoke)", - "id": "JW9nW9n-cOc" - }, - { - "title": "Steel Pulse - Wild Goose Chase (Karaoke)", - "id": "k7mnRVKoPYU" - }, - { - "title": "Steel Pulse - Bodyguard (Karaoke)", - "id": "m7i8jbKaHFQ" - }, - { - "title": "Simply Red - The Right Thing (Karaoke)", - "id": "vN1Mf-REIW8" - }, - { - "title": "Terence Trent D'Arby - She Kissed Me (Karaoke)", - "id": "5fa4yytVdqs" - }, - { - "title": "Terence Trent D'Arby - Let Her Down Easy (Karaoke)", - "id": "TYfmtKHAZkI" - }, - { - "title": "T'Pau - China In Your Hand (Karaoke)", - "id": "7APMnYS0bW4" - }, - { - "title": "Aztec Camera - Somewhere In My Heart (Karaoke)", - "id": "AfbAjOrg_Lg" - }, - { - "title": "Skylar Grey - Closer (Karaoke)", - "id": "x5-3m18p6Hk" - }, - { - "title": "Skylar Grey - White Suburban (Karaoke)", - "id": "ZDWAxwvXghA" - }, - { - "title": "Clinton Gregory - One Shot At A Time (Karaoke)", - "id": "WFeIB6MoR-w" - }, - { - "title": "Midge Ure - If I Was (Karaoke)", - "id": "5d657K1yx8M" - }, - { - "title": "Mike Reid - As Simple As That (Karaoke)", - "id": "Ijiw6pHTAiw" - }, - { - "title": "Jann Browne - It Only Hurts When I Laugh (Karaoke)", - "id": "BL66PG9-6UE" - }, - { - "title": "George Strait - You Know Me Better Than That (Karaoke)", - "id": "FbksDRy3nW0" - }, - { - "title": "Kentucky Headhunters - With Body and Soul (Karaoke)", - "id": "DJb3KU5Jl7I" - }, - { - "title": "Highway 101 - Bing Bang Boom (Karaoke)", - "id": "0AkZnB7KiNg" - }, - { - "title": "Reba McEntire - Fallin' Out Of Love (Karaoke)", - "id": "7PMZSVJjb84" - }, - { - "title": "David Soul - Don't Give Up On Us (Karaoke)", - "id": "9utuqWyItgI" - }, - { - "title": "Michael Bolton - Completely (Karaoke)", - "id": "O0ITVglHOmk" - }, - { - "title": "Slaughter - Fly To The Angels (Karaoke)", - "id": "p8ZcuQe8lU8" - }, - { - "title": "Swing Out Sister - Breakout (Karaoke)", - "id": "tc80h9e_r4k" - }, - { - "title": "Winger - Can't Get Enuff (Karaoke)", - "id": "Habel-M3HQ8" - }, - { - "title": "ABC - All Of My Heart (Karaoke)", - "id": "McJ0P3aIKNY" - }, - { - "title": "Billy Joel - Keepin' The Faith (Karaoke)", - "id": "w_AOtfSNLhQ" - }, - { - "title": "Marina and the Diamonds - I Am Not A Robot (Karaoke)", - "id": "coh-R7kCDpE" - }, - { - "title": "Clint Black - One More Payment (Karaoke)", - "id": "G8Ol4EY7MUk" - }, - { - "title": "Jhene Aiko - The Pressure (Karaoke)", - "id": "ldlOlHr2zrE" - }, - { - "title": "Muna - Winterbreak (Karaoke EZ Sing)", - "id": "zxuru9KGNLU" - }, - { - "title": "Cher - Just Like Jesse James (Karaoke)", - "id": "JvaKV73ekug" - }, - { - "title": "East Side Beat - Ride Like The Wind (Karaoke)", - "id": "f2CHm0ZPPUE" - }, - { - "title": "Lawson - Money (Karaoke)", - "id": "13GVeB2BKmM" - }, - { - "title": "Orchestral Manoeuvres In The Dark - Pandora's Box (Karaoke)", - "id": "bNOtBY7BfYw" - }, - { - "title": "Mike Reid - Till You Were Gone (Karaoke)", - "id": "jvmXIbbHhd4" - }, - { - "title": "Sinitta - Hitchin' A Ride (Karaoke)", - "id": "1VEm-A0aXBg" - }, - { - "title": "Suzi Quatro - Devil Gate Drive (Karaoke)", - "id": "r68ZfyXW6es" - }, - { - "title": "Sister Sledge - Frankie (Karaoke)", - "id": "C-F5iVwW13s" - }, - { - "title": "Sam Brown - Stop (Karaoke)", - "id": "__E7nZ1WJb4" - }, - { - "title": "Breathe - Hands To Heaven (Karaoke)", - "id": "0TjPaaMT6Ak" - }, - { - "title": "Kim Wilde - You Came (Karaoke)", - "id": "RaYB5e0fBlw" - }, - { - "title": "UB40 - Many Rivers To Cross (Karaoke)", - "id": "HB2kS5c2j14" - }, - { - "title": "Millie Jackson - Loving Arms (Karaoke)", - "id": "jO16XiMXxCU" - }, - { - "title": "Madonna - Crazy For You (Karaoke)", - "id": "Opl9RxvpRJQ" - }, - { - "title": "Elaine Paige, Barbara Dickson - I Know Him So Well (Karaoke)", - "id": "TlEFt1i8IMk" - }, - { - "title": "Feargal Sharkey - A Good Heart (Karaoke)", - "id": "-hoi3WbBxzI" - }, - { - "title": "Waylon Jennings - You Asked Me To (Karaoke)", - "id": "_NK1eCsu48Q" - }, - { - "title": "Culture Club - Victims (Karaoke)", - "id": "KqQQ8z68x2U" - }, - { - "title": "Shelly West & David Frizzell - You're The Reason God Made Oklahoma (Karaoke)", - "id": "5H1urpzUFug" - }, - { - "title": "Tavares - Don't Take Away The Music (Karaoke)", - "id": "SC_LIwuc47Y" - }, - { - "title": "Tavares - Heaven Must Be Missing An Angel (Karaoke)", - "id": "apbGxm9N7OA" - }, - { - "title": "Randy Crawford - One Day I'll Fly Away (Karaoke)", - "id": "25qzVm4iAmQ" - }, - { - "title": "Jermaine Jackson - Do What You Do (Karaoke)", - "id": "jmikHOGbn8k" - }, - { - "title": "Del Amitri - Always The Last To Know (Karaoke)", - "id": "qmoUCh5icOM" - }, - { - "title": "Mickey Gilley - Don't The Girls All Get Prettier At Closing Time (Karaoke)", - "id": "392E7IXUxnw" - }, - { - "title": "Kathy Mattea - Love At The Five And Dime (Karaoke)", - "id": "GwApbh3M5YU" - }, - { - "title": "Carlene Carter - Come On Back (Karaoke)", - "id": "s2f8N20xTgA" - }, - { - "title": "Connie Smith - Once A Day (Karaoke)", - "id": "UhsxEJWqNCE" - }, - { - "title": "Ray Price - Invitation To The Blues (Karaoke)", - "id": "_pA6U4PShaA" - }, - { - "title": "Steve Wariner - Where Did I Go Wrong (Karaoke)", - "id": "uaSfTYBOJGg" - }, - { - "title": "Clint Black - Loving Blind (Karaoke)", - "id": "SzpPzJRVIE0" - }, - { - "title": "Lee Greenwood - We've Got It Made (Karaoke)", - "id": "NF3L5L5MnAU" - }, - { - "title": "Michael Damian - Rock On (Karaoke)", - "id": "2idIEYd25N8" - }, - { - "title": "Reba McEntire - Today All Over Again (Karaoke)", - "id": "9SCJ4MX3mGQ" - }, - { - "title": "Cyndi Lauper - The World Is Stone (Karaoke)", - "id": "carKMZD0574" - }, - { - "title": "Tina Turner - The Best (Karaoke)", - "id": "o2BtGmEgcQk" - }, - { - "title": "Diana Ross - One Shining Moment (Karaoke)", - "id": "RRqiOXRZRyo" - }, - { - "title": "Reba McEntire - Last One To Know, The (Karaoke)", - "id": "Po0AHhPoOVA" - }, - { - "title": "Don Williams - Turn Out The Light And Love Me Tonight (Karaoke)", - "id": "VDtRo-OSocM" - }, - { - "title": "Elvis Presley - Runaway (Karaoke)", - "id": "IURSXz2IiEQ" - }, - { - "title": "Sons Of The Pioneers - Tumbling Tumbleweeds (Karaoke)", - "id": "t8OEtO67T7Q" - }, - { - "title": "The Amazons - Junk Food Forever (Karaoke)", - "id": "Zjh0sYyUuFY" - }, - { - "title": "Elaine Paige - Heaven Help My Heart (Karaoke)", - "id": "b_PALTmP51c" - }, - { - "title": "Desert Rose Band - She Don't Love Nobody (Karaoke)", - "id": "y55BG0m6YQo" - }, - { - "title": "Loretta Lynn - I'm A Honky Tonk Girl (Karaoke)", - "id": "bwNpBkB-eII" - }, - { - "title": "Lee Roy Parnell - Family Tree (Karaoke)", - "id": "G_yEvWRafDk" - }, - { - "title": "George Jones - Walk Through This World With Me (Karaoke)", - "id": "sTlaTYZt4Cg" - }, - { - "title": "Roxette - Dressed For Success (Karaoke)", - "id": "FFolOOpEEbg" - }, - { - "title": "The Judds - Young Love (Karaoke)", - "id": "0ZCSsink5Gc" - }, - { - "title": "Paul Young - Softly Whispering I Love You (Karaoke)", - "id": "EYvJ3urweUU" - }, - { - "title": "Jesus Loves You - Bow Down Mister (Karaoke)", - "id": "-lxFRYhfY5A" - }, - { - "title": "Jim Croce - Lover's Cross (Karaoke)", - "id": "HiN55tO-zEw" - }, - { - "title": "Loretta Lynn & Conway Twitty - Feelins' (Karaoke)", - "id": "jtmPW4RxLho" - }, - { - "title": "Kenny Thomas - The Best Of You (Karaoke)", - "id": "fbPlABz35RY" - }, - { - "title": "East 17 - It's Alright (Karaoke)", - "id": "zgIRuMxpltQ" - }, - { - "title": "Reba McEntire - Till Love Comes Again (Karaoke)", - "id": "Y1WYoodKjrY" - }, - { - "title": "Barry Manilow - You're Lookin' Hot Tonight (Karaoke)", - "id": "aO6WTw5WlnE" - }, - { - "title": "Elvis Presley - It Is No Secret (What God Can Do) (Karaoke)", - "id": "7F9tP8_GPx8" - }, - { - "title": "Take That - It Only Takes A Minute (Karaoke)", - "id": "dlG6QFzUeNY" - }, - { - "title": "Loretta Lynn - You're Lookin' At Country (Karaoke)", - "id": "PujxRHA-XgI" - }, - { - "title": "Baillie & The Boys - A Fool Such As I (Karaoke)", - "id": "oUZOZjTr3dY" - }, - { - "title": "Traditional Christmas Songs - Ave Maria (Latin Catholic Prayer) (Karaoke)", - "id": "d-BlzCNqKVE" - }, - { - "title": "Clint Black - Put Yourself In My Shoes (Karaoke)", - "id": "bFRv5F05vSU" - }, - { - "title": "Sunscreem - Love U More (Karaoke)", - "id": "49WBVinpJK0" - }, - { - "title": "Marty Robbins - My Woman, My Woman, My Wife (Karaoke)", - "id": "2NFy9RLkOA4" - }, - { - "title": "Grace Jones - I'm Not Perfect (But I'm Perfect For You) (Karaoke)", - "id": "eoFDq66Z4lw" - }, - { - "title": "Rosanne Cash - What We Really Want (Karaoke)", - "id": "fuBwRbIx3TE" - }, - { - "title": "Michael Jackson - Man In The Mirror (Karaoke)", - "id": "LEVFI2aY-YU" - }, - { - "title": "Lee Greenwood - It Turns Me Inside Out (Karaoke)", - "id": "ljMBmXGpQ0E" - }, - { - "title": "Alice In Chains - Never Fade (Karaoke)", - "id": "d-2Hh78PuTE" - }, - { - "title": "Elmo & Patsy - Grandma Got Run Over By A Reindeer (Karaoke)", - "id": "hHszyxB8MAo" - }, - { - "title": "Reba McEntire - What Am I Gonna Do About You (Karaoke)", - "id": "Dn48k5l6-Co" - }, - { - "title": "Steve Wariner - There For Awhile (Karaoke)", - "id": "O71PXPsm7rQ" - }, - { - "title": "Marty Robbins - Devil Woman (Karaoke)", - "id": "BcBdBBHE2-A" - }, - { - "title": "Marty Robbins - Don't Worry (Karaoke)", - "id": "lsIVipd_Kao" - }, - { - "title": "Elvis Presley - C. C. Rider (Karaoke)", - "id": "_rTzyrvTLMc" - }, - { - "title": "Juice Newton - Sweetest Thing (I've Ever Known), The (Karaoke)", - "id": "LoBtKTKSC7g" - }, - { - "title": "Clint Black - Better Man (Karaoke)", - "id": "0n3XKXboTVY" - }, - { - "title": "Lorrie Morgan & Keith Whitley - Till A Tear Becomes A Rose (Karaoke)", - "id": "APUNc98VLOM" - }, - { - "title": "Kenny Rogers & Holly Dunn - Maybe (Karaoke)", - "id": "_FZb7m6y-K4" - }, - { - "title": "Loretta Lynn - Blue Kentucky Girl (Karaoke)", - "id": "60S_7gTeEIs" - }, - { - "title": "Monty Python - Always Look On The Bright Side Of Life (Karaoke)", - "id": "Jl5iMnIgxVU" - }, - { - "title": "Reel 2 Real - I Like To Move It (Karaoke)", - "id": "YrsAUWogwDI" - }, - { - "title": "Carpenters - Superstar (Karaoke)", - "id": "oMYBN6FSp38" - }, - { - "title": "Michael Bublรฉ - Fever (Karaoke)", - "id": "AqLo4j0pNrs" - }, - { - "title": "The Hollies - Long Cool Woman (In A Black Dress) (Karaoke)", - "id": "TuMWg9xRFN4" - }, - { - "title": "Seal - Kiss From A Rose (Karaoke)", - "id": "eh-FDqcNdhY" - }, - { - "title": "Jefferson Airplane - White Rabbit (Karaoke)", - "id": "1jR5qB3BAqk" - }, - { - "title": "Vanessa Williams - Colors Of The Wind (Karaoke)", - "id": "0FF9-gqdgfk" - }, - { - "title": "Carly Simon - Anticipation (Karaoke)", - "id": "MPnR2NnpXqo" - }, - { - "title": "The Cure - Love Cats (Karaoke)", - "id": "1BdCTPx7AeM" - }, - { - "title": "Grace Jones - Pull Up To The Bumper (Karaoke)", - "id": "6BFE6cEkSRk" - }, - { - "title": "Duffy - Rain On Your Parade (Karaoke)", - "id": "B6DIoXirw6s" - }, - { - "title": "Childish Gambino - Centipede (Karaoke)", - "id": "8xcuPz-ZjRM" - }, - { - "title": "REO Speedwagon - Can't Fight This Feeling (Karaoke)", - "id": "9pSNDIZFeDM" - }, - { - "title": "Toto - Rosanna (Karaoke)", - "id": "hfiOSqQ_WmQ" - }, - { - "title": "Shirley & Company - Shame, Shame, Shame (Karaoke)", - "id": "3ZCghpjzgss" - }, - { - "title": "Tavares - It Only Takes A Minute (Karaoke)", - "id": "t6VkUhDr0wY" - }, - { - "title": "Barry Manilow - Jump Shout Boogie (Karaoke)", - "id": "cwF3zmBj06c" - }, - { - "title": "The Jacksons - Blame It On The Boogie (Karaoke)", - "id": "aJlPviVXQjk" - }, - { - "title": "T. Rex - I Love To Boogie (Karaoke EZ Sing)", - "id": "TTKdYmDtAG4" - }, - { - "title": "The Sylvers - Boogie Fever (Karaoke)", - "id": "oErOvYLf5cc" - }, - { - "title": "Marcia Griffiths - Electric Boogie (Karaoke)", - "id": "rL9rBp0be58" - }, - { - "title": "Creedence Clearwater Revival - Fortunate Son (Karaoke)", - "id": "VEh9tS1jN5U" - }, - { - "title": "Eric Clapton - Tulsa Time (Karaoke)", - "id": "RJF6sTIrleY" - }, - { - "title": "Poison - Your Mama Don't Dance (Karaoke)", - "id": "YPpZQ6oKCEA" - }, - { - "title": "Culture Club - Time (Clock Of The Heart) (Karaoke)", - "id": "BIQh4b5owes" - }, - { - "title": "Elton John - Honky Cat (Karaoke EZ Sing)", - "id": "c4ZxixGhKms" - }, - { - "title": "Leon Russell - Tight Rope (Karaoke EZ Sing)", - "id": "qZ0C-ltDCcU" - }, - { - "title": "Elton John - Levon (Karaoke EZ Sing)", - "id": "oqmsvTxrvPc" - }, - { - "title": "Tangled (The Movie) - I've Got A Dream (Karaoke)", - "id": "4AaoUydR6Zw" - }, - { - "title": "Enchanted - That's How You Know (Karaoke EZ Sing)", - "id": "zTSOkJkTkvg" - }, - { - "title": "Steely Dan - Rikki Don't Lose That Number (Karaoke)", - "id": "K5ePVVlX84I" - }, - { - "title": "Billy Joel - Honesty (Karaoke)", - "id": "AllydQQdZIg" - }, - { - "title": "T-Pain - I'm Sprung (Karaoke)", - "id": "SdTyAA8i5C8" - }, - { - "title": "NeedToBreathe - Hard Love (Karaoke)", - "id": "jP1pr6EGDg8" - }, - { - "title": "Lupe Fiasco - Kick Push (Karaoke)", - "id": "fb2uCILebcc" - }, - { - "title": "Elton John - Daniel (Karaoke)", - "id": "kK0KH5tVvjQ" - }, - { - "title": "Imagine Dragons - Yesterday (Karaoke)", - "id": "aenN28Tk1FI" - }, - { - "title": "New Politics - Tonight You're Perfect (Karaoke)", - "id": "8TBOKruq8pU" - }, - { - "title": "Mondo Cozmo - Hold On To Me (Karaoke)", - "id": "zsxUdA1C3YY" - }, - { - "title": "Birds Of Tokyo - Lanterns (Karaoke)", - "id": "vzgWIv2jFrk" - }, - { - "title": "The Airborne Toxic Event - Timeless (Karaoke)", - "id": "iNrQD1qHOHY" - }, - { - "title": "Foxes - Let Go For Tonight (Karaoke)", - "id": "sUy8CL8r1A8" - }, - { - "title": "CHVRCHES - Miracle (Karaoke)", - "id": "RauE6Si-Ugk" - }, - { - "title": "LP - Into The Wild (Karaoke)", - "id": "6huO7BzahQk" - }, - { - "title": "Richard Marx - Should've Known Better (Karaoke)", - "id": "vtGZy7ZA1-U" - }, - { - "title": "Ike & Tina Turner - Proud Mary (Karaoke)", - "id": "HEjRB8ZjBx0" - }, - { - "title": "MIKA - Big Girl (You're Beautiful) Karaoke", - "id": "adlk391nqzY" - }, - { - "title": "Maroon 5 - Wake Up Call (Karaoke)", - "id": "DwnAV7sxcQg" - }, - { - "title": "T'Pau - Heart And Soul (Karaoke)", - "id": "PogragcosUg" - }, - { - "title": "Love And Rockets - So Alive (Karaoke)", - "id": "fHCyT5p8NAg" - }, - { - "title": "Britney Spears - Outrageous (Karaoke)", - "id": "vG5jt5be5bM" - }, - { - "title": "Big & Rich - Save A Horse (Ride A Cowboy) (Karaoke)", - "id": "arGWBCbIgNU" - }, - { - "title": "Kenny Chesney - Young (Karaoke)", - "id": "fO6MBTlJDro" - }, - { - "title": "Hawkshaw Hawkins - Dog House Boogie (Karaoke)", - "id": "YH8P8-nu8-M" - }, - { - "title": "Eddie Cantor - Ida! Sweet As Apple Cider (Karaoke)", - "id": "8LTZz7zsCvo" - }, - { - "title": "Tony Bennett - Steppin' Out With My Baby (Karaoke)", - "id": "VHCoTLv-aY4" - }, - { - "title": "Thompson Twins - Doctor! Doctor! (Karaoke)", - "id": "IjOsq6f_Z8o" - }, - { - "title": "Billy Joel - Say Goodbye To Hollywood (Karaoke)", - "id": "uP8ASqHZvWc" - }, - { - "title": "Seal - Don't Cry (Karaoke)", - "id": "Cuc_JwONM40" - }, - { - "title": "Bonnie Raitt - Thing Called Love (Karaoke)", - "id": "8CLWvk-frs4" - }, - { - "title": "Peabo Bryson & Regina Belle - A Whole New World (Aladdin's Theme) (Karaoke)", - "id": "4fdVzbFaHSY" - }, - { - "title": "Bobby Hebb - Sunny (Karaoke)", - "id": "lmy-kBOaZ_I" - }, - { - "title": "Chris Cagle - What A Beautiful Day (Karaoke)", - "id": "t--epoB_6aE" - }, - { - "title": "Chris Cagle - What A Beautiful Day (Karaoke)", - "id": "w4DvOyqFlXI" - }, - { - "title": "Avril Lavigne - Sk8er Boi (Karaoke)", - "id": "eAgqlIoXh08" - }, - { - "title": "Avril Lavigne - Girlfriend (Karaoke)", - "id": "Os4lAdaymIg" - }, - { - "title": "Keith Urban - Somewhere In My Car (Karaoke)", - "id": "tMq90169MGk" - }, - { - "title": "Disclosure ftg. AlunaGeorge - White Noise (Karaoke)", - "id": "BtZPNZ6o9Ms" - }, - { - "title": "Haircut 100 - Love Plus One (Karaoke)", - "id": "xnVLh9toZYo" - }, - { - "title": "Jennifer Lopez - Let's Get Loud (Karaoke)", - "id": "yccqAhxp0bI" - }, - { - "title": "The Buzzcocks - Ever Fallen In Love With Someone You Shouldn't've (Karaoke)", - "id": "irTuRSXJrN0" - }, - { - "title": "Fine Young Cannibals - Good Thing (Karaoke)", - "id": "cg-rP0MKHUI" - }, - { - "title": "X Ambassadors - Unsteady (Karaoke)", - "id": "HyOJKCp0ypM" - }, - { - "title": "Pat Benatar - Heartbreaker (Karaoke)", - "id": "ebnKkDzVILk" - }, - { - "title": "Hamilton, Joe Frank & Reynolds - Fallin' In Love (Karaoke)", - "id": "k1S_ekPKz48" - }, - { - "title": "Heart - These Dreams (Karaoke)", - "id": "gkNuaQNzKC4" - }, - { - "title": "Tommy James & The Shondells - Hanky Panky (Karaoke)", - "id": "Hb8mPaJkUzg" - }, - { - "title": "Starland Vocal Band - Afternoon Delight (Karaoke)", - "id": "fLsfY3QH5-Q" - }, - { - "title": "Dr. Hook - Sharing The Night Together (Karaoke)", - "id": "mt09DhuEu5c" - }, - { - "title": "George Strait - Twang (Karaoke)", - "id": "fQXwkEHXR_c" - }, - { - "title": "Kellie Pickler - Didn't You Know How Much I Loved You (Karaoke)", - "id": "uNEQjHsfCzo" - }, - { - "title": "Chris Brown feat. T-Pain - Kiss Kiss (Karaoke)", - "id": "05uHfq4Y8Yo" - }, - { - "title": "Imagine Dragons - Tiptoe (Karaoke)", - "id": "Uacr5MuT1YE" - }, - { - "title": "Carly Simon - The Right Thing To Do (Karaoke)", - "id": "MTXW43mBfGM" - }, - { - "title": "The Doobie Brothers - Jesus Is Just Alright (Karaoke)", - "id": "54K14DnbYRk" - }, - { - "title": "Ben Harper - Steal My Kisses (Unplugged) (Karaoke)", - "id": "8rs2zISjCDs" - }, - { - "title": "XTC - Senses Working Overtime (Karaoke)", - "id": "0NgukWu3nbI" - }, - { - "title": "Roxy Music - More Than This (Karaoke)", - "id": "UvPIkL91DDI" - }, - { - "title": "Madonna - Borderline (Karaoke)", - "id": "Qe7aSswjtGE" - }, - { - "title": "Rick Astley - She Wants To Dance With Me (Karaoke)", - "id": "xifK8r6dIUI" - }, - { - "title": "Meat Loaf - Paradise By The Dashboard Light (Karaoke EZ Sing)", - "id": "drwM4uPYb9A" - }, - { - "title": "Billy Joel - It's Still Rock And Roll To Me (Karaoke)", - "id": "c-Tw0xdPiZ4" - }, - { - "title": "A Great Big World - Say Something (Karaoke)", - "id": "zSp8ejl0lbM" - }, - { - "title": "Hunter Hayes - Somebody's Heartbreak (Karaoke)", - "id": "Vl5RhCuShn0" - }, - { - "title": "Toby Keith - Who's Your Daddy (Karaoke)", - "id": "lFSKX8RtXZg" - }, - { - "title": "Gary Numan - Cars (Karaoke)", - "id": "v6uER_Hn70M" - }, - { - "title": "Joe Walsh - Rocky Mountain Way (Karaoke)", - "id": "E51r0MxJUMU" - }, - { - "title": "Tears For Fears - Everybody Wants To Rule The World (Karaoke)", - "id": "_PQ0N42jLqQ" - }, - { - "title": "Paul Young - Everytime You Go Away (Karaoke)", - "id": "C_ENqmZZeoA" - }, - { - "title": "Dwight Yoakam - Pocket Of A Clown (Karaoke)", - "id": "qTtAR7jTC0Q" - }, - { - "title": "Toby Keith - A Little Less Talk (And A Lot More Action) (Karaoke)", - "id": "hnfC_YBrpgQ" - }, - { - "title": "Justin Bieber - Love Me (Karaoke)", - "id": "IICR8R1ASEU" - }, - { - "title": "Jim Croce - Bad Bad Leroy Brown (Karaoke)", - "id": "XO-XoKpYTNU" - }, - { - "title": "Chicago - Just You And Me (Karaoke)", - "id": "H4WtRmGmqjw" - }, - { - "title": "Aaron Neville - Everybody Plays The Fool (Karaoke)", - "id": "KlXkmkmVdY8" - }, - { - "title": "Cher - Shoop Shoop Song (It's In His Kiss) (Karaoke)", - "id": "am1Ecs9LeVk" - }, - { - "title": "Billy Joel - For The Longest Time (Karaoke)", - "id": "KNrdX4ppdEc" - }, - { - "title": "Jim Croce - Time In A Bottle (Karaoke)", - "id": "8cqEiSe6BSY" - }, - { - "title": "George Harrison - Got My Mind Set On You (Karaoke)", - "id": "Tqg-ji78mo4" - }, - { - "title": "Eric Burdon And War - Spill The Wine (Karaoke)", - "id": "kCWcqihHcKA" - }, - { - "title": "The Staple Singers - Respect Yourself (Karaoke)", - "id": "1v0bztrjV5A" - }, - { - "title": "War - Cisco Kid (Karaoke)", - "id": "tv5G_xJ-nYA" - }, - { - "title": "Cรฉline Dion - Love Can Move Mountains (Karaoke)", - "id": "AbIUEnhy0TI" - }, - { - "title": "Roberta Flack & Donny Hathaway - Where Is The Love (Karaoke)", - "id": "8Jvk-MOhWME" - }, - { - "title": "Captain & Tennille - Come In From The Rain (Karaoke)", - "id": "wbTore5_3dY" - }, - { - "title": "Gladys Knight - The Best Thing That Ever Happened To Me (Karaoke)", - "id": "ABP9sX8HHj4" - }, - { - "title": "Aretha Franklin - Share Your Love With Me (Karaoke)", - "id": "EDsPpmguTpY" - }, - { - "title": "Volbeat - Devil's Bleeding Crown (Karaoke EZ Sing)", - "id": "-dwOSJBn2iY" - }, - { - "title": "Zac Brown Band - Castaway (Karaoke)", - "id": "hkxFQaJkPzQ" - }, - { - "title": "AlunaGeorge - Attracting Flies (Karaoke)", - "id": "zJS1CeBHpUc" - }, - { - "title": "Panic! At the Disco - LA Devotee (Karaoke)", - "id": "FRurXUC7l-E" - }, - { - "title": "Fleetwood Mac - Everywhere (Karaoke)", - "id": "Sj1nxBecWqs" - }, - { - "title": "Vengaboys - We Like To Party (Karaoke)", - "id": "54vXWTCxzQ0" - }, - { - "title": "R.E.M. - The One I Love (Karaoke)", - "id": "OxsK-QqVjuM" - }, - { - "title": "New Order - Blue Monday (Karaoke)", - "id": "XUkNm8qECKI" - }, - { - "title": "Jimmy Cliff - Harder They Come (Karaoke EZ Sing)", - "id": "5edUtsCJ150" - }, - { - "title": "Standard - Is You Is, Or Is You Ain't My Baby (Karaoke EZ Sing)", - "id": "ClB-rMuI1a4" - }, - { - "title": "George Strait - Ace In The Hole (Karaoke)", - "id": "WOiOd64RJYk" - }, - { - "title": "Craig Morgan - Redneck Yacht Club (Karaoke)", - "id": "S85e16sCgJQ" - }, - { - "title": "Joan Jett - Bad Reputation (Karaoke)", - "id": "yyylQKCCI6A" - }, - { - "title": "Hank Williams - Thy Burdens Are Greater Than Mine (Karaoke)", - "id": "EpvpaFZME4g" - }, - { - "title": "Brad Paisley ftg. Dolly Parton - When I Get Where I'm Going (Karaoke)", - "id": "cGmA7PFrpGA" - }, - { - "title": "B. B. King - The Thrill Is Gone (Karaoke)", - "id": "kC2cWVQy9dQ" - }, - { - "title": "Kenny Chesney - Back Where I Come From (Karaoke)", - "id": "zYrWoYhMR60" - }, - { - "title": "Evanescence - My Immortal (Karaoke)", - "id": "hfJ0aah5C-Q" - }, - { - "title": "The All-American Rejects - Swing, Swing (Karaoke)", - "id": "bSnJ-evVIIA" - }, - { - "title": "Hilary Duff - So Yesterday (Karaoke)", - "id": "L4w27yR4xdc" - }, - { - "title": "Jason Mraz - The Remedy (I Won't Worry) (Karaoke)", - "id": "YBOISKNLYys" - }, - { - "title": "The All-American Rejects - Dirty Little Secret (Karaoke)", - "id": "Xmq42K7Ahno" - }, - { - "title": "Craig Morgan - Little Bit Of Life (Karaoke)", - "id": "P80fj2VP0fc" - }, - { - "title": "Foghat - Slow Ride (Karaoke)", - "id": "J8teMRnrckI" - }, - { - "title": "Rickie Lee Jones - Chuck E's In Love (Karaoke)", - "id": "YX2YTW-ehsE" - }, - { - "title": "Soft Cell - Tainted Love (Karaoke)", - "id": "Sw-H1zXMfEM" - }, - { - "title": "Tavares - Heaven Must Be Missing An Angel (Karaoke)", - "id": "HUGZE0QFTU8" - }, - { - "title": "Bill Withers - Use Me (Karaoke)", - "id": "Ycqh1avv-Tw" - }, - { - "title": "Three Dog Night - Shambala (Karaoke)", - "id": "K7nSH1T-GOw" - }, - { - "title": "Barry Manilow - Can't Smile Without You (Karaoke)", - "id": "GUxNHgTqcTU" - }, - { - "title": "Gregory Porter - Liquid Spirit (Karaoke EZ Sing)", - "id": "xqweLKyXeUc" - }, - { - "title": "Eli Young Band - Even If It Breaks Your Heart (Karaoke)", - "id": "yNfoISSOmyg" - }, - { - "title": "Billy Preston - Will It Go 'Round In Circles (Karaoke EZ Sing)", - "id": "Ve89LdvsU_M" - }, - { - "title": "Peter, Paul and Mary - Leaving On A Jet Plane (Karaoke)", - "id": "dKAjN7F2uMo" - }, - { - "title": "Frank Sinatra - It Was A Very Good Year (Karaoke)", - "id": "JDXzIKgDVH4" - }, - { - "title": "The Lovin' Spoonful - Do You Believe In Magic (Karaoke)", - "id": "T5smEX81Ho0" - }, - { - "title": "Standard - Bye Bye Blackbird (Karaoke)", - "id": "Fz0eB4qrPsg" - }, - { - "title": "Carly Simon - You're So Vain (Karaoke)", - "id": "zEstg_f0Ie8" - }, - { - "title": "Creedence Clearwater Revival - Down On The Corner (Karaoke)", - "id": "ku1jP1VYu2Q" - }, - { - "title": "Creedence Clearwater Revival - Have You Ever Seen The Rain (Karaoke)", - "id": "oRfEY4OJKIo" - }, - { - "title": "George Ezra - Listen To The Man (Karaoke)", - "id": "L7ijy-xyoAg" - }, - { - "title": "Bring Me The Horizon - Happy Song (Karaoke)", - "id": "ReYUcCzhw_A" - }, - { - "title": "Elton John - I'm Still Standing (Karaoke)", - "id": "oU4ndnF6gq4" - }, - { - "title": "A Flock Of Seagulls - I Ran (So Far Away) (Karaoke)", - "id": "svZs_T9Y3iM" - }, - { - "title": "Modern English - I Melt With You (Karaoke)", - "id": "Q0UCf-kr4ao" - }, - { - "title": "Otis Redding - Hard To Handle (Karaoke)", - "id": "w2m9aeI6Gsg" - }, - { - "title": "Leon Russell - A Song For You (Karaoke)", - "id": "OYw5rx5AyNw" - }, - { - "title": "Supertramp - Give A Little Bit (Karaoke)", - "id": "nfmu92d2TJg" - }, - { - "title": "Nelly - Country Grammar (Karaoke)", - "id": "Ug-vWsjvRUc" - }, - { - "title": "Blake Shelton - Sangria (Karaoke)", - "id": "Cc-SnXvTIQE" - }, - { - "title": "Florida Georgia Line - Sun Daze (Karaoke)", - "id": "sHFxnJvqoug" - }, - { - "title": "Elton John & Kiki Dee - Don't Go Breaking My Heart (Karaoke)", - "id": "tDeLYr8LdUc" - }, - { - "title": "Blondie - The Tide Is High (Karaoke)", - "id": "AMB5ID7RUXc" - }, - { - "title": "Bill Haley & His Comets - See You Later, Alligator (Karaoke)", - "id": "cw5RM40BM1A" - }, - { - "title": "The Honeydrippers - Sea Of Love (Karaoke)", - "id": "qFcS4RdUPW0" - }, - { - "title": "High School Musical - Breaking Free (Karaoke EZ Sing)", - "id": "3xteU6SAxHw" - }, - { - "title": "High School Musical - All For One (Karaoke)", - "id": "pDJrO7UTLF8" - }, - { - "title": "Elton John - I Just Can't Wait To Be King (Karaoke)", - "id": "H6dKYZ0mek8" - }, - { - "title": "OMC - How Bizarre (Karaoke)", - "id": "kLL78a9O98I" - }, - { - "title": "OK Go - Here It Goes Again (Karaoke)", - "id": "p4ggHq0sLQ8" - }, - { - "title": "Dierks Bentley - Free And Easy (Down The Road I Go) (karaoke)", - "id": "P-jHWlmzGCc" - }, - { - "title": "The Marshall Tucker Band - Heard It In A Love Song (Karaoke)", - "id": "_LHgjCZ82M4" - }, - { - "title": "Edie Brickell & New Bohemians - What I Am (Karaoke)", - "id": "4iG_nFTgils" - }, - { - "title": "Al Stewart - Year Of The Cat (Karaoke)", - "id": "eoNQwEH629M" - }, - { - "title": "Air Supply - All Out Of Love (Karaoke)", - "id": "9jSwf5t1khw" - }, - { - "title": "Kiss - I Was Made For Loving You (Kiss)", - "id": "0_ulC3ZFI0I" - }, - { - "title": "Jennifer Hudson - And I Am Telling You I'm Not Going (Karaoke)", - "id": "XPWWWsvhoAE" - }, - { - "title": "Jethro Tull - Locomotive Breath (Karaoke)", - "id": "Vpxh_zQMf6M" - }, - { - "title": "Creedence Clearwater Revival - Who'll Stop The Rain (Karaoke)", - "id": "cBls6S67VEk" - }, - { - "title": "NE-YO - Never Knew I Needed (Karaoke)", - "id": "OpjsZJMbB6c" - }, - { - "title": "Bill Withers - Lean On Me (Karaoke)", - "id": "Q4rIFrmWlbc" - }, - { - "title": "Jason Derulo - Trumpets (Karaoke)", - "id": "I2ZAndsyG0s" - }, - { - "title": "Albert King - Born Under A Bad Sign (Karaoke)", - "id": "WSPjrtPXGj4" - }, - { - "title": "Muddy Waters - Mannish Boy (Karaoke)", - "id": "8ShsGXNZ7VU" - }, - { - "title": "Maroon 5 ftg. Lady Antebellum - Out Of Goodbyes (Karaoke)", - "id": "m4OG7eMJ8NE" - }, - { - "title": "Eminem ftg. Rihanna - Love The Way You Lie (Karaoke)", - "id": "wYjwVj0xhX8" - }, - { - "title": "Justin Bieber - One Time (Karaoke)", - "id": "OxVGseKqE9E" - }, - { - "title": "Sweet - Ballroom Blitz (Karaoke)", - "id": "XB11kSLiTfg" - }, - { - "title": "Boy Meets Girl - Waiting For A Star To Fall (Karaoke)", - "id": "de76lB6203c" - }, - { - "title": "Grandmaster Flash And The Furious 5 - Message (Karaoke)", - "id": "mYox_RqYNWU" - }, - { - "title": "Daft Punk - Technologic (Karaoke)", - "id": "wwHcqR0BZjE" - }, - { - "title": "Josh Kelley - Amazing (Karaoke)", - "id": "njsDhJiaiwQ" - }, - { - "title": "Keane - Everybody's Changing (Karaoke)", - "id": "kICH4SeixOg" - }, - { - "title": "Saliva - Click Click Boom (Karaoke)", - "id": "l7xSKIkD5aY" - }, - { - "title": "Kaiser Chiefs - Coming Home (Karaoke)", - "id": "xkI15Dahctg" - }, - { - "title": "Dwight Yoakam - Fast As You (Karaoke)", - "id": "RJokELbHgLA" - }, - { - "title": "Phil Collins - You'll Be In My Heart (Karaoke)", - "id": "GaUeBOnp2dk" - }, - { - "title": "Franz Ferdinand - Take Me Out (Karaoke)", - "id": "5WYF_3Y6Y9Q" - }, - { - "title": "Eddie Floyd - Knock On Wood (Karaoke)", - "id": "j33Mh3BQm-Q" - }, - { - "title": "Staple Singers - I'll Take You There (Karaoke)", - "id": "Q_Y12i72E2s" - }, - { - "title": "Chicago - 25 Or 6 To 4 (Karaoke)", - "id": "YyusqAWVsYo" - }, - { - "title": "The Trammps - Disco Inferno (Karaoke)", - "id": "dyeOgVx7oIs" - }, - { - "title": "Blues Traveler - Run-Around (Karaoke)", - "id": "IPVjyY96bWk" - }, - { - "title": "3 Doors Down - Kryptonite (Karaoke)", - "id": "fGKQQQs3iVg" - }, - { - "title": "*NSYNC - It's Gonna Be Me (Karaoke)", - "id": "XD033t06D90" - }, - { - "title": "Montgomery Gentry - Hillbilly Shoes (Karaoke)", - "id": "Dr3wbH8t-k8" - }, - { - "title": "Peggy Lee - Fever (Karaoke)", - "id": "_7yB6gkuCB4" - }, - { - "title": "Garth Brooks - Two Pina Coladas (Karaoke)", - "id": "cDytzvqZJzg" - }, - { - "title": "Dwight Yoakam - Guitars and Cadillacs (Karaoke)", - "id": "YPlQ2BOCthE" - }, - { - "title": "Clay Walker - Rumor Has It (Karaoke)", - "id": "nTP441a7Nak" - }, - { - "title": "Carly Rae Jepsen - Call Me Maybe (Karaoke)", - "id": "c8tckr865w4" - }, - { - "title": "Bill Withers - Ain't No Sunshine (Karaoke)", - "id": "800qmBC-iEo" - }, - { - "title": "Will Smith - Fresh Prince Of Bel-Air (Karaoke)", - "id": "g6o4CUEbGzY" - }, - { - "title": "Halsey - Colors (Karaoke)", - "id": "ZgnkmzqbpSE" - }, - { - "title": "Shawn Mendes - Treat You Better (Karaoke)", - "id": "xNHmttvE6ks" - }, - { - "title": "Backstreet Boys - All I Have To Give (Karaoke)", - "id": "0qvsLAabN38" - }, - { - "title": "Jake Owen - Eight Second Ride (Karaoke)", - "id": "EKcIcaS4Ckk" - }, - { - "title": "Maroon 5 - She Will Be Loved (Karaoke)", - "id": "3Oa4sAnOcJc" - }, - { - "title": "Rihanna - Shut Up And Drive (Karaoke)", - "id": "i0p3fWgOfl4" - }, - { - "title": "Justin Moore - Back That Thing Up (Karaoke)", - "id": "x9f8r7cOPq0" - }, - { - "title": "Peter Frampton - Baby, I Love Your Way (Karaoke)", - "id": "-irhVpZ_k1k" - }, - { - "title": "Spiral Starecase - More Today Than Yesterday (Karaoke)", - "id": "6hy1qV7SX9M" - }, - { - "title": "Keith Urban - Kiss A Girl (Karaoke)", - "id": "Ib3IPHjIbrg" - }, - { - "title": "Kelly Clarkson - Since U Been Gone (Karaoke)", - "id": "zIc6Ic4e1ss" - }, - { - "title": "No Doubt - It's My Life (Karaoke)", - "id": "lknHCPp4Al8" - }, - { - "title": "Tears For Fears - Shout (Karaoke)", - "id": "PJnNcb330Xg" - }, - { - "title": "Del Shannon - Runaway (Karaoke)", - "id": "yzbAObpQPl8" - }, - { - "title": "Enrique Iglesias - Bailamos (Karaoke)", - "id": "DG3UBFzrXRE" - }, - { - "title": "Nelly (ftg. Tim McGraw) - Over And Over (Karaoke)", - "id": "uhXAdK2w5zg" - }, - { - "title": "Pearl Jam - Last Kiss (Karaoke)", - "id": "S7ddCTJCQ88" - }, - { - "title": "Elvis Presley - Blue Moon Of Kentucky (Karaoke)", - "id": "7qH2LgXR36Q" - }, - { - "title": "The Lovin' Spoonful - Summer In The City (Karaoke)", - "id": "NpxdRorQhQM" - }, - { - "title": "Bing Crosby - In The Good Old Summertime (Karaoke)", - "id": "jIYIhhdxSyk" - }, - { - "title": "Kate Smith - God Bless America (Karaoke)", - "id": "o1yqDS0UvV4" - }, - { - "title": "Bryan Adams - Summer Of '69 (Karaoke)", - "id": "whfC30mSlrI" - }, - { - "title": "Elton John - Saturday Night's Alright for Fighting (Karaoke)", - "id": "ze5rXNC36Gc" - }, - { - "title": "Tennessee Ernie Ford - The Shot Gun Boogie", - "id": "BhTqdaIdQKQ" - }, - { - "title": "Loretta Lynn - Coal Miner's Daughter (Karaoke)", - "id": "YfBbEaesPrc" - }, - { - "title": "Bette Midler - Boogie Woogie Bugle Boy (Karaoke)", - "id": "fMp18JSYa88" - }, - { - "title": "C. W. McCall - Convoy (Karaoke)", - "id": "bb2vW999dio" - }, - { - "title": "John Denver - Thank God I'm A Country Boy (Karaoke)", - "id": "5Bw6yUWYxgU" - }, - { - "title": "Trace Adkins - Every Light In The House Is On (Karaoke)", - "id": "S1vuLA8dEMI" - }, - { - "title": "Del Reeves - Girl On The Billboard (Karaoke)", - "id": "YeJqDNzXxSI" - }, - { - "title": "Cameo - Word Up (Karaoke)", - "id": "uFpWXbvhLxI" - }, - { - "title": "Chicago - If You Leave Me Now (Karaoke)", - "id": "pRmw4zHGtMU" - }, - { - "title": "Elton John - Bennie And The Jets (Karaoke)", - "id": "jB4ELOZpX7U" - }, - { - "title": "Johnny Cash - Orange Blossom Special (Karaoke)", - "id": "YMATfslkHcw" - }, - { - "title": "The Rays - Silhouettes (Karaoke)", - "id": "mVJgOpgunkw" - }, - { - "title": "Gene Chandler - Duke Of Earl (Karaoke)", - "id": "rCoiSzSwbVw" - }, - { - "title": "Mac Davis - It's Hard To Be Humble (Karaoke)", - "id": "lKXP6gAoGRA" - }, - { - "title": "Loretta Lynn - You Ain't Woman Enough To Take My Man (Karaoke)", - "id": "VyfCFecZQbI" - }, - { - "title": "Mitch Miller - Bye Bye Blackbird (Karaoke)", - "id": "1cKsCHyEN7I" - }, - { - "title": "Thompson Twins - Hold Me Now (Karaoke)", - "id": "RLZga2OXzYE" - }, - { - "title": "The Avett Brothers - Ain't No Man (Karaoke)", - "id": "Fk7uDVkbwAc" - }, - { - "title": "John Legend - Love Me Now (Karaoke)", - "id": "YD7E7ZCCxzo" - }, - { - "title": "The Everly Brothers - Wake Up Little Susie (Karaoke)", - "id": "LxAd-4q61Lc" - }, - { - "title": "Billie Holiday - God Bless The Child (Karaoke)", - "id": "lmn6Ij9qbAM" - }, - { - "title": "Patsy Cline - Blue Moon Of Kentucky (Karaoke)", - "id": "4bEBrs7Zvxs" - }, - { - "title": "Keith Urban - Sweet Thing (Karaoke)", - "id": "RexUbgxZ-k0" - }, - { - "title": "Creedence Clearwater Revival - Lookin' Out My Back Door (Karaoke)", - "id": "Baz5V2mPhSo" - }, - { - "title": "The Knack - My Sharona (Karaoke)", - "id": "A1S7tXVc5ug" - }, - { - "title": "Tom Petty And The Heartbreakers - Don't Do Me Like That (Karaoke)", - "id": "G60ayfzFsZY" - }, - { - "title": "The Drifters - Under The Boardwalk (Karaoke)", - "id": "bvOS78wyNf8" - }, - { - "title": "Nancy Sinatra - These Boots Are Made For Walkin' (Karaoke)", - "id": "lG3og1lRKvw" - }, - { - "title": "Jason Mraz - I'm Yours (Karaoke)", - "id": "X_-g4iTNPBA" - }, - { - "title": "The Gap Band - You Dropped A Bomb On Me (Karaoke)", - "id": "YmcMG6x2sWE" - }, - { - "title": "Creed - With Arms Wide Open (Karaoke)", - "id": "TXuNT9SOcdE" - }, - { - "title": "Katrina And The Waves - Walking On Sunshine (Karaoke)", - "id": "IFhjdqOLGXg" - }, - { - "title": "Elvis Presley - Are You Sincere (Karaoke)", - "id": "qmdxy4e-dFk" - }, - { - "title": "Cher - If I Could Turn Back Time (Karaoke)", - "id": "GkUogQpd4G8" - }, - { - "title": "Smash Mouth - All Star (Karaoke)", - "id": "N-elJ7vQl54" - }, - { - "title": "R.E.M. - Losing My Religion (Karaoke)", - "id": "Tn660Z_0x00" - }, - { - "title": "Britney Spears - Oops! I Did It Again (Karaoke)", - "id": "LI_3ghCr-sU" - }, - { - "title": "Whitney Houston - I Wanna Dance With Somebody (Karaoke)", - "id": "03xnpO56kpk" - }, - { - "title": "The Turtles - Happy Together (Karaoke)", - "id": "u0fY1DIw6xs" - }, - { - "title": "The Osborne Brothers - Rocky Top (Karaoke)", - "id": "AVEXbBk11U8" - }, - { - "title": "The Young Rascals - Good Lovin' (Karaoke)", - "id": "XvTuwirrvzg" - }, - { - "title": "Miami Sound Machine - Conga (Karaoke)", - "id": "NtMn49ASDS4" - }, - { - "title": "Lynyrd Skynyrd - Free Bird (Karaoke)", - "id": "co4DeObhp0A" - }, - { - "title": "The Everly Brothers - Bye Bye Love (Karaoke)", - "id": "Dz0P0GrsDKQ" - }, - { - "title": "Creedence Clearwater Revival - Bad Moon Rising (Karaoke)", - "id": "_4HBC0fWTgc" - }, - { - "title": "Natalie Cole - Pink Cadillac (Karaoke)", - "id": "6WPnQNPYEzo" - }, - { - "title": "Richard Marx - Hold On To The Nights (Karaoke)", - "id": "u-jE-H3koAQ" - }, - { - "title": "Billy Ocean - Get Outta My Dreams, Get Into My Car (Karaoke)", - "id": "7X30CpcAPy8" - }, - { - "title": "Richard Marx - Right Here Waiting (Karaoke)", - "id": "St5H5aagowk" - }, - { - "title": "Chicago - Colour My World (Karaoke)", - "id": "dkXrSwnRssg" - }, - { - "title": "Creedence Clearwater Revival - Lodi (Karaoke)", - "id": "onF6ezQItHk" - }, - { - "title": "Franz Ferdinand - Ulysses (Karaoke)", - "id": "UYu2gMnw9qU" - }, - { - "title": "Oran \"Juice\" Jones - The Rain (Karaoke)", - "id": "4PYb8Xk7_ak" - }, - { - "title": "New Order - Blue Monday '95", - "id": "NQaka2roQdY" - }, - { - "title": "Duran Duran - Electric Barbarella (Karaoke)", - "id": "XtTHjaK_5Io" - }, - { - "title": "Timbuk 3 - The Future's So Bright (I've Got To Wear Shades)", - "id": "s1GWg8Ugim4" - }, - { - "title": "Frida - I Know Theres Something Going On (Karaoke)", - "id": "uSbO037KHLg" - }, - { - "title": "Pebbles - Mercedes Boy (Karaoke)", - "id": "yqpRp2MWJ_M" - }, - { - "title": "The Jets - Crush On You (Karaoke)", - "id": "fFB-81X-zNc" - }, - { - "title": "The Wanted - Chasing The Sun (Karaoke)", - "id": "UhNRJ8fjuPU" - }, - { - "title": "Creedence Clearwater Revival - Long As I Can See The Light (Karaoke)", - "id": "r0coNV531AE" - }, - { - "title": "Powerman 5000 - When Worlds Collide (Karaoke)", - "id": "DqWSvsqHBtc" - }, - { - "title": "The Alan Parsons Project - Eye In The Sky (Karaoke)", - "id": "sj9jHbDKhQg" - }, - { - "title": "Beastie Boys - Super Disco Breakin' (Karaoke)", - "id": "YZcTfbyUVrg" - }, - { - "title": "Alanis Morissette - You Learn (Karaoke)", - "id": "N8GPo0mweO0" - }, - { - "title": "Alanis Morissette - All I Really Want (Karaoke)", - "id": "5EgV7d18IRo" - }, - { - "title": "Duncan Sheik - Barely Breathing (Karaoke)", - "id": "K9jx68IXhfI" - }, - { - "title": "Cher - All Or Nothing (Karaoke)", - "id": "1rm0qYSeXD4" - }, - { - "title": "Alanis Morissette - Precious Illusions (Karaoke)", - "id": "p2YP_Xi7fyE" - }, - { - "title": "Carly Simon - Two Little Sisters (Karaoke)", - "id": "gZnyzs_Pbkg" - }, - { - "title": "Blondfire - Where The Kids Are (Karaoke)", - "id": "F5GhHWb3-2Q" - }, - { - "title": "MS MR - Dark Doo Wop (Karaoke)", - "id": "RDYWYZlscIs" - }, - { - "title": "Metric - Collect Call (Karaoke)", - "id": "u8FVybgqbng" - }, - { - "title": "Bastille - Pompeii (Karaoke)", - "id": "kucO87tPzJU" - }, - { - "title": "Crash Test Dummies - Mmm Mmm Mmm Mmm (Karaoke)", - "id": "Ky7XyEPLVfM" - }, - { - "title": "Godsmack - Serenity (Karaoke EZ Sing)", - "id": "2gvZhK1R_48" - }, - { - "title": "Peter Frampton - Show Me The Way (Live Version) (Karaoke)", - "id": "CzePDIiBYMc" - }, - { - "title": "Mamas And The Papas - California Dreamin' (Karaoke)", - "id": "cx7MzXAJItE" - }, - { - "title": "Steely Dan - Do It Again (Karaoke)", - "id": "lZAZZWE65qY" - }, - { - "title": "Godsmack - Keep Away (Karaoke)", - "id": "kMVcR_5z8BQ" - }, - { - "title": "The Cure - High (Karaoke)", - "id": "N4hwSMBh3f4" - }, - { - "title": "Godsmack - I Stand Alone (Karaoke)", - "id": "iIjYuoSpet4" - }, - { - "title": "Godsmack - Bad Magick (Karaoke)", - "id": "i1wcryCZkRk" - }, - { - "title": "Godsmack - Awake (Karaoke)", - "id": "kmr8jZojZpk" - }, - { - "title": "Billy Joel - Just The Way You Are (Karaoke)", - "id": "N4ZEKQcKcsU" - }, - { - "title": "Billy Joel - Piano Man (Karaoke)", - "id": "fmhq8Oqz-QQ" - }, - { - "title": "Elton John - Candle In The Wind (Karaoke)", - "id": "ohGhARgUUeo" - }, - { - "title": "Striking Matches - Trouble Is As Trouble Does (Karaoke)", - "id": "57rfPruhw_Q" - }, - { - "title": "Bastille - Pompeii (Karaoke)", - "id": "6L_kb9EW1BE" - }, - { - "title": "Gloria Gaynor - I Will Survive (Karaoke)", - "id": "FaxHl0Gyoz0" - }, - { - "title": "Mรถtley Crรผe - Smokin' In The Boys Room (Karaoke)", - "id": "r4g37zKnTEY" - }, - { - "title": "Big Bopper - Chantilly Lace (Karaoke)", - "id": "gvfdAklkEhQ" - }, - { - "title": "Scorpions - Send Me An Angel (Karaoke)", - "id": "v9JcCpLsTeU" - }, - { - "title": "Fleetwood Mac - Hold Me (Karaoke)", - "id": "CJ1jIxI-Ljs" - }, - { - "title": "Toni Braxton - UnBreak My Heart (Karaoke)", - "id": "ta-Wqn5dLc8" - }, - { - "title": "ORGY - Blue Monday (Karaoke)", - "id": "kipLLbREDGA" - }, - { - "title": "Kate Nash - Merry Happy (Karaoke)", - "id": "pI9dU3At8pM" - }, - { - "title": "Roxy Music - Love Is The Drug (Karaoke)", - "id": "RGfGgd1CSE4" - }, - { - "title": "Kelly Clarkson - Some Kind Of Miracle (Karaoke)", - "id": "jaWQa9WcfA4" - }, - { - "title": "Kenny Chesney - On The Coast Of Somewhere Beautiful (Karaoke)", - "id": "De5ax970tHQ" - }, - { - "title": "Hard-Fi - Cash Machine (Karaoke)", - "id": "TTKO9GCkg78" - }, - { - "title": "Bo Diddley - I'm A Man (Karaoke)", - "id": "2WbEwyhZR4s" - }, - { - "title": "Seether - Let You Down (Karaoke)", - "id": "wRbyqMprv5Y" - }, - { - "title": "Dwayne Johnson - You're Welcome (Karaoke)", - "id": "aDTX15e_weM" - }, - { - "title": "Honne - Woman (Karaoke)", - "id": "j2kwr6O2210" - }, - { - "title": "NAV - Myself (Karaoke)", - "id": "5njnIMMdJLk" - }, - { - "title": "Limp Bizkit - Boiler (Karaoke)", - "id": "Et1xY7Kot0Y" - }, - { - "title": "Monster Magnet - Space Lord (Karaoke)", - "id": "r_4BysBIMfU" - }, - { - "title": "Seether - Fake It (Karaoke)", - "id": "XnENLU4oMXs" - }, - { - "title": "Beastie Boys, ft, Nas - Too Many Rappers (Karaoke)", - "id": "m26TogMAkGY" - }, - { - "title": "Robert DeLong - Global Concepts (Karaoke)", - "id": "P7KDnlCIk5c" - }, - { - "title": "Fatboy Slim - Right Here, Right Now (Karaoke)", - "id": "YTZcRPK2yDk" - }, - { - "title": "Heart - All I Wanna Do Is Make Love To You (Karaoke)", - "id": "kJ1EBfoIlOA" - }, - { - "title": "Alanis Morissette - Head Over Feet (Karaoke)", - "id": "uHifPteH5t8" - }, - { - "title": "Oasis - Songbird (Karaoke)", - "id": "fUrahEuj9AA" - }, - { - "title": "Limp Bizkit - Nookie (Karaoke)", - "id": "9NzBPhb2y5c" - }, - { - "title": "Dashboard Confessional - Stolen (Karaoke)", - "id": "BBKd9PQuT20" - }, - { - "title": "Brother Cane - Fools Shine On (Karaoke)", - "id": "YcrgJGUNVi8" - }, - { - "title": "Bruce Springsteen & The E Street Band - Always A Friend (Karaoke)", - "id": "XB8r3pUBqxo" - }, - { - "title": "Kina Grannis - Iris (Karaoke)", - "id": "XLetXy0qnS8" - }, - { - "title": "Kina Grannis - Memory (Karaoke)", - "id": "kC8Q5TGMU54" - }, - { - "title": "Metric - Gold Guns Girls (Karaoke)", - "id": "ihHpRcu3nSs" - }, - { - "title": "MGMT - Congratulations (Karaoke)", - "id": "hFuPgTxtIKY" - }, - { - "title": "Ozzy Osbourne - Hellraiser (Karaoke)", - "id": "8uB67F_sXmk" - }, - { - "title": "MGMT - Of Moons, Birds & Monsters (Karaoke)", - "id": "xB189OMVjF0" - }, - { - "title": "Aaliyah - What If (Karaoke)", - "id": "7ERJLOrHk1s" - }, - { - "title": "Belouis Some - Some People (Karaoke)", - "id": "NeOghBS5Ouo" - }, - { - "title": "Big & Rich - The Man I Am Right Now (Karaoke)", - "id": "uP9SSlsLxjw" - }, - { - "title": "Creed - Torn (Karaoke)", - "id": "DWGP-S0Wvm0" - }, - { - "title": "Creed - My Own Prison (Karaoke)", - "id": "Y8pK2Bs7PBg" - }, - { - "title": "finger eleven - Them Vs You Vs Me (Karaoke)", - "id": "u9eu9jPI1nw" - }, - { - "title": "Aaliyah - Read Between The Lines (Karaoke)", - "id": "2EBdJSJAv5g" - }, - { - "title": "Avril Lavigne - Anything But Ordinary (Karaoke)", - "id": "yzcXgHacEOg" - }, - { - "title": "Metric - Breathing Underwater (Karaoke)", - "id": "PYX-a9i-oCQ" - }, - { - "title": "Cassadee Pope - Wasting All These Tears (Karaoke)", - "id": "3VLQlzFPf5s" - }, - { - "title": "You Me At Six - Lived A Lie (Karaoke)", - "id": "7r58qjsB5-0" - }, - { - "title": "Five Finger Death Punch - Gone Away (Karaoke)", - "id": "xgQhx7JxCh8" - }, - { - "title": "Cassadee Pope - I Wish I Could Break Your Heart (Karaoke)", - "id": "C4AFG9Fdbvk" - }, - { - "title": "Saint Motel - My Type (Karaoke)", - "id": "Q1K1v8jKVR8" - }, - { - "title": "Andra Day - Rise Up (Karaoke)", - "id": "Ftqkpqpl6WM" - }, - { - "title": "The Cheetah Girls - Cinderella (Karaoke)", - "id": "X4Lar_dMpko" - }, - { - "title": "OK Go - Get Over It (Karaoke)", - "id": "Q9WCJXIICn4" - }, - { - "title": "Diana Krall - I Miss You So (Karaoke)", - "id": "rTqAsOAyPyQ" - }, - { - "title": "Flyleaf - Missing (Karaoke)", - "id": "sAYPhZ0ZcpA" - }, - { - "title": "Live - Lakini's Juice (Karaoke)", - "id": "CuuwHmMGP8U" - }, - { - "title": "Tom Walker - Leave A Light On (Karaoke)", - "id": "tXY0qRmsAAQ" - }, - { - "title": "Culture Club - Church Of The Poison Mind (Karaoke)", - "id": "E4-0yIdamPk" - }, - { - "title": "Garth Brooks - The Dance (Karaoke)", - "id": "2q9Ser27t8Q" - }, - { - "title": "Shenandoah - Next To You, Next To Me (Karaoke)", - "id": "N6nz1rgSMgI" - }, - { - "title": "Clint Black - Nothings News (Karaoke)", - "id": "G5B2eQ35mbI" - }, - { - "title": "Clint Black - Nothings News (Karaoke)", - "id": "DMHfc_xU8hA" - }, - { - "title": "Dolly Parton - Seven Bridges Road (Karaoke)", - "id": "N_MShJ0PEEo" - }, - { - "title": "Elton John - Sad Songs (Say So Much) (Karaoke)", - "id": "P9iXGIAR5jw" - }, - { - "title": "Dolly Parton - Seven Bridges Road (Karaoke)", - "id": "H8A0Ae9IG7E" - }, - { - "title": "Rod Stewart - The Motown Song (Karaoke)", - "id": "sZf9--AoAAE" - }, - { - "title": "Nancy Sinatra - These Boots Are Made For Walking (Karaoke)", - "id": "RXm-h8U6hp4" - }, - { - "title": "The Undertones - Teenage Kicks (Karaoke)", - "id": "3ppRjz0-zVE" - }, - { - "title": "Supertramp - Take The Long Way Home (Karaoke)", - "id": "dqJ164fOi40" - }, - { - "title": "Supertramp - The Logical Song (Karaoke)", - "id": "PDzNCThOffo" - }, - { - "title": "Isaac Hayes - Theme From Shaft (Karaoke)", - "id": "rBr5ybxJnnY" - }, - { - "title": "Lynyrd Skynyrd - That Smell (Karaoke)", - "id": "4IcvTIe97sQ" - }, - { - "title": "Twisted Sister - We're Not Gonna Take It (Karaoke)", - "id": "XUbtsimbmeQ" - }, - { - "title": "Breaking Benjamin - So Cold (Karaoke)", - "id": "UtU8-0rt-dI" - }, - { - "title": "Breaking Benjamin - Sooner Or Later (Karaoke)", - "id": "Es3jBcWHlR4" - }, - { - "title": "Imagine Dragons - Battle Cry (Karaoke)", - "id": "acTNFVeR3cA" - }, - { - "title": "Chuck Berry - No Particular Place To Go (Karaoke)", - "id": "WVeoBvDVTEE" - }, - { - "title": "Nazareth - Love Hurts (Karaoke)", - "id": "-gepZ1SmeIk" - }, - { - "title": "Disclosure ft. Eliza Doolittle - You And Me (Karaoke)", - "id": "9YL_MnG4vXU" - }, - { - "title": "Snow Patrol - Chocolate (Karaoke)", - "id": "BHB--UT3G88" - }, - { - "title": "Jeremih - Birthday Sex (Karaoke)", - "id": "StJGhW-N8OE" - }, - { - "title": "Fleetwood Mac - Don't Stop (Karaoke)", - "id": "OFHYo0UebNo" - }, - { - "title": "Night Ranger - Sister Christian (Karaoke)", - "id": "UUth66UvPZ0" - }, - { - "title": "Florence + The Machine - Dog Days Are Over (Karaoke)", - "id": "m65Zg-o1ICE" - }, - { - "title": "Bastille - Laura Palmer (Karaoke)", - "id": "ll6g5WGwmIU" - }, - { - "title": "Bastille - Things We Lost In The Fire (Karaoke)", - "id": "mOfxkYK8jiE" - }, - { - "title": "Miley Cyrus - Malibu (Karaoke)", - "id": "jZmqyv-aU1o" - }, - { - "title": "Wang Chung - Dance Hall Days (Karaoke)", - "id": "RMXa-lG8l-0" - }, - { - "title": "Imagine Dragons - Thunder (Karaoke)", - "id": "7qoJM7rZkJs" - }, - { - "title": "2Pac - All Eyez On Me (Karaoke)", - "id": "_z1tdf8Gn6Y" - }, - { - "title": "Chingy ft. J. Weav - One Call Away (Karaoke)", - "id": "jDoXODbgKp4" - }, - { - "title": "Stone Sour - Song #3 (Karaoke)", - "id": "ZjyexNGbiek" - }, - { - "title": "Lil Jon & The East Side Boyz - Put Yo Hood Up (Karaoke)", - "id": "rO_Ok8avTiM" - }, - { - "title": "Phantogram - Let Me Go (Karaoke)", - "id": "hHcBkXcCLCY" - }, - { - "title": "Phantogram - Lights (Karaoke)", - "id": "Y8NhlKCwkGM" - }, - { - "title": "Las Ketchup - The Ketchup Song (Asereje) (Karaoke", - "id": "xJz0cck_VAU" - }, - { - "title": "Miley Cyrus - Inspired (Karaoke)", - "id": "FHtSNMtnp2A" - }, - { - "title": "Wang Chung - Everybody Have Fun (Karaoke)", - "id": "c2oa-8jdQ68" - }, - { - "title": "Miley Cyrus - Younger Now (Karaoke)", - "id": "NoJnNE3EysU" - }, - { - "title": "J. Cole - Everybody Dies (Karaoke)", - "id": "IpabnLWCY9Q" - }, - { - "title": "Saint Mesa - Lion (Karaoke)", - "id": "5ckYoKWIvVU" - }, - { - "title": "Disclosure - Boss (Karaoke)", - "id": "6Z36rPWFwYA" - }, - { - "title": "Disclosure, Miguel - Good Intentions Disclosure Ft. Miguel (Karaoke)", - "id": "-tSqRaYhles" - }, - { - "title": "Alice In Chains - Rooster (Karaoke)", - "id": "9JR9KvpuQ8Y" - }, - { - "title": "Alice In Chains - Them Bones (Karaoke)", - "id": "wbnhRjVkYrE" - }, - { - "title": "Alice In Chains - Would? (Karaoke)", - "id": "5tpnB0KHvwI" - }, - { - "title": "Alice In Chains - Angry Chair (Karaoke)", - "id": "3tCTD6hb_sw" - }, - { - "title": "Alice In Chains - Grind (Karaoke)", - "id": "_KSXtN7Op38" - }, - { - "title": "Alice In Chains - No Excuses (Karaoke)", - "id": "Wu02XrQneoo" - }, - { - "title": "Chris Stapleton - Millionaire (Karaoke)", - "id": "rErNr5unjDo" - }, - { - "title": "Saint Motel - Move (Karaoke)", - "id": "hxYt9WiWmbg" - }, - { - "title": "Alice In Chains - Black Gives Way To Blue (Karaoke)", - "id": "oCTV2wma2o4" - }, - { - "title": "Alice In Chains - Private Hell (Karaoke)", - "id": "DnBOGbXXqgg" - }, - { - "title": "Alice In Chains - Take Her Out (Karaoke)", - "id": "6mbzhxdsUu0" - }, - { - "title": "Alice In Chains - Lesson Learned (Karaoke)", - "id": "zvapJ6XufRc" - }, - { - "title": "Bring Me The Horizon - Follow You (Karaoke)", - "id": "FQ7zkju-8xQ" - }, - { - "title": "Bring Me The Horizon - Doomed (Karaoke)", - "id": "AhVT-IF-eoY" - }, - { - "title": "Bring Me The Horizon - Sleepwalking (Karaoke)", - "id": "YXCsE1K2Jnk" - }, - { - "title": "Bring Me The Horizon - Can You Feel My Heart (Karaoke)", - "id": "gB4wKunts_Y" - }, - { - "title": "Bullet For My Valentine - Worthless (Karaoke)", - "id": "P4CXdFIAsiw" - }, - { - "title": "Bullet For My Valentine - All These Things (Karaoke)", - "id": "UcKGxyFNBVI" - }, - { - "title": "Ed Sheeran - Make It Rain (Karaoke)", - "id": "ykhVxGt-rHE" - }, - { - "title": "Bullet For My Valentine - You Want A Battle? (Here's A War) (Karaoke)", - "id": "VQWqNAKtjYU" - }, - { - "title": "Shenandoah - Next To You, Next To Me (Karaoke)", - "id": "Vpjdy5csCiw" - }, - { - "title": "Bob Marley & The Wailers - African Herbsman (Karaoke)", - "id": "dn9YBzspxj0" - }, - { - "title": "Sparks - When Do I Get To Sing My Way (Karaoke)", - "id": "Z-HTscnvoB8" - }, - { - "title": "Sparks - Never Turn Your Back On Mother Earth (Karaoke)", - "id": "MRxUeQ5KRcM" - }, - { - "title": "Alice In Chains - Dam That River (Karaoke)", - "id": "DJRB42tC-_0" - }, - { - "title": "Avril Lavigne - Anything But Ordinary (Karaoke)", - "id": "MBVHRDGJ3vk" - }, - { - "title": "Metric - Breathing Underwater (Karaoke)", - "id": "IG7G0996eIU" - }, - { - "title": "Cassadee Pope - Wasting All These Tears (Karaoke)", - "id": "w6hvafm0D38" - }, - { - "title": "You Me At Six - Lived A Lie (Karaoke)", - "id": "vqIfzY73QJI" - }, - { - "title": "Cassadee Pope - I Wish I Could Break Your Heart (Karaoke)", - "id": "i8ComzVIklU" - }, - { - "title": "Saint Motel - My Type (Karaoke)", - "id": "g5mKgylpcYM" - }, - { - "title": "Andra Day - Rise Up (Karaoke)", - "id": "SdAYxJNFIEM" - }, - { - "title": "Volbeat - Black Rose ft. Danko Jones (Karaoke)", - "id": "dpeQZneRO8M" - }, - { - "title": "The Cheetah Girls - Cinderella (Karaoke)", - "id": "bBjaCgxY8zU" - }, - { - "title": "Diana Krall - I Miss You So (Karaoke)", - "id": "JMcbqKLLpo4" - }, - { - "title": "Flyleaf - Missing (Karaoke)", - "id": "qVC9lt_kJR4" - }, - { - "title": "Live - Lakini's Juice (Karaoke)", - "id": "fnlAoULzNIQ" - }, - { - "title": "Tom Walker - Leave A Light On (Karaoke)", - "id": "TY37i-Vqv6Y" - }, - { - "title": "Mark Collie - Looks Aren't Everything (Karaoke)", - "id": "JVjpnuOUpgY" - }, - { - "title": "Jump5 - Beauty And The Beast (Karaoke)", - "id": "PEzMobDocto" - }, - { - "title": "Ensemble - Beauty and the Beast - Transformation (Karaoke)", - "id": "Bsh6YJj9J2E" - }, - { - "title": "Ensemble - Beauty and the Beast - The Mob Song (Karaoke)", - "id": "7WP8wpSzXTU" - }, - { - "title": "Ensemble - Beauty and the Beast - Something There (Karaoke)", - "id": "uNamxnaTSYE" - }, - { - "title": "Ensemble - Beauty and the Beast - Be Our Guest (Karaoke)", - "id": "f2V_WTP5ADs" - }, - { - "title": "Ensemble - Beauty and the Beast - Gaston (Reprise) (Karaoke)", - "id": "zvpJrvab_LI" - }, - { - "title": "Beauty And The Beast - Prologue (Karaoke)", - "id": "VP0r-MFIQ9o" - }, - { - "title": "Ensemble - Beauty and the Beast - Belle (Reprise) (Karaoke)", - "id": "_IuOJbpK4K0" - }, - { - "title": "Ensemble - Beauty and the Beast - Belle (Karaoke)", - "id": "hI9jUqhvy28" - }, - { - "title": "Ensemble - Beauty and the Beast - Prologue (Beauty And The Beast)", - "id": "-Umjd9jtt6k" - }, - { - "title": "Billy Joel - She's Got A Way (Bite Size Karaoke)", - "id": "znM1V22ZFjM" - }, - { - "title": "Meat Loaf - I'd Do Anything For Love (But I Won't Do That) (Bite Size Karaoke)", - "id": "-3L69yENFYc" - }, - { - "title": "The Cure - Friday, I'm In Love (Bite Size Karaoke)", - "id": "RbH5uRp_7Oc" - }, - { - "title": "Fleetwood Mac - Everywhere (Bite-Size Karaoke)", - "id": "DGO5gEcyUXk" - }, - { - "title": "Madonna - Crazy For You (Bite Size Karaoke)", - "id": "m7xTMU_2xbo" - }, - { - "title": "Juice Newton - Queen Of Hearts (Karaoke)", - "id": "hW7yTv_hO2g" - }, - { - "title": "Marty Robbins - El Paso (Karaoke)", - "id": "YE__yIEevVM" - }, - { - "title": "Lee Greenwood - Godd Bless The U.S.A. (Karaoke)", - "id": "TjSquCvgNE4" - }, - { - "title": "The Judds - Cry Myself To Sleep (Karaoke)", - "id": "wkbpv8fqCJM" - }, - { - "title": "Clint Black - Killin' Time (Karaoke)", - "id": "Gkwxslm2pFY" - }, - { - "title": "Reba McEntire - Love Will Find Its Way To You (Karaoke)", - "id": "UowkKPACQus" - }, - { - "title": "Sheryl Crow - Callin' Me When I'm Lonely (Karaoke)", - "id": "dLkdRcrVbP4" - }, - { - "title": "Blake Shelton, Trace Adkins - Hillbilly Bone (Karaoke)", - "id": "1MwPb9A-E7M" - }, - { - "title": "Luke Bryan - Someone Else Calling You Baby (Karaoke)", - "id": "Bf2TYT6bPfA" - }, - { - "title": "Hunter Hayes - I Want Crazy (Karaoke)", - "id": "v9xx1LtCuhQ" - }, - { - "title": "Susan Haynes - Drinkin' In My Sunday Dress (Karaoke)", - "id": "XvmEL4_1GDo" - }, - { - "title": "Keith Urban - Better Life (Karaoke)", - "id": "pX3KSlCbW3g" - }, - { - "title": "Cassadee Pope - 11 (Karaoke)", - "id": "f-u2Y_-01Ww" - }, - { - "title": "Alan Jackson - Gone Country (Karaoke)", - "id": "Jc6sAxDKQ6o" - }, - { - "title": "Tim McGraw - Humble And Kind (Karaoke)", - "id": "ZDc65GHtpJE" - }, - { - "title": "Right Said Fred - I'm Too Sexy (Karaoke)", - "id": "A63Yeqvo86g" - }, - { - "title": "Boston - Don't Look Back (Karaoke)", - "id": "kfs2fQHidTg" - }, - { - "title": "Peaches and Herb - Shake Your Groove Thing (Karaoke)", - "id": "ssMNCWk1k-g" - }, - { - "title": "Baha Men - Who Let The Dogs Out (Karaoke)", - "id": "yfuKXCDczho" - }, - { - "title": "Billy Ocean - Caribbean Queen (No More Love On the Run) (Karaoke)", - "id": "MO4d6JdpJBU" - }, - { - "title": "Culture Club - Karma Chameleon (Karaoke)", - "id": "ngeF86_zxmY" - }, - { - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Karaoke)", - "id": "d1axakrbjGc" - }, - { - "title": "Freda Payne - Band Of Gold (Karaoke)", - "id": "Cjf0Ii9G-YU" - }, - { - "title": "Lynyrd Skynyrd - Sweet Home Alabama (Karaoke)", - "id": "-odk99MeOfY" - }, - { - "title": "The Charlie Daniels Band - The Devil Went Down To Georgia (Karaoke)", - "id": "3q3Yjs1Us5w" - }, - { - "title": "Chubby Checker - Let's Twist Again (Karaoke)", - "id": "BxnXQDHoYKA" - }, - { - "title": "Starship - We Built This City (Karaoke)", - "id": "yU85ssYC54U" - }, - { - "title": "Billy Joel - Only The Good Die Young (Karaoke)", - "id": "dsQNrN_GJjI" - }, - { - "title": "Three Dog Night - Joy To The World (Karaoke)", - "id": "ln3G2SeTlPY" - }, - { - "title": "Elton John - Crocodile Rock (Karaoke)", - "id": "jvR7lWZg_zQ" - }, - { - "title": "Warrant - Cherry Pie (Karaoke)", - "id": "ffE4eeWTAL4" - }, - { - "title": "OK Go - I Won't Let You Down (Shockbit Remix) (Karaoke)", - "id": "CiOtSApfV6I" - }, - { - "title": "The Script - For The First Time (Karaoke)", - "id": "UCLFu9LLL6Q" - }, - { - "title": "Disclosure, Gregory Porter - Holding On (Karaoke)", - "id": "VRwwiIoi1yg" - }, - { - "title": "Miley Cyrus - Adore You (Karaoke)", - "id": "H88CKZAnPo4" - }, - { - "title": "Jess Glynne - Take Me Home (Karaoke)", - "id": "YWsEV3QS5WU" - }, - { - "title": "Kelly Clarkson - Dark Side (Karaoke)", - "id": "O4kENe7B3Qo" - }, - { - "title": "Miguel - Adorn (Karaoke)", - "id": "H_423skZc0A" - }, - { - "title": "The Decemberists - Make You Better (Karaoke)", - "id": "OOR6V7koCDY" - }, - { - "title": "Florence + The Machine - Ship To Wreck (Karaoke)", - "id": "73L80SK8H8w" - }, - { - "title": "Bring Me The Horizon - Happy Song (Karaoke)", - "id": "6ed3C5SU1HY" - }, - { - "title": "Imagine Dragons - On Top Of The World (Karaoke)", - "id": "1j353LDXtRc" - }, - { - "title": "Death Cab for Cutie - Black Sun (Karaoke)", - "id": "mPXsYzdqSMY" - }, - { - "title": "J. Cole - No Role Modelz (Karaoke)", - "id": "Q6oJVfFgaUA" - }, - { - "title": "George Ezra - Blame It On Me (Karaoke)", - "id": "SLP-OTqSWhM" - }, - { - "title": "Traditional Christmas Songs - It Came Upon A Midnight Clear (Sing-N-Gram)", - "id": "flBeo6c_t1g" - }, - { - "title": "Traditional Christmas Songs - Away In A Manger (Christmas Sing-N-Gram)", - "id": "8p0fILkIzGg" - }, - { - "title": "X Ambassadors - Renegades (Karaoke Smash Hits Vol. 1)", - "id": "L7VNZytWigM" - }, - { - "title": "Breaking Benjamin - Failure (Karaoke Smash Hits Vol. 1)", - "id": "lF5E2boupck" - }, - { - "title": "Maroon 5 - Harder To Breathe", - "id": "Lp9eEF1xZ9E" - }, - { - "title": "Death Cab for Cutie - The Ghosts Of Beverly Drive (Karaoke Smash Hits Vol. 1)", - "id": "U97qPp1bKQg" - }, - { - "title": "Bring Me The Horizon - Throne (Karaoke Smash Hits Vol. 1)", - "id": "NNALMQ71Tsc" - }, - { - "title": "One Direction - More Than This (Karaoke Smash Hits Vol. 1)", - "id": "PyuN30mgqVc" - }, - { - "title": "Eminem, Gwen Stefani - Kings Never Die (Karaoke Smash Hits Vol. 1)", - "id": "7LlNSyK0OnE" - }, - { - "title": "Miguel - Sure Thing (Karaoke Smash Hits Vol. 1)", - "id": "ilVyQxGyJGc" - }, - { - "title": "Imagine Dragons - Roots (Karaoke Smash Hits Vol. 1)", - "id": "blyESgef-Vk" - }, - { - "title": "Little Mix - Secret Love Song (Karaoke Smash Hits Vol. 1)", - "id": "Vs-uVG5PRUA" - }, - { - "title": "Usher - OMG (Karaoke Smash Hits Vol. 1)", - "id": "gIATLFEcj_o" - }, - { - "title": "George Ezra - Budapest (Karaoke Smash Hits Vol. 1)", - "id": "OEbMyvsseoU" - }, - { - "title": "Shawn Mendes - Stitches (Karaoke Smash Hits Vol. 1)", - "id": "lr55gbkQ6mI" - }, - { - "title": "OMI - Cheerleader (Karaoke Smash Hits Vol. 1)", - "id": "8NfhUCgNoY4" - }, - { - "title": "Traditional Christmas Songs - Auld Lang Syne (Sing Together Christmas)", - "id": "jZ6kLyJtjls" - }, - { - "title": "Tom T. Hall - Jolly Old St. Nicholas (Sing Together Christmas)", - "id": "bJSRYVQoL4A" - }, - { - "title": "Mickey Gilley - God Rest Ye Merry Gentlemen (Sing Together Christmas)", - "id": "Upepmk8_30w" - }, - { - "title": "Rock Christmas - Deck The Halls", - "id": "UgAKHBtCli0" - }, - { - "title": "Traditional Christmas Songs - Away In A Manger (Sing Together Christmas)", - "id": "4gaGejSk4Js" - }, - { - "title": "Carpenters - Merry Christmas Darling (Sing Together Christmas)", - "id": "aHs7cdOVmsA" - }, - { - "title": "Traditional Christmas Songs - It Came Upon A Midnight Clear (Sing Together Christmas)", - "id": "LOv7dL-bEGU" - }, - { - "title": "Traditional Christmas Songs - O' Christmas Tree (Sing Together Christmas)", - "id": "9fo4mfYUIZY" - }, - { - "title": "Traditional Christmas Songs - Jingle Bells (Sing Together Christmas)", - "id": "wUWrhKi-x2Y" - }, - { - "title": "Traditional Christmas Songs - Away In A Manger (Sing Together Christmas)", - "id": "A5a5RihLNOg" - }, - { - "title": "Traditional Christmas Songs - Go Tell It On The Mountain (Sing Together Christmas)", - "id": "3z3aPRDlLcI" - }, - { - "title": "NeedToBreathe - Hard Love (Backing Track)", - "id": "NcI6YS88Rc8" - }, - { - "title": "Christine and the Queens - Tilted (Backing Tracks)", - "id": "YFrMgWAT8kU" - }, - { - "title": "Mario Joy - California (Backing Track)", - "id": "PbFT2_onwFA" - }, - { - "title": "Sam Hunt - Make You Miss Me (Backing Track)", - "id": "o5Y4d2fViyU" - }, - { - "title": "Keith Urban - Wasted Time (Backing Track)", - "id": "bjjtGtQzo60" - }, - { - "title": "Hunter Hayes - Wanted (Backing Track)", - "id": "5AeJzfYE3X4" - }, - { - "title": "Nelly - Country Grammar (Backing Track)", - "id": "cYrwiKvRfMA" - }, - { - "title": "Lupe Fiasco - Kick Push (Backing Track)", - "id": "dHgbWd1wvdc" - }, - { - "title": "Florida Georgia Line - H.O.L.Y. (Backing Track)", - "id": "OZUnXpwrz4Y" - }, - { - "title": "Ozark Mountain Daredevils - Jackie Blue (Karaoke)", - "id": "jVsBXaNESps" - }, - { - "title": "Wild Horses - I Will Survive (Karaoke)", - "id": "7yBXTtR_yTM" - }, - { - "title": "Broadway: Dreamgirls, Jennifer Holliday - And I Am Telling You I'm Not Going (Karaoke)", - "id": "6RUf01WoWqk" - } - ], - "@ZoomKaraokeOfficial": [ - { - "title": "The Mavericks - Here Comes My Baby - Karaoke Version from Zoom Karaoke", - "id": "kf38Ocy5F8I" - }, - { - "title": "Caesars - Jerk It Out - Karaoke Version from Zoom Karaoke", - "id": "cg10FeEYSSQ" - }, - { - "title": "Billy Ocean - A Simple Game (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Uq5RBA6bboE" - }, - { - "title": "Mud - Tiger Feet (2025 Remake) - Karaoke Version from Zoom Karaoke", - "id": "xRQxyPT0i3Q" - }, - { - "title": "Marc Hunter - Big City Talk - Karaoke Version from Zoom Karaoke", - "id": "_XFPKFmUbmU" - }, - { - "title": "The Monkees - Pleasant Valley Sunday (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8k9eNIQo6Zo" - }, - { - "title": "Billy Ocean - A Simple Game - Karaoke Version from Zoom Karaoke", - "id": "Xzf-d7x9pgU" - }, - { - "title": "Alvin Stardust - Jealous Mind (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "J--yYfsB5yw" - }, - { - "title": "Warren Zevon - Tenderness On The Block (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "47xJ9cuy3Rw" - }, - { - "title": "MK feat Chrystal - Dior - Karaoke Version from Zoom Karaoke", - "id": "Vw2BquE44zo" - }, - { - "title": "Eddie Cochran - Summertime Blues (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "q2ht0k_DmM8" - }, - { - "title": "Josh Thompson - Cold Beer With Your Name On It - Karaoke Version from Zoom Karaoke", - "id": "hlHCfiTi7DY" - }, - { - "title": "Brian Justin Crum - Creep (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "8KfGIXLd8w8" - }, - { - "title": "The Beatles - Penny Lane (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "AgupGL7MCjk" - }, - { - "title": "Thompson Twins - Sister Of Mercy - Karaoke Version from Zoom Karaoke", - "id": "A39SQvhDXoU" - }, - { - "title": "Benson Boone - Mystical Magical (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-u8NUcdgArc" - }, - { - "title": "Josh Thompson - Cold Beer With Your Name On It (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "Z7-Nq3JyL2I" - }, - { - "title": "Thompson Twins - Sister Of Mercy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9_XeP0Hj4us" - }, - { - "title": "Joe South - Rose Garden - Karaoke Version from Zoom Karaoke", - "id": "1EYq1QfsH0U" - }, - { - "title": "Andy Williams - House Of Bamboo - Karaoke Version from Zoom Karaoke", - "id": "i44lYHTzTog" - }, - { - "title": "Warren Zevon - Tenderness On The Block - Karaoke Version from Zoom Karaoke", - "id": "SkB9rPdDr0k" - }, - { - "title": "Caesars - Jerk It Out (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "BSuKuT71zAU" - }, - { - "title": "Skye Newman - Family Matters - Karaoke Version from Zoom Karaoke", - "id": "xTYyVpaZbDw" - }, - { - "title": "Sabrina Carpenter - Manchild - Karaoke Version from Zoom Karaoke", - "id": "svpQ-5YjUuE" - }, - { - "title": "Ed Sheeran - Sapphire - Karaoke Version from Zoom Karaoke", - "id": "fLX8vgqT0Zk" - }, - { - "title": "Benson Boone - Mr Electric Blue - Karaoke Version from Zoom Karaoke", - "id": "bI2IDRnVyaU" - }, - { - "title": "Benson Boone - Mystical Magical - Karaoke Version from Zoom Karaoke", - "id": "FBwHK641Z28" - }, - { - "title": "Lewis Capaldi - Survive (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2e1ZMxWbK6A" - }, - { - "title": "Elvis Presley - Big Love Big Heartache - Karaoke Version from Zoom Karaoke", - "id": "9zM6LAkwLy4" - }, - { - "title": "Brian Justin Crum - Creep - Karaoke Version from Zoom Karaoke (Radiohead Cover)", - "id": "3RqKXebGsMU" - }, - { - "title": "Ed Sheeran - Azizam (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZskDrO5bCkc" - }, - { - "title": "Marina - Cuntissimo (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "YGhmpZ1pakA" - }, - { - "title": "Elvis Presley - Big Love Big Heartache (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "T6zCHb9sRcQ" - }, - { - "title": "Marina - Cuntissimo - Karaoke Version from Zoom Karaoke", - "id": "WUTvxVUW4ls" - }, - { - "title": "Ed Sheeran feat Luke Combs - Life Goes On (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "hcbFZHSOq20" - }, - { - "title": "Elvis Presley - Kentucky Rain (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cONVnpd9MI8" - }, - { - "title": "Ed Sheeran feat Luke Combs - Life Goes On - Karaoke Version from Zoom Karaoke", - "id": "WpBbQePYELw" - }, - { - "title": "Ed Sheeran - Azizam - Karaoke Version from Zoom Karaoke", - "id": "R-jgDfmsPpg" - }, - { - "title": "David Soul - Going In With My Eyes Open (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PzePXK328g8" - }, - { - "title": "Elvis Presley - Kentucky Rain - Karaoke Version from Zoom Karaoke", - "id": "INcCfXcaZDw" - }, - { - "title": "George Strait - Write This Down (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EXJpxhLARr0" - }, - { - "title": "Randy Travis - Three Wooden Crosses (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "DbP72ZOhBRw" - }, - { - "title": "The Weather Girls - It's Raining Men (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "o28TiCmK9UM" - }, - { - "title": "Tina Turner - The Best (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "iKSitG0NcbI" - }, - { - "title": "George Strait - Write This Down - Karaoke Version from Zoom Karaoke", - "id": "U99D5iM3xB0" - }, - { - "title": "David Soul - Going In With My Eyes Open - Karaoke Version from Zoom Karaoke", - "id": "KlSxLVvq41M" - }, - { - "title": "Bernard Cribbins - Right Said Fred - Karaoke Version from Zoom Karaoke", - "id": "7m3GIJleyPE" - }, - { - "title": "Randy Travis - Three Wooden Crosses - Karaoke Version from Zoom Karaoke", - "id": "1vl1ElNn1-s" - }, - { - "title": "Tina Turner - The Best (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "PpusZiRNoQs" - }, - { - "title": "John Parr - St Elmo's Fire (Man In Motion) (Three Semitones Down) - Karaoke Version from Zoom", - "id": "Ooze7qGEJ5U" - }, - { - "title": "Survivor - Eye Of The Tiger (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "yjwQlJIvQSc" - }, - { - "title": "The Weather Girls - It's Raining Men (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "xdi_1af38Ww" - }, - { - "title": "Pussycat - Mississippi (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "mhAKzXCsQl0" - }, - { - "title": "Doechii - Anxiety (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "maklO18tE5E" - }, - { - "title": "John Parr - St Elmo's Fire (Man In Motion) (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "hooi2gNRDYQ" - }, - { - "title": "Tate McRae - Revolving Door (Clean Version Without Backing Vocals) - Karaoke Version from Zoom", - "id": "dxyFiQIacY4" - }, - { - "title": "Luciano Pavarotti - Nessun Dorma (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "a90-st2Xnbw" - }, - { - "title": "Phil Collins - In The Air Tonight (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "M6gFhX8HUZs" - }, - { - "title": "10cc - Dreadlock Holiday (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "DCqf3zbKAdo" - }, - { - "title": "Barry White - Can't Get Enough Of Your Love, Babe (Two Semitones Up) - Karaoke Version from Zoom", - "id": "5qPgZ0mW5dc" - }, - { - "title": "Barry White - Can't Get Enough Of Your Love, Babe (One Semitone Up) - Karaoke Version from Zoom", - "id": "f2uVcNxLfYY" - }, - { - "title": "4 Non Blondes - What's Up (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "U2UPql8aJbA" - }, - { - "title": "Duran Duran - Hungry Like The Wolf (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "64gC6741g-A" - }, - { - "title": "10cc - Dreadlock Holiday (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nWeme6dGdok" - }, - { - "title": "Tate McRae - Revolving Door - Karaoke Version from Zoom Karaoke", - "id": "YSqI51fzWHI" - }, - { - "title": "Chappell Roan - The Giver (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "gAxnb08BeI8" - }, - { - "title": "Showaddywaddy - Hey Rock And Roll (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "kWupatsQrlY" - }, - { - "title": "Sabrina Carpenter - Busy Woman - Karaoke Version from Zoom Karaoke", - "id": "jhxoRsFw9yE" - }, - { - "title": "The Drifters - I'll Take You Home (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "f70GrzCjFLE" - }, - { - "title": "Lizzo - Still Bad (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TRf9nth3sig" - }, - { - "title": "Tate McRae - Revolving Door (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "RbzgXnOcnx4" - }, - { - "title": "John Paul Young - Love Is In The Air (Two Semitones Down/End Cut) - Karaoke Version from Zoom", - "id": "qk_7XcONGD0" - }, - { - "title": "Crowded House - World Where You Live (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kS2D5bF8fck" - }, - { - "title": "Alex Warren - Ordinary (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Gdb-Vu_oJ6Y" - }, - { - "title": "Randy Travis - Deeper Than The Holler - Karaoke Version from Zoom Karaoke", - "id": "E30dy-eAWqc" - }, - { - "title": "Paper Lace - Billy Don't Be A Hero (Four Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "9n7i9ftgY2o" - }, - { - "title": "Elvis Presley - Good Luck Charm (2025 Remake One Semitone Up) - Karaoke Version from Zoom Karaoke", - "id": "2QN8khy4ec0" - }, - { - "title": "John Paul Young - Love Is In The Air (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "s0arNmguWUk" - }, - { - "title": "Tony Christie - (Is This The Way To) Amarillo (Two Semitones Down/End Cut) - Zoom Karaoke Version", - "id": "8sGdXK24aLk" - }, - { - "title": "George Strait - The Fireman - Karaoke Version from Zoom Karaoke", - "id": "1qFx6WMXPsM" - }, - { - "title": "The Cyrkle - Red Rubber Ball (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "d0_hIPpHAHo" - }, - { - "title": "Elvis Presley - Good Luck Charm (2025 Remake Without Backing Vocals) - Karaoke Version from Zoom", - "id": "C1tgnmMfx28" - }, - { - "title": "Luke Combs - Where The Wild Things Are (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-orJC5C_jDY" - }, - { - "title": "Elvis Presley - Good Luck Charm (2025 Remake) - Karaoke Version from Zoom Karaoke", - "id": "yO1l7FCUTVQ" - }, - { - "title": "Len Barry - 1-2-3 (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qkPZNafLAFY" - }, - { - "title": "Waylon Jennings feat Willie Nelson - Luckenbach, Texas (Back To The Basics Of Love) (Without BVs)", - "id": "coNbvA3nZSU" - }, - { - "title": "Bay City Rollers - Bye Bye Baby (Two Semitones Down/End Cut Down) - Karaoke Version from Zoom", - "id": "FrdCxWvys5c" - }, - { - "title": "The Cyrkle - Red Rubber Ball - Karaoke Version from Zoom Karaoke", - "id": "FRGSz0LRjCk" - }, - { - "title": "Tony Christie - (Is This The Way To) Amarillo (Two Semitones Down) - Karaoke Version from Zoom", - "id": "-y_17tsEyY0" - }, - { - "title": "Dion - The Wanderer (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "tO9ufN8Lwb8" - }, - { - "title": "Keith Marshall - Only Crying (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "d6txt418TgY" - }, - { - "title": "Johnny Burnette - You're Sixteen (One Semitone Down) - Karaoke Version from Zoom Karaoke", - "id": "WdzLp9JuroA" - }, - { - "title": "Chris Andrews - Yesterday Man (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "UptwlwJGyTo" - }, - { - "title": "Len Barry - 1-2-3 - Karaoke Version from Zoom Karaoke", - "id": "F9miJnVi9j8" - }, - { - "title": "Crowded House - Into Temptation - Karaoke Version from Zoom Karaoke", - "id": "5Y5EqoIpi6I" - }, - { - "title": "Connie Francis - Pretty Little Baby (I'm So In Love With You) - Karaoke Version from Zoom Karaoke", - "id": "IaHZm4-SGgw" - }, - { - "title": "Gerry Rafferty - Baker Street (Cut Down Intro) - Karaoke Version from Zoom Karaoke", - "id": "zmvTif54OQw" - }, - { - "title": "Chris Andrews - Yesterday Man (Three Semitones Down/End Cut) - Karaoke Version from Zoom Karaoke", - "id": "wgMsEzwiHuk" - }, - { - "title": "Drake Milligan - Over Drinkin' Under Thinkin' (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "lnY7jFhzmBQ" - }, - { - "title": "Billy Swan - I Can Help (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "FoHxzLAIyWM" - }, - { - "title": "Keith Marshall - Only Crying - Karaoke Version from Zoom Karaoke", - "id": "DUGocQIf5dQ" - }, - { - "title": "Bay City Rollers - I Only Want To Be With You (Two Semitones Down) - Karaoke Version from Zoom", - "id": "7-WSIPXYik8" - }, - { - "title": "Jackson Browne - Somebody's Baby (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "yyK3W9XMRTE" - }, - { - "title": "The Cranberries - Zombie (Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "iiH9oH7dOlY" - }, - { - "title": "Warren Zevon - Johnny Strikes Up The Band (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "eCYqhdcV-yc" - }, - { - "title": "Alvin Stardust - Got A Little Heartache (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "QQ64P7m3mk0" - }, - { - "title": "Pepsi & Shirlie - Heartache - Karaoke Version from Zoom Karaoke", - "id": "eAi1nl92u3M" - }, - { - "title": "Rocky Sharpe And The Replays - Quarter To Three - Karaoke Version from Zoom Karaoke", - "id": "M5KhPFVijsg" - }, - { - "title": "Rihanna - Breakin' Dishes - Karaoke Version from Zoom Karaoke", - "id": "kNjdiAJOdt0" - }, - { - "title": "Warren Zevon - Johnny Strikes Up The Band - Karaoke Version from Zoom Karaoke", - "id": "g5og7GCEAT8" - }, - { - "title": "Rocky Sharpe And The Replays - Quarter To Three (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "Zs3nNuSchxU" - }, - { - "title": "The Tremeloes - Here Comes My Baby (Intro Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "XvmVZERJpI8" - }, - { - "title": "Bon Jovi feat LeAnn Rimes - Till We Ain't Strangers Anymore - Karaoke Version from Zoom Karaoke", - "id": "BEraMxh-bfM" - }, - { - "title": "Ray Smith - Right Behind You Baby - Karaoke Version from Zoom Karaoke", - "id": "6pVtThFZlXQ" - }, - { - "title": "Spiller feat Sophie Ellis-Bextor - Groovejet (If This Ain't Love) - Karaoke Version from Zoom", - "id": "wMx-ue23GyI" - }, - { - "title": "Buddy Holly - The Buddy Holly Trilogy - Karaoke Version from Zoom Karaoke", - "id": "Tfw-apV6A6g" - }, - { - "title": "Boyzone - I Love The Way You Love Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "LwyRNllN8xc" - }, - { - "title": "Jackson Browne - Running On Empty (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Dby0WmQkJps" - }, - { - "title": "Jackson Browne - Somebody's Baby - Karaoke Version from Zoom Karaoke", - "id": "Bn-N0dhNHpI" - }, - { - "title": "Pepsi & Shirlie - Heartache (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "4iXsDJfqMRU" - }, - { - "title": "Suzi Quatro - Four Letter Words - Karaoke Version from Zoom Karaoke", - "id": "aKi5HkjtTqk" - }, - { - "title": "Dean Lewis - How Do I Say Goodbye (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "xVWfui85lM8" - }, - { - "title": "Marina - Butterfly (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "l34tbTnZl8o" - }, - { - "title": "Alvin Stardust - Got A Little Heartache - Karaoke Version from Zoom Karaoke", - "id": "YSPlWtWV66s" - }, - { - "title": "Jessica Mauboy - We Got Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "O3G-O-2mdYg" - }, - { - "title": "Jackson Browne - Running On Empty - Karaoke Version from Zoom Karaoke", - "id": "Fy0Y2n0doGY" - }, - { - "title": "Boyzone - I Love The Way You Love Me - Karaoke Version from Zoom Karaoke", - "id": "FLHrWAusPsY" - }, - { - "title": "Kendrick Lamar & SZA - Luther - Karaoke Version from Zoom Karaoke", - "id": "Yymi7cYONz8" - }, - { - "title": "Doechii - Anxiety - Karaoke Version from Zoom Karaoke", - "id": "X4qEg4qVzwA" - }, - { - "title": "Teddy Swims - The Teddy Swims Medley - Karaoke Version from Zoom Karaoke", - "id": "M6_9uJuKSi8" - }, - { - "title": "Sabrina Carpenter - Busy Woman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "5xaGjGVatTA" - }, - { - "title": "Tate McRae - Revolving Door (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "4nncJHpE3qs" - }, - { - "title": "10cc - I'm Not In Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "23q7vsbVWNI" - }, - { - "title": "The Fifth Dimension - Aquarius/Let The Sunshine In (End Cut Down) (Without Backing Vocals) - Karaoke", - "id": "GiDrOgYBXRA" - }, - { - "title": "The Beatles - If I Fell (Only John Lennon Parts) - Karaoke Version from Zoom Karaoke", - "id": "JkvNtMeUjBo" - }, - { - "title": "Jessica Mauboy - We Got Love - Karaoke Version from Zoom Karaoke", - "id": "sRiXdWtUeLE" - }, - { - "title": "Terry Dene - A White Sport Coat (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "POPgaqqZLKg" - }, - { - "title": "Stray Cats - I Won't Stand In Your Way (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "3tKinFXA4OU" - }, - { - "title": "Sabrina Carpenter - 15 Minutes - Karaoke Version from Zoom Karaoke", - "id": "JDEVGUvAq_o" - }, - { - "title": "Dean Lewis - How Do I Say Goodbye - Karaoke Version from Zoom Karaoke", - "id": "HwW-z01wstY" - }, - { - "title": "Elton John & Brandi Carlile - Who Believes In Angels (Without Backing Vocals) - Karaoke Version", - "id": "EuS8Xk281Qk" - }, - { - "title": "The Mudlarks - The Book Of Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "OpdDENFLOdg" - }, - { - "title": "Stray Cats - I Won't Stand In Your Way - Karaoke Version from Zoom Karaoke", - "id": "vJxD2i7KF5I" - }, - { - "title": "Buddy Holly - Rave On (2025 Remake Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WnLin0kZKso" - }, - { - "title": "Spiller feat Sophie Ellis-Bextor - Groovejet (If This Ain't Love) (Without Backing Vocals) - Karaoke", - "id": "Pyj5woY18fc" - }, - { - "title": "Sabrina Carpenter - 15 Minutes (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "JxSAfy7bwec" - }, - { - "title": "Terry Dene - A White Sport Coat - Karaoke Version from Zoom Karaoke", - "id": "4Uizg7QO05E" - }, - { - "title": "Cliff Richard & The Shadows - Nine Times Out Of Ten - Karaoke Version from Zoom Karaoke", - "id": "n26Q0HsSvnU" - }, - { - "title": "Lady Gaga - Abracadabra (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "MclzOh2BZEg" - }, - { - "title": "The Mudlarks - The Book Of Love - Karaoke Version from Zoom Karaoke", - "id": "LdxqrSf-2uI" - }, - { - "title": "Buddy Holly - Rave On (2025 Remake) - Karaoke Version from Zoom Karaoke", - "id": "LIetugZhQe4" - }, - { - "title": "Tony Orlando - Bless You - Karaoke Version from Zoom Karaoke", - "id": "C9iubXjo3po" - }, - { - "title": "Alvin Stardust - Got A Little Heartache (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9orOqJfZTVs" - }, - { - "title": "Randy Travis - Deeper Than The Holler (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "AkKrHfHXnps" - }, - { - "title": "George Strait - The Fireman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "k0RGoLwouMo" - }, - { - "title": "Chappell Roan - The Giver - Karaoke Version from Zoom Karaoke", - "id": "eOWwg7TLCOE" - }, - { - "title": "Bay City Rollers - Bye Bye Baby (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "HFayBQ60CPE" - }, - { - "title": "Waylon Jennings feat Willie Nelson - Luckenbach, Texas (Back To The Basics Of Love) - Zoom Karaoke", - "id": "0tLUtKa75Hg" - }, - { - "title": "Miss Benidorm - Oh Benidorm (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Kibcbx4DeoA" - }, - { - "title": "Crowded House - World Where You Live - Karaoke Version from Zoom Karaoke", - "id": "a0cYa2CIHuI" - }, - { - "title": "Billy Ocean - Caribbean Queen (No More Love On The Run) (Two Semitones Down) - Zoom Karaoke Version", - "id": "Rrgb0kjN_7I" - }, - { - "title": "Lizzo - Still Bad - Karaoke Version from Zoom Karaoke", - "id": "LJc9WM1XStA" - }, - { - "title": "The Drifters - I'll Take You Home - Karaoke Version from Zoom Karaoke", - "id": "AU58iz90RfM" - }, - { - "title": "10cc - The Things We Do For Love (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "33GAYs4-9Ng" - }, - { - "title": "A-Ha - Take On Me (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "M2iQ6fFGbk0" - }, - { - "title": "Sabrina Carpenter - Bad Reviews - Karaoke Version from Zoom Karaoke", - "id": "qfUXH2yWZfQ" - }, - { - "title": "Mark Wynter - Venus In Blue Jeans (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WjAPCsl_1dc" - }, - { - "title": "Sam Fender - Arm's Length - Karaoke Version from Zoom Karaoke", - "id": "NddCRFtV3js" - }, - { - "title": "Tony Orlando - Bless You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ABqbPIXj_Ko" - }, - { - "title": "Lady Gaga - Abracadabra - Karaoke Version from Zoom Karaoke", - "id": "86e8kVyfl0M" - }, - { - "title": "Johnny Preston - Cradle Of Love (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "k_3-NA7SeuU" - }, - { - "title": "PJ Proby - Hold Me - Karaoke Version from Zoom Karaoke", - "id": "tyeYf_GlbOI" - }, - { - "title": "Mark Wynter - It's Almost Tomorrow (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kcKfLOPvDzo" - }, - { - "title": "Johnny Preston - Cradle Of Love - Karaoke Version from Zoom Karaoke", - "id": "gAZ9zt9ql7Q" - }, - { - "title": "Boyzone - Every Day I Love You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cdXpumZurew" - }, - { - "title": "Teddy Swims - Guilty - Karaoke Version from Zoom Karaoke", - "id": "V4UC-G4O5WI" - }, - { - "title": "Mark Wynter - Venus In Blue Jeans - Karaoke Version from Zoom Karaoke", - "id": "UokutZnQPHc" - }, - { - "title": "Sam Fender - Arm's Length (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iBAMyqI-ns4" - }, - { - "title": "Mark Wynter - It's Almost Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "KcnIBXF-SK0" - }, - { - "title": "Teddy Swims - Guilty (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "H_I9dzGdPbI" - }, - { - "title": "PJ Proby - Hold Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "DOHHptuitp4" - }, - { - "title": "Johnny Preston - Cradle Of Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "R3fYyOkbk38" - }, - { - "title": "Boyzone - Every Day I Love You - Karaoke Version from Zoom Karaoke", - "id": "3MV3cQ40UCY" - }, - { - "title": "Lola Young - Messy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vT0FflGTLL4" - }, - { - "title": "Bobby Vee - A Forever Kind Of Love - Karaoke Version from Zoom Karaoke", - "id": "kP2S3q7vuWo" - }, - { - "title": "Tate McRae - Sports Car (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iTSV39e9XSY" - }, - { - "title": "Lance Fortune - Be Mine (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "J0aBpF0KrEA" - }, - { - "title": "Bobby Vee - Take Good Care Of My Baby (2025 Remake Without Backing Vocals) - Zoom Karaoke Version", - "id": "BIfpqNxRXLM" - }, - { - "title": "Urban Cookie Collective - The Key: The Secret (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "AbPdycq6w5A" - }, - { - "title": "Tate McRae - Sports Car - Karaoke Version from Zoom Karaoke", - "id": "OVjbaL6H1DY" - }, - { - "title": "Urban Cookie Collective - The Key: The Secret - Karaoke Version from Zoom Karaoke", - "id": "m55uHohlOeU" - }, - { - "title": "The Searchers - Sugar And Spice (2025 Remake/Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "_sSHykkd5Fk" - }, - { - "title": "Bobby Vee - Take Good Care Of My Baby (2025 Remake) - Karaoke Version from Zoom Karaoke", - "id": "2xFHheoHI84" - }, - { - "title": "Lola Young - Messy - Karaoke Version from Zoom Karaoke", - "id": "z0MpdZA3cSU" - }, - { - "title": "Lance Fortune - Be Mine - Karaoke Version from Zoom Karaoke", - "id": "S7-gsbmIRO4" - }, - { - "title": "Bobby Vee - A Forever Kind Of Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-QJf7-EI2XY" - }, - { - "title": "The Fourmost - A Little Loving (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "v6H6B3TFN5Y" - }, - { - "title": "The Searchers - Sugar And Spice (2025 Remake Without Backing Vocals) - Karaoke Version from Zoom", - "id": "Rw8iOyfbFjA" - }, - { - "title": "Kaoma - Lambada - Karaoke Version from Zoom Karaoke", - "id": "BANEkqCk5D0" - }, - { - "title": "Bobby Vee - The Night Has A Thousand Eyes (2025 Remake Without Backing Vocals) - Karaoke Version", - "id": "9Nq8n4Xjals" - }, - { - "title": "Bob Dylan - Don't Think Twice, It's All Right (Minus Harmonica) - Karaoke Version from Zoom Karaoke", - "id": "gSYz_HLJJJ4" - }, - { - "title": "Myles Smith - Nice To Meet You - Karaoke Version from Zoom Karaoke", - "id": "5XiAHqiJgCQ" - }, - { - "title": "Marina - Butterfly - Karaoke Version from Zoom Karaoke", - "id": "tHSgEsadgkQ" - }, - { - "title": "Rihanna - Breakin' Dishes (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ozqa9FbX6Bc" - }, - { - "title": "Drake Milligan - Over Drinkin' Under Thinkin' - Karaoke Version from Zoom Karaoke", - "id": "RhyEcyVvfH8" - }, - { - "title": "Elton John & Brandi Carlile - Who Believes In Angels - Karaoke Version from Zoom Karaoke", - "id": "BKTISqFU3yM" - }, - { - "title": "Luke Combs - Where The Wild Things Are - Karaoke Version from Zoom Karaoke", - "id": "v-mTIPUoexg" - }, - { - "title": "Sophie Ellis-Bextor - The Sophie Ellis-Bextor Medley - Karaoke Version from Zoom Karaoke", - "id": "ZsIL_7KIWZA" - }, - { - "title": "Laufey - From The Start - Karaoke Version from Zoom Karaoke", - "id": "Qn0qZZwFSc4" - }, - { - "title": "Warren Zevon - Lawyers, Guns And Money - Karaoke Version from Zoom Karaoke", - "id": "P8Hyu6QqfEk" - }, - { - "title": "Alex Warren - Ordinary - Karaoke Version from Zoom Karaoke", - "id": "2hYb_efW2js" - }, - { - "title": "Neil Sedaka - Little Devil (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "a2tboYQ3G1Y" - }, - { - "title": "The Searchers - Sugar And Spice (2025 Remake) - Karaoke Version from Zoom Karaoke", - "id": "PMvvUZsKjKc" - }, - { - "title": "Bobby Vee - The Night Has A Thousand Eyes (2025 Remake) - Karaoke Version from Zoom Karaoke", - "id": "JzrgmfZvVac" - }, - { - "title": "Bob Dylan - Don't Think Twice, It's All Right - Karaoke Version from Zoom Karaoke", - "id": "HKTCZKV8gXE" - }, - { - "title": "Myles Smith - Nice To Meet You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "AkYF2Pqx1m4" - }, - { - "title": "The Fourmost - A Little Loving - Karaoke Version from Zoom Karaoke", - "id": "-4d1zM0CLMw" - }, - { - "title": "Billy Fury - Halfway To Paradise (One Semitone Up) - Karaoke Version from Zoom Karaoke", - "id": "g0KaVT_fU_Y" - }, - { - "title": "The Four Pennies - Juliet (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Dr5J_YjxVfQ" - }, - { - "title": "Buddy Holly - Maybe Baby (2025 Remake Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "BiMBTUulGQU" - }, - { - "title": "Drake Milligan - Sounds Like Something I'd Do (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "0NDzmFK05bs" - }, - { - "title": "Calum Scott - My World - Karaoke Version from Zoom Karaoke", - "id": "xVCmott8-zw" - }, - { - "title": "The Drifters - You're More Than A Number In My Little Red Book (Two Semitones Down) - Zoom Karaoke", - "id": "19xmF6mc47M" - }, - { - "title": "The Drifters - Kissin' In The Back Row Of The Movies (Two Semitones Down) - Zoom Karaoke Version", - "id": "p0w4unFIbBs" - }, - { - "title": "Drake Milligan - Sounds Like Something I'd Do - Karaoke Version from Zoom Karaoke", - "id": "kPa6lKIvt_I" - }, - { - "title": "Freddie And The Dreamers - I'm Telling You Now (Two Semitones Down) - Karaoke Version from Zoom", - "id": "hj2RMZGqR2U" - }, - { - "title": "Queen - Somebody To Love (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "gOrqh-wECiE" - }, - { - "title": "Calum Scott - My World (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TZkmn3w5X1g" - }, - { - "title": "The Drifters - The Drifters Medley (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "4CQU46crTGU" - }, - { - "title": "Buddy Holly - Maybe Baby (2025 Remake) - Karaoke Version from Zoom Karaoke", - "id": "rfcJ-hUBtAA" - }, - { - "title": "Neil Sedaka - Little Devil (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nJjNyeaml7w" - }, - { - "title": "The Exciters - Tell Him (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "eTy_iXUPBL8" - }, - { - "title": "The Four Pennies - Juliet - Karaoke Version from Zoom Karaoke", - "id": "J7IdcIa8DNQ" - }, - { - "title": "Freddie And The Dreamers - I'm Telling You Now (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "68z83PMXpMA" - }, - { - "title": "The Drifters - Down On The Beach Tonight (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "2G6eNQMLE2A" - }, - { - "title": "The Exciters - Tell Him - Karaoke Version from Zoom Karaoke", - "id": "t1Ue73C4Icg" - }, - { - "title": "Cliff Richard - A Girl Like You - Karaoke Version from Zoom Karaoke", - "id": "abE12hzCNVs" - }, - { - "title": "The Avons - Seven Little Girls Sitting In The Back Seat (Duet Version) - Karaoke Version from Zoom", - "id": "UmFgZB-DqdY" - }, - { - "title": "The Nolans - Gotta Pull Myself Together - Karaoke Version from Zoom Karaoke", - "id": "OIm4zMNSOx8" - }, - { - "title": "Counting Crows - Big Yellow Taxi (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Hf608_ueQUw" - }, - { - "title": "Freddie And The Dreamers - I'm Telling You Now - Karaoke Version from Zoom Karaoke", - "id": "9GSr0k0QgPI" - }, - { - "title": "The Beatles - Twist And Shout (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "It-Qvzhaq4k" - }, - { - "title": "Counting Crows - Big Yellow Taxi - Karaoke Version from Zoom Karaoke", - "id": "3L4H5ylNjtE" - }, - { - "title": "The Nolans - Gotta Pull Myself Together (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "yiAcytifv60" - }, - { - "title": "Brenda Lee - Emotions (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "y5v_BJbo9qs" - }, - { - "title": "Trini Lopez - If I Had A Hammer - Karaoke Version from Zoom Karaoke", - "id": "KBuWTBXPBRM" - }, - { - "title": "Eden Kane - Well I Ask You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "3nihOqjcjmk" - }, - { - "title": "Shakin' Stevens - Oh Julie (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "z-v0o4h55s8" - }, - { - "title": "Gene Pitney - 24 Hours From Tulsa (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "xc3HMtP6l_M" - }, - { - "title": "Brenda Lee - Emotions - Karaoke Version from Zoom Karaoke", - "id": "kwMIAln3q3w" - }, - { - "title": "The Beatles - I Saw Her Standing There (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "Ol7M4SwhWaw" - }, - { - "title": "Shakin' Stevens - A Love Worth Waiting For (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "97_wB1dKWlE" - }, - { - "title": "Eden Kane - Well I Ask You - Karaoke Version from Zoom Karaoke", - "id": "5I6LhW7POgA" - }, - { - "title": "Neil Sedaka - Little Devil - Karaoke Version from Zoom Karaoke", - "id": "zm9SWdKlUes" - }, - { - "title": "Neil Diamond - Forever In Blue Jeans (2025 Remake) - Karaoke Version from Zoom Karaoke", - "id": "UhQu8uR-qtA" - }, - { - "title": "Jimmy Jones - Good Timin' (Four Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "S20XAX6rIoU" - }, - { - "title": "Little Richard - Baby Face (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "EQoL4p5vC_c" - }, - { - "title": "Brenda Lee - Pretend (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "CuduswaSmyQ" - }, - { - "title": "Johnny Tillotson - Poetry In Motion (One Semitone Up / End Cut Down) - Karaoke Version from Zoom", - "id": "4Qm5mvr-Ba0" - }, - { - "title": "Foster And Allen - Galway Bay (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "lXA6hrdqp7g" - }, - { - "title": "Brenda Lee - Always On My Mind - Karaoke Version from Zoom Karaoke", - "id": "QD3HXaXQ6Ms" - }, - { - "title": "Brenda Lee - Pretend - Karaoke Version from Zoom Karaoke", - "id": "KXGjuf9nsbM" - }, - { - "title": "Elvis Presley - She's Not You (Two Semitones Up) - Karaoke Version from Zoom Karaoke", - "id": "KI45Fzs-J-4" - }, - { - "title": "Cass Elliot - Baby I'm Yours (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "HVsZImCFazs" - }, - { - "title": "Cliff Richard - Please Don't Tease (Two Semitones Up) - Karaoke Version from Zoom Karaoke", - "id": "AgBHMO_3DK0" - }, - { - "title": "Little Richard - Baby Face - Karaoke Version from Zoom Karaoke", - "id": "S61NjJqWESg" - }, - { - "title": "Tammy Wynette - Satin Sheets (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "QFgfHpZGzT8" - }, - { - "title": "Cass Elliot - Baby I'm Yours - Karaoke Version from Zoom Karaoke", - "id": "Q93RHYRTk9w" - }, - { - "title": "Showaddywaddy - Pretty Little Angel Eyes (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "7Gt_SAUVel8" - }, - { - "title": "Brenda Lee - Always On My Mind (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2XyATHCpk9c" - }, - { - "title": "Foster And Allen - Galway Bay - Karaoke Version from Zoom Karaoke", - "id": "-HO5BgBOb_0" - }, - { - "title": "Nate Smith - Whiskey On You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "mAbXK5aqTR4" - }, - { - "title": "Foster And Allen - I Love You More And More Every Day - Karaoke Version from Zoom Karaoke", - "id": "dESFhWDEdtU" - }, - { - "title": "Foster And Allen - Gold And Silver Days (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WHxhGh6yIE0" - }, - { - "title": "Brenda Lee - The End Of The World - Karaoke Version from Zoom Karaoke", - "id": "LPCwhEhjB58" - }, - { - "title": "Brenda Lee - Someone To Love Me (The Prisoner's Song) (Without Backing Vocals) - Karaoke Version", - "id": "BwRH4L5WYkI" - }, - { - "title": "Brenda Lee - Break It To Me Gently - Karaoke Version from Zoom Karaoke", - "id": "8D34osdcRjI" - }, - { - "title": "Foster And Allen - I Love You More And More Every Day (Without Backing Vocals) - Karaoke Version", - "id": "iQ8QwOuLhtM" - }, - { - "title": "Nat 'King' Cole - The Nat 'King' Cole Medley - Karaoke Version from Zoom Karaoke", - "id": "KDojmbx9_2M" - }, - { - "title": "Matt Monro - The Matt Monro Medley - Karaoke Version from Zoom Karaoke", - "id": "IxpX6BshEV8" - }, - { - "title": "Nate Smith - Whiskey On You - Karaoke Version from Zoom Karaoke", - "id": "Au_MwEN7IyA" - }, - { - "title": "Sabrina Carpenter - The Sabrina Carpenter Medley - Karaoke Version from Zoom Karaoke", - "id": "_-DUJckkmkM" - }, - { - "title": "Tom Jones - The Tom Jones Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "62q_xiwepvY" - }, - { - "title": "Neil Sedaka - Oh Carol (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "2h_4Iinf-vg" - }, - { - "title": "Luke Combs - The Luke Combs Fast Medley - Karaoke Version from Zoom Karaoke", - "id": "rPXr4eqjF5Y" - }, - { - "title": "Luke Combs - The Luke Combs Slow Medley - Karaoke Version from Zoom Karaoke", - "id": "WCHs_67VuX8" - }, - { - "title": "Eric Clapton - Promises (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "KStCg2cWQHs" - }, - { - "title": "Sam Fender - People Watching (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "5TZ-fljlDl0" - }, - { - "title": "The Rolling Stones - Dandelion (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2VglFNseaVc" - }, - { - "title": "Ini Kamoze - Here Comes The Hotstepper - Karaoke Version from Zoom Karaoke", - "id": "msBo3A7Swl0" - }, - { - "title": "Mama Cass - The Mama Cass Medley - Karaoke Version from Zoom Karaoke", - "id": "bNtbqKMu-RI" - }, - { - "title": "Barry Manilow - The Barry Manilow Fast Medley - Karaoke Version from Zoom Karaoke", - "id": "EDweFt_nXek" - }, - { - "title": "Sam Fender - People Watching - Karaoke Version from Zoom Karaoke", - "id": "BL4ZKbD6zuA" - }, - { - "title": "Barry Manilow - The Barry Manilow Slow Medley - Karaoke Version from Zoom Karaoke", - "id": "4iEoQs6LVyY" - }, - { - "title": "Neil Sedaka - Oh Carol (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1otLEXX3oVU" - }, - { - "title": "Patsy Cline - Why Can't He Be You - Karaoke Version from Zoom Karaoke", - "id": "s108k8YIVkg" - }, - { - "title": "Billy Joel - Only The Good Die Young (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "oTZg_baYqK0" - }, - { - "title": "Gracie Abrams - That's So True - Karaoke Version from Zoom Karaoke", - "id": "n8eqMXSabHI" - }, - { - "title": "The Beatles - Two Of Us - Karaoke Version from Zoom Karaoke", - "id": "lLZRDdDIm6w" - }, - { - "title": "Chappell Roan - The Chappell Roan Medley - Karaoke Version from Zoom Karaoke", - "id": "dJysK-Pz7OU" - }, - { - "title": "Ini Kamoze - Here Comes The Hotstepper (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "BgiS-F8_gCU" - }, - { - "title": "Bobby Vee - Walkin' With My Angel (Minus High Harmony) - Karaoke Version from Zoom Karaoke", - "id": "zBubYHVnBtM" - }, - { - "title": "Patsy Cline - Why Can't He Be You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Kr1rZPdz0pM" - }, - { - "title": "Gracie Abrams - That's So True (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "JZgjOT2Ekuk" - }, - { - "title": "Shakin' Stevens - The Best Christmas Of Them All (End Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "4Ti7AtXNT34" - }, - { - "title": "Tammy Wynette - Satin Sheets - Karaoke Version from Zoom Karaoke", - "id": "4B66yXf-Uoc" - }, - { - "title": "Billy Joel - Only The Good Die Young - Karaoke Version from Zoom Karaoke", - "id": "0wpFRiYGki0" - }, - { - "title": "Brenda Lee - Someone To Love Me (The Prisoner's Song) - Karaoke Version from Zoom Karaoke", - "id": "r6VVRQdeD74" - }, - { - "title": "Brenda Lee - Break It To Me Gently (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qKosYYcVAJU" - }, - { - "title": "Brenda Lee - The End Of The World (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jym4UtIovJ8" - }, - { - "title": "Brian Poole And The Tremeloes - Do You Love Me (Two Semitones Down) - Karaoke Version from Zoom", - "id": "bgVgNAG_CBQ" - }, - { - "title": "The Drifters - Hello Happiness (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "MwADfYvAr84" - }, - { - "title": "Foster And Allen - Gold And Silver Days - Karaoke Version from Zoom Karaoke", - "id": "KEPinN32cAY" - }, - { - "title": "Bay City Rollers - Be My Baby (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qnINYr2yz3s" - }, - { - "title": "Morgan Wallen - Love Somebody (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Q9WiYu8dxDo" - }, - { - "title": "The Red Clay Strays - Wondering Why - Karaoke Version from Zoom Karaoke", - "id": "NoXm3zZPlmU" - }, - { - "title": "Wizzard - I Wish It Could Be Christmas Everyday (Three Semitones Down/Cut Down) - Karaoke Version", - "id": "GFjVqDGqzMI" - }, - { - "title": "The Drifters - Hello Happiness (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "BlDmLzeDQ3s" - }, - { - "title": "Brian Poole And The Tremeloes - Do You Love Me (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "2KChpzyHQGU" - }, - { - "title": "Barry Mann - Who Put The Bomp (In The Bomp, Bomp, Bomp) (Talking Section Removed) - Karaoke Version", - "id": "o4eXrlXBaSw" - }, - { - "title": "Bay City Rollers - Be My Baby - Karaoke Version from Zoom Karaoke", - "id": "Z6GlqIO9Nr0" - }, - { - "title": "Duran Duran - Evil Woman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "YTPZ2IXzUbE" - }, - { - "title": "Morgan Wallen - Love Somebody - Karaoke Version from Zoom Karaoke", - "id": "Jsc4anXwyB4" - }, - { - "title": "Wizzard - I Wish It Could Be Christmas Everyday (Three Semitones Down) - Karaoke Version from Zoom", - "id": "Av4RQ9EdQRg" - }, - { - "title": "Ella Henderson - Filthy Rich - Karaoke Version from Zoom Karaoke", - "id": "9fUnsleevAk" - }, - { - "title": "Sabrina Carpenter - A Nonsense Christmas (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "jMZzuym8O38" - }, - { - "title": "Lady Gaga - Disease - Karaoke Version from Zoom Karaoke", - "id": "dUG5L8WY2yU" - }, - { - "title": "Ella Henderson - Filthy Rich (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "b9CXgHQHLNY" - }, - { - "title": "McFly - Obviously (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PkhezTD9fOI" - }, - { - "title": "Johnny Kidd & The Pirates - I'll Never Get Over You (Without Backing Vocals) - Zoom Karaoke Version", - "id": "HLScrpVF9iM" - }, - { - "title": "Duran Duran - Evil Woman - Karaoke Version from Zoom Karaoke", - "id": "5glhg-ipdvg" - }, - { - "title": "Lady Gaga - Disease (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "dA68SJ-cXbk" - }, - { - "title": "Rose & Bruno Mars - APT - Karaoke Version from Zoom Karaoke", - "id": "aTFdsNg_8Ro" - }, - { - "title": "Mud - Lonely This Christmas (Spoken Part Cut) - Karaoke Version from Zoom Karaoke", - "id": "_nOne-rWZh0" - }, - { - "title": "Josh Turner - Would You Go With Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "JL7y4ZmFwBM" - }, - { - "title": "Johnny Kidd & The Pirates - I'll Never Get Over You - Karaoke Version from Zoom Karaoke", - "id": "5M2ZmgG6FrQ" - }, - { - "title": "The Fortunes - You've Got Your Troubles (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "1WX5X65FvyU" - }, - { - "title": "Alex Warren - Carry You Home (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ooCotCHtzLE" - }, - { - "title": "Josh Turner - Would You Go With Me - Karaoke Version from Zoom Karaoke", - "id": "oJhRbWcTdUI" - }, - { - "title": "Emmylou Harris - Save The Last Dance For Me (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "grk-utliZho" - }, - { - "title": "Robbie Williams - Forbidden Road (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZuW6ErRwS4o" - }, - { - "title": "Shanice - I Love Your Smile (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "UTY4f82Yb8I" - }, - { - "title": "The Fortunes - You've Got Your Troubles (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "GD2jty0xfrg" - }, - { - "title": "Loretta Lynn - Don't Come Home A Drinkin' - Karaoke Version from Zoom Karaoke", - "id": "tKNQe6VsU0U" - }, - { - "title": "Gallagher And Lyle - I Wanna Stay With You (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "smELm_Wr6c4" - }, - { - "title": "Emmylou Harris - Tulsa Queen (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kCRHn-bj8lQ" - }, - { - "title": "Elliot James Reay - Boy In Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "avBywYRXmS4" - }, - { - "title": "Shanice - I Love Your Smile - Karaoke Version from Zoom Karaoke", - "id": "W5TwQSk-frM" - }, - { - "title": "Alex Warren - Carry You Home - Karaoke Version from Zoom Karaoke", - "id": "mu6isfPXOVk" - }, - { - "title": "Luke Combs - She Got The Best Of Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "zCmDIuNDk-8" - }, - { - "title": "Loretta Lynn - Don't Come Home A Drinkin' (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "rsRpKvec-hs" - }, - { - "title": "Emmylou Harris - Tulsa Queen - Karaoke Version from Zoom Karaoke", - "id": "p4gE7hFMbMc" - }, - { - "title": "The Four Tops - When She Was My Girl (End Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "dBhv4l72joc" - }, - { - "title": "Gallagher And Lyle - I Wanna Stay With You (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "b4mGYUsiCpM" - }, - { - "title": "Thurston Harris - Little Bitty Pretty One (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "Fy28A9G2zUM" - }, - { - "title": "Thurston Harris - Little Bitty Pretty One - Karaoke Version from Zoom Karaoke", - "id": "zcrFXdVWRLs" - }, - { - "title": "Conway Twitty & Loretta Lynn - Louisiana Woman, Mississippi Man (Without Backing Vocals) - Karaoke", - "id": "mhxO_gr9QEM" - }, - { - "title": "Luke Combs - She Got The Best Of Me - Karaoke Version from Zoom Karaoke", - "id": "jOyV6ADM4-s" - }, - { - "title": "Billy Fury - I Will (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "gnov1bgby3Y" - }, - { - "title": "Emmylou Harris - Pledging My Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WrG-r9RWSdM" - }, - { - "title": "The Four Tops - When She Was My Girl (End Cut Down) (Without Backing Vocals) - Zoom Karaoke Version", - "id": "VyPKOgsiflo" - }, - { - "title": "Loretta Lynn - Fist City - Karaoke Version from Zoom Karaoke", - "id": "lpQ6z62LeEw" - }, - { - "title": "Conway Twitty & Loretta Lynn - Louisiana Woman, Mississippi Man - Karaoke Version from Zoom Karaoke", - "id": "WRQ8RKW8G3M" - }, - { - "title": "Loretta Lynn - Hello Darlin' (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "UAIP6z4_FT0" - }, - { - "title": "Anna Kendrick - Get Back Up Again (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "O_K3RRtP9sc" - }, - { - "title": "Addison Rae - Diet Pepsi - Karaoke Version from Zoom Karaoke", - "id": "OYkrTAf5G80" - }, - { - "title": "Emmylou Harris - In My Dreams (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "7EwGQKT-Xog" - }, - { - "title": "The Neighbourhood - Sweater Weather (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9Aq3vK5Xk1E" - }, - { - "title": "Electric Light Orchestra - The ELO Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "pnWJwWyeCC8" - }, - { - "title": "The Weeknd - Dancing In The Flames - Karaoke Version from Zoom Karaoke", - "id": "b5T1z34ecgg" - }, - { - "title": "Emmylou Harris - Pledging My Love - Karaoke Version from Zoom Karaoke", - "id": "WNTB32xbWio" - }, - { - "title": "Charli XCX feat Ariana Grande - Sympathy Is A Knife (Without Backing Vocals) - Zoom Karaoke Version", - "id": "QeAHwiDuQpM" - }, - { - "title": "Loretta Lynn - You Ain't Woman Enough (To Take My Man) - Karaoke Version from Zoom Karaoke", - "id": "PE6bzh5OjgQ" - }, - { - "title": "Emmylou Harris - In My Dreams - Karaoke Version from Zoom Karaoke", - "id": "t4gkJ5zqz50" - }, - { - "title": "Gigi Perez - Sailor Song (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "evTKQ7NwcaY" - }, - { - "title": "Loretta Lynn - Fist City (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "eMUkTgsZP48" - }, - { - "title": "Addison Rae - Diet Pepsi (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TWsQjdU-Nus" - }, - { - "title": "Loretta Lynn - Hello Darlin' - Karaoke Version from Zoom Karaoke", - "id": "RMXyag6WXhQ" - }, - { - "title": "Josh Turner - Why Don't We Just Dance (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "3YyCV-MwvIM" - }, - { - "title": "The Weeknd - Dancing In The Flames (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "O--pC1nHmTc" - }, - { - "title": "Anna Kendrick - Get Back Up Again - Karaoke Version from Zoom Karaoke", - "id": "K5P7Bb1c48s" - }, - { - "title": "Darts - Daddy Cool - Karaoke Version from Zoom Karaoke", - "id": "81t4WqOQFk8" - }, - { - "title": "Sophie Ellis Bextor - Crying At The Discotheque (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "5jrFD1F5s_U" - }, - { - "title": "Gracie Abrams - I Love You, I'm Sorry (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Xh3IoE8e2wU" - }, - { - "title": "The Neighbourhood - Sweater Weather - Karaoke Version from Zoom Karaoke", - "id": "Qj-lGR7K4zM" - }, - { - "title": "The Pogues - A Rainy Night In Soho - Karaoke Version from Zoom Karaoke", - "id": "yCtQrwz9zwE" - }, - { - "title": "Josh Turner - Why Don't We Just Dance - Karaoke Version from Zoom Karaoke", - "id": "pkT8BuP-Qx4" - }, - { - "title": "Sophie Ellis-Bextor - Crying At The Discotheque - Karaoke Version from Zoom Karaoke", - "id": "oMOR9GGe8kw" - }, - { - "title": "Gracie Abrams - I Love You, I'm Sorry - Karaoke Version from Zoom Karaoke", - "id": "ZU7rBQ_ES2U" - }, - { - "title": "Kenny Chesney - All The Pretty Girls - Karaoke Version from Zoom Karaoke", - "id": "ZBZ-rZXAz_4" - }, - { - "title": "Gigi Perez - Sailor Song - Karaoke Version from Zoom Karaoke", - "id": "MUbgRlOzr_o" - }, - { - "title": "Gallagher And Lyle - Heart On My Sleeve (End Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "ZSpF6aUU0nI" - }, - { - "title": "Charli XCX feat Ariana Grande - Sympathy Is A Knife - Karaoke Version from Zoom Karaoke", - "id": "CUAmhuFEjrs" - }, - { - "title": "Loretta Lynn - You Ain't Woman Enough (To Take My Man) (Without Backing Vocals) - Karaoke Version", - "id": "o8r-0HTXnr0" - }, - { - "title": "Brian And Michael - Matchstalk Men And Matchstalk Cats And Dogs (Cut Down With Harmony) - Karaoke", - "id": "X-5rGXcQR4o" - }, - { - "title": "Electric Light Orchestra - The ELO Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "DcrH-ec7lMw" - }, - { - "title": "The Detroit Spinners - Working My Way Back To You (Three Semitones Down / End Cut Down) - Karaoke", - "id": "cG8fURzOmHM" - }, - { - "title": "Emmylou Harris - Save The Last Dance For Me - Karaoke Version from Zoom Karaoke", - "id": "mj3i_YpOdTo" - }, - { - "title": "Holly Johnson - Americanos (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "utyp9hvdLnQ" - }, - { - "title": "Frank Ifield - I Remember You - Karaoke Version from Zoom Karaoke", - "id": "mBMhmCDS7mE" - }, - { - "title": "Donna Lewis - I Love You Always Forever (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WFf7plcdTbI" - }, - { - "title": "Luke Combs feat Brooks & Dunn - 1, 2 Many (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "DyWCLeqd2m0" - }, - { - "title": "Various Artists - Crooning Christmas Medley - Karaoke Version from Zoom Karaoke", - "id": "4-4HW2dO414" - }, - { - "title": "Sophie Ellis-Bextor - Freedom Of The Night - Karaoke Version from Zoom Karaoke", - "id": "-4geMfmYguA" - }, - { - "title": "Sophie Ellis Bextor - Freedom Of The Night (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "FWEGqjxaSPo" - }, - { - "title": "Donna Lewis - I Love You Always Forever - Karaoke Version from Zoom Karaoke", - "id": "edUHHIsvrJk" - }, - { - "title": "Brenda Lee - Jingle Bell Rockin' Around The Christmas Tree (Medley) - Karaoke Version from Zoom", - "id": "Sr5Qj0RqlHE" - }, - { - "title": "Alcazar - Crying At The Discoteque (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "KXyO9sye8mE" - }, - { - "title": "Holly Johnson - Americanos - Karaoke Version from Zoom Karaoke", - "id": "HPkEwJwc0lE" - }, - { - "title": "Luke Combs feat Brooks & Dunn - 1, 2 Many - Karaoke Version from Zoom Karaoke", - "id": "7C3F2xcg09Q" - }, - { - "title": "Chappell Roan - Pink Pony Club - Karaoke Version from Zoom Karaoke", - "id": "v6MRRBvBg2o" - }, - { - "title": "Kenny Chesney - All The Pretty Girls (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rP4Pw0_galc" - }, - { - "title": "Johnny Tillotson - Why Do I Love You So (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "r5RncwORFnY" - }, - { - "title": "Various Artists - Christmas Medley 3 - Karaoke Version from Zoom Karaoke", - "id": "e3l1Wzqk6FY" - }, - { - "title": "Cock Robin - When Your Heart Is Weak - Karaoke Version from Zoom Karaoke", - "id": "LZ-4CX6JCUY" - }, - { - "title": "Alcazar - Crying At The Discoteque - Karaoke Version from Zoom Karaoke", - "id": "3CiFQ8q9rbI" - }, - { - "title": "Various Artists - Christmas Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "_HTYiA0s2OQ" - }, - { - "title": "Callum Beattie - Salamander Street (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "YlzdPkdKt3Q" - }, - { - "title": "Paolo Nutini - Through The Echoes (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "RYXPW9zu0LY" - }, - { - "title": "Mark Wills - 19 Somethin' (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "7sa3vmVOEis" - }, - { - "title": "Jake Owen - Down To The Honky Tonk (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "7AB3JsT3b3w" - }, - { - "title": "Johnny Tillotson - Why Do I Love You So - Karaoke Version from Zoom Karaoke", - "id": "6Dm33OEvz6o" - }, - { - "title": "Mark Wills - 19 Somethin' - Karaoke Version from Zoom Karaoke", - "id": "lftiEeMhpeo" - }, - { - "title": "Various Artists - Christmas Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "jBJo2xPpep8" - }, - { - "title": "Paolo Nutini - Through The Echoes - Karaoke Version from Zoom Karaoke", - "id": "ZscKT6sX1jY" - }, - { - "title": "Callum Beattie - Salamander Street - Karaoke Version from Zoom Karaoke", - "id": "SQ7dNGp1s3Y" - }, - { - "title": "Rocky Sharpe & The Replays - A Teenager In Love (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "OydYVzo5KJ8" - }, - { - "title": "Jake Owen - Down To The Honky-Tonk - Karaoke Version from Zoom Karaoke", - "id": "9X45kFm835w" - }, - { - "title": "Kylie Minogue - Lights Camera Action (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fGcEszg7hl0" - }, - { - "title": "Herman's Hermits - My Sentimental Friend (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "bH1nwI6pu_U" - }, - { - "title": "Rocky Sharpe & The Replays - A Teenager In Love - Karaoke Version from Zoom Karaoke", - "id": "Tyn6kltfjJE" - }, - { - "title": "Linkin Park - The Emptiness Machine (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "MYm1icAcq4A" - }, - { - "title": "Nat 'King' Cole & Bing Crosby - The Cole & Crosby Christmas Medley - Karaoke Version from Zoom", - "id": "3AjIbTrofAM" - }, - { - "title": "Linkin Park - The Emptiness Machine (For Solo Singer Without Backing Vocals) - Zoom Karaoke Version", - "id": "1FTEPyAEojQ" - }, - { - "title": "Cliff Richard - Merry Cliffmas Medley (Mistletoe & Saviour's Day) - Karaoke Version from Zoom", - "id": "lurHGfA8ne0" - }, - { - "title": "Kylie Minogue - Lights Camera Action - Karaoke Version from Zoom Karaoke", - "id": "ZkkHAxgn5xo" - }, - { - "title": "Linkin Park - The Emptiness Machine (Duet Version Without Backing Vocals) - Zoom Karaoke Version", - "id": "Xw74ivcSrp0" - }, - { - "title": "Cock Robin - Just Around The Corner (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "UPnaXfA482I" - }, - { - "title": "Rihanna - Love On The Brain (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "OCUN2x1eq5c" - }, - { - "title": "Herman's Hermits - My Sentimental Friend - Karaoke Version from Zoom Karaoke", - "id": "EE-CWaK22HA" - }, - { - "title": "Mud - The Cat Crept In (Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "nKmYShfs75c" - }, - { - "title": "Jake Owen - Barefoot Blue Jean Night (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fK2u2r4kRoM" - }, - { - "title": "Rihanna - Love On The Brain - Karaoke Version from Zoom Karaoke", - "id": "cgbVUqrjWs4" - }, - { - "title": "Linkin Park - The Emptiness Machine (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "MyYAIL637VM" - }, - { - "title": "Cock Robin - Just Around The Corner - Karaoke Version from Zoom Karaoke", - "id": "8cAloS45ajo" - }, - { - "title": "Kylie Minogue - Lights Camera Action (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "0_6y3yH90IM" - }, - { - "title": "Sha Na Na - Those Magic Changes (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "k68d0d4G-tU" - }, - { - "title": "Jake Owen - Barefoot Blue Jean Night - Karaoke Version from Zoom Karaoke", - "id": "sBKqE-Z4kwA" - }, - { - "title": "Lady Gaga - Happy Mistake - Karaoke Version from Zoom Karaoke", - "id": "gO8QKJPPc6g" - }, - { - "title": "The Casuals - Jesamine (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "efQZXc4Fh68" - }, - { - "title": "Gerry & The Pacemakers - I Like It (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "RwBX5xSwJho" - }, - { - "title": "Billy J Kramer & The Dakotas - Bad To Me (Two Semitones Up) - Karaoke Version from Zoom Karaoke", - "id": "1h4E9CL7pis" - }, - { - "title": "Trisha Yearwood - She's In Love With The Boy (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "yOyu79Sa2rA" - }, - { - "title": "The Beatles - Till There Was You (Live Version / Two Semitones Down) - Karaoke Version from Zoom", - "id": "xCHm3x4cIJA" - }, - { - "title": "Billy Fury - Do You Really Love Me Too (Fool's Errand) (One Semitone Up) - Karaoke Version from Zoom", - "id": "mHRFrcAV394" - }, - { - "title": "Teddy Swims - Bad Dreams (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "gKelpb2XXvg" - }, - { - "title": "Typically Tropical - Barbados (Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "Tu9Iwc6eQmA" - }, - { - "title": "Billy Fury - In Summer (One Semitone Up) - Karaoke Version from Zoom Karaoke", - "id": "2OyVQIP8AmQ" - }, - { - "title": "Chicory Tip - Son Of My Father (Instrumental Cut Down / Two Semitones Down) - Zoom Karaoke Version", - "id": "z1fgh5M9JoI" - }, - { - "title": "Brotherhood Of Man - Save Your Kisses For Me (Two Semitones Down) - Karaoke Version from Zoom", - "id": "mhZaQDtEib8" - }, - { - "title": "The Fortunes - Here Comes That Rainy Day Feeling Again (Two Semitones Down) - Zoom Karaoke Version", - "id": "Zu3vPzFysy4" - }, - { - "title": "The Fortunes - Storm In A Teacup (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "SgX20r4Vc9o" - }, - { - "title": "The Drifters - Saturday Night At The Movies (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "JBagOZUYCOM" - }, - { - "title": "Gilbert O'Sullivan - Matrimony (End Cut Down / Two Semitones Down) - Karaoke Version from Zoom", - "id": "-BSWEh7D3GI" - }, - { - "title": "Robbie Williams - Come Undone - Karaoke Version from Zoom Karaoke", - "id": "Hp76PnfRGY0" - }, - { - "title": "Sutherland Brothers And Quiver - Arms Of Mary (Two Semitones Down) - Karaoke Version from Zoom", - "id": "p4eghGeJyxg" - }, - { - "title": "Teddy Swims - Bad Dreams - Karaoke Version from Zoom Karaoke", - "id": "dEPhzfWj7o4" - }, - { - "title": "The Honeycombs - Have I The Right (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "SEUBKQd6_0M" - }, - { - "title": "Teddy Swims - Tennessee Whiskey - Karaoke Version from Zoom Karaoke", - "id": "L2cDAlNlS2A" - }, - { - "title": "Trisha Yearwood - She's In Love With The Boy - Karaoke Version from Zoom Karaoke", - "id": "Cg2Lvwa7EaA" - }, - { - "title": "David Dundas - Jeans On (One Semitone Down/End Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "8ShTorpcEm0" - }, - { - "title": "Gilbert O'Sullivan - Clair (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "npoO_AHi0_w" - }, - { - "title": "Smokie - Living Next Door To Alice (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "myYgf-_HRsA" - }, - { - "title": "Hot Chocolate - It Started With A Kiss (End Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "bra5zGtUBJE" - }, - { - "title": "The B-52s - Roam (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Hqr4CqwJEAc" - }, - { - "title": "Paul Simon - You Can Call Me Al (Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "FAshqzFj99c" - }, - { - "title": "First Class - Beach Baby (Two Semitones Down/End Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "tyZ6FuV6jdI" - }, - { - "title": "The B-52s - Roam - Karaoke Version from Zoom Karaoke", - "id": "wCDP5xzHBnM" - }, - { - "title": "Buddy Holly - Oh Boy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vzWxeiEwGJs" - }, - { - "title": "Del Shannon - Runaway (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "oc7ZfMPJoX0" - }, - { - "title": "Reba McEntire - Fancy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SAlruqLNEyc" - }, - { - "title": "Typically Tropical - Barbados (Lead And Voiceover Parts Without Backing Vocals) - Karaoke Version", - "id": "5djfRJWiv2k" - }, - { - "title": "The Foundations - Build Me Up Buttercup (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "14H5aQ2tfuI" - }, - { - "title": "Guy Mitchell - Singing The Blues (Minus Whistle Solos) - Karaoke Version from Zoom Karaoke", - "id": "bs8VU7RBDQA" - }, - { - "title": "Typically Tropical - Barbados (Lead And Voiceover Parts) - Karaoke Version from Zoom Karaoke", - "id": "XGWKz35P8GE" - }, - { - "title": "Rod Stewart - It's A Heartache - Karaoke Version from Zoom Karaoke", - "id": "yV7_fZ_dABA" - }, - { - "title": "Reba McEntire - Fancy - Karaoke Version from Zoom Karaoke", - "id": "l_DYF9Z0MBs" - }, - { - "title": "Unit Four Plus Two - Concrete And Clay (One Semitone Up) - Karaoke Version from Zoom Karaoke", - "id": "kj3ppgbJN9Q" - }, - { - "title": "Blue - If You Come Back (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Wl27UkTxid8" - }, - { - "title": "Teddy Swims - Let Me Love You - Karaoke Version from Zoom Karaoke", - "id": "9BKM34obknM" - }, - { - "title": "Roy Orbison - Too Soon To Know (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "d0RpB0Yep94" - }, - { - "title": "Katy Perry - Lifetimes (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ceGVh8a1h0Q" - }, - { - "title": "Kenny Chesney - American Kids - Karaoke Version from Zoom Karaoke", - "id": "TUnCEKse6iY" - }, - { - "title": "Reba McEntire - The Night The Lights Went Out In Georgia (Without Backing Vocals) - Karaoke Version", - "id": "Psbaq0Lnhvg" - }, - { - "title": "Teddy Swims - Make You Feel My Love - Karaoke Version from Zoom Karaoke", - "id": "JDDx7LVN-9Y" - }, - { - "title": "Sabrina Carpenter - Taste (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9lj6aByTFpE" - }, - { - "title": "Billy Ocean - Love Really Hurts Without You (Five Semitones Down Without Backing Vocals) - Karaoke", - "id": "ebgGLH0Y-9g" - }, - { - "title": "Katy Perry - Lifetimes - Karaoke Version from Zoom Karaoke", - "id": "begmtFZa2Eg" - }, - { - "title": "Blue - If You Come Back - Karaoke Version from Zoom Karaoke", - "id": "Yy4SIZGVyVc" - }, - { - "title": "Reba McEntire - The Night The Lights Went Out In Georgia - Karaoke Version from Zoom Karaoke", - "id": "Mqi70tqq65c" - }, - { - "title": "Rod Stewart - It's A Heartache (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "7WJSJb06xMQ" - }, - { - "title": "Kenny Chesney - American Kids (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "o241tnI6hys" - }, - { - "title": "Frankie Lymon & The Teenagers - Why Do Fools Fall In Love (Down 7 Semitones) - Karaoke Version", - "id": "d7bbAI1KA8w" - }, - { - "title": "Billy Ocean - Love Really Hurts Without You (Five Semitones Down) - Karaoke Version from Zoom", - "id": "pISzIJDQ_eo" - }, - { - "title": "The Searchers - Sweets For My Sweet (Three Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "k7N2ZoB-Lc0" - }, - { - "title": "Sabrina Carpenter - Taste - Karaoke Version from Zoom Karaoke", - "id": "KLedeiOg5F0" - }, - { - "title": "Gilbert O'Sullivan - Get Down (End Cut Down/Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "HreLwQbwCcg" - }, - { - "title": "Roy Orbison - Too Soon To Know - Karaoke Version from Zoom Karaoke", - "id": "6ZIs2Rpb7GM" - }, - { - "title": "Teddy Swims - I Can't Make You Love Me - Karaoke Version from Zoom Karaoke", - "id": "2BWEPrnHqDI" - }, - { - "title": "Bob Seger - Blind Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "zh9JBTgeQv4" - }, - { - "title": "The Swinging Blue Jeans - You're No Good (One Semitone Up) - Karaoke Version from Zoom Karaoke", - "id": "WI5D9qG6ch8" - }, - { - "title": "David Essex - Gonna Make You A Star (End Cut Down/Two Semitones Down) - Karaoke Version from Zoom", - "id": "PF1tdknr-Vs" - }, - { - "title": "Rick Astley - Never Gonna Stop (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Jp04BD1lplo" - }, - { - "title": "Teddy Swims - Funeral (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "DweKh003GKQ" - }, - { - "title": "David Soul - Silver Lady (End Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "442uI6t19xo" - }, - { - "title": "Mike And The Mechanics - Everybody Gets A Second Chance - Karaoke Version from Zoom Karaoke", - "id": "e_WulCSJgQY" - }, - { - "title": "David Bowie - The David Bowie 80s Medley - Karaoke Version from Zoom Karaoke", - "id": "cEVztk1UUyw" - }, - { - "title": "Sabrina Carpenter - Espresso/Please Please Please - Karaoke Version from Zoom Karaoke", - "id": "UtZIRyaEk0o" - }, - { - "title": "Harry Styles - The Harry Styles Medley - Karaoke Version from Zoom Karaoke", - "id": "KaXISOU5p4c" - }, - { - "title": "Mike And The Mechanics - Nobody Knows - Karaoke Version from Zoom Karaoke", - "id": "B5wL-JQAQ9w" - }, - { - "title": "Rod Stewart - Rhythm Of My Heart (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9UXfMaI7OsQ" - }, - { - "title": "Calum Scott - Roots (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "l09jBeDLAPk" - }, - { - "title": "Bruce Springsteen - The Bruce Springsteen Medley - Karaoke Version from Zoom Karaoke", - "id": "klkanV5-Mlo" - }, - { - "title": "David Bowie - The David Bowie 70s Medley - Karaoke Version from Zoom Karaoke", - "id": "ctfJom2g6ZM" - }, - { - "title": "Johnny Johnson & The Bandwagon - (Blame It) On The Pony Express - Karaoke Version from Zoom Karaoke", - "id": "_5oImKdx0M4" - }, - { - "title": "Dobie Gray - Loving Arms - Karaoke Version from Zoom Karaoke", - "id": "DoQuptWlx8c" - }, - { - "title": "Glen Campbell - The Glen Campbell Medley - Karaoke Version from Zoom Karaoke", - "id": "3zxsj5EUH_g" - }, - { - "title": "Stephen Sanchez - The Pool (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2kmR4U9nzdE" - }, - { - "title": "Calum Scott - Roots - Karaoke Version from Zoom Karaoke", - "id": "qbWtfmKIwHY" - }, - { - "title": "Status Quo - Ol' Rag Blues (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Qe-tvKPbxu0" - }, - { - "title": "Post Malone feat Luke Combs - Guy For That - Karaoke Version from Zoom Karaoke", - "id": "G2X3K4hg91g" - }, - { - "title": "Alan Jackson - The Alan Jackson Medley - Karaoke Version from Zoom Karaoke", - "id": "E5KRjVrnlJY" - }, - { - "title": "Dolly Parton - The Dolly Parton Medley - Karaoke Version from Zoom Karaoke", - "id": "1C0mQOQRbbs" - }, - { - "title": "Luke Combs - Better Together - Karaoke Version from Zoom Karaoke", - "id": "g3kH7zbDRYg" - }, - { - "title": "Reba McEntire - Somebody (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fFuqPfe0o0c" - }, - { - "title": "Reba McEntire - Consider Me Gone (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_FnGx6XANzM" - }, - { - "title": "The Hollies - Bus Stop (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Usv4CXg-0MQ" - }, - { - "title": "Lady Gaga & Bruno Mars - Die With A Smile (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "3hGsQvnWWM0" - }, - { - "title": "Dermot Kennedy - Kiss Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1apQxtDw9lk" - }, - { - "title": "Celine Dion - The Power Of Love (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "nd6eVvZYpZc" - }, - { - "title": "The Weeknd - The Weeknd Medley - Karaoke Version from Zoom Karaoke", - "id": "c9Pw9Aq0Le4" - }, - { - "title": "Teddy Swims - Funeral - Karaoke Version from Zoom Karaoke", - "id": "XMDEz6Ljeic" - }, - { - "title": "Stephen Sanchez - The Pool - Karaoke Version from Zoom Karaoke", - "id": "R0Nq2ihHWOc" - }, - { - "title": "Mike And The Mechanics - Nobody Knows (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EkFmfcyPy4Q" - }, - { - "title": "Elvis Presley - I've Lost You - Karaoke Version from Zoom Karaoke", - "id": "-t9ut6Uz8YU" - }, - { - "title": "Status Quo - Ol' Rag Blues - Karaoke Version from Zoom Karaoke", - "id": "wJ94IEeYsek" - }, - { - "title": "James - The James Medley - Karaoke Version from Zoom Karaoke", - "id": "og_jQF3NE74" - }, - { - "title": "UB40 - Food For Thought - Karaoke Version from Zoom Karaoke", - "id": "krSHK9NT6OI" - }, - { - "title": "Post Malone feat Luke Combs - Guy For That (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "hhVAz97cXsU" - }, - { - "title": "Andy Williams - The Andy Williams Medley - Karaoke Version from Zoom Karaoke", - "id": "2kBEsFbgiQM" - }, - { - "title": "Teddy Swims feat Maren Morris - Some Things I'll Never Know - Karaoke Version from Zoom Karaoke", - "id": "06Gu1EggzN4" - }, - { - "title": "Lenny Kravitz - It Ain't Over 'Til It's Over - Karaoke Version from Zoom Karaoke", - "id": "v4rwUQ9L-yg" - }, - { - "title": "Bobby Sherman - Julie Do Ya Love Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "tUIFNPrf3sI" - }, - { - "title": "Elvis Presley - I've Lost You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "dEISsPxVblM" - }, - { - "title": "The Rolling Stones - The Rolling Stones Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "Q7S7DLtYXIo" - }, - { - "title": "White Plains - The White Plains Medley - Karaoke Version from Zoom Karaoke", - "id": "PSUNa4-CAl4" - }, - { - "title": "George Strait - The George Strait Medley - Karaoke Version from Zoom Karaoke", - "id": "48cOdoGpFeY" - }, - { - "title": "Five Star - The Five Star Medley - Karaoke Version from Zoom Karaoke", - "id": "gm9_rftSdXQ" - }, - { - "title": "Bobby Sherman - Julie Do Ya Love Me - Karaoke Version from Zoom Karaoke", - "id": "bOXx0ipRIfI" - }, - { - "title": "Chappell Roan - Hot To Go - Karaoke Version from Zoom Karaoke", - "id": "YPG4Wh3SLe0" - }, - { - "title": "UB40 - Red Red Wine (Album Version Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "QJVWPcpPR28" - }, - { - "title": "White Plains - Julie Do Ya Love Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "J3avLnzrnmY" - }, - { - "title": "Meat Loaf - Rock And Roll Dreams Come Through - Karaoke Version from Zoom Karaoke", - "id": "7GUH8ksTAYg" - }, - { - "title": "Thompson Twins - The Thompson Twins Medley - Karaoke Version from Zoom Karaoke", - "id": "zcZ7q_HGUTw" - }, - { - "title": "Dobie Gray - Loving Arms (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "niRmYWT805g" - }, - { - "title": "OMD - The OMD Medley - Karaoke Version from Zoom Karaoke", - "id": "_rERnlUChQA" - }, - { - "title": "Rod Stewart - Rhythm Of My Heart - Karaoke Version from Zoom Karaoke", - "id": "2d4narluvKg" - }, - { - "title": "Johnny Johnson & The Bandwagon - (Blame It) On The Pony Express (Without Backing Vocals) - Karaoke", - "id": "0cAq9luh98Y" - }, - { - "title": "Stephen Sanchez - Be More - Karaoke Version from Zoom Karaoke", - "id": "Bi40iIZkEpo" - }, - { - "title": "Teddy Swims - Devil In A Dress - Karaoke Version from Zoom Karaoke", - "id": "eiKkG8Esw-8" - }, - { - "title": "Reba McEntire - Consider Me Gone - Karaoke Version from Zoom Karaoke", - "id": "QqSNtnhfQmg" - }, - { - "title": "Bob Seger - Blind Love - Karaoke Version from Zoom Karaoke", - "id": "Fb9Z6v1jmbo" - }, - { - "title": "One Direction - The One Direction Medley - Karaoke Version from Zoom Karaoke", - "id": "3not6_XMN28" - }, - { - "title": "Mike And The Mechanics - Everybody Gets A Second Chance (Without Backing Vocals) - Karaoke Version", - "id": "2GPXrBVAa0o" - }, - { - "title": "Frank Sinatra - One For My Baby (And One More For The Road) (Live Version) - Zoom Karaoke Version", - "id": "-RzKNfwSbxc" - }, - { - "title": "Rick Astley - Never Gonna Stop - Karaoke Version from Zoom Karaoke", - "id": "XkCTBpF5ySc" - }, - { - "title": "The Hollies - Bus Stop (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "OSIH19an2pE" - }, - { - "title": "Dermot Kennedy - Kiss Me - Karaoke Version from Zoom Karaoke", - "id": "DMpxrgFGtEQ" - }, - { - "title": "Stephen Sanchez - High - Karaoke Version from Zoom Karaoke", - "id": "0bgXVMFwKYQ" - }, - { - "title": "Lady Gaga & Bruno Mars - Die With A Smile - Karaoke Version from Zoom Karaoke", - "id": "-M3Wx61Q8W8" - }, - { - "title": "Reba McEntire - Somebody - Karaoke Version from Zoom Karaoke", - "id": "XCdZ0R1vci4" - }, - { - "title": "Lenny Kravitz - It Ain't Over 'Til It's Over (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "iralST-E-3Q" - }, - { - "title": "Meat Loaf - Rock And Roll Dreams Come Through (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "hbiAXtcbJzg" - }, - { - "title": "The Corrs - Don't Say You Love Me - Karaoke Version from Zoom Karaoke", - "id": "brQkrvcxQUM" - }, - { - "title": "Chappell Roan - Hot To Go (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SKS3_cf_Xeg" - }, - { - "title": "White Plains - Julie Do Ya Love Me - Karaoke Version from Zoom Karaoke", - "id": "DxAta7P8z7M" - }, - { - "title": "UB40 - Red Red Wine (Album Version) - Karaoke Version from Zoom Karaoke", - "id": "O2AFnWeiGgs" - }, - { - "title": "Five Star - The Slightest Touch (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "3VJ1Dcn4sS0" - }, - { - "title": "Peter Shelley - Gee Baby (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2KlI1MHuUsE" - }, - { - "title": "Katy Perry - Woman's World - Karaoke Version from Zoom Karaoke", - "id": "uNYyvWIHUwU" - }, - { - "title": "The Corrs - Don't Say You Love Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "tsH7tmuKl1k" - }, - { - "title": "Gilbert O'Sullivan - Nothing Rhymed - Karaoke Version from Zoom Karaoke", - "id": "y8yFWqNIRXs" - }, - { - "title": "Peter Shelley - Gee Baby - Karaoke Version from Zoom Karaoke", - "id": "wY15JHEOqZ4" - }, - { - "title": "Barbra Streisand feat Don Johnson - Till I Loved You - Karaoke Version from Zoom Karaoke", - "id": "vhXija-7YU8" - }, - { - "title": "Thompson Twins - Hold Me Now (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "geeWDmMY8nw" - }, - { - "title": "Five Star - The Slightest Touch - Karaoke Version from Zoom Karaoke", - "id": "anK14pP-NDw" - }, - { - "title": "Arctic Monkeys - 505 - Karaoke Version from Zoom Karaoke", - "id": "47EandSXXZE" - }, - { - "title": "Diana Ross & The Supremes - I'm Living In Shame - Karaoke Version from Zoom Karaoke", - "id": "vHGiRuxgII0" - }, - { - "title": "Post Malone feat Blake Shelton - Pour Me A Drink - Karaoke Version from Zoom Karaoke", - "id": "ppD5lHSYQkw" - }, - { - "title": "Conway Twitty - I'd Love To Lay You Down (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "kJAe9Sy9hWY" - }, - { - "title": "Luke Combs - Even Though I'm Leaving (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ScrQinTYokY" - }, - { - "title": "Joe Fagin - Breakin' Away (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "K0E-i4p67rs" - }, - { - "title": "Julio Iglesias - Begin The Beguine (English Lyrics Without Backing Vocals) - Karaoke Version", - "id": "Fjn76xux2Tc" - }, - { - "title": "JoJo Siwa - Karma (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "mA2togvJwwA" - }, - { - "title": "Cole Swindell - She Had Me At Heads Carolina - Karaoke Version from Zoom Karaoke", - "id": "Yp9oPe_T2KE" - }, - { - "title": "Conway Twitty - I See The Want To In Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "Y1cWZFYvT58" - }, - { - "title": "PM Dawn - Set Adrift On Memory Bliss - Karaoke Version from Zoom Karaoke", - "id": "U8QuawjrmEQ" - }, - { - "title": "Sabrina Carpenter - Please Please Please - Karaoke Version from Zoom Karaoke", - "id": "DifXlU793C0" - }, - { - "title": "Jo Dee Messina - Heads Carolina, Tails California (Without Backing Vocals) - Karaoke Version", - "id": "5aAM12c7CyU" - }, - { - "title": "Conway Twitty - I See The Want To In Your Eyes (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "wto7W0m61oE" - }, - { - "title": "Myles Smith - Stargazing (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "siY4h0fg-X8" - }, - { - "title": "Jo Dee Messina - Heads Carolina, Tails California - Karaoke Version from Zoom Karaoke", - "id": "p7RHjMGdM-U" - }, - { - "title": "Conway Twitty - I'd Love To Lay You Down - Karaoke Version from Zoom Karaoke", - "id": "cdJJUTyHex4" - }, - { - "title": "Luke Combs - Even Though I'm Leaving - Karaoke Version from Zoom Karaoke", - "id": "QdTmH7aAB2Q" - }, - { - "title": "Issey Cross - Bittersweet Goodbye - Karaoke Version from Zoom Karaoke", - "id": "M7A3VTlLLxc" - }, - { - "title": "Heinz - Just Like Eddie (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "AwXTOL9Pz1s" - }, - { - "title": "Toby Keith & Willie Nelson - Beer For My Horses (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "87Yq998z_2A" - }, - { - "title": "Chappell Roan - Good Luck, Babe! (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "4KtcKlhJmvw" - }, - { - "title": "Nathan Evans - Heather On The Hill (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1ckDk-zvEy0" - }, - { - "title": "Sabrina Carpenter - Please Please Please (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "VTtUR_3DMbY" - }, - { - "title": "The Supremes - Up The Ladder To The Roof - Karaoke Version from Zoom Karaoke", - "id": "sAY1B2kR89w" - }, - { - "title": "Tony Bennett - (I Left My Heart) In San Francisco - Karaoke Version from Zoom Karaoke", - "id": "dhdtoWyceCs" - }, - { - "title": "George Strait - Amarillo By Morning (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WjFGvKsp1mE" - }, - { - "title": "JoJo Siwa - Karma - Karaoke Version from Zoom Karaoke", - "id": "IgoD--o7v5E" - }, - { - "title": "Joe Fagin - Breakin' Away - Karaoke Version from Zoom Karaoke", - "id": "22nvuLo3zLI" - }, - { - "title": "Issey Cross - Bittersweet Goodbye (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "tu9WRxROcx8" - }, - { - "title": "Myles Smith - Stargazing - Karaoke Version from Zoom Karaoke", - "id": "WwpqtnfZ1-M" - }, - { - "title": "Cole Swindell - She Had Me At Heads Carolina (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "vTrpCK-uWzs" - }, - { - "title": "Heinz & Eddie Cochran - Just Like Eddie Cochran Medley - Karaoke Version from Zoom Karaoke", - "id": "r5dNp4gsWyA" - }, - { - "title": "Eminem - Houdini - Karaoke Version from Zoom Karaoke", - "id": "LOUrhnpef4M" - }, - { - "title": "Dasha - Austin - Karaoke Version from Zoom Karaoke", - "id": "k6EI6JRzN5E" - }, - { - "title": "Heinz - Just Like Eddie - Karaoke Version from Zoom Karaoke", - "id": "Qh2Ld6Kl-z8" - }, - { - "title": "Chappell Roan - Good Luck, Babe! - Karaoke Version from Zoom Karaoke", - "id": "EPHG-Tkf8oQ" - }, - { - "title": "Pat Benatar - We Belong (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2LReAE8XvKw" - }, - { - "title": "Nathan Evans - Heather On The Hill - Karaoke Version from Zoom Karaoke", - "id": "zwc66Gzx_8A" - }, - { - "title": "Dasha - Austin (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iix0Z1cs_gA" - }, - { - "title": "Luke Combs - The Kind Of Love We Make (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "e2fm8wKeYwA" - }, - { - "title": "Pat Benatar - We Belong - Karaoke Version from Zoom Karaoke", - "id": "Nu4ogNBMsbQ" - }, - { - "title": "Tenille Arts - Somebody Like That (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "NtcdEbeBiWM" - }, - { - "title": "David Guetta & OneRepublic - I Don't Wanna Wait (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "DTgWBR2DweA" - }, - { - "title": "Michael Marcagi - Scared To Start (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "l2YXAnlVunk" - }, - { - "title": "Luke Combs - The Kind Of Love We Make - Karaoke Version from Zoom Karaoke", - "id": "bLAzy-CItgU" - }, - { - "title": "Steve Harley & Cockney Rebel - Here Comes The Sun (Without Backing Vocals) - Karaoke Version", - "id": "_3lJyH_gO1A" - }, - { - "title": "Collin Raye - Not That Different - Karaoke Version from Zoom Karaoke", - "id": "QNGZERZqBHU" - }, - { - "title": "David Guetta & OneRepublic - I Don't Wanna Wait - Karaoke Version from Zoom Karaoke", - "id": "5NCP0CpA0PY" - }, - { - "title": "Oasis - All Around The World - Karaoke Version from Zoom Karaoke", - "id": "4HapFmMC1E8" - }, - { - "title": "Chris Janson - Buy Me A Boat (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "tN1Z7rrl-Hw" - }, - { - "title": "Michael Marcagi - Scared To Start - Karaoke Version from Zoom Karaoke", - "id": "roHpJ2H2j94" - }, - { - "title": "Artemas - I Like The Way You Kiss Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "dZIpFyrjRHs" - }, - { - "title": "Hozier - Too Sweet (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TJn5g7i3wN4" - }, - { - "title": "Steve Harley & Cockney Rebel - Here Comes The Sun - Karaoke Version from Zoom Karaoke", - "id": "SY2tWISTDNw" - }, - { - "title": "Don Williams - Lay Down Beside Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SDUfY-It0Fk" - }, - { - "title": "Hozier - Too Sweet - Karaoke Version from Zoom Karaoke", - "id": "pphn92nK0P4" - }, - { - "title": "Don Williams - Lay Down Beside Me - Karaoke Version from Zoom Karaoke", - "id": "sMjesm3IAKE" - }, - { - "title": "Collin Raye - Not That Different (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "eRxelhjNOwA" - }, - { - "title": "Chris Janson - Buy Me A Boat - Karaoke Version from Zoom Karaoke", - "id": "3rHy9MLpjTc" - }, - { - "title": "Artemas - I Like The Way You Kiss Me - Karaoke Version from Zoom Karaoke", - "id": "3SkACLpw5C4" - }, - { - "title": "Elvis Presley - It Feels So Right - Karaoke Version from Zoom Karaoke", - "id": "pLll7ERiyqI" - }, - { - "title": "Elvis Presley - Hard Knocks - Karaoke Version from Zoom Karaoke", - "id": "ROa9UZX4Y4s" - }, - { - "title": "Djo - End Of Beginning - Karaoke Version from Zoom Karaoke", - "id": "MBpXgRwXXU4" - }, - { - "title": "Dua Lipa - Training Season (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "M1D9OpPQZ7k" - }, - { - "title": "George Strait - Check Yes Or No (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "G4RES9etS-U" - }, - { - "title": "Benson Boone - Beautiful Things - Karaoke Version from Zoom Karaoke", - "id": "0E0K8OmZcIM" - }, - { - "title": "Dennis Brown - Another Day In Paradise (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qNojzw2wfxY" - }, - { - "title": "Switch Disco feat Ella Henderson - React - Karaoke Version from Zoom Karaoke", - "id": "ceWM5SACHCc" - }, - { - "title": "John Rowles - One Day (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SS-X_ln2xWA" - }, - { - "title": "Janis Joplin - Me And Bobby McGee - Karaoke Version from Zoom Karaoke", - "id": "QL-I_Riyf5k" - }, - { - "title": "Conway Twitty - Hello Darlin' - Karaoke Version from Zoom Karaoke", - "id": "BgrAR-F7PNY" - }, - { - "title": "Jonas Brothers - Strong Enough (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "BWtlz2x-orw" - }, - { - "title": "Noah Kahan - Stick Season (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "uEVveN0qaUI" - }, - { - "title": "Ozzy Osbourne - Dreamer (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8ywXdltPQpU" - }, - { - "title": "Kris Kristofferson - Help Me Make It Through The Night (Without Backing Vocals) - Karaoke Version", - "id": "2pkA9qQXHkE" - }, - { - "title": "Hue And Cry - Looking For Linda (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "0zsJGqV90sA" - }, - { - "title": "George Strait - All My Ex's Live In Texas (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "IbSIykjT7Rg" - }, - { - "title": "George Strait - The Cowboy Rides Away - Karaoke Version from Zoom Karaoke", - "id": "GrPRIybxJXw" - }, - { - "title": "Post Malone feat Blake Shelton - Pour Me A Drink (Without Backing Vocals) - Karaoke Version", - "id": "oaNG-4uOhW8" - }, - { - "title": "George Strait - Amarillo By Morning - Karaoke Version from Zoom Karaoke", - "id": "j0h-43uv3Yw" - }, - { - "title": "Julio Iglesias - Begin The Beguine (English Lyrics) - Karaoke Version from Zoom Karaoke", - "id": "_c6Wstypeb4" - }, - { - "title": "Etta James - Stormy Weather - Karaoke Version from Zoom Karaoke", - "id": "ZixsW4FrMfA" - }, - { - "title": "Ike & Tina Turner - Don't Play Me Cheap - Karaoke Version from Zoom Karaoke", - "id": "KNkPazdslxc" - }, - { - "title": "Diana Ross & The Supremes - I'm Living In Shame (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "7trmEP5oYT0" - }, - { - "title": "Gwen Stefani - What You Waiting For (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Qpj0khBh-kM" - }, - { - "title": "Tenille Arts - Somebody Like That - Karaoke Version from Zoom Karaoke", - "id": "PC578e8NvNQ" - }, - { - "title": "The Connells - '74-'75 - Karaoke Version from Zoom Karaoke", - "id": "Kt0pz4m9z5U" - }, - { - "title": "Rod Stewart - I Was Only Joking (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "65c3S-i3pes" - }, - { - "title": "Toby Keith & Willie Nelson - Beer For My Horses - Karaoke Version from Zoom Karaoke", - "id": "1oQ6qmTh6v0" - }, - { - "title": "Benson Boone - Slow It Down (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-O0UIo6lRFc" - }, - { - "title": "Waylon Jennings & Willie Nelson - Mamas Don't Let Your Babies Grow Up To Be Cowboys - Zoom Karaoke", - "id": "zAfY8Yn-xrc" - }, - { - "title": "Benson Boone - Slow It Down - Karaoke Version from Zoom Karaoke", - "id": "uHCHpNczkfw" - }, - { - "title": "Dua Lipa - Illusion - Karaoke Version from Zoom Karaoke", - "id": "64FnRSC2TDc" - }, - { - "title": "Toby Keith - I Love This Bar - Karaoke Version from Zoom Karaoke", - "id": "5Z7TXQss4hs" - }, - { - "title": "Post Malone feat Morgan Wallen - I Had Some Help (Without Backing Vocals) - Karaoke Version", - "id": "2QEbxvfiai8" - }, - { - "title": "Toby Keith - I Love This Bar (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rdjua03G4f4" - }, - { - "title": "Rod Stewart - I Was Only Joking - Karaoke Version from Zoom Karaoke", - "id": "_sHPpJymZqo" - }, - { - "title": "Post Malone feat Morgan Wallen - I Had Some Help - Karaoke Version from Zoom Karaoke", - "id": "82mLlxoHYwc" - }, - { - "title": "Gwen Stefani - What You Waiting For - Karaoke Version from Zoom Karaoke", - "id": "7zYl3tJ-CnE" - }, - { - "title": "The Connells - '74-'75 (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "0R5yREDcDS8" - }, - { - "title": "Vince Gill - Tryin' To Get Over You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "t_IR9iXHARI" - }, - { - "title": "Dua Lipa - Illusion (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_OGsUX1TM3g" - }, - { - "title": "Sabrina Carpenter - Espresso (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZlPzLm2r3Ck" - }, - { - "title": "Waylon Jennings & Willie Nelson - Mamas Don't Let Your Babies Grow Up To Be Cowboys (No Backing Vox)", - "id": "7zLCMZIwn4U" - }, - { - "title": "Morgan Wallen - Thought You Should Know - Karaoke Version from Zoom Karaoke", - "id": "zlt9km0pKyo" - }, - { - "title": "Mark Ambor - Belong Together (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "xwYdL72I9m8" - }, - { - "title": "Tal Bachman - She's So High (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "r4Gg3ZrOatw" - }, - { - "title": "Rascal Flatts - What Hurts The Most - Karaoke Version from Zoom Karaoke", - "id": "prCFhtyWmIU" - }, - { - "title": "UB40 - Johnny Too Bad (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fMqNZXaXHn4" - }, - { - "title": "Luke Combs - Ain't No Love In Oklahoma - Karaoke Version from Zoom Karaoke", - "id": "uSBU1J9K9bA" - }, - { - "title": "Sabrina Carpenter - Espresso - Karaoke Version from Zoom Karaoke", - "id": "zRIoxxq3SF8" - }, - { - "title": "Vince Gill - Tryin' To Get Over You - Karaoke Version from Zoom Karaoke", - "id": "TG-2qZ4JVNA" - }, - { - "title": "Luke Combs - Ain't No Love In Oklahoma (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Ks-nfqBSO2k" - }, - { - "title": "UB40 - Johnny Too Bad - Karaoke Version from Zoom Karaoke", - "id": "ExKWeOjoUhM" - }, - { - "title": "Morgan Wallen - Thought You Should Know (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rql6CBUZFK8" - }, - { - "title": "The Highwaymen - Highwayman - Karaoke Version from Zoom Karaoke", - "id": "qGAGzI_17o0" - }, - { - "title": "Tal Bachman - She's So High - Karaoke Version from Zoom Karaoke", - "id": "ow2dWujo-uk" - }, - { - "title": "Rascal Flatts - What Hurts The Most (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Xt0N37jSSIw" - }, - { - "title": "Mark Ambor - Belong Together - Karaoke Version from Zoom Karaoke", - "id": "Bvjsc-2WB2g" - }, - { - "title": "The Highwaymen - Highwayman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kEn4_B-C3uI" - }, - { - "title": "Old Dominion - One Man Band (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cl_DuDJCLq8" - }, - { - "title": "Dua Lipa - The Dua Lipa Medley - Karaoke Version from Zoom Karaoke", - "id": "LlCYjd8eLAs" - }, - { - "title": "The Runaways - Cherry Bomb - Karaoke Version from Zoom Karaoke", - "id": "3vmULs1I_oI" - }, - { - "title": "Miley Cyrus - The Miley Cyrus Medley - Karaoke Version from Zoom Karaoke", - "id": "2VbJgkmMwCg" - }, - { - "title": "Shaboozey - A Bar Song (Tipsy) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "xTbfIwVrEzg" - }, - { - "title": "Lewis Capaldi - The Lewis Capaldi Medley - Karaoke Version from Zoom Karaoke", - "id": "b-AOjXAg7KI" - }, - { - "title": "Old Dominion - One Man Band - Karaoke Version from Zoom Karaoke", - "id": "OzvVyVS1hXg" - }, - { - "title": "Patrice Rushen - Forget Me Nots (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "L5USN8kZ2xk" - }, - { - "title": "Toby Keith - Should've Been A Cowboy - Karaoke Version from Zoom Karaoke", - "id": "D3xStot1KyU" - }, - { - "title": "Tom Jones - My Way (Live In Paris 1976) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "z3ESK2cvuG4" - }, - { - "title": "Toby Keith - Should've Been A Cowboy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "uwIp-kZgDoU" - }, - { - "title": "Shaboozey - A Bar Song (Tipsy) - Karaoke Version from Zoom Karaoke", - "id": "AAd8o14bTQg" - }, - { - "title": "Patrice Rushen - Forget Me Nots - Karaoke Version from Zoom Karaoke", - "id": "AABRpEp8xMk" - }, - { - "title": "Madonna - The Madonna Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "-1pxIDpyc58" - }, - { - "title": "Teddy Swims - The Door (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "77Gll9NsX4E" - }, - { - "title": "Will Smith - Men In Black (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "wJ3sXQemJu0" - }, - { - "title": "The Rubettes - Ooh La La (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "XSFT9WaenHs" - }, - { - "title": "Carl Perkins & Friends - Sun Records Medley (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "TnWvXcfv1Uk" - }, - { - "title": "Teddy Swims - The Door - Karaoke Version from Zoom Karaoke", - "id": "o0ZcidG6dd4" - }, - { - "title": "Will Smith - Men In Black - Karaoke Version from Zoom Karaoke", - "id": "lr1-mfGB-Dc" - }, - { - "title": "Carl Perkins & Friends - Sun Records Medley - Karaoke Version from Zoom Karaoke", - "id": "OjYy_-glmPU" - }, - { - "title": "The Rubettes - Ooh La La - Karaoke Version from Zoom Karaoke", - "id": "GyaZZA_2v1U" - }, - { - "title": "Tom Jones - My Way (Live In Paris 1976) - Karaoke Version from Zoom Karaoke", - "id": "7S7-HfMJOYo" - }, - { - "title": "Merle Haggard And The Strangers - Mama Tried (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "pLcnpbOOsQU" - }, - { - "title": "Elvis Presley - Gonna Get Back Home Somehow - Karaoke Version from Zoom Karaoke", - "id": "lY7Fn7O9YXQ" - }, - { - "title": "George Strait - Check Yes Or No - Karaoke Version from Zoom Karaoke", - "id": "SDCyvLqH-h0" - }, - { - "title": "Brett Young - In Case You Didn't Know (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "NJQ-rn3U71A" - }, - { - "title": "Luke Combs - Forever After All (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "A0PEAety9tw" - }, - { - "title": "Dennis Brown - Another Day In Paradise - Karaoke Version from Zoom Karaoke", - "id": "3xk6tn2ttrE" - }, - { - "title": "Ariana Grande - Yes, And - Karaoke Version from Zoom Karaoke", - "id": "sevl27J6__E" - }, - { - "title": "Foo Foo Lamar - Around The Old Camp Fire (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "rtf5AlL67W8" - }, - { - "title": "Teddy Swims - I Lose Control (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "pJMB7qNgOfk" - }, - { - "title": "Finley Quaye - Even After All - Karaoke Version from Zoom Karaoke", - "id": "o2TsR9dMGE0" - }, - { - "title": "Calvin Harris & Rag'n'Bone Man - Lovers In A Past Life (Without Backing Vocals) - Karaoke Version", - "id": "muKa4wUqUro" - }, - { - "title": "The Sound Of Music - So Long, Farewell - Karaoke Version from Zoom Karaoke", - "id": "JmLhKKUnU_w" - }, - { - "title": "Noah Kahan - Stick Season - Karaoke Version from Zoom Karaoke", - "id": "tGLwD63tBmM" - }, - { - "title": "Ozzy Osbourne - Dreamer - Karaoke Version from Zoom Karaoke", - "id": "f_16Il1UrWo" - }, - { - "title": "George Strait - All My Ex's Live In Texas - Karaoke Version from Zoom Karaoke", - "id": "AoXZRHbwmSM" - }, - { - "title": "Hank Williams - I'm So Lonesome I Could Cry - Karaoke Version from Zoom Karaoke", - "id": "2MVZbFoYseE" - }, - { - "title": "Hue And Cry - Looking For Linda - Karaoke Version from Zoom Karaoke", - "id": "JWJolvXSxF4" - }, - { - "title": "Kris Kristofferson - Help Me Make It Through The Night - Karaoke Version from Zoom Karaoke", - "id": "EgD-77rda_g" - }, - { - "title": "Ariana Grande - Yes, And (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "tIZatbHVU_Y" - }, - { - "title": "Steps - Tragedy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "oH6_ke2aIpo" - }, - { - "title": "Brett Young - In Case You Didn't Know - Karaoke Version from Zoom Karaoke", - "id": "b63eyhev_EE" - }, - { - "title": "Switch Disco feat Ella Henderson - React (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "T_Tt85f1TA0" - }, - { - "title": "The Spice Girls - The Spice Girls Medley - Karaoke Version from Zoom Karaoke", - "id": "IOyebY5yJKs" - }, - { - "title": "Jonas Brothers - Strong Enough - Karaoke Version from Zoom Karaoke", - "id": "ETCc8_z3zqc" - }, - { - "title": "Elvis Presley - Hard Knocks (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_yEmifU38dk" - }, - { - "title": "Conway Twitty - Hello Darlin' (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1DUSdG2fXKk" - }, - { - "title": "Merle Haggard And The Strangers - Mama Tried - Karaoke Version from Zoom Karaoke", - "id": "oKu8Otp75DI" - }, - { - "title": "Elvis Presley - It Feels So Right (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "VS3ufHWVbgs" - }, - { - "title": "Luke Combs - Forever After All - Karaoke Version from Zoom Karaoke", - "id": "3Prl2ZzXoG0" - }, - { - "title": "Djo - End Of Beginning (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vJJvUzuKraA" - }, - { - "title": "Teddy Swims - I Lose Control - Karaoke Version from Zoom Karaoke", - "id": "t9ZaL7A5hw8" - }, - { - "title": "Benson Boone - Beautiful Things (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "k3ZQ1XNh-fQ" - }, - { - "title": "Dua Lipa - Training Season - Karaoke Version from Zoom Karaoke", - "id": "cUOfrHKZl2U" - }, - { - "title": "Calvin Harris & Rag'n'Bone Man - Lovers In A Past Life - Karaoke Version from Zoom Karaoke", - "id": "BnQvAUlB290" - }, - { - "title": "Olly Alexander - Dizzy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1W0ejJEDEzc" - }, - { - "title": "The Temptations - Lady Soul (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "o5dpsl7KuRA" - }, - { - "title": "Elvis Presley - C'mon Everybody (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "RnJhb3_DmfE" - }, - { - "title": "Gerry Monroe - It's Raining Roses (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "LboQBaKV_W8" - }, - { - "title": "The Rubettes - You're The Reason Why (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "6wpdVKXGyxY" - }, - { - "title": "Aswad - Give A Little Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WCFY6xzv0PA" - }, - { - "title": "Zara Larsson - You Love Who You Love - Karaoke Version from Zoom Karaoke", - "id": "MJCzgfg3Ptw" - }, - { - "title": "Foo Foo Lamar - Around The Old Camp Fire - Karaoke Version from Zoom Karaoke", - "id": "pOp31pRx6k8" - }, - { - "title": "Tracy Byrd - Drinkin' Bone (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fQW4p0Aadoc" - }, - { - "title": "John Holt - If I Were A Carpenter - Karaoke Version from Zoom Karaoke", - "id": "bYpqwMTZ39A" - }, - { - "title": "Hothouse Flowers - Don't Go - Karaoke Version from Zoom Karaoke", - "id": "Kg2aQvTH1IU" - }, - { - "title": "Guy Mitchell - Pittsburgh, Pennsylvania (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Em_BNE_hzxc" - }, - { - "title": "David Bowie & Mick Jagger - Dancing In The Street (Down Two Semitones) - Karaoke Version from Zoom", - "id": "6Q3vhnptfo0" - }, - { - "title": "Billy Elliot - Electricity - Karaoke Version from Zoom Karaoke", - "id": "4NBlvqtKG20" - }, - { - "title": "Gary Barlow - Love Won't Wait (Junior Vasquez Radio Mix) (Without Backing Vocals) - Karaoke Version", - "id": "kDAPnB8NEyk" - }, - { - "title": "Dennis Brown - Queen Majesty (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nOzxT-1bdSk" - }, - { - "title": "Ariana Grande - We Can't Be Friends (Wait For Your Love) (Without Backing Vocals) - Karaoke Version", - "id": "dffxXl2FlNc" - }, - { - "title": "Kermit The Frog & Debbie Harry - Rainbow Connection (Without Backing Vocals) - Karaoke Version", - "id": "ZWE3-_Ajk3c" - }, - { - "title": "Modern Talking - You're My Heart, You're My Soul (Without Backing Vocals) - Karaoke Version", - "id": "V836jCC_KLg" - }, - { - "title": "Beauty And The Beast - Be Our Guest (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "NVYoe5rhsmQ" - }, - { - "title": "Tracy Byrd - Watermelon Crawl - Karaoke Version from Zoom Karaoke", - "id": "HgzaiYvjr1I" - }, - { - "title": "Teddy Swims - You're Still The One (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "CfOHkgdtYME" - }, - { - "title": "Conway Twitty - Tight Fittin' Jeans - Karaoke Version from Zoom Karaoke", - "id": "4O4xHUhvO2A" - }, - { - "title": "Elvis Presley - Gold In The Mountains (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "4I4T7w_BbyY" - }, - { - "title": "Wicked - The Wicked Medley - Karaoke Version from Zoom Karaoke", - "id": "5XOwNhuR2FM" - }, - { - "title": "Brian Poole & The Tremeloes - Do You Love Me - Karaoke Version from Zoom Karaoke", - "id": "8uXGcHcFMpU" - }, - { - "title": "Aswad - Give A Little Love - Karaoke Version from Zoom Karaoke", - "id": "yBvXZVwugt0" - }, - { - "title": "Guy Mitchell - Pittsburgh, Pennsylvania - Karaoke Version from Zoom Karaoke", - "id": "nwPMB3q-GtE" - }, - { - "title": "Zara Larsson - You Love Who You Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iJZHCxqEr0k" - }, - { - "title": "Finley Quaye - Even After All (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZW5laugC3TU" - }, - { - "title": "Tracy Byrd - Drinkin' Bone - Karaoke Version from Zoom Karaoke", - "id": "T9Erv7FedjI" - }, - { - "title": "The Temptations - Lady Soul - Karaoke Version from Zoom Karaoke", - "id": "7NhO0zUmFoM" - }, - { - "title": "Hothouse Flowers - Don't Go (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "oRCoSCNtZAo" - }, - { - "title": "Gerry Monroe - It's Raining Roses - Karaoke Version from Zoom Karaoke", - "id": "ekWW4kL-NsA" - }, - { - "title": "Florence + The Machine - Shake It Out (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "X3pGP7_odfM" - }, - { - "title": "Billy Elliot - Electricity (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "H_6HxXKvjyA" - }, - { - "title": "Elvis Presley - C'mon Everybody - Karaoke Version from Zoom Karaoke", - "id": "66N0mTKLPLg" - }, - { - "title": "Rod Stewart - Downtown Train - Karaoke Version from Zoom Karaoke", - "id": "14hpw61V4tM" - }, - { - "title": "Kenny Thomas - Thinking About Your Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "z_QLY8E2txo" - }, - { - "title": "The Fureys And Davey Arthur - Red Rose Cafe - Karaoke Version from Zoom Karaoke", - "id": "ke31rgEnm4E" - }, - { - "title": "Siouxsie And The Banshees - Spellbound (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kEeB9qxLW1A" - }, - { - "title": "OMD - History Of Modern (Part 1) - Karaoke Version from Zoom Karaoke", - "id": "c_Htz7jSoWs" - }, - { - "title": "OMD - Dreaming (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "UUWbYyvAiVs" - }, - { - "title": "1927 - A World Without You - Karaoke Version from Zoom Karaoke", - "id": "Ouy_OcOKs1U" - }, - { - "title": "Capital Cities - Safe And Sound - Karaoke Version from Zoom Karaoke", - "id": "k2HHDJONK9w" - }, - { - "title": "Ohio Express - Yummy Yummy Yummy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8f7hKQm9nmk" - }, - { - "title": "John Holt - If I Were A Carpenter (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "6qGSwAi5rTA" - }, - { - "title": "John Denver - Rocky Mountain High (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hvx1I9WarT8" - }, - { - "title": "Dennis Brown - Queen Majesty - Karaoke Version from Zoom Karaoke", - "id": "elDYySCsPJE" - }, - { - "title": "Modern Talking - You're My Heart, You're My Soul - Karaoke Version from Zoom Karaoke", - "id": "aEnsCIpCXrQ" - }, - { - "title": "Don Williams - I Believe In You - Karaoke Version from Zoom Karaoke", - "id": "WnR7yUqlhWk" - }, - { - "title": "Kermit The Frog - Rainbow Connection - Karaoke Version from Zoom Karaoke", - "id": "VMDzteE_pBg" - }, - { - "title": "The Cascades - Rhythm Of The Rain (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PzxxbhCj5KM" - }, - { - "title": "Bruce Springsteen - Thunder Road (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Z1GvPe4ZJCw" - }, - { - "title": "Teddy Swims - You're Still The One - Karaoke Version from Zoom Karaoke", - "id": "XrqR4mPh5fU" - }, - { - "title": "Elvis Presley - Gold In The Mountains - Karaoke Version from Zoom Karaoke", - "id": "GmWqVa9o5oA" - }, - { - "title": "Ariana Grande - We Can't Be Friends (Wait For Your Love) - Karaoke Version from Zoom Karaoke", - "id": "CFpdHBYablk" - }, - { - "title": "Tracy Byrd - Watermelon Crawl (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "AkaJcgSGqTw" - }, - { - "title": "David Bowie & Mick Jagger - Dancing In The Street (Without Backing Vocals) - Karaoke Version", - "id": "8G6aJ-4rUZ0" - }, - { - "title": "Tokio Hotel - Monsoon (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "tvPLfjEL4v4" - }, - { - "title": "Dolly Parton - I Will Always Love You - Karaoke Version from Zoom Karaoke", - "id": "mnWUmanFaoE" - }, - { - "title": "Willie Nelson - On The Road Again - Karaoke Version from Zoom Karaoke", - "id": "eqEs5IvznEw" - }, - { - "title": "Hazell Dean - Whatever I Do (Wherever I Go) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "MEF4qti0nRI" - }, - { - "title": "Eurythmics - Who's That Girl (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2HV3snfTVk4" - }, - { - "title": "Conway Twitty - Tight Fittin' Jeans (Without Backing Vocals) - Karaoke Version from Zoom Karake", - "id": "mYQJWmrW6qE" - }, - { - "title": "Beauty And The Beast - Be Our Guest - Karaoke Version from Zoom Karaoke", - "id": "mUbBUKHeurs" - }, - { - "title": "Siouxsie And The Banshees - Cities In Dust - Karaoke Version from Zoom Karaoke", - "id": "icEn8kfUkYQ" - }, - { - "title": "Kermit The Frog & Debbie Harry - Rainbow Connection - Karaoke Version from Zoom Karaoke", - "id": "ctGU8MBQrbM" - }, - { - "title": "Lewis Capaldi - Strangers (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PJwXzHkiIeo" - }, - { - "title": "Gary Barlow - Love Won't Wait (Junior Vasquez Radio Mix) - Karaoke Version from Zoom Karaoke", - "id": "8FqaXLbQuko" - }, - { - "title": "Rod Stewart - Gasoline Alley - Karaoke Version from Zoom Karaoke", - "id": "0FrRxCzVwRw" - }, - { - "title": "1927 - All The People (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "KZHtgMGwKS4" - }, - { - "title": "Geordie - All Because Of You - Karaoke Version from Zoom Karaoke", - "id": "rZq3IO1H3TI" - }, - { - "title": "Eurythmics - Who's That Girl - Karaoke Version from Zoom Karaoke", - "id": "lullegvEKqg" - }, - { - "title": "Thomas Rhett - Marry Me - Karaoke Version from Zoom Karaoke", - "id": "KUx8VfvBagU" - }, - { - "title": "Bob Lind - Elusive Butterfly - Karaoke Version from Zoom Karaoke", - "id": "FBvmWeIRPMs" - }, - { - "title": "Dolly Parton - I Will Always Love You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "o_pLG7ti2VI" - }, - { - "title": "Siouxsie And The Banshees - Spellbound - Karaoke Version from Zoom Karaoke", - "id": "SeWOtBE17pg" - }, - { - "title": "Willie Nelson - On The Road Again (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SSkK7f-1oc4" - }, - { - "title": "Sara Bareilles - Brave - Karaoke Version from Zoom Karaoke", - "id": "589w-L37Yvw" - }, - { - "title": "Bruno Mars - Talking To The Moon - Karaoke Version from Zoom Karaoke", - "id": "kdtWMjCEwSw" - }, - { - "title": "Kenny Thomas - Thinking About Your Love - Karaoke Version from Zoom Karaoke", - "id": "xpYtwpH7A1o" - }, - { - "title": "Ohio Express - Yummy Yummy Yummy - Karaoke Version from Zoom Karaoke", - "id": "q_yt9znZbks" - }, - { - "title": "Capital Cities - Safe And Sound (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "eWKTGwK3B3M" - }, - { - "title": "OMD - Dreaming - Karaoke Version from Zoom Karaoke", - "id": "YzbU_mR7DvI" - }, - { - "title": "Hazell Dean - Whatever I Do (Wherever I Go) - Karaoke Version from Zoom Karaoke", - "id": "PLcb_Wls1SQ" - }, - { - "title": "Marilyn Manson - Sweet Dreams (Are Made Of This) - Karaoke Version from Zoom Karaoke", - "id": "D6j-GknXHwE" - }, - { - "title": "OMD - History Of Modern (Part 1) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "mlHJizHrGM4" - }, - { - "title": "Tokio Hotel - Monsoon - Karaoke Version from Zoom Karaoke", - "id": "tG6a10sjyac" - }, - { - "title": "Lewis Capaldi - Strangers - Karaoke Version from Zoom Karaoke", - "id": "iE9om6MjMRs" - }, - { - "title": "The Fureys And Davey Arthur - Red Rose Cafe (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "_2uGmobyf2E" - }, - { - "title": "Mental As Anything - Whole Wide World - Karaoke Version from Zoom Karaoke", - "id": "UhFm2IZFAOY" - }, - { - "title": "1927 - All The People - Karaoke Version from Zoom Karaoke", - "id": "UB7I4K2tnFs" - }, - { - "title": "1927 - A World Without You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "S-WUin1jVRM" - }, - { - "title": "Elvis Presley - Gonna Get Back Home Somehow (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "P89TPE7umgw" - }, - { - "title": "Sara Bareilles - Brave (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "NqkniV5i63k" - }, - { - "title": "Billy Joel - Turn The Lights Back On - Karaoke Version from Zoom Karaoke", - "id": "-JQP41IG41g" - }, - { - "title": "Nora Dean - Play Me A Love Song - Karaoke Version from Zoom Karaoke", - "id": "u43IjKUHaa4" - }, - { - "title": "Elvis Presley - Reconsider Baby - Karaoke Version from Zoom Karaoke", - "id": "oAsHZTJPtPY" - }, - { - "title": "Geordie - All Because Of You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ngOIQIyv728" - }, - { - "title": "John Rowles - One Day - Karaoke Version from Zoom Karaoke", - "id": "IILQisIKY9Y" - }, - { - "title": "1927 - Nothing In The Universe - Karaoke Version from Zoom Karaoke", - "id": "5_-t_YGggb4" - }, - { - "title": "Sabrina Carpenter - A Nonsense Christmas - Karaoke Version from Zoom Karaoke", - "id": "ZxxBWY9342s" - }, - { - "title": "John Denver Vs Queen - Country Roads Will Rock You (Without Backing Vocals) - Karaoke Version", - "id": "ypwKSMkNh5I" - }, - { - "title": "Slade - Merry Xmas Everybody (-2 Semitones) - Acoustic Piano Karaoke Version from Zoom Karaoke", - "id": "nGCesYHDDhE" - }, - { - "title": "David Alexander - With One Exception - Karaoke Version from Zoom Karaoke", - "id": "daZgwY1L3Pw" - }, - { - "title": "Dua Lipa - Houdini (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "dNdtE7pAH6A" - }, - { - "title": "KSI feat Trippie Redd - Thick Of It - Karaoke Version from Zoom Karaoke", - "id": "alObzhA6rrI" - }, - { - "title": "Electric Light Orchestra - Don't Bring Me Down (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "YgWkhaK1SRw" - }, - { - "title": "Shakin' Stevens - Merry Christmas Everyone (-2 Semitones) - Acoustic Piano Karaoke Version from Zoom", - "id": "RzfTmE2NFuU" - }, - { - "title": "Sam & Dave - Hold On, I'm Comin' (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "QUGTqPNiwXU" - }, - { - "title": "Lee Majors - Unknown Stuntman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PPqAQTQ-BuU" - }, - { - "title": "George Michael - Killer/Papa Was A Rollin' Stone - Karaoke Version from Zoom Karaoke", - "id": "0W_IdzuqBnI" - }, - { - "title": "Harvest Samba (It's Another Harvest Festival) - Karaoke Version - School Songs - Zoom Karaoke", - "id": "T8tstgN4yGQ" - }, - { - "title": "Luke Combs - Hurricane (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PEBZiBgVhmo" - }, - { - "title": "Sia & Kylie Minogue - Dance Alone (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "MmrMJKlJask" - }, - { - "title": "Ella Henderson feat Rudimental - Alibi (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "FlQckuFzZSI" - }, - { - "title": "Elvis Presley - I Feel That I've Known You Forever - Karaoke Version from Zoom Karaoke", - "id": "2wqjnOz6YEk" - }, - { - "title": "Stephen Sanchez - Until I Found You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-uzr3ILrJ8U" - }, - { - "title": "Ed Sheeran - Under The Tree - Karaoke Version from Zoom Karaoke", - "id": "54ssDhVg6dE" - }, - { - "title": "Robbie Williams - Forbidden Road - Karaoke Version from Zoom Karaoke", - "id": "VA5jnmkBFgM" - }, - { - "title": "Dolly Parton - World On Fire - Karaoke Version from Zoom Karaoke", - "id": "zNz18SOCbsg" - }, - { - "title": "Beyonce - Texas Hold 'Em (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "l08Q_XRQ6cM" - }, - { - "title": "Marshmello, Pink & Sting - Dreaming - Karaoke Version from Zoom Karaoke", - "id": "9VZwcHZ8MeQ" - }, - { - "title": "Luke Combs - Fast Car (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ruetLHPyqAs" - }, - { - "title": "13 (Broadway Cast) - The Lamest Place In The World - Karaoke Version from Zoom Karaoke", - "id": "ntmYN-dIRUs" - }, - { - "title": "Elvis Presley - I Feel That I've Known You Forever (Without Backing Vocals) - Karaoke Version", - "id": "TpTB2j3fkmU" - }, - { - "title": "Ella Henderson feat Rudimental - Alibi - Karaoke Version from Zoom Karaoke", - "id": "KdeBPUNM5EA" - }, - { - "title": "Sia & Kylie Minogue - Dance Alone - Karaoke Version from Zoom Karaoke", - "id": "AvubNC40j9Q" - }, - { - "title": "The Hooters - And We Danced (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vthF6nHrHNs" - }, - { - "title": "Pussycat - Bad Boy - Karaoke Version from Zoom Karaoke", - "id": "pyr0WOy25Ik" - }, - { - "title": "Lizzo - Pink (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "mexpzRHrx0U" - }, - { - "title": "Slade - Merry Xmas Everybody (-4 Semitones) - Acoustic Piano Karaoke Version from Zoom Karaoke", - "id": "koR3piz-afE" - }, - { - "title": "Glen Campbell - Yesterday, When I Was Young - Karaoke Version from Zoom Karaoke", - "id": "d2znbEF0WTM" - }, - { - "title": "Fifty Fifty feat Kaliii - Barbie Dreams - Karaoke Version from Zoom Karaoke", - "id": "OS9SsMf29qY" - }, - { - "title": "David Alexander - With One Exception (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "KMRDJEcHdPo" - }, - { - "title": "Lee Majors - Unknown Stuntman - Karaoke Version from Zoom Karaoke", - "id": "GgLe-D6YNv8" - }, - { - "title": "OneRepublic - Runaway (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EujKkIgKWhk" - }, - { - "title": "Sam Smith - Man I Am (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "6BSZtz7aEQs" - }, - { - "title": "PinkPantheress - Angel - Karaoke Version from Zoom Karaoke", - "id": "56O3xu0fs0Q" - }, - { - "title": "Hank Williams - Jambalaya (On The Bayou) - Karaoke Version from Zoom Karaoke", - "id": "zORZJzp9Mi0" - }, - { - "title": "Sam & Dave - Hold On, I'm Comin' - Karaoke Version from Zoom Karaoke", - "id": "3G9MAeMewRI" - }, - { - "title": "Eric Donaldson - Lonely Nights - Karaoke Version from Zoom Karaoke", - "id": "qiQqJ35LHtk" - }, - { - "title": "Luke Combs - Fast Car - Karaoke Version from Zoom Karaoke", - "id": "ULzhzEenvuI" - }, - { - "title": "Joyce Bond - You've Been Gone Too Long - Karaoke Version from Zoom Karaoke", - "id": "PYp78NO1cOk" - }, - { - "title": "Beyonce - Texas Hold 'Em - Karaoke Version from Zoom Karaoke", - "id": "N3jHR9SQKiw" - }, - { - "title": "Take That - This Life (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Mx8rChsw42A" - }, - { - "title": "Joyce Bond - You've Been Gone Too Long (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EtIHBF-iBAk" - }, - { - "title": "Tim McGraw - Humble And Kind (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "AeQyOOhJBho" - }, - { - "title": "Luke Combs - Hurricane - Karaoke Version from Zoom Karaoke", - "id": "6MP8kHNbuTI" - }, - { - "title": "Shakin' Stevens - I'll Be Home This Christmas - Karaoke Version from Zoom Karaoke", - "id": "5Yxf5xVDL2c" - }, - { - "title": "Dragon - Konkaroo (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "zHQC5EE8VCs" - }, - { - "title": "Fifty Fifty feat Kaliii - Barbie Dreams (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rwHAw3DessI" - }, - { - "title": "Ava Max - Choose Your Fighter - Karaoke Version from Zoom Karaoke", - "id": "nvOb9yWaqZQ" - }, - { - "title": "Glen Campbell - Southern Nights (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iFVgwL9-Ltk" - }, - { - "title": "Stephen Sanchez - Until I Found You - Karaoke Version from Zoom Karaoke", - "id": "fM7Nlmk1OeY" - }, - { - "title": "OneRepublic - Runaway - Karaoke Version from Zoom Karaoke", - "id": "UpeD1UI4ED8" - }, - { - "title": "Shakin' Stevens - Merry Christmas Everyone (+2 Semitones Female Key) - Acoustic Piano Karaoke", - "id": "NgjQ3q0RQkI" - }, - { - "title": "PinkPantheress - Angel (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "LGpo6BFphKQ" - }, - { - "title": "Olivia Rodrigo - Vampire (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "KtZ-tAn2J7I" - }, - { - "title": "Ryan Gosling - I'm Just Ken (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "J_8zeR67f-E" - }, - { - "title": "Maroon 5 - Middle Ground (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "IRv5m5q43fY" - }, - { - "title": "Pussycat - Bad Boy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "HWmI5y9azlg" - }, - { - "title": "Elvis Presley - Too Much Monkey Business (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "DPDV48jHVbg" - }, - { - "title": "Dragon - Here Am I - Karaoke Version from Zoom Karaoke", - "id": "5gL2jvZCb9M" - }, - { - "title": "Lizzo - Pink - Karaoke Version from Zoom Karaoke", - "id": "2CjitzPfQ8E" - }, - { - "title": "The Tamperer feat Maya - Feel It - Karaoke Version from Zoom Karaoke", - "id": "yXARVuc0lyY" - }, - { - "title": "Andy Williams - Home Lovin' Man (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qr2ZJwAjEBk" - }, - { - "title": "Deana Carter - Strawberry Wine - Karaoke Version from Zoom Karaoke", - "id": "qqroeZzHML4" - }, - { - "title": "Goanna - Common Ground (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "o2EFXWJaebs" - }, - { - "title": "Beres Hammond - No Disturb Sign (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jY3YeNiE80U" - }, - { - "title": "Tim McGraw - Live Like You Were Dying (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iWRwS5ByC7k" - }, - { - "title": "Midland - Drinkin' Problem (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fPareuB26OM" - }, - { - "title": "Jon Pardi - Head Over Boots - Karaoke Version from Zoom Karaoke", - "id": "fKHy7kyzLH4" - }, - { - "title": "Luke Combs - Beer Never Broke My Heart (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "aP2-Qa1blhg" - }, - { - "title": "The Rolling Stones - Mess It Up - Karaoke Version from Zoom Karaoke", - "id": "_sY-lVaQdAg" - }, - { - "title": "The Tamperer feat Maya - Feel It (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_BQa0BjqXOA" - }, - { - "title": "Taylor Austin Dye - Rest In Peace (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZaT6uvYXQPA" - }, - { - "title": "The Jacksons - Can You Feel It (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "OF-S0lMvgFU" - }, - { - "title": "Joyce Bond - Music And Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "LV7eI0V4cLA" - }, - { - "title": "Holly Johnson - Love Train (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "DyGDpQ_HrzU" - }, - { - "title": "Elvis Presley - Suspicious Minds (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "D04s9AfH8cs" - }, - { - "title": "Joyce Bond - Love Me And Leave Me - Karaoke Version from Zoom Karaoke", - "id": "ABDFbEDrC6Q" - }, - { - "title": "Baha Men - Who Let The Dogs Out (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9atL28PkKz4" - }, - { - "title": "Dr Hook - A Couple More Years - Karaoke Version from Zoom Karaoke", - "id": "99-z5BjJwl8" - }, - { - "title": "The Libertines - Run Run Run (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8Gn-aYsBahM" - }, - { - "title": "Grace Jones - Pull Up To The Bumper (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-GJKeq7s_2o" - }, - { - "title": "Brooks And Dunn - Boot Scootin' Boogie - Karaoke Version from Zoom Karaoke", - "id": "IWJ3j65Xvs4" - }, - { - "title": "Luke Combs - Beautiful Crazy - Karaoke Version from Zoom Karaoke", - "id": "FqQPlPJLmVQ" - }, - { - "title": "Marshmello, Pink & Sting - Dreaming (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "gJWsTHM69fw" - }, - { - "title": "The Foundations - Build Me Up Buttercup (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "LYCraB5If5I" - }, - { - "title": "Dolly Parton - World On Fire (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Htca_nwfLyc" - }, - { - "title": "Elliot James Reay - Boy In Love - Karaoke Version from Zoom Karaoke", - "id": "h7oA_xoQ8RQ" - }, - { - "title": "Goanna - Common Ground - Karaoke Version from Zoom Karaoke", - "id": "yu5QFEV0t2s" - }, - { - "title": "Holly Johnson - Love Train - Karaoke Version from Zoom Karaoke", - "id": "jBY_MNt3S7E" - }, - { - "title": "Baha Men - Who Let The Dogs Out - Karaoke Version from Zoom Karaoke", - "id": "RWNexlfmDE4" - }, - { - "title": "Grace Jones - Pull Up To The Bumper - Karaoke Version from Zoom Karaoke", - "id": "PnaHFavxPxE" - }, - { - "title": "Dr Hook - A Couple More Years (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Bas9JqTJ3lI" - }, - { - "title": "Taylor Austin Dye - Rest In Peace - Karaoke Version from Zoom Karaoke", - "id": "6luDRdS7iFk" - }, - { - "title": "David Guetta, Anne Marie & Coi Leray - Baby Don't Hurt Me - Karaoke Version from Zoom Karaoke", - "id": "dJCo7D_mXGk" - }, - { - "title": "Take That - This Life - Karaoke Version from Zoom Karaoke", - "id": "_jOqOCg2k1o" - }, - { - "title": "The Hooters - And We Danced - Karaoke Version from Zoom Karaoke", - "id": "QFKDYinLtZE" - }, - { - "title": "Dua Lipa - Houdini - Karaoke Version from Zoom Karaoke", - "id": "MLzSq0sn4ks" - }, - { - "title": "Tim McGraw - Humble And Kind - Karaoke Version from Zoom Karaoke", - "id": "1s6Q-tc6CFA" - }, - { - "title": "Squeeze - The Squeeze Medley - Karaoke Version from Zoom Karaoke", - "id": "cypQHXieTL8" - }, - { - "title": "Beres Hammond - No Disturb Sign - Karaoke Version from Zoom Karaoke", - "id": "M7sRku_7ZTE" - }, - { - "title": "Joyce Bond - Love Me And Leave Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "DqOaY4zlSkY" - }, - { - "title": "Shakin' Stevens - Merry Christmas Everyone (Original Key) - Acoustic Piano Karaoke Version from Zoom", - "id": "b2hRY41f1SY" - }, - { - "title": "Slade - Merry Xmas Everybody (+2 Semitones) - Acoustic Piano Karaoke Version from Zoom Karaoke", - "id": "-IFVPQQgyzM" - }, - { - "title": "The Killers - Mr Brightside (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rxbWx2d3bYM" - }, - { - "title": "Ryan Gosling - I'm Just Ken - Karaoke Version from Zoom Karaoke", - "id": "xbfbtMvrhco" - }, - { - "title": "Ava Max - Choose Your Fighter (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "brJiVV-CzGo" - }, - { - "title": "Sam Smith - Man I Am - Karaoke Version from Zoom Karaoke", - "id": "Jq10HTIod8I" - }, - { - "title": "Katy Perry - Last Friday Night (T.G.I.F.) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "D1Xk8GnWEc0" - }, - { - "title": "Joyce Bond - Music And Love - Karaoke Version from Zoom Karaoke", - "id": "SjKBzN8sLP4" - }, - { - "title": "Squeeze - Haywire - Karaoke Version from Zoom Karaoke", - "id": "4fBy2cbDMVw" - }, - { - "title": "Maroon 5 - Middle Ground - Karaoke Version from Zoom Karaoke", - "id": "tjJD8UjwZaM" - }, - { - "title": "Dragon - Here Am I (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "VUMwnXKVeNM" - }, - { - "title": "Dragon - Konkaroo - Karaoke Version from Zoom Karaoke", - "id": "KN6IwscZ4iE" - }, - { - "title": "Elvis Presley - Suspicious Minds (No Male Harmony) - Karaoke Version from Zoom Karaoke", - "id": "vzH7tbfI27Y" - }, - { - "title": "Joyce Bond - Nice To Have You Back Again (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "lzSdjdCnbWI" - }, - { - "title": "The Libertines - Run Run Run - Karaoke Version from Zoom Karaoke", - "id": "KBp9JSILnIM" - }, - { - "title": "Andy Williams - Home Lovin' Man - Karaoke Version from Zoom Karaoke", - "id": "x6MmkfDbQtA" - }, - { - "title": "Nancy Sinatra & Lee Hazlewood - Some Velvet Morning - Karaoke Version from Zoom Karaoke", - "id": "wbZLOytQEjs" - }, - { - "title": "Joyce Bond - Nice To Have You Back Again - Karaoke Version from Zoom Karaoke", - "id": "r1PJSkkIAmY" - }, - { - "title": "Deana Carter - Strawberry Wine (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "RMWSk62Tqhg" - }, - { - "title": "The Rolling Stones - Mess It Up (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "H9k5FEItRIM" - }, - { - "title": "The Jacksons - Can You Feel It - Karaoke Version from Zoom Karaoke", - "id": "0EIWd-tt8PY" - }, - { - "title": "Brooks And Dunn - Boot Scootin' Boogie (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "uhA2Lmx6bQI" - }, - { - "title": "Jon Pardi - Head Over Boots (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cYpWW9qXXlQ" - }, - { - "title": "Luke Combs - Beer Never Broke My Heart - Karaoke Version from Zoom Karaoke", - "id": "VvptXUwLkp8" - }, - { - "title": "Tim McGraw - Live Like You Were Dying - Karaoke Version from Zoom Karaoke", - "id": "OXbmbeoksHE" - }, - { - "title": "Midland - Drinkin' Problem - Karaoke Version from Zoom Karaoke", - "id": "HSFk16xPcMk" - }, - { - "title": "Luke Combs - Beautiful Crazy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8U_LHWEMasY" - }, - { - "title": "Olivia Rodrigo - Get Him Back - Karaoke Version from Zoom Karaoke", - "id": "rmO876ap9UI" - }, - { - "title": "Ed Sheeran - American Town - Karaoke Version from Zoom Karaoke", - "id": "vrCLmxcaljU" - }, - { - "title": "Selena Gomez - Single Soon - Karaoke Version from Zoom Karaoke", - "id": "iAFBTRYd_14" - }, - { - "title": "Postmodern Jukebox - Barbie Girl - Karaoke Version from Zoom Karaoke", - "id": "r3yeYpPx0Uw" - }, - { - "title": "Kenya Grace - Strangers (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "r038FsvoGbg" - }, - { - "title": "Tyla - Water (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "otaIIubWxgg" - }, - { - "title": "Boyzone - Love Me For A Reason - Karaoke Version from Zoom Karaoke", - "id": "kfLHqX1ppUk" - }, - { - "title": "Luke Combs - When It Rains It Pours (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "itYCHZuzGxg" - }, - { - "title": "Michael McDonald - I Keep Forgettin' (Every Time You're Near) (Without Backing Vocals) - Karaoke", - "id": "i9aFMIcMPlA" - }, - { - "title": "Demis Roussos - Magdalena (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hOx5pMLofKk" - }, - { - "title": "Take That - Windows (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "czzgyL0wmQ0" - }, - { - "title": "Miley Cyrus - Used To Be Young (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_X7Vj2oF4UM" - }, - { - "title": "Kylie Minogue - Hold On To Now (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "M2afLCD2a_E" - }, - { - "title": "Westlife - My Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Llifxi0mabc" - }, - { - "title": "Louis Tomlinson - Walls - Karaoke Version from Zoom Karaoke", - "id": "9FjCo5mlZvg" - }, - { - "title": "NSYNC & Justin Timberlake - Better Place (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "YChPA3nRQlU" - }, - { - "title": "Lee Hazlewood & Nancy Sinatra - Summer Wine (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "Y6jCbC8e2Kc" - }, - { - "title": "Kim Appleby - Don't Worry - Karaoke Version from Zoom Karaoke", - "id": "Ud0QbZD7ylg" - }, - { - "title": "Tate McRae - Greedy - Karaoke Version from Zoom Karaoke", - "id": "NhjJg4rqTA8" - }, - { - "title": "Billy Joel - All For Leyna (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "CrpAWfN_VVQ" - }, - { - "title": "Luther Vandross - Love The One You're With (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "9rlkRFIl_aI" - }, - { - "title": "James Blunt - The Girl That Never Was (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2IWrAl-PHsA" - }, - { - "title": "Electric Light Orchestra - Don't Bring Me Down - Karaoke Version from Zoom Karaoke", - "id": "PSv4nd7NkIQ" - }, - { - "title": "Barbra Streisand - Don't Rain On My Parade - Karaoke Version from Zoom Karaoke", - "id": "U1QvTcxX57I" - }, - { - "title": "John Denver Vs Queen - Country Roads Will Rock You - Karaoke Version from Zoom Karaoke", - "id": "EfnoUyLYKpU" - }, - { - "title": "Calvin Harris & Sam Smith - Desire (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1U8rdPSMiM0" - }, - { - "title": "Westlife - My Love - Karaoke Version from Zoom Karaoke", - "id": "Sfy9tru5qnE" - }, - { - "title": "Squeeze - Goodbye Girl - Karaoke Version from Zoom Karaoke", - "id": "asvQo4ly-HY" - }, - { - "title": "Jace Everett - Bad Things - Karaoke Version from Zoom Karaoke", - "id": "EDqrFdW3QEc" - }, - { - "title": "Postmodern Jukebox - Barbie Girl (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SSdXnlWmG5E" - }, - { - "title": "Luther Vandross - Love The One You're With - Karaoke Version from Zoom Karaoke", - "id": "Vv7j3O3xG1U" - }, - { - "title": "Ed Sheeran - American Town (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8csn9Oh8p04" - }, - { - "title": "Take That - Windows - Karaoke Version from Zoom Karaoke", - "id": "VF18GtdFARQ" - }, - { - "title": "Boyzone - Love Me For A Reason (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "t5-1pEthrn8" - }, - { - "title": "Kylie Minogue - Hold On To Now - Karaoke Version from Zoom Karaoke", - "id": "QGqn6erzpJU" - }, - { - "title": "James Blunt - The Girl That Never Was - Karaoke Version from Zoom Karaoke", - "id": "9o2YwZ5qNsw" - }, - { - "title": "KSI feat Trippie Redd - Thick Of It (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "6JJb1Wzsa4U" - }, - { - "title": "NSYNC & Justin Timberlake - Better Place - Karaoke Version from Zoom Karaoke", - "id": "qTrqHgLgpWY" - }, - { - "title": "Luke Combs feat Brooks & Dunn - 1, 2 Many - Karaoke Version from Zoom Karaoke", - "id": "ZH0DoZS_zA8" - }, - { - "title": "Demis Roussos - Magdalena - Karaoke Version from Zoom Karaoke", - "id": "BrlkNHIRDms" - }, - { - "title": "Elvis Presley - Too Much Monkey Business - Karaoke Version from Zoom Karaoke", - "id": "Q4kdtqWAVfM" - }, - { - "title": "Billy Joel - All For Leyna - Karaoke Version from Zoom Karaoke", - "id": "eiTz4Dik72U" - }, - { - "title": "Olivia Rodrigo - Vampire - Karaoke Version from Zoom Karaoke", - "id": "Xnh0RcPwHRw" - }, - { - "title": "Miley Cyrus - Used To Be Young - Karaoke Version from Zoom Karaoke", - "id": "pgUj5Mcxci4" - }, - { - "title": "Olivia Rodrigo - Get Him Back (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SfyzUqxVWxE" - }, - { - "title": "Tate McRae - Greedy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "14RgohYDdpQ" - }, - { - "title": "Glen Campbell - Southern Nights - Karaoke Version from Zoom Karaoke", - "id": "8ch_DU4era0" - }, - { - "title": "Selena Gomez - Single Soon (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jmlrLmZIRA4" - }, - { - "title": "Kenya Grace - Strangers - Karaoke Version from Zoom Karaoke", - "id": "zTFDunUIB4U" - }, - { - "title": "Michael McDonald - I Keep Forgettin' (Every Time You're Near) - Karaoke Version from Zoom Karaoke", - "id": "zHat17p0FjI" - }, - { - "title": "Luke Combs - When It Rains It Pours - Karaoke Version from Zoom Karaoke", - "id": "NeMYLQWHe9E" - }, - { - "title": "Shakin' Stevens - The Best Christmas Of Them All - Karaoke Version from Zoom Karaoke", - "id": "ty-aREbXTlg" - }, - { - "title": "Louis Tomlinson - Walls (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "u3kdlWgFtSk" - }, - { - "title": "George Michael - Killer/Papa Was A Rollin' Stone (Without Backing Vocals) - Karaoke Version", - "id": "XP3fqyHLP2I" - }, - { - "title": "Kim Appleby - Don't Worry (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "F0UFic47JcA" - }, - { - "title": "Lee Hazlewood & Nancy Sinatra - Summer Wine - Karaoke Version from Zoom Karaoke", - "id": "7bcTf-5Jjl8" - }, - { - "title": "Slade - Merry Xmas Everybody (Original Key) - Acoustic Piano Karaoke Version from Zoom Karaoke", - "id": "wXdaIIbv1iY" - }, - { - "title": "Chappell Roan - Pink Pony Club (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "q64tlyemsHw" - }, - { - "title": "Shakin' Stevens - Merry Christmas Everyone - Karaoke Version from Zoom Karaoke", - "id": "aZdy387CjAo" - }, - { - "title": "Showaddywaddy - Hey Mister Christmas - Karaoke Version from Zoom Karaoke", - "id": "OqWvzjAuMC8" - }, - { - "title": "Brenda Lee - Jingle Bell Rock - Karaoke Version from Zoom Karaoke", - "id": "FgVQOrmTfCE" - }, - { - "title": "Maroon 5 - She Will Be Loved - Karaoke Version from Zoom Karaoke", - "id": "5Q9dXDnklLQ" - }, - { - "title": "Meghan Trainor - Mother (Without Backing Vocals Except Sandman Bits) - Karaoke Version from Zoom", - "id": "un0QXDIdD24" - }, - { - "title": "Scissor Sisters - Comfortably Numb - Karaoke Version from Zoom Karaoke", - "id": "k82WbHMu6Wg" - }, - { - "title": "Twisted Sister - I Wanna Rock (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZMGOIh7ufBE" - }, - { - "title": "Dragon - Cry - Karaoke Version from Zoom Karaoke", - "id": "TCxGrBSz3HM" - }, - { - "title": "Scissor Sisters - Laura - Karaoke Version from Zoom Karaoke", - "id": "LG3Brwxnq9w" - }, - { - "title": "Scissor Sisters - Return To Oz - Karaoke Version from Zoom Karaoke", - "id": "xZb1LOTX_5w" - }, - { - "title": "Dragon - Wait Until Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "jmqfWt1-CYA" - }, - { - "title": "Chris Norman - Broken Heroes (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8yqkPOF0YVQ" - }, - { - "title": "Susan Boyle - Silent Night - Karaoke Version from Zoom Karaoke", - "id": "eZIiQuQVD5U" - }, - { - "title": "Meghan Trainor - Mother - Karaoke Version from Zoom Karaoke", - "id": "lnkknct_ckM" - }, - { - "title": "Nazareth - Where Are You Now (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jtfK47qbUjA" - }, - { - "title": "Leo Sayer - How Much Love - Karaoke Version from Zoom Karaoke", - "id": "OpgjBaJUTBc" - }, - { - "title": "Twisted Sister - I Wanna Rock - Karaoke Version from Zoom Karaoke", - "id": "1fEyE6nVBuM" - }, - { - "title": "Elvis Presley - Girl Next Door Went A-Walking (Without Backing Vocals) -Karaoke Version from Zoom", - "id": "wXkQDPbI8wg" - }, - { - "title": "Nicky Youre & Dazy - Sunroof (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "niqsklQTIuw" - }, - { - "title": "Jennifer Lopez - Waiting For Tonight (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "f9zHpuQgJqM" - }, - { - "title": "Postmodern Jukebox - Lovefool - Karaoke Version from Zoom Karaoke", - "id": "ZGjsja_MyHA" - }, - { - "title": "Dragon - Magic - Karaoke Version from Zoom Karaoke", - "id": "xU9Tq0yp5NI" - }, - { - "title": "The Mavericks - Back In Your Arms Again (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "uWMQ9Cs4-go" - }, - { - "title": "Scissor Sisters - It Can't Come Quickly Enough - Karaoke Version from Zoom Karaoke", - "id": "am7iRCCTpGo" - }, - { - "title": "Connie Francis - Let's Go Where The Good Times Go (Without Backing Vocals) - Karaoke Version", - "id": "6sefw1aar0A" - }, - { - "title": "Uriah Heep - Put Your Lovin' On Me - Karaoke Version from Zoom Karaoke", - "id": "-gHq0NuYiMY" - }, - { - "title": "James - Laid - Karaoke Version from Zoom Karaoke", - "id": "T4uffyaGQyI" - }, - { - "title": "Pussycat - The Easy Way - Karaoke Version from Zoom Karaoke", - "id": "ohVXZ36zC9k" - }, - { - "title": "TV Theme - Postman Pat - Karaoke Version from Zoom Karaoke", - "id": "k_xOYfhtcBI" - }, - { - "title": "Dr Hook - If Not You - Karaoke Version from Zoom Karaoke", - "id": "j4aM_eOma3M" - }, - { - "title": "Dr Hook - More Like The Movies - Karaoke Version from Zoom Karaoke", - "id": "FeWlEZJInCk" - }, - { - "title": "Aerosmith - Walk This Way - Karaoke Version from Zoom Karaoke", - "id": "rnTN46rxIu8" - }, - { - "title": "Maroon 5 - Harder To Breathe - Karaoke Version from Zoom Karaoke", - "id": "JjdmThiWY5g" - }, - { - "title": "Scissor Sisters - Lovers In The Backseat - Karaoke Version from Zoom Karaoke", - "id": "CinWVFAT_kk" - }, - { - "title": "The Drifters - Under The Boardwalk - Karaoke Version from Zoom Karaoke", - "id": "qKlNkwVbTf8" - }, - { - "title": "Scissor Sisters - Tits On The Radio - Karaoke Version from Zoom Karaoke", - "id": "6tJibLsXeBs" - }, - { - "title": "Maroon 5 - Must Get Out - Karaoke Version from Zoom Karaoke", - "id": "G8IH4zwWFK0" - }, - { - "title": "Brook Benton - Rainy Night In Georgia - Karaoke Version from Zoom Karaoke", - "id": "l415mtl46TA" - }, - { - "title": "Chris Norman - The Girl I Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "p9DYk6A1UWU" - }, - { - "title": "Dragon - Summer - Karaoke Version from Zoom Karaoke", - "id": "DNLVEljTq7k" - }, - { - "title": "Uriah Heep - Fallen Angel - Karaoke Version from Zoom Karaoke", - "id": "mI0zJYQQtQ8" - }, - { - "title": "Len - Steal My Sunshine (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "wmCdv6msJJQ" - }, - { - "title": "Art Garfunkel - I Only Have Eyes For You - Karaoke Version from Zoom Karaoke", - "id": "dYXrymg3Ilc" - }, - { - "title": "Elvis Presley - See See Rider - Karaoke Version from Zoom Karaoke", - "id": "cUJma0RI530" - }, - { - "title": "Sabrina Johnston - Peace - Karaoke Version from Zoom Karaoke", - "id": "_sGXjodLYFE" - }, - { - "title": "Dragon - Shooting Star - Karaoke Version from Zoom Karaoke", - "id": "4Hqb-gJ0S5U" - }, - { - "title": "Pussycat - Help Me Living On - Karaoke Version from Zoom Karaoke", - "id": "BrN1dCrcKJ4" - }, - { - "title": "The Easybeats - Good Times - Karaoke Version from Zoom Karaoke", - "id": "o61QPDtmo40" - }, - { - "title": "Delta Goodrem - I Believe In A Thing Called Love - Karaoke Version from Zoom Karaoke", - "id": "wnnnJBfbizw" - }, - { - "title": "Pussycat - You Don't Know (What It's Like To Be Near) - Karaoke Version from Zoom Karaoke", - "id": "0IJZfpjlXus" - }, - { - "title": "Kenny Nolan - I Like Dreamin' - Karaoke Version from Zoom Karaoke", - "id": "VcftYIST3sk" - }, - { - "title": "Faron Young - It's Four In The Morning - Karaoke Version from Zoom Karaoke", - "id": "pLAqCSc_sQU" - }, - { - "title": "Heart - What About Love - Karaoke Version from Zoom Karaoke", - "id": "zrapFyrzG_0" - }, - { - "title": "Diana Trask - Oh Boy - Karaoke Version from Zoom Karaoke", - "id": "G1bzYYZQc78" - }, - { - "title": "Liza Minnelli - Losing My Mind - Karaoke Version from Zoom Karaoke", - "id": "qfrbuvr1YOE" - }, - { - "title": "Alan Price - Changes - Karaoke Version from Zoom Karaoke", - "id": "GHory5tMez8" - }, - { - "title": "Heart - Never - Karaoke Version from Zoom Karaoke", - "id": "vOTeDYdtSRI" - }, - { - "title": "Len - Steal My Sunshine (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "peVER22lprk" - }, - { - "title": "Big Daddy - Dancing In The Dark - Karaoke Version from Zoom Karaoke", - "id": "9zvQ_fKOws4" - }, - { - "title": "Dragon - Western Girls - Karaoke Version from Zoom Karaoke", - "id": "9_Tme7C7Oqo" - }, - { - "title": "Luther Vandross - Stop To Love - Karaoke Version from Zoom Karaoke", - "id": "pPpOvoEykqQ" - }, - { - "title": "The Blue Nile - Tinseltown In The Rain - Karaoke Version from Zoom Karaoke", - "id": "mqIHovr3Ih8" - }, - { - "title": "Tom Tom Club - Genius Of Love - Karaoke Version from Zoom Karaoke", - "id": "n7fdoriXKms" - }, - { - "title": "Thomas Rhett - Die A Happy Man - Karaoke Version from Zoom Karaoke", - "id": "zSw3Iknj1-w" - }, - { - "title": "Tim McGraw - I Like It, I Love It - Karaoke Version from Zoom Karaoke", - "id": "df6xsFAPUr0" - }, - { - "title": "Uriah Heep - Falling In Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kdCym12srp0" - }, - { - "title": "Chris Norman - Broken Heroes - Karaoke Version from Zoom Karaoke", - "id": "TFF3xaFTRQo" - }, - { - "title": "Frank Sinatra - Moon River - Karaoke Version from Zoom Karaoke", - "id": "wyLoSiXAixk" - }, - { - "title": "Katy Perry - Woman's World (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "VQluT94xd9k" - }, - { - "title": "Niall Horan - Heaven (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Ze-AkExz6Ns" - }, - { - "title": "The New Seekers - Sing Hallelujah (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "eUCrPhAgAno" - }, - { - "title": "Elliot James Reay - I Think They Call This Love - Karaoke Version from Zoom Karaoke", - "id": "Bmc7lTy4VaM" - }, - { - "title": "Prefab Sprout - Cars And Girls (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Y5vvc9tbTec" - }, - { - "title": "Julio Iglesias - Begin The Beguine (Spanish Lyrics) - Karaoke Version from Zoom Karaoke", - "id": "UxF4MfWsDSQ" - }, - { - "title": "Uriah Heep - Put Your Lovin' On Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "yNQ87fv8Pyg" - }, - { - "title": "The Rolling Stones - She's A Rainbow (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Uz07AAyCFFI" - }, - { - "title": "Uriah Heep - Falling In Love - Karaoke Version from Zoom Karaoke", - "id": "Z6cX9ByAuZA" - }, - { - "title": "Tom Grennan - Here - Karaoke Version from Zoom Karaoke", - "id": "e5slYw0dFi0" - }, - { - "title": "Post Malone ft. Blake Shelton - Pour Me A Drink (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "F2xhQynCxzk" - }, - { - "title": "Uriah Heep - Whad'ya Say (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZvbxiTmNMAQ" - }, - { - "title": "Stevie Nicks - Talk To Me - Karaoke Version from Zoom Karaoke", - "id": "XyKLs6lLclI" - }, - { - "title": "The New Seekers - The Nickel Song (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kokUdye_weo" - }, - { - "title": "Uriah Heep - One More Night - Karaoke Version from Zoom Karaoke", - "id": "k32qyVdzW8c" - }, - { - "title": "Alison Moyet - Invisible - Karaoke Version from Zoom Karaoke", - "id": "mA925jP8aUg" - }, - { - "title": "The New Seekers - Sing Hallelujah - Karaoke Version from Zoom Karaoke", - "id": "-Mfj4_OJY4k" - }, - { - "title": "Bruce Springsteen - I'm Goin' Down - Karaoke Version from Zoom Karaoke", - "id": "Es8NbJz3Ino" - }, - { - "title": "The Chiffons - Sweet Talkin' Guy - Karaoke Version from Zoom Karaoke (Lyric Fixed)", - "id": "VMu7tV7ajYA" - }, - { - "title": "Eddy Raven - Sometimes A Lady (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Ys_-4zVUgsc" - }, - { - "title": "Living In A Box - Living In A Box - Karaoke Version from Zoom Karaoke", - "id": "3cy3-L4oA58" - }, - { - "title": "Razorlight - Before I Fall To Pieces (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EDyAfNsgeqQ" - }, - { - "title": "Uriah Heep - I'm Alive - Karaoke Version from Zoom Karaoke", - "id": "XJfdlVc-6WU" - }, - { - "title": "Eminem - Houdini (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nwj4u1NJJaM" - }, - { - "title": "JD Souther - You're Only Lonely (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "h2HlDdG8k1s" - }, - { - "title": "Pussycat - Same Old Song (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "XfKawwX12-Y" - }, - { - "title": "Leo Sayer - I Can't Stop Loving You (Though I Try) (Without Backing Vocals) - Karaoke Version", - "id": "odGmu5eMMk8" - }, - { - "title": "Suzi Quatro - Don't Change My Luck - Karaoke Version from Zoom Karaoke", - "id": "oWvPNkxL2y0" - }, - { - "title": "Graham Bonnet - Warm Ride - Karaoke Version from Zoom Karaoke", - "id": "KfInaQp7ueo" - }, - { - "title": "Danny Wilson - Mary's Prayer (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "LEHOUCoJ6rw" - }, - { - "title": "Connie Francis - Breaking Up Is Hard To Do - Karaoke Version from Zoom Karaoke", - "id": "0bggrLRBjFM" - }, - { - "title": "Kylie Minogue - Padam Padam (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "6HzHFEGXOxk" - }, - { - "title": "Pussycat - Get It Higher (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Fcdp6aCUt3k" - }, - { - "title": "Billy Ocean - Stop Me (If You've Heard It All Before) (Without Backing Vocals) - Karaoke Version", - "id": "EPJC8qGW20E" - }, - { - "title": "Sweet - The Lies In Your Eyes (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "yp5Gx5DwBQU" - }, - { - "title": "Jennifer Lopez - Love Don't Cost A Thing (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "8pzwdVbL_oQ" - }, - { - "title": "Alton Ellis - You've Made Me So Very Happy - Karaoke Version from Zoom Karaoke", - "id": "h4T6Md9TSD4" - }, - { - "title": "Postmodern Jukebox - All About That Bass (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "RHVx0ZCtb-k" - }, - { - "title": "Fremantle Dockers Theme Song - Karaoke Version from Zoom Karaoke - Australian Football League", - "id": "0TDub1lfw0s" - }, - { - "title": "TV Theme - Wombat (Aussie Kids TV) - Karaoke Version from Zoom Karaoke", - "id": "RtdnHbTBtXU" - }, - { - "title": "Luke Combs - Ain't No Love In Oklahoma - Karaoke Version from Zoom Karaoke", - "id": "uYOlTF12Ges" - }, - { - "title": "Brook Benton - It's Just A Matter Of Time - Karaoke Version from Zoom Karaoke", - "id": "sCjMyx8xSqs" - }, - { - "title": "Uriah Heep - Woman Of The Night (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8VcnoFf7YR0" - }, - { - "title": "TV Theme - Agro's Cartoon Connection (Aussie Kids TV) - Karaoke Version from Zoom Karaoke", - "id": "xiHajZc6oRA" - }, - { - "title": "Ace Of Base - Don't Turn Around (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EAimexAjIIk" - }, - { - "title": "Tebey - Blinding Lights (Country Version) - Karaoke Version from Zoom - Originally by The Weeknd", - "id": "dA2zmjL2pXI" - }, - { - "title": "Nazareth - Where Are You Now - Karaoke Version from Zoom Karaoke", - "id": "4ohqJ7jgjz8" - }, - { - "title": "Sam Ryder - Mountain (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iN98X1OXrGk" - }, - { - "title": "Leo Sayer - How Much Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jkunUgWQ4tw" - }, - { - "title": "The Mavericks - Back In Your Arms Again - Karaoke Version from Zoom Karaoke", - "id": "gZ9QPQ5YUMk" - }, - { - "title": "Play School (Australian Version) TV Theme - Karaoke Version from Zoom Karaoke", - "id": "i_dZ2BCKw_g" - }, - { - "title": "In The Box (The Goodbye Song) - Karaoke Version from Zoom Karaoke - Australian TV Theme", - "id": "QpHKEVUDtWo" - }, - { - "title": "Elvis Presley - Girl Next Door Went A-Walking - Karaoke Version from Zoom Karaoke", - "id": "gpgfzLnTnAw" - }, - { - "title": "Prefab Sprout - Cars And Girls - Karaoke Version from Zoom Karaoke", - "id": "ECUHv3hNV6M" - }, - { - "title": "Tom Grennan - Here (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1d07-DmxWoY" - }, - { - "title": "Uriah Heep - Whad'ya Say - Karaoke Version from Zoom Karaoke", - "id": "DgIgk0j86NQ" - }, - { - "title": "The Rubettes - You're The Reason Why - Karaoke Version from Zoom Karaoke", - "id": "qOwedr80moY" - }, - { - "title": "Loreen - Tattoo (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jb9-9fFhM9s" - }, - { - "title": "The Motors - Forget About You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nIxy1TK9w7M" - }, - { - "title": "Anne Marie feat Shania Twain - Unhealthy (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "RTVibWYd-Ig" - }, - { - "title": "Connie Francis - Let's Go Where The Good Times Go - Karaoke Version from Zoom Karaoke", - "id": "UCU7vLgVcw4" - }, - { - "title": "Kylie Minogue - Spinning Around - Karaoke Version from Zoom Karaoke", - "id": "UgUzW3uUBPE" - }, - { - "title": "Stevie Nicks - Talk To Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "AM8snKoOYVM" - }, - { - "title": "Uriah Heep - One More Night (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "mVTn-TDfJNw" - }, - { - "title": "The New Seekers - The Nickel Song - Karaoke Version from Zoom Karaoke", - "id": "PfyNMsUMQ-o" - }, - { - "title": "Alison Moyet - Invisible (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "gIK7_tcgJeU" - }, - { - "title": "Leo Sayer - I Can't Stop Loving You (Though I Try) - Karaoke Version from Zoom Karaoke", - "id": "PQgKleyMQxQ" - }, - { - "title": "Uriah Heep - Woman Of The Night - Karaoke Version from Zoom Karaoke", - "id": "wKP8_vvcHOI" - }, - { - "title": "The Motors - Forget About You - Karaoke Version from Zoom Karaoke", - "id": "ukw4dAY0laM" - }, - { - "title": "Uriah Heep - Love Or Nothing - Karaoke Version from Zoom Karaoke", - "id": "b2dlbnO9TZs" - }, - { - "title": "Dua Lipa - Dance The Night - Karaoke Version from Zoom Karaoke", - "id": "-8Tl-ivMqyA" - }, - { - "title": "Chris Norman - The Girl I Love - Karaoke Version from Zoom Karaoke", - "id": "HE1LerruAEU" - }, - { - "title": "JD Souther - You're Only Lonely - Karaoke Version from Zoom Karaoke", - "id": "nnk5sEZTlrE" - }, - { - "title": "Behind The Scenes at Zoom Karaoke - Whistling Session in the Studio (March 2024)", - "id": "pGMlkwDsEDQ" - }, - { - "title": "The Sound Of Music - So Long, Farewell - Karaoke Version from Zoom Karaoke", - "id": "1rY6G8AS01g" - }, - { - "title": "Olly Alexander - Dizzy - Karaoke Version from Zoom Karaoke (UK Eurovision Entry 2024)", - "id": "jkLzVOHd9J4" - }, - { - "title": "Jason Mraz - Make It Mine - Karaoke Version from Zoom Karaoke", - "id": "Yn9im9qxslE" - }, - { - "title": "Nicky Youre & Dazy - Sunroof - Karaoke Version from Zoom Karaoke", - "id": "S5R91q-i1eo" - }, - { - "title": "The Rolling Stones - She's A Rainbow - Karaoke Version from Zoom Karaoke", - "id": "UPFCB1Lzawo" - }, - { - "title": "Niall Horan - Heaven - Karaoke Version from Zoom Karaoke", - "id": "en_SYHscu_8" - }, - { - "title": "Postmodern Jukebox - Oops! I Did It Again - Karaoke Version from Zoom Karaoke", - "id": "g6GQPB7Yy_s" - }, - { - "title": "Eddy Raven - Sometimes A Lady - Karaoke Version from Zoom Karaoke", - "id": "T4lMAIzoq3Q" - }, - { - "title": "Living In A Box - Living In A Box (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "tmjbtrGX3BI" - }, - { - "title": "Razorlight - Before I Fall To Pieces - Karaoke Version from Zoom Karaoke", - "id": "4tofWBTVo_M" - }, - { - "title": "Sam Ryder - Mountain - Karaoke Version from Zoom Karaoke", - "id": "NbnMg54mwjw" - }, - { - "title": "Uriah Heep - I'm Alive (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "JyDgDrfNUe0" - }, - { - "title": "Pussycat - Same Old Song - Karaoke Version from Zoom Karaoke", - "id": "qEepr2K3eSw" - }, - { - "title": "Graham Bonnet - Warm Ride (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "gruXXX14nyQ" - }, - { - "title": "Kylie Minogue - Padam Padam - Karaoke Version from Zoom Karaoke", - "id": "AVsRtGR-oDE" - }, - { - "title": "Dua Lipa - Dance The Night (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "HxDyU2BOyxQ" - }, - { - "title": "Billy Ocean - Stop Me (If You've Heard It All Before) - Karaoke Version from Zoom Karaoke", - "id": "MYQchhCFj60" - }, - { - "title": "Loreen - Tattoo - Karaoke Version from Zoom Karaoke", - "id": "zdQ1-jbRuVM" - }, - { - "title": "Suzi Quatro - Don't Change My Luck (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "oR2CCVsKmbo" - }, - { - "title": "Postmodern Jukebox - All About That Bass - Karaoke Version from Zoom Karaoke", - "id": "VTPsPIcHnCE" - }, - { - "title": "Alton Ellis - You've Made Me So Very Happy (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "0UcWEw3CGr0" - }, - { - "title": "Pussycat - Get It Higher - Karaoke Version from Zoom Karaoke", - "id": "S8_cq7jrRn8" - }, - { - "title": "Tom Jones - I Won't Crumble With You If You Fall - Karaoke Version from Zoom Karaoke", - "id": "f31_mG2HHi0" - }, - { - "title": "Brook Benton - It's Just A Matter Of Time (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "o3YZoMkPDbY" - }, - { - "title": "How to order a custom karaoke USB stick from Zoom Karaoke - 1 minute tutorial", - "id": "w0PvCwuLOpQ" - }, - { - "title": "Sweet - The Lies In Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "FPf96Dx_IVY" - }, - { - "title": "Anne Marie feat Shania Twain - Unhealthy - Karaoke Version from Zoom Karaoke", - "id": "uA6y2xYjbcA" - }, - { - "title": "Uriah Heep - Love Or Nothing (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ll1_DmAPlIY" - }, - { - "title": "Ronnie Milsap - Don't You Ever Get Tired (Of Hurting Me) (Without Backing Vocals) - Karaoke Version", - "id": "v0LDBfkocVo" - }, - { - "title": "Neil - Hole In My Shoe - Karaoke Version from Zoom Karaoke", - "id": "uQ82bSx0nR0" - }, - { - "title": "Sugababes - Round Round - Karaoke Version from Zoom Karaoke", - "id": "r7fzIGakKA0" - }, - { - "title": "UB40 - Guns In The Ghetto (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "o2AsB7uEyYU" - }, - { - "title": "Ronnie Milsap - I Wouldn't Have Missed It For The World - Karaoke Version from Zoom Karaoke", - "id": "frdk1hpax4o" - }, - { - "title": "Calvin Harris & Ellie Goulding - Miracle - Karaoke Version from Zoom Karaoke", - "id": "cnsbIAck4Yo" - }, - { - "title": "Mae Stephens - If We Ever Broke Up (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PN4fCpJ5978" - }, - { - "title": "Elvis Presley - Mean Woman Blues (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EkJB3MtkRyA" - }, - { - "title": "Solomon Burke - Let Me Wrap My Arms Around You (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "b80jMUnsDgk" - }, - { - "title": "Pink Floyd - Learning To Fly - Karaoke Version from Zoom Karaoke", - "id": "ZepXMXkjukY" - }, - { - "title": "Ronnie Milsap - Stranger In My House - Karaoke Version from Zoom Karaoke", - "id": "W-IL1v6wzYI" - }, - { - "title": "Ronnie Milsap - Daydreams About Night Things (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "RBuxr68psXs" - }, - { - "title": "Jo Jo Zep And The Falcons - Shape I'm In (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "PVw-5hiylEE" - }, - { - "title": "Ronnie Milsap - Smoky Mountain Rain (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "N3r_ILUf02I" - }, - { - "title": "Ellie Goulding - Like A Saviour - Karaoke Version from Zoom Karaoke", - "id": "M-JoQpzbs-I" - }, - { - "title": "Ronnie Milsap - It Was Almost Like A Song (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "KBdMhHLZ2zY" - }, - { - "title": "Chris Norman & Bonnie Bianco - Send A Sign To My Heart (For Solo Male) - Karaoke Version from Zoom", - "id": "CFZvgyF0V8c" - }, - { - "title": "Tony Hadley - For Your Blue Eyes Only - Karaoke Version from Zoom Karaoke", - "id": "AEKRsX7Q9Y4" - }, - { - "title": "Lewis Capaldi - Wish You The Best (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ACRPUOwbUrk" - }, - { - "title": "PinkPantheress & Ice Spice - Boy's A Liar Pt2 (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "A933yRBLhjw" - }, - { - "title": "Mae Muller - I Wrote A Song (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9hCFo-5YQI8" - }, - { - "title": "Elvis Presley - Loving You - Karaoke Version from Zoom Karaoke", - "id": "9fhiKOLCurA" - }, - { - "title": "Ed Sheeran - Eyes Closed (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9Xj231Jdzyo" - }, - { - "title": "Listen To Me (The Hollies) Cover Version - Zoom Karaoke Backing Track Example Vocals", - "id": "5x-AQzqnk8w" - }, - { - "title": "Elvis Presley - Shoppin' Around (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2wimrmGzCJc" - }, - { - "title": "Sam Smith - I'm Not Here To Make Friends - Karaoke Version from Zoom Karaoke", - "id": "06dk5gc_BVU" - }, - { - "title": "The Weeknd - Die For You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nyGnQ4xLaKo" - }, - { - "title": "Stevie Nicks - Rooms On Fire - Karaoke Version from Zoom Karaoke", - "id": "PCBW4kcTOls" - }, - { - "title": "Falco - Rock Me Amadeus (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Yw4G9EHBcxE" - }, - { - "title": "Elvis Presley - I'm Coming Home (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "bUh-zsu5H9g" - }, - { - "title": "Lou Gramm - Midnight Blue (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nqac3bvW88U" - }, - { - "title": "Ronnie Milsap - Don't You Ever Get Tired (Of Hurting Me) - Karaoke Version from Zoom Karaoke", - "id": "wtZF3D0tCwM" - }, - { - "title": "Lizzo - Special - Karaoke Version from Zoom Karaoke", - "id": "r2eFXoueS58" - }, - { - "title": "Sam Cooke - Bring It On Home To Me - Karaoke Version from Zoom Karaoke", - "id": "omEc-EdBnmk" - }, - { - "title": "Traffic - Hole In My Shoe - Karaoke Version from Zoom Karaoke", - "id": "mwAZDs-wbgo" - }, - { - "title": "Roy Orbison - Evergreen (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qvB7hmwSwuw" - }, - { - "title": "Ronnie Milsap - Stranger In My House (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-oixgJ4e3-M" - }, - { - "title": "Bruno Mars - Talking To The Moon (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TL2e5Ik6shU" - }, - { - "title": "James - Getting Away With It (All Messed Up) - Karaoke Version from Zoom Karaoke", - "id": "pRleppGYSZU" - }, - { - "title": "Jamie Webster - Allez Allez Allez (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Pjv6vsjmFzM" - }, - { - "title": "Sam Cooke - A Change Is Gonna Come - Karaoke Version from Zoom Karaoke", - "id": "7QKH9DM0hhs" - }, - { - "title": "Zara Larsson - Can't Tame Her (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "wI7ivBw-iRI" - }, - { - "title": "Ronnie Milsap - (There's) No Gettin' Over Me (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "EecjEVpO3sM" - }, - { - "title": "Postmodern Jukebox - Seven Nation Army - Karaoke Version from Zoom Karaoke", - "id": "Mmu-2MKv2Ss" - }, - { - "title": "Danny Wilson - Mary's Prayer - Karaoke Version from Zoom Karaoke", - "id": "pSYjAnpzxIk" - }, - { - "title": "Josh Turner - Your Man (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TIBS71OdQas" - }, - { - "title": "Styx - Boat On The River - Karaoke Version from Zoom Karaoke", - "id": "2G_NDp5ByJo" - }, - { - "title": "Dr Hook & The Medicine Show - Carry Me Carrie (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "6BMVl3VOG6o" - }, - { - "title": "Tove Lo - Habits (Stay High) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kUqigss9vO8" - }, - { - "title": "Milky Chance - Stolen Dance - Karaoke Version from Zoom Karaoke", - "id": "Ek1TiF2UDec" - }, - { - "title": "Ronnie Milsap - (There's) No Gettin' Over Me - Karaoke Version from Zoom Karaoke", - "id": "Nr0JiNc4dfw" - }, - { - "title": "Mae Stephens - If We Ever Broke Up - Karaoke Version from Zoom Karaoke", - "id": "216Ron_-3QA" - }, - { - "title": "Elvis Presley - Loving You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jOANmdERKkc" - }, - { - "title": "Sam Smith - I'm Not Here To Make Friends (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "N2Jrwbi0gxE" - }, - { - "title": "Ronnie Milsap - Daydreams About Night Things - Karaoke Version from Zoom Karaoke", - "id": "iecAh_icDQs" - }, - { - "title": "Elvis Presley - Shoppin' Around - Karaoke Version from Zoom Karaoke", - "id": "XvcZj0mZkTQ" - }, - { - "title": "Calvin Harris & Ellie Goulding - Miracle (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "xLz6Js9uCTg" - }, - { - "title": "Ed Sheeran - Eyes Closed - Karaoke Version from Zoom Karaoke", - "id": "y5pvqr3Hpow" - }, - { - "title": "The Weeknd - Die For You - Karaoke Version from Zoom Karaoke", - "id": "_eSNJ07Q4wI" - }, - { - "title": "Elvis Presley - Mean Woman Blues - Karaoke Version from Zoom Karaoke", - "id": "yPD2UDdcOTo" - }, - { - "title": "Jamie Webster - This Place (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "4xiE3cCVaRE" - }, - { - "title": "Chris Norman - Nobody's Fool - Karaoke Version from Zoom Karaoke", - "id": "lzXNNoM1N0c" - }, - { - "title": "PinkPantheress & Ice Spice - Boy's A Liar Pt2 - Karaoke Version from Zoom Karaoke", - "id": "JNoyKPx_RR0" - }, - { - "title": "Lewis Capaldi - Wish You The Best - Karaoke Version from Zoom Karaoke", - "id": "A7sdiewaaMI" - }, - { - "title": "Shania Twain - Giddy Up (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "5F3HDo0Df_0" - }, - { - "title": "Elvis Presley - I'm Coming Home - Karaoke Version from Zoom Karaoke", - "id": "Cx-QU0s0Imc" - }, - { - "title": "Pink Floyd - Learning To Fly (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "W7GAg-pp6yI" - }, - { - "title": "Chris Norman & Bonnie Bianco - Send A Sign To My Heart (Duet Version) - Karaoke Version from Zoom", - "id": "V1k_4FXw7Pw" - }, - { - "title": "Sam Ryder - You're Christmas To Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vEtsWqkq1Ag" - }, - { - "title": "Amie Atkinson - Pretty Woman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "eF-gL82Bsis" - }, - { - "title": "Toby Keith - As Good As I Once Was (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "w3_GUOh0veQ" - }, - { - "title": "Sam Cooke - Nothing Can Change This Love - Karaoke Version from Zoom Karaoke", - "id": "kRAS967Ij9M" - }, - { - "title": "Chris Farlowe - Out Of Time (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hNTJYIo2GPI" - }, - { - "title": "Stormzy - Firebabe (Without Female Harmony) - Karaoke Version from Zoom Karaoke", - "id": "CzUSjJgfw98" - }, - { - "title": "Pink - Trustfall - Karaoke Version from Zoom Karaoke", - "id": "71BD2YdPyn4" - }, - { - "title": "Olly Murs - Die Of A Broken Heart (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "panQjJxhUB0" - }, - { - "title": "Charlie Puth - Loser (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "enICfIaXiJU" - }, - { - "title": "Neil Diamond - Sunday Sun - Karaoke Version from Zoom Karaoke", - "id": "eHUeaN5l3n8" - }, - { - "title": "Tove Lo - Habits (Stay High) - Karaoke Version from Zoom Karaoke", - "id": "R0ow2U4uCBQ" - }, - { - "title": "The Bellamy Brothers - You Ain't Just Whistlin' Dixie (Without Backing Vocals) - Karaoke Version", - "id": "JlgMoGz5m9M" - }, - { - "title": "Tate McRae - She's All I Wanna Be (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "DR37GM83tPk" - }, - { - "title": "The Foundations - Build Me Up Buttercup - Karaoke Version from Zoom Karaoke", - "id": "TJvASHJOaNs" - }, - { - "title": "Sam Ryder - You're Christmas To Me - Karaoke Version from Zoom Karaoke", - "id": "utkHQH3-unQ" - }, - { - "title": "Elvis Presley - Pocketful Of Rainbows - Karaoke Version from Zoom Karaoke", - "id": "hTSevpJDsNg" - }, - { - "title": "Brenda Lee - Rockin' Around The Christmas Tree - Karaoke Version from Zoom Karaoke", - "id": "3KgmTWTClDc" - }, - { - "title": "Bebe Rexha - Heart Wants What It Wants - Karaoke Version from Zoom Karaoke", - "id": "QrfB0jkDTYY" - }, - { - "title": "Ava Max - Weapons - Karaoke Version from Zoom Karaoke", - "id": "V0AWifCsF6A" - }, - { - "title": "Freya Ridings - Weekends (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "W0sl7M3HaiE" - }, - { - "title": "Josh Turner - Your Man - Karaoke Version from Zoom Karaoke", - "id": "ME0EpqcNeKg" - }, - { - "title": "Ronnie Milsap - Any Day Now - Karaoke Version from Zoom Karaoke", - "id": "EMPrm2i22sA" - }, - { - "title": "The Bellamy Brothers - You Ain't Just Whistlin' Dixie - Karaoke Version from Zoom Karaoke", - "id": "zyUTjkOi8Ck" - }, - { - "title": "Aled Jones - Walking In The Air - Karaoke Version from Zoom Karaoke", - "id": "B1UW5Jzh7WE" - }, - { - "title": "Carlene Carter - Rockin' Little Christmas - Karaoke Version from Zoom Karaoke", - "id": "zxDkeKDkekU" - }, - { - "title": "Luke Combs - Fast Car (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "OU2OXNxb-6E" - }, - { - "title": "Robin Gibb - Saved By The Bell - Karaoke Version from Zoom Karaoke", - "id": "aBBTzCupTPE" - }, - { - "title": "Traffic - Hole In My Shoe (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_MdtuMC6dEM" - }, - { - "title": "Ronnie Milsap - I Wouldn't Have Missed It For The World (Without Backing Vocals) - Karaoke Version", - "id": "mG3AbWc92G0" - }, - { - "title": "Dr Hook & The Medicine Show - Carry Me Carrie - Karaoke Version from Zoom Karaoke", - "id": "oDzno4a6Dnc" - }, - { - "title": "Zara Larsson - Can't Tame Her - Karaoke Version from Zoom Karaoke", - "id": "EiMDhvKaPx8" - }, - { - "title": "Tony Hadley - For Your Blue Eyes Only (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "JvqDe2ODVaE" - }, - { - "title": "Solomon Burke - Let Me Wrap My Arms Around You - Karaoke Version from Zoom Karaoke", - "id": "j8o7HIe_-QM" - }, - { - "title": "Jo Jo Zep And The Falcons - Shape I'm In - Karaoke Version from Zoom Karaoke", - "id": "tqiP4k71zyw" - }, - { - "title": "Sugababes - Round Round (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iOww6IFPfmc" - }, - { - "title": "Ronnie Milsap - It Was Almost Like A Song - Karaoke Version from Zoom Karaoke", - "id": "8oA8o9TWigs" - }, - { - "title": "Jamie Webster - Allez Allez Allez - Karaoke Version from Zoom Karaoke", - "id": "7LfS_pJng5A" - }, - { - "title": "Lou Gramm - Midnight Blue - Karaoke Version from Zoom Karaoke", - "id": "H1B3zXo6FxQ" - }, - { - "title": "Ellie Goulding - Like A Saviour (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "VSCWw-wtOSo" - }, - { - "title": "Neil - Hole In My Shoe (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "lML60XaUkqk" - }, - { - "title": "The Beatles - Now And Then - Karaoke Version from Zoom Karaoke", - "id": "h1hIq81MXPQ" - }, - { - "title": "Bebe Rexha - Heart Wants What It Wants (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Yc1kp8r2E70" - }, - { - "title": "UB40 - Guns In The Ghetto - Karaoke Version from Zoom Karaoke", - "id": "EWEZj7Jb-rA" - }, - { - "title": "Elvis Presley - Tonight Is So Right For Love - Karaoke Version from Zoom Karaoke", - "id": "WDHshcuBxjE" - }, - { - "title": "Jamie Webster - This Place - Karaoke Version from Zoom Karaoke", - "id": "IVAutYFVtOc" - }, - { - "title": "Eartha Kitt - Where Is My Man - Karaoke Version from Zoom Karaoke", - "id": "CH3ktcLomAs" - }, - { - "title": "Ronnie Milsap - Smoky Mountain Rain - Karaoke Version from Zoom Karaoke", - "id": "Co1AmsSpNB8" - }, - { - "title": "Amie Atkinson - Pretty Woman - Karaoke Version from Zoom Karaoke", - "id": "j0egxYp2w0Q" - }, - { - "title": "Bananarama - Venus (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hZyuR5fF6G8" - }, - { - "title": "Shania Twain - Giddy Up - Karaoke Version from Zoom Karaoke", - "id": "nh5IlgVcIQ0" - }, - { - "title": "Roy Orbison - Evergreen - Karaoke Version from Zoom Karaoke", - "id": "1_SppCSnbkc" - }, - { - "title": "Elvis Presley - Tonight Is So Right For Love (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "ATEbNzREOTo" - }, - { - "title": "Postmodern Jukebox - Careless Whisper - Karaoke Version from Zoom Karaoke", - "id": "7kmUe2lbqcA" - }, - { - "title": "Styx - Boat On The River (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qc6eYmXhdKg" - }, - { - "title": "Ava Max - Weapons (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "daV56Nq1izA" - }, - { - "title": "Freya Ridings - Weekends - Karaoke Version from Zoom Karaoke", - "id": "mURjkSgOmDI" - }, - { - "title": "Charlie Puth - Loser - Karaoke Version from Zoom Karaoke", - "id": "cSZa4S-QRr0" - }, - { - "title": "Ronnie Milsap - Any Day Now (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2dLAWcCj_Lc" - }, - { - "title": "Pink - Trustfall (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TgxKMfq2K3E" - }, - { - "title": "Doja Cat - Paint The Town Red - Karaoke Version from Zoom Karaoke", - "id": "B7WV-LECEZE" - }, - { - "title": "Toby Keith - As Good As I Once Was - Karaoke Version from Zoom Karaoke", - "id": "wWXIiFxPUAg" - }, - { - "title": "JVKE - Golden Hour (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "MblhO3AVYvo" - }, - { - "title": "Joe Nichols - Tequila Makes Her Clothes Fall Off (Without Backing Vocals) - Zoom Karaoke Version", - "id": "RBxhEUv_Z3E" - }, - { - "title": "Una Healy - Set You Free (N-Trance Acoustic Cover) - Karaoke Version from Zoom Karaoke", - "id": "9rWkkvneEY0" - }, - { - "title": "Natasha Marsh - Believe (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "LgTv-jFV3lU" - }, - { - "title": "Flo - Cardboard Box (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cR0zqRNEUGE" - }, - { - "title": "Lynyrd Skynyrd - The Ballad Of Curtis Loew (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "m6C5LQNW8UA" - }, - { - "title": "Acoustative Piano Karaoke - Mr Brightside - The Killers (Original Male Key)", - "id": "jt48vyujLDc" - }, - { - "title": "Acoustative Piano Karaoke - Mr Brightside - The Killers (Lower Female Key -2)", - "id": "gPoGc5lsV0I" - }, - { - "title": "James Bay - If I Ain't Got You (Live Version 4 Semitones Up) - Karaoke Version from Zoom Karaoke", - "id": "ivE7DEB1cJU" - }, - { - "title": "Postmodern Jukebox - We Can't Stop - Karaoke Version from Zoom Karaoke", - "id": "21FITDBv0lI" - }, - { - "title": "Coi Leray - Players (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "w3zJ6mbbTBQ" - }, - { - "title": "Beyonce - Cuff It - Karaoke Version from Zoom Karaoke", - "id": "6bJoFD81m4g" - }, - { - "title": "Tom Gregory - Forget Somebody (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "lmmHbmrP4D0" - }, - { - "title": "Katy Perry - Last Friday Night (T.G.I.F.) - Karaoke Version from Zoom Karaoke", - "id": "fR0wIT-jB_4" - }, - { - "title": "The Killers - Mr Brightside - Karaoke Version from Zoom Karaoke", - "id": "8iQsJ18-hOo" - }, - { - "title": "Olly Murs - Die Of A Broken Heart - Karaoke Version from Zoom Karaoke", - "id": "xkMWTZD-Q0E" - }, - { - "title": "Dee D Jackson - Automatic Lover - Karaoke Version from Zoom Karaoke", - "id": "oRFc9pBR77g" - }, - { - "title": "Postmodern Jukebox - We Can't Stop (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jblrlXCRfKQ" - }, - { - "title": "Postmodern Jukebox - Running Up That Hill - Karaoke Version from Zoom Karaoke", - "id": "RYR2LMUcosI" - }, - { - "title": "Candida (Female Key of F Major) - Tony Orlando & Dawn - Karaoke Version from Zoom Karaoke", - "id": "ZIEtcRVH3dc" - }, - { - "title": "Breaking Up Is Hard To Do (Female Key of Ab Major) - Neil Sedaka - Karaoke Version from Zoom Karaoke", - "id": "0VacAr_Mq1Q" - }, - { - "title": "City Of New Orleans (Female Key of C Major) - Willie Nelson - Karaoke Version from Zoom Karaoke", - "id": "zXN28mOxLYE" - }, - { - "title": "Me And Bobby McGee (Female Key of B Major) - Kris Kristofferson - Karaoke Version from Zoom Karaoke", - "id": "Qt-f0BQOb2g" - }, - { - "title": "Blowin' In The Wind (Female Key of A Major) - Peter, Paul & Mary - Karaoke Version from Zoom Karaoke", - "id": "EVT5FKlA8Vg" - }, - { - "title": "Homeward Bound (Female Key of G Major) - Simon & Garfunkel - Karaoke Version from Zoom Karaoke", - "id": "6XwYMaHU6xM" - }, - { - "title": "Flo - Cardboard Box - Karaoke Version from Zoom Karaoke", - "id": "LEZbvJi52QI" - }, - { - "title": "Lynyrd Skynyrd - The Ballad Of Curtis Loew - Karaoke Version from Zoom Karaoke", - "id": "HdJi0H1IQ_8" - }, - { - "title": "A Summer Place (Female Key of Abm) - Andy Williams - Karaoke Version from Zoom Karaoke", - "id": "a-15T_DgnXQ" - }, - { - "title": "Charli XCX - Speed Drive - Karaoke Version from Zoom Karaoke (Barbie Movie)", - "id": "0HDpIH8uRHQ" - }, - { - "title": "Ice Spice & Nicki Minaj - Barbie World (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "ZliWO6AOXZk" - }, - { - "title": "Nathan Dawe & Talia Mar - Sweet Lies (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "sntcdL41nb4" - }, - { - "title": "Miley Cyrus - Flowers - Karaoke Version from Zoom Karaoke", - "id": "-5BJDZmAJyU" - }, - { - "title": "Zayn - Love Like This (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iP3Do8brPhw" - }, - { - "title": "JVKE - Golden Hour - Karaoke Version from Zoom Karaoke", - "id": "wSvo8RnXCeA" - }, - { - "title": "Tom Gregory - Forget Somebody - Karaoke Version from Zoom Karaoke", - "id": "HkxN-cx3WB4" - }, - { - "title": "Miley Cyrus - Flowers (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "V90LZEBJlA8" - }, - { - "title": "Coi Leray - Players - Karaoke Version from Zoom Karaoke", - "id": "nPd9jZol1i0" - }, - { - "title": "Smokie - Sally's Song (The Legacy Goes On) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "pdVhQk_TL64" - }, - { - "title": "Ronnie Milsap - Pure Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Xi_JxjoC8Js" - }, - { - "title": "Elvis Presley - If Every Day Was Like Christmas (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "ockWpUc_AFo" - }, - { - "title": "The Bellamy Brothers - Do You Love As Good As You Look (Without Backing Vocals) - Karaoke Version", - "id": "9sm4gqUwNBE" - }, - { - "title": "Bruce Springsteen - Nightshift (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2a0I1IGFmKo" - }, - { - "title": "Lewis Capaldi - Pointless - Karaoke Version from Zoom Karaoke", - "id": "ufvQ9D10-n4" - }, - { - "title": "Neil Diamond - Sunday Sun (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rwjrUMlKINc" - }, - { - "title": "Eurythmics - You Have Placed A Chill In My Heart (Without Backing Vocals) - Karaoke Version", - "id": "2RU3-O2rjwE" - }, - { - "title": "Hanson - MmmBop (Live Acoustic) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ufrDl-OHlqM" - }, - { - "title": "Carly Rae Jepsen feat Rufus Wainwright - The Loneliest Time (Without Backing Vocals) - Zoom Karaoke", - "id": "YEZuNJtWjJ4" - }, - { - "title": "Noel Gallagher's High Flying Birds - Pretty Boy (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "ZgGG9-ogA9U" - }, - { - "title": "Charley Pride - Kiss An Angel Good Mornin' (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "mSlZjgAWw3c" - }, - { - "title": "Travis Tritt - Honky Tonk Woman - Karaoke Version from Zoom Karaoke", - "id": "su7pgQyiX0o" - }, - { - "title": "The Wonders - All My Only Dreams (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "Gyn1ls4rQmU" - }, - { - "title": "The Bellamy Brothers - Do You Love As Good As You Look (With Harmony) - Karaoke Version from Zoom", - "id": "cH6i1T1H4X8" - }, - { - "title": "White Plains - I've Got You On My Mind (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "7xNNPYvtItA" - }, - { - "title": "Wings - With A Little Luck (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "CHFwMtw6DSg" - }, - { - "title": "Tom Grennan - All These Nights - Karaoke Version from Zoom Karaoke", - "id": "ekPNCPVsPfc" - }, - { - "title": "John Denver - Sleepin' Alone - Karaoke Version from Zoom Karaoke", - "id": "Bt8l0hiZJik" - }, - { - "title": "Postmodern Jukebox - Creep - Karaoke Version from Zoom Karaoke", - "id": "OtPFfP6fSTM" - }, - { - "title": "Ronnie Milsap - Pure Love - Karaoke Version from Zoom Karaoke", - "id": "XtaMSmo8syw" - }, - { - "title": "Mimi Webb - Ghost Of You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "MQgDFIpZr4U" - }, - { - "title": "Tenacious D - Video Games - Karaoke Version from Zoom Karaoke", - "id": "AbnC4D_M2fg" - }, - { - "title": "Acapella feat. Hutch - My Girl (Acapella Version) - Karaoke Version from Zoom Karaoke", - "id": "yXYf0o0_dfc" - }, - { - "title": "Thomas Law - Dancing Queen - Karaoke Version from Zoom Karaoke", - "id": "11DAvoGXBHc" - }, - { - "title": "The Bellamy Brothers - Do You Love As Good As You Look (No Harmony) - Karaoke Version from Zoom", - "id": "dpXih-9fW_w" - }, - { - "title": "Charley Pride - Kiss An Angel Good Mornin' - Karaoke Version from Zoom Karaoke", - "id": "NgTMZeuOdgQ" - }, - { - "title": "Cat Burns - People Pleaser (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "6F9VaVb3cLM" - }, - { - "title": "The Wonders - All My Only Dreams (from That Thing You Do) - Karaoke Version from Zoom Karaoke", - "id": "CeuI30R3EJc" - }, - { - "title": "Carl Wayne - You're A Star - Karaoke Version from Zoom Karaoke", - "id": "2pv-VUPUlbw" - }, - { - "title": "Mae Muller - I Wrote A Song - Karaoke Version from Zoom Karaoke", - "id": "jCqB6i36tp8" - }, - { - "title": "Noel Gallagher's High Flying Birds - Pretty Boy - Karaoke Version from Zoom Karaoke", - "id": "nMlQbM17vN4" - }, - { - "title": "Neil Diamond - Sunday Sun (Without Harmony) - Karaoke Version from Zoom Karaoke", - "id": "xYaoqKG3k2M" - }, - { - "title": "LF System - Afraid To Feel (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qld6jzP1GX0" - }, - { - "title": "Lewis Capaldi - Pointless (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "6uj7cNLTHLE" - }, - { - "title": "Postmodern Jukebox - Mad World - Karaoke Version from Zoom Karaoke", - "id": "XXnYgC53_S4" - }, - { - "title": "Smokie - Sally's Song (The Legacy Goes On) - Karaoke Version from Zoom Karaoke", - "id": "mRcmJrrZb5w" - }, - { - "title": "Wolf Alice - The Last Man On Earth (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "C31aO3RL3cE" - }, - { - "title": "Elvis Presley - Let Me Be There (Live Version) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "1xhlQrYt6E8" - }, - { - "title": "Mimi Webb - Ghost Of You - Karaoke Version from Zoom Karaoke", - "id": "ni5S9zRTipc" - }, - { - "title": "Everybody's Talking About Jamie - It Means Beautiful - Karaoke Version from Zoom Karaoke", - "id": "u6gK-fwT8k8" - }, - { - "title": "Jack Black - Peaches (from The Super Mario Bros. Movie) - Karaoke Version from Zoom Karaoke", - "id": "caJmHUOrxU0" - }, - { - "title": "The Bellamy Brothers - When I'm Away From You (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "kuY_WY9Bxa8" - }, - { - "title": "Postmodern Jukebox - Say Something - Karaoke Version from Zoom Karaoke", - "id": "str_aHbIDIo" - }, - { - "title": "Tom Grennan - All These Nights (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EAtJOPVq_KM" - }, - { - "title": "Engelbert Humperdinck - If You Love Me (Really Love Me) (Without Backing Vocals) - Karaoke Version", - "id": "8aTnMMz_gwg" - }, - { - "title": "Cat Burns - People Pleaser - Karaoke Version from Zoom Karaoke", - "id": "wxaYy4h2wxs" - }, - { - "title": "Sigala & Talia Mar - Stay The Night - Karaoke Version from Zoom Karaoke", - "id": "jGCAGRyHcU0" - }, - { - "title": "LF System - Afraid To Feel - Karaoke Version from Zoom Karaoke", - "id": "94ZE_Yr9-40" - }, - { - "title": "Elvis Presley - Puppet On A String - Karaoke Version from Zoom Karaoke", - "id": "wa_NUB1ff2g" - }, - { - "title": "Silver Pozzoli - Around My Dream (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nm14cVy4IR0" - }, - { - "title": "Santana feat. Rob Thomas - Smooth - Karaoke Version from Zoom Karaoke (Lyric Fixed)", - "id": "6c4s2E1IY_c" - }, - { - "title": "Bananarama - Venus - Karaoke Version from Zoom Karaoke (Lyric Fixed)", - "id": "E7mYpfSsCD4" - }, - { - "title": "Bananarama - Venus (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "XPUTkAK4t4Q" - }, - { - "title": "Miley Cyrus - Flowers (Acoustic Piano Version) - Karaoke Version from Zoom Karaoke", - "id": "i1GFj650ojo" - }, - { - "title": "The Beautiful South - Let Love Speak Up Itself - Karaoke Version from Zoom Karaoke", - "id": "Vk-cW0SBA6A" - }, - { - "title": "Bruce Springsteen - Do I Love You (Indeed I Do) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "rqdlGZqe1MA" - }, - { - "title": "Richard Ashcroft - They Don't Own Me - Karaoke Version from Zoom Karaoke", - "id": "THSSRDD7_gQ" - }, - { - "title": "Anne Murray - You Needed Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nGOGbgzeg84" - }, - { - "title": "Rick Price - Blue Bayou (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iW3c4LPG0bw" - }, - { - "title": "Wings - With A Little Luck - Karaoke Version from Zoom Karaoke", - "id": "zZhc2DetaNs" - }, - { - "title": "Pink - Never Gonna Not Dance Again (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZrLHyQmhd3E" - }, - { - "title": "Whitney Houston - You Give Good Love - Karaoke Version from Zoom Karaoke", - "id": "ONz8cmbTyHc" - }, - { - "title": "Rihanna - Lift Me Up (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "QF007caIx-Q" - }, - { - "title": "Jimmy Jones - Good Timin' (Two Semitones Down) - Karaoke Version from Zoom Karaoke", - "id": "P9CISPhs3SE" - }, - { - "title": "Nanci Griffith - Love At The Five And Dime - Karaoke Version from Zoom Karaoke", - "id": "MwuNV6fe0ng" - }, - { - "title": "Freddy Fender - Wasted Days And Wasted Nights - Karaoke Version from Zoom Karaoke", - "id": "jFxvGq29SW0" - }, - { - "title": "Elvis Presley - Pieces Of My Life - Karaoke Version from Zoom Karaoke", - "id": "uMFcJmZLqhQ" - }, - { - "title": "George Ezra - Manila (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZEAGx3uytKw" - }, - { - "title": "Silver Pozzoli - Around My Dream - Karaoke Version from Zoom Karaoke", - "id": "Ep0IcUhGpw4" - }, - { - "title": "Bishop Briggs - Revolution (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "oj4Arry4G1Y" - }, - { - "title": "Elvis Presley - Girl Happy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Y9RQ9WTVHuw" - }, - { - "title": "Anne Murray - You Needed Me - Karaoke Version from Zoom Karaoke", - "id": "L6_vBQ7gfR8" - }, - { - "title": "Elvis Presley - My Way (Live Version) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kjvRTsdJTUA" - }, - { - "title": "The Spice Girls - Never Give Up On The Good Times - Karaoke Version from Zoom Karaoke", - "id": "1EOeg9WHBbw" - }, - { - "title": "Postmodern Jukebox feat Puddles Pity Party - All The Small Things (Without Backing Vocals) - Karaoke", - "id": "PUOD0tJ6694" - }, - { - "title": "The Wonders - That Thing You Do (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "OB8xyM3oziY" - }, - { - "title": "Elvis Presley - Puppet On A String (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fkO4TSYIOwU" - }, - { - "title": "Elvis Presley - If Every Day Was Like Christmas - Karaoke Version from Zoom Karaoke", - "id": "ReB0dHdlXLA" - }, - { - "title": "Wolf Alice - The Last Man On Earth - Karaoke Version from Zoom Karaoke", - "id": "TdIp8k3A6aY" - }, - { - "title": "John Denver - Sleepin' Alone (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WsBz_FIvpWU" - }, - { - "title": "Steve Lacy - Bad Habit (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "X3QgCY_pwo4" - }, - { - "title": "Elvis Presley - Follow That Dream (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9ZGS4Nzzym8" - }, - { - "title": "Weezer - Island In The Sun - Karaoke Version from Zoom Karaoke", - "id": "8HIQMWMJaVc" - }, - { - "title": "David Gray - Be Mine (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "djavRJFozHM" - }, - { - "title": "Jason Manford - Assembly Bangers - Karaoke Version from Zoom Karaoke", - "id": "WDI4G6bFmzg" - }, - { - "title": "Blue Pearl - Naked In The Rain - Karaoke Version from Zoom Karaoke", - "id": "W26WCYc8PKM" - }, - { - "title": "Elvis Presley - Pieces Of My Life (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "3NANvSi5mWw" - }, - { - "title": "Freddy Fender - Wasted Days And Wasted Nights (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "oHhWkabwJSk" - }, - { - "title": "Elvis Presley - Follow That Dream - Karaoke Version from Zoom Karaoke", - "id": "NoVCPiR7HFQ" - }, - { - "title": "Peter Kent - It's A Real Good Feeling (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2IhBUBig8yE" - }, - { - "title": "Postmodern Jukebox - Running Up That Hill - Karaoke Version from Zoom Karaoke", - "id": "A0iL_HnD6p0" - }, - { - "title": "Oliver Tree & Robin Schulz - Miss You - Karaoke Version from Zoom Karaoke", - "id": "7YBBvsezU1E" - }, - { - "title": "Richard Ashcroft - They Don't Own Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Qx71H_12gE8" - }, - { - "title": "Rick Price - Blue Bayou - Karaoke Version from Zoom Karaoke", - "id": "UQvwXZ2ixs8" - }, - { - "title": "Starbuck - Moonlight Feels Right (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "3mJRi8nfVSA" - }, - { - "title": "The Sutherland Brothers - Easy Come Easy Go (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "nR4dFct-c6I" - }, - { - "title": "The Wonders - That Thing You Do - Karaoke Version from Zoom Karaoke", - "id": "65eBRtWdUYw" - }, - { - "title": "Weezer - Island In The Sun (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Z5ll7f3a88g" - }, - { - "title": "Elvis Presley - Bossa Nova Baby (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "XFNhLGOZ23I" - }, - { - "title": "Eurythmics - You Have Placed A Chill In My Heart - Karaoke Version from Zoom Karaoke", - "id": "UhnzM26vOMk" - }, - { - "title": "Elvis Presley - Let Me Be There (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "uKv13W64bwQ" - }, - { - "title": "Phoebe Cates & Bill Wray - Just One Touch - Karaoke Version from Zoom Karaoke", - "id": "a3DWOxLzJHs" - }, - { - "title": "Becky Hill - Only You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cotkkDCPopE" - }, - { - "title": "Elvis Presley - Flaming Star (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "a3fc_2IHnyE" - }, - { - "title": "Steve Lacy - Bad Habit - Karaoke Version from Zoom Karaoke", - "id": "-Wo0TwQy4Fk" - }, - { - "title": "Bruce Springsteen - Nightshift - Karaoke Version from Zoom Karaoke", - "id": "OS6zz-9o-rI" - }, - { - "title": "Rihanna - Lift Me Up - Karaoke Version from Zoom Karaoke", - "id": "xODFx8miJZU" - }, - { - "title": "Nanci Griffith - Love At The Five And Dime (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "v4EjQWgLs04" - }, - { - "title": "The Spice Girls - Never Give Up On The Good Times (Without Backing Vocals) - Karaoke Version", - "id": "_VTItOyVcys" - }, - { - "title": "Elvis Presley - My Way (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "8053ZI9p61s" - }, - { - "title": "The Specials - Monkey Man (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "yrxvPPPncyk" - }, - { - "title": "Elvis Presley - Fame And Fortune (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iI_YmtPBXH8" - }, - { - "title": "Postmodern Jukebox feat Puddles Pity Party - All The Small Things - Karaoke Version from Zoom", - "id": "zmP31YjyLoc" - }, - { - "title": "Wet Leg - Chaise Longue (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "p_Xjwu9Y_ig" - }, - { - "title": "Bruce Springsteen - Do I Love You (Indeed I Do) - Karaoke Version from Zoom Karaoke", - "id": "q22G9zBoYbs" - }, - { - "title": "The Civil Wars - Dance Me To The End Of Love - Karaoke Version from Zoom Karaoke", - "id": "LGce5hwV2dk" - }, - { - "title": "Whitney Houston - You Give Good Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "NFc23aolvqE" - }, - { - "title": "Five For Fighting - Superman (It's Not Easy) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "lRCcVu00TJM" - }, - { - "title": "Pink - Never Gonna Not Dance Again - Karaoke Version from Zoom Karaoke", - "id": "usB4dz1yeTE" - }, - { - "title": "David Gray - Be Mine - Karaoke Version from Zoom Karaoke", - "id": "aFjtIdndt0E" - }, - { - "title": "Elvis Presley - I Got Lucky - Karaoke Version from Zoom Karaoke", - "id": "JnQnc12KdBM" - }, - { - "title": "White Plains - I've Got You On My Mind - Karaoke Version from Zoom Karaoke", - "id": "RP6VkMhL7KM" - }, - { - "title": "Matchbox 20 - Unwell - Karaoke Version from Zoom Karaoke", - "id": "tawh0mEK704" - }, - { - "title": "Peter Kent - It's A Real Good Feeling - Karaoke Version from Zoom Karaoke", - "id": "K-CyaqqdSjo" - }, - { - "title": "Matchbox 20 - Bent - Karaoke Version from Zoom Karaoke", - "id": "XO4F0X1jzlM" - }, - { - "title": "The Adventures Of Stevie V - Dirty Cash (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "CBBWSB4JQsA" - }, - { - "title": "Elvis Presley - Kissin' Cousins - Karaoke Version from Zoom Karaoke", - "id": "4ignn97eE-c" - }, - { - "title": "Dave Mason - We Just Disagree - Karaoke Version from Zoom Karaoke", - "id": "TQenrJE1AIM" - }, - { - "title": "Becky Hill - Only You (McDonald's Advert 2022) - Karaoke Version from Zoom Karaoke", - "id": "MSBN4EU7zAg" - }, - { - "title": "Elvis Presley - Too Much (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "431AH6B587c" - }, - { - "title": "The Sutherland Brothers - Easy Come Easy Go - Karaoke Version from Zoom Karaoke", - "id": "fxsNWee11vc" - }, - { - "title": "Starbuck - Moonlight Feels Right - Karaoke Version from Zoom Karaoke", - "id": "kHf6MC7kOOk" - }, - { - "title": "Elvis Presley - Hard Headed Woman - Karaoke Version from Zoom Karaoke", - "id": "rYYVqCh4JLA" - }, - { - "title": "Travis Tritt - Honky Tonk Woman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "OoXNAZJdOXA" - }, - { - "title": "Hot Chocolate - Heaven Is In The Back Seat Of My Cadillac (Without Backing Vocals) - Karaoke Version", - "id": "XGAm9JjzBn8" - }, - { - "title": "Elvis Presley - I Got Lucky (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WgIKk31mRkc" - }, - { - "title": "The Bellamy Brothers - When I'm Away From You - Karaoke Version from Zoom Karaoke", - "id": "MnlvhthJCWQ" - }, - { - "title": "George Ezra - Manila - Karaoke Version from Zoom Karaoke", - "id": "n1iMjVoyazw" - }, - { - "title": "Supersister - Coffee (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "RXdW_m7Har0" - }, - { - "title": "Sam Ryder - Somebody (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iZhMmdAMvAg" - }, - { - "title": "Lou Rawls - Lady Love - Karaoke Version from Zoom Karaoke", - "id": "qZk3VCSdJcA" - }, - { - "title": "Jessie Ware - Free Yourself - Karaoke Version from Zoom Karaoke", - "id": "83-VI8MRIik" - }, - { - "title": "Vanessa Paradis - Be My Baby - Karaoke Version from Zoom Karaoke", - "id": "i0cjlORcQ3A" - }, - { - "title": "John Legend - All She Wanna Do - Karaoke Version from Zoom Karaoke", - "id": "GJvq_A94z1k" - }, - { - "title": "Matchbox 20 - Unwell (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fXzWKU5oa9g" - }, - { - "title": "Blue Pearl - Naked In The Rain (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "0L68wvfOjAE" - }, - { - "title": "The Specials - Monkey Man - Karaoke Version from Zoom Karaoke", - "id": "MvcR5DmbYiE" - }, - { - "title": "Joe Cocker And Jennifer Warnes - Up Where We Belong (Without Backing Vocals) - Karaoke Version", - "id": "hUwIA06PmTQ" - }, - { - "title": "Elvis Presley - Fame And Fortune - Karaoke Version from Zoom Karaoke", - "id": "nisLiRbeX6E" - }, - { - "title": "Ed Sheeran - Celestial - Karaoke Version from Zoom Karaoke", - "id": "4MBgqZIYffY" - }, - { - "title": "Lewis Capaldi - Forget Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EcvF3pp3gfI" - }, - { - "title": "Sarah Vaughan - A Lover's Concerto - Karaoke Version from Zoom Karaoke", - "id": "2TEoU9Bfx0I" - }, - { - "title": "Lizzo - 2 Be Loved (Am I Ready) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "gUR9x-UxIGk" - }, - { - "title": "Wet Leg - Chaise Longue - Karaoke Version from Zoom Karaoke", - "id": "0CCWP1Ne2Xc" - }, - { - "title": "Elvis Presley - Girl Happy - Karaoke Version from Zoom Karaoke", - "id": "pCo3oqdpvyQ" - }, - { - "title": "Jimmy Jones - Good Timin' (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "QNwUUsI6EWQ" - }, - { - "title": "Engelbert Humperdinck - If You Love Me (Really Love Me) - Karaoke Version from Zoom Karaoke", - "id": "nmXhUn1_wyo" - }, - { - "title": "Elvis Presley - A Mess Of Blues (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TAcmOofTHeo" - }, - { - "title": "Matchbox 20 - 3 AM (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "g7381ZzGUr4" - }, - { - "title": "The Adventures Of Stevie V - Dirty Cash (With Rapper) - Karaoke Version from Zoom Karaoke", - "id": "7fqC3fHLck8" - }, - { - "title": "Wilson Phillips - Hold On (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "sdRlIHLJ4CU" - }, - { - "title": "Oceanic - Insanity (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "GrA1Nw8CVuI" - }, - { - "title": "De La Soul - The Magic Number (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Hk7u-fOWC-s" - }, - { - "title": "Elvis Presley - White Christmas - Karaoke Version from Zoom Karaoke", - "id": "GOOfG1NjqpA" - }, - { - "title": "Culture Beat - Mr Vain - Karaoke Version from Zoom Karaoke", - "id": "V9Po6JEHepY" - }, - { - "title": "Bishop Briggs - Revolution - Karaoke Version from Zoom Karaoke", - "id": "tOr_Jv1_HdU" - }, - { - "title": "Hanson - MmmBop (Live Acoustic) - Karaoke Version from Zoom Karaoke", - "id": "wCumd9HZ10I" - }, - { - "title": "Lauren Spencer-Smith - Narcissist - Karaoke Version from Zoom Karaoke", - "id": "luZI76f_R3o" - }, - { - "title": "Tim Capello - I Still Believe - Karaoke Version from Zoom Karaoke", - "id": "ofN8foyEqM8" - }, - { - "title": "Elvis Presley - Hard Headed Woman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PyGm3otyuZU" - }, - { - "title": "The Bellamy Brothers - When I'm Away From You (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "WbNzu5b7hKU" - }, - { - "title": "Elvis Presley - Here Comes Santa Claus (Right Down Santa Claus Lane) (Without BVs) - Karaoke Version", - "id": "wFxLd8o9tLY" - }, - { - "title": "The Wolfe Tones - The Streets Of New York (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "4KXGE3t3JYA" - }, - { - "title": "Traditional Christmas Carol - Away In A Manger - Karaoke Version from Zoom Karaoke", - "id": "ftca8Ci917g" - }, - { - "title": "Matchbox 20 - Bent (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EcpEfJTxyJo" - }, - { - "title": "Rocky Burnette - Tired Of Toein' The Line (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "bQjrREW8Ehs" - }, - { - "title": "Neil Diamond - If You Go Away - Karaoke Version from Zoom Karaoke", - "id": "0hDAd9w8Udg" - }, - { - "title": "Elvis Presley - Flaming Star - Karaoke Version from Zoom Karaoke", - "id": "kYdnpYz7fv8" - }, - { - "title": "Elvis Presley - Kissin' Cousins (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kXbaXmCEyvo" - }, - { - "title": "Ed Sheeran - Celestial (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "sdhwvMTYeTE" - }, - { - "title": "Madison Beer - Selfish (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "q60PZeOxTTY" - }, - { - "title": "Nanci Griffith - Late Night Grande Hotel - Karaoke Version from Zoom Karaoke", - "id": "G8A8t3Rmg-g" - }, - { - "title": "Sarah Vaughan - The Man I Love - Karaoke Version from Zoom Karaoke", - "id": "ri0a1dT9OAU" - }, - { - "title": "Lauren Spencer-Smith - Narcissist (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "X6hY2li6_2c" - }, - { - "title": "John Legend - All She Wanna Do (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-cOM70K3_no" - }, - { - "title": "Vanessa Paradis - Be My Baby (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2HT_bBu-VMk" - }, - { - "title": "The Adventures Of Stevie V - Dirty Cash (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "dMa9c-GjY5o" - }, - { - "title": "Elvis Presley - Too Much - Karaoke Version from Zoom Karaoke", - "id": "VfErFNbiFRA" - }, - { - "title": "Elvis Presley - Here Comes Santa Claus (Right Down Santa Claus Lane) - Karaoke Version from Zoom", - "id": "14o3FlcRO4E" - }, - { - "title": "Elvis Presley - White Christmas (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jNO8edCr1qc" - }, - { - "title": "Five For Fighting - Superman (It's Not Easy) - Karaoke Version from Zoom Karaoke", - "id": "YAr4OeY3w8w" - }, - { - "title": "Todd Rundgren - I Saw The Light (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rE8V3APjvt4" - }, - { - "title": "Postmodern Jukebox - All The Small Things (John Lewis Christmas Ad 2022) - Karaoke Version from Zoom", - "id": "OW1ZEnhn9-4" - }, - { - "title": "Oceanic - Insanity - Karaoke Version from Zoom Karaoke", - "id": "U-tJYW8Z6hc" - }, - { - "title": "Sinead O'Connor - Mandinka - Karaoke Version from Zoom Karaoke", - "id": "3OKqGBLFFXY" - }, - { - "title": "KSI feat Tom Grennan - Not Over Yet - Karaoke Version from Zoom Karaoke", - "id": "p-HkYFvZR4c" - }, - { - "title": "Brent Morgan - The Fixer - Karaoke Version from Zoom Karaoke", - "id": "lovt1UNoDTs" - }, - { - "title": "Lizzo - 2 Be Loved (Am I Ready) - Karaoke Version from Zoom Karaoke", - "id": "Z9Eb-XZ8XoY" - }, - { - "title": "Wet Leg - Chaise Longue (With 'What' Backing Vocals Only) - Karaoke Version from Zoom Karaoke", - "id": "I7aFrkdY_Kk" - }, - { - "title": "Todd Rundgren - I Saw The Light - Karaoke Version from Zoom Karaoke", - "id": "QDd9IokRmFA" - }, - { - "title": "Buzzcocks - What Do I Get - Karaoke Version from Zoom Karaoke", - "id": "o5VqDFJWIiU" - }, - { - "title": "Pink - Irrelevant - Karaoke Version from Zoom Karaoke", - "id": "8S7t-BlXFOc" - }, - { - "title": "Nanci Griffith - Late Night Grande Hotel (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "Im5jJhbJIQk" - }, - { - "title": "Elvis Presley - Bossa Nova Baby - Karaoke Version from Zoom Karaoke", - "id": "K4dKjjDFZGg" - }, - { - "title": "Foreigner - Feels Like The First Time - Karaoke Version from Zoom Karaoke", - "id": "a5PQ_BPhJQ4" - }, - { - "title": "Buzzcocks - What Do I Get (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "AlLiMSq5Hgs" - }, - { - "title": "Charlie Puth feat Jung Kook - Left And Right - Karaoke Version from Zoom Karaoke", - "id": "PZORTyerncw" - }, - { - "title": "Joe Esposito - Lady, Lady, Lady - Karaoke Version from Zoom Karaoke", - "id": "cUz0sNtNJLQ" - }, - { - "title": "Rocky Burnette - Tired Of Toein' The Line - Karaoke Version from Zoom Karaoke", - "id": "2j3ByTfJi90" - }, - { - "title": "Pink - Irrelevant (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "OUQs8imTlcY" - }, - { - "title": "Madison Beer - Selfish - Karaoke Version from Zoom Karaoke", - "id": "jgjBMKaHYG0" - }, - { - "title": "Hot Chocolate - Heaven Is In The Back Seat Of My Cadillac - Karaoke Version from Zoom Karaoke", - "id": "pvrGVVP6Hq4" - }, - { - "title": "Jessie Ware - Free Yourself (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TxoUDLLfjNw" - }, - { - "title": "John Denver - Thank God I'm A Country Boy (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "Z8Ttjbvm9Bc" - }, - { - "title": "Dermot Kennedy - Something To Someone - Karaoke Version from Zoom Karaoke", - "id": "udmVgZ-qQts" - }, - { - "title": "Conor Maynard Vs. Pixie Lott - Despacito (Sing Off) - Karaoke Version from Zoom Karaoke", - "id": "Sk6SP2ZNShU" - }, - { - "title": "Elvis Presley - Just For Old Time Sake - Karaoke Version from Zoom Karaoke", - "id": "-NwleJQ3rf8" - }, - { - "title": "Lou Rawls - Lady Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_qf-6g68kd4" - }, - { - "title": "KSI feat Tom Grennan - Not Over Yet (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1H5ES8IJz4I" - }, - { - "title": "Neiked, Anne Marie & Latto - I Just Called (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "26bbRTbpxPw" - }, - { - "title": "James Bay - One Life (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ca88QGZhJyI" - }, - { - "title": "Foreigner - Feels Like The First Time (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qTAqhBPmwvY" - }, - { - "title": "Dave Mason - We Just Disagree (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "dzU-apkR19Q" - }, - { - "title": "Brent Morgan - The Fixer - Karaoke Version from Zoom Karaoke", - "id": "7KZZ2ORu_8Q" - }, - { - "title": "Sinead O'Connor - Mandinka (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "JJnvqlCpTzg" - }, - { - "title": "Train - Calling All Angels - Karaoke Version from Zoom Karaoke", - "id": "tZmO8DXg8DM" - }, - { - "title": "Lewis Capaldi - Everytime (BBC Live Lounge Piano Acoustic) - Karaoke Version from Zoom Karaoke", - "id": "_bWYFjdwXDw" - }, - { - "title": "Jamie Webster - Weekend In Paradise - Karaoke Version from Zoom Karaoke", - "id": "iJL0ZQstIbQ" - }, - { - "title": "Matchbox 20 - 3 AM - Karaoke Version from Zoom Karaoke", - "id": "2JRHo6V_Szw" - }, - { - "title": "Six The Musical - Don't Lose Ur Head (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "M8TieO4BsYM" - }, - { - "title": "Jeff Buckley - Morning Theft - Karaoke Version from Zoom Karaoke", - "id": "FiqzqqUbwg4" - }, - { - "title": "Lewis Capaldi - Forget Me - Karaoke Version from Zoom Karaoke", - "id": "vLAM2W-JNvI" - }, - { - "title": "Buzzcocks - Harmony In My Head - Karaoke Version from Zoom Karaoke", - "id": "l2erUVesPD0" - }, - { - "title": "Elvis Presley - Steppin' Out Of Line (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9v_Z5aDmqd8" - }, - { - "title": "Neiked, Anne Marie & Latto - I Just Called - Karaoke Version from Zoom Karaoke", - "id": "fF9pdg-z41E" - }, - { - "title": "Sybil - Make It Easy On Me - Karaoke Version from Zoom Karaoke", - "id": "h4B9L2nbwdY" - }, - { - "title": "2 Unlimited - Get Ready For This - Karaoke Version from Zoom Karaoke", - "id": "tFiezflye-o" - }, - { - "title": "Dermot Kennedy - Something To Someone (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "3VCwTCi8A-s" - }, - { - "title": "Orleans - Dance With Me - Karaoke Version from Zoom Karaoke", - "id": "4jwt--ROzZw" - }, - { - "title": "Elvis Presley - Kiss Me Quick (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "J7muZsFrm_k" - }, - { - "title": "Elvis Presley - Such An Easy Question (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "HYWOGS8dKrg" - }, - { - "title": "George Ezra - Gold Rush Kid - Karaoke Version from Zoom Karaoke", - "id": "V86lBCpY84M" - }, - { - "title": "Elvis Presley - Such A Night - Karaoke Version from Zoom Karaoke", - "id": "KhLG8ndlJC8" - }, - { - "title": "Elvis Presley - A Mess Of Blues - Karaoke Version from Zoom Karaoke", - "id": "yisXIXE7SlY" - }, - { - "title": "Sam Ryder - Somebody - Karaoke Version from Zoom Karaoke", - "id": "Z5qXCS_kPhM" - }, - { - "title": "Charlie Puth feat Jung Kook - Left And Right (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "rJ9L6Xgbkes" - }, - { - "title": "Elvis Presley - Just For Old Time Sake (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "og1G-CJXQLY" - }, - { - "title": "Freddie De Tommaso - Addio, Sogni Di Gloria - Karaoke Version from Zoom Karaoke", - "id": "lW2w1s3_-Uo" - }, - { - "title": "Calvin Harris, Dua Lipa & Young Thug - Potion (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "nR0UoVJU7wc" - }, - { - "title": "Elvis Presley - Such An Easy Question - Karaoke Version from Zoom Karaoke", - "id": "kAPSNDCKnzk" - }, - { - "title": "Harry Styles - Late Night Talking (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "LIfAadyUOWI" - }, - { - "title": "Train - Calling All Angels (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iV8O62pzgOs" - }, - { - "title": "Sarah Vaughan - Broken Hearted Melody (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "G4oIBxOBOYc" - }, - { - "title": "Michael Learns To Rock - Someday (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "UkwIqaUBtTo" - }, - { - "title": "Elvis Presley - Kiss Me Quick - Karaoke Version from Zoom Karaoke", - "id": "g-Ip426F6zQ" - }, - { - "title": "Jeremy Loops - Better Together (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "lcLuCNr1hRg" - }, - { - "title": "Elvis Presley - Such A Night (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "HDgHHLBuHE4" - }, - { - "title": "Michael Learns To Rock - 25 Minutes - Karaoke Version from Zoom Karaoke", - "id": "lf2IQPLvBxk" - }, - { - "title": "Toni Braxton - Un-Break My Heart (Classic Radio Mix) (Without Backing Vocals) - Karaoke Version", - "id": "9drlhRJOzn8" - }, - { - "title": "Willy Wonka And The Chocolate Factory - I've Got A Golden Ticket - Karaoke Version from Zoom Karaoke", - "id": "Ab0gwroAR-s" - }, - { - "title": "Wilson Phillips - Hold On (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "JC5Vx0G99Mg" - }, - { - "title": "Joe Esposito - Lady, Lady, Lady (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "KZdvvkVxojg" - }, - { - "title": "George Ezra - Gold Rush Kid (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hegSJ52WpQM" - }, - { - "title": "Calvin Harris, Dua Lipa & Young Thug - Potion - Karaoke Version from Zoom Karaoke", - "id": "hhAijRXiDa8" - }, - { - "title": "Michael Learns To Rock - Someday - Karaoke Version from Zoom Karaoke", - "id": "XuDjyNHh2Po" - }, - { - "title": "The Wolfe Tones - The Streets Of New York - Karaoke Version from Zoom", - "id": "muojo-FoKkI" - }, - { - "title": "John Denver - Thank God I'm A Country Boy - Karaoke Version from Zoom Karaoke", - "id": "I_dqZQ0L8kI" - }, - { - "title": "Elvis Presley - Steppin' Out Of Line - Karaoke Version from Zoom Karaoke", - "id": "WFhhl9Nq46w" - }, - { - "title": "Orleans - Dance With Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "j8J4vdsHx8E" - }, - { - "title": "Michael Learns To Rock - Paint My Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "uwvqGVA6Wo4" - }, - { - "title": "The Frank And Walters - After All - Karaoke Version from Zoom Karaoke", - "id": "TckUVNkMxEg" - }, - { - "title": "Elvis Presley - There's Always Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "X4ASRjB4wLQ" - }, - { - "title": "Alfie Templeman - Colour Me Blue (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "p7ifhzJIl3M" - }, - { - "title": "FR David - Words (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZYqGQarVcuU" - }, - { - "title": "James Bay - One Life - Karaoke Version from Zoom Karaoke", - "id": "M4ZxTfPeeuU" - }, - { - "title": "Elvis Presley - Give Me The Right (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vciCeNNfI4Q" - }, - { - "title": "Jeremy Loops - Better Together - Karaoke Version from Zoom Karaoke", - "id": "QVpCvPo-sWU" - }, - { - "title": "Elvis Presley - There's Always Me - Karaoke Version from Zoom Karaoke", - "id": "xCvVKFVEZS8" - }, - { - "title": "Michael Learns To Rock - Paint My Love - Karaoke Version from Zoom Karaoke", - "id": "pEJHcKMsJx4" - }, - { - "title": "Lonnie Gordon - Happenin' All Over Again (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "FtqtyO8f0Ds" - }, - { - "title": "Sigrid - It Gets Dark (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_omwvsZyjy4" - }, - { - "title": "Elvis Presley - Dirty, Dirty Feeling (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vGl23GkKQnU" - }, - { - "title": "Madonna - Like A Virgin - Karaoke Version from Zoom Karaoke", - "id": "sTgO7TS7FCU" - }, - { - "title": "OneRepublic - I Ain't Worried (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "totfVv5NY84" - }, - { - "title": "Madonna - Sorry - Karaoke Version from Zoom Karaoke", - "id": "qbZJNAtXivc" - }, - { - "title": "Madonna - Celebration - Karaoke Version from Zoom Karaoke", - "id": "XTYvRewC5lo" - }, - { - "title": "The Frank And Walters - After All (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "v65mtWGlQzE" - }, - { - "title": "Six The Musical - Don't Lose Ur Head - Karaoke Version from Zoom Karaoke", - "id": "wWQjRDT0TzI" - }, - { - "title": "God Save The King - British National Anthem - Karaoke Version from Zoom Karaoke", - "id": "tjoUg50U5vk" - }, - { - "title": "Elvis Presley - Give Me The Right - Karaoke Version from Zoom Karaoke", - "id": "bJY63QoblaM" - }, - { - "title": "Madonna - Madonna Megamix - Karaoke Version from Zoom Karaoke", - "id": "WL_V0eMWlX4" - }, - { - "title": "Rosie McClelland - Safe In Your Love - Karaoke Version from Zoom Karaoke", - "id": "UgeSnV4PrSw" - }, - { - "title": "Elvis Presley - I Will Be Home Again (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "pct9U8ylq0Y" - }, - { - "title": "FR David - Words - Karaoke Version from Zoom Karaoke", - "id": "JI0odvSuxM8" - }, - { - "title": "Madonna - Hold Tight - Karaoke Version from Zoom Karaoke", - "id": "PtbNdcCRH4s" - }, - { - "title": "Blackberry Smoke - One Horse Town (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "r4En7SOYrnI" - }, - { - "title": "Lady Gaga - Hold My Hand (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "uwjK9tDoh4M" - }, - { - "title": "Calum Scott - Boys In The Street - Karaoke Version from Zoom Karaoke", - "id": "H0bB521E1_E" - }, - { - "title": "Madonna - Hanky Panky - Karaoke Version from Zoom Karaoke", - "id": "x62mkVNjrGQ" - }, - { - "title": "Toni Braxton - Un-Break My Heart (Classic Radio Mix) - Karaoke Version from Zoom Karaoke", - "id": "3H5aHxra2-8" - }, - { - "title": "Elvis Presley - I Will Be Home Again (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "8a1LY32mHoM" - }, - { - "title": "Hamilton, Joe Frank & Reynolds - Fallin' In Love - Karaoke Version from Zoom Karaoke", - "id": "16r5Dvv1uJM" - }, - { - "title": "Joe Cocker & Jennifer Warnes - Up Where We Belong - Karaoke Version from Zoom Karaoke (Lyric Fixed)", - "id": "mc-8-86hYc4" - }, - { - "title": "Three Dog Night - One - Karaoke Version from Zoom Karaoke", - "id": "W4X5GQUijuQ" - }, - { - "title": "Shawn Mendes - When You're Gone (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TVPa1iY54Sc" - }, - { - "title": "Harry Styles - Late Night Talking - Karaoke Version from Zoom Karaoke", - "id": "HoEOmkt18Ho" - }, - { - "title": "Elvis Presley - Make Me Know It (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "o54rIL3p9ys" - }, - { - "title": "The Drifters - Closely Guarded Secret (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Mftlj-fJXxM" - }, - { - "title": "Madonna - Causing A Commotion - Karaoke Version from Zoom Karaoke", - "id": "KnRr_q5M_xE" - }, - { - "title": "Tom Grennan - Remind Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Y4Lm4dvuRS8" - }, - { - "title": "Dean Lewis - Hurtless (Live Acoustic One Take) - Karaoke Version from Zoom Karaoke", - "id": "DLBa1pJWTig" - }, - { - "title": "De La Soul - The Magic Number - Karaoke Version from Zoom Karaoke", - "id": "NO7mtIl589s" - }, - { - "title": "Lady Gaga - Hold My Hand - Karaoke Version from Zoom Karaoke", - "id": "lYX3-CloRa8" - }, - { - "title": "Michael Learns To Rock - 25 Minutes (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rOSp7vKAbZE" - }, - { - "title": "Sarah Vaughan - Broken Hearted Melody - Karaoke Version from Zoom Karaoke", - "id": "uKT7bvonH2w" - }, - { - "title": "Elvis Presley - Fever - Karaoke Version from Zoom Karaoke", - "id": "YmRr9UmjMzc" - }, - { - "title": "Blackberry Smoke - One Horse Town - Karaoke Version from Zoom Karaoke", - "id": "gCzPna1GVPA" - }, - { - "title": "Madonna - Don't Cry For Me Argentina - Karaoke Version from Zoom Karaoke", - "id": "-bGzHCld9Co" - }, - { - "title": "Tom Grennan - Remind Me - Karaoke Version from Zoom Karaoke", - "id": "tTUFno6jYgA" - }, - { - "title": "Madonna - Angel - Karaoke Version from Zoom Karaoke", - "id": "VhhjEozUJkc" - }, - { - "title": "Lonnie Gordon - Happenin' All Over Again - Karaoke Version from Zoom Karaoke", - "id": "6bhdvMLCjXc" - }, - { - "title": "Gary Puckett & The Union Gap - Woman Woman (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "ChnHlqBkTVE" - }, - { - "title": "Madonna - Open Your Heart - Karaoke Version from Zoom Karaoke", - "id": "9qPs-2wjdTU" - }, - { - "title": "The Drifters - Closely Guarded Secret - Karaoke Version from Zoom Karaoke", - "id": "iixTI6LZqck" - }, - { - "title": "Mike And The Mechanics - Nobody's Perfect (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "AOFvCYLs5fo" - }, - { - "title": "Kilotile & Solomon Burke - Cry To Me (Remix) - Karaoke Version from Zoom Karaoke", - "id": "R5s_b9TtQtE" - }, - { - "title": "Smash Mouth - Walkin' On The Sun (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "MKOrQ2PZW58" - }, - { - "title": "Madonna - Joan Of Arc - Karaoke Version from Zoom Karaoke", - "id": "zVo_h2P0d0g" - }, - { - "title": "Sigrid - It Gets Dark - Karaoke Version from Zoom Karaoke", - "id": "UMDqiHt3tGY" - }, - { - "title": "Madonna - American Pie - Karaoke Version from Zoom Karaoke", - "id": "JGad-q9O6dQ" - }, - { - "title": "Rosie McClelland - Safe In Your Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Y-Zg23Id2LA" - }, - { - "title": "Elvis Presley - Dirty, Dirty Feeling - Karaoke Version from Zoom Karaoke", - "id": "Tjbv_qvWwRI" - }, - { - "title": "Erasure - Chains Of Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "l0YOuEugrEU" - }, - { - "title": "Cat Burns - Go (Clean Version) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "4BygM0FHTw0" - }, - { - "title": "Hamilton, Joe Frank & Reynolds - Fallin' In Love (Without Backing Vocals) - Karaoke Version", - "id": "8Y30lqJx6hE" - }, - { - "title": "Gary Puckett & The Union Gap - Woman Woman - Karaoke Version from Zoom Karaoke", - "id": "O4Kf-93TsP4" - }, - { - "title": "Ed Sheeran - 2Step (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "75RzkwHm_kI" - }, - { - "title": "The Power Station - Some Like It Hot (Album Version) - Karaoke Version from Zoom Karaoke", - "id": "NAVVazITmY4" - }, - { - "title": "Calum Scott - Boys In The Street - Karaoke Version from Zoom Karaoke", - "id": "BxNDFZuS4mk" - }, - { - "title": "Three Dog Night - One (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Uq6yhRuqc1g" - }, - { - "title": "Elvis Presley - I Will Be Home Again (Without Harmony) - Karaoke Version from Zoom Karaoke", - "id": "nxgqqMoqtQU" - }, - { - "title": "Kenny Dale - Two Hearts Tangled In Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WouMh_P-uaM" - }, - { - "title": "Shawn Mendes - When You're Gone - Karaoke Version from Zoom Karaoke", - "id": "yXCV0bjlFJE" - }, - { - "title": "Carly Simon - Anticipation (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "XuNbvd8-1ws" - }, - { - "title": "Madonna - Like A Prayer - Karaoke Version from Zoom Karaoke", - "id": "nFKDDce4WV0" - }, - { - "title": "Mike And The Mechanics - Nobody's Perfect - Karaoke Version from Zoom Karaoke", - "id": "7JRO0c9ojco" - }, - { - "title": "Cat Burns - Go (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "FrcuNo3VoRI" - }, - { - "title": "George Ezra - Green Green Grass (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "6llmXEDZ0dE" - }, - { - "title": "Kenny Dale - Bluest Heartache Of The Year (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "6lyrbAX58T4" - }, - { - "title": "Smash Mouth - Walkin' On The Sun - Karaoke Version from Zoom Karaoke", - "id": "0UDmSrae2jE" - }, - { - "title": "The Power Station - Some Like It Hot (Single Version) (Without Backing Vocals) - Karaoke Version", - "id": "jv1FkGFR8Sk" - }, - { - "title": "Diplo & Miguel - Don't Forget My Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ojWfUJlCvWg" - }, - { - "title": "Madonna - Express Yourself - Karaoke Version from Zoom Karaoke", - "id": "mXp9OWcscbI" - }, - { - "title": "Erasure - Chains Of Love - Karaoke Version from Zoom Karaoke", - "id": "lX_TBdVhPwQ" - }, - { - "title": "Hothouse Flowers - I Can See Clearly Now (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "sq9NRBHZOTQ" - }, - { - "title": "Vic Reeves & The Wonder Stuff - Dizzy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "p5hpWDBm-l8" - }, - { - "title": "Madonna - Live To Tell - Karaoke Version from Zoom Karaoke", - "id": "tlsOMi8wVnY" - }, - { - "title": "Crosby, Stills & Nash - Southern Cross (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "AvbAqeNhD0I" - }, - { - "title": "George Ezra - Green Green Grass - Karaoke Version from Zoom Karaoke", - "id": "2Ts7oWaNCNg" - }, - { - "title": "Madonna - Don't Cry For Me Argentina (Miami Mix) - Karaoke Version from Zoom Karaoke", - "id": "AMeXUuUhBio" - }, - { - "title": "Elvis Presley - The Thrill Of Your Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "4XrAE1XvPnk" - }, - { - "title": "Carly Simon - Anticipation - Karaoke Version from Zoom Karaoke", - "id": "Yv_F7w6cZvo" - }, - { - "title": "Madonna - Frozen - Karaoke Version from Zoom Karaoke", - "id": "mPeeOhQ8l0c" - }, - { - "title": "Brenda Lee - If You Love Me (Really Love Me) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "r2TST94bh6w" - }, - { - "title": "Madonna - The Look Of Love - Karaoke Version from Zoom Karaoke", - "id": "VJJQ69-rGhs" - }, - { - "title": "Elvis Presley - Make Me Know It - Karaoke Version from Zoom Karaoke", - "id": "SriQfZFPPiU" - }, - { - "title": "Kenny Dale - Bluest Heartache Of The Year - Karaoke Version from Zoom Karaoke", - "id": "wJkkcKsPbeQ" - }, - { - "title": "Madonna - Who's That Girl - Karaoke Version from Zoom Karaoke", - "id": "ukficeWVfFY" - }, - { - "title": "David Guetta, Becky Hill & Ella Henderson - Crazy What Love Can Do - Karaoke Version from Zoom", - "id": "_RyJ4MgHTrE" - }, - { - "title": "Ed Sheeran - 2Step - Karaoke Version from Zoom Karaoke", - "id": "lPVCseue4Uk" - }, - { - "title": "Madonna - Dear Jessie - Karaoke Version from Zoom Karaoke", - "id": "I3acJfgYWJE" - }, - { - "title": "The Power Station - Some Like It Hot (Album Version) (Without Backing Vocals) - Karaoke Version", - "id": "6oghfVh5-fA" - }, - { - "title": "Harry Styles - As It Was - Karaoke Version from Zoom Karaoke", - "id": "Za9Dw2wxguY" - }, - { - "title": "Madonna - Gambler - Karaoke Version from Zoom Karaoke", - "id": "nyfhpGompUs" - }, - { - "title": "Diplo & Miguel - Don't Forget My Love - Karaoke Version from Zoom Karaoke", - "id": "csFJX7cYX4I" - }, - { - "title": "Cat Burns - Go (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "t1hrNunyUBU" - }, - { - "title": "Vic Reeves & The Wonder Stuff - Dizzy - Karaoke Version from Zoom Karaoke", - "id": "iBhg9-3MWx4" - }, - { - "title": "Pussycat - I Must Get You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "D7hj-RaLmfk" - }, - { - "title": "Madonna - Into The Groove - Karaoke Version from Zoom Karaoke", - "id": "Emil_NOHohA" - }, - { - "title": "Pussycat - Take Me - Karaoke Version from Zoom Karaoke", - "id": "AdV6Gb3oGag" - }, - { - "title": "Madonna - Vogue - Karaoke Version from Zoom Karaoke", - "id": "ju9vae-VfI8" - }, - { - "title": "London Boys - London Nights (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "MC_ZlcGVU9o" - }, - { - "title": "Girl In Red - We Fell In Love In October (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "owm_GZgstC0" - }, - { - "title": "Madonna - Cherish - Karaoke Version from Zoom Karaoke", - "id": "n9hPaZeZzrE" - }, - { - "title": "Kenny Dale - Two Hearts Tangled In Love - Karaoke Version from Zoom Karaoke", - "id": "ExP-hi8ieZM" - }, - { - "title": "Madonna - True Blue - Karaoke Version from Zoom Karaoke", - "id": "iIPh1cfY-Pc" - }, - { - "title": "Zac Brown Band - Same Boat (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "f3z-k_ShZ8c" - }, - { - "title": "Girl In Red - Girls (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "0t5HKIDKQ68" - }, - { - "title": "1927 - I'd Die For You - Karaoke Version from Zoom Karaoke", - "id": "eruuI4Do8rE" - }, - { - "title": "Another Level - Freak Me - Karaoke Version from Zoom Karaoke", - "id": "yHW7cSXLn6s" - }, - { - "title": "Girl In Red - I Wanna Be Your Girlfriend (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "FFH2mKOLs1c" - }, - { - "title": "Elvis Presley - The Thrill Of Your Love - Karaoke Version from Zoom Karaoke", - "id": "GJd1nfczVQQ" - }, - { - "title": "Little Mix - Secret Love Song, Part 2 - Karaoke Version from Zoom Karaoke", - "id": "3t1k0eygvAI" - }, - { - "title": "Girl In Red - Girls - Karaoke Version from Zoom Karaoke", - "id": "Ryr2ykoMcGQ" - }, - { - "title": "Billy Currington ft Willie Nelson - Hard To Be A Hippie (Without Backing Vocals) - Karaoke Version", - "id": "1efNBvK35dA" - }, - { - "title": "Double - The Captain Of Her Heart - Karaoke Version from Zoom Karaoke", - "id": "ttQrKB79QWU" - }, - { - "title": "1927 - To Love Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "W6lrO5sWqME" - }, - { - "title": "Pussycat - I Must Get You - Karaoke Version from Zoom Karaoke", - "id": "aDHSItYqNpw" - }, - { - "title": "Bad Company - Shooting Star - Karaoke Version from Zoom Karaoke", - "id": "RDFkTsUM8lw" - }, - { - "title": "Girl In Red - Bad Idea (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "VvI-fkQQgP8" - }, - { - "title": "Van Morrison - Bright Side Of The Road - Karaoke Version from Zoom Karaoke", - "id": "iXC-ih66HXQ" - }, - { - "title": "Brenda Lee - If You Love Me (Really Love Me) - Karaoke Version from Zoom Karaoke", - "id": "8eH67OFJIoM" - }, - { - "title": "Hothouse Flowers - I Can See Clearly Now - Karaoke Version from Zoom Karaoke", - "id": "DMI1F1dFr7k" - }, - { - "title": "1927 - Nothing I Can Do (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "j3zhd7uR4J4" - }, - { - "title": "Lorrie Morgan - Crying Time (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WdNS2nOB51k" - }, - { - "title": "Jax Jones feat MNEK - Where Did You Go (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "MNl7yia_Rf0" - }, - { - "title": "Freddie McGregor - Just Don't Want To Be Lonely - Karaoke Version from Zoom Karaoke", - "id": "GbPnnu7FaUg" - }, - { - "title": "Zac Brown Band - Same Boat - Karaoke Version from Zoom Karaoke", - "id": "Ih5-OwBhgFM" - }, - { - "title": "Harry Styles - As It Was (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cbilc58cdfs" - }, - { - "title": "Girl In Red - I Wanna Be Your Girlfriend - Karaoke Version from Zoom Karaoke", - "id": "0GNXI6J-hDQ" - }, - { - "title": "Mary Mary - Shackles (Praise You) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "OncogS_5uTE" - }, - { - "title": "1927 - To Love Me - Karaoke Version from Zoom Karaoke", - "id": "jsfjq7TlQG8" - }, - { - "title": "The Power Station - Some Like It Hot (Single Version) - Karaoke Version from Zoom Karaoke", - "id": "FYU28FRDtUs" - }, - { - "title": "The Marbles - Only One Woman - Karaoke Version from Zoom Karaoke", - "id": "Q5MUlwCna80" - }, - { - "title": "Chris Rea - Diamonds (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "mIRA4LLNaig" - }, - { - "title": "Another Level - Freak Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "pTlKgP3IQM8" - }, - { - "title": "1927 - Scars (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "aoNUm3jq414" - }, - { - "title": "Pussycat - Take Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8Fu7NTi-LLA" - }, - { - "title": "Binley Mega Chippy - Full Karaoke Version from Zoom Karaoke", - "id": "_9n1X7-b2_o" - }, - { - "title": "London Boys - London Nights - Karaoke Version from Zoom Karaoke", - "id": "F_oA3MYNJQA" - }, - { - "title": "Cash Cash feat Christina Perri - Hero - Karaoke Version from Zoom Karaoke", - "id": "j3zz5V11DVI" - }, - { - "title": "Big Country - Fields Of Fire (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "E7PcZgapc7g" - }, - { - "title": "Undercover - Never Let Her Slip Away (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "sRPHhDJ69N0" - }, - { - "title": "Crosby, Stills & Nash - Southern Cross - Karaoke Version from Zoom Karaoke", - "id": "d7KTfIGH5QY" - }, - { - "title": "Van Morrison - Bright Side Of The Road (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rW8CCjsoUPg" - }, - { - "title": "Girl In Red - Bad Idea - Karaoke Version from Zoom Karaoke", - "id": "WNhZGx54gys" - }, - { - "title": "Don Williams - The Answer - Karaoke Version from Zoom Karaoke", - "id": "u_pgXbdtatU" - }, - { - "title": "Beres Hammond - No Goodbye (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PRRaisDQ-Mc" - }, - { - "title": "Undercover - The Undercover Medley - Karaoke Version from Zoom Karaoke", - "id": "_WKR2jkwPzk" - }, - { - "title": "The Lotus Eaters - The First Picture Of You (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "mu6ull1mruQ" - }, - { - "title": "1927 - Scars - Karaoke Version from Zoom Karaoke", - "id": "ORqEgcz3jpM" - }, - { - "title": "The Bellamy Brothers - I Need More Of You - Karaoke Version from Zoom Karaoke", - "id": "OgBIgrerbeM" - }, - { - "title": "Big Country - Fields Of Fire - Karaoke Version from Zoom Karaoke", - "id": "DC2QGwHHaYQ" - }, - { - "title": "Megan McKenna - This - Karaoke Version from Zoom Karaoke", - "id": "8QGVr48oxVY" - }, - { - "title": "Ultravox - Love's Great Adventure (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "xYByrakK63I" - }, - { - "title": "Undercover - Never Let Her Slip Away - Karaoke Version from Zoom Karaoke", - "id": "0tNYAT_GXtE" - }, - { - "title": "Dionne Warwick - All The Love In The World (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "dYdGV6xSZJw" - }, - { - "title": "Bad Company - Shooting Star (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "CRWVLON2vtY" - }, - { - "title": "White Lies - Bigger Than Us - Karaoke Version from Zoom Karaoke", - "id": "RFpKTakoc9o" - }, - { - "title": "Si Cranstoun - Dance For Evermore - Karaoke Version from Zoom Karaoke", - "id": "Hb9KvTJpGPM" - }, - { - "title": "Acoustative Piano Karaoke - Running Up That Hill (Original Female Key) - Kate Bush - Zoom Karaoke", - "id": "hw0jkSBhtBM" - }, - { - "title": "Westlife - My Hero - Karaoke Version from Zoom Karaoke", - "id": "QNk9Zu1ACMc" - }, - { - "title": "Music Travel Love - The Only One - Karaoke Version from Zoom Karaoke", - "id": "nUfFI7F24xQ" - }, - { - "title": "Lorrie Morgan - Crying Time - Karaoke Version from Zoom Karaoke", - "id": "vw_fC05DMRw" - }, - { - "title": "1927 - Nothing I Can Do - Karaoke Version from Zoom Karaoke", - "id": "Pwg0j4c-YbY" - }, - { - "title": "Jax Jones feat MNEK - Where Did You Go - Karaoke Version from Zoom Karaoke", - "id": "6Im50wqxMUo" - }, - { - "title": "Dove Cameron - Boyfriend (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "wbjlzDYuFus" - }, - { - "title": "Jimmy Cliff - Now And Forever (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "J8QNcreNW-M" - }, - { - "title": "Freddie McGregor - Push Come To Shove (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "QxQWsD9AFC8" - }, - { - "title": "Dionne Warwick - All The Love In The World - Karaoke Version from Zoom Karaoke", - "id": "g1-oISjuJ7A" - }, - { - "title": "Fleetwood Mac - Beautiful Child (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "7kFux_Y0DiM" - }, - { - "title": "Gary Puckett & The Union Gap - Young Girl/Lady Willpower (Medley) - Karaoke Version from Zoom", - "id": "qA9T5_3J1sE" - }, - { - "title": "Mary Mary - Shackles (Praise You) - Karaoke Version from Zoom Karaoke", - "id": "nFUMp7xmtBI" - }, - { - "title": "Mimi Webb - House On Fire (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "VkuapPsmFto" - }, - { - "title": "Double - The Captain Of Her Heart (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "LjGTyaFokH4" - }, - { - "title": "Meghan Trainor - Title - Karaoke Version from Zoom Karaoke", - "id": "1Z9lNzh1TEQ" - }, - { - "title": "Billy Currington feat Willie Nelson - Hard To Be A Hippie - Karaoke Version from Zoom Karaoke", - "id": "T86sPulGstg" - }, - { - "title": "White Lies - Bigger Than Us (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZKThpwIveaU" - }, - { - "title": "Mimi Webb - House On Fire - Karaoke Version from Zoom Karaoke", - "id": "Fx6GG9RyK5Q" - }, - { - "title": "Dove Cameron - Boyfriend - Karaoke Version from Zoom Karaoke", - "id": "VMGRnsfC3eY" - }, - { - "title": "Interpol - Obstacle 1 - Karaoke Version from Zoom Karaoke", - "id": "0RPkL8IM7IU" - }, - { - "title": "Fleetwood Mac - Beautiful Child - Karaoke Version from Zoom Karaoke", - "id": "c5dUlxPHpBU" - }, - { - "title": "Oasis - Idler's Dream (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8RJO8LuD3E8" - }, - { - "title": "Jimmy Cliff - Now And Forever - Karaoke Version from Zoom Karaoke", - "id": "3Y12A4m1BII" - }, - { - "title": "Si Cranstoun - Dance For Evermore (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "KFkNmd7Gav8" - }, - { - "title": "Music Travel Love - The Only One (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "IR2FnhqDfC0" - }, - { - "title": "Westlife - My Hero (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "AOtcblvc2FQ" - }, - { - "title": "Ultravox - Love's Great Adventure - Karaoke Version from Zoom Karaoke", - "id": "pjGiDhAtuEg" - }, - { - "title": "Promises - Baby It's You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "uN7ntCmgM3M" - }, - { - "title": "The Lotus Eaters - The First Picture Of You - Karaoke Version from Zoom Karaoke", - "id": "djqPDuSqs7A" - }, - { - "title": "Chantal Kreviazuk - Feels Like Home (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "O7_DNc98ROU" - }, - { - "title": "White Lies - Hold Back Your Love - Karaoke Version from Zoom Karaoke", - "id": "ctdaBluaVCM" - }, - { - "title": "Freddie McGregor - Push Come To Shove - Karaoke Version from Zoom Karaoke", - "id": "8WmbVqggMKs" - }, - { - "title": "Megan McKenna - This (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cQ17HdF-4kg" - }, - { - "title": "Billy Fury - The Billy Fury Medley - Karaoke Version from Zoom Karaoke", - "id": "Efrgezdz_x8" - }, - { - "title": "Lauren Spencer Smith - Fingers Crossed (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "4K5rjlJX8ms" - }, - { - "title": "White Lies - Hold Back Your Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZP3XkGNlGic" - }, - { - "title": "Black Lace - The Black Lace Medley - Karaoke Version from Zoom Karaoke", - "id": "YBCqpNTyPXQ" - }, - { - "title": "Promises - Baby It's You - Karaoke Version from Zoom Karaoke", - "id": "TWW6qGgtZPs" - }, - { - "title": "The Bellamy Brothers - I Need More Of You (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "sLPzRHz4U98" - }, - { - "title": "Beres Hammond - No Goodbye - Karaoke Version from Zoom Karaoke", - "id": "ZnCeUlkkEes" - }, - { - "title": "Cash Cash feat Christina Perri - Hero (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "JC2odtPvNVA" - }, - { - "title": "Becky Hill & Galantis - Run (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "w1FMWZ7lgcY" - }, - { - "title": "Sam Ryder - Space Man (UK Eurovision Entry 2022) - Karaoke Version from Zoom Karaoke", - "id": "3LWhKTjM2gY" - }, - { - "title": "Sam Ryder - Space Man (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SaMXoGoUPx0" - }, - { - "title": "Smokie - Living Next Door To Alice (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "0JSnxsIsKjw" - }, - { - "title": "Undercover - Baker Street - Karaoke Version from Zoom Karaoke", - "id": "Wzvo_Lvwwzc" - }, - { - "title": "Chris Rea - Diamonds - Karaoke Version from Zoom Karaoke", - "id": "6rikl7QZfFQ" - }, - { - "title": "Ed Sheeran - The Joker And The Queen - Karaoke Version from Zoom Karaoke", - "id": "QKyjL-mGRXs" - }, - { - "title": "Kenny Dale - Red Hot Memory (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "mjlJ6-sEboc" - }, - { - "title": "Lauren Spencer-Smith - Fingers Crossed - Karaoke Version from Zoom Karaoke", - "id": "f_Ko3yWUMuU" - }, - { - "title": "Encanto - What Else Can I Do - Karaoke Version from Zoom Karaoke", - "id": "W0WnhyJ6zXQ" - }, - { - "title": "Camila Cabello feat Ed Sheeran - Bam Bam - Karaoke Version from Zoom Karaoke", - "id": "n27snzdwfLs" - }, - { - "title": "Charlie Puth - Light Switch (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "klrvgRxDp_E" - }, - { - "title": "John Lennon - Borrowed Time - Karaoke Version from Zoom Karaoke", - "id": "SMMMYxjpNoI" - }, - { - "title": "The Marbles - Only One Woman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "InhGOzXH-Bc" - }, - { - "title": "Freddie McGregor - Just Don't Want To Be Lonely (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "CH6dfVhHNUI" - }, - { - "title": "Becky Hill & Galantis - Run - Karaoke Version from Zoom Karaoke", - "id": "pqfu-_whsFY" - }, - { - "title": "The Drifters - There Goes My Baby (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8QvHhAl0HR8" - }, - { - "title": "Alvin Stardust - The Alvin Stardust Medley - Karaoke Version from Zoom Karaoke", - "id": "J5s3mMbZ1ds" - }, - { - "title": "Karen Boddington & Mark Williams - Theme From Home And Away - Karaoke Version from Zoom Karaoke", - "id": "c_3-IZweGzk" - }, - { - "title": "Oasis - Idler's Dream - Karaoke Version from Zoom Karaoke", - "id": "Q91xZUrBHKg" - }, - { - "title": "Chantal Kreviazuk - Feels Like Home - Karaoke Version from Zoom Karaoke", - "id": "8kuUvlo1WBI" - }, - { - "title": "Girl In Red - We Fell In Love In October - Karaoke Version from Zoom Karaoke", - "id": "jY6e214xPgY" - }, - { - "title": "White Lies - There Goes Our Love Again - Karaoke Version from Zoom Karaoke", - "id": "vqaOzhN9PrU" - }, - { - "title": "Aztec Camera - Oblivious (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "NJVh93XPn-M" - }, - { - "title": "Demis Roussos - Happy To Be On An Island In The Sun (Without Backing Vocals) - Karaoke Version", - "id": "A68BiGfaxe0" - }, - { - "title": "Demis Roussos - Happy To Be On An Island In The Sun - Karaoke Version from Zoom Karaoke", - "id": "4kRn6ULaThA" - }, - { - "title": "Aztec Camera - Oblivious - Karaoke Version from Zoom Karaoke", - "id": "0HYxxJX40pk" - }, - { - "title": "The Drifters - There Goes My Baby - Karaoke Version from Zoom Karaoke", - "id": "2py0wOzIKeo" - }, - { - "title": "Kenny Dale - Red Hot Memory - Karaoke Version from Zoom Karaoke", - "id": "5PIDvygEB2s" - }, - { - "title": "Lost Frequencies & Calum Scott - Where Are You Now (Without Backing Vocals) - Karaoke Version", - "id": "yH0N8F7ONWc" - }, - { - "title": "Jean Adebambo - Paradise - Karaoke Version from Zoom Karaoke", - "id": "vOFwWs2nkX4" - }, - { - "title": "Jason Derulo - Ridin' Solo - Karaoke Version from Zoom Karaoke", - "id": "r8r77ONtLyQ" - }, - { - "title": "George Ezra - Anyone For You - Karaoke Version from Zoom Karaoke", - "id": "qKw_Dn1ptPk" - }, - { - "title": "George Ezra - Anyone For You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "poJgkpLo2cc" - }, - { - "title": "Bastille - Shut Off The Lights - Karaoke Version from Zoom Karaoke", - "id": "owsnhrlVVK4" - }, - { - "title": "Liam Gallagher - Everything's Electric (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nTyrNSWn0eY" - }, - { - "title": "London Boys - Requiem - Karaoke Version from Zoom Karaoke", - "id": "l7x0EFrqmlw" - }, - { - "title": "Charli XCX feat Rina Sawayama - Beg For You (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "gksgBsMaTOs" - }, - { - "title": "Bastille - Shut Off The Lights (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "aAaR3KkF3CE" - }, - { - "title": "London Boys - Requiem (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PVDPJXhGPrs" - }, - { - "title": "Lost Frequencies & Calum Scott - Where Are You Now - Karaoke Version from Zoom Karaoke", - "id": "HxunkymernE" - }, - { - "title": "The Weeknd - Sacrifice - Karaoke Version from Zoom Karaoke", - "id": "Hk-WlviDbgc" - }, - { - "title": "Liam Gallagher - Everything's Electric - Karaoke Version from Zoom Karaoke", - "id": "Bh8NhCl0p3o" - }, - { - "title": "The Weeknd - Sacrifice (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-XHKXjy8UTA" - }, - { - "title": "Jean Adebambo - Paradise (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-SElm-ZVZ_U" - }, - { - "title": "The Mighty Wah - The Story Of The Blues (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "p2Yxi6DvMMU" - }, - { - "title": "Justin Bieber - Ghost (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hH1kjCL_Y_k" - }, - { - "title": "Justin Bieber - Ghost - Karaoke Version from Zoom Karaoke", - "id": "C0LYGmqp4EM" - }, - { - "title": "Ella Henderson - Brave (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "pHpV8dWI5Kg" - }, - { - "title": "Ella Henderson - Brave - Karaoke Version from Zoom Karaoke", - "id": "ErP6LyRqfnc" - }, - { - "title": "John Mayer - Wild Blue - Karaoke Version from Zoom Karaoke", - "id": "Q5SidB6MuUE" - }, - { - "title": "Encanto - Waiting On A Miracle - Karaoke Version from Zoom Karaoke", - "id": "LCRrIVtCQm4" - }, - { - "title": "Andy Williams - Happy Heart (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kL3Y4-cu-5c" - }, - { - "title": "Andy Williams - Happy Heart - Karaoke Version from Zoom Karaoke", - "id": "Hm2IGubqULY" - }, - { - "title": "The O'Jays - Used Ta Be My Girl - Karaoke Version from Zoom Karaoke", - "id": "yBe1v09k454" - }, - { - "title": "The O'Jays - Used Ta Be My Girl (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "D7VrY0tm028" - }, - { - "title": "Mikey Spice - I Am I Said - Karaoke Version from Zoom Karaoke", - "id": "dNcc7ckR97I" - }, - { - "title": "Mikey Spice - I Am I Said (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "O9548xqti0s" - }, - { - "title": "The KLF feat Tammy Wynette - Justified & Ancient (Without Backing Vocals) - Karaoke Version", - "id": "_fST2m03tnQ" - }, - { - "title": "The KLF feat Tammy Wynette - Justified & Ancient - Karaoke Version from Zoom Karaoke", - "id": "5VVvdOgJE8A" - }, - { - "title": "Clay Walker - I'd Love To Be Your Last - Karaoke Version from Zoom Karaoke", - "id": "jHJOZcipMaE" - }, - { - "title": "John Mayer - Wild Blue (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2eVflk4Se9o" - }, - { - "title": "Encanto - The Family Madrigal - Karaoke Version from Zoom Karaoke", - "id": "fq5VJ20EhsU" - }, - { - "title": "The Mighty Wah - The Story Of The Blues - Karaoke Version from Zoom Karaoke", - "id": "xtFwPNRiUHo" - }, - { - "title": "Chris Rea - There She Goes (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1p9Dyfpp6AE" - }, - { - "title": "Chris Rea - There She Goes - Karaoke Version from Zoom Karaoke", - "id": "JnkMVrKs2pw" - }, - { - "title": "Thompson Twins - We Are Detective (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qfOTr0q2iQ4" - }, - { - "title": "Thompson Twins - We Are Detective - Karaoke Version from Zoom Karaoke", - "id": "kpAJLJyzFdo" - }, - { - "title": "Tracy Chapman - All That You Have Is Your Soul -", - "id": "VWQl-UNdXnY" - }, - { - "title": "Wet Wet Wet - All I Want (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_HpleHKueoc" - }, - { - "title": "Modern English - I Melt With You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vpdDvJvj79U" - }, - { - "title": "Modern English - I Melt With You - Karaoke Version from Zoom Karaoke", - "id": "J57DFEuhwVg" - }, - { - "title": "Hall & Oates - She's Gone - Karaoke Version from Zoom Karaoke", - "id": "3o-VfvaYATE" - }, - { - "title": "Wet Wet Wet - All I Want - Karaoke Version from Zoom Karaoke", - "id": "ajRcdX6s5kg" - }, - { - "title": "Morrissey - November Spawned A Monster (Without SFX in Instrumental) - Karaoke Version from Zoom", - "id": "_8Psmbwf1rw" - }, - { - "title": "Morrissey - November Spawned A Monster - Karaoke Version from Zoom Karaoke", - "id": "EW14LFsQYz4" - }, - { - "title": "Free - My Brother Jake - Karaoke Version from Zoom Karaoke", - "id": "-LLzFtp1Svs" - }, - { - "title": "Kooman & Dimond - Lost In The Waves (Female Key) - Karaoke Version from Zoom Karaoke", - "id": "lZjv7De8KyQ" - }, - { - "title": "Kooman & Dimond - Lost In The Waves (Original Male Key) - Karaoke Version from Zoom Karaoke", - "id": "WSGLE6u8eEY" - }, - { - "title": "Tracy Chapman - Talkin' 'Bout A Revolution - Karaoke Version from Zoom Karaoke", - "id": "oR-QRrAZw0Y" - }, - { - "title": "Adele - I Can't Make You Love Me - Karaoke Version from Zoom Karaoke", - "id": "x7RUzkMrpVE" - }, - { - "title": "The Bangles - The Bangles Medley - Karaoke Version from Zoom Karaoke", - "id": "VcQN5tgzSUI" - }, - { - "title": "Gene Pitney - The Gene Pitney Medley (Something's Gotten/Pity/Tulsa) - Karaoke Version from Zoom", - "id": "vK-nvouyT88" - }, - { - "title": "The Searchers - What Have They Done To The Rain - Karaoke Version from Zoom Karaoke", - "id": "gulyTU9KVZw" - }, - { - "title": "The Searchers - Take It Or Leave It - Karaoke Version from Zoom Karaoke", - "id": "2_eC3yHb_M8" - }, - { - "title": "Tracy Chapman - Crossroads - Karaoke Version from Zoom Karaoke", - "id": "MV78biQto8w" - }, - { - "title": "The Searchers - Someday We're Gonna Love Again - Karaoke Version from Zoom Karaoke", - "id": "dvszb9rBK6Y" - }, - { - "title": "Adele - Rumour Has It - Karaoke Version from Zoom Karaoke", - "id": "MNpvkE2I14I" - }, - { - "title": "Adele - Turning Tables - Karaoke Version from Zoom Karaoke", - "id": "r6OS7TFftdI" - }, - { - "title": "United Kingdolls - UK Hun (Drag Race) (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "mipqdQRn_6I" - }, - { - "title": "Adele - Make You Feel My Love - Karaoke Version from Zoom Karaoke", - "id": "_xA8tw6gSOA" - }, - { - "title": "United Kingdolls - UK Hun (from Ru Paul's Drag Race UK) - Karaoke Version from Zoom Karaoke", - "id": "Cd9mawP2VGw" - }, - { - "title": "Adele - Lovesong - Karaoke Version from Zoom Karaoke", - "id": "CByN2O4h9nQ" - }, - { - "title": "Hall & Oates - Say It Isn't So (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZsWNym9kAlY" - }, - { - "title": "Hall & Oates - Say It Isn't So - Karaoke Version from Zoom Karaoke", - "id": "1lfJm-PnOv4" - }, - { - "title": "Saint PHNX - Happy Place - Karaoke Version from Zoom Karaoke", - "id": "oekv8P2Ksk4" - }, - { - "title": "10cc - The 10cc Medley (Dreadlock/Things We Do/Rubber Bullets) - Karaoke Version from Zoom Karaoke", - "id": "37YMsz-U-XY" - }, - { - "title": "Machine Gun Kelly, Yungblud & Travis Barker - I Think I'm Okay (Clean) - Karaoke Version from Zoom", - "id": "g5PqnLYUd1g" - }, - { - "title": "Wings - Listen To What The Man Said (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "dooEU8bA_04" - }, - { - "title": "Wings - Listen To What The Man Said - Karaoke Version from Zoom Karaoke", - "id": "ZUW13rhGPr8" - }, - { - "title": "Sam Fender - Seventeen Going Under (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "5OlRnNoQamY" - }, - { - "title": "Sam Fender - Seventeen Going Under - Karaoke Version from Zoom Karaoke", - "id": "pUVfJwbb8e4" - }, - { - "title": "Gayle - ABCDEFU - Karaoke Version from Zoom Karaoke", - "id": "lL1vixFF8Rc" - }, - { - "title": "Gayle - ABCDEFU (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "l4GTgRSFXRw" - }, - { - "title": "Benson Boone - Ghost Town (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kxhfR2biw3I" - }, - { - "title": "Benson Boone - Ghost Town - Karaoke Version from Zoom Karaoke", - "id": "Lu24hmvCb1s" - }, - { - "title": "The Traveling Wilburys - She's My Baby - Karaoke Version from Zoom Karaoke", - "id": "m-_h3N8FeeQ" - }, - { - "title": "The Traveling Wilburys - She's My Baby (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "g5WE8g4wNw8" - }, - { - "title": "Tenacious D - Fuck Her Gently (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jULcuw4z578" - }, - { - "title": "Tenacious D - Fuck Her Gently - Karaoke Version from Zoom Karaoke", - "id": "QqMaucK9rFM" - }, - { - "title": "Machine Gun Kelly, Yungblud & Travis Barker - I Think I'm Okay (Clean Without BVs) - Karaoke Version", - "id": "tLkwyknqLmE" - }, - { - "title": "Machine Gun Kelly, Yungblud & Travis Barker - I Think I'm Okay (Explicit) - Karaoke Version", - "id": "kJqWckBLs8Q" - }, - { - "title": "Machine Gun Kelly, Yungblud & Travis Barker - I Think I'm Okay (Explicit Without BVs) - Karaoke", - "id": "ENZxmoL945w" - }, - { - "title": "Tracy Chapman - Bang Bang Bang - Karaoke Version from Zoom Karaoke", - "id": "wXhL4Yncbkk" - }, - { - "title": "Adele - I Drink Wine (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "zZyRGHCAJhs" - }, - { - "title": "Adele - I Drink Wine - Karaoke Version from Zoom Karaoke", - "id": "tPaOPqJkoDA" - }, - { - "title": "Elvis Presley - Trying To Get To You - Karaoke Version from Zoom Karaoke", - "id": "Flx9_ddCR1I" - }, - { - "title": "Adele - Can I Get It (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "K3roBlJgYos" - }, - { - "title": "Adele - Can I Get It - Karaoke Version from Zoom Karaoke", - "id": "NFI6sCZ9HjY" - }, - { - "title": "Kevin Bloody Wilson - Dilligaf (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vbGBiqotPQo" - }, - { - "title": "Kevin Bloody Wilson - Dilligaf - Karaoke Version from Zoom Karaoke", - "id": "ndEZKYoKoXM" - }, - { - "title": "Chris Norman - Gypsy Queen (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "MpeBpMUHZYc" - }, - { - "title": "Chris Norman - Gypsy Queen - Karaoke Version from Zoom Karaoke", - "id": "9xDbc0K0AZI" - }, - { - "title": "Demis Roussos - I'll Be Your Friend - Karaoke Version from Zoom Karaoke", - "id": "kcMelojD6Ig" - }, - { - "title": "Demis Roussos - I'll Be Your Friend (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1zcOfLqzf9k" - }, - { - "title": "The Maisonettes - Heartache Avenue (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "vsUVdlBq2IE" - }, - { - "title": "The Maisonettes - Heartache Avenue - Karaoke Version from Zoom Karaoke", - "id": "qlbOBh3BO6k" - }, - { - "title": "The Adventures - Broken Land (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "w20K93D6IWY" - }, - { - "title": "The Adventures - Broken Land - Karaoke Version from Zoom Karaoke", - "id": "8iAmMSvEMgw" - }, - { - "title": "Elvin Bishop - Fooled Around And Fell In Love - Karaoke Version from Zoom Karaoke", - "id": "fiDEtlIcC8w" - }, - { - "title": "Elvin Bishop - Fooled Around And Fell In Love (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "CfC8e0-KkaM" - }, - { - "title": "Dr Hook - Girls Can Get It (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "pfki-A9RJFo" - }, - { - "title": "Dr Hook - Girls Can Get It - Karaoke Version from Zoom Karaoke", - "id": "7YZvSOI0_Lw" - }, - { - "title": "Alicia Bridges - I Love The Night Life (Disco Round) - Karaoke Version from Zoom Karaoke", - "id": "upznfpKWoYQ" - }, - { - "title": "Alicia Bridges - I Love The Night Life (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Mlx3u4Hlwvc" - }, - { - "title": "Little River Band - Cool Change - Karaoke Version from Zoom Karaoke", - "id": "fnJ5-1G6YV0" - }, - { - "title": "Little River Band - Cool Change (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SpbIjDIh-5k" - }, - { - "title": "Patsy Cline - You Belong To Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nt3lZHQkIG0" - }, - { - "title": "Patsy Cline - You Belong To Me - Karaoke Version from Zoom Karaoke", - "id": "Uz8WNbN44Io" - }, - { - "title": "Harry Nilsson - Without Her - Karaoke Version from Zoom Karaoke", - "id": "RVjE-4HWkMk" - }, - { - "title": "Andrew Gold - Love Hurts (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "xkLvcDr-i0s" - }, - { - "title": "Patsy Cline - Leavin' On Your Mind - Karaoke Version from Zoom Karaoke", - "id": "YdeAty09VYk" - }, - { - "title": "Patsy Cline - Leavin' On Your Mind (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "RE3MVUZvnZ8" - }, - { - "title": "Kate Winslet - What If - Karaoke Version from Zoom Karaoke", - "id": "PUpODSvw5SY" - }, - { - "title": "Kate Winslet - What If (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PEqfKSJ0e7M" - }, - { - "title": "Liam Payne - Sunshine - Karaoke Version from Zoom Karaoke", - "id": "lzGOrVW293k" - }, - { - "title": "The Human League - Tell Me When - Karaoke Version from Zoom Karaoke", - "id": "c6c5cla3LQ8" - }, - { - "title": "Al Wilson - The Snake - Karaoke Version from Zoom Karaoke", - "id": "PwQgzOkQM9o" - }, - { - "title": "Liam Payne - Sunshine (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "FReLQnjLQ7M" - }, - { - "title": "The Human League - Tell Me When (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "B7EfMmJwPic" - }, - { - "title": "Jack Savoretti - Secret Life - Karaoke Version from Zoom Karaoke", - "id": "liyHRKWPTfg" - }, - { - "title": "Montserrat Caballรฉ - O Mio Babbino Caro - Karaoke Version from Zoom Karaoke", - "id": "ip8Ax_IzzHI" - }, - { - "title": "Anne Marie & Little Mix - Kiss My (Uh-Oh) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "yVjtoipYia0" - }, - { - "title": "Jack Savoretti - Secret Life (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "JNtmv1ef25U" - }, - { - "title": "Rush - Closer To The Heart - Karaoke Version from Zoom Karaoke", - "id": "xFPtT6sGch0" - }, - { - "title": "Neil Diamond - The Neil Diamond Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "oFd3OwysAV8" - }, - { - "title": "Anne Marie & Little Mix - Kiss My (Uh-Oh) - Karaoke Version from Zoom Karaoke", - "id": "nARQahnL1Tk" - }, - { - "title": "Modern Talking - Brother Louie (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fcVvo_CnGLw" - }, - { - "title": "Modern Talking - Brother Louie - Karaoke Version from Zoom Karaoke", - "id": "XZ9bhyFKy3M" - }, - { - "title": "Tones And I - Fly Away (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "7uv-EwYPkZo" - }, - { - "title": "Neil Diamond - The Neil Diamond Medley 3 - Karaoke Version from Zoom Karaoke", - "id": "jvlbcauU8sI" - }, - { - "title": "HRVY - Personal - Karaoke Version from Zoom Karaoke", - "id": "Ah9xAE9yN5c" - }, - { - "title": "HRVY - Personal (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "535eJD52UBw" - }, - { - "title": "KSI - Holiday (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "yNbaktcgjzM" - }, - { - "title": "KSI - Holiday - Karaoke Version from Zoom Karaoke", - "id": "KxQcc1Uegbw" - }, - { - "title": "Justin Wellington feat Small Jam - Iko Iko (My Bestie) (Without Backing Vocals) - Karaoke Version", - "id": "yVGCqTy3VKU" - }, - { - "title": "Justin Wellington feat Small Jam - Iko Iko (My Bestie) - Karaoke Version from Zoom Karaoke", - "id": "Hx6cXO1qeHo" - }, - { - "title": "Zac Brown Band - Island Song - Karaoke Version from Zoom Karaoke", - "id": "HApX-ssCMTo" - }, - { - "title": "Zac Brown Band - Island Song (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1J8ugEVCyG8" - }, - { - "title": "Mud - Lonely This Christmas - Karaoke Version from Zoom Karaoke", - "id": "FOdFl1fEIW8" - }, - { - "title": "Mud - Lonely This Christmas (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "DPcgujRu-F0" - }, - { - "title": "Silk Sonic - Skate (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "dRLwzZgLWfc" - }, - { - "title": "Katy B - Flowers (Acoustic Version) - Karaoke Version from Zoom Karaoke", - "id": "aK2oySisqwo" - }, - { - "title": "Silk Sonic - Skate - Karaoke Version from Zoom Karaoke", - "id": "RJTlagfrtdE" - }, - { - "title": "Aurora - Runaway (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "4q2vvhddgn0" - }, - { - "title": "Aurora - Runaway - Karaoke Version from Zoom Karaoke", - "id": "4PHS7p8ThrI" - }, - { - "title": "The Script - I Want It All (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "eLdAQl139t4" - }, - { - "title": "The Script - I Want It All - Karaoke Version from Zoom Karaoke", - "id": "QyqB-mp9cJQ" - }, - { - "title": "Andy Grammer - Don't Give Up On Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ejihD_Ztpto" - }, - { - "title": "Andy Grammer - Don't Give Up On Me - Karaoke Version from Zoom Karaoke", - "id": "NEjOTJHew6U" - }, - { - "title": "The Cult - Lil' Devil - Karaoke Version from Zoom Karaoke", - "id": "vvYW3LKPZRU" - }, - { - "title": "The Cult - Lil' Devil (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qdnZiCa40Os" - }, - { - "title": "Niall Horan & Anne Marie - Everywhere (Without Backing Vocals But With Samples) - Karaoke Version", - "id": "g4RaCC_cY18" - }, - { - "title": "Little Mix - No (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ev07xuoSNGQ" - }, - { - "title": "Little Mix - No - Karaoke Version from Zoom Karaoke", - "id": "TdphxX5i3-s" - }, - { - "title": "Niall Horan & Anne Marie - Everywhere - Karaoke Version from Zoom Karaoke", - "id": "5mYdTPnzWJ4" - }, - { - "title": "Elvis Presley - You Gave Me A Mountain - Karaoke Version from Zoom Karaoke", - "id": "nEa_NRpch1E" - }, - { - "title": "Elvis Presley - You Gave Me A Mountain (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "IFC2-olwxUA" - }, - { - "title": "Becky Hill & David Guetta - Remember - Karaoke Version from Zoom Karaoke", - "id": "R7O_qY9n9F8" - }, - { - "title": "Becky Hill & David Guetta - Remember (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "F6egG9l-bv4" - }, - { - "title": "Dermot Kennedy - Better Days - Karaoke Version from Zoom Karaoke", - "id": "y7muINFcORQ" - }, - { - "title": "Dermot Kennedy - Better Days (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "9nUY78ghdNc" - }, - { - "title": "William Shakespeare - My Little Angel (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "t7w9hG2s8Bw" - }, - { - "title": "William Shakespeare - My Little Angel - Karaoke Version from Zoom Karaoke", - "id": "MVim4qHJFgQ" - }, - { - "title": "Peter Shelley - Love Me Love My Dog (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "n1v_MVgy6EE" - }, - { - "title": "Sam Smith - Fire On Fire - Karaoke Version from Zoom Karaoke", - "id": "2W1zesEqy6c" - }, - { - "title": "Elvis Presley - Fun In Acapulco - Karaoke Version from Zoom Karaoke", - "id": "i_75hAXCtbo" - }, - { - "title": "Elvis Presley - Fun In Acapulco (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "az0SL4W9Mbs" - }, - { - "title": "Smokie - San Francisco Bay - Karaoke Version from Zoom Karaoke", - "id": "uhGV9iJ1FbY" - }, - { - "title": "Smokie - San Francisco Bay (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-kBXkqn1SH4" - }, - { - "title": "The Beautiful South - The Beautiful South Medley (Female Songs) - Karaoke Version from Zoom Karaoke", - "id": "0uQX1Is3YGQ" - }, - { - "title": "Swedish House Mafia & The Weeknd - Moth To A Flame - Karaoke Version from Zoom Karaoke", - "id": "zaOXYMp3RyE" - }, - { - "title": "Swedish House Mafia & The Weeknd - Moth To A Flame (Without Backing Vocals) - Zoom Karaoke Version", - "id": "pneDnKG6rmQ" - }, - { - "title": "Grease/Frankie Avalon - Beauty School Dropout - Karaoke Version from Zoom Karaoke", - "id": "meyYuCnWJTg" - }, - { - "title": "Altered Images - I Could Be Happy - Karaoke Version from Zoom Karaoke", - "id": "nK2lpXpbPh8" - }, - { - "title": "Altered Images - I Could Be Happy (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fVh8C18ice8" - }, - { - "title": "Ed Sheeran - Be Right Now (Without Verse BVs) - Karaoke Version from Zoom Karaoke", - "id": "x6xXMpKvAtk" - }, - { - "title": "Ed Sheeran - Be Right Now (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ww0JNXCcx8Y" - }, - { - "title": "Looking Glass - Brandy (You're A Fine Girl) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "EOSKGbOalFw" - }, - { - "title": "Looking Glass - Brandy (You're A Fine Girl) - Karaoke Version from Zoom Karaoke", - "id": "A_xVYDuJelA" - }, - { - "title": "Olivia Rodrigo - Traitor - Karaoke Version from Zoom Karaoke", - "id": "dJX3wDa0zoc" - }, - { - "title": "Olivia Rodrigo - Traitor (With Oohs & Aahs BVs Only) - Karaoke Version from Zoom Karaoke", - "id": "ZG3HW77yT3o" - }, - { - "title": "Ed Sheeran - First Times (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cWlB7wVKFf0" - }, - { - "title": "Ed Sheeran - First Times - Karaoke Version from Zoom Karaoke", - "id": "GmNoT5yByIs" - }, - { - "title": "Lil Nas X feat Miley Cyrus - Am I Dreaming - Karaoke Version from Zoom Karaoke", - "id": "i5rD6mf2-Ag" - }, - { - "title": "Lil Nas X feat Miley Cyrus - Am I Dreaming (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "O9iIvYFwvZQ" - }, - { - "title": "Ed Sheeran - Overpass Graffiti - Karaoke Version from Zoom Karaoke", - "id": "co-De79WwU4" - }, - { - "title": "Ed Sheeran - Overpass Graffiti (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "p2UhwkPEiX0" - }, - { - "title": "Elvis Presley - Got A Lot O' Livin' To Do - Karaoke Version from Zoom Karaoke", - "id": "kO5vK9QROgw" - }, - { - "title": "Rod Stewart - One More Time (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "nZGZ0zwiO5M" - }, - { - "title": "Rod Stewart - One More Time - Karaoke Version from Zoom Karaoke", - "id": "zWbnKTfMSa0" - }, - { - "title": "Mimi Webb - 24/5 - Karaoke Version from Zoom Karaoke", - "id": "zUDf3-1Yndo" - }, - { - "title": "Mimi Webb - 24/5 (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ChfoncdqFF8" - }, - { - "title": "Billy Idol - Bitter Taste - Karaoke Version from Zoom Karaoke", - "id": "vMubNeEg9ZQ" - }, - { - "title": "Billy Idol - Bitter Taste (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WEAooVRDYrs" - }, - { - "title": "Jesy Nelson feat Nicki Minaj - Boyz - Karaoke Version from Zoom Karaoke", - "id": "J_eCPHwY-tg" - }, - { - "title": "Becky Hill & Topic - My Heart Goes (La Di Da) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "Gdm8AhCRRJU" - }, - { - "title": "Becky Hill & Topic - My Heart Goes (La Di Da) - Karaoke Version from Zoom Karaoke", - "id": "IMVw6POKyHw" - }, - { - "title": "Jesy Nelson feat Nicki Minaj - Boyz (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "bxp48L-Dr-8" - }, - { - "title": "Joel Corry & Jax Jones feat Charli XCX & Saweetie - Out Out - Karaoke Version from Zoom Karaoke", - "id": "UIGLZDZJH_c" - }, - { - "title": "Joel Corry & Jax Jones feat Charli XCX & Saweetie - Out Out (Without Backing Vocals)", - "id": "JJRSbZj4qoU" - }, - { - "title": "No Sax Please! Black - Wonderful Life - Backing Track Minus Saxophone - With Lyrics", - "id": "jG5MNcFfhHE" - }, - { - "title": "Camila Cabello - Don't Go Yet (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cMgTflB4Fyc" - }, - { - "title": "Prefab Sprout - When Love Breaks Down (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Qjl_B2hGY0o" - }, - { - "title": "Camila Cabello - Don't Go Yet - Karaoke Version from Zoom Karaoke", - "id": "n-v4hEXFP6c" - }, - { - "title": "Prefab Sprout - When Love Breaks Down - Karaoke Version from Zoom Karaoke", - "id": "sg5oUIHSs_o" - }, - { - "title": "Little Mix - Love Sweet Love - Karaoke Version from Zoom Karaoke", - "id": "zXPxDJuIWUs" - }, - { - "title": "Little Mix - Love Sweet Love (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ClFrlCwrUls" - }, - { - "title": "Mimi Webb - Dumb Love - Karaoke Version from Zoom Karaoke", - "id": "uLJwJXDyjh0" - }, - { - "title": "Mimi Webb - Dumb Love (Without Backing Vocals)", - "id": "haDfgMD9dZk" - }, - { - "title": "Shawn Mendes - In My Blood (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "io97XlUtx-Q" - }, - { - "title": "Shawn Mendes - In My Blood - Karaoke Version from Zoom Karaoke", - "id": "gMPFDm5nozw" - }, - { - "title": "Barrett Strong - Money (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "fsR9nLZtUp8" - }, - { - "title": "Barrett Strong - Money - Karaoke Version from Zoom Karaoke", - "id": "8t1nz4BKXdY" - }, - { - "title": "No Sax Please! Bob Seger - Turn The Page - Backing Track Minus Saxophone - With Lyrics", - "id": "rO7U1IexHUc" - }, - { - "title": "No Sax Please! Boomtown Rats - Rat Trap - Backing Track Minus Saxophone - With Lyrics", - "id": "UEGmm-qaEQ8" - }, - { - "title": "Galantis, David Guetta & Little Mix - Heartbreak Anthem (Without Backing Vocals) - Karaoke Version", - "id": "tdkXJG5tkt4" - }, - { - "title": "Galantis, David Guetta & Little Mix - Heartbreak Anthem - Karaoke Version from Zoom Karaoke", - "id": "DuW8LutiaZY" - }, - { - "title": "No Sax Please! Billy Joel - Just The Way You Are - Backing Track Minus Saxophone - With Lyrics", - "id": "lqj4f1V3qAI" - }, - { - "title": "Toni Braxton - He Wasn't Man Enough - Karaoke Version from Zoom Karaoke", - "id": "-Oil27bpcw4" - }, - { - "title": "Toni Braxton - He Wasn't Man Enough (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TwzcFFlOWAo" - }, - { - "title": "Ed Sheeran - Visiting Hours (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "efktxn9HAjk" - }, - { - "title": "Ed Sheeran - Visiting Hours - Karaoke Version from Zoom Karaoke", - "id": "9gktEfoA2m0" - }, - { - "title": "Olivia Rodrigo - Traitor (With Oohs & Aahs BVs Only) - Karaoke Version from Zoom Karaoke", - "id": "FFS8vQf3Z_g" - }, - { - "title": "Olivia Rodrigo - Traitor - Karaoke Version from Zoom Karaoke", - "id": "1a08nW2-N24" - }, - { - "title": "No Sax Please! Bill Withers - Just The Two Of Us - Backing Track Minus Saxophone - With Lyrics", - "id": "mRdGVRJuMFM" - }, - { - "title": "No Sax Please! Big Mountain - Baby I Love Your Way - Backing Track Minus Saxophone - With Lyrics", - "id": "bpUJxWCMyR8" - }, - { - "title": "No Sax Please! Big Bopper - Chantilly Lace - Backing Track Minus Saxophone - With Lyrics", - "id": "FC4AY30GzwM" - }, - { - "title": "Jessie J - Who You Are (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "CXTEPfx56uQ" - }, - { - "title": "Dusty Springfield - Take Another Little Piece Of My Heart - Karaoke Version from Zoom Karaoke", - "id": "rJ4tSltGgbg" - }, - { - "title": "Dusty Springfield - Take Another Little Piece Of My Heart (Without Backing Vocals) - Karaoke Version", - "id": "QgiGX5zsu8c" - }, - { - "title": "No Sax Please! Brenda Lee - Speak To Me Pretty - Backing Track Minus Saxophone - With Lyrics", - "id": "SLTn1rqW9ho" - }, - { - "title": "No Sax Please! Brenda Lee - Sweet Nothin's - Backing Track Minus Saxophone - With Lyrics", - "id": "1jdC_3dWvqM" - }, - { - "title": "Prefab Sprout - Bonny - Karaoke Version from Zoom Karaoke", - "id": "Eg9CQzkZipU" - }, - { - "title": "Prefab Sprout - Bonny (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "5u2eoIG_mpw" - }, - { - "title": "Calvin Harris feat Tom Grennan - By Your Side (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "o3BcsYFlTGs" - }, - { - "title": "Calvin Harris feat Tom Grennan - By Your Side - Karaoke Version from Zoom Karaoke", - "id": "2gkEehNoBpM" - }, - { - "title": "Jersey Boys Soundtrack - Beggin' (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "_Dh7zrsPwYY" - }, - { - "title": "Jersey Boys Soundtrack - Beggin' - Karaoke Version from Zoom Karaoke", - "id": "DwjfOXHGdOM" - }, - { - "title": "No Sax Please! Bruce Springsteen - Born To Run - Backing Track Minus Saxophone - With Lyrics", - "id": "NttYlTGSXkE" - }, - { - "title": "No Sax Please! Bruce Springsteen - Jungleland - Backing Track Minus Saxophone - With Lyrics", - "id": "BpkiNcB0S50" - }, - { - "title": "Fergie feat Ludacris - Glamorous - Karaoke Version from Zoom Karaoke", - "id": "QUv3exXLo-s" - }, - { - "title": "Fergie feat Ludacris - Glamorous (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Z7u3aJ397Es" - }, - { - "title": "No Sax Please! Chubby Checker - The Twist - Backing Track Minus Saxophone - With Lyrics", - "id": "sY7M4iAVljg" - }, - { - "title": "No Sax Please! Carole King - It's Too Late - Backing Track Minus Saxophone - With Lyrics", - "id": "OXF5GzazS2k" - }, - { - "title": "Lady Gaga - Million Reasons (Acoustic Version) (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "XEExftR-tDY" - }, - { - "title": "Lady Gaga - Million Reasons (Acoustic Version) - Karaoke Version from Zoom Karaoke", - "id": "6lEMHy1Bw9c" - }, - { - "title": "Joe Exotic - Here Kitty Kitty (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "n1MelDJm-l8" - }, - { - "title": "Joe Exotic - Here Kitty Kitty - Karaoke Version from Zoom Karaoke", - "id": "cYKso8w_Iv0" - }, - { - "title": "Bella Poarch - Build A Bitch (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "xhG3jQbxOXw" - }, - { - "title": "Toto - I'll Be Over You - Karaoke Version from Zoom Karaoke", - "id": "IAgKvz09njs" - }, - { - "title": "Toto - I'll Be Over You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "rZUH2hINvgk" - }, - { - "title": "Robbie Nevil - C'est La Vie (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1itLefOffDc" - }, - { - "title": "Robbie Nevil - C'est La Vie - Karaoke Version from Zoom Karaoke", - "id": "2AlYF37Tcn0" - }, - { - "title": "Gregory Abbott - Shake You Down - Karaoke Version from Zoom Karaoke", - "id": "v_NeN31_iqA" - }, - { - "title": "Gregory Abbott - Shake You Down (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "EXiFEcijUzk" - }, - { - "title": "The Spinners - It's A Shame (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "uwQMW3Y9J1Q" - }, - { - "title": "The Spinners - It's A Shame - Karaoke Version from Zoom Karaoke", - "id": "BnIEdFlpxyU" - }, - { - "title": "Thunder - Love Walked In (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cJ1t7mgLaF4" - }, - { - "title": "Thunder - Love Walked In - Karaoke Version from Zoom Karaoke", - "id": "LM9IBMLvmZw" - }, - { - "title": "Ed Sheeran - Baby One More Time (Britney Spears Acoustic Cover) - Karaoke Version from Zoom Karaoke", - "id": "8761H6LlbIA" - }, - { - "title": "Rascal Flatts - Life Is A Highway - Karaoke Version from Zoom Karaoke", - "id": "srueMKjbRhE" - }, - { - "title": "The Chi-Lites - Oh Girl - Karaoke Version from Zoom Karaoke", - "id": "zhQi2cXNHnU" - }, - { - "title": "The Chi-Lites - Oh Girl (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "upxj3rp4_Ss" - }, - { - "title": "Heart - All I Wanna Do Is Make Love To You - Karaoke Version from Zoom Karaoke", - "id": "w2IYfV15bRQ" - }, - { - "title": "Heart - All I Wanna Do Is Make Love To You (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "g1WYWzBHvOs" - }, - { - "title": "No Sax Please! ABC - Poison Arrow - Backing Track Minus Saxophone - With Lyrics", - "id": "we86iHtf660" - }, - { - "title": "Roy Orbison - I Drove All Night (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hUArLqBA2Bc" - }, - { - "title": "Roy Orbison - I Drove All Night - Karaoke Version from Zoom Karaoke", - "id": "ddNarRiBj_k" - }, - { - "title": "No Sax Please! Aretha Respect - Respect - Backing Track Minus Saxophone - With Lyrics", - "id": "Ek3JC2kfGY8" - }, - { - "title": "No Sax Please! The Beat - Mirror In The Bathroom - Backing Track Minus Saxophone - With Lyrics", - "id": "8Db5tyiGOSE" - }, - { - "title": "The Rolling Stones - Waiting On A Friend - Karaoke Version from Zoom Karaoke", - "id": "MA4W8rVIl7w" - }, - { - "title": "The Rolling Stones - Waiting On A Friend (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "DNoDcNDC7QM" - }, - { - "title": "Gary Benson - Don't Throw It All Away (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "bT1EOsBw9FI" - }, - { - "title": "Gary Benson - Don't Throw It All Away - Karaoke Version from Zoom Karaoke", - "id": "-mlpcwpvp-o" - }, - { - "title": "Christopher Cross - Never Be The Same (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "h4Go4A200Ic" - }, - { - "title": "Christopher Cross - Never Be The Same - Karaoke Version from Zoom Karaoke", - "id": "TM-9Qf5UULo" - }, - { - "title": "L.A.B. - In The Air - Karaoke Version from Zoom Karaoke", - "id": "iHfwbWC5wJM" - }, - { - "title": "L.A.B. - In The Air (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "bChXwv37EzE" - }, - { - "title": "Joe Exotic - Because You Love Me - Karaoke Version from Zoom Karaoke", - "id": "yVAA_f0WFxE" - }, - { - "title": "Joe Exotic - Because You Love Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "yl2zBDlDAa4" - }, - { - "title": "Dua Lipa - Love Again (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "IvbiqcGzhsU" - }, - { - "title": "Dua Lipa - Love Again - Karaoke Version from Zoom Karaoke", - "id": "iDPK-2dFpBM" - }, - { - "title": "Ed Sheeran - Bad Habits (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "yk4ka-nTPRY" - }, - { - "title": "Olivia Rodrigo - Deja Vu (Karaoke Version from Zoom Karaoke)", - "id": "yDlHBWqIpBs" - }, - { - "title": "Olivia Rodrigo - Deja Vu (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hQ1bfcIZlPE" - }, - { - "title": "Olivia Rodrigo - Happier (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Tyl0xkhhE6g" - }, - { - "title": "Ed Sheeran - Bad Habits - Karaoke Version from Zoom Karaoke", - "id": "EDwzME74o6Q" - }, - { - "title": "Olivia Rodrigo - Happier - Karaoke Version from Zoom Karaoke", - "id": "0SmxKUumEhc" - }, - { - "title": "Depeche Mode - New Life - Karaoke Version from Zoom Karaoke", - "id": "fYwqpVwUE6M" - }, - { - "title": "Depeche Mode - New Life (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "BElTSojEsLI" - }, - { - "title": "John Mayer - Last Train Home - Karaoke Version from Zoom Karaoke", - "id": "jkIDibKIzXM" - }, - { - "title": "Pink - All I Know So Far (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "KvDPLhOSM6M" - }, - { - "title": "Gerry Cinnamon - Ghost - Karaoke Version from Zoom Karaoke", - "id": "FyC-OrqJ1W8" - }, - { - "title": "Pink - All I Know So Far - Karaoke Version from Zoom Karaoke", - "id": "C3a3cRIxnx0" - }, - { - "title": "Gerry Cinnamon - Ghost (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "86FC0tiy_HU" - }, - { - "title": "John Mayer - Last Train Home (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "63EgSptF78g" - }, - { - "title": "Kaleo - Break My Baby - Karaoke Version from Zoom Karaoke", - "id": "3Kydf7wWZEY" - }, - { - "title": "Neil Young - Philadelphia (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "SxBsw0L7g1E" - }, - { - "title": "Linda Ronstadt - Long Long Time - Karaoke Version from Zoom Karaoke", - "id": "S6uuImj6wa4" - }, - { - "title": "The Rolling Stones - Anybody Seen My Baby - Karaoke Version from Zoom Karaoke", - "id": "KU-Fmd06tyw" - }, - { - "title": "The Rolling Stones - Anybody Seen My Baby (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "2qbXv7G6BG4" - }, - { - "title": "Neil Young - Philadelphia - Karaoke Version from Zoom Karaoke", - "id": "-MTNVDOCPZE" - }, - { - "title": "Grateful Dead - Truckin' - Karaoke Version from Zoom Karaoke", - "id": "qq-XxuGZTzU" - }, - { - "title": "Grateful Dead - Truckin' (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "zBz1NotRjx0" - }, - { - "title": "Curiosity Killed The Cat - Misfit (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "b18Sd48AGkI" - }, - { - "title": "Sniff 'n' The Tears - Driver's Seat - Karaoke Version from Zoom Karaoke", - "id": "6vU4o-oHteQ" - }, - { - "title": "Sniff 'n' The Tears - Driver's Seat (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cCNYVBe55Ns" - }, - { - "title": "Curiosity Killed The Cat - Misfit - Karaoke Version from Zoom Karaoke", - "id": "ICSi0E0oyg8" - }, - { - "title": "Judas Priest - Diamonds And Rust (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "xXhF-mu-6Ys" - }, - { - "title": "Judas Priest - Diamonds And Rust - Karaoke Version from Zoom Karaoke", - "id": "uGE6vLKujgc" - }, - { - "title": "Crosby, Stills, Nash & Young - Teach Your Children (Without Backing Vocals) - Karaoke Version from Z", - "id": "iQVR4mpTveY" - }, - { - "title": "Crosby, Stills, Nash & Young - Teach Your Children - Karaoke Version from Zoom Karaoke", - "id": "ahycyxySB60" - }, - { - "title": "England Dan & John Ford Coley - Nights Are Forever Without You (Without Backing Vocals)", - "id": "5rFFWzEcgOk" - }, - { - "title": "England Dan & John Ford Coley - Nights Are Forever Without You - Karaoke Version from Zoom Karaoke", - "id": "0EKiAMtnvtU" - }, - { - "title": "James Arthur - September - Karaoke Version from Zoom Karaoke", - "id": "qhbbAhEMvXQ" - }, - { - "title": "Griff - Black Hole - Karaoke Version from Zoom Karaoke", - "id": "le4eW-_1C5E" - }, - { - "title": "James Arthur - September (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "l9Y3AUN7F7Y" - }, - { - "title": "Griff - Black Hole (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "cGfjLosKD6U" - }, - { - "title": "The Beatles - A Hard Day's Night - Karaoke Version from Zoom Karaoke", - "id": "ljZgPRU8fy4" - }, - { - "title": "The Beatles - A Day In The Life - Karaoke Version from Zoom Karaoke", - "id": "esTV1ZIcDns" - }, - { - "title": "The Beatles - And I Love Her - Karaoke Version from Zoom Karaoke", - "id": "lNoVvpQIDWg" - }, - { - "title": "The Beatles - Come Together - Karaoke Version from Zoom Karaoke", - "id": "_pzmjv9XPZg" - }, - { - "title": "The Beatles - Act Naturally - Karaoke Version from Zoom Karaoke", - "id": "VbXaDgEihOM" - }, - { - "title": "The Beatles - Across The Universe - Karaoke Version from Zoom Karaoke", - "id": "znQ_854S64U" - }, - { - "title": "The Beatles - Can't Buy Me Love - Karaoke Version from Zoom Karaoke", - "id": "ujABeks4pB8" - }, - { - "title": "The Beatles - Back In The U.S.S.R. - Karaoke Version from Zoom Karaoke", - "id": "YrG6U4O8o40" - }, - { - "title": "The Beatles - All My Loving - Karaoke Version from Zoom Karaoke", - "id": "Fk4buZ3dChY" - }, - { - "title": "The Beatles - Blackbird - Karaoke Version from Zoom Karaoke", - "id": "CoW7yQ_ctS0" - }, - { - "title": "The Beatles - Day Tripper - Karaoke Version from Zoom Karaoke", - "id": "5G3Y9iizw_g" - }, - { - "title": "The Beatles - Don't Bother Me - Karaoke Version from Zoom Karaoke", - "id": "zTibqSjKeDs" - }, - { - "title": "The Beatles - From Me To You - Karaoke Version from Zoom Karaoke", - "id": "xhIAIAB9xEk" - }, - { - "title": "The Beatles - I Should Have Known Better - Karaoke Version from Zoom Karaoke", - "id": "tH6l1sFZdJ0" - }, - { - "title": "The Beatles - Hello Goodbye - Karaoke Version from Zoom Karaoke", - "id": "ro_s6xdDfYg" - }, - { - "title": "The Beatles - I'm Happy Just To Dance With You - Karaoke Version from Zoom Karaoke", - "id": "nE9s3RPEN_k" - }, - { - "title": "The Beatles - For You Blue - Karaoke Version from Zoom Karaoke", - "id": "_Gb1vIAsyBc" - }, - { - "title": "The Beatles - I Feel Fine - Karaoke Version from Zoom Karaoke", - "id": "Hu2c5X5VstY" - }, - { - "title": "The Beatles - Devil In Her Heart - Karaoke Version from Zoom Karaoke", - "id": "CMVs8AeyAbI" - }, - { - "title": "The Beatles - Hey Jude (Short Version) - Karaoke Version from Zoom Karaoke", - "id": "9bZTdq3kW4E" - }, - { - "title": "The Beatles - Anna (Go To Him) - Karaoke Version from Zoom Karaoke", - "id": "78KzrRaWD5U" - }, - { - "title": "The Beatles - Here Comes The Sun - Karaoke Version from Zoom Karaoke", - "id": "5IsJtEeFvPs" - }, - { - "title": "The Beatles - I'll Get You - Karaoke Version from Zoom Karaoke", - "id": "xEfR3XjFEQc" - }, - { - "title": "The Beatles - Hey Jude (Full Version) - Karaoke Version from Zoom Karaoke", - "id": "wiC8gC3NYo0" - }, - { - "title": "The Beatles - Another Girl - Karaoke Version from Zoom Karaoke", - "id": "wecTsYO8rec" - }, - { - "title": "The Beatles - In My Life - Karaoke Version from Zoom Karaoke", - "id": "tdX3i1GrYjY" - }, - { - "title": "The Beatles - Help! - Karaoke Version from Zoom Karaoke", - "id": "syT2eAP08Q0" - }, - { - "title": "The Beatles - It Won't Be Long (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "p2G-zZo7chs" - }, - { - "title": "The Beatles - Eleanor Rigby - Karaoke Version from Zoom Karaoke", - "id": "hvl17y5fHwc" - }, - { - "title": "The Beatles - I Saw Her Standing There - Karaoke Version from Zoom Karaoke", - "id": "hg-0UKmzcgc" - }, - { - "title": "The Beatles - Every Little Thing - Karaoke Version from Zoom Karaoke", - "id": "h-dtZZmPoUs" - }, - { - "title": "The Beatles - Nowhere Man - Karaoke Version from Zoom Karaoke", - "id": "cgN6sVqbTCY" - }, - { - "title": "The Beatles - Drive My Car - Karaoke Version from Zoom Karaoke", - "id": "UCWh6chGPHI" - }, - { - "title": "The Beatles - Girl - Karaoke Version from Zoom Karaoke", - "id": "TBBmXRMRRTQ" - }, - { - "title": "The Beatles - I'm Happy Just To Dance With You (No Backing Vocals) - Karaoke Version from Zoom", - "id": "P2FuaADMEO0" - }, - { - "title": "The Beatles - I'll Be Back - Karaoke Version from Zoom Karaoke", - "id": "F1ata-mJ3Yc" - }, - { - "title": "The Beatles - I Need You - Karaoke Version from Zoom Karaoke", - "id": "ETnDnGi0F7Q" - }, - { - "title": "The Beatles - Do You Want To Know A Secret - Karaoke Version from Zoom Karaoke", - "id": "Bhsx8Ag90JA" - }, - { - "title": "The Beatles - Eight Days A Week - Karaoke Version from Zoom Karaoke", - "id": "9lK_dYLRpfs" - }, - { - "title": "The Beatles - Baby It's You - Karaoke Version from Zoom Karaoke", - "id": "4gFuTwSPGwI" - }, - { - "title": "The Beatles - I Am The Walrus - Karaoke Version from Zoom Karaoke", - "id": "0BsMfhSRy_g" - }, - { - "title": "The Beatles - Norwegian Wood (This Bird Has Flown) - Karaoke Version from Zoom Karaoke", - "id": "2-h3N0sRMZo" - }, - { - "title": "The Beatles - Lucy In The Sky With Diamonds - Karaoke Version from Zoom Karaoke", - "id": "zSCSpJ_RBDQ" - }, - { - "title": "The Beatles - Money (That's What I Want) - Karaoke Version from Zoom Karaoke", - "id": "yBHqcvp_VKk" - }, - { - "title": "The Beatles - If I Fell (No Harmonies) - Karaoke Version from Zoom Karaoke", - "id": "tP7xytIVE1E" - }, - { - "title": "The Beatles - Please Mr Postman - Karaoke Version from Zoom Karaoke", - "id": "t-eD-pTS6L8" - }, - { - "title": "The Beatles - Little Child - Karaoke Version from Zoom Karaoke", - "id": "q32E9r_xB0U" - }, - { - "title": "The Beatles - Sgt Pepper's Lonely Hearts Club Band - Karaoke Version from Zoom Karaoke", - "id": "mcy6vGdbU7s" - }, - { - "title": "The Beatles - She Loves You - Karaoke Version from Zoom Karaoke", - "id": "befl4kX3OoA" - }, - { - "title": "The Beatles - I Will - Karaoke Version from Zoom Karaoke", - "id": "aZk9OOvp0lg" - }, - { - "title": "The Beatles - Taxman - Karaoke Version from Zoom Karaoke", - "id": "_YzvxdarSa0" - }, - { - "title": "The Beatles - It's Only Love - Karaoke Version from Zoom Karaoke", - "id": "XQ8O2iKQkZE" - }, - { - "title": "The Beatles - Love Me Do - Karaoke Version from Zoom Karaoke", - "id": "UKm60C-kPIs" - }, - { - "title": "The Beatles - She's Leaving Home - Karaoke Version from Zoom Karaoke", - "id": "TskyGS5d5F0" - }, - { - "title": "The Beatles - Strawberry Fields Forever - Karaoke Version from Zoom Karaoke", - "id": "S8e6LEQ5-8k" - }, - { - "title": "The Beatles - Lady Madonna - Karaoke Version from Zoom Karaoke", - "id": "Qmix5bFN5aQ" - }, - { - "title": "The Beatles - Sgt Pepper-With A Little Help From My Friends Medley - Karaoke Version from Zoom", - "id": "MMc0v_bCuuY" - }, - { - "title": "The Beatles - I Want To Hold Your Hand - Karaoke Version from Zoom Karaoke", - "id": "IwL3bhthQXA" - }, - { - "title": "The Beatles - I've Just Seen A Face - Karaoke Version from Zoom Karaoke", - "id": "HbIARMu_W14" - }, - { - "title": "The Beatles - If I Fell (With Harmonies) - Karaoke Version from Zoom Karaoke", - "id": "HXP6x3Dqy70" - }, - { - "title": "The Beatles - Revolution - Karaoke Version from Zoom Karaoke", - "id": "DvlKEI1YEYE" - }, - { - "title": "The Beatles - Penny Lane - Karaoke Version from Zoom Karaoke", - "id": "CbZeefLu_Mg" - }, - { - "title": "The Beatles - Something - Karaoke Version from Zoom Karaoke", - "id": "8o4BkxLXh2s" - }, - { - "title": "The Beatles - Michelle - Karaoke Version from Zoom Karaoke", - "id": "8aTjPCPDex0" - }, - { - "title": "The Beatles - Let It Be - Karaoke Version from Zoom Karaoke", - "id": "8MeGHWRQyag" - }, - { - "title": "The Beatles - Misery - Karaoke Version from Zoom Karaoke", - "id": "6hOqiCZosF4" - }, - { - "title": "The Beatles - It Won't Be Long - Karaoke Version from Zoom Karaoke", - "id": "5y40tKjO2nQ" - }, - { - "title": "The Beatles - Ob La Di, Ob La Da - Karaoke Version from Zoom Karaoke", - "id": "4YMdvUBHSD4" - }, - { - "title": "The Beatles - Please Please Me - Karaoke Version from Zoom Karaoke", - "id": "-6MvlJnYuE8" - }, - { - "title": "The Beatles - When I'm Sixty Four - Karaoke Version from Zoom Karaoke", - "id": "wa8HhWEd9XU" - }, - { - "title": "The Beatles - The Beatles Medley 3 - Karaoke Version from Zoom Karaoke", - "id": "u-ZI3DY6wnI" - }, - { - "title": "The Beatles - Paperback Writer - Karaoke Version from Zoom Karaoke", - "id": "rwqhn-z_Qq4" - }, - { - "title": "The Beatles - You've Really Got A Hold On Me - Karaoke Version from Zoom Karaoke", - "id": "rqGJE1T2HMk" - }, - { - "title": "The Beatles With Billy Preston - Get Back - Karaoke Version from Zoom Karaoke", - "id": "nzxkA_7OHK0" - }, - { - "title": "The Beatles - Yes It Is - Karaoke Version from Zoom Karaoke", - "id": "jons-GfrkmQ" - }, - { - "title": "The Beatles - This Boy (No Harmonies) - Karaoke Version from Zoom Karaoke", - "id": "frLMep4Iatc" - }, - { - "title": "The Beatles - The Ballad Of John And Yoko - Karaoke Version from Zoom Karaoke", - "id": "flZNlZXD5NY" - }, - { - "title": "The Beatles - This Boy - Karaoke Version from Zoom Karaoke", - "id": "fI-z653lYIw" - }, - { - "title": "The Beatles - Old Brown Shoe - Karaoke Version from Zoom Karaoke", - "id": "cqv4jFDivV0" - }, - { - "title": "The Beatles - The Beatles Medley 4 - Karaoke Version from Zoom Karaoke", - "id": "a9lXhuRfgGc" - }, - { - "title": "The Beatles - Thank You Girl - Karaoke Version from Zoom Karaoke", - "id": "Z_0nbsV0WF8" - }, - { - "title": "The Beatles - Things We Said Today - Karaoke Version from Zoom Karaoke", - "id": "SChaKoPuBfs" - }, - { - "title": "The Beatles - Ob La Di, Ob La Da (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "RwgkpT_R6q8" - }, - { - "title": "The Beatles - Words Of Love - Karaoke Version from Zoom Karaoke", - "id": "NfISCTy5Y1U" - }, - { - "title": "The Beatles - We Can Work It Out - Karaoke Version from Zoom Karaoke", - "id": "N5sXtEj3nJY" - }, - { - "title": "The Beatles - Octopus's Garden - Karaoke Version from Zoom Karaoke", - "id": "M__sfl1XRYQ" - }, - { - "title": "The Beatles - The Night Before - Karaoke Version from Zoom Karaoke", - "id": "M1Cfn38le-Q" - }, - { - "title": "The Beatles - Ticket To Ride - Karaoke Version from Zoom Karaoke", - "id": "L-1yYQfqGq8" - }, - { - "title": "The Beatles - The Long And Winding Road - Karaoke Version from Zoom Karaoke", - "id": "GgHwqVngLBs" - }, - { - "title": "The Beatles - The Beatles Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "ET4v6pv16J0" - }, - { - "title": "The Beatles - Tell Me What You See - Karaoke Version from Zoom Karaoke", - "id": "CTtVTnzwRj8" - }, - { - "title": "The Beatles - There's A Place - Karaoke Version from Zoom Karaoke", - "id": "9OwyWlBchTM" - }, - { - "title": "The Beatles - You've Got To Hide Your Love Away - Karaoke Version from Zoom Karaoke", - "id": "5ajFKHQimlM" - }, - { - "title": "The Beatles - You're Going To Lose That Girl - Karaoke Version from Zoom Karaoke", - "id": "3lLNeaU_Zyc" - }, - { - "title": "The Beatles - With A Little Help From My Friends - Karaoke Version from Zoom Karaoke", - "id": "3GWaIcqMqLk" - }, - { - "title": "The Beatles - Yesterday - Karaoke Version from Zoom Karaoke", - "id": "2DBjmM5ghCY" - }, - { - "title": "The Beatles - Yellow Submarine - Karaoke Version from Zoom Karaoke", - "id": "1ANevHinhpc" - }, - { - "title": "The Beatles - The Beatles Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "0_3kL_45Bqo" - }, - { - "title": "The Beatles - The Fool On The Hill - Karaoke Version from Zoom Karaoke", - "id": "-l5cUmPabPs" - }, - { - "title": "Olivia Rodrigo - Good 4 U - Karaoke Version from Zoom Karaoke", - "id": "ZoOU1WUZRuo" - }, - { - "title": "Olivia Rodrigo - Good 4 U (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "XrQmmFC_-LI" - }, - { - "title": "James Brown - Living In America - Karaoke Version from Zoom Karaoke", - "id": "UFkfbG_6vRU" - }, - { - "title": "James Brown - Living In America (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "II682bzE70Q" - }, - { - "title": "Duran Duran - Notorious (Without Verse Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "BYZ6KQC3Gf4" - }, - { - "title": "Duran Duran - Notorious - Karaoke Version from Zoom Karaoke", - "id": "X6njlzWKfCc" - }, - { - "title": "Survivor - I Can't Hold Back (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "WRNa1KwRUaE" - }, - { - "title": "Survivor - I Can't Hold Back - Karaoke Version from Zoom Karaoke", - "id": "M_3DWXAdHL4" - }, - { - "title": "Bruce Springsteen - Cover Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "dAaNn2Lih5Y" - }, - { - "title": "Bruce Springsteen - Cover Me - Karaoke Version from Zoom Karaoke", - "id": "RtsOCD_KT6o" - }, - { - "title": "Justin Bieber feat Giveon & Daniel Caesar - Peaches (Explicit Version) - Karaoke Version from Zoom", - "id": "aFSDqCkTucE" - }, - { - "title": "Justin Bieber feat Giveon & Daniel Caesar - Peaches (Without Backing Vocals) - Karaoke Version", - "id": "mjojSYoDNRo" - }, - { - "title": "Justin Bieber feat Giveon & Daniel Caesar - Peaches (Clean Version) - Karaoke Version from Zoom", - "id": "5-gn_f8KfiA" - }, - { - "title": "Kings Of Leon - Fans (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "FKgMnYsdH1E" - }, - { - "title": "Kings Of Leon - Fans - Karaoke Version from Zoom Karaoke", - "id": "D3zTk98Pj9I" - }, - { - "title": "Katy B feat Ms Dynamite - Lights On - Karaoke Version from Zoom Karaoke", - "id": "X17jbR9zf2E" - }, - { - "title": "Katy B feat Ms Dynamite - Lights On (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "PisF8SmNv5U" - }, - { - "title": "Blake Shelton - God's Country - Karaoke Version from Zoom Karaoke", - "id": "MNG87ilJZEI" - }, - { - "title": "Blake Shelton - God's Country (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "IY6Mmr8aZvc" - }, - { - "title": "London Grammar - How Does It Feel - Karaoke Version from Zoom Karaoke", - "id": "kUYszL8nBCs" - }, - { - "title": "London Grammar - How Does It Feel (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "jTtMYY0rw6w" - }, - { - "title": "Jewel - Sweet Temptation - Karaoke Version from Zoom Karaoke", - "id": "qhmtP2_KWkA" - }, - { - "title": "Jewel - Standing Still - Karaoke Version from Zoom Karaoke", - "id": "dtTkmCWN5Yc" - }, - { - "title": "Jewel - You Were Meant For Me - Karaoke Version from Zoom Karaoke", - "id": "KU05FfwFSkk" - }, - { - "title": "Neil Diamond - Let Me Take You In My Arms Again (Live Version Without Backing Vocals) - Zoom Karaoke", - "id": "Ym5jmxF6np8" - }, - { - "title": "Neil Diamond - Let Me Take You In My Arms Again (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "5Sw0zZ2EEHs" - }, - { - "title": "Paul McCartney - Here There And Everywhere (Broad Street Version) - Karaoke Version from Zoom", - "id": "CH6zExOhDP4" - }, - { - "title": "Ashe & Finneas - Till Forever Falls Apart - Karaoke Version from Zoom Karaoke", - "id": "xCRhlBDC0CM" - }, - { - "title": "Ashe & Finneas - Till Forever Falls Apart (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "5YJjsr7Gwgo" - }, - { - "title": "Doja Cat feat SZA - Kiss Me More (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Z0uW0BRYG38" - }, - { - "title": "Doja Cat feat SZA - Kiss Me More - Karaoke Version from Zoom Karaoke", - "id": "UbS-u55P2zg" - }, - { - "title": "Rag'n'Bone Man & Pink - Anywhere Away From Here - Karaoke Version from Zoom Karaoke", - "id": "8TwMPrytBso" - }, - { - "title": "Rag'n'Bone Man & Pink - Anywhere Away From Here (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "3uomkvFyfi4" - }, - { - "title": "Joel Corry, Raye & David Guetta - Bed - Karaoke Version from Zoom Karaoke", - "id": "FoRXlRTNRVM" - }, - { - "title": "Nicki Minaj - Starships (Explicit Lyrics) - Karaoke Version from Zoom Karaoke", - "id": "FLo1kgBG5gU" - }, - { - "title": "Stan Ridgway - Camouflage - Karaoke Version from Zoom Karaoke", - "id": "ozRj6Trdu_c" - }, - { - "title": "Brenda K Starr - Love Me Like The First Time (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "kCH3bIKQZnk" - }, - { - "title": "Brenda K Starr - Love Me Like The First Time - Karaoke Version from Zoom Karaoke", - "id": "2RMt0sV3Fro" - }, - { - "title": "The Hindley Street Country Club - I Don't Want To Talk About It (Without Backing Vocals) - Karaoke", - "id": "oiZQeSe_24c" - }, - { - "title": "The Hindley Street Country Club - I Don't Want To Talk About It - Karaoke Version from Zoom Karaoke", - "id": "Rx0_PMlc0x8" - }, - { - "title": "Tina Turner - River Deep Mountain High (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "i4wgnmIlBd0" - }, - { - "title": "Tina Turner - River Deep Mountain High (Lower Key -4 with No BVs) - Karaoke Version from Zoom", - "id": "cvy19Lwagys" - }, - { - "title": "Tina Turner - River Deep Mountain High (Lower Key -4) - Karaoke Version from Zoom Karaoke", - "id": "UHniCqGYQHI" - }, - { - "title": "The Marshall Tucker Band - Fire On The Mountain (Without Backing Vocals) - Karaoke Version from Zoom", - "id": "yNfPr_qitRc" - }, - { - "title": "The Marshall Tucker Band - Fire On The Mountain - Karaoke Version from Zoom Karaoke", - "id": "L2F8YUsaXWI" - }, - { - "title": "Lisa Stansfield - The Real Thing (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qhCRl6LnRuQ" - }, - { - "title": "Lisa Stansfield - The Real Thing - Karaoke Version from Zoom Karaoke", - "id": "ZzxpSgXnYqo" - }, - { - "title": "Commuter - Young Hearts (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "KjltWwGoE5A" - }, - { - "title": "Commuter - Young Hearts - Karaoke Version from Zoom Karaoke", - "id": "3A3cXdm0qLo" - }, - { - "title": "Steve Earle - Copperhead Road - Karaoke Version from Zoom Karaoke", - "id": "iqOBru-tg2U" - }, - { - "title": "The Stampeders - Sweet City Woman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "oTsmqrkY0ao" - }, - { - "title": "The Stampeders - Sweet City Woman - Karaoke Version from Zoom Karaoke", - "id": "K0TLtsGHPBw" - }, - { - "title": "Christina Milian - AM To PM - Karaoke Version from Zoom Karaoke", - "id": "fVgToJcBsmY" - }, - { - "title": "Sugababes - Freak Like Me - Karaoke Version from Zoom Karaoke", - "id": "P8X6ggWRD9k" - }, - { - "title": "Sugababes - Freak Like Me (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Emj-ODxhJhw" - }, - { - "title": "Miley Cyrus - Angels Like You - Karaoke Version from Zoom Karaoke", - "id": "RoUenCdrCRo" - }, - { - "title": "Miley Cyrus - Angels Like You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "N7cp11qR1fI" - }, - { - "title": "The Kid Laroi - Without You - Karaoke Version from Zoom Karaoke", - "id": "cdi_xguRnWM" - }, - { - "title": "Cliff Richard - Devil Woman (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "o8NwbFs2b3k" - }, - { - "title": "James Arthur - Medicine (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "x6jVdc38cmc" - }, - { - "title": "James Arthur - Medicine - Karaoke Version from Zoom Karaoke", - "id": "cIGfPaa61Po" - }, - { - "title": "Natural Ites & The Realistics - Picture On The Wall - Karaoke Version from Zoom Karaoke", - "id": "uoVUZDCAK4I" - }, - { - "title": "Natural Ites & The Realistics - Picture On The Wall (Without Backing Vocals) - Karaoke Version", - "id": "GRzrGa3ffXM" - }, - { - "title": "Ella Henderson & Tom Grennan - Let's Go Home Together - Karaoke Version from Zoom Karaoke", - "id": "_dg5WbGeq64" - }, - { - "title": "Ella Henderson & Tom Grennan - Let's Go Home Together (Without Backing Vocals) - Karaoke Version", - "id": "DsuZztpFdOQ" - }, - { - "title": "JoJo - Leave (Get Out) [Without Backing Vocals] - Karaoke Version from Zoom Karaoke", - "id": "UgeYr17u6q8" - }, - { - "title": "JoJo - Leave (Get Out) - Karaoke Version from Zoom Karaoke", - "id": "0x0ZyTdaSFk" - }, - { - "title": "Annie Lennox - Little Bird - Karaoke Version from Zoom Karaoke", - "id": "vfcuWFH2I_0" - }, - { - "title": "Annie Lennox - Little Bird (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Sf8oG1STuG4" - }, - { - "title": "Hot Chocolate - Every 1's A Winner - Karaoke Version from Zoom Karaoke", - "id": "TBCvHwt05xg" - }, - { - "title": "Hot Chocolate - Every 1's A Winner (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "A_lDpf5hN28" - }, - { - "title": "AC/DC - Who Made Who - Karaoke Version from Zoom Karaoke", - "id": "beTDb_l8irk" - }, - { - "title": "The Lumineers - Cleopatra - Karaoke Version from Zoom Karaoke", - "id": "jFoSkXRqUek" - }, - { - "title": "The Lumineers - Cleopatra (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2UcYJTXQajg" - }, - { - "title": "Skerryvore - Take My Hand - Karaoke Version from Zoom Karaoke", - "id": "f09mRb0FOPw" - }, - { - "title": "Teddy Pendergrass - The Whole Town's Laughing At Me (Without Backing Vocals) - Karaoke Version", - "id": "_EIc7pIEad4" - }, - { - "title": "Teddy Pendergrass - The Whole Town's Laughing At Me - Karaoke Version from Zoom Karaoke", - "id": "0hkEEyDbo_A" - }, - { - "title": "Lizzo - Truth Hurts (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "g47MKN1woQc" - }, - { - "title": "Justin Bieber - Hold On (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "YfZuPp_iUow" - }, - { - "title": "Justin Bieber - Hold On - Karaoke Version from Zoom Karaoke", - "id": "FSRQK7IpQ-M" - }, - { - "title": "Piper Rockelle - Butterflies - Karaoke Version from Zoom Karaoke", - "id": "fr0MWg7WtaM" - }, - { - "title": "Piper Rockelle - Butterflies (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "qLaYh2RP0IU" - }, - { - "title": "Gary Moore - Walking By Myself - Karaoke Version from Zoom Karaoke", - "id": "AuWI6Ciw30g" - }, - { - "title": "Meduza feat. Dermot Kennedy - Paradise - Karaoke Version from Zoom Karaoke", - "id": "WvBOo1GsRLk" - }, - { - "title": "Years And Years - It's A Sin (Piano Acoustic Version) - Karaoke Version from Zoom Karaoke", - "id": "PqAXyUPwxN8" - }, - { - "title": "Zara Larsson - Look What You've Done (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "riIRXk9keF0" - }, - { - "title": "Zara Larsson - Look What You've Done - Karaoke Version from Zoom Karaoke", - "id": "4yXXMFucGZY" - }, - { - "title": "The Kid Laroi - Without You (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "imhLdEr2ZZM" - }, - { - "title": "Silk Sonic - Leave The Door Open - Karaoke Version from Zoom Karaoke", - "id": "eBipf6Putcs" - }, - { - "title": "Silk Sonic - Leave The Door Open (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "8_DFjwrHx70" - }, - { - "title": "Gary Moore & Phil Lynott - Out In The Fields - Karaoke Version from Zoom Karaoke", - "id": "tNZG6bYEl9o" - }, - { - "title": "Lisa Stansfield - Change - Karaoke Version from Zoom Karaoke", - "id": "WiEIQFft5Jk" - }, - { - "title": "Michael Kiwanuka - Cold Little Heart - Karaoke Version from Zoom Karaoke", - "id": "8QNywoNIuAA" - }, - { - "title": "The Bluetones - Slight Return - Karaoke Version from Zoom Karaoke", - "id": "iurWIKgy3SM" - }, - { - "title": "Dua Lipa - We're Good - Karaoke Version from Zoom Karaoke", - "id": "zS7oFtVErq4" - }, - { - "title": "John Cafferty - Heart's On Fire - Karaoke Version from Zoom Karaoke", - "id": "alojHgThf9E" - }, - { - "title": "Tom Grennan - Little Bit Of Love - Karaoke Version from Zoom Karaoke", - "id": "wU85Htbudyw" - }, - { - "title": "Tiesto - The Business - Karaoke Version from Zoom Karaoke", - "id": "QAjRxaEiP-o" - }, - { - "title": "Rag'n'Bone Man - All You Ever Wanted - Karaoke Version from Zoom Karaoke", - "id": "h1LXjx6JEmA" - }, - { - "title": "Kings Of Leon - The Bandit - Karaoke Version from Zoom Karaoke", - "id": "7fG548NMGPA" - }, - { - "title": "Jason Derulo feat. Adam Levine - Lifestyle - Karaoke Version from Zoom Karaoke", - "id": "VO9VLXpm1Sw" - }, - { - "title": "Forest Blakk - If You Love Her - Karaoke Version from Zoom Karaoke", - "id": "H2CvHbUPvL4" - }, - { - "title": "Roy Orbison - Leah - Karaoke Version from Zoom Karaoke", - "id": "eycsFjY3rlw" - }, - { - "title": "Strawbs - Lay Down - Karaoke Version from Zoom Karaoke", - "id": "PRauPnVTx_I" - }, - { - "title": "Gary Moore - One Day - Karaoke Version from Zoom Karaoke", - "id": "giVqZG9aLn0" - }, - { - "title": "OMD - Sailing On The Seven Seas - Karaoke Version from Zoom Karaoke", - "id": "e1Oz2OvgO64" - }, - { - "title": "Marshall Crenshaw - Crying, Waiting, Hoping - Karaoke Version from Zoom Karaoke", - "id": "Gku8o7kxkP4" - }, - { - "title": "Nathan Evans - Wellerman (Sea Shanty) - Karaoke Version from Zoom Karaoke", - "id": "9ajb9pPVQBM" - }, - { - "title": "Gary Moore - Still Got The Blues - Karaoke Version from Zoom Karaoke", - "id": "12YZ1jyX8-s" - }, - { - "title": "Vicki Sue Robinson - Turn The Beat Around - Karaoke Version from Zoom Karaoke", - "id": "RowfOyyFJps" - }, - { - "title": "Grand Corps Malade & Camille Lellouche - Mais Je T'aime - Karaoke Version from Zoom Karaoke", - "id": "gqvW1nDxS5k" - }, - { - "title": "Redbone - Come And Get Your Love - Karaoke Version from Zoom Karaoke", - "id": "Jv1lHlc1iKw" - }, - { - "title": "John Holt - No Place Like Home - Karaoke Version from Zoom Karaoke", - "id": "wr5P995YE0k" - }, - { - "title": "Mama Cass Elliot - New World Coming - Karaoke Version from Zoom Karaoke", - "id": "-eMysQRb0lw" - }, - { - "title": "Gregory Porter - Hey Laura - Karaoke Version from Zoom Karaoke", - "id": "HMv1uCp5tqU" - }, - { - "title": "Tom Walker - Rapture - Karaoke Version from Zoom Karaoke", - "id": "_GRGyC2lbes" - }, - { - "title": "Acoustative Piano Karaoke - Don't Be So Hard On Yourself - Jess Glynne (With Guide Vocal)", - "id": "RXkHPjEKpe8" - }, - { - "title": "Acoustative Piano Karaoke - Don't Be So Hard On Yourself - Jess Glynne (Original Female Key)", - "id": "ASIkTuG0dD4" - }, - { - "title": "Acoustative Piano Karaoke - Don't Be So Hard On Yourself - Jess Glynne (Lower Female Key -2)", - "id": "TOZBnuAmtF0" - }, - { - "title": "Acoustative Piano Karaoke - Because Of You - Kelly Clarkson (With Guide Vocal)", - "id": "ZGe-jNMidzM" - }, - { - "title": "Acoustative Piano Karaoke - Because Of You - Kelly Clarkson (Lower Female Key -2)", - "id": "LZTTIvtnFpQ" - }, - { - "title": "Acoustative Piano Karaoke - Because Of You - Kelly Clarkson (Original Female Key)", - "id": "8MO2xohfy4I" - }, - { - "title": "Dua Lipa - We're Good (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "iFHcgDkHWTk" - }, - { - "title": "Randy Vanwarmer - Just When I Needed You Most - Karaoke Version from Zoom Karaoke", - "id": "reuEzZr0ku4" - }, - { - "title": "Travis - Flowers In The Window - Karaoke Version from Zoom Karaoke", - "id": "R8Cse6uxiV0" - }, - { - "title": "Acoustative Piano Karaoke - Angels - Robbie Williams (Lower Male Key -2)", - "id": "zgYLJKX8n28" - }, - { - "title": "Acoustative Piano Karaoke - Angels - Robbie Williams (Original Male Key)", - "id": "k1ijyYOa2kE" - }, - { - "title": "Acoustative Piano Karaoke - Angels - Robbie Williams (Very Low Male Key -4)", - "id": "Z93-tKrIWyA" - }, - { - "title": "Acoustative Piano Karaoke - Angels - Robbie Williams (Female Key +3)", - "id": "YS47iLA4LOU" - }, - { - "title": "Acoustative Piano Karaoke - Angels - Robbie Williams (With Guide Vocal)", - "id": "UKftBCKOERc" - }, - { - "title": "Acoustative Piano Karaoke - Stitches - Shawn Mendes (Female Key +4)", - "id": "uqtLYxUdfoI" - }, - { - "title": "Acoustative Piano Karaoke - Stitches - Shawn Mendes (Original Male Key)", - "id": "pn8aYudInZI" - }, - { - "title": "Acoustative Piano Karaoke - Stitches - Shawn Mendes (With Guide Vocal)", - "id": "dx93q2jb-LI" - }, - { - "title": "Acoustative Piano Karaoke - Stitches - Shawn Mendes (Lower Male Key -3)", - "id": "0wmmK25GG9k" - }, - { - "title": "Acoustative Piano Karaoke - Sorry - Justin Bieber (Original Male Key)", - "id": "ZsQBhfS4Qlw" - }, - { - "title": "Acoustative Piano Karaoke - Rule The World - Take That (Female Key +3)", - "id": "0iU3KaRlKQk" - }, - { - "title": "Acoustative Piano Karaoke - Rule The World - Take That (Original Male Key)", - "id": "1NeS0AsI5pc" - }, - { - "title": "Acoustative Piano Karaoke - Sorry - Justin Bieber (Female Key +3)", - "id": "xXtPjbMfyaQ" - }, - { - "title": "Acoustative Piano Karaoke - Rule The World - Take That (Lower Male Key -2)", - "id": "m9Al4sRF8sc" - }, - { - "title": "Acoustative Piano Karaoke - Sorry - Justin Bieber (With Guide Vocal)", - "id": "7SbteeRrHqs" - }, - { - "title": "Acoustative Piano Karaoke - Rule The World - Take That (With Guide Vocal)", - "id": "vmY9t9wd8I0" - }, - { - "title": "Acoustative Piano Karaoke - Sorry - Justin Bieber (Lower Male Key -2)", - "id": "j5sgI6kBwhw" - }, - { - "title": "Into The Woods - On The Steps Of The Palace - Karaoke Version from Zoom Karaoke", - "id": "2QXd3R1YmjY" - }, - { - "title": "Bass Guitaroke Play-A-Long - 10cc - Dreadlock Holiday (Minus Bass Guitar)", - "id": "3WQkbyh93Gc" - }, - { - "title": "Travis - Turn - Karaoke Version from Zoom Karaoke", - "id": "qd9Jo3KlJJI" - }, - { - "title": "10cc - Dreadlock Holiday (Without Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "UtEPtLHgBYY" - }, - { - "title": "10cc - Dreadlock Holiday (With Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "wPJpOgzZy6s" - }, - { - "title": "10cc - Dreadlock Holiday (Lower Key -2) - Karaoke Version from Zoom Karaoke", - "id": "bApXVl5Jzig" - }, - { - "title": "Michael Kiwanuka - Love And Hate - Karaoke Version from Zoom Karaoke", - "id": "1O-T2_4FJ-Q" - }, - { - "title": "Rod Stewart - Forever Young - Karaoke Version from Zoom Karaoke", - "id": "57FZ7mXEk6g" - }, - { - "title": "Marshall Crenshaw - Cynical Girl - Karaoke Version from Zoom Karaoke", - "id": "cw3fNS6TW8s" - }, - { - "title": "Patsy Cline - Faded Love - Karaoke Version from Zoom Karaoke", - "id": "_Wi3BhuXf74" - }, - { - "title": "Guitaroke Play-A-Long - Gary Moore - Over The Hills And Far Away (Minus Lead Guitar)", - "id": "jnfJdgldSw8" - }, - { - "title": "Passenger - Sword From The Stone - Karaoke Version from Zoom Karaoke", - "id": "lIz76LOkp7E" - }, - { - "title": "Sarah Brightman - A Whiter Shade Of Pale - Karaoke Version from Zoom Karaoke", - "id": "qVgaC94bwVg" - }, - { - "title": "Andy Williams - May Each Day - Karaoke Version from Zoom Karaoke", - "id": "IK5G0ncu3D4" - }, - { - "title": "Acoustative Piano Karaoke - Let It Go (from Frozen) - Idina Menzel (Original Female Key)", - "id": "hxEYIjeiSN0" - }, - { - "title": "Semisonic - Secret Smile - Karaoke Version from Zoom Karaoke", - "id": "eFZlSS5xpS4" - }, - { - "title": "The Doobie Brothers - Black Water - Karaoke Version from Zoom Karaoke", - "id": "RJen2lgvXaY" - }, - { - "title": "Acoustative Piano Karaoke - Karma Chameleon - Culture Club (With Guide Vocal)", - "id": "pkf26FDJTgo" - }, - { - "title": "Acoustative Piano Karaoke - Karma Chameleon - Culture Club (Original Male Key)", - "id": "HaPEasLq-AE" - }, - { - "title": "Acoustative Piano Karaoke - Karma Chameleon - Culture Club (Lower Male Key -2)", - "id": "X4er5w5Rrmg" - }, - { - "title": "Acoustative Piano Karaoke - Karma Chameleon - Culture Club (Female Key +4)", - "id": "dMSt3decwiA" - }, - { - "title": "Joe Brown - I'll See You In My Dreams - Karaoke Version from Zoom Karaoke", - "id": "upAy063bOpQ" - }, - { - "title": "Stephen Bishop - It Might Be You (from the movie Tootsie) - Karaoke Version from Zoom Karaoke", - "id": "tyvc1AbkMaA" - }, - { - "title": "Bobby Day - Over And Over - Karaoke Version from Zoom Karaoke", - "id": "8LX8ILU0S9A" - }, - { - "title": "Patsy Cline - San Antonio Rose - Karaoke Version from Zoom Karaoke", - "id": "EgMUxYmkeGg" - }, - { - "title": "Neil Diamond - Sweet Caroline - Karaoke Version from Zoom Karaoke", - "id": "4Vgstvv3u1M" - }, - { - "title": "Acoustative Piano Karaoke - Everytime You Go Away - Paul Young (Original Male Key)", - "id": "YNObHMpQzFg" - }, - { - "title": "Acoustative Piano Karaoke - Everytime You Go Away - Paul Young (Lower Male Key -2)", - "id": "x2yIAYo1XdQ" - }, - { - "title": "Acoustative Piano Karaoke - Everytime You Go Away - Paul Young (With Guide Vocal)", - "id": "lIRAb-AQ_WI" - }, - { - "title": "Acoustative Piano Karaoke - Everytime You Go Away - Paul Young (Female Key +3)", - "id": "IrEf4z_UWOI" - }, - { - "title": "Wet Wet Wet - Don't Want To Forgive Me Now - Karaoke Version from Zoom Karaoke", - "id": "oA_LU1F3Dhk" - }, - { - "title": "Depeche Mode - See You - Karaoke Version from Zoom Karaoke", - "id": "uVfVDOoCK4o" - }, - { - "title": "Ava Max - My Head & My Heart - Karaoke Version from Zoom Karaoke", - "id": "cUSvNGHx1ys" - }, - { - "title": "Blur - There's No Other Way - Karaoke Version from Zoom Karaoke", - "id": "P0hOss8lo1Q" - }, - { - "title": "Song Of The South - Zip-A-Dee-Doo-Dah - Karaoke Version from Zoom Karaoke", - "id": "NjOgBrj6Heo" - }, - { - "title": "Elvis Presley - The Wonder Of You - Karaoke Version from Zoom Karaoke", - "id": "6la2SRVaPdM" - }, - { - "title": "Gwen Stefani - Let Me Reintroduce Myself - Karaoke Version from Zoom Karaoke", - "id": "YJHqlySmEhA" - }, - { - "title": "Wolfgang Ambros - Bettina - Karaoke Version from Zoom Karaoke", - "id": "S4GnbF8y-wY" - }, - { - "title": "DMA's - Silver - Karaoke Version from Zoom Karaoke", - "id": "NS03GvQx4yQ" - }, - { - "title": "Hozier - Movement - Karaoke Version from Zoom Karaoke", - "id": "eLmQdlz4jwI" - }, - { - "title": "Acoustative Piano Karaoke - Oops! I Did It Again - Britney Spears (Original Female Key)", - "id": "xKNppCNfIh0" - }, - { - "title": "Acoustative Piano Karaoke - Oops! I Did It Again - Britney Spears (Lower Female Key -2)", - "id": "dICtvaxh62o" - }, - { - "title": "Acoustative Piano Karaoke - Oops! I Did It Again - Britney Spears (Male Key +4)", - "id": "RlbjD5chsAI" - }, - { - "title": "Olivia Rodrigo - Driver's Licence - Karaoke Version from Zoom Karaoke", - "id": "CGxeY4_9reU" - }, - { - "title": "James Arthur - Train Wreck - Karaoke Version from Zoom Karaoke", - "id": "DSUPxCJkkCo" - }, - { - "title": "Neil Young & Crazy Horse - Powderfinger - Karaoke Version from Zoom Karaoke", - "id": "qGwBme5WJKE" - }, - { - "title": "Marty Casey - Trees (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "7CZ7TJeE7jA" - }, - { - "title": "Blackmore's Night - Wish You Were Here - Karaoke Version from Zoom Karaoke", - "id": "CXQHeIo7P6o" - }, - { - "title": "Sara Bareilles - Gonna Get Over You - Karaoke Version from Zoom Karaoke", - "id": "VD8oIxtNNQk" - }, - { - "title": "She & Him - Stay Awhile - Karaoke Version from Zoom Karaoke", - "id": "RJG35t1yyrA" - }, - { - "title": "Tom Waits - I Hope That I Don't Fall In Love With You - Karaoke Version from Zoom Karaoke", - "id": "aCL9NGxf-XY" - }, - { - "title": "Liam Gallagher - All You're Dreaming Of - Karaoke Version from Zoom Karaoke", - "id": "JOKL8-LguSo" - }, - { - "title": "Ph.D - I Won't Let You Down - Karaoke Version from Zoom Karaoke", - "id": "r90TjYDPgow" - }, - { - "title": "Miley Cyrus feat Dua Lipa - Prisoner - Karaoke Version from Zoom Karaoke", - "id": "gDaJ7X2Xhuo" - }, - { - "title": "Pink - Stupid Girls - Karaoke Version from Zoom Karaoke", - "id": "PIurr-Y4pow" - }, - { - "title": "A-ha - Crying In The Rain (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "QeI5LlgxYYI" - }, - { - "title": "A-ha - Crying In The Rain (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "Nd2uSAuiKIg" - }, - { - "title": "Bruce Springsteen - Dancing In The Dark (Acoustative Piano Karaoke Version in Lower Male -4 Key)", - "id": "oTLZlLC1DlQ" - }, - { - "title": "Bruce Springsteen - Dancing In The Dark (Acoustative Piano Karaoke Version in Original Male Key)", - "id": "hzZhdXok4nA" - }, - { - "title": "Bruce Springsteen - Dancing In The Dark (Acoustative Piano Karaoke Version in Female +2 Key)", - "id": "URq5DqW4jWQ" - }, - { - "title": "Bruce Springsteen - Dancing In The Dark (Acoustative Piano Karaoke Version in Lower Male -2 Key)", - "id": "G7iB_Rtr9ng" - }, - { - "title": "Christopher Cross - Sailing - Karaoke Version from Zoom Karaoke", - "id": "6_UR908GGfU" - }, - { - "title": "Oasis - Don't Look Back In Anger (Acoustative Piano Karaoke Version with Guide Vocal)", - "id": "82Q6_sVWNQ8" - }, - { - "title": "Oasis - Don't Look Back In Anger (Acoustative Piano Karaoke Version in Female +2 Key)", - "id": "e1G-k1Y_Nj4" - }, - { - "title": "Oasis - Don't Look Back In Anger (Acoustative Piano Karaoke Version in Lower Male -2 Key)", - "id": "S6Jdm2AZJC0" - }, - { - "title": "Oasis - Don't Look Back In Anger (Acoustative Piano Version in Original Male Key) - Zoom Karaoke", - "id": "IS_XX5sQ1fo" - }, - { - "title": "Alphaville - Forever Young - Karaoke Version from Zoom Karaoke", - "id": "u6-XSDVCHOw" - }, - { - "title": "Elvis Presley - The Elvis Lounge Style Medley 1 (Acoustative) - Karaoke Version from Zoom Karaoke", - "id": "EYJx9GKuS6s" - }, - { - "title": "Marshall Crenshaw - Someday Someway Karaoke Version from Zoom Karaoke", - "id": "PzkNBdpQhQQ" - }, - { - "title": "Sia - Hey Boy - Karaoke Version from Zoom Karaoke", - "id": "8dxs0F7VDAw" - }, - { - "title": "Bishop Briggs - Walk You Home (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "iMunMTWR-7M" - }, - { - "title": "Ben Platt - Vienna - Karaoke Version from Zoom Karaoke", - "id": "-OJlPWQtMdc" - }, - { - "title": "Benee feat Gus Dapperton - Supalonely (Explicit Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "tChdUt32gWo" - }, - { - "title": "The Rolling Stones - Dandelion - Karaoke Version from Zoom Karaoke", - "id": "i3rfTE72z_c" - }, - { - "title": "Benee feat Gus Dapperton - Supalonely (Clean Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "hoBnJdSBF2E" - }, - { - "title": "KD Lang - Hallelujah - Karaoke Version from Zoom Karaoke", - "id": "U3QdWHvaBQc" - }, - { - "title": "Dua Lipa - Levitating (Acoustic Piano Version) - Karaoke Version from Zoom Karaoke", - "id": "SiKCYZ9MzSc" - }, - { - "title": "Bishop Briggs - Walk You Home (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "NbIkneeKyQ4" - }, - { - "title": "Kylie Minogue - Say Something - Karaoke Version from Zoom Karaoke", - "id": "H46gOtapy6M" - }, - { - "title": "Billy Joel - Vienna - Karaoke Version from Zoom Karaoke", - "id": "2ZIlfC4s8uA" - }, - { - "title": "Bishop Briggs - Higher - Karaoke Version from Zoom Karaoke", - "id": "vtDyf8McZak" - }, - { - "title": "Joe Longthorne - Wind Beneath My Wings - Karaoke Version from Zoom Karaoke", - "id": "tzx5VSfTy4Y" - }, - { - "title": "Robert John - Sad Eyes - Karaoke Version from Zoom Karaoke", - "id": "SiZNmqb9hTM" - }, - { - "title": "Janet Jackson - Let's Wait Awhile - Karaoke Version from Zoom Karaoke", - "id": "Cytk0s4-Ft8" - }, - { - "title": "Evanescence - Cruel Summer (Acoustic Version) - Karaoke Version from Zoom Karaoke", - "id": "APP-oSrWHnQ" - }, - { - "title": "The Byrds - Turn! Turn! Turn! - Karaoke Version from Zoom Karaoke", - "id": "856eGWuRdE8" - }, - { - "title": "Johnny Cash - She Used To Love Me A Lot - Karaoke Version from Zoom Karaoke", - "id": "5O5xmFjZDSk" - }, - { - "title": "James Bay - Chew On My Heart - Karaoke Version from Zoom Karaoke", - "id": "3MpVkQazGHg" - }, - { - "title": "Grotbags - Gimme Dat Ding (from The Pink Windmill Show) - Karaoke Version from Zoom Karaoke", - "id": "P5jM3sGZCvw" - }, - { - "title": "Lady Gaga - 911 - Karaoke Version from Zoom Karaoke", - "id": "rbG2BxnvuQw" - }, - { - "title": "Tom Grennan - Amen - Karaoke Version from Zoom Karaoke", - "id": "lW4k8estSb4" - }, - { - "title": "A-Ha - Take On Me (MTV Unplugged) - Karaoke Version from Zoom Karaoke", - "id": "ibQ2T6RjE0U" - }, - { - "title": "Jessie J feat Ariana Grande & Nicki Minaj - Bang Bang (Four Semitones Down) - Karaoke Version", - "id": "fRbblCiH5DA" - }, - { - "title": "Travis - A Ghost - Karaoke Version from Zoom Karaoke", - "id": "WlxF5OIrkrY" - }, - { - "title": "Shawn Mendes - Wonder - Karaoke Version from Zoom Karaoke", - "id": "ViVeazeNIeI" - }, - { - "title": "Neil Diamond - Cracklin' Rosie - Karaoke Version from Zoom Karaoke", - "id": "UVGBpRGXCYo" - }, - { - "title": "Gallery - Nice To Be With You - Karaoke Version from Zoom Karaoke", - "id": "Kq71AtDtn3M" - }, - { - "title": "Louise - Let's Go Round Again - Karaoke Version from Zoom Karaoke", - "id": "KJ0Im2ljU5Y" - }, - { - "title": "The Waterboys - Fisherman's Blues - Karaoke Version from Zoom Karaoke", - "id": "EqSFidjYLoU" - }, - { - "title": "Bruce Springsteen - Ghosts - Karaoke Version from Zoom Karaoke", - "id": "WSnnJZ4abGU" - }, - { - "title": "Julian Lennon - Too Late For Goodbyes - Karaoke Version from Zoom Karaoke", - "id": "obqMsWPd6Rg" - }, - { - "title": "Craig McLachlan & Check 1-2 - Mona - Karaoke Version from Zoom Karaoke", - "id": "rc4Kys9w8_8" - }, - { - "title": "Jaymes Young - What Is Love - Karaoke Version from Zoom Karaoke", - "id": "czB0qQsmZSA" - }, - { - "title": "Chase Eagleson - Take On Me - Karaoke Version from Zoom Karaoke", - "id": "HzOy_-3eiRc" - }, - { - "title": "Marshmello feat. Demi Lovato - OK Not To Be OK - Karaoke Version from Zoom Karaoke", - "id": "x1tkwVn2Wfc" - }, - { - "title": "Radiohead - Jigsaw Falling Into Place - Karaoke Version from Zoom Karaoke", - "id": "7a_ZsCperIU" - }, - { - "title": "Kaiser Chiefs - I Heard It Through The Grapevine - Karaoke Version from Zoom Karaoke", - "id": "DRtML5-CRPY" - }, - { - "title": "Jamiroquai - Canned Heat - Karaoke Version from Zoom Karaoke", - "id": "lIzXEn_s2tE" - }, - { - "title": "Sam Smith - Diamonds - Karaoke Version from Zoom Karaoke", - "id": "glQBQ86FvsY" - }, - { - "title": "Radiohead - Fake Plastic Trees - Karaoke Version from Zoom Karaoke", - "id": "k2t4j25sIjU" - }, - { - "title": "Mama Cass - Make Your Own Kind Of Music - Karaoke Version from Zoom Karaoke", - "id": "oUFWmEXDago" - }, - { - "title": "Steve Miller Band - Rock'n Me - Karaoke Version from Zoom Karaoke", - "id": "pzUjzIUhhGw" - }, - { - "title": "24kGoldn feat Iann Dior - Mood - Karaoke Version from Zoom Karaoke", - "id": "oNi1AWDXEDA" - }, - { - "title": "Black Box - Ride On Time - Karaoke Version from Zoom Karaoke", - "id": "hVR5pKzDZvE" - }, - { - "title": "Mary Poppins - A Spoonful Of Sugar - Cut Down Version with Whistling - Zoom Karaoke", - "id": "bWSAazOaqzI" - }, - { - "title": "George Harrison - What Is Life - Karaoke Version from Zoom Karaoke", - "id": "ZW7GOzY2nZI" - }, - { - "title": "Mary Poppins - A Spoonful Of Sugar - Cut Down Version with No Whistling - Zoom Karaoke", - "id": "S9sxw8x-a3I" - }, - { - "title": "David Guetta & Sia - Let's Love - Karaoke Version from Zoom Karaoke", - "id": "IQquogVPSaE" - }, - { - "title": "Tom Grennan - Found What I've Been Looking For - Karaoke Version from Zoom Karaoke", - "id": "EX4QmCMCzco" - }, - { - "title": "Bobby Brown - My Prerogative - Karaoke Version from Zoom Karaoke", - "id": "2VGbfAuZjCo" - }, - { - "title": "Ringo Starr - Photograph - Karaoke Version from Zoom Karaoke", - "id": "-ff0J8zMw2k" - }, - { - "title": "Fantasia - Always On My Mind - Karaoke Version from Zoom Karaoke", - "id": "yzs_ogfv9l0" - }, - { - "title": "Basement Jaxx - Do Your Thing - Karaoke Version from Zoom Karaoke", - "id": "xg4LUDTPRbY" - }, - { - "title": "The Outfield - Your Love - Karaoke Version from Zoom Karaoke", - "id": "uFMD78sQB4U" - }, - { - "title": "Just Jack - Starz In Their Eyes - Karaoke Version from Zoom Karaoke", - "id": "s3qyHLcC36o" - }, - { - "title": "The Allman Brothers Band - Midnight Rider - Karaoke Version from Zoom Karaoke", - "id": "rxLuGO6lQzA" - }, - { - "title": "Anita Baker - Sweet Love - Karaoke Version from Zoom Karaoke", - "id": "lnCkGkwJXDM" - }, - { - "title": "Peggy March - I Will Follow Him - Karaoke Version from Zoom Karaoke", - "id": "GjxpHTEOhrw" - }, - { - "title": "Texas - When We Are Together - Karaoke Version from Zoom Karaoke", - "id": "ANxLjg9rZQ8" - }, - { - "title": "Jon English - Love Goes On - Karaoke Version from Zoom Karaoke", - "id": "0VUSF4QXP78" - }, - { - "title": "Ariana Grande - 34+35 - Karaoke Version from Zoom Karaoke", - "id": "IY1VTCTC6AQ" - }, - { - "title": "England Dan & John Ford Coley - I'd Really Love To See You Tonight - Karaoke Version from Zoom", - "id": "Zmb-8MYGShc" - }, - { - "title": "Albert Hammond - Down By The River - Karaoke Version from Zoom Karaoke", - "id": "NLrgPdcyvl8" - }, - { - "title": "Martika - Toy Soldiers - Karaoke Version from Zoom Karaoke", - "id": "5s321V6losA" - }, - { - "title": "Livin' Joy - Dreamer - Karaoke Version from Zoom Karaoke", - "id": "zvyqGUe0jGM" - }, - { - "title": "Champaign - How 'Bout Us (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "faUB54O6ihU" - }, - { - "title": "Carole King - Where You Lead - Karaoke Version from Zoom Karaoke", - "id": "fQVjxwhycvA" - }, - { - "title": "The Pierces - Glorious - Karaoke Version from Zoom Karaoke", - "id": "_2ShLNfa-a4" - }, - { - "title": "Neil Diamond - The Art Of Love - Karaoke Version from Zoom Karaoke", - "id": "UlMGYtyir0g" - }, - { - "title": "Pussycat - If You Ever Come To Amsterdam - Karaoke Version from Zoom Karaoke", - "id": "7cv3y-Mtg3c" - }, - { - "title": "Neil Diamond - (Ooo) Do I Wanna Be Yours - Karaoke Version from Zoom Karaoke", - "id": "4SxhrMpcWI8" - }, - { - "title": "Voice Of The Beehive - Don't Call Me Baby - Karaoke Version from Zoom Karaoke", - "id": "2kVGvkVzJ3I" - }, - { - "title": "Gerry Cinnamon - Mayhem - Karaoke Version from Zoom Karaoke", - "id": "x0usF2mh1mw" - }, - { - "title": "The Gap Band - Outstanding - Karaoke Version from Zoom Karaoke", - "id": "2wlb-pW4g_M" - }, - { - "title": "Toby Keith & Sting - I'm So Happy I Can't Stop Crying - Karaoke Version from Zoom Karaoke", - "id": "jCBo25Q9UJM" - }, - { - "title": "The New Seekers - We've Got To Do It Now - Karaoke Version from Zoom Karaoke", - "id": "hH307DfDLsU" - }, - { - "title": "Toby Keith - He Ain't Worth Missing - Karaoke Version from Zoom Karaoke", - "id": "eat3JNEDGn4" - }, - { - "title": "The New Seekers - For You We Sing - Karaoke Version from Zoom Karaoke", - "id": "YHDgakRNb80" - }, - { - "title": "Deacon Blue - Loaded - Karaoke Version from Zoom Karaoke", - "id": "NZHDVY1GvgM" - }, - { - "title": "Chitty Chitty Bang Bang - Doll On A Music Box (Female Part Only) - Karaoke Version from Zoom Karaoke", - "id": "GNm1UNAi7hI" - }, - { - "title": "Toby Keith - Does That Blue Moon Ever Shine On You - Karaoke Version from Zoom Karaoke", - "id": "9oAajYoMtl8" - }, - { - "title": "England Dan & John Ford Coley - Love Is The Answer - Karaoke Version from Zoom Karaoke", - "id": "5SQvVxkGf_E" - }, - { - "title": "Toby Keith - I'm Just Talkin' About Tonight - Karaoke Version from Zoom Karaoke", - "id": "-57rBo_6LKs" - }, - { - "title": "Caroline Swart - Talk To Me - Karaoke Version from Zoom Karaoke", - "id": "1AudERSK1t0" - }, - { - "title": "The Four Tops - When She Was My Girl - Karaoke Version from Zoom Karaoke", - "id": "sUUYor9xTsI" - }, - { - "title": "Elvis Presley - '68 Comeback T.V. Special - Karaoke Version from Zoom Karaoke", - "id": "ij9ctqoHxM8" - }, - { - "title": "Jon English - Hold Back The Night - Karaoke Version from Zoom Karaoke", - "id": "K-I9GWdFEgM" - }, - { - "title": "Barry Manilow - When The Good Times Come Again Karaoke Version from Zoom Karaoke", - "id": "JoBwC_tg2gA" - }, - { - "title": "The Dualers - Fix You - Karaoke Version from Zoom Karaoke", - "id": "9_wedCCNoac" - }, - { - "title": "Junior Walker And The All Stars - (I'm A) Road Runner - Karaoke Version from Zoom Karaoke", - "id": "4QdKtCxJsLk" - }, - { - "title": "America - Sister Golden Hair - Karaoke Version from Zoom Karaoke", - "id": "2d2LsH64HgY" - }, - { - "title": "Toby Keith - A Little Less Talk And A Lot More Action - Karaoke Version from Zoom Karaoke", - "id": "BGe0140u3so" - }, - { - "title": "Toby Keith - Who's That Man - Karaoke Version from Zoom Karaoke", - "id": "yu1DINGxEkk" - }, - { - "title": "Graham Bonnet - Is There A Way To Sing The Blues - Karaoke Version from Zoom Karaoke", - "id": "lNtnDJRJqM8" - }, - { - "title": "Toby Keith - You Ain't Much Fun - Karaoke Version from Zoom Karaoke", - "id": "cDP0x570FHE" - }, - { - "title": "Will Smith - Gettin' Jiggy Wit It - Karaoke Version from Zoom Karaoke", - "id": "YQFi2lxYCLA" - }, - { - "title": "Ms Dynamite - Dy-Na-Mi-Tee - Karaoke Version from Zoom Karaoke", - "id": "NvC36hqaaFU" - }, - { - "title": "Toby Keith - Pull My Chain - Karaoke Version from Zoom Karaoke", - "id": "NK1hyWzE1eM" - }, - { - "title": "Lobo - I'd Love You To Want Me - Karaoke Version from Zoom Karaoke", - "id": "Ma-SHluOhwQ" - }, - { - "title": "Elvis Presley - Soldier Boy - Karaoke Version from Zoom Karaoke", - "id": "JoaUu2gHSh4" - }, - { - "title": "Rob Thomas - Little Wonders - Karaoke Version from Zoom Karaoke", - "id": "3FWuONGot6Q" - }, - { - "title": "Showaddywaddy - Footsteps - Karaoke Version from Zoom Karaoke", - "id": "QACL5-uqsHc" - }, - { - "title": "Shania Twain - Any Man Of Mine - Karaoke Version from Zoom Karaoke", - "id": "BXhiWGhfu5c" - }, - { - "title": "Rod Stewart - If Only - Karaoke Version from Zoom Karaoke", - "id": "Yo3XEyg9qYo" - }, - { - "title": "Roberta Flack & Peabo Bryson - Tonight I Celebrate My Love - Karaoke Version from Zoom Kar", - "id": "YQ5WVg-H9g0" - }, - { - "title": "Petula Clark - Who Am I - Karaoke Version from Zoom Karaoke", - "id": "8dGwS3WMMP8" - }, - { - "title": "America - Ventura Highway - Karaoke Version from Zoom Karaoke", - "id": "6kqwijhRhQs" - }, - { - "title": "Queen - Seven Seas Of Rhye - Karaoke Version from Zoom Karaoke", - "id": "qClErqrWUU8" - }, - { - "title": "Tom O'Connor - When I Was A Lad - Karaoke Version from Zoom Karaoke", - "id": "Cft4L9WZ6so" - }, - { - "title": "Howard Jones - Things Can Only Get Better - Karaoke Version from Zoom Karaoke", - "id": "xA7eUHPZl_Y" - }, - { - "title": "The Blow Monkeys - It Doesn't Have To Be This Way - Karaoke Version from Zoom Karaoke", - "id": "bPOldv6ZByQ" - }, - { - "title": "Blood Brothers - Tell Me It's Not True (Original London Cast) - Karaoke Version from Zoom Karaoke", - "id": "RfsZxjHoCvg" - }, - { - "title": "Showaddywaddy - I'm Yours - Karaoke Version from Zoom Karaoke", - "id": "JrjrQPld-GQ" - }, - { - "title": "Flogging Molly - If I Ever Leave This World Alive - Karaoke Version from Zoom Karaoke", - "id": "DqMVqruASE8" - }, - { - "title": "Howard Jones - New Song - Karaoke Version from Zoom Karaoke", - "id": "s_tzNC5PPk8" - }, - { - "title": "Howard Jones - Like To Get To Know You Well - Karaoke Version from Zoom Karaoke", - "id": "jdQBH22ylSI" - }, - { - "title": "Beetlejuice The Musical - Dead Mom - Karaoke Version from Zoom Karaoke", - "id": "fZ5pkAPtsrw" - }, - { - "title": "Anna Nalick - Breathe (2AM) - Karaoke Version from Zoom Karaoke", - "id": "bJVUCKJe3hE" - }, - { - "title": "Pussycat - Mississippi - Karaoke Version from Zoom Karaoke", - "id": "WhpgsaYEWKE" - }, - { - "title": "Beetlejuice The Musical - Home - Karaoke Version from Zoom Karaoke", - "id": "Cn91c7Hy3jY" - }, - { - "title": "Beetlejuice The Musical - The Whole Being Dead Thing - Karaoke Version from Zoom Karaoke", - "id": "AsHKecNMRA4" - }, - { - "title": "Shania Twain - Whose Bed Have Your Boots Been Under - Karaoke Version from Zoom Karaoke", - "id": "2MP95FE5fZk" - }, - { - "title": "Showaddywaddy - You Will Lose Your Love Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "-ABUsmWb-F4" - }, - { - "title": "Kesha - Cannibal - Karaoke Version from Zoom Karaoke", - "id": "ulqfolIPWR0" - }, - { - "title": "Steppenwolf - Magic Carpet Ride - Karaoke Version from Zoom Karaoke", - "id": "pIxc400kAbQ" - }, - { - "title": "Dinah Washington - What A Difference A Day Makes - Karaoke Version from Zoom Karaoke", - "id": "p6SavnvsV3E" - }, - { - "title": "Demi Lovato - I Love Me - Karaoke Version from Zoom Karaoke", - "id": "UJsyjYKgb0w" - }, - { - "title": "Rod Stewart - The Rod Stewart Medley - Karaoke Version from Zoom Karaoke", - "id": "J1H8OmHi3dA" - }, - { - "title": "Donna Summer - The Donna Summer Medley - Karaoke Version from Zoom Karaoke", - "id": "EZc10CwZNlc" - }, - { - "title": "Spandau Ballet - Gold/Only When You Leave (Medley) - Karaoke Version from Zoom Karaoke", - "id": "Du5xNBr2CWo" - }, - { - "title": "Andrea Bocelli & Sarah Brightman - Time To Say Goodbye - Karaoke Version from Zoom Karaoke", - "id": "piZjYgSlXmU" - }, - { - "title": "Alicia Keys - Underdog (iHeart Acoustic Version) - Karaoke Version from Zoom Karaoke", - "id": "br1HwoK44I0" - }, - { - "title": "Tammy Wynette - Stand By Your Man/D-I-V-O-R-C-E (Medley) - Karaoke Version from Zoom Karaoke", - "id": "WC0qd8NjKj4" - }, - { - "title": "The Traveling Wilburys - Inside Out - Karaoke Version from Zoom Karaoke", - "id": "5FasdMZsmAA" - }, - { - "title": "Sarah McLachlan - Push - Karaoke Version from Zoom Karaoke", - "id": "vf2pzgdMoTQ" - }, - { - "title": "Dido - White Flag - Karaoke Version from Zoom Karaoke", - "id": "34_6QZCqS9c" - }, - { - "title": "The Dave Clark Five - Glad All Over - Karaoke Version from Zoom Karaoke", - "id": "sUAIYdG_w7w" - }, - { - "title": "Sarah McLachlan - Train Wreck - Karaoke Version from Zoom Karaoke", - "id": "6oEEl9f3-mE" - }, - { - "title": "The Dave Clark Five - Can't You See That She's Mine - Karaoke Version from Zoom Karaoke", - "id": "wjoo4VOKVz8" - }, - { - "title": "Scissor Sisters - Mary - Karaoke Version from Zoom Karaoke", - "id": "uP7RimxGN8Q" - }, - { - "title": "Dido - See You When You're 40 - Karaoke Version from Zoom Karaoke", - "id": "WL8X2oBTdQQ" - }, - { - "title": "Dido - Stoned - Karaoke Version from Zoom Karaoke", - "id": "vVqYuTWt1Yk" - }, - { - "title": "The Darkness - I Believe In A Thing Called Love - Karaoke Version from Zoom Karaoke", - "id": "g_mMdLr2RSE" - }, - { - "title": "The Dave Clark Five - Catch Us If You Can - Karaoke Version from Zoom Karaoke", - "id": "go4-_BrivHg" - }, - { - "title": "Manfred Mann - Mighty Quinn - Karaoke Version from Zoom Karaoke", - "id": "YzYv2A6bwSA" - }, - { - "title": "Dido - Who Makes You Feel - Karaoke Version from Zoom Karaoke", - "id": "U1qK6Jhd5i0" - }, - { - "title": "The Dave Clark Five - Everybody Knows - Karaoke Version from Zoom Karaoke", - "id": "ARMC_TNZOiU" - }, - { - "title": "Manfred Mann - Do Wah Diddy Diddy - Karaoke Version from Zoom Karaoke", - "id": "wbCrpWTs6iI" - }, - { - "title": "The Darkness - Love Is Only A Feeling - Karaoke Version from Zoom Karaoke", - "id": "kIIl__qL-Sw" - }, - { - "title": "Scissor Sisters - Music Is The Victim - Karaoke Version from Zoom Karaoke", - "id": "wrF0lgmm8rg" - }, - { - "title": "Manfred Mann - 5-4-3-2-1 - Karaoke Version from Zoom Karaoke", - "id": "oX-72XTBcyE" - }, - { - "title": "The Kinks - All Day And All Of The Night - Karaoke Version from Zoom Karaoke", - "id": "_41uXCdoT28" - }, - { - "title": "The Dave Clark Five - Bits And Pieces - Karaoke Version from Zoom Karaoke", - "id": "Unse02JFCOI" - }, - { - "title": "Sarah McLachlan - Adia - Karaoke Version from Zoom Karaoke", - "id": "2iYF8tNl7RU" - }, - { - "title": "Dido - Don't Leave Home - Karaoke Version from Zoom Karaoke", - "id": "uoMXy5FDQAw" - }, - { - "title": "Dido - Mary's In India - Karaoke Version from Zoom Karaoke", - "id": "i84RaleOmDY" - }, - { - "title": "Sarah McLachlan - Dirty Little Secret - Karaoke Version from Zoom Karaoke", - "id": "CgHy8LRP-io" - }, - { - "title": "Sarah McLachlan - Fallen - Karaoke Version from Zoom Karaoke", - "id": "AaDforeoIVA" - }, - { - "title": "Jamie Cullum - These Are The Days - Karaoke Version from Zoom Karaoke", - "id": "MPyi3NdQh8A" - }, - { - "title": "Jamie Cullum - Wind Cries Mary - Karaoke Version from Zoom Karaoke", - "id": "oTdxE1t2SuU" - }, - { - "title": "The Darkness - Friday Night - Karaoke Version from Zoom Karaoke", - "id": "gEd8FMnOs6U" - }, - { - "title": "Scissor Sisters - Take Your Mama - Karaoke Version from Zoom Karaoke", - "id": "sViR5Lir354" - }, - { - "title": "The Darkness - Get Your Hands Off My Woman - Karaoke Version from Zoom Karaoke", - "id": "qduUQzvN9Os" - }, - { - "title": "The Darkness - Holding My Own - Karaoke Version from Zoom Karaoke", - "id": "hI1lvUispIM" - }, - { - "title": "Scissor Sisters - Filthy/Gorgeous - Karaoke Version from Zoom Karaoke", - "id": "fWgf21GRhNA" - }, - { - "title": "Michael Buble - Home - Karaoke Version from Zoom Karaoke", - "id": "cNBHGp7aPZ4" - }, - { - "title": "Michael Buble - You'll Never Find Another Love Like Mine - Karaoke Version from Zoom Karaoke", - "id": "WqrnXZsi6D0" - }, - { - "title": "Jamie Cullum - It's About Time - Karaoke Version from Zoom Karaoke", - "id": "R7iJskhVJKA" - }, - { - "title": "Michael Buble - How Can You Mend A Broken Heart - Karaoke Version from Zoom Karaoke", - "id": "Iu8DKZuiHxM" - }, - { - "title": "The Darkness - Givin' Up - Karaoke Version from Zoom Karaoke", - "id": "8uluejGB-BM" - }, - { - "title": "Sarah McLachlan - I Will Remember You - Karaoke Version from Zoom Karaoke", - "id": "v0znxvtRS6A" - }, - { - "title": "Michael Buble - Kissing A Fool - Karaoke Version from Zoom Karaoke", - "id": "qRZ8NJlbROc" - }, - { - "title": "Dido - Do You Have A Little Time - Karaoke Version from Zoom Karaoke", - "id": "ox0d1rN0oAc" - }, - { - "title": "Sarah McLachlan - Full Of Grace - Karaoke Version from Zoom Karaoke", - "id": "R6vQn3mmr1k" - }, - { - "title": "Michael Buble - Put Your Head On My Shoulder - Karaoke Version from Zoom Karaoke", - "id": "G7PoJnT-ECE" - }, - { - "title": "Jamie Cullum - Next Year, Baby - Karaoke Version from Zoom Karaoke", - "id": "4NvH_lchMvU" - }, - { - "title": "Sarah McLachlan - Drifting - Karaoke Version from Zoom Karaoke", - "id": "B7q_9hUZ_yE" - }, - { - "title": "Jamie Cullum - High And Dry - Karaoke Version from Zoom Karaoke", - "id": "x3Xb1WftPgk" - }, - { - "title": "Dido - Closer - Karaoke Version from Zoom Karaoke", - "id": "oKkOEVLUGj4" - }, - { - "title": "Katie Melua - The Closest Thing To Crazy - Karaoke Version from Zoom Karaoke", - "id": "fD3UpPmzkUY" - }, - { - "title": "Sarah McLachlan - World On Fire - Karaoke Version from Zoom Karaoke", - "id": "eVmyGu-QXnY" - }, - { - "title": "Dido - Sand In My Shoes - Karaoke Version from Zoom Karaoke", - "id": "adKJO2x1RzM" - }, - { - "title": "Jamie Cullum - All At Sea - Karaoke Version from Zoom Karaoke", - "id": "ZHH1POsmJp8" - }, - { - "title": "Dido - This Land Is Mine - Karaoke Version from Zoom Karaoke", - "id": "ZBSM6XaLIi0" - }, - { - "title": "Dido - Life For Rent - Karaoke Version from Zoom Karaoke", - "id": "VKxAgPQbY2k" - }, - { - "title": "Dido - See The Sun - Karaoke Version from Zoom Karaoke", - "id": "5jvmNjgVuTQ" - }, - { - "title": "McFly - You've Got A Friend - Karaoke Version from Zoom Karaoke", - "id": "1MkPTN9P0jE" - }, - { - "title": "Rooster - Staring At The Sun - Karaoke Version from Zoom Karaoke", - "id": "iUh6xEW49vI" - }, - { - "title": "Razorlight - Somewhere Else - Karaoke Version from Zoom Karaoke", - "id": "gKth4sKIds4" - }, - { - "title": "Katie Melua - Crawling Up A Hill - Karaoke Version from Zoom Karaoke", - "id": "SXVh9ssw5vs" - }, - { - "title": "McFly - That Girl - Karaoke Version from Zoom Karaoke", - "id": "Brm-doCHWK0" - }, - { - "title": "Showaddywaddy - When - Karaoke Version from Zoom Karaoke", - "id": "sKoUvoShDyM" - }, - { - "title": "Showaddywaddy - You've Got What It Takes - Karaoke Version from Zoom Karaoke", - "id": "gQzOAXBydM0" - }, - { - "title": "Showaddywaddy - Under The Moon Of Love - Karaoke Version from Zoom Karaoke", - "id": "BV3VZHqqgVI" - }, - { - "title": "Rooster - You're So Right For Me - Karaoke Version from Zoom Karaoke", - "id": "5Wnl_t9zMsw" - }, - { - "title": "Athlete - Wires - Karaoke Version from Zoom Karaoke", - "id": "-yE06LN8znw" - }, - { - "title": "McFly - Room On The 3rd Floor - Karaoke Version from Zoom Karaoke", - "id": "snKRk0CKWu4" - }, - { - "title": "Razorlight - Golden Touch - Karaoke Version from Zoom Karaoke", - "id": "o80BsHwxe2w" - }, - { - "title": "McFly - All About You - Karaoke Version from Zoom Karaoke", - "id": "QfuJ8vXbdPg" - }, - { - "title": "Athlete - Half Light - Karaoke Version from Zoom Karaoke", - "id": "1Zh3LuAvotU" - }, - { - "title": "Rooster - Come Get Some - Karaoke Version from Zoom Karaoke", - "id": "0RKszTubg8s" - }, - { - "title": "Showaddywaddy - I Wonder Why - Karaoke Version from Zoom Karaoke", - "id": "wA2PYeN_8hw" - }, - { - "title": "Showaddywaddy - Rock 'N' Roll Lady - Karaoke Version from Zoom Karaoke", - "id": "kWVhxfOKoPE" - }, - { - "title": "Showaddywaddy - Sweet Music - Karaoke Version from Zoom Karaoke", - "id": "U4vhcx5h3Ws" - }, - { - "title": "Showaddywaddy - Dancin' Party - Karaoke Version from Zoom Karaoke", - "id": "LLurdAGi0dQ" - }, - { - "title": "Showaddywaddy - Three Steps To Heaven - Karaoke Version from Zoom Karaoke", - "id": "HjQ_236UfI0" - }, - { - "title": "McFly - Obviously - Karaoke Version from Zoom Karaoke", - "id": "1xIkjJ8x_Sg" - }, - { - "title": "The Houghton Weavers - The Blackpool Belle - Karaoke Version from Zoom Karaoke", - "id": "N0w8Z9WNuVU" - }, - { - "title": "Aerosmith - I Don't Want To Miss A Thing - Karaoke Version from Zoom Karaoke", - "id": "UHeqnoBCu6o" - }, - { - "title": "Gary Puckett & The Union Gap - Young Girl - Karaoke Version from Zoom Karaoke", - "id": "oZVMfwfuug4" - }, - { - "title": "The Monkees - I'm A Believer - Karaoke Version from Zoom Karaoke", - "id": "noDI4Md0mDk" - }, - { - "title": "Elvis Presley - Devil In Disguise - Karaoke Version from Zoom Karaoke", - "id": "ASB49sd8wAw" - }, - { - "title": "The Ronettes - Sleigh Ride - Karaoke Version from Zoom Karaoke", - "id": "zTreBbVpYgw" - }, - { - "title": "Sonny And Cher - I Got You Babe - Karaoke Version from Zoom Karaoke", - "id": "xm-oiJHg5Tk" - }, - { - "title": "Tommy Roe - Sheila - Karaoke Version from Zoom Karaoke", - "id": "ufSgDsqZcu0" - }, - { - "title": "The Rolling Stones - Honky Tonk Women - Karaoke Version from Zoom Karaoke", - "id": "uCLj4mY6LKc" - }, - { - "title": "Brenda Lee - Rockin' Around The Christmas Tree - Karaoke Version from Zoom Karaoke", - "id": "g-rZy7P20EY" - }, - { - "title": "Dean Martin - Let It Snow! Let It Snow! Let It Snow! - Karaoke Version from Zoom Karaoke", - "id": "a3LH9zet3LI" - }, - { - "title": "Elvis Presley - In The Ghetto - Karaoke Version from Zoom Karaoke", - "id": "Z1aZcU3HA10" - }, - { - "title": "The Ronettes - I Saw Mommy Kissing Santa Claus - Karaoke Version from Zoom Karaoke", - "id": "WjdoH_T3ybU" - }, - { - "title": "Simon And Garfunkel - Mrs Robinson - Karaoke Version from Zoom Karaoke", - "id": "SSsaP7QC87s" - }, - { - "title": "Gerry & The Pacemakers - I Like It - Karaoke Version from Zoom Karaoke", - "id": "Kqjid4GgVG0" - }, - { - "title": "The Searchers - Needles And Pins - Karaoke Version from Zoom Karaoke", - "id": "Ja4w9tGcs2c" - }, - { - "title": "Elvis Presley - Blue Christmas - Karaoke Version from Zoom Karaoke", - "id": "JAR9uW3KFqc" - }, - { - "title": "The Spencer Davis Group - Keep On Running - Karaoke Version from Zoom Karaoke", - "id": "J0snUxFTyoU" - }, - { - "title": "Roy Orbison - Oh Pretty Woman - Karaoke Version from Zoom Karaoke", - "id": "FYrnYxIE37w" - }, - { - "title": "Cliff Richard - Mistletoe And Wine - Karaoke Version from Zoom Karaoke", - "id": "BCfsy-f5HH8" - }, - { - "title": "Band Aid - Do They Know It's Christmas - Karaoke Version from Zoom Karaoke", - "id": "sdrJDoeQD9c" - }, - { - "title": "Nancy Sinatra And Frank Sinatra - Somethin' Stupid - Karaoke Version from Zoom Karaoke", - "id": "eIYuqrGnoMY" - }, - { - "title": "Boney M - Mary's Boy Child (Oh My Lord) - Karaoke Version from Zoom Karaoke", - "id": "PHi4iG489cg" - }, - { - "title": "The Searchers - Sugar And Spice - Karaoke Version from Zoom Karaoke", - "id": "2XE12itanTk" - }, - { - "title": "The Archies - Sugar Sugar - Karaoke Version from Zoom Karaoke", - "id": "ccmfH8Pjtk4" - }, - { - "title": "The Foundations - Build Me Up Buttercup - Karaoke Version from Zoom Karaoke", - "id": "LLCulvTamDg" - }, - { - "title": "Gene Pitney - Something's Gotten Hold Of My Heart - Karaoke Version from Zoom Karaoke", - "id": "J2EaYuc19AI" - }, - { - "title": "Neil Diamond - Sweet Caroline [Old Version] - Karaoke Version from Zoom Karaoke", - "id": "J-_L_ZF39z0" - }, - { - "title": "Meat Loaf - I'd Lie For You (And That's The Truth) - Karaoke Version from Zoom Karaoke", - "id": "A9MuiL3qC4Q" - }, - { - "title": "The Byrds - Mr Tambourine Man - Karaoke Version from Zoom Karaoke", - "id": "2TEhzsMtEEw" - }, - { - "title": "The Beatles - Twist And Shout - Karaoke Version from Zoom Karaoke", - "id": "tFm1Xt7gU0k" - }, - { - "title": "The Everly Brothers - Bye Bye Love - Karaoke Version from Zoom Karaoke", - "id": "qtlKqd1lrLc" - }, - { - "title": "Meat Loaf - Two Out Of Three Ain't Bad - Karaoke Version from Zoom Karaoke", - "id": "_IQ0tb1rSL4" - }, - { - "title": "John Lennon - Jealous Guy - Karaoke Version from Zoom Karaoke", - "id": "Z9rvtsOMA4Y" - }, - { - "title": "Billy Ray Cyrus - Achy Breaky Heart - Karaoke Version from Zoom Karaoke", - "id": "QIRrJlwFMHg" - }, - { - "title": "George Michael - Careless Whisper - Karaoke Version from Zoom Karaoke", - "id": "AtLHFKmN17w" - }, - { - "title": "Meat Loaf - Midnight At The Lost And Found - Karaoke Version from Zoom Karaoke", - "id": "A1vd1iUa7xg" - }, - { - "title": "Meat Loaf - You Took The Words Right Out Of My Mouth - Karaoke Version from Zoom Karaoke", - "id": "3zKtzvyze2E" - }, - { - "title": "Meat Loaf - Couldn't Have Said It Better - Karaoke Version from Zoom Karaoke", - "id": "b7gr_Aif984" - }, - { - "title": "Aerosmith - Sweet Emotion - Karaoke Version from Zoom Karaoke", - "id": "WVT2dSa78EE" - }, - { - "title": "Aerosmith - Same Old Song And Dance - Karaoke Version from Zoom Karaoke", - "id": "3KyVgPm-ZDQ" - }, - { - "title": "Aerosmith - Angel - Karaoke Version from Zoom Karaoke", - "id": "zjlW3weWZI4" - }, - { - "title": "Aerosmith - Dream On - Karaoke Version from Zoom Karaoke", - "id": "x9Sy1jtmB7w" - }, - { - "title": "Aerosmith - Back In The Saddle - Karaoke Version from Zoom Karaoke", - "id": "Xqjpgmv579M" - }, - { - "title": "Aerosmith - Falling In Love (Is Hard On The Knees) - Karaoke Version from Zoom Karaoke", - "id": "DbkmdpnkBak" - }, - { - "title": "Aerosmith - Dude (Looks Like A Lady) - Karaoke Version from Zoom Karaoke", - "id": "BCso4jpfFwM" - }, - { - "title": "Aerosmith - Pink - Karaoke Version from Zoom Karaoke", - "id": "XRNs-79MM4c" - }, - { - "title": "Maroon 5 - Sunday Morning - Karaoke Version from Zoom Karaoke", - "id": "YDcrYp5lO5s" - }, - { - "title": "Aerosmith - Cryin' - Karaoke Version from Zoom Karaoke", - "id": "hfOTgMItrEQ" - }, - { - "title": "Maroon 5 - The Sun - Karaoke Version from Zoom Karaoke", - "id": "yPXYtwjAIuU" - }, - { - "title": "Maroon 5 - This Love - Karaoke Version from Zoom Karaoke", - "id": "xvqFiD0RipI" - }, - { - "title": "Keane - Sunshine - Karaoke Version from Zoom Karaoke", - "id": "w6JdTUQVh7g" - }, - { - "title": "Maroon 5 - Through With You - Karaoke Version from Zoom Karaoke", - "id": "sO0IL9exGdU" - }, - { - "title": "Keane - Somewhere Only We Know - Karaoke Version from Zoom Karaoke", - "id": "pu23Tdx9G1Q" - }, - { - "title": "Keane - Bedshaped - Karaoke Version from Zoom Karaoke", - "id": "peoGfH4_05A" - }, - { - "title": "Keane - She Has No Time - Karaoke Version from Zoom Karaoke", - "id": "kO1X9Di_iRc" - }, - { - "title": "Keane - Can't Stop Now - Karaoke Version from Zoom Karaoke", - "id": "i7UvUFwzrRI" - }, - { - "title": "Maroon 5 - Sweetest Goodbye - Karaoke Version from Zoom Karaoke", - "id": "cdyZL2B4RuE" - }, - { - "title": "Keane - Untitled 1 - Karaoke Version from Zoom Karaoke", - "id": "bgoqnz9NWTE" - }, - { - "title": "Aerosmith - Crazy - Karaoke Version from Zoom Karaoke", - "id": "Y22JlDm92nY" - }, - { - "title": "Keane - Your Eyes Open - Karaoke Version from Zoom Karaoke", - "id": "QeCjL23i51E" - }, - { - "title": "Maroon 5 - Tangled - Karaoke Version from Zoom Karaoke", - "id": "QGxpVvauRew" - }, - { - "title": "Keane - This Is The Last Time - Karaoke Version from Zoom Karaoke", - "id": "O3XRmVehwrs" - }, - { - "title": "Maroon 5 - Shiver - Karaoke Version from Zoom Karaoke", - "id": "ILREDnDbnvU" - }, - { - "title": "Keane - We Might As Well Be Strangers - Karaoke Version from Zoom Karaoke", - "id": "34T71tshSJo" - }, - { - "title": "The Drifters - Come On Over To My Place - Karaoke Version from Zoom Karaoke", - "id": "pFb7igjs1bM" - }, - { - "title": "The Kinks - Sunny Afternoon - Karaoke Version from Zoom Karaoke", - "id": "kxZavSsq0qU" - }, - { - "title": "The Drifters - Saturday Night At The Movies - Karaoke Version from Zoom Karaoke", - "id": "bO145Cf8tM4" - }, - { - "title": "The Kinks - You Really Got Me - Karaoke Version from Zoom Karaoke", - "id": "aoTpWcGCu24" - }, - { - "title": "Manfred Mann - My Name Is Jack - Karaoke Version from Zoom Karaoke", - "id": "WpjLlNM-9qc" - }, - { - "title": "Billy Ocean - Suddenly - Karaoke Version from Zoom Karaoke", - "id": "Dfvycp8PScU" - }, - { - "title": "Manfred Mann - Pretty Flamingo - Karaoke Version from Zoom Karaoke", - "id": "s9i8A1tx3w4" - }, - { - "title": "The Drifters - Like Sister And Brother - Karaoke Version from Zoom Karaoke", - "id": "pwjCvLK_CHU" - }, - { - "title": "Billy Ocean - Love Zone - Karaoke Version from Zoom Karaoke", - "id": "_NBxN5gMTak" - }, - { - "title": "Billy Ocean - Love Is Forever - Karaoke Version from Zoom Karaoke", - "id": "VY-S3CNAuxw" - }, - { - "title": "Maroon 5 - Not Coming Home - Karaoke Version from Zoom Karaoke", - "id": "HbmmaN7C8NM" - }, - { - "title": "The Kinks - Waterloo Sunset - Karaoke Version from Zoom Karaoke", - "id": "6YRkLEyD5w4" - }, - { - "title": "The Kinks - Tired Of Waiting For You - Karaoke Version from Zoom Karaoke", - "id": "1NN4RzTq_Bs" - }, - { - "title": "Billy Ocean - The Colour Of Love - Karaoke Version from Zoom Karaoke", - "id": "pMF61IrSRMA" - }, - { - "title": "The Drifters - Up On The Roof - Karaoke Version from Zoom Karaoke", - "id": "As7GmzKg3eI" - }, - { - "title": "The Drifters - Save The Last Dance For Me - Karaoke Version from Zoom Karaoke", - "id": "8NsyGNOq5og" - }, - { - "title": "Meat Loaf - Not A Dry Eye In The House - Karaoke Version from Zoom Karaoke", - "id": "yjcXEH64DwQ" - }, - { - "title": "Gene Pitney - Town Without Pity - Karaoke Version from Zoom Karaoke", - "id": "dwBY0zLZRXw" - }, - { - "title": "Gene Pitney - 24 Hours From Tulsa - Karaoke Version from Zoom Karaoke", - "id": "aMZLMSLy9oM" - }, - { - "title": "Meat Loaf - Bat Out Of Hell - Karaoke Version from Zoom Karaoke", - "id": "_5TCSy6bUiw" - }, - { - "title": "Meat Loaf - Modern Girl - Karaoke Version from Zoom Karaoke", - "id": "D-b3SpZF-mM" - }, - { - "title": "Meat Loaf - Dead Ringer For Love - Karaoke Version from Zoom Karaoke", - "id": "4JyFG327SnM" - }, - { - "title": "Meat Loaf - A Kiss Is A Terrible Thing To Waste - Karaoke Version from Zoom Karaoke", - "id": "0Uig0QG1NEk" - }, - { - "title": "Del Shannon - Swiss Maid - Karaoke Version from Zoom Karaoke", - "id": "Kc63mXicSXY" - }, - { - "title": "Meat Loaf - Paradise By The Dashboard Light - Karaoke Version from Zoom Karaoke", - "id": "Hhab58CV1Ko" - }, - { - "title": "Del Shannon - Keep Searchin' - Karaoke Version from Zoom Karaoke", - "id": "7aGnEmyvAcA" - }, - { - "title": "The Drifters - You're More Than A Number In My Little Red Book - Karaoke Version from Zoom", - "id": "dEuhvp3K0C0" - }, - { - "title": "The Drifters - Down On The Beach Tonight - Karaoke Version from Zoom Karaoke", - "id": "VI6Hjsu3p3o" - }, - { - "title": "The Drifters - Every Night's A Saturday Night With You - Karaoke Version from Zoom Karaoke", - "id": "RMua_j1snZQ" - }, - { - "title": "Billy Ocean - Get Outta My Dreams, Get Into My Car - Karaoke Version from Zoom Karaoke", - "id": "Xman1DTrMQU" - }, - { - "title": "The Drifters - Hello Happiness - Karaoke Version from Zoom Karaoke", - "id": "6roLjDwGiKM" - }, - { - "title": "Billy Ocean - L.O.D. (Love On Delivery) - Karaoke Version from Zoom Karaoke", - "id": "mS_sK0SPeF4" - }, - { - "title": "The Drifters - Kissin' In The Back Row Of The Movies - Karaoke Version from Zoom Karaoke", - "id": "KQ7SZks98GY" - }, - { - "title": "Billy Ocean - Love Really Hurts Without You - Karaoke Version from Zoom Karaoke", - "id": "EMMs0fWWmes" - }, - { - "title": "Del Shannon - Two Kinds Of Teardrops - Karaoke Version from Zoom Karaoke", - "id": "svf-dNum1QU" - }, - { - "title": "Billy Ocean - Loverboy - Karaoke Version from Zoom Karaoke", - "id": "kTy3pJxA_Wk" - }, - { - "title": "Del Shannon - Little Town Flirt - Karaoke Version from Zoom Karaoke", - "id": "GJy7ksGGRto" - }, - { - "title": "Billy Ocean - Red Light Spells Danger - Karaoke Version from Zoom Karaoke", - "id": "DbkodmHQfe8" - }, - { - "title": "The Drifters - There Goes My First Love - Karaoke Version from Zoom Karaoke", - "id": "2czo-UMw3X0" - }, - { - "title": "Ricky Nelson - Travellin' Man - Karaoke Version from Zoom Karaoke", - "id": "GlqIU-OLzwE" - }, - { - "title": "Ricky Nelson - Hello Mary Lou - Karaoke Version from Zoom Karaoke", - "id": "CfEtYybrc8Y" - }, - { - "title": "Darlene Love - Winter Wonderland - Karaoke Version from Zoom Karaoke", - "id": "oJc1bypa7Tw" - }, - { - "title": "Roy Orbison - I'm Hurtin' - Karaoke Version from Zoom Karaoke", - "id": "f2HSwxBqQxc" - }, - { - "title": "The Ronettes - Frosty The Snowman - Karaoke Version from Zoom Karaoke", - "id": "epOsrhdhev4" - }, - { - "title": "Roy Orbison - The Crowd - Karaoke Version from Zoom Karaoke", - "id": "bpNd4tLXstU" - }, - { - "title": "Del Shannon - Hats Off To Larry - Karaoke Version from Zoom Karaoke", - "id": "ajMaPuaWCp0" - }, - { - "title": "Johnny Mathis - When A Child Is Born - Karaoke Version from Zoom Karaoke", - "id": "WJEsLJAVg2A" - }, - { - "title": "Ricky Nelson - Poor Little Fool - Karaoke Version from Zoom Karaoke", - "id": "UGGyGT5YmCs" - }, - { - "title": "Ricky Nelson - Teenage Idol - Karaoke Version from Zoom Karaoke", - "id": "Ppycsf-kA-k" - }, - { - "title": "Del Shannon - Runaway - Karaoke Version from Zoom Karaoke", - "id": "OeOVgMDkNT8" - }, - { - "title": "Ricky Nelson - Garden Party - Karaoke Version from Zoom Karaoke", - "id": "AHzYanXzOjE" - }, - { - "title": "Queen - Thank God It's Christmas - Karaoke Version from Zoom Karaoke", - "id": "9_l3liryoLk" - }, - { - "title": "Ricky Nelson - Never Be Anyone Else But You - Karaoke Version from Zoom Karaoke", - "id": "21OhC8X5wWs" - }, - { - "title": "Ricky Nelson - It's Late - Karaoke Version from Zoom Karaoke", - "id": "2-WeYxq5FG4" - }, - { - "title": "Bing Crosby - White Christmas - Karaoke Version from Zoom Karaoke", - "id": "1p95RRWyac4" - }, - { - "title": "Roy Orbison - Falling - Karaoke Version from Zoom Karaoke", - "id": "zODNrHFNa9Q" - }, - { - "title": "Roy Orbison - Lana - Karaoke Version from Zoom Karaoke", - "id": "YzyAmhJ_XPE" - }, - { - "title": "Ricky Nelson - Stood Up - Karaoke Version from Zoom Karaoke", - "id": "2YEiFM0mqjY" - }, - { - "title": "Aerosmith - Rag Doll - Karaoke Version from Zoom Karaoke", - "id": "woay7s76tDg" - }, - { - "title": "Aerosmith - Love In An Elevator - Karaoke Version from Zoom Karaoke", - "id": "gpasEAw1RYQ" - }, - { - "title": "Ricky Nelson - Fools Rush In - Karaoke Version from Zoom Karaoke", - "id": "e0Rv3czX2P0" - }, - { - "title": "Roy Orbison - Goodnight - Karaoke Version from Zoom Karaoke", - "id": "ctsdpaPOmRs" - }, - { - "title": "Ricky Nelson - Believe What You Say - Karaoke Version from Zoom Karaoke", - "id": "YZa_g6rGH_4" - }, - { - "title": "Ricky Nelson - Be Bop Baby - Karaoke Version from Zoom Karaoke", - "id": "W1yiHZEIvGY" - }, - { - "title": "Ricky Nelson - I'm Walkin' - Karaoke Version from Zoom Karaoke", - "id": "QCXKLb_jUOo" - }, - { - "title": "Guns 'N' Roses - Knockin' On Heaven's Door - Karaoke Version from Zoom Karaoke", - "id": "PdSQfMp2Hgs" - }, - { - "title": "Roy Orbison - Borne On The Wind - Karaoke Version from Zoom Karaoke", - "id": "5tshSHtfJ38" - }, - { - "title": "Ed Sheeran - Afterglow - Karaoke Version from Zoom Karaoke", - "id": "POnaNL5bTrM" - }, - { - "title": "Chris Rea - Let's Dance - Karaoke Version from Zoom Karaoke", - "id": "HDJuv_z6gWw" - }, - { - "title": "Chris Rea - Julia - Karaoke Version from Zoom Karaoke", - "id": "uRsMPQXD_ZE" - }, - { - "title": "T.V. Theme - Family Ness (You'll Never Find A Nessie In The Zoo) - Karaoke Version from Zoom Karaoke", - "id": "yMGquKbaLY8" - }, - { - "title": "Frankie Vaughan - The Garden Of Eden - Karaoke Version from Zoom Karaoke", - "id": "gIvCt5qlaiU" - }, - { - "title": "Manfred Mann's Earth Band - Davy's On The Road Again - Karaoke Version from Zoom Karaoke", - "id": "Rio_lHuuKuE" - }, - { - "title": "T.V. Theme - Red Dwarf - Karaoke Version from Zoom Karaoke", - "id": "FJwQZcP6uc0" - }, - { - "title": "The Wonder Stuff - The Size Of A Cow - Karaoke Version from Zoom Karaoke", - "id": "gB5DHa4ATcM" - }, - { - "title": "T.V. Theme - Minder (Dennis Waterman) - Karaoke Version from Zoom Karaoke", - "id": "c8Sz9CkjtOQ" - }, - { - "title": "Del Amitri - Spit In The Rain - Karaoke Version from Zoom Karaoke", - "id": "aUFVAa1rnho" - }, - { - "title": "Oasis - The Masterplan - Karaoke Version from Zoom Karaoke", - "id": "m0fP9Ygk290" - }, - { - "title": "The Seahorses - Love Is The Law - Karaoke Version from Zoom Karaoke", - "id": "Es_oMo4czrg" - }, - { - "title": "The Smiths - This Charming Man - Karaoke Version from Zoom Karaoke", - "id": "i3IhOVFWcCY" - }, - { - "title": "T.V. Theme - One Foot In The Grave (Eric Idle) - Karaoke Version from Zoom Karaoke", - "id": "XEzkP_oScl8" - }, - { - "title": "The Bachelors - I Wouldn't Trade You For The World - Karaoke Version from Zoom Karaoke", - "id": "RhLE7p3-Fq4" - }, - { - "title": "T.V. Theme - Max And Paddy's Road To Nowhere - Karaoke Version from Zoom Karaoke", - "id": "GkxQmHIotXg" - }, - { - "title": "Devo - Girl U Want - Karaoke Version from Zoom Karaoke", - "id": "qQU2zckTMdA" - }, - { - "title": "McGuinness Flint - When I'm Dead And Gone - Karaoke Version from Zoom Karaoke", - "id": "fsEA6ofC3o4" - }, - { - "title": "Danny Wilson - Mary's Prayer - Karaoke Version from Zoom Karaoke", - "id": "WZJml7QUW1k" - }, - { - "title": "The Primitives - Crash - Karaoke Version from Zoom Karaoke", - "id": "ObsIGtST3ZM" - }, - { - "title": "Bruce Springsteen - Sherry Darling - Karaoke Version from Zoom Karaoke", - "id": "Dzywb1QIxS8" - }, - { - "title": "Mary Hopkin - Goodbye - Karaoke Version from Zoom Karaoke", - "id": "B4TqtrMfKhY" - }, - { - "title": "T. Rex - I Love To Boogie - Karaoke Version from Zoom Karaoke", - "id": "5HkQsTM1rfc" - }, - { - "title": "Kirsty MacColl - There's A Guy Works Down The Chip Shop Swears He's Elvis - Karaoke Version", - "id": "FTgIdCmjVRQ" - }, - { - "title": "Oasis - She's Electric - Karaoke Version from Zoom Karaoke", - "id": "x1hNO7Z8iWc" - }, - { - "title": "Tom Jones - My Mother's Eyes - Karaoke Version from Zoom Karaoke", - "id": "kDuyyeZQt0g" - }, - { - "title": "Nik Kershaw - The Riddle - Karaoke Version from Zoom Karaoke", - "id": "eth6wVglUn4" - }, - { - "title": "Alan Price Set - Don't Stop The Carnival - Karaoke Version from Zoom Karaoke", - "id": "btRmcpLWkD0" - }, - { - "title": "Mental As Anything - Live It Up - Karaoke Version from Zoom Karaoke", - "id": "ZdAf8Q08ajM" - }, - { - "title": "T.V. Theme - Only Fools And Horses/Hooky Street (John Sullivan) - Karaoke Version from Zoom Karaoke", - "id": "Qpp4Z62qOzc" - }, - { - "title": "Devo - Beautiful World - Karaoke Version from Zoom Karaoke", - "id": "M6cyAYzzNTc" - }, - { - "title": "Hue And Cry - Labour Of Love - Karaoke Version from Zoom Karaoke", - "id": "Fl2HlAlacHI" - }, - { - "title": "Peter Sarstedt - Frozen Orange Juice - Karaoke Version from Zoom Karaoke", - "id": "EMICrP6VXms" - }, - { - "title": "Modern Romance - Best Years Of Our Lives - Karaoke Version from Zoom Karaoke", - "id": "DWq44bByZeA" - }, - { - "title": "Joe Fagin - That's Livin' Alright - Karaoke Version from Zoom Karaoke", - "id": "4BsaEDJwDm8" - }, - { - "title": "Tom Jones - It's Not Unusual - Karaoke Version from Zoom Karaoke", - "id": "ifRysKdRDNM" - }, - { - "title": "T.V. Theme - Hi-De-Hi (Holiday Rock) Paul Shane - Karaoke Version from Zoom Karaoke", - "id": "fngQ9cQkr_s" - }, - { - "title": "Tom Jones - Delilah - Karaoke Version from Zoom Karaoke", - "id": "R4_x2a-4RwQ" - }, - { - "title": "T.V. Theme - Dad's Army (Bud Flanagan) - Karaoke Version from Zoom Karaoke", - "id": "AaPCfx-jVwk" - }, - { - "title": "Dr Hook - When You're In Love With A Beautiful Woman - Karaoke Version from Zoom Karaoke", - "id": "7xp-yo6hFD4" - }, - { - "title": "Dr Hook - Better Love Next Time - Karaoke Version from Zoom Karaoke", - "id": "2__hQIq7BT8" - }, - { - "title": "Tom Jones - I Who Have Nothing - Karaoke Version from Zoom Karaoke", - "id": "_7aRODhTe58" - }, - { - "title": "T.V. Theme - Bread (Home by David Mackay) - Karaoke Version from Zoom Karaoke", - "id": "7Hd7KIkgw0c" - }, - { - "title": "Tom Jones - I'm Coming Home - Karaoke Version from Zoom Karaoke", - "id": "edVgMgCvtC8" - }, - { - "title": "T.V. Theme - Baywatch (I'm Always Here by Jimi Jamison) - Karaoke Version from Zoom Karaoke", - "id": "WaDiBFH4_qQ" - }, - { - "title": "Bobby Vee - How Many Tears - Karaoke Version from Zoom Karaoke", - "id": "MvtReV-v1o0" - }, - { - "title": "T.V. Theme - Jim'll Fix It - Karaoke Version from Zoom Karaoke", - "id": "9ha-nzpNN8I" - }, - { - "title": "Dexy's Midnight Runners - Because Of You (Brush Strokes Theme) - Karaoke Version from Zoom Karaoke", - "id": "xyyBsSY70Rk" - }, - { - "title": "Jim Diamond - Hi Ho Silver (Theme from 'Boon') - Karaoke Version from Zoom Karaoke", - "id": "wkzt4yw6aXw" - }, - { - "title": "Oasis - Half The World Away (Royle Family Theme) - Karaoke Version from Zoom Karaoke", - "id": "tiIoASMAjxM" - }, - { - "title": "Dr Hook - A Little Bit More - Karaoke Version from Zoom Karaoke", - "id": "svLL0NMZm8A" - }, - { - "title": "Dr Hook - I Don't Want To Be Alone Tonight - Karaoke Version from Zoom Karaoke", - "id": "p-MUIwFjmFI" - }, - { - "title": "Tom Jones - Green Green Grass Of Home - Karaoke Version from Zoom Karaoke", - "id": "eDKMRSbW5P8" - }, - { - "title": "Tom Jones - A Boy From Nowhere - Karaoke Version from Zoom Karaoke", - "id": "_T5xj5uI8Ig" - }, - { - "title": "Tom Jones - Love Me Tonight - Karaoke Version from Zoom Karaoke", - "id": "X1x5awo6WeQ" - }, - { - "title": "Tony Christie - Is This The Way To Amarillo - Karaoke Version from Zoom Karaoke", - "id": "Ss6DH9en7OA" - }, - { - "title": "Tom Jones - Till - Karaoke Version from Zoom Karaoke", - "id": "RCn1C5RTulU" - }, - { - "title": "Tom Jones - I'll Never Fall In Love Again - Karaoke Version from Zoom Karaoke", - "id": "1N8maPav8vY" - }, - { - "title": "Sarah Brightman & Hot Gossip - I Lost My Heart To A Starship Trooper - Karaoke Version", - "id": "-lkdpkL6EgQ" - }, - { - "title": "Dr Hook - Years From Now - Karaoke Version from Zoom Karaoke", - "id": "w_jCT8dcaOc" - }, - { - "title": "Tom Jones - Funny Familiar Forgotten Feelings - Karaoke Version from Zoom Karaoke", - "id": "dfLYnZi2QtI" - }, - { - "title": "Dr Hook - Sharing The Night Together - Karaoke Version from Zoom Karaoke", - "id": "QaossStQW4k" - }, - { - "title": "The Rembrandts - I'll Be There For You ('Friends' TV Theme) - Karaoke Version from Zoom Karaoke", - "id": "7Nz9LmtGsxs" - }, - { - "title": "Tom Jones - Help Yourself - Karaoke Version from Zoom Karaoke", - "id": "Uh4-CQRge1c" - }, - { - "title": "Dr Hook - Sexy Eyes - Karaoke Version from Zoom Karaoke", - "id": "Qs1p3zwFleA" - }, - { - "title": "The Blues Brothers - Gimme Some Lovin' - Karaoke Version from Zoom Karaoke", - "id": "hmRxmb5d6uc" - }, - { - "title": "Stealers Wheel - Stuck In The Middle With You - Karaoke Version from Zoom Karaoke", - "id": "raBYl43d_pw" - }, - { - "title": "Dr Hook - Sylvia's Mother - Karaoke Version from Zoom Karaoke", - "id": "pWdvghqd_Hc" - }, - { - "title": "The Blues Brothers - Who's Making Love - Karaoke Version from Zoom Karaoke", - "id": "WxJQ2CUxpag" - }, - { - "title": "The Blues Brothers - Minnie The Moocher - Karaoke Version from Zoom Karaoke", - "id": "0N3v1nqd50Y" - }, - { - "title": "Bobby Vee - Rubber Ball - Karaoke Version from Zoom Karaoke", - "id": "ZGTNp7SPA_A" - }, - { - "title": "Dr Hook - Only Sixteen - Karaoke Version from Zoom Karaoke", - "id": "HFmBigxlxAA" - }, - { - "title": "Bobby Vee - More Than I Can Say - Karaoke Version from Zoom Karaoke", - "id": "xOBQ9OiwFCc" - }, - { - "title": "Rick Astley - Together Forever - Karaoke Version from Zoom Karaoke", - "id": "aSJlquUtnd0" - }, - { - "title": "The Blues Brothers - Do You Love Me - Karaoke Version from Zoom Karaoke", - "id": "S0FGIlYWUSs" - }, - { - "title": "Bobby Vee - Please Don't Ask About Barbara - Karaoke Version from Zoom Karaoke", - "id": "OTdAJ1yXD54" - }, - { - "title": "The Blues Brothers - Hey Bartender - Karaoke Version from Zoom Karaoke", - "id": "G6Wl6vBKLsk" - }, - { - "title": "Jeff Beck - Hi Ho Silver Lining - Karaoke Version from Zoom Karaoke", - "id": "EknAy1Z_nSk" - }, - { - "title": "Eddie Cochran - Summertime Blues - Karaoke Version from Zoom Karaoke", - "id": "7nT8CFAPgCw" - }, - { - "title": "Bobby Vee - Stayin' In - Karaoke Version from Zoom Karaoke", - "id": "w4gwylaw8G4" - }, - { - "title": "The Blues Brothers - Rawhide - Karaoke Version from Zoom Karaoke", - "id": "f0yoh7ZemN0" - }, - { - "title": "The Blues Brothers - She Caught The Katy - Karaoke Version from Zoom Karaoke", - "id": "WRWNcFgTR-w" - }, - { - "title": "Bobby Vee - Come Back When You Grow Up - Karaoke Version from Zoom Karaoke", - "id": "9z_JpJT4DPM" - }, - { - "title": "The Blues Brothers - Everybody Needs Somebody - Karaoke Version from Zoom Karaoke", - "id": "7OO0mYaNk8U" - }, - { - "title": "The Blues Brothers - 6345-789 - Karaoke Version from Zoom Karaoke", - "id": "fIG3VJjqZsk" - }, - { - "title": "Dion - Runaround Sue - Karaoke Version from Zoom Karaoke", - "id": "UDXsU2XRuVo" - }, - { - "title": "Bobby Vee - Sharing You - Karaoke Version from Zoom Karaoke", - "id": "6qAwwD3-tdA" - }, - { - "title": "Bill Haley & The Comets - Rock Around The Clock - Karaoke Version from Zoom Karaoke", - "id": "IwKOJ3LAvZQ" - }, - { - "title": "Chuck Berry - Johnny B Goode - Karaoke Version from Zoom Karaoke", - "id": "6XoTmTFtIJs" - }, - { - "title": "The Blues Brothers - Sweet Home Chicago - Karaoke Version from Zoom Karaoke", - "id": "KXgo6sLPttc" - }, - { - "title": "Eva Cassidy - Cheek To Cheek - Karaoke Version from Zoom Karaoke", - "id": "PjNNPgd2ntM" - }, - { - "title": "Bobby Vee - Devil Or Angel - Karaoke Version from Zoom Karaoke", - "id": "IomlEAkuJi8" - }, - { - "title": "Matchbox - When You Ask About Love - Karaoke Version from Zoom Karaoke", - "id": "GmeQTkFzErM" - }, - { - "title": "The Blues Brothers - Soul Man - Karaoke Version from Zoom Karaoke", - "id": "BfutIKJZqIg" - }, - { - "title": "The Blues Brothers - Shake A Tailfeather - Karaoke Version from Zoom Karaoke", - "id": "2B9DMilET-0" - }, - { - "title": "Leo Sayer - You Make Me Feel Like Dancing - Karaoke Version from Zoom Karaoke", - "id": "lIAz8eoHKDs" - }, - { - "title": "Elvis Presley - His Latest Flame - Karaoke Version from Zoom Karaoke", - "id": "qosuONAgkcs" - }, - { - "title": "Elvis Presley - Wooden Heart - Karaoke Version from Zoom Karaoke", - "id": "cCMXBf6gfEk" - }, - { - "title": "Chicago - If You Leave Me Now - Karaoke Version from Zoom Karaoke", - "id": "Kf60p5uQKwI" - }, - { - "title": "Neil Diamond - Heartlight - Karaoke Version from Zoom Karaoke", - "id": "BWirFHQ6RLw" - }, - { - "title": "Robbie Williams - Rock DJ - Karaoke Version from Zoom Karaoke", - "id": "9h5Z2UISS9g" - }, - { - "title": "Elvis Presley - Don't - Karaoke Version from Zoom Karaoke", - "id": "091Nz-TAPW8" - }, - { - "title": "Elvis Presley - Suspicion - Karaoke Version from Zoom Karaoke", - "id": "wfkXHsm1Y7Q" - }, - { - "title": "The Everly Brothers - Walk Right Back - Karaoke Version from Zoom Karaoke", - "id": "w6Tox6rzkKc" - }, - { - "title": "Cliff Richard - Theme For A Dream - Karaoke Version from Zoom Karaoke", - "id": "rIe1a1dCz1k" - }, - { - "title": "Neil Diamond - Girl, You'll Be A Woman Soon - Karaoke Version from Zoom Karaoke", - "id": "g8o1Tt2lsEA" - }, - { - "title": "Elvis Presley - Hound Dog - Karaoke Version from Zoom Karaoke", - "id": "_BY8ouXph1E" - }, - { - "title": "The Four Seasons - December '63 (Oh What A Night) - Karaoke Version from Zoom Karaoke", - "id": "Ns_J17PYFTw" - }, - { - "title": "Neil Diamond - I Amโ€ฆ I Said - Karaoke Version from Zoom Karaoke", - "id": "NqKO9XckCGg" - }, - { - "title": "Rod Stewart - The Killing Of Georgie - Karaoke Version from Zoom Karaoke", - "id": "DUPkhs8qJp4" - }, - { - "title": "Neil Diamond - America - Karaoke Version from Zoom Karaoke", - "id": "AuIXJyflxM0" - }, - { - "title": "David Essex - Gonna Make You A Star - Karaoke Version from Zoom Karaoke", - "id": "u8oQypFhseM" - }, - { - "title": "Middle Of The Road - Chirpy Chirpy Cheep Cheep - Karaoke Version from Zoom Karaoke", - "id": "zGwSZb94fv4" - }, - { - "title": "The Jackson 5 - I Want You Back - Karaoke Version from Zoom Karaoke", - "id": "UM35RWiUs3k" - }, - { - "title": "The Rubettes - Sugar Baby Love - Karaoke Version from Zoom Karaoke", - "id": "MB6pq7Nt6pA" - }, - { - "title": "Elvis Presley - Burning Love - Karaoke Version from Zoom Karaoke", - "id": "IwYZD_8U81U" - }, - { - "title": "Neil Diamond - Forever In Blue Jeans - Karaoke Version from Zoom Karaoke", - "id": "DvIdPfza9vA" - }, - { - "title": "Donny Osmond - Puppy Love - Karaoke Version from Zoom Karaoke", - "id": "CzeKE5vmgbk" - }, - { - "title": "Queen - Don't Stop Me Now - Karaoke Version from Zoom Karaoke", - "id": "5yebPm09eM0" - }, - { - "title": "The Real Thing - You To Me Are Everything - Karaoke Version from Zoom Karaoke", - "id": "LObMrW82eJM" - }, - { - "title": "Elvis Presley - Suspicious Minds - Karaoke Version from Zoom Karaoke", - "id": "C5Y0ZjUDDnE" - }, - { - "title": "Dawn - Knock Three Times - Karaoke Version from Zoom Karaoke", - "id": "8Z0yvfsN-nw" - }, - { - "title": "Mud - Tiger Feet - Karaoke Version from Zoom Karaoke", - "id": "63BqVrEKZMI" - }, - { - "title": "Candi Staton - Young Hearts Run Free - Karaoke Version from Zoom Karaoke", - "id": "tc8_5b3LxQk" - }, - { - "title": "Status Quo - Down Down - Karaoke Version from Zoom Karaoke", - "id": "i8Up10HMW-o" - }, - { - "title": "The Carpenters - Top Of The World - Karaoke Version from Zoom Karaoke", - "id": "Sh9odxiGRgc" - }, - { - "title": "Neil Diamond And Barbra Streisand - You Don't Bring Me Flowers - Karaoke Version from Zoom Karaoke", - "id": "N2jJ3ZMSx8w" - }, - { - "title": "Neil Diamond - Love On The Rocks - Karaoke Version from Zoom Karaoke", - "id": "3DUYSB-iahQ" - }, - { - "title": "Elvis Presley - (Let Me Be Your) Teddy Bear - Karaoke Version from Zoom Karaoke", - "id": "vPc0dB-ubEs" - }, - { - "title": "Hot Chocolate - You Sexy Thing - Karaoke Version from Zoom Karaoke", - "id": "qu6cwBt985s" - }, - { - "title": "Sweet - Wig Wam Bam - Karaoke Version from Zoom Karaoke", - "id": "8l3-KSvW6ek" - }, - { - "title": "The Three Degrees - When Will I See You Again - Karaoke Version from Zoom Karaoke", - "id": "vxACyLPx_Ng" - }, - { - "title": "T. Rex - Get It On - Karaoke Version from Zoom Karaoke", - "id": "lrpST0tgBME" - }, - { - "title": "Elvis Presley - Always On My Mind - Karaoke Version from Zoom Karaoke", - "id": "Q05ZP7ne0K4" - }, - { - "title": "Alvin Stardust - My-Coo-Ca-Choo - Karaoke Version from Zoom Karaoke", - "id": "PlMOpLac7dA" - }, - { - "title": "Neil Diamond - September Morn - Karaoke Version from Zoom Karaoke", - "id": "5TomlIfhQpQ" - }, - { - "title": "The Bay City Rollers - Bye Bye Baby - Karaoke Version from Zoom Karaoke", - "id": "3Sip-uRWTlM" - }, - { - "title": "Neil Diamond - Hello Again - Karaoke Version from Zoom Karaoke", - "id": "0-aXjVYMH_8" - }, - { - "title": "Elvis Presley - It's Now Or Never - Karaoke Version from Zoom Karaoke", - "id": "sh6iBn-q8WI" - }, - { - "title": "Bryan Ferry - Let's Stick Together - Karaoke Version from Zoom Karaoke", - "id": "szwO23zKrhw" - }, - { - "title": "Free - All Right Now - Karaoke Version from Zoom Karaoke", - "id": "lTMYYXAGVos" - }, - { - "title": "Steve Harley & Cockney Rebel - Make Me Smile (Come Up And See Me) - Karaoke Version from Zoom", - "id": "WZ3LCgfQQLA" - }, - { - "title": "Smokie - Living Next Door To Alice - Karaoke Version from Zoom Karaoke", - "id": "iQT14bxT6zc" - }, - { - "title": "Rod Stewart - Maggie May - Karaoke Version from Zoom Karaoke", - "id": "dpy1Lj2DELA" - }, - { - "title": "Grease - You're The One That I Want - Karaoke Version from Zoom Karaoke", - "id": "XLXMaz6iwiE" - }, - { - "title": "The Everly Brothers - Cathy's Clown - Karaoke Version from Zoom Karaoke", - "id": "oY5tge5uz_Q" - }, - { - "title": "The Rolling Stones - Brown Sugar - Karaoke Version from Zoom Karaoke", - "id": "T_-gdkIrBjQ" - }, - { - "title": "Sweet - Blockbuster - Karaoke Version from Zoom Karaoke", - "id": "TRlxj15ZOLk" - }, - { - "title": "Don McLean - American Pie - Karaoke Version from Zoom Karaoke", - "id": "Ovqfx_PqwpQ" - }, - { - "title": "Slade - Cum On Feel The Noize - Karaoke Version from Zoom Karaoke", - "id": "6RWL5IWWCeo" - }, - { - "title": "Elvis Presley - Way Down - Karaoke Version from Zoom Karaoke", - "id": "YogUgX-be_0" - }, - { - "title": "Queen - Bohemian Rhapsody - Karaoke Version from Zoom Karaoke", - "id": "yvEcMrstp80" - }, - { - "title": "Tommy Roe - The Folk Singer - Karaoke Version from Zoom Karaoke", - "id": "o2HQ_4FMlu4" - }, - { - "title": "Elvis Costello - Oliver's Army - Karaoke Version from Zoom Karaoke", - "id": "f4ggB7ExszA" - }, - { - "title": "Squeeze - Up The Junction - Karaoke Version from Zoom Karaoke", - "id": "_I6NHqbioUY" - }, - { - "title": "David Soul - Silver Lady - Karaoke Version from Zoom Karaoke", - "id": "ND-3P_2Kh68" - }, - { - "title": "The Everly Brothers - When Will I Be Loved - Karaoke Version from Zoom Karaoke", - "id": "6SspgBiW3zk" - }, - { - "title": "Leo Sayer - When I Need You - Karaoke Version from Zoom Karaoke", - "id": "vC9ocD1OwqY" - }, - { - "title": "Craig Douglas - Pretty Blue Eyes - Karaoke Version from Zoom Karaoke", - "id": "st8QYzFOx4A" - }, - { - "title": "Status Quo - Rockin' All Over The World - Karaoke Version from Zoom Karaoke", - "id": "lBkE3SxUmRg" - }, - { - "title": "Wings - Mull Of Kintyre - Karaoke Version from Zoom Karaoke", - "id": "f67GOG8CoPM" - }, - { - "title": "Gloria Gaynor - I Will Survive - Karaoke Version from Zoom Karaoke", - "id": "ehqhfZvaPNM" - }, - { - "title": "Pinkerton's Assorted Colours - Mirror Mirror - Karaoke Version from Zoom Karaoke", - "id": "bSMxYMpqRus" - }, - { - "title": "Karen Young - Nobody's Child - Karaoke Version from Zoom Karaoke", - "id": "_yL85ay7jN4" - }, - { - "title": "Alan Price - Jarrow Song - Karaoke Version from Zoom Karaoke", - "id": "Rra8nd5fnIs" - }, - { - "title": "Adam Faith - Someone Else's Baby - Karaoke Version from Zoom Karaoke", - "id": "LxgwQUv-YeA" - }, - { - "title": "Brotherhood Of Man - Angelo - Karaoke Version from Zoom Karaoke", - "id": "HaHzEbkr5bw" - }, - { - "title": "Rod Stewart - I Don't Want To Talk About It - Karaoke Version from Zoom Karaoke", - "id": "9sXkpsyyjFE" - }, - { - "title": "The Pretenders - Brass In Pocket - Karaoke Version from Zoom Karaoke", - "id": "9S7DS-cpmFQ" - }, - { - "title": "Hot Chocolate - So You Win Again - Karaoke Version from Zoom Karaoke", - "id": "6CDD13ifxqc" - }, - { - "title": "Mary Hopkin - Knock Knock Who's There - Karaoke Version from Zoom Karaoke", - "id": "1hVMJSgQlT4" - }, - { - "title": "Baccara - Yes Sir I Can Boogie - Karaoke Version from Zoom Karaoke", - "id": "1THEOLerYMI" - }, - { - "title": "The Buggles - Video Killed The Radio Star (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "-lO48GDCKlU" - }, - { - "title": "Donna Summer - I Feel Love - Karaoke Version from Zoom Karaoke", - "id": "PO6sLC_cZiU" - }, - { - "title": "Wayne Fontana - Pamela Pamela - Karaoke Version from Zoom Karaoke", - "id": "0hYAQITHM7s" - }, - { - "title": "Mama Cass - It's Getting Better - Karaoke Version from Zoom Karaoke", - "id": "bul6GpFJRio" - }, - { - "title": "Queen - Crazy Little Thing Called Love - Karaoke Version from Zoom Karaoke", - "id": "ZsDfFDNqzcI" - }, - { - "title": "Manhattan Transfer - Chanson D'Amour - Karaoke Version from Zoom Karaoke", - "id": "3lQjB3N-6_Q" - }, - { - "title": "Frank Sinatra And Celeste Holm - Who Wants To Be A Millionaire - Karaoke Version from Zoom", - "id": "xDsPUR7-e0E" - }, - { - "title": "Whitesnake - Here I Go Again - Karaoke Version from Zoom Karaoke", - "id": "THPgkVoBWIU" - }, - { - "title": "The Human League - Don't You Want Me - Karaoke Version from Zoom Karaoke", - "id": "RXCCXdSLB_4" - }, - { - "title": "Feargal Sharkey - A Good Heart - Karaoke Version from Zoom Karaoke", - "id": "HJ1wAGs3u_A" - }, - { - "title": "Mel And Kim - Respectable - Karaoke Version from Zoom Karaoke", - "id": "B7SgCdCvP-I" - }, - { - "title": "Tiffany - I Think We're Alone Now - Karaoke Version from Zoom Karaoke", - "id": "382-l8AT-bM" - }, - { - "title": "Dr Hook - Knowing She's There - Karaoke Version from Zoom Karaoke", - "id": "gcoNNL5vSns" - }, - { - "title": "INXS - Mystify - Karaoke Version from Zoom Karaoke", - "id": "dUKybDOq5Jg" - }, - { - "title": "Malcolm Roberts - Love Is All - Karaoke Version from Zoom Karaoke", - "id": "YvwxSusrlaQ" - }, - { - "title": "Queen - Save Me - Karaoke Version from Zoom Karaoke", - "id": "wQb_7jtfPrE" - }, - { - "title": "The Carpenters - Rainy Days And Mondays - Karaoke Version from Zoom Karaoke", - "id": "o6rBk5g_aSg" - }, - { - "title": "Cliff Richard - High Class Baby - Karaoke Version from Zoom Karaoke", - "id": "fLM9D_vbW8s" - }, - { - "title": "Wham! - If You Were There - Karaoke Version from Zoom Karaoke", - "id": "YUwAyvgK2J4" - }, - { - "title": "Guy Mitchell - Heartaches By The Number - Karaoke Version from Zoom Karaoke", - "id": "LaDlVkswDM0" - }, - { - "title": "Jerry Keller - Here Comes Summer - Karaoke Version from Zoom Karaoke", - "id": "ty-x0ApeE2U" - }, - { - "title": "Whitesnake - Is This Love - Karaoke Version from Zoom Karaoke", - "id": "ciHLWn_IXVs" - }, - { - "title": "Kylie Minogue - Step Back In Time - Karaoke Version from Zoom Karaoke", - "id": "pI6WYsnIW0g" - }, - { - "title": "Cliff Richard - Fall In Love With You - Karaoke Version from Zoom Karaoke", - "id": "wSwx6qNS4QA" - }, - { - "title": "Cliff Richard - Living Doll - Karaoke Version from Zoom Karaoke", - "id": "iazh1fNfSy0" - }, - { - "title": "Dr Hook - Storms Never Last - Karaoke Version from Zoom Karaoke", - "id": "DKu5y2Qdugo" - }, - { - "title": "Kylie Minogue - Give Me Just A Little More Time - Karaoke Version from Zoom Karaoke", - "id": "ww0uJYs9IKI" - }, - { - "title": "The Carpenters - Hurting Each Other - Karaoke Version from Zoom Karaoke", - "id": "b7jrP9aN97M" - }, - { - "title": "The Poni-Tails - Born Too Late - Karaoke Version from Zoom Karaoke", - "id": "_deI7X5N-94" - }, - { - "title": "Kirsty MacColl - A New England - Karaoke Version from Zoom Karaoke", - "id": "W9hSe2Wp2uQ" - }, - { - "title": "Benny Hill - Ernie (The Fastest Milkman In The West) - Karaoke Version from Zoom Karaoke", - "id": "Uj2CoVta1lU" - }, - { - "title": "Emile Ford & The Checkmates - What Do You Want To Make Those Eyes At Me For - Karaoke Version", - "id": "P_FGw23Vhok" - }, - { - "title": "Joe Dolan - Make Me An Island - Karaoke Version from Zoom Karaoke", - "id": "OI_s3sZmqpU" - }, - { - "title": "The Nolans - Attention To Me - Karaoke Version from Zoom Karaoke", - "id": "N54tCUUOa9Y" - }, - { - "title": "Queen - Play The Game - Karaoke Version from Zoom Karaoke", - "id": "L524nR_0KeY" - }, - { - "title": "The Carpenters - Superstar - Karaoke Version from Zoom Karaoke", - "id": "Jkq0qj3tMoE" - }, - { - "title": "The Carpenters - Please Mr Postman - Karaoke Version from Zoom Karaoke", - "id": "EUBxNwUJPGc" - }, - { - "title": "Harpo - Movie Star - Karaoke Version from Zoom Karaoke", - "id": "978Eo1A2XpU" - }, - { - "title": "The Carpenters - All You Get From Love Is A Love Song - Karaoke Version from Zoom Karaoke", - "id": "67i9CF5AuwU" - }, - { - "title": "The Kinks - Lola - Karaoke Version from Zoom Karaoke", - "id": "2uuDB-GhCMc" - }, - { - "title": "10cc - I'm Not In Love - Karaoke Version from Zoom Karaoke", - "id": "MowUlOz1nDY" - }, - { - "title": "Gordon Lightfoot - If You Could Read My Mind - Karaoke Version from Zoom Karaoke", - "id": "9319mWiYoC0" - }, - { - "title": "The Chiffons - Sweet Talkin' Guy - Karaoke Version from Zoom Karaoke (Old Version)", - "id": "zFDuHZMc628" - }, - { - "title": "Roy Orbison - Claudette - Karaoke Version from Zoom Karaoke", - "id": "pJ1GXA5pPLE" - }, - { - "title": "Billy J Kramer & The Dakotas - I'll Keep You Satisfied - Karaoke Version from Zoom Karaoke", - "id": "kWSrw5g8npw" - }, - { - "title": "Tammy Wynette - Stand By Your Man - Karaoke Version from Zoom Karaoke", - "id": "eULsCu21dnU" - }, - { - "title": "Luther Vandross - Dance With My Father - Karaoke Version from Zoom Karaoke", - "id": "eBo_Qgx8yiY" - }, - { - "title": "Rod Stewart - Sailing - Karaoke Version from Zoom Karaoke", - "id": "YZUilAhr08Y" - }, - { - "title": "Pilot - January - Karaoke Version from Zoom Karaoke", - "id": "X80-XGrLoLo" - }, - { - "title": "Dusty Springfield - The Look Of Love - Karaoke Version from Zoom Karaoke", - "id": "RvYCvVfzuXw" - }, - { - "title": "Joe Dolan - You're Such A Good Looking Woman - Karaoke Version from Zoom Karaoke", - "id": "FG_JnKLKJUU" - }, - { - "title": "David Essex - Hold Me Close - Karaoke Version from Zoom Karaoke", - "id": "tj1H9mDG5Jo" - }, - { - "title": "The Stylistics - Can't Give You Anything (But My Love) - Karaoke Version from Zoom Karaoke", - "id": "rMBOg6sJLn0" - }, - { - "title": "Martha & The Vandellas - Jimmy Mack - Karaoke Version from Zoom Karaoke", - "id": "qbTex4EKAIk" - }, - { - "title": "The Supremes - Come See About Me - Karaoke Version from Zoom Karaoke", - "id": "ovkWvo6k5Nw" - }, - { - "title": "The Supremes - Where Did Our Love Go - Karaoke Version from Zoom Karaoke", - "id": "k8zyJLe8ldE" - }, - { - "title": "Typically Tropical - Barbados - Karaoke Version from Zoom Karaoke", - "id": "iHgsjV-SCdI" - }, - { - "title": "The Crystals - He's A Rebel - Karaoke Version from Zoom Karaoke", - "id": "brbTMeOyJu0" - }, - { - "title": "The Chiffons - He's So Fine - Karaoke Version from Zoom Karaoke", - "id": "SGKs0bcjCiI" - }, - { - "title": "The Supremes - The Happening - Karaoke Version from Zoom Karaoke", - "id": "S0S8Q3Gcrkk" - }, - { - "title": "Martha & The Vandellas - Dancing In The Street - Karaoke Version from Zoom Karaoke", - "id": "HtuY362GKL4" - }, - { - "title": "The Crystals - Da Doo Ron Ron - Karaoke Version from Zoom Karaoke", - "id": "HAQ8gW9VAxo" - }, - { - "title": "Mary Wells - My Guy - Karaoke Version from Zoom Karaoke", - "id": "7sh5zFTJJV8" - }, - { - "title": "Dion - The Wanderer - Karaoke Version from Zoom Karaoke", - "id": "riPmxQRb9_Y" - }, - { - "title": "The Supremes - Baby Love - Karaoke Version from Zoom Karaoke", - "id": "wPPLykypYrw" - }, - { - "title": "Martha & The Vandellas - Nowhere To Run - Karaoke Version from Zoom Karaoke", - "id": "mQWi6AxczEg" - }, - { - "title": "The Ronettes - Be My Baby - Karaoke Version from Zoom Karaoke", - "id": "f_AwTkLum_o" - }, - { - "title": "Buddy Holly - Peggy Sue - Karaoke Version from Zoom Karaoke", - "id": "IC1QgwNLgEk" - }, - { - "title": "Barry Mann - Who Put The Bomp (In The Bomp, Bomp, Bomp) - Karaoke Version from Zoom Karaoke", - "id": "7XbexL6kSTA" - }, - { - "title": "Fontella Bass - Rescue Me - Karaoke Version from Zoom Karaoke", - "id": "79CB5ZOYw2s" - }, - { - "title": "The Dixie Cups - Chapel Of Love - Karaoke Version from Zoom Karaoke", - "id": "5XmhJQoj_OQ" - }, - { - "title": "Irish Mist - Mountains Of Mourne - Karaoke Version from Zoom Karaoke", - "id": "YRjG2VEJx1I" - }, - { - "title": "Gene Vincent - Be Bop A Lula - Karaoke Version from Zoom Karaoke", - "id": "GwSczgaL8s4" - }, - { - "title": "Chubby Checker - Let's Twist Again - Karaoke Version from Zoom Karaoke", - "id": "G_lEL3qFM00" - }, - { - "title": "Frances Black - Love Me - Karaoke Version from Zoom Karaoke", - "id": "6rWL74-3ui4" - }, - { - "title": "Bruce Channel - Hey! Baby - Karaoke Version from Zoom Karaoke", - "id": "n0_DJtSyiOw" - }, - { - "title": "Daniel O'Donnell - Isle Of Innisfree - Karaoke Version from Zoom Karaoke", - "id": "d7KWoYi7Ljo" - }, - { - "title": "Eleanor McEvoy - Only A Woman's Heart - Karaoke Version from Zoom Karaoke", - "id": "OcDMndjfTkc" - }, - { - "title": "Foster And Allen - A Bunch Of Thyme - Karaoke Version from Zoom Karaoke", - "id": "K_mgSBkjlEw" - }, - { - "title": "Brian Kennedy - A Better Man - Karaoke Version from Zoom Karaoke", - "id": "2Xn51i4jKlI" - }, - { - "title": "Elvis Presley - Jailhouse Rock - Karaoke Version from Zoom Karaoke", - "id": "qMvSp_EsoP0" - }, - { - "title": "Neil Sedaka - Happy Birthday Sweet Sixteen - Karaoke Version from Zoom Karaoke", - "id": "phKx7nEvqYI" - }, - { - "title": "Eddie Cochran - C'Mon Everybody - Karaoke Version from Zoom Karaoke", - "id": "l30NXeoY8nw" - }, - { - "title": "Fats Domino - Blueberry Hill - Karaoke Version from Zoom Karaoke", - "id": "_EVCRcCAd24" - }, - { - "title": "Elvis Presley - Return To Sender - Karaoke Version from Zoom Karaoke", - "id": "9G41g2VWl7E" - }, - { - "title": "Charlie Landsborough - What Colour Is The Wind - Karaoke Version from Zoom Karaoke", - "id": "69q8LQKUlYc" - }, - { - "title": "Big Bopper - Chantilly Lace - Karaoke Version from Zoom Karaoke", - "id": "zc6-BhFQj0w" - }, - { - "title": "Nanci Griffith - From Clare To Here - Karaoke Version from Zoom Karaoke", - "id": "v0McMnJE4gM" - }, - { - "title": "Olivia Newton-John - Hopelessly Devoted To You - Karaoke Version from Zoom Karaoke", - "id": "n3Ldv0jlekY" - }, - { - "title": "Elvis Presley - The Wonder Of You [Old Version] - Karaoke Version from Zoom Karaoke", - "id": "l6eaH7JO2EA" - }, - { - "title": "Daniel O'Donnell - Danny Boy - Karaoke Version from Zoom Karaoke", - "id": "d0RxV0r1YhY" - }, - { - "title": "Billy Fury - Halfway To Paradise - Karaoke Version from Zoom Karaoke", - "id": "abCljpXxnj8" - }, - { - "title": "De Danann With Mary Black - Song For Ireland - Karaoke Version from Zoom Karaoke", - "id": "ZhXsaReTPQk" - }, - { - "title": "Phil Coulter - The Town I Loved So Well - Karaoke Version from Zoom Karaoke", - "id": "Xs8WvR51YHw" - }, - { - "title": "Foster And Allen - After All These Years - Karaoke Version from Zoom Karaoke", - "id": "XfTkePmiCbs" - }, - { - "title": "The Shirelles - Will You Love Me Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "X7gsGw4Cyv8" - }, - { - "title": "Neil Sedaka - Breaking Up Is Hard To Do - Karaoke Version from Zoom Karaoke", - "id": "KnGifLcEPfo" - }, - { - "title": "Foster And Allen - Maggie - Karaoke Version from Zoom Karaoke", - "id": "CDTUFP0O06A" - }, - { - "title": "Dana - All Kinds Of Everything - Karaoke Version from Zoom Karaoke", - "id": "BRFn-16DWsQ" - }, - { - "title": "Dion & The Belmonts - A Teenager In Love - Karaoke Version from Zoom Karaoke", - "id": "AoBgky24JlQ" - }, - { - "title": "The Fureys And Davey Arthur - When You Were Sweet Sixteen - Karaoke Version from Zoom Kara", - "id": "4qBm6DfqJEc" - }, - { - "title": "Darlene Love - All Alone On Christmas - Karaoke Version from Zoom Karaoke (from 'Home Alone')", - "id": "3YOL0s5S-4U" - }, - { - "title": "Busted - Sleeping With The Light On - Karaoke Version from Zoom Karaoke", - "id": "u7SMDvTbmhk" - }, - { - "title": "Busted - That Thing You Do - Karaoke Version from Zoom Karaoke", - "id": "Ww1OpqDY7Mw" - }, - { - "title": "Busted - Air Hostess - Karaoke Version from Zoom Karaoke", - "id": "_iSLKHbujas" - }, - { - "title": "Busted - Thunderbirds - Karaoke Version from Zoom Karaoke", - "id": "8EdDETrZD9M" - }, - { - "title": "Busted - 3AM - Karaoke Version from Zoom Karaoke", - "id": "72P28VQNnNc" - }, - { - "title": "Busted - Year 3000 - Karaoke Version from Zoom Karaoke", - "id": "fCnQsnKDQbI" - }, - { - "title": "Joss Stone - Dirty Man - Karaoke Version from Zoom Karaoke", - "id": "YXyjUz1PeI8" - }, - { - "title": "Bananarama - Really Saying Something - Karaoke Version from Zoom Karaoke", - "id": "KbxfQMsfM7E" - }, - { - "title": "Bananarama - Shy Boy - Karaoke Version from Zoom Karaoke", - "id": "J0LcB5_Gq7A" - }, - { - "title": "Bananarama - Na Na Hey Hey Kiss Him Goodbye - Karaoke Version from Zoom Karaoke", - "id": "IMwYX1ej2rU" - }, - { - "title": "Busted - Teenage Kicks - Karaoke Version from Zoom Karaoke", - "id": "6KRgbQzaJek" - }, - { - "title": "Bananarama - Nathan Jones - Karaoke Version from Zoom Karaoke", - "id": "xUCRdvd4mKY" - }, - { - "title": "Bananarama - Love In The First Degree - Karaoke Version from Zoom Karaoke", - "id": "Q7-vBRV-yxg" - }, - { - "title": "Joss Stone - All The King's Horses - Karaoke Version from Zoom Karaoke", - "id": "A0kBXSkQVns" - }, - { - "title": "Bananarama - Robert De Niro's Waiting - Karaoke Version from Zoom Karaoke", - "id": "9GDIsY83zBI" - }, - { - "title": "Busted - Crashed The Wedding - Karaoke Version from Zoom Karaoke", - "id": "z_cbqlGagmo" - }, - { - "title": "Busted - You Said No - Karaoke Version from Zoom Karaoke", - "id": "k-b6XY2Cvps" - }, - { - "title": "Joss Stone - Fell In Love With A Boy - Karaoke Version from Zoom Karaoke", - "id": "LKzaWBARywA" - }, - { - "title": "Busted - Nerdy - Karaoke Version from Zoom Karaoke", - "id": "L4tOza-QuOI" - }, - { - "title": "Bananarama - It Ain't What You Do It's The Way That You Do It - Karaoke Version from Zoom Karaoke", - "id": "FNnBdkGutU4" - }, - { - "title": "Busted - What I Go To School For - Karaoke Version from Zoom Karaoke", - "id": "3zdPNs3Q3Hw" - }, - { - "title": "Bananarama - Venus - Karaoke Version from Zoom Karaoke (Old Version)", - "id": "K9wIB6JbJQI" - }, - { - "title": "Bananarama - Cruel Summer - Karaoke Version from Zoom Karaoke", - "id": "p6snQksWOfI" - }, - { - "title": "Bananarama - I Heard A Rumour - Karaoke Version from Zoom Karaoke", - "id": "XPlqqowOzDg" - }, - { - "title": "Bananarama - Help! - Karaoke Version from Zoom Karaoke", - "id": "Tnx7hqlWJow" - }, - { - "title": "Duran Duran - Is There Something I Should Know - Karaoke Version from Zoom Karaoke", - "id": "sJfymFMiREM" - }, - { - "title": "Culture Club - Karma Chameleon - Karaoke Version from Zoom Karaoke", - "id": "MV1vh7L8L4c" - }, - { - "title": "Adam & The Ants - Stand And Deliver - Karaoke Version from Zoom Karaoke", - "id": "FdkOPfTmj3c" - }, - { - "title": "Madonna - Material Girl - Karaoke Version from Zoom Karaoke", - "id": "uQP1H-mYC-4" - }, - { - "title": "Irene Cara - Fame - Karaoke Version from Zoom Karaoke", - "id": "s2h-n0Bn9b4" - }, - { - "title": "Diana Ross - Chain Reaction - Karaoke Version from Zoom Karaoke", - "id": "XGDalCleOgI" - }, - { - "title": "Nik Kershaw - I Won't Let The Sun Go Down On Me - Karaoke Version from Zoom Karaoke", - "id": "mcc-mQe3FqM" - }, - { - "title": "Bananarama - I Want You Back - Karaoke Version from Zoom Karaoke", - "id": "dTzZZcuuT7I" - }, - { - "title": "Blondie - Call Me - Karaoke Version from Zoom Karaoke", - "id": "XRu9Ie9hahw" - }, - { - "title": "Eurythmics - Sweet Dreams Are Made Of This - Karaoke Version from Zoom Karaoke", - "id": "OBIHNRtZeW8" - }, - { - "title": "Dexy's Midnight Runners - Come On Eileen - Karaoke Version from Zoom Karaoke", - "id": "J510SEZLLy8" - }, - { - "title": "The Bangles - Manic Monday - Karaoke Version from Zoom Karaoke", - "id": "BxI7sCbIzfc" - }, - { - "title": "Police - Every Little Thing She Does Is Magic - Karaoke Version from Zoom Karaoke", - "id": "KAz3riSgJ4A" - }, - { - "title": "Keith Whitley - Don't Close Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "t3_WUVmU9ks" - }, - { - "title": "Kenny Rogers - Lucille - Karaoke Version from Zoom Karaoke", - "id": "lUSDz7EGcu8" - }, - { - "title": "Kenny Rogers - Ruby, Don't Take Your Love To Town - Karaoke Version from Zoom Karaoke", - "id": "lMgo0Rzhcnw" - }, - { - "title": "Glen Campbell - Rhinestone Cowboy - Karaoke Version from Zoom Karaoke", - "id": "cYO6iMsT3Qs" - }, - { - "title": "Kenny Rogers - The Gambler - Karaoke Version from Zoom Karaoke", - "id": "T5s8rSYjKLc" - }, - { - "title": "The Bellamy Brothers - Let Your Love Flow - Karaoke Version from Zoom Karaoke", - "id": "N10IKSDscWM" - }, - { - "title": "Marty Robbins - El Paso - Karaoke Version from Zoom Karaoke", - "id": "KhIJ7J5WzaY" - }, - { - "title": "Johnny Cash - Folsom Prison Blues - Karaoke Version from Zoom Karaoke", - "id": "IetpiGyuxsE" - }, - { - "title": "Kylie Minogue - I Should Be So Lucky - Karaoke Version from Zoom Karaoke", - "id": "Es__5sBoaT4" - }, - { - "title": "Jeannie C Riley - Harper Valley P.T.A. - Karaoke Version from Zoom Karaoke", - "id": "BX_mbXTdC-Y" - }, - { - "title": "Rick Astley - Never Gonna Give You Up - Karaoke Version from Zoom Karaoke", - "id": "9iQH7g_zKl8" - }, - { - "title": "Patsy Cline - I Fall To Pieces - Karaoke Version from Zoom Karaoke", - "id": "6K6E7iDHeLg" - }, - { - "title": "The Bellamy Brothers - If I Said You Have A Beautiful Body - Karaoke Version from Zoom Karaoke", - "id": "3toFL6DvCfE" - }, - { - "title": "Marty Robbins - Big Iron - Karaoke Version from Zoom Karaoke", - "id": "Lay3EIdb1ak" - }, - { - "title": "Crystal Gayle - Talking In Your Sleep - Karaoke Version from Zoom Karaoke", - "id": "22m9woileLk" - }, - { - "title": "Spandau Ballet - True - Karaoke Version from Zoom Karaoke", - "id": "tJok6WV19PY" - }, - { - "title": "Patsy Cline - Sweet Dreams - Karaoke Version from Zoom Karaoke", - "id": "sc_LSlZpx3I" - }, - { - "title": "Showaddywaddy - Personality - Karaoke Version from Zoom Karaoke", - "id": "rHB6H_oUdxI" - }, - { - "title": "Tammy Wynette - D-I-V-O-R-C-E - Karaoke Version from Zoom Karaoke", - "id": "cvbV7Roxcdc" - }, - { - "title": "Don Williams - I Recall A Gypsy Woman - Karaoke Version from Zoom Karaoke", - "id": "CUf8zslfILo" - }, - { - "title": "Dolly Parton - 9 To 5 - Karaoke Version from Zoom Karaoke", - "id": "scU3FiSvAXE" - }, - { - "title": "Charlie Rich - Behind Closed Doors - Karaoke Version from Zoom Karaoke", - "id": "k60m9h3YEGM" - }, - { - "title": "ABC - The Look Of Love - Karaoke Version from Zoom Karaoke", - "id": "he3Qv1VyWVE" - }, - { - "title": "Johnny Cash - Ring Of Fire - Karaoke Version from Zoom Karaoke", - "id": "QJDI7U4NOZw" - }, - { - "title": "Charlie Rich - The Most Beautiful Girl - Karaoke Version from Zoom Karaoke", - "id": "3qy--dqW2Go" - }, - { - "title": "Patsy Cline - Walkin' After Midnight - Karaoke Version from Zoom Karaoke", - "id": "zR6RlrXU_XY" - }, - { - "title": "Dolly Parton - Jolene - Karaoke Version from Zoom Karaoke", - "id": "s9A_V4HhSgY" - }, - { - "title": "UB40 - Red Red Wine - Karaoke Version from Zoom Karaoke", - "id": "rCwDDX-OWWE" - }, - { - "title": "Patsy Cline - Crazy - Karaoke Version from Zoom Karaoke", - "id": "pRiFYhmOZF0" - }, - { - "title": "Charley Pride - Crystal Chandeliers - Karaoke Version from Zoom Karaoke", - "id": "bg0-PXiRtOM" - }, - { - "title": "Billie Jo Spears - Sing Me An Old Fashioned Song - Karaoke Version from Zoom Karaoke", - "id": "WQbc6mNirhQ" - }, - { - "title": "Billie Jo Spears - 57 Chevrolet - Karaoke Version from Zoom Karaoke", - "id": "Kh7Ppc1PLuw" - }, - { - "title": "Kenny Rogers - Coward Of The County - Karaoke Version from Zoom Karaoke", - "id": "F69nkv_9aXs" - }, - { - "title": "Jamie Cullum - Lover, You Should Have Come Over - Karaoke Version from Zoom Karaoke", - "id": "BB0iONtUrNs" - }, - { - "title": "Loretta Lynn - Coal Miner's Daughter - Karaoke Version from Zoom Karaoke", - "id": "A-EaZHiWlxc" - }, - { - "title": "Jamie Cullum - What A Difference A Day Made - Karaoke Version from Zoom Karaoke", - "id": "4ZouDHsx6n4" - }, - { - "title": "Billie Jo Spears - Blanket On The Ground - Karaoke Version from Zoom Karaoke", - "id": "0jRnPhHLfCE" - }, - { - "title": "Johnny Cash - A Boy Named Sue - Karaoke Version from Zoom Karaoke", - "id": "-zV0W12SHKs" - }, - { - "title": "Billie Jo Spears - What I've Got In Mind - Karaoke Version from Zoom Karaoke", - "id": "-PbohZ2dsSA" - }, - { - "title": "The Pet Shop Boys - West End Girls - Karaoke Version from Zoom Karaoke", - "id": "xb6xzSjaGQI" - }, - { - "title": "Jamie Cullum - But For Now - Karaoke Version from Zoom Karaoke", - "id": "raMpWLqvKfk" - }, - { - "title": "Michael Buble - Come Fly With Me - Karaoke Version from Zoom Karaoke", - "id": "qzigUwNLcOs" - }, - { - "title": "Michael Buble - Crazy Little Thing Called Love - Karaoke Version from Zoom Karaoke", - "id": "lCELax2jhT8" - }, - { - "title": "Michael Buble - Fever - Karaoke Version from Zoom Karaoke", - "id": "j4tv3rvPeZs" - }, - { - "title": "Michael Buble - Summer Wind - Karaoke Version from Zoom Karaoke", - "id": "hDVpTbdXGFY" - }, - { - "title": "Michael Buble - That's All - Karaoke Version from Zoom Karaoke", - "id": "gIaAjn8qEho" - }, - { - "title": "Soft Cell - Tainted Love - Karaoke Version from Zoom Karaoke", - "id": "WGbHRHRYo20" - }, - { - "title": "Jamie Cullum - Old Devil Moon - Karaoke Version from Zoom Karaoke", - "id": "SFRxBGLJhlY" - }, - { - "title": "Michael Buble - Sway - Karaoke Version from Zoom Karaoke", - "id": "NXV-4zcS7rw" - }, - { - "title": "Michael Buble - For Once In My Life - Karaoke Version from Zoom Karaoke", - "id": "DSxb43H8uEg" - }, - { - "title": "Jamie Cullum - Blame It On My Youth - Karaoke Version from Zoom Karaoke", - "id": "0JxyOcpMV5c" - }, - { - "title": "Robbie Williams - Me And My Monkey - Karaoke Version from Zoom Karaoke", - "id": "-y-r1ZHzwXM" - }, - { - "title": "Wham! - I'm Your Man - Karaoke Version from Zoom Karaoke", - "id": "r3yffRygPKo" - }, - { - "title": "The Commodores - Three Times A Lady - Karaoke Version from Zoom Karaoke", - "id": "KAERqWf-IUs" - }, - { - "title": "The Boomtown Rats - Rat Trap - Karaoke Version from Zoom Karaoke", - "id": "vECIvaKhrlQ" - }, - { - "title": "Gretchen Wilson - When It Rains - Karaoke Version from Zoom Karaoke", - "id": "qS1EPpBXNh0" - }, - { - "title": "Boney M - Rivers Of Babylon - Karaoke Version from Zoom Karaoke", - "id": "Xepy-1YnkQ4" - }, - { - "title": "10cc - Dreadlock Holiday - Karaoke Version from Zoom Karaoke", - "id": "U1y_5UwEth4" - }, - { - "title": "The Dixie Chicks - A Home - Karaoke Version from Zoom Karaoke", - "id": "QHUt7xmyNOU" - }, - { - "title": "The Housemartins - Happy Hour - Karaoke Version from Zoom Karaoke", - "id": "QDof7hyUeH8" - }, - { - "title": "Cliff Richard - The Day I Met Marie - Karaoke Version from Zoom Karaoke", - "id": "LUyWXp5PLHE" - }, - { - "title": "Boney M - Rasputin (Female Solo Version) - Karaoke Version from Zoom Karaoke", - "id": "JqyGt8RTBS4" - }, - { - "title": "Cliff Richard - A Little In Love - Karaoke Version from Zoom Karaoke", - "id": "J2JXn6uGP34" - }, - { - "title": "Rod Stewart - Da Ya Think I'm Sexy - Karaoke Version from Zoom Karaoke", - "id": "kzrypYxBUo8" - }, - { - "title": "Gerry Rafferty - Baker Street - Karaoke Version from Zoom Karaoke", - "id": "nvs9Y1UjSDY" - }, - { - "title": "Gerry & The Pacemakers - It's Gonna Be All Right - Karaoke Version from Zoom Karaoke", - "id": "2ux7w5aovPc" - }, - { - "title": "Brotherhood Of Man - My Sweet Rosalie - Karaoke Version from Zoom Karaoke", - "id": "yWc6Q5RbKGM" - }, - { - "title": "Smokie - Mexican Girl - Karaoke Version from Zoom Karaoke", - "id": "wu8G7zHi97o" - }, - { - "title": "Cilla Black - Something Tells Me - Karaoke Version from Zoom Karaoke", - "id": "veWnFvv9Bdk" - }, - { - "title": "The Ivy League - Tossing And Turning - Karaoke Version from Zoom Karaoke", - "id": "k3UXj7l8lYo" - }, - { - "title": "Frankie Laine - Mule Train - Karaoke Version from Zoom Karaoke", - "id": "hw02QCZXejM" - }, - { - "title": "Lynyrd Skynyrd - Sweet Home Alabama - Karaoke Version from Zoom Karaoke", - "id": "cbbQcJyXCrA" - }, - { - "title": "The Partridge Family - I Woke Up In Love This Morning - Karaoke Version from Zoom Karaoke", - "id": "bIFHWi9snG8" - }, - { - "title": "The Turtles - She'd Rather Be With Me - Karaoke Version from Zoom Karaoke", - "id": "XAO682kjHJw" - }, - { - "title": "The Turtles - Elenore - Karaoke Version from Zoom Karaoke", - "id": "WMNODen91yY" - }, - { - "title": "The Osmonds - Love Me For A Reason - Karaoke Version from Zoom Karaoke", - "id": "QEaBJJC3RQs" - }, - { - "title": "Kate Bush - Wuthering Heights - Karaoke Version from Zoom Karaoke", - "id": "F-mCt2cMveQ" - }, - { - "title": "Gerry & The Pacemakers - I'll Be There - Karaoke Version from Zoom Karaoke", - "id": "nO_2RfFh5mc" - }, - { - "title": "Village People - Y.M.C.A. - Karaoke Version from Zoom Karaoke", - "id": "wwQCD7Youiw" - }, - { - "title": "Lindisfarne - Run For Home - Karaoke Version from Zoom Karaoke", - "id": "svX_W61R5rk" - }, - { - "title": "Rod Stewart - You Wear It Well - Karaoke Version from Zoom Karaoke", - "id": "oz1RMBGqGJo" - }, - { - "title": "The Hollies - We're Through - Karaoke Version from Zoom Karaoke", - "id": "mg65ydvVn6s" - }, - { - "title": "Brotherhood Of Man - Figaro - Karaoke Version from Zoom Karaoke", - "id": "drWWPb-kkDg" - }, - { - "title": "The Hollies - I Can't Let Go - Karaoke Version from Zoom Karaoke", - "id": "Z1SKoyWUALE" - }, - { - "title": "The Merseys - Sorrow - Karaoke Version from Zoom Karaoke", - "id": "XJg01uCWdKM" - }, - { - "title": "Fred Wedlock - Oldest Swinger In Town - Karaoke Version from Zoom Karaoke", - "id": "OENsDVZV5zY" - }, - { - "title": "Gerry & The Pacemakers - Walk Hand In Hand - Karaoke Version from Zoom Karaoke", - "id": "O5QRKqRNUHo" - }, - { - "title": "The Lambrettas - Poison Ivy - Karaoke Version from Zoom Karaoke", - "id": "LzOpQmohsjk" - }, - { - "title": "Eddy Grant - Gimme Hope Jo'Anna - Karaoke Version from Zoom Karaoke", - "id": "LBt73RqIP_M" - }, - { - "title": "Frankie Laine - North To Alaska - Karaoke Version from Zoom Karaoke", - "id": "CHrM7iT-4Ms" - }, - { - "title": "The Brook Brothers - Warpaint - Karaoke Version from Zoom Karaoke", - "id": "9svd_vWwxDs" - }, - { - "title": "Amen Corner - High In The Sky - Karaoke Version from Zoom Karaoke", - "id": "9SUwnw4xej8" - }, - { - "title": "Cilla Black - Step Inside Love - Karaoke Version from Zoom Karaoke", - "id": "8QEsMysYngE" - }, - { - "title": "The Partridge Family - Breaking Up Is Hard To Do - Karaoke Version from Zoom Karaoke", - "id": "yRf9N-kL-JY" - }, - { - "title": "Roger Miller - King Of The Road - Karaoke Version from Zoom Karaoke", - "id": "hZTzGBaCIiY" - }, - { - "title": "David Cassidy - Could It Be Forever - Karaoke Version from Zoom Karaoke", - "id": "_DOVPm-dQus" - }, - { - "title": "Glen Campbell - Wichita Lineman - Karaoke Version from Zoom Karaoke", - "id": "MgRC7_3dgoQ" - }, - { - "title": "John Denver - Annie's Song - Karaoke Version from Zoom Karaoke", - "id": "HNoWxjTLP_E" - }, - { - "title": "Elvis Presley - Crying In The Chapel - Karaoke Version from Zoom Karaoke", - "id": "Cq_StLNLdXg" - }, - { - "title": "The Partridge Family - I Think I Love You - Karaoke Version from Zoom Karaoke", - "id": "6H_zoWJg810" - }, - { - "title": "Chris Rea - Stainsby Girls - Karaoke Version from Zoom Karaoke", - "id": "1LYiFs5e8h0" - }, - { - "title": "David Cassidy - I Am A Clown - Karaoke Version from Zoom Karaoke", - "id": "zgQABSah3I0" - }, - { - "title": "Elvis Presley - Good Luck Charm - Karaoke Version from Zoom Karaoke", - "id": "pHBa0VAtoQk" - }, - { - "title": "Sutherland Brothers And Quiver - Arms Of Mary - Karaoke Version from Zoom Karaoke", - "id": "meuFq-DYjA0" - }, - { - "title": "The Partridge Family - I'll Meet You Halfway - Karaoke Version from Zoom Karaoke", - "id": "kGCVflfbZno" - }, - { - "title": "David Cassidy - How Can I Be Sure - Karaoke Version from Zoom Karaoke", - "id": "WRj-6RQyWPc" - }, - { - "title": "Kenny Rogers And Dolly Parton - Islands In The Stream - Karaoke Version from Zoom Karaoke", - "id": "OaXvO6MW7LY" - }, - { - "title": "Elvis Presley - Can't Help Falling In Love - Karaoke Version from Zoom Karaoke", - "id": "Js6zYy77TnU" - }, - { - "title": "Chris Rea - Auberge - Karaoke Version from Zoom Karaoke", - "id": "JcYr5rsQ938" - }, - { - "title": "Elvis Presley - She's Not You - Karaoke Version from Zoom Karaoke", - "id": "Hr9idSC5EbA" - }, - { - "title": "David Cassidy - Daydreamer - Karaoke Version from Zoom Karaoke", - "id": "HpWJGtabrI8" - }, - { - "title": "Billy Swan - I Can Help - Karaoke Version from Zoom Karaoke", - "id": "DGDDZJNRTjQ" - }, - { - "title": "Jimmy Buffett - Margaritaville - Karaoke Version from Zoom Karaoke", - "id": "HNNxQdjXWkw" - }, - { - "title": "Hank Williams - Your Cheatin' Heart - Karaoke Version from Zoom Karaoke", - "id": "nqo7F44E8l4" - }, - { - "title": "The Cufflinks - Tracy - Karaoke Version from Zoom Karaoke", - "id": "Yf_iNgi8sjY" - }, - { - "title": "Hank Williams - Hey Good Lookin' - Karaoke Version from Zoom Karaoke", - "id": "UGPMhV9cMpI" - }, - { - "title": "John Denver - Take Me Home, Country Roads - Karaoke Version from Zoom Karaoke", - "id": "NzLTH93B620" - }, - { - "title": "Nilsson - Everybody's Talkin' - Karaoke Version from Zoom Karaoke", - "id": "MezaDpMCOOo" - }, - { - "title": "Vanity Fare - Hitchin' A Ride - Karaoke Version from Zoom Karaoke", - "id": "Gfv8zvHWZgg" - }, - { - "title": "Dave Berry - Little Things - Karaoke Version from Zoom Karaoke", - "id": "ze9kLZBeL-I" - }, - { - "title": "The Applejacks - Tell Me When - Karaoke Version from Zoom Karaoke", - "id": "iF7ZXX1IaiM" - }, - { - "title": "Elvis Vs Jxl - A Little Less Conversation - Karaoke Version from Zoom Karaoke", - "id": "EHpvmeOOz7c" - }, - { - "title": "Elvis Presley - Rock-A-Hula Baby - Karaoke Version from Zoom Karaoke", - "id": "7eJ_Dv57QZk" - }, - { - "title": "Georgie Fame & The Blue Flames - Get Away - Karaoke Version from Zoom Karaoke", - "id": "_ch2KKEO8Hc" - }, - { - "title": "The Searchers - Love Potion #9 - Karaoke Version from Zoom Karaoke", - "id": "UY6LycmMTXk" - }, - { - "title": "Herman's Hermits - Silhouettes - Karaoke Version from Zoom Karaoke", - "id": "DmZcWM7P8Jo" - }, - { - "title": "Herman's Hermits - A Must To Avoid - Karaoke Version from Zoom Karaoke", - "id": "--ZVabm7XjU" - }, - { - "title": "The Hollies - Sorry Suzanne - Karaoke Version from Zoom Karaoke", - "id": "nkPuUqPchzQ" - }, - { - "title": "Pickettywitch - That Same Old Feeling - Karaoke Version from Zoom Karaoke", - "id": "Rj-f_EtWgFQ" - }, - { - "title": "Melba Moore - This Is It - Karaoke Version from Zoom Karaoke", - "id": "EtwVJ_agrhw" - }, - { - "title": "Daniel Boone - Beautiful Sunday - Karaoke Version from Zoom Karaoke", - "id": "xbmkC-XboAs" - }, - { - "title": "The Bay City Rollers - Give A Little Love - Karaoke Version from Zoom Karaoke", - "id": "uyTHR8CR638" - }, - { - "title": "The Dooleys - Wanted - Karaoke Version from Zoom Karaoke", - "id": "OEYz5eC3DxE" - }, - { - "title": "David Dundas - Jeans On - Karaoke Version from Zoom Karaoke", - "id": "H2ipzMvPusk" - }, - { - "title": "Johnny Horton - The Battle Of New Orleans - Karaoke Version from Zoom Karaoke", - "id": "GnNoRzCpuK8" - }, - { - "title": "Joss Stone - The Chokin' Kind - Karaoke Version from Zoom Karaoke", - "id": "rhteejZoklk" - }, - { - "title": "Joss Stone - Victim Of A Foolish Heart - Karaoke Version from Zoom Karaoke", - "id": "llAI_HnYSf4" - }, - { - "title": "The Fortunes - Freedom Come, Freedom Go - Karaoke Version from Zoom Karaoke", - "id": "jxElowhYGhg" - }, - { - "title": "Suzi Quatro - If You Can't Give Me Love - Karaoke Version from Zoom Karaoke", - "id": "3SS1RySr-98" - }, - { - "title": "Joss Stone - Super Duper Love - Karaoke Version from Zoom Karaoke", - "id": "ixQnrXsJyzg" - }, - { - "title": "Mud - The Cat Crept In - Karaoke Version from Zoom Karaoke", - "id": "dKYN41PLEb4" - }, - { - "title": "Joss Stone - I Had A Dream - Karaoke Version from Zoom Karaoke", - "id": "bpj2-L6nWl0" - }, - { - "title": "The Fortunes - Storm In A Teacup - Karaoke Version from Zoom Karaoke", - "id": "bNRs8OdB2og" - }, - { - "title": "Joss Stone - Some Kind Of Wonderful - Karaoke Version from Zoom Karaoke", - "id": "XEoTMbck8t8" - }, - { - "title": "Mud - The Secrets That You Keep - Karaoke Version from Zoom Karaoke", - "id": "C_04DQJ7l8w" - }, - { - "title": "Joss Stone - For The Love Of You - Karaoke Version from Zoom Karaoke", - "id": "9OmnJ5BrCYk" - }, - { - "title": "Electric Light Orchestra - Sweet Talkin' Woman - Karaoke Version from Zoom Karaoke", - "id": "7h72jX_DFrM" - }, - { - "title": "Tim McGraw - Tiny Dancer - Karaoke Version from Zoom Karaoke", - "id": "pJYW1WcZhsI" - }, - { - "title": "The Everly Brothers - Cryin' In The Rain (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "j_byg0GR9QE" - }, - { - "title": "Billy Idol - Shock To The System - Karaoke Version from Zoom Karaoke", - "id": "goGJGVS26UI" - }, - { - "title": "Billy Idol - White Wedding - Karaoke Version from Zoom Karaoke", - "id": "e-ekZzkvHb4" - }, - { - "title": "Billy Idol - Eyes Without A Face - Karaoke Version from Zoom Karaoke", - "id": "PT-d7X6AHUU" - }, - { - "title": "Billy Idol - Hot In The City - Karaoke Version from Zoom Karaoke", - "id": "vlTVgtdbbus" - }, - { - "title": "Tim McGraw - I Know How To Love You Well - Karaoke Version from Zoom Karaoke", - "id": "qJzvayghJlk" - }, - { - "title": "The Everly Brothers - Ebony Eyes (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "oXy8hAVlq80" - }, - { - "title": "Billy Idol - Mony Mony (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "o-XD9TQ71hQ" - }, - { - "title": "The Everly Brothers - Bird Dog (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "ivYZCTQ0YTw" - }, - { - "title": "The Everly Brothers - The Price Of Love (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "iWZLaqmGpjs" - }, - { - "title": "Billy Idol - L.A. Woman - Karaoke Version from Zoom Karaoke", - "id": "gudXwYy9sdE" - }, - { - "title": "Tim McGraw - All We Ever Find - Karaoke Version from Zoom Karaoke", - "id": "g1a9FAGuH-o" - }, - { - "title": "The Everly Brothers - Wake Up Little Susie (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "_FE100hwl90" - }, - { - "title": "The Everly Brothers - All I Have To Do Is Dream (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "X0COGw91wzk" - }, - { - "title": "Tim McGraw - Illegal - Karaoke Version from Zoom Karaoke", - "id": "VvHHzepklpo" - }, - { - "title": "The Everly Brothers - Ebony Eyes (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "SeIa8g7AOp0" - }, - { - "title": "The Everly Brothers - Temptation (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "OtEJKF1cQPs" - }, - { - "title": "Tim McGraw - Home - Karaoke Version from Zoom Karaoke", - "id": "HioheuJzbiA" - }, - { - "title": "Billy Idol - Rebel Yell - Karaoke Version from Zoom Karaoke", - "id": "Bvm-DFC7WIc" - }, - { - "title": "The Everly Brothers - Claudette (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "9zV5FVMCO4o" - }, - { - "title": "The Everly Brothers - 'Til I Kissed You (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "8Z1NTco0w9U" - }, - { - "title": "Tim McGraw - That's Why God Made Mexico - Karaoke Version from Zoom Karaoke", - "id": "5KrtoOZVjww" - }, - { - "title": "Billy Idol - Sweet Sixteen - Karaoke Version from Zoom Karaoke", - "id": "3uiqSbgCypU" - }, - { - "title": "The Everly Brothers - Walk Right Back (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "vw8Y-dGmOh4" - }, - { - "title": "The Everly Brothers - Wake Up Little Susie (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "u47EX3Q4P4k" - }, - { - "title": "The Everly Brothers - Bye Bye Love (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "lLw8q1m5iSI" - }, - { - "title": "The Everly Brothers - Claudette (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "lBU_kWaEo2w" - }, - { - "title": "Eva Cassidy - Time After Time - Karaoke Version from Zoom Karaoke", - "id": "hGJyqY1QNNc" - }, - { - "title": "The Everly Brothers - 'Til I Kissed You (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "_EDKpXNfCGo" - }, - { - "title": "Eva Cassidy - Natural Woman - Karaoke Version from Zoom Karaoke", - "id": "M_m_6WtWn-A" - }, - { - "title": "The Everly Brothers - Bird Dog (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "MJHR4Xqgpao" - }, - { - "title": "The Everly Brothers - When Will I Be Loved (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "LFYHYbZpobg" - }, - { - "title": "Eva Cassidy - Time Is A Healer - Karaoke Version from Zoom Karaoke", - "id": "KWRIc_cwps0" - }, - { - "title": "The Everly Brothers - The Price Of Love (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "HwgGsqxlfGw" - }, - { - "title": "Billy Idol - Cradle Of Love - Karaoke Version from Zoom Karaoke", - "id": "FMmMMauauCo" - }, - { - "title": "The Everly Brothers - Cryin' In The Rain (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "DyCXXQ6S01s" - }, - { - "title": "The Everly Brothers - Cathy's Clown (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "DQj71zeYgHI" - }, - { - "title": "The Everly Brothers - Temptation (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "ALb8s-6C1kk" - }, - { - "title": "The Everly Brothers - All I Have To Do Is Dream (No Harmony) Karaoke Version from Zoom Karaoke", - "id": "9wK3p8n04OQ" - }, - { - "title": "Eva Cassidy - Who Knows Where The Time Goes - Karaoke Version from Zoom Karaoke", - "id": "fZUx4hOPbxo" - }, - { - "title": "Robbie Williams - Tripping - Karaoke Version from Zoom Karaoke", - "id": "Z3-V1pD5VCY" - }, - { - "title": "Eva Cassidy - Wade In The Water - Karaoke Version from Zoom Karaoke", - "id": "Jhs9uo4n__g" - }, - { - "title": "Kelly Clarkson - Behind These Hazel Eyes - Karaoke Version from Zoom Karaoke", - "id": "Sjwk-kwYSWg" - }, - { - "title": "Gwen Stefani - Cool - Karaoke Version from Zoom Karaoke", - "id": "G-nQrVaBA4k" - }, - { - "title": "Eva Cassidy - Penny To My Name - Karaoke Version from Zoom Karaoke", - "id": "4CAceJIaTpw" - }, - { - "title": "Eva Cassidy - Kathy's Song - Karaoke Version from Zoom Karaoke", - "id": "sKtSKSrcbl0" - }, - { - "title": "Eva Cassidy - I Wandered By A Brookside - Karaoke Version from Zoom Karaoke", - "id": "p6DF8AF1TOA" - }, - { - "title": "Eva Cassidy - Bridge Over Troubled Water - Karaoke Version from Zoom Karaoke", - "id": "hVMCfg-zrUA" - }, - { - "title": "Eva Cassidy - What A Wonderful World - Karaoke Version from Zoom Karaoke", - "id": "QmWFcJkPqG8" - }, - { - "title": "Eva Cassidy - Fever - Karaoke Version from Zoom Karaoke", - "id": "OVW3VaWh8PA" - }, - { - "title": "Joss Stone - Don't Cha Wanna Ride - Karaoke Version from Zoom Karaoke", - "id": "MmakUHYT1lI" - }, - { - "title": "Lemar - If There's Any Justice - Karaoke Version from Zoom Karaoke", - "id": "Is20e8Al15Y" - }, - { - "title": "Eva Cassidy - People Get Ready - Karaoke Version from Zoom Karaoke", - "id": "4RnvZvTtGLY" - }, - { - "title": "Anastacia - Left Outside Alone - Karaoke Version from Zoom Karaoke", - "id": "hGPnHyGmkKw" - }, - { - "title": "Stephen Fretwell - Emily - Karaoke Version from Zoom Karaoke", - "id": "g_yoEicpgw4" - }, - { - "title": "Charlotte Church - Crazy Chick - Karaoke Version from Zoom Karaoke", - "id": "fr6DP7M0pKE" - }, - { - "title": "Green Day - Boulevard Of Broken Dreams - Karaoke Version from Zoom Karaoke", - "id": "aXswFdrVBT0" - }, - { - "title": "Natalie Imbruglia - Shiver - Karaoke Version from Zoom Karaoke", - "id": "_Q4DQGIs83c" - }, - { - "title": "Eva Cassidy - Songbird - Karaoke Version from Zoom Karaoke", - "id": "ZqPvJ8Yvwks" - }, - { - "title": "Outkast - Hey Ya - Karaoke Version from Zoom Karaoke", - "id": "W1ChFa02_U8" - }, - { - "title": "Eva Cassidy - Wayfaring Stranger - Karaoke Version from Zoom Karaoke", - "id": "PixwFVLdSOc" - }, - { - "title": "Eva Cassidy - Fields Of Gold - Karaoke Version from Zoom Karaoke", - "id": "OFqKVLdhU4U" - }, - { - "title": "James Blunt - You're Beautiful - Karaoke Version from Zoom Karaoke", - "id": "FTQc-lZeHyA" - }, - { - "title": "Eva Cassidy - I Know You By Heart - Karaoke Version from Zoom Karaoke", - "id": "ArN97jXr5s8" - }, - { - "title": "Eva Cassidy - Imagine - Karaoke Version from Zoom Karaoke", - "id": "4xyoK3vNv3E" - }, - { - "title": "Eva Cassidy - Ain't No Sunshine - Karaoke Version from Zoom Karaoke", - "id": "-D3bqN1nXUs" - }, - { - "title": "The Dixie Chicks - More Love - Karaoke Version from Zoom Karaoke", - "id": "vzrbDtQTh2I" - }, - { - "title": "The Dixie Chicks - White Trash Wedding - Karaoke Version from Zoom Karaoke", - "id": "mkSRt2hSMSc" - }, - { - "title": "Rachel Stevens - Some Girls - Karaoke Version from Zoom Karaoke", - "id": "Th9Bqs3wZak" - }, - { - "title": "Gretchen Wilson - Redneck Woman - Karaoke Version from Zoom Karaoke", - "id": "7wrDmadiRno" - }, - { - "title": "The Partridge Family - Looking Through The Eyes Of Love - Karaoke Version from Zoom Karaok", - "id": "rReG3b2UEIo" - }, - { - "title": "The Dixie Chicks - Long Time Gone - Karaoke Version from Zoom Karaoke", - "id": "w-hLy5nHVZA" - }, - { - "title": "The Dixie Chicks - Tortured, Tangled Hearts - Karaoke Version from Zoom Karaoke", - "id": "qvhhEUTjXF8" - }, - { - "title": "Gretchen Wilson - Here For The Party - Karaoke Version from Zoom Karaoke", - "id": "m-wZZAFUWqM" - }, - { - "title": "The Dixie Chicks - Truth No 2 - Karaoke Version from Zoom Karaoke", - "id": "fofQ29ECB1g" - }, - { - "title": "David Cassidy - Walking In The Rain - Karaoke Version from Zoom Karaoke", - "id": "dYfqkXLh5m8" - }, - { - "title": "Gretchen Wilson - Chariot - Karaoke Version from Zoom Karaoke", - "id": "_ILJH-AVznY" - }, - { - "title": "David Cassidy - Some Kind Of A Summer - Karaoke Version from Zoom Karaoke", - "id": "XPxHHhI6_1s" - }, - { - "title": "Gretchen Wilson - Holdin' You - Karaoke Version from Zoom Karaoke", - "id": "WFnjWpMMsrs" - }, - { - "title": "The Dixie Chicks - Godspeed (Sweet Dreams) - Karaoke Version from Zoom Karaoke", - "id": "U6msXWa6dt8" - }, - { - "title": "The Dixie Chicks - Top Of The World - Karaoke Version from Zoom Karaoke", - "id": "OvcGdJON_ek" - }, - { - "title": "Gretchen Wilson - Homewrecker - Karaoke Version from Zoom Karaoke", - "id": "IvHiuwnRFfQ" - }, - { - "title": "The Coral - In The Morning - Karaoke Version from Zoom Karaoke", - "id": "GaINQwJHeAg" - }, - { - "title": "Gretchen Wilson - The Bed - Karaoke Version from Zoom Karaoke", - "id": "F43_RYXudwg" - }, - { - "title": "The Partridge Family - It's One Of Those Nights (Yes Love) - Karaoke Version from Zoom Karaoke", - "id": "Aa2AkpPWIl4" - }, - { - "title": "Gretchen Wilson - Pocahontas Proud - Karaoke Version from Zoom Karaoke", - "id": "8F8cULEf4PI" - }, - { - "title": "Gretchen Wilson - When I Think About Cheatin' - Karaoke Version from Zoom Karaoke", - "id": "4z-Sqxxtjt0" - }, - { - "title": "The Dixie Chicks - I Believe In Love - Karaoke Version from Zoom Karaoke", - "id": "3HUpDNFoxIs" - }, - { - "title": "Gretchen Wilson - What Happened - Karaoke Version from Zoom Karaoke", - "id": "2aRDNCmJLqI" - }, - { - "title": "The Dixie Chicks - Travellin' Soldier - Karaoke Version from Zoom Karaoke", - "id": "24rSHRueFSo" - }, - { - "title": "Piano Playalong Karaoke - Driving Home For Christmas - Chris Rea (Minus Piano)", - "id": "zDEGKDXbL1E" - }, - { - "title": "The New Seekers - Look What They've Done To My Song, Ma - Karaoke Version from Zoom Karaoke", - "id": "q7f9lWc2vdA" - }, - { - "title": "The Smiths - Ask - Karaoke Version from Zoom Karaoke", - "id": "p_SCcJkF0C0" - }, - { - "title": "The Smiths - Sheila Take A Bow - Karaoke Version from Zoom Karaoke", - "id": "mVmTSUWDbz0" - }, - { - "title": "Morrissey - The First Of The Gang To Die - Karaoke Version from Zoom Karaoke", - "id": "bP6MQ4KVi0Y" - }, - { - "title": "Morrissey - Suedehead - Karaoke Version from Zoom Karaoke", - "id": "UGBTS2fBy74" - }, - { - "title": "The Smiths - What Difference Does It Make - Karaoke Version from Zoom Karaoke", - "id": "A2IS3HkMt6s" - }, - { - "title": "Morrissey - Interesting Drug - Karaoke Version from Zoom Karaoke", - "id": "mP0BMiHYEtk" - }, - { - "title": "Westlife - You Raise Me Up - Karaoke Version from Zoom Karaoke", - "id": "uTILWWmVFRI" - }, - { - "title": "The Smiths - Heaven Knows I'm Miserable Now - Karaoke Version from Zoom Karaoke", - "id": "teqELzmfFNw" - }, - { - "title": "Morrissey - The More You Ignore Me, The Closer I Get - Karaoke Version from Zoom Karaoke", - "id": "cABTwYzFzeE" - }, - { - "title": "The Smiths - Panic - Karaoke Version from Zoom Karaoke", - "id": "YkTJJ6y_8ws" - }, - { - "title": "Morrissey - Pregnant For The Last Time - Karaoke Version from Zoom Karaoke", - "id": "QEI2aRghLIY" - }, - { - "title": "Morrissey - The Last Of The Famous International Playboys - Karaoke Version from Zoom Karaoke", - "id": "LL0ksxOVKT8" - }, - { - "title": "Andy Gibb - An Everlasting Love - Karaoke Version from Zoom Karaoke", - "id": "BU4RTrY8jYI" - }, - { - "title": "Andy Gibb - Flowing Rivers - Karaoke Version from Zoom Karaoke", - "id": "eyd0tE9VBTo" - }, - { - "title": "Queen - Who Wants To Live Forever - Karaoke Version from Zoom Karaoke", - "id": "A14dka2Bvs8" - }, - { - "title": "Buddy Holly - Love Is Strange - Karaoke Version from Zoom Karaoke", - "id": "ztLohguKDU4" - }, - { - "title": "Queen - No One But You - Karaoke Version from Zoom Karaoke", - "id": "syLAhDd_4ZU" - }, - { - "title": "Queen - One Vision - Karaoke Version from Zoom Karaoke", - "id": "QsDpjOJHD7c" - }, - { - "title": "Queen - Tie Your Mother Down - Karaoke Version from Zoom Karaoke", - "id": "QIH0vB-XcXw" - }, - { - "title": "Queen - Friends Will Be Friends - Karaoke Version from Zoom Karaoke", - "id": "L00i1nO416U" - }, - { - "title": "Queen - Innuendo - Karaoke Version from Zoom Karaoke", - "id": "K8iBV3DKBQg" - }, - { - "title": "Queen - Good Old Fashioned Lover Boy - Karaoke Version from Zoom Karaoke", - "id": "GeSj4IxOi04" - }, - { - "title": "Buddy Holly - Look At Me - Karaoke Version from Zoom Karaoke", - "id": "AQ7MgQ7AB9Q" - }, - { - "title": "Queen - Another One Bites The Dust - Karaoke Version from Zoom Karaoke", - "id": "rbaQxIYPwtY" - }, - { - "title": "Queen - Now I'm Here - Karaoke Version from Zoom Karaoke", - "id": "yTtu-K1y7U4" - }, - { - "title": "Queen - I Want To Break Free - Karaoke Version from Zoom Karaoke", - "id": "vQdMnVKj2jQ" - }, - { - "title": "Buddy Holly - Wishing - Karaoke Version from Zoom Karaoke", - "id": "qRXaTRa_y1w" - }, - { - "title": "Queen - Bicycle Race - Karaoke Version from Zoom Karaoke", - "id": "qBh7B8kGDaM" - }, - { - "title": "Queen - I Want It All - Karaoke Version from Zoom Karaoke", - "id": "oC71anTBqVU" - }, - { - "title": "Queen - These Are The Days Of Our Lives - Karaoke Version from Zoom Karaoke", - "id": "lwR5x53Jkec" - }, - { - "title": "Queen - You're My Best Friend - Karaoke Version from Zoom Karaoke", - "id": "dYF75NXuVDQ" - }, - { - "title": "Buddy Holly - Valley Of Tears - Karaoke Version from Zoom Karaoke", - "id": "bC8Eh74tYII" - }, - { - "title": "Queen - Killer Queen - Karaoke Version from Zoom Karaoke", - "id": "X0bRbHxrojc" - }, - { - "title": "Queen - A Kind Of Magic - Karaoke Version from Zoom Karaoke", - "id": "IWy9mO-TjNw" - }, - { - "title": "Queen - Fat Bottomed Girls - Karaoke Version from Zoom Karaoke", - "id": "AzKIHoocIuw" - }, - { - "title": "Buddy Holly - Take Your Time - Karaoke Version from Zoom Karaoke", - "id": "7N4_D7RmqBE" - }, - { - "title": "Queen - Headlong - Karaoke Version from Zoom Karaoke", - "id": "2Q9_nX2wqRk" - }, - { - "title": "Sad Cafรฉ - Every Day Hurts - Karaoke Version from Zoom Karaoke", - "id": "N_1KlvU1Qy8" - }, - { - "title": "Buddy Holly - Listen To Me - Karaoke Version from Zoom Karaoke", - "id": "t2ILvXuTi6c" - }, - { - "title": "Buddy Holly - Raining In My Heart - Karaoke Version from Zoom Karaoke", - "id": "dvVX0lzpiYY" - }, - { - "title": "Buddy Holly - Reminiscing - Karaoke Version from Zoom Karaoke", - "id": "N1R5OQFtEr8" - }, - { - "title": "Buddy Holly - Fools Paradise - Karaoke Version from Zoom Karaoke", - "id": "CZPXNyeZJEY" - }, - { - "title": "Buddy Holly - What To Do - Karaoke Version from Zoom Karaoke", - "id": "FZ7vPCfQhOI" - }, - { - "title": "Buddy Holly - Learning The Game - Karaoke Version from Zoom Karaoke", - "id": "5PRj_GvaLUM" - }, - { - "title": "Buddy Holly - True Love Ways - Karaoke Version from Zoom Karaoke", - "id": "tcPFOP1XP10" - }, - { - "title": "Buddy Holly - Well All Right - Karaoke Version from Zoom Karaoke", - "id": "rEezZVR4Tic" - }, - { - "title": "Buddy Holly - I'm Gonna Love You Too - Karaoke Version from Zoom Karaoke", - "id": "ZO8uVceghwk" - }, - { - "title": "Buddy Holly - Maybe Baby - Karaoke Version from Zoom Karaoke", - "id": "NTFAJmoTRI8" - }, - { - "title": "Buddy Holly - Love's Made A Fool Of You - Karaoke Version from Zoom Karaoke", - "id": "5zFZ-9F9iiI" - }, - { - "title": "Buddy Holly - Midnight Shift - Karaoke Version from Zoom Karaoke", - "id": "QjgtAhTxJaM" - }, - { - "title": "Buddy Holly - Words Of Love - Karaoke Version from Zoom Karaoke", - "id": "gmdBUstcIaw" - }, - { - "title": "Buddy Holly - Not Fade Away - Karaoke Version from Zoom Karaoke", - "id": "PSyZh6sYEkM" - }, - { - "title": "Buddy Holly - Think It Over - Karaoke Version from Zoom Karaoke", - "id": "cfqhKNtNsr8" - }, - { - "title": "Buddy Holly - Baby I Don't Care - Karaoke Version from Zoom Karaoke", - "id": "2Z7QYurZK0Q" - }, - { - "title": "Buddy Holly - Crying, Waiting, Hoping - Karaoke Version from Zoom Karaoke", - "id": "D9ustfb5qCk" - }, - { - "title": "Buddy Holly - Heartbeat - Karaoke Version from Zoom Karaoke", - "id": "183rrUiyPEE" - }, - { - "title": "Buddy Holly - Early In The Morning - Karaoke Version from Zoom Karaoke", - "id": "cGpBZJkp7vg" - }, - { - "title": "Buddy Holly - Peggy Sue Got Married - Karaoke Version from Zoom Karaoke", - "id": "4OCWQDudQxo" - }, - { - "title": "Buddy Holly - Rave On - Karaoke Version from Zoom Karaoke", - "id": "iLxLgdcCMh8" - }, - { - "title": "Buddy Holly - Brown Eyed Handsome Man - Karaoke Version from Zoom Karaoke", - "id": "WWPoAswfQGU" - }, - { - "title": "Roy Orbison - Penny Arcade - Karaoke Version from Zoom Karaoke", - "id": "HYNWLl4DVXw" - }, - { - "title": "Roy Orbison - Dream Baby - Karaoke Version from Zoom Karaoke", - "id": "cGDSZDdXVcU" - }, - { - "title": "Roy Orbison - Only The Lonely - Karaoke Version from Zoom Karaoke", - "id": "ERu9lEmbfuU" - }, - { - "title": "The New Seekers - I'd Like To Teach The World To Sing - Karaoke Version from Zoom Karaoke", - "id": "BP5T4wzVlvA" - }, - { - "title": "The New Seekers - Never Ending Song Of Love - Karaoke Version from Zoom Karaoke", - "id": "6TUN1zQ6XdU" - }, - { - "title": "Roy Orbison - Crying - Karaoke Version from Zoom Karaoke", - "id": "_CvjAzruPQ0" - }, - { - "title": "The Seekers - Island Of Dreams - Karaoke Version from Zoom Karaoke", - "id": "V350uQyNgNk" - }, - { - "title": "Tim McGraw - Who Are They - Karaoke Version from Zoom Karaoke", - "id": "PCuOAcTav4I" - }, - { - "title": "Tim McGraw - Real Good Man - Karaoke Version from Zoom Karaoke", - "id": "2KG3clodiQU" - }, - { - "title": "Roy Orbison - Blue Angel - Karaoke Version from Zoom Karaoke", - "id": "sxPoKXI5OiI" - }, - { - "title": "The New Seekers - Beg, Steal Or Borrow - Karaoke Version from Zoom Karaoke", - "id": "jJWHVwQ46gU" - }, - { - "title": "Roy Orbison - California Blue - Karaoke Version from Zoom Karaoke", - "id": "iMVYxDuOOG8" - }, - { - "title": "The Seekers - The Carnival Is Over - Karaoke Version from Zoom Karaoke", - "id": "hJayyi7sTCg" - }, - { - "title": "Buddy Holly - Oh Boy - Karaoke Version from Zoom Karaoke", - "id": "a8npCdvfS3U" - }, - { - "title": "Tim McGraw - She's My Kind Of Rain - Karaoke Version from Zoom Karaoke", - "id": "_DSVKRRFW1c" - }, - { - "title": "Buddy Holly - That'll Be The Day - Karaoke Version from Zoom Karaoke", - "id": "Nqq3OE_ezR4" - }, - { - "title": "Roy Orbison - In Dreams - Karaoke Version from Zoom Karaoke", - "id": "4K41SL2adEo" - }, - { - "title": "Roy Orbison - I Drove All Night - Karaoke Version from Zoom Karaoke", - "id": "-MzI7PM_7LU" - }, - { - "title": "The Seekers - A World Of Our Own - Karaoke Version from Zoom Karaoke", - "id": "tXRUk7FQTRA" - }, - { - "title": "The Seekers - Morningtown Ride - Karaoke Version from Zoom Karaoke", - "id": "irhtdsCPgAQ" - }, - { - "title": "The New Seekers - You Won't Find Another Fool Like Me - Karaoke Version from Zoom Karaoke", - "id": "e8TpYW_7phY" - }, - { - "title": "Roy Orbison - You Got It - Karaoke Version from Zoom Karaoke", - "id": "WYNgRNCi6ZE" - }, - { - "title": "Tim McGraw - Watch The Wind Blow By - Karaoke Version from Zoom Karaoke", - "id": "NFGh5jv-EKM" - }, - { - "title": "Buddy Holly - It Doesn't Matter Anymore - Karaoke Version from Zoom Karaoke", - "id": "JoqNISlR_sA" - }, - { - "title": "The Seekers - Georgy Girl - Karaoke Version from Zoom Karaoke", - "id": "mwmJ1AjKzOU" - }, - { - "title": "Tim McGraw - Red Ragtop - Karaoke Version from Zoom Karaoke", - "id": "mC1db7ALJB4" - }, - { - "title": "Roy Orbison - Running Scared - Karaoke Version from Zoom Karaoke", - "id": "Q9V2zpKRoho" - }, - { - "title": "Buddy Holly - It's So Easy - Karaoke Version from Zoom Karaoke", - "id": "BWyHfVZNw3s" - }, - { - "title": "Paloma Faith - Gold - Karaoke Version from Zoom Karaoke", - "id": "8Yr8nBoFKsE" - }, - { - "title": "Buddy Holly - Everyday - Karaoke Version from Zoom Karaoke", - "id": "Qwvl8cvC2HY" - }, - { - "title": "The Four Seasons - Sherry - Karaoke Version from Zoom Karaoke", - "id": "mYVBIaRBQpI" - }, - { - "title": "Take That - Back For Good - Karaoke Version from Zoom Karaoke", - "id": "gCuzzJvJrSk" - }, - { - "title": "The Four Seasons - Let's Hang On - Karaoke Version from Zoom Karaoke", - "id": "iq7U1v0UZWs" - }, - { - "title": "The Monkees - Daydream Believer - Karaoke Version from Zoom Karaoke", - "id": "i3RHpTe1pq4" - }, - { - "title": "Katrina & The Waves - Walking On Sunshine - Karaoke Version from Zoom Karaoke", - "id": "qwFKGijDcko" - }, - { - "title": "Take That - Love Ain't Here Anymore - Karaoke Version from Zoom Karaoke", - "id": "WlJqEimOW_Q" - }, - { - "title": "Dusty Springfield - I Only Want To Be With You - Karaoke Version from Zoom Karaoke", - "id": "29rfPNzupHM" - }, - { - "title": "The Pinkees - Danger Games - Karaoke Version from Zoom Karaoke", - "id": "FY9wsbrQR7c" - }, - { - "title": "Dusty Springfield - You Don't Have To Say You Love Me - Karaoke Version from Zoom Karaoke", - "id": "Ameljp-Cl5o" - }, - { - "title": "The Backstreet Boys - Everybody (Backstreet's Back) - Karaoke Version from Zoom Karaoke", - "id": "ymKTKogXBuA" - }, - { - "title": "Take That - It Only Takes A Minute - Karaoke Version from Zoom Karaoke", - "id": "sJJBwTaGQv8" - }, - { - "title": "Elvis Costello & The Attractions - I Can't Stand Up (For Falling Down) - Karaoke Version", - "id": "nLUHZNsPHAA" - }, - { - "title": "Elvis Costello - Good Year For The Roses - Karaoke Version from Zoom Karaoke", - "id": "jf5aKd6WhcI" - }, - { - "title": "Take That - How Deep Is Your Love - Karaoke Version from Zoom Karaoke", - "id": "iXYKvkDtA3M" - }, - { - "title": "Cilla Black - Anyone Who Had A Heart - Karaoke Version from Zoom Karaoke", - "id": "h3A_OlZQDkU" - }, - { - "title": "Elvis Costello - Alison - Karaoke Version from Zoom Karaoke", - "id": "f7BIWSmPRcU" - }, - { - "title": "Dusty Springfield - Son Of A Preacher Man - Karaoke Version from Zoom Karaoke", - "id": "bx13oq0QKag" - }, - { - "title": "Billie Piper - Because We Want To - Karaoke Version from Zoom Karaoke", - "id": "bawTYMRVkpA" - }, - { - "title": "Cilla Black - Alfie - Karaoke Version from Zoom Karaoke", - "id": "Y8Kqmss27FE" - }, - { - "title": "The Four Seasons - Rag Doll - Karaoke Version from Zoom Karaoke", - "id": "Wp9UY6zcMYw" - }, - { - "title": "The Four Seasons - Walk Like A Man - Karaoke Version from Zoom Karaoke", - "id": "GTEjfn1OKPQ" - }, - { - "title": "Helen Shapiro - Don't Treat Me Like A Child - Karaoke Version from Zoom Karaoke", - "id": "AbtUb9Torrg" - }, - { - "title": "Elvis Costello - Watching The Detectives - Karaoke Version from Zoom Karaoke", - "id": "9VNCG84uJOg" - }, - { - "title": "Celine Dion - My Heart Will Go On - Karaoke Version from Zoom Karaoke", - "id": "JZM4JVYX-zE" - }, - { - "title": "Clodagh Rodgers - Jack In The Box - Karaoke Version from Zoom Karaoke", - "id": "n_nPdTyS7ns" - }, - { - "title": "Norman Greenbaum - Spirit In The Sky - Karaoke Version from Zoom Karaoke", - "id": "wPWgQqUptfE" - }, - { - "title": "Johnny Logan - Hold Me Now - Karaoke Version from Zoom Karaoke", - "id": "Nv8SGJ5pq1I" - }, - { - "title": "Sonia - Better The Devil You Know - Karaoke Version from Zoom Karaoke", - "id": "DyPn0FP1KWg" - }, - { - "title": "Squeeze - Cool For Cats - Karaoke Version from Zoom Karaoke", - "id": "aCXpjoK45fQ" - }, - { - "title": "Frank Sinatra - My Way - Karaoke Version from Zoom Karaoke", - "id": "TFoXx8WmOZE" - }, - { - "title": "Jack Johnson - Sitting, Waiting, Wishing - Karaoke Version from Zoom Karaoke", - "id": "nNALvtS1dWc" - }, - { - "title": "Connie Francis - Lipstick On Your Collar - Karaoke Version from Zoom Karaoke", - "id": "hSqb2oyP4u8" - }, - { - "title": "Ricky Martin - Livin' La Vida Loca - Karaoke Version from Zoom Karaoke", - "id": "f4jmFSVnVsA" - }, - { - "title": "Deep Blue Something - Breakfast At Tiffany's - Karaoke Version from Zoom Karaoke", - "id": "efh0N_J616c" - }, - { - "title": "Britney Spears - Baby One More Time - Karaoke Version from Zoom Karaoke", - "id": "dyii_7HSLpE" - }, - { - "title": "Cilla Black - You're My World - Karaoke Version from Zoom Karaoke", - "id": "7pl3loEnmOU" - }, - { - "title": "Pearl Carr And Teddy Johnson - Sing Little Birdie - Karaoke Version from Zoom Karaoke", - "id": "vfUFclJ6UhI" - }, - { - "title": "Andy Williams - Can't Take My Eyes Off You - Karaoke Version from Zoom Karaoke", - "id": "u-y4NiAmHLM" - }, - { - "title": "Katrina & The Waves - Love Shine A Light - Karaoke Version from Zoom Karaoke", - "id": "stqzmdd8i3U" - }, - { - "title": "Elvis Costello - I Don't Want To Go To Chelsea - Karaoke Version from Zoom Karaoke", - "id": "okPgxUJ1l1Q" - }, - { - "title": "Daniel Powter - Bad Day - Karaoke Version from Zoom Karaoke", - "id": "f1LGjTQRh5E" - }, - { - "title": "Helen Shapiro - You Don't Know - Karaoke Version from Zoom Karaoke", - "id": "aAD8G6AV7nU" - }, - { - "title": "The Mavericks - Dance The Night Away - Karaoke Version from Zoom Karaoke", - "id": "_m1Awj0aqmI" - }, - { - "title": "Barry White - You're The First, The Last, My Everything - Karaoke Version from Zoom Karaok", - "id": "NEg2ISIgMas" - }, - { - "title": "David Gray - Hospital Food - Karaoke Version from Zoom Karaoke", - "id": "7fuB7No1Q2U" - }, - { - "title": "Helen Shapiro - Walkin' Back To Happiness - Karaoke Version from Zoom Karaoke", - "id": "65DgO-zTn_k" - }, - { - "title": "Tom Robinson Band - 2-4-6-8 Motorway - Karaoke Version from Zoom Karaoke", - "id": "Tr8rQaMTOa0" - }, - { - "title": "Sandie Shaw - Puppet On A String - Karaoke Version from Zoom Karaoke", - "id": "wVRlx1F4tL8" - }, - { - "title": "Sandie Shaw - (There's) Always Something There To Remind Me - Karaoke Version from Zoom Karaoke", - "id": "lalFM_23Pr4" - }, - { - "title": "Sandie Shaw - Long Live Love - Karaoke Version from Zoom Karaoke", - "id": "tyz5G8DDiP4" - }, - { - "title": "Lulu - The Boat That I Row - Karaoke Version from Zoom Karaoke", - "id": "gw5kS-2j3Bc" - }, - { - "title": "Shayne Ward - That's My Goal - Karaoke Version from Zoom Karaoke", - "id": "fUWmaPmIN4k" - }, - { - "title": "Squeeze - Pulling Mussels (From The Shell) - Karaoke Version from Zoom Karaoke", - "id": "dw8d-7bwBeI" - }, - { - "title": "Lulu - Boom Bang-A-Bang - Karaoke Version from Zoom Karaoke", - "id": "dFhwvCrRThI" - }, - { - "title": "James Blunt - High - Karaoke Version from Zoom Karaoke", - "id": "VqRZ1-x9Nbg" - }, - { - "title": "Squeeze - Is That Love - Karaoke Version from Zoom Karaoke", - "id": "FznPEPbcXD0" - }, - { - "title": "Lulu - Shout - Karaoke Version from Zoom Karaoke", - "id": "8lYAvkKXQ74" - }, - { - "title": "The Osmonds - Crazy Horses - Karaoke Version from Zoom Karaoke", - "id": "RGMOvfMorAI" - }, - { - "title": "David Gray - Babylon - Karaoke Version from Zoom Karaoke", - "id": "z0713LKIeCw" - }, - { - "title": "The Osmonds - Goin' Home - Karaoke Version from Zoom Karaoke", - "id": "Qb2O-fXL_sM" - }, - { - "title": "Daniel Powter - Free Loop - Karaoke Version from Zoom Karaoke", - "id": "Nd01rpddVTQ" - }, - { - "title": "Status Quo - Jam Side Down - Karaoke Version from Zoom Karaoke", - "id": "J9GTCfR97Hc" - }, - { - "title": "Julian Lennon - Saltwater - Karaoke Version from Zoom Karaoke", - "id": "C_vlToRt3_4" - }, - { - "title": "Status Quo - Burning Bridges - Karaoke Version from Zoom Karaoke", - "id": "8OXrJkvaV2c" - }, - { - "title": "Culture Club - Do You Really Want To Hurt Me - Karaoke Version from Zoom Karaoke", - "id": "PT1H_9r-xT4" - }, - { - "title": "Wham! - The Edge Of Heaven - Karaoke Version from Zoom Karaoke", - "id": "GEr9sF-55Yc" - }, - { - "title": "The Pretenders - 2000 Miles - Karaoke Version from Zoom Karaoke", - "id": "YgeaykbuscE" - }, - { - "title": "Bad Company - Feel Like Makin' Love - Karaoke Version from Zoom Karaoke", - "id": "CT4oQJakFP8" - }, - { - "title": "Electric Light Orchestra - Evil Woman - Karaoke Version from Zoom Karaoke", - "id": "wjLtdfBgrPc" - }, - { - "title": "Chris De Burgh - A Spaceman Came Travelling - Karaoke Version from Zoom Karaoke", - "id": "jJrul0iNXTk" - }, - { - "title": "Electric Light Orchestra - Hold On Tight - Karaoke Version from Zoom Karaoke", - "id": "vZtKRr0vziY" - }, - { - "title": "Culture Club - Church Of The Poison Mind - Karaoke Version from Zoom Karaoke", - "id": "pL7ZG_hIsOU" - }, - { - "title": "Dave Edmunds - Girls Talk - Karaoke Version from Zoom Karaoke", - "id": "kRqfGiIniq4" - }, - { - "title": "Mud - Lonely This Christmas - Karaoke Version from Zoom Karaoke", - "id": "6JbuLYHBNVA" - }, - { - "title": "Wizzard - I Wish It Could Be Christmas Everyday - Karaoke Version from Zoom Karaoke", - "id": "tN38eFl2OfE" - }, - { - "title": "Jack Johnson - Better Together - Karaoke Version from Zoom Karaoke", - "id": "d3U9MOLbZ7M" - }, - { - "title": "Whitesnake - Fool For Your Loving - Karaoke Version from Zoom Karaoke", - "id": "LRVX8z0Wp8Q" - }, - { - "title": "Culture Club - It's A Miracle - Karaoke Version from Zoom Karaoke", - "id": "BkeXJngxYsQ" - }, - { - "title": "Greg Lake - I Believe In Father Christmas - Karaoke Version from Zoom Karaoke", - "id": "BPmLEtCJEL4" - }, - { - "title": "Wham! - Freedom - Karaoke Version from Zoom Karaoke", - "id": "T8YKieDWO2E" - }, - { - "title": "Squeeze - Labelled With Love - Karaoke Version from Zoom Karaoke", - "id": "RGQcqnFv7fw" - }, - { - "title": "Jona Lewie - Stop The Cavalry - Karaoke Version from Zoom Karaoke", - "id": "JcpgwpgjMCg" - }, - { - "title": "David Essex - A Winter's Tale - Karaoke Version from Zoom Karaoke", - "id": "5KpmxV5JXDM" - }, - { - "title": "Slade - Merry Xmas Everybody - Karaoke Version from Zoom Karaoke", - "id": "nhE42tern8s" - }, - { - "title": "Electric Light Orchestra - All Over The World - Karaoke Version from Zoom Karaoke", - "id": "ndHtNj_iSYE" - }, - { - "title": "The Pogues feat Kirsty MacColl - Fairytale Of New York - Karaoke Version from Zoom Karaoke", - "id": "lkb2txN0VVM" - }, - { - "title": "John Lennon - Happy Xmas (War Is Over) - Karaoke Version from Zoom Karaoke", - "id": "lNjst3_J0To" - }, - { - "title": "Culture Club - Time (Clock Of The Heart) - Karaoke Version from Zoom Karaoke", - "id": "iwDSXlKFjV0" - }, - { - "title": "Jack Johnson - Good People - Karaoke Version from Zoom Karaoke", - "id": "eAqR5oQRWVk" - }, - { - "title": "Status Quo - Caroline - Karaoke Version from Zoom Karaoke", - "id": "Yeya0tcVQpY" - }, - { - "title": "Wham! - Last Christmas - Karaoke Version from Zoom Karaoke", - "id": "YQw1sPayBMk" - }, - { - "title": "Wham! - Club Tropicana - Karaoke Version from Zoom Karaoke", - "id": "VqEh3CnmXWQ" - }, - { - "title": "Chris Rea - Driving Home For Christmas - Karaoke Version from Zoom Karaoke", - "id": "4v6_CbUv90A" - }, - { - "title": "Gene Pitney - Backstage - Karaoke Version from Zoom Karaoke", - "id": "w9eCZpOWhOs" - }, - { - "title": "Boney M - Rasputin (Duet) - Karaoke Version from Zoom Karaoke", - "id": "vTcqiBmu_Hc" - }, - { - "title": "Gene Pitney - It Hurts To Be In Love - Karaoke Version from Zoom Karaoke", - "id": "l62OIR8vRt4" - }, - { - "title": "John Lennon - Whatever Gets You Thru The Night - Karaoke Version from Zoom Karaoke", - "id": "bloUbQOuPh0" - }, - { - "title": "Chris De Burgh - Don't Pay The Ferryman - Karaoke Version from Zoom Karaoke", - "id": "bN4H6GGe4jk" - }, - { - "title": "Gene Pitney - Maria Elena - Karaoke Version from Zoom Karaoke", - "id": "WlGB6iTSZRQ" - }, - { - "title": "Gene Pitney - Princess In Rags - Karaoke Version from Zoom Karaoke", - "id": "QWqeoDm6Lm0" - }, - { - "title": "Smokie - Oh Carol - Karaoke Version from Zoom Karaoke", - "id": "Pa46G7iaewY" - }, - { - "title": "Meat Loaf - Heaven Can Wait - Karaoke Version from Zoom Karaoke", - "id": "HiztNh6h8u0" - }, - { - "title": "Gene Pitney - Looking Through The Eyes Of Love - Karaoke Version from Zoom Karaoke", - "id": "6KxoVG1EGJY" - }, - { - "title": "Gene Pitney - I Must Be Seeing Things - Karaoke Version from Zoom Karaoke", - "id": "-TKtxi5IAts" - }, - { - "title": "Avril Lavigne - Things I'll Never Say - Karaoke Version from Zoom Karaoke", - "id": "fonF-bKgPks" - }, - { - "title": "John Lennon - Instant Karma - Karaoke Version from Zoom Karaoke", - "id": "foge8G7yx84" - }, - { - "title": "Shirley Bassey - Never Never Never - Karaoke Version from Zoom Karaoke", - "id": "bOImhpn__4U" - }, - { - "title": "Avril Lavigne - Anything But Ordinary - Karaoke Version from Zoom Karaoke", - "id": "UGJaLhmL3a8" - }, - { - "title": "The Beach Boys - Then I Kissed Her - Karaoke Version from Zoom Karaoke", - "id": "59FFLe8udvk" - }, - { - "title": "The Tremeloes - Here Comes My Baby - Karaoke Version from Zoom Karaoke", - "id": "wD7YEZLtq_Y" - }, - { - "title": "Gerry & The Pacemakers - Ferry 'Cross The Mersey - Karaoke Version from Zoom Karaoke", - "id": "v_XmnhU4-Nw" - }, - { - "title": "Avril Lavigne - Mobile - Karaoke Version from Zoom Karaoke", - "id": "iS_MXpClrIs" - }, - { - "title": "The Farm - All Together Now - Karaoke Version from Zoom Karaoke", - "id": "VVYDdG7L0ls" - }, - { - "title": "Avril Lavigne - Complicated - Karaoke Version from Zoom Karaoke", - "id": "S3-YMjXw8uI" - }, - { - "title": "Paul Young - Come Back And Stay - Karaoke Version from Zoom Karaoke", - "id": "PrVJbm4GJ10" - }, - { - "title": "Avril Lavigne - My World - Karaoke Version from Zoom Karaoke", - "id": "NL6cKK5cNfE" - }, - { - "title": "Avril Lavigne - I'm With You - Karaoke Version from Zoom Karaoke", - "id": "HSpl_grEpFA" - }, - { - "title": "Avril Lavigne - Losing Grip - Karaoke Version from Zoom Karaoke", - "id": "GVwARPohtXI" - }, - { - "title": "Gerry & The Pacemakers - Don't Let The Sun Catch You Crying - Karaoke Version from Zoom Ka", - "id": "FnAKf7tHkZo" - }, - { - "title": "Billy Joel - Piano Man - Karaoke Version from Zoom Karaoke", - "id": "vOHCabsdgzU" - }, - { - "title": "The Tremeloes - Even The Bad Times Are Good - Karaoke Version from Zoom Karaoke", - "id": "mJbhn-Uyd9Y" - }, - { - "title": "The Hollies - Yes I Will - Karaoke Version from Zoom Karaoke", - "id": "iYZC1aixrbM" - }, - { - "title": "Gerry & The Pacemakers - I'm The One - Karaoke Version from Zoom Karaoke", - "id": "f7DFJ3qpHKA" - }, - { - "title": "The Fortunes - Here It Comes Again - Karaoke Version from Zoom Karaoke", - "id": "YcpKwhKWXyA" - }, - { - "title": "The Fortunes - You've Got Your Troubles - Karaoke Version from Zoom Karaoke", - "id": "Y0aG_RglQZg" - }, - { - "title": "The Kinks - Dedicated Follower Of Fashion - Karaoke Version from Zoom Karaoke", - "id": "1zElhK4p0wQ" - }, - { - "title": "The Hollies - Look Through Any Window - Karaoke Version from Zoom Karaoke", - "id": "14rMFUbekZ4" - }, - { - "title": "Kelly Clarkson - Gone - Karaoke Version from Zoom Karaoke", - "id": "8nxJFZq0UUY" - }, - { - "title": "Take That feat Lulu - Relight My Fire (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "Iy42gxG9nFw" - }, - { - "title": "The Beach Boys - Sloop John B - Karaoke Version from Zoom Karaoke", - "id": "yo2KtXa0tM4" - }, - { - "title": "Sting - Fields Of Gold - Karaoke Version from Zoom Karaoke", - "id": "wdvA15QNa4w" - }, - { - "title": "Take That - Relight My Fire (Male Solo Version) - Karaoke Version from Zoom Karaoke", - "id": "nwwMEIsWLBA" - }, - { - "title": "The Small Faces - Itchycoo Park - Karaoke Version from Zoom Karaoke", - "id": "k3uESQuMa5U" - }, - { - "title": "Kelly Clarkson - Beautiful Disaster (Live) - Karaoke Version from Zoom Karaoke", - "id": "ek_PwqizQ2A" - }, - { - "title": "Simon Webbe - No Worries (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "OrD5J2kK0zY" - }, - { - "title": "Kelly Clarkson - Breakaway - Karaoke Version from Zoom Karaoke", - "id": "M8Nn74w2W1Y" - }, - { - "title": "Take That - Could It Be Magic - Karaoke Version from Zoom Karaoke", - "id": "2LAdWuRLaog" - }, - { - "title": "Kelly Clarkson - Since U Been Gone - Karaoke Version from Zoom Karaoke", - "id": "Yn7pVjO7_2Q" - }, - { - "title": "Police - Every Breath You Take - Karaoke Version from Zoom Karaoke", - "id": "hVA5qsh6IX4" - }, - { - "title": "The Beach Boys - Sloop John B (Cool Vocal Only Ending) - Karaoke Version from Zoom Karaoke", - "id": "RHK7ooxmJeM" - }, - { - "title": "Joss Stone - You Had Me - Karaoke Version from Zoom Karaoke", - "id": "qmKOAfkEvfU" - }, - { - "title": "Take That - Never Forget - Karaoke Version from Zoom Karaoke", - "id": "q20Mg0g3lCc" - }, - { - "title": "Take That - Everything Changes - Karaoke Version from Zoom Karaoke", - "id": "gU99DQrhg5k" - }, - { - "title": "Police - Can't Stand Losing You - Karaoke Version from Zoom Karaoke", - "id": "c6Gj4EUIYxc" - }, - { - "title": "Take That - Sure - Karaoke Version from Zoom Karaoke", - "id": "UomqVgn1v04" - }, - { - "title": "Police - Don't Stand So Close To Me - Karaoke Version from Zoom Karaoke", - "id": "ItXK3A2OnVw" - }, - { - "title": "Frankie Laine - Wanted Man - Karaoke Version from Zoom Karaoke", - "id": "8V4bwV57Q18" - }, - { - "title": "Kelly Clarkson - Because Of You - Karaoke Version from Zoom Karaoke", - "id": "7CCP05leLbk" - }, - { - "title": "Police - De Do Do Do, De Da Da Da - Karaoke Version from Zoom Karaoke", - "id": "6a0KGcahhQI" - }, - { - "title": "Police - So Lonely - Karaoke Version from Zoom Karaoke", - "id": "47NaJOBg9sc" - }, - { - "title": "Take That - Never Forget (Shortened Version) - Karaoke Version from Zoom Karaoke", - "id": "1n6jhkfOMnE" - }, - { - "title": "The Troggs - With A Girl Like You - Karaoke Version from Zoom Karaoke", - "id": "habKeI6pSiA" - }, - { - "title": "Sting - Englishman In New York - Karaoke Version from Zoom Karaoke", - "id": "dLB98JBRXhI" - }, - { - "title": "Herman's Hermits - I'm Into Something Good - Karaoke Version from Zoom Karaoke", - "id": "WzldIWfhl0s" - }, - { - "title": "Kirsty MacColl - Days - Karaoke Version from Zoom Karaoke", - "id": "Wj3okeqkk8g" - }, - { - "title": "The Troggs - I Can't Control Myself - Karaoke Version from Zoom Karaoke", - "id": "6JLjz0WtF-g" - }, - { - "title": "Westlife - That's Where You Find Love - Karaoke Version from Zoom Karaoke", - "id": "62_tMl1r5xw" - }, - { - "title": "The Isley Brothers - Summer Breeze - Karaoke Version from Zoom Karaoke", - "id": "4d6qYdRmTaA" - }, - { - "title": "Joss Stone - Jet Lag - Karaoke Version from Zoom Karaoke", - "id": "E_HeF3Boeno" - }, - { - "title": "The Troggs - Love Is All Around - Karaoke Version from Zoom Karaoke", - "id": "tprIRZthpCA" - }, - { - "title": "Lee Ryan - When I Think Of You - Karaoke Version from Zoom Karaoke", - "id": "oFShACwzqE8" - }, - { - "title": "The Animals - We Gotta Get Out Of This Place - Karaoke Version from Zoom Karaoke", - "id": "jJIwVzR3zFQ" - }, - { - "title": "Crowded House - Weather With You - Karaoke Version from Zoom Karaoke", - "id": "e4_NqLps9fo" - }, - { - "title": "The Small Faces - Lazy Sunday - Karaoke Version from Zoom Karaoke", - "id": "bdVItq_qc6c" - }, - { - "title": "Style Council - Long Hot Summer - Karaoke Version from Zoom Karaoke", - "id": "XxCN0NDVefg" - }, - { - "title": "The Rolling Stones - Jumping Jack Flash - Karaoke Version from Zoom Karaoke", - "id": "Lf2gCTJ2pt8" - }, - { - "title": "Belinda Carlisle - Summer Rain - Karaoke Version from Zoom Karaoke", - "id": "KS584mUTQxI" - }, - { - "title": "Martha & The Muffins - Echo Beach - Karaoke Version from Zoom Karaoke", - "id": "IP7iHW-z2aY" - }, - { - "title": "Bill Withers - Lovely Day - Karaoke Version from Zoom Karaoke", - "id": "El-VI-Em12E" - }, - { - "title": "Take That - Pray - Karaoke Version from Zoom Karaoke", - "id": "1vySH6m-yQM" - }, - { - "title": "The Troggs - Any Way That You Want Me - Karaoke Version from Zoom Karaoke", - "id": "0DB7Jq5_cFE" - }, - { - "title": "Westlife - Amazing - Karaoke Version from Zoom Karaoke", - "id": "QClt9fT0p_w" - }, - { - "title": "The Small Faces - All Or Nothing - Karaoke Version from Zoom Karaoke", - "id": "pI51OTtpTZI" - }, - { - "title": "Joss Stone - Right To Be Wrong - Karaoke Version from Zoom Karaoke", - "id": "j9Xlm_xXrSY" - }, - { - "title": "Take That - A Million Love Songs - Karaoke Version from Zoom Karaoke", - "id": "fztMu9ZfnIo" - }, - { - "title": "The Small Faces - Tin Soldier - Karaoke Version from Zoom Karaoke", - "id": "d7DuezPtMLI" - }, - { - "title": "The Animals - Don't Let Me Be Misunderstood - Karaoke Version from Zoom Karaoke", - "id": "MfkfUgpY9GA" - }, - { - "title": "The Small Faces - Sha La La La Lee - Karaoke Version from Zoom Karaoke", - "id": "IDjlM8GnNrA" - }, - { - "title": "Robbie Williams - Advertising Space - Karaoke Version from Zoom Karaoke", - "id": "G780u2zP1oA" - }, - { - "title": "Corinne Bailey Rae - Put Your Records On - Karaoke Version from Zoom Karaoke", - "id": "FGzWgOqhZ6I" - }, - { - "title": "Mungo Jerry - In The Summertime - Karaoke Version from Zoom Karaoke", - "id": "9P2zxHjJTmc" - }, - { - "title": "First Class - Beach Baby - Karaoke Version from Zoom Karaoke", - "id": "3R4-33bwENA" - }, - { - "title": "The Shadows - Apache (Minus Lead Guitar) - Karaoke Version from Zoom Karaoke", - "id": "ZvF75emjEwg" - }, - { - "title": "The Shadows - Apache - Karaoke Version from Zoom Karaoke", - "id": "Tg9f1OqbEJQ" - }, - { - "title": "Cliff Richard - The Young Ones - Karaoke Version from Zoom Karaoke", - "id": "1dLrNV6pF8M" - }, - { - "title": "Johnny Cash - Big River - Karaoke Version from Zoom Karaoke", - "id": "xPDxQp3zaMw" - }, - { - "title": "Johnny Cash And June Carter - Jackson - Karaoke Version from Zoom Karaoke", - "id": "souc0Z-WenA" - }, - { - "title": "Johnny Cash - Man In Black - Karaoke Version from Zoom Karaoke", - "id": "n9hiJCFHG84" - }, - { - "title": "Johnny Cash - San Quentin (Live) - Karaoke Version from Zoom Karaoke", - "id": "d8lk33Wm-e4" - }, - { - "title": "Johnny Cash - A Thing Called Love - Karaoke Version from Zoom Karaoke", - "id": "XyUUu9XT0RY" - }, - { - "title": "Cliff Richard - Devil Woman - Karaoke Version from Zoom Karaoke", - "id": "2QDj4bxPMSE" - }, - { - "title": "Meck feat Leo Sayer - Thunder In My Heart Again - Karaoke Version from Zoom Karaoke", - "id": "xRvL3R6X3u8" - }, - { - "title": "Erasure - Blue Savannah - Karaoke Version from Zoom Karaoke", - "id": "ss5mDIqosgI" - }, - { - "title": "Marmalade - Falling Apart At The Seams - Karaoke Version from Zoom Karaoke", - "id": "irKBOKb3xkc" - }, - { - "title": "Erasure - Ship Of Fools - Karaoke Version from Zoom Karaoke", - "id": "fy6o1Yn2WD8" - }, - { - "title": "Erasure - Love To Hate You - Karaoke Version from Zoom Karaoke", - "id": "czZWpzXKdqA" - }, - { - "title": "Marie Osmond - Paper Roses - Karaoke Version from Zoom Karaoke", - "id": "bDuaSLguFcs" - }, - { - "title": "Cliff Richard - A Voice In The Wilderness - Karaoke Version from Zoom Karaoke", - "id": "Wiutektg0JA" - }, - { - "title": "Little Jimmy Osmond - Long Haired Lover From Liverpool - Karaoke Version from Zoom Karaoke", - "id": "V1eTUF8QVjg" - }, - { - "title": "Donny Osmond - The Donny Osmond Medley - Karaoke Version from Zoom Karaoke", - "id": "HFH0SyALi_A" - }, - { - "title": "Marmalade - Rainbow - Karaoke Version from Zoom Karaoke", - "id": "4xrrof2tDyc" - }, - { - "title": "Erasure - Sometimes - Karaoke Version from Zoom Karaoke", - "id": "-JEqbY4NSIM" - }, - { - "title": "Cliff Richard - 'D' In Love - Karaoke Version from Zoom Karaoke", - "id": "vRovjuO-LPo" - }, - { - "title": "The Honeycombs - Have I The Right - Karaoke Version from Zoom Karaoke", - "id": "upkSv7B8aPk" - }, - { - "title": "Donny Osmond - The Twelfth Of Never - Karaoke Version from Zoom Karaoke", - "id": "svntsgDJvE0" - }, - { - "title": "Erasure - Victim Of Love - Karaoke Version from Zoom Karaoke", - "id": "oRFHysUguS4" - }, - { - "title": "Hilary Duff - Wake Up - Karaoke Version from Zoom Karaoke", - "id": "o8U3KOmcZ58" - }, - { - "title": "Stevie Wonder - Positivity - Karaoke Version from Zoom Karaoke", - "id": "nG5AMTSxUUQ" - }, - { - "title": "Creedence Clearwater Revival - Bad Moon Rising - Karaoke Version from Zoom Karaoke", - "id": "moiyvuaUrUQ" - }, - { - "title": "Cliff Richard - Dancing Shoes - Karaoke Version from Zoom Karaoke", - "id": "leF5zT-4rJk" - }, - { - "title": "Erasure - Stop! - Karaoke Version from Zoom Karaoke", - "id": "eJfyUtvUbQ8" - }, - { - "title": "Erasure - Oh L'amour - Karaoke Version from Zoom Karaoke", - "id": "cq_k4L3xBxQ" - }, - { - "title": "Cliff Richard - On The Beach - Karaoke Version from Zoom Karaoke", - "id": "afKoOeCPz_c" - }, - { - "title": "Cliff Richard - Do You Wanna Dance - Karaoke Version from Zoom Karaoke", - "id": "aAX3r3BOvsk" - }, - { - "title": "Erasure - The Circus - Karaoke Version from Zoom Karaoke", - "id": "WPcvp6H-IFY" - }, - { - "title": "Carole King - It Might As Well Rain Until September - Karaoke Version from Zoom Karaoke", - "id": "Tumkg7fMiBo" - }, - { - "title": "Frank Ifield - Lovesick Blues - Karaoke Version from Zoom Karaoke", - "id": "Rnch5hzky3E" - }, - { - "title": "Billy J Kramer & The Dakotas - Bad To Me - Karaoke Version from Zoom Karaoke", - "id": "PdW2ODGDD5c" - }, - { - "title": "Cliff Richard - I Could Easily Fall In Love With You - Karaoke Version from Zoom Karaoke", - "id": "PLrnSbQfSh4" - }, - { - "title": "Manfred Mann - If You Gotta Go, Go Now - Karaoke Version from Zoom Karaoke", - "id": "3rLcx-OMCk8" - }, - { - "title": "Rod Stewart - Baby Jane - Karaoke Version from Zoom Karaoke", - "id": "80tV7zRDrYM" - }, - { - "title": "The Move - Flowers In The Rain - Karaoke Version from Zoom Karaoke", - "id": "XNXtGrVfsZM" - }, - { - "title": "Donny Osmond - Why - Karaoke Version from Zoom Karaoke", - "id": "G_xEWEI0k5s" - }, - { - "title": "Rod Stewart - You're In My Heart - Karaoke Version from Zoom Karaoke", - "id": "urXaESM_n0Y" - }, - { - "title": "The Monkees - Last Train To Clarksville - Karaoke Version from Zoom Karaoke", - "id": "qejeZi3K5T8" - }, - { - "title": "The Move - Blackberry Way - Karaoke Version from Zoom Karaoke", - "id": "ppoUztPrPxw" - }, - { - "title": "Mamas And The Papas - California Dreamin' - Karaoke Version from Zoom Karaoke", - "id": "oLggPLDvCoc" - }, - { - "title": "Billy Joel - This Night - Karaoke Version from Zoom Karaoke", - "id": "nGAYrhBogsM" - }, - { - "title": "Mama Cass - Dream A Little Dream Of Me - Karaoke Version from Zoom Karaoke", - "id": "gda_HfE3hVM" - }, - { - "title": "Marmalade - Baby Make It Soon - Karaoke Version from Zoom Karaoke", - "id": "c8Tuamnlt30" - }, - { - "title": "The Osmonds - Let Me In - Karaoke Version from Zoom Karaoke", - "id": "ZxQ9yU6oK2g" - }, - { - "title": "Mamas And The Papas - Dedicated To The One I Love - Karaoke Version from Zoom Karaoke", - "id": "XFnlmWRUGQc" - }, - { - "title": "The Monkees - A Little Bit Me, A Little Bit You - Karaoke Version from Zoom Karaoke", - "id": "CuhRfMiYt3Y" - }, - { - "title": "Marmalade - Cousin Norman - Karaoke Version from Zoom Karaoke", - "id": "8xWcagTiyBI" - }, - { - "title": "The Mindbenders - A Groovy Kind Of Love - Karaoke Version from Zoom Karaoke", - "id": "1RqrrbfM_BE" - }, - { - "title": "Donny And Marie Osmond - I'm Leaving It All (Up To You) - Karaoke Version from Zoom Karaoke", - "id": "UFgCQiBj1uw" - }, - { - "title": "The Monkees - (I'm Not Your) Steppin' Stone - Karaoke Version from Zoom Karaoke", - "id": "zgMwfksganY" - }, - { - "title": "Morrissey - You Have Killed Me - Karaoke Version from Zoom Karaoke", - "id": "v97bLn4T0N4" - }, - { - "title": "Cliff Richard - Bachelor Boy - Karaoke Version from Zoom Karaoke", - "id": "t5JkptpX56s" - }, - { - "title": "Rod Stewart - Have I Told You Lately - Karaoke Version from Zoom Karaoke", - "id": "a-FDEc3BIAQ" - }, - { - "title": "Billy Joel - A Matter Of Trust - Karaoke Version from Zoom Karaoke", - "id": "Rk53LQmAo1E" - }, - { - "title": "Madonna - Crazy For You - Karaoke Version from Zoom Karaoke", - "id": "REDulNkulBc" - }, - { - "title": "Matt Monro - Softly As I Leave You - Karaoke Version from Zoom Karaoke", - "id": "PHykfQLyS84" - }, - { - "title": "Kubb - Grow - Karaoke Version from Zoom Karaoke", - "id": "BGoui6FCHBc" - }, - { - "title": "Richard Ashcroft - Break The Night With Colour - Karaoke Version from Zoom Karaoke", - "id": "B5Nn1DJuywM" - }, - { - "title": "Donny Osmond - Young Love - Karaoke Version from Zoom Karaoke", - "id": "AxXcL-zdWkc" - }, - { - "title": "Rod Stewart - Every Beat Of My Heart - Karaoke Version from Zoom Karaoke", - "id": "7H_2pEY8hGs" - }, - { - "title": "Rod Stewart - The First Cut Is The Deepest - Karaoke Version from Zoom Karaoke", - "id": "5I36VDtzEC4" - }, - { - "title": "Marmalade - Reflections Of My Life - Karaoke Version from Zoom Karaoke", - "id": "0GEDpMPJvbM" - }, - { - "title": "James Blunt - Wisemen - Karaoke Version from Zoom Karaoke", - "id": "szOiqtqVAS8" - }, - { - "title": "Billy Joel - You May Be Right - Karaoke Version from Zoom Karaoke", - "id": "nG9yADGFMhA" - }, - { - "title": "Billy Joel - My Life (Album Version) - Karaoke Version from Zoom Karaoke", - "id": "hcP5vYw5rc4" - }, - { - "title": "Will Young - All Time Love - Karaoke Version from Zoom Karaoke", - "id": "f9ueAkgo1Ao" - }, - { - "title": "Billy Joel - And So It Goes - Karaoke Version from Zoom Karaoke", - "id": "bZArP4OiWO8" - }, - { - "title": "Billy Joel - New York State Of Mind - Karaoke Version from Zoom Karaoke", - "id": "bT4o_W5Eh3A" - }, - { - "title": "Billy Joel - Miami 2017 Seen The Lights Go Out On Broadway Live - Karaoke Version from Zoom Karaoke", - "id": "Whg4xr7P5yM" - }, - { - "title": "Billy Joel - Movin' Out (Anthony's Song) - Karaoke Version from Zoom Karaoke", - "id": "NTV-44MfCbI" - }, - { - "title": "Gnarls Barkley - Crazy - Karaoke Version from Zoom Karaoke", - "id": "Jxn60AwPeg0" - }, - { - "title": "Billy Joel - River Of Dreams - Karaoke Version from Zoom Karaoke", - "id": "x_bLJuKZCgw" - }, - { - "title": "Billy Joel - Leningrad - Karaoke Version from Zoom Karaoke", - "id": "w1CrAJv0ink" - }, - { - "title": "James Blunt - Goodbye My Lover - Karaoke Version from Zoom Karaoke", - "id": "syQItuL3PJ0" - }, - { - "title": "Billy Joel - The Longest Time - Karaoke Version from Zoom Karaoke", - "id": "p9vSm_a1iLw" - }, - { - "title": "Billy Joel - She's Got A Way (Live) - Karaoke Version from Zoom Karaoke", - "id": "o6VNv8eXNOA" - }, - { - "title": "Billy Joel - I Go To Extremes - Karaoke Version from Zoom Karaoke", - "id": "nh1LG6laxAo" - }, - { - "title": "Rod Stewart - Tonight's The Night (Gonna Be Alright) - Karaoke Version from Zoom Karaoke", - "id": "_PM-HfOsecg" - }, - { - "title": "Billy Joel - Tell Her About It - Karaoke Version from Zoom Karaoke", - "id": "Zv4bX_iw33o" - }, - { - "title": "Billy Joel - Honesty - Karaoke Version from Zoom Karaoke", - "id": "ZDBa9XcQ59U" - }, - { - "title": "Billy Joel - She's Always A Woman - Karaoke Version from Zoom Karaoke", - "id": "W9TbMJQMppI" - }, - { - "title": "Gene Pitney - Just One Smile - Karaoke Version from Zoom Karaoke", - "id": "TfU1PGLskSI" - }, - { - "title": "Madonna - Holiday - Karaoke Version from Zoom Karaoke", - "id": "R45dFDulPng" - }, - { - "title": "Billy Joel - Just The Way You Are - Karaoke Version from Zoom Karaoke", - "id": "P6HD1ssg-dM" - }, - { - "title": "Billy Joel - Allentown - Karaoke Version from Zoom Karaoke", - "id": "NO7GQtXLZoc" - }, - { - "title": "Billy Joel - She's Got A Way - Karaoke Version from Zoom Karaoke", - "id": "DeeTFIgKuC8" - }, - { - "title": "Billy Joel - Don't Ask Me Why - Karaoke Version from Zoom Karaoke", - "id": "Cmpr01L1nk8" - }, - { - "title": "Frankie Laine - Moonlight Gambler - Karaoke Version from Zoom Karaoke", - "id": "C4dakcDyQFk" - }, - { - "title": "Leo Sayer - Thunder In My Heart - Karaoke Version from Zoom Karaoke", - "id": "2g4Yq_uLZoY" - }, - { - "title": "The Weeknd - Save Your Tears - Karaoke Version from Zoom Karaoke", - "id": "nWMWrnNuU-w" - }, - { - "title": "Connie Francis - Who's Sorry Now - Karaoke Version from Zoom Karaoke", - "id": "yrFZW5imtkI" - }, - { - "title": "Matt Monro - From Russia With Love - Karaoke Version from Zoom Karaoke", - "id": "u2fiGuozhcY" - }, - { - "title": "Fleetwood Mac - Gypsy - Karaoke Version from Zoom Karaoke", - "id": "odSulvMSMiY" - }, - { - "title": "Matt Monro - My Kind Of Girl - Karaoke Version from Zoom Karaoke", - "id": "jUfOe05OwDM" - }, - { - "title": "Matt Monro - Walk Away - Karaoke Version from Zoom Karaoke", - "id": "eXU3OjeP7h4" - }, - { - "title": "Matt Monro - On A Clear Day - Karaoke Version from Zoom Karaoke", - "id": "Yun9Bu0fihg" - }, - { - "title": "Connie Francis - Together - Karaoke Version from Zoom Karaoke", - "id": "U3QoxZGD4w4" - }, - { - "title": "St Winifred's School Choir - There's No One Quite Like Grandma - Karaoke Version from Zoom Karaoke", - "id": "Qyars1uaeMg" - }, - { - "title": "Fleetwood Mac - Don't Stop - Karaoke Version from Zoom Karaoke", - "id": "FwVO5UIYytE" - }, - { - "title": "Fleetwood Mac - Songbird - Karaoke Version from Zoom Karaoke", - "id": "lK_v1ncJeJw" - }, - { - "title": "Fleetwood Mac - Warm Ways - Karaoke Version from Zoom Karaoke", - "id": "xlAniYw0b1k" - }, - { - "title": "Connie Francis - Robot Man - Karaoke Version from Zoom Karaoke", - "id": "rDFUMa0jMUI" - }, - { - "title": "Matt Monro - Yesterday - Karaoke Version from Zoom Karaoke", - "id": "jQoa6lkfac0" - }, - { - "title": "Matt Monro - Somewhere - Karaoke Version from Zoom Karaoke", - "id": "giUAOhV6a34" - }, - { - "title": "Smokie - Poor Lady - Karaoke Version from Zoom Karaoke", - "id": "YPV5VXD54hQ" - }, - { - "title": "Fleetwood Mac - Seven Wonders - Karaoke Version from Zoom Karaoke", - "id": "WSxsc8vzRyI" - }, - { - "title": "Ottawan - D.I.S.C.O. - Karaoke Version from Zoom Karaoke", - "id": "W5CAYHksCFk" - }, - { - "title": "The Rolling Stones - The Last Time - Karaoke Version from Zoom Karaoke", - "id": "MuddyuirSHQ" - }, - { - "title": "Matt Monro - The Impossible Dream - Karaoke Version from Zoom Karaoke", - "id": "HuCe4VA0jpY" - }, - { - "title": "Connie Francis - Everybody's Somebody's Fool - Karaoke Version from Zoom Karaoke", - "id": "EFWA9MKf_es" - }, - { - "title": "Smokie - It's Your Life - Karaoke Version from Zoom Karaoke", - "id": "5kx5PcFzDZI" - }, - { - "title": "Freda Payne - Band Of Gold - Karaoke Version from Zoom Karaoke", - "id": "7LLEf2oe6hU" - }, - { - "title": "Fleetwood Mac - Need Your Love So Bad - Karaoke Version from Zoom Karaoke", - "id": "3x2AiUg-B0o" - }, - { - "title": "Christie - Yellow River - Karaoke Version from Zoom Karaoke", - "id": "SY9rgn1d_jA" - }, - { - "title": "Diana Ross - I'm Still Waiting - Karaoke Version from Zoom Karaoke", - "id": "veAk0wKexGs" - }, - { - "title": "Grease/Sha Na Na - Those Magic Changes - Karaoke Version from Zoom Karaoke", - "id": "fJ3Yh3zESmY" - }, - { - "title": "Taylor Hicks - Takin' It To The Streets - Karaoke Version from Zoom Karaoke", - "id": "dSVXiPfRlJ4" - }, - { - "title": "Smokey Robinson & The Miracles - Tears Of A Clown - Karaoke Version from Zoom Karaoke", - "id": "aD6STwPvxvg" - }, - { - "title": "Andy Kim - Rock Me Gently - Karaoke Version from Zoom Karaoke", - "id": "U1adDQ-XiQ0" - }, - { - "title": "Simon And Garfunkel - Bridge Over Troubled Water - Karaoke Version from Zoom Karaoke", - "id": "NQ7k19pDRIw" - }, - { - "title": "Fleetwood Mac - Black Magic Woman - Karaoke Version from Zoom Karaoke", - "id": "I9ctS93fCPA" - }, - { - "title": "Peter And Gordon - A World Without Love - Karaoke Version from Zoom Karaoke", - "id": "0zu_2WPH2tw" - }, - { - "title": "Fleetwood Mac - Everywhere - Karaoke Version from Zoom Karaoke", - "id": "0fhvoqq_v-k" - }, - { - "title": "Marty Wilde - A Teenager In Love - Karaoke Version from Zoom Karaoke", - "id": "yviGpQYl0Rc" - }, - { - "title": "T. Rex - Hot Love - Karaoke Version from Zoom Karaoke", - "id": "xz8i8n8PIYU" - }, - { - "title": "The Smiths - There Is A Light That Never Goes Out - Karaoke Version from Zoom Karaoke", - "id": "robUoEDuwps" - }, - { - "title": "Gilbert O'Sullivan - Get Down - Karaoke Version from Zoom Karaoke", - "id": "jG3up629rjU" - }, - { - "title": "Creedence Clearwater Revival - Proud Mary - Karaoke Version from Zoom Karaoke", - "id": "cjjGhcsgsck" - }, - { - "title": "Dave Edmunds - I Hear You Knockin' - Karaoke Version from Zoom Karaoke", - "id": "W-Rn8LPQooQ" - }, - { - "title": "Infernal - From Paris To Berlin - Karaoke Version from Zoom Karaoke", - "id": "UkixIuaei-o" - }, - { - "title": "Fleetwood Mac - Man Of The World - Karaoke Version from Zoom Karaoke", - "id": "SSSMngCGdW8" - }, - { - "title": "George Harrison - My Sweet Lord - Karaoke Version from Zoom Karaoke", - "id": "D_AOAZg3rUA" - }, - { - "title": "Gilbert O'Sullivan - Matrimony - Karaoke Version from Zoom Karaoke", - "id": "1xhqZTwMggE" - }, - { - "title": "Sugababes - Ugly - Karaoke Version from Zoom Karaoke", - "id": "slaL9O0wtWQ" - }, - { - "title": "Susan Maughan - Bobby's Girl - Karaoke Version from Zoom Karaoke", - "id": "h0RYTpqXbUI" - }, - { - "title": "The Cascades - Rhythm Of The Rain - Karaoke Version from Zoom Karaoke", - "id": "SVKT-kfPJVg" - }, - { - "title": "Freddie & The Dreamers - You Were Made For Me - Karaoke Version from Zoom Karaoke", - "id": "2ozj4J6FFCs" - }, - { - "title": "Taylor Hicks - Do I Make You Proud - Karaoke Version from Zoom Karaoke", - "id": "NOhgjpTdtAM" - }, - { - "title": "Billy J Kramer & The Dakotas - Do You Want To Know A Secret - Karaoke Version from Zoom Karaoke", - "id": "w0Wa42ts3QM" - }, - { - "title": "KT Tunstall - Another Place To Fall - Karaoke Version from Zoom Karaoke", - "id": "umfegMI5_H8" - }, - { - "title": "The Boxtops - The Letter - Karaoke Version from Zoom Karaoke", - "id": "X_uCkA-k5ag" - }, - { - "title": "The Ivy League - Funny How Love Can Be - Karaoke Version from Zoom Karaoke", - "id": "Rzky8oUvtP8" - }, - { - "title": "The Casuals - Jesamine - Karaoke Version from Zoom Karaoke", - "id": "OtokjJkff-4" - }, - { - "title": "George McCrae - Rock Your Baby - Karaoke Version from Zoom Karaoke", - "id": "LDndMh2LQa0" - }, - { - "title": "Honeybus - I Can't Let Maggie Go - Karaoke Version from Zoom Karaoke", - "id": "1FlgVbBM1wc" - }, - { - "title": "Erasure - Drama! - Karaoke Version from Zoom Karaoke", - "id": "zFboDqHhsnc" - }, - { - "title": "Lily Allen - Smile - Karaoke Version from Zoom Karaoke", - "id": "sFI93Hh5bw8" - }, - { - "title": "Cher - Believe - Karaoke Version from Zoom Karaoke", - "id": "s1DWvYZem_o" - }, - { - "title": "Chris Montez - Let's Dance - Karaoke Version from Zoom Karaoke", - "id": "p7iFubO4b2k" - }, - { - "title": "Ray Charles - I Can't Stop Loving You - Karaoke Version from Zoom Karaoke", - "id": "ofS-ycsw28A" - }, - { - "title": "Maurice Williams & The Zodiacs - Stay - Karaoke Version from Zoom Karaoke", - "id": "jckOcLrXZuU" - }, - { - "title": "KT Tunstall - Other Side Of The World - Karaoke Version from Zoom Karaoke", - "id": "QveRNOb7Jd0" - }, - { - "title": "Joe Brown & The Bruvvers - A Picture Of You - Karaoke Version from Zoom Karaoke", - "id": "ND93ReZFqnc" - }, - { - "title": "The Lovin' Spoonful - Do You Believe In Magic - Karaoke Version from Zoom Karaoke", - "id": "CyB4lDKAjoM" - }, - { - "title": "John Lennon - Woman - Karaoke Version from Zoom Karaoke", - "id": "rkEi5M8mkCM" - }, - { - "title": "Adam & The Ants - Prince Charming - Karaoke Version from Zoom Karaoke", - "id": "fKBjNFr6rSI" - }, - { - "title": "Roxy Music - Jealous Guy - Karaoke Version from Zoom Karaoke", - "id": "Vr62eAWreuE" - }, - { - "title": "Kim Wilde - Kids In America - Karaoke Version from Zoom Karaoke", - "id": "SAZCh7VAO24" - }, - { - "title": "The Carpenters - (They Long To Be) Close To You - Karaoke Version from Zoom Karaoke", - "id": "2iPepEbNYoA" - }, - { - "title": "Nat 'King' Cole - Around The World - Karaoke Version from Zoom Karaoke", - "id": "mbv0BOVWKUM" - }, - { - "title": "Ultravox - Vienna - Karaoke Version from Zoom Karaoke", - "id": "_PB0axr4gGw" - }, - { - "title": "Scissor Sisters - I Don't Feel Like Dancin' - Karaoke Version from Zoom Karaoke", - "id": "MQalR4ohfEA" - }, - { - "title": "Nat 'King' Cole - Smile - Karaoke Version from Zoom Karaoke", - "id": "JkNx0XzzcQ8" - }, - { - "title": "T. Rex - Ride A White Swan - Karaoke Version from Zoom Karaoke", - "id": "iBYCnK9gwqc" - }, - { - "title": "Ace - How Long - Karaoke Version from Zoom Karaoke", - "id": "i18uCfjU3DI" - }, - { - "title": "Phil Collins - In The Air Tonight - Karaoke Version from Zoom Karaoke", - "id": "XJDbFfKNILI" - }, - { - "title": "Bachman-Turner Overdrive - You Ain't Seen Nothing Yet - Karaoke Version from Zoom Karaoke", - "id": "L7zPRZ_JnJQ" - }, - { - "title": "The Specials - Ghost Town - Karaoke Version from Zoom Karaoke", - "id": "JFdHbZqFkSw" - }, - { - "title": "John Lennon - Imagine - Karaoke Version from Zoom Karaoke", - "id": "Adb4fbt4Y0g" - }, - { - "title": "Madness - Baggy Trousers - Karaoke Version from Zoom Karaoke", - "id": "6WKZwr_FW5c" - }, - { - "title": "Tony Christie - Avenues And Alleyways - Karaoke Version from Zoom Karaoke", - "id": "5GlCyj85L5M" - }, - { - "title": "Dexy's Midnight Runners - Geno - Karaoke Version from Zoom Karaoke", - "id": "r1K4ZiEcUyw" - }, - { - "title": "Barbra Streisand - Woman In Love - Karaoke Version from Zoom Karaoke", - "id": "y8aYJiJ0TE0" - }, - { - "title": "Chris Rea - On The Beach - Karaoke Version from Zoom Karaoke", - "id": "mdkE5Ns-BTg" - }, - { - "title": "Jam - Going Underground - Karaoke Version from Zoom Karaoke", - "id": "VMNukhZ0y5g" - }, - { - "title": "Blondie - Atomic - Karaoke Version from Zoom Karaoke", - "id": "TEvEBytGHxc" - }, - { - "title": "Tony Christie - Drive Safely Darling - Karaoke Version from Zoom Karaoke", - "id": "RHGJL5diQpg" - }, - { - "title": "David Bowie - Ashes To Ashes - Karaoke Version from Zoom Karaoke", - "id": "Io_xgvSLVrM" - }, - { - "title": "Eva Cassidy - Drowning In The Sea Of Love - Karaoke Version from Zoom Karaoke", - "id": "9T-WBwp4Rvc" - }, - { - "title": "The Specials - Too Much Too Young - Karaoke Version from Zoom Karaoke", - "id": "mtQKnwR6WHQ" - }, - { - "title": "Gerry & The Pacemakers - How Do You Do It - Karaoke Version from Zoom Karaoke", - "id": "Ux3vUxyJhmE" - }, - { - "title": "Tony Christie - Las Vegas - Karaoke Version from Zoom Karaoke", - "id": "ziTQ7AQ6VfI" - }, - { - "title": "Ringo Starr - It Don't Come Easy - Karaoke Version from Zoom Karaoke", - "id": "pe2Yigy5rmc" - }, - { - "title": "Eva Cassidy - It Don't Mean A Thing (If It Ain't Got That Swing) - Karaoke Version from Zoom Karaoke", - "id": "n2wHkWwwkNI" - }, - { - "title": "Eva Cassidy - True Colours - Karaoke Version from Zoom Karaoke", - "id": "j_1_oEyZM38" - }, - { - "title": "Eva Cassidy - American Tune - Karaoke Version from Zoom Karaoke", - "id": "gKgDE1hqJ8g" - }, - { - "title": "Eva Cassidy - Yesterday - Karaoke Version from Zoom Karaoke", - "id": "dEEo5HxS_ak" - }, - { - "title": "Chris Rea - Fool (If You Think It's Over) - Karaoke Version from Zoom Karaoke", - "id": "bSUP0GH0Hvw" - }, - { - "title": "Eva Cassidy - Dark Eyed Molly - Karaoke Version from Zoom Karaoke", - "id": "UTrMYeG6NnY" - }, - { - "title": "Chris Rea - The Road To Hell (Part 2) - Karaoke Version from Zoom Karaoke", - "id": "RtvJqlMWpKw" - }, - { - "title": "Eva Cassidy - You've Changed - Karaoke Version from Zoom Karaoke", - "id": "PoMyjR_pF8Y" - }, - { - "title": "Eva Cassidy - God Bless The Child - Karaoke Version from Zoom Karaoke", - "id": "N0r2r4f7hkQ" - }, - { - "title": "Eva Cassidy - Hallelujah, I Love Him So - Karaoke Version from Zoom Karaoke", - "id": "KbjHf5XJrZs" - }, - { - "title": "The Swinging Blue Jeans - Hippy Hippy Shake - Karaoke Version from Zoom Karaoke", - "id": "HDHcOhnqhug" - }, - { - "title": "The Searchers - Sweets For My Sweet - Karaoke Version from Zoom Karaoke", - "id": "DXvf67M7jGA" - }, - { - "title": "Bobby Vee - The Night Has A Thousand Eyes - Karaoke Version from Zoom Karaoke", - "id": "7T0mhZfFY3E" - }, - { - "title": "Eva Cassidy - The Water Is Wide - Karaoke Version from Zoom Karaoke", - "id": "1oEDqR5w_sk" - }, - { - "title": "Johnny Preston - Running Bear - Karaoke Version from Zoom Karaoke", - "id": "fz4Nw5te1kE" - }, - { - "title": "Johnny Burnette - Dreamin' - Karaoke Version from Zoom Karaoke", - "id": "54goO_jrO9o" - }, - { - "title": "Sam Cooke - (What A) Wonderful World - Karaoke Version from Zoom Karaoke", - "id": "fXwYvROy_4U" - }, - { - "title": "Sam Cooke - Cupid - Karaoke Version from Zoom Karaoke", - "id": "G7iGgwVLIWM" - }, - { - "title": "The Marcels - Blue Moon - Karaoke Version from Zoom Karaoke", - "id": "Xd8M6RZuRGU" - }, - { - "title": "Anthony Newley - Why - Karaoke Version from Zoom Karaoke", - "id": "xUDtdTcOphI" - }, - { - "title": "Petula Clark - Sailor - Karaoke Version from Zoom Karaoke", - "id": "XMiJ79brdCw" - }, - { - "title": "Adam Faith - Poor Me - Karaoke Version from Zoom Karaoke", - "id": "FqaD98vt6bY" - }, - { - "title": "John Leyton - Johnny Remember Me - Karaoke Version from Zoom Karaoke", - "id": "-LZcROM9-Lo" - }, - { - "title": "Kelly Marie - Feels Like I'm In Love - Karaoke Version from Zoom Karaoke", - "id": "yuVvuifNdwg" - }, - { - "title": "Cliff Richard - In The Country - Karaoke Version from Zoom Karaoke", - "id": "cdl7eCkuIRI" - }, - { - "title": "The Who - Substitute - Karaoke Version from Zoom Karaoke", - "id": "TDHdMO1nZ3o" - }, - { - "title": "Michael Holliday - Starry Eyed - Karaoke Version from Zoom Karaoke", - "id": "cbAADwV3rqA" - }, - { - "title": "Sam Cooke - Chain Gang - Karaoke Version from Zoom Karaoke", - "id": "GhcGTzuYjrE" - }, - { - "title": "Ricky Valance - Tell Laura I Love Her - Karaoke Version from Zoom Karaoke", - "id": "GN-pY-JbhEc" - }, - { - "title": "Sam Cooke - Only Sixteen - Karaoke Version from Zoom Karaoke", - "id": "8UU5uzj72VY" - }, - { - "title": "The Who - Squeeze Box - Karaoke Version from Zoom Karaoke", - "id": "uwdB9DTNvjY" - }, - { - "title": "Cliff Richard - We Don't Talk Anymore - Karaoke Version from Zoom Karaoke", - "id": "jJrHHejr7_E" - }, - { - "title": "Connie Francis - V-A-C-A-T-I-O-N - Karaoke Version from Zoom Karaoke", - "id": "XINezEucuws" - }, - { - "title": "The Who - Happy Jack - Karaoke Version from Zoom Karaoke", - "id": "OlSC-He8CmY" - }, - { - "title": "Nat 'King' Cole - Let There Be Love - Karaoke Version from Zoom Karaoke", - "id": "KCTcb5HlIGk" - }, - { - "title": "Nat 'King' Cole - Love Letters - Karaoke Version from Zoom Karaoke", - "id": "3vMMzIp5bIU" - }, - { - "title": "Connie Francis - Carolina Moon - Karaoke Version from Zoom Karaoke", - "id": "q38f4BFRnOs" - }, - { - "title": "Cliff Richard - Power To All Our Friends - Karaoke Version from Zoom Karaoke", - "id": "EQOyqd5y0Xc" - }, - { - "title": "Smokie - For A Few Dollars More - Karaoke Version from Zoom Karaoke", - "id": "p1UJ9k_UNFc" - }, - { - "title": "Cliff Richard - Please Don't Tease - Karaoke Version from Zoom Karaoke", - "id": "RvA9XEH2TmU" - }, - { - "title": "Connie Francis - My Happiness - Karaoke Version from Zoom Karaoke", - "id": "8yjpgBPtRMc" - }, - { - "title": "Smokie - If You Think You Know How To Love Me - Karaoke Version from Zoom Karaoke", - "id": "uOQyxtJEgT8" - }, - { - "title": "Connie Francis - Stupid Cupid - Karaoke Version from Zoom Karaoke", - "id": "_51OGce2VIA" - }, - { - "title": "Connie Francis - Where The Boys Are - Karaoke Version from Zoom Karaoke", - "id": "9W1q3j9UICw" - }, - { - "title": "Smokie - Something's Been Making Me Blue - Karaoke Version from Zoom Karaoke", - "id": "yjo3X3SMROo" - }, - { - "title": "Cliff Richard - Move It - Karaoke Version from Zoom Karaoke", - "id": "jWbxOeHO5bE" - }, - { - "title": "Connie Francis - I'm Sorry I Made You Cry - Karaoke Version from Zoom Karaoke", - "id": "inKckHJN4W8" - }, - { - "title": "The Who - Baba O'Riley - Karaoke Version from Zoom Karaoke", - "id": "dQlaqbLJOjY" - }, - { - "title": "Smokie - Wild Angels - Karaoke Version from Zoom Karaoke", - "id": "H3kiEXVmJLo" - }, - { - "title": "Smokie - Lay Back In The Arms Of Someone - Karaoke Version from Zoom Karaoke", - "id": "D-W9_wee7LQ" - }, - { - "title": "Sandi Thom - I Wish I Was A Punk Rocker With Flowers In My Hair - Karaoke Version from Zoom Karaoke", - "id": "1pqLlPmIRbo" - }, - { - "title": "Smokie - Don't Play Your Rock 'N' Roll To Me - Karaoke Version from Zoom Karaoke", - "id": "-PR0KvFMiOE" - }, - { - "title": "Bob Dylan - Thunder On The Mountain - Karaoke Version from Zoom Karaoke", - "id": "9wve8gXZWnA" - }, - { - "title": "Avril Lavigne - Nobody's Home - Karaoke Version from Zoom Karaoke", - "id": "xhzijhepfK8" - }, - { - "title": "Avril Lavigne - Fall To Pieces - Karaoke Version from Zoom Karaoke", - "id": "v4UMeICsg7k" - }, - { - "title": "Avril Lavigne - Forgotten - Karaoke Version from Zoom Karaoke", - "id": "nC4TbIG8Vfs" - }, - { - "title": "Avril Lavigne - Freak Out - Karaoke Version from Zoom Karaoke", - "id": "hklj64nFDGI" - }, - { - "title": "Avril Lavigne - Who Knows - Karaoke Version from Zoom Karaoke", - "id": "K1RclHrI5P8" - }, - { - "title": "Grease/Frankie Avalon - Beauty School Drop Out - Karaoke Version from Zoom Karaoke", - "id": "BzkFQl2bJV8" - }, - { - "title": "Avril Lavigne - Slipped Away - Karaoke Version from Zoom Karaoke", - "id": "ADBx9PCPzEc" - }, - { - "title": "Grease/John Travolta - Sandy - Karaoke Version from Zoom Karaoke", - "id": "8do_yh1eii0" - }, - { - "title": "Avril Lavigne - Take Me Away - Karaoke Version from Zoom Karaoke", - "id": "4gA0OX8-HjA" - }, - { - "title": "Grease/Frankie Valli - Grease - Karaoke Version from Zoom Karaoke", - "id": "3iZCSnjeVNc" - }, - { - "title": "Vera Lynn - We'll Meet Again (Without Choir) - Karaoke Version from Zoom Karaoke", - "id": "fDhRzC4gcUs" - }, - { - "title": "Avril Lavigne - Together - Karaoke Version from Zoom Karaoke", - "id": "wxM5FDxk23E" - }, - { - "title": "Avril Lavigne - My Happy Ending - Karaoke Version from Zoom Karaoke", - "id": "kNQ-kh7WYpk" - }, - { - "title": "Brenda Lee - All Alone Am I - Karaoke Version from Zoom Karaoke", - "id": "iVGzokJKFMw" - }, - { - "title": "The Rolling Stones - Paint It, Black - Karaoke Version from Zoom Karaoke", - "id": "fBMGy4d9XZw" - }, - { - "title": "The Rolling Stones - It's All Over Now - Karaoke Version from Zoom Karaoke", - "id": "elKn_C-RiWI" - }, - { - "title": "Brenda Lee - Losing You - Karaoke Version from Zoom Karaoke", - "id": "e50GPIYw908" - }, - { - "title": "Brenda Lee - Is It True - Karaoke Version from Zoom Karaoke", - "id": "_vbkD8F2XTw" - }, - { - "title": "Brenda Lee - Sweet Nothin's - Karaoke Version from Zoom Karaoke", - "id": "X_FqWVLaDD0" - }, - { - "title": "Vera Lynn - We'll Meet Again (With Choir) - Karaoke Version from Zoom Karaoke", - "id": "URxFVNubINM" - }, - { - "title": "Brenda Lee - As Usual - Karaoke Version from Zoom Karaoke", - "id": "M66vm4vQk9s" - }, - { - "title": "Avril Lavigne - He Wasn't - Karaoke Version from Zoom Karaoke", - "id": "Ljdxi0oBacY" - }, - { - "title": "Brenda Lee - Here Comes That Feeling - Karaoke Version from Zoom Karaoke", - "id": "Gvdd1Pw1Q8s" - }, - { - "title": "The Rolling Stones - Time Is On My Side - Karaoke Version from Zoom Karaoke", - "id": "E4tsKums1fs" - }, - { - "title": "Brenda Lee - Let's Jump The Broomstick - Karaoke Version from Zoom Karaoke", - "id": "Anub36Y87ik" - }, - { - "title": "Brenda Lee - I Want To Be Wanted - Karaoke Version from Zoom Karaoke", - "id": "AQhRKbuztfY" - }, - { - "title": "Brenda Lee - The Brenda Lee Medley - Karaoke Version from Zoom Karaoke", - "id": "A1NpuHQ9_OI" - }, - { - "title": "The Rolling Stones - Little Red Rooster - Karaoke Version from Zoom Karaoke", - "id": "5eJ24GEgFRY" - }, - { - "title": "Avril Lavigne - How Does It Feel - Karaoke Version from Zoom Karaoke", - "id": "22-z_NPib9U" - }, - { - "title": "Brenda Lee - Speak To Me Pretty - Karaoke Version from Zoom Karaoke", - "id": "jnfIppDRHyA" - }, - { - "title": "Vera Lynn - When The Lights Go On Again - Karaoke Version from Zoom Karaoke", - "id": "jlw3PgEoAOw" - }, - { - "title": "Brenda Lee - I'm Sorry - Karaoke Version from Zoom Karaoke", - "id": "hNlM2WPE6lU" - }, - { - "title": "Gracie Fields - Wish Me Luck As You Wave Me Goodbye - Karaoke Version from Zoom Karaoke", - "id": "b5v9rc4Mq7g" - }, - { - "title": "The Rolling Stones - Come On - Karaoke Version from Zoom Karaoke", - "id": "WI9G6Q_O98o" - }, - { - "title": "Gracie Fields - In My Little Bottom Drawer - Karaoke Version from Zoom Karaoke", - "id": "UjXXJ06S79E" - }, - { - "title": "Vera Lynn - White Cliffs Of Dover - Karaoke Version from Zoom Karaoke", - "id": "QAciql0Yaxk" - }, - { - "title": "Avril Lavigne - Don't Tell Me - Karaoke Version from Zoom Karaoke", - "id": "E2v1ac7UApw" - }, - { - "title": "The Rolling Stones - Get Off Of My Cloud - Karaoke Version from Zoom Karaoke", - "id": "E-ss3WZp0mU" - }, - { - "title": "The Smiths - Bigmouth Strikes Again - Karaoke Version from Zoom Karaoke", - "id": "P7W-6nNqMuw" - }, - { - "title": "Gracie Fields - Sally - Karaoke Version from Zoom Karaoke", - "id": "nApxoQLMbhU" - }, - { - "title": "The Hollies - If I Needed Someone - Karaoke Version from Zoom Karaoke", - "id": "maKKLRxgpZE" - }, - { - "title": "Gracie Fields - Sing As We Go - Karaoke Version from Zoom Karaoke", - "id": "j3wlPXZSdSU" - }, - { - "title": "The Smiths - Cemetry Gates - Karaoke Version from Zoom Karaoke", - "id": "DcImVT73Tew" - }, - { - "title": "Dave Dee, Dozy, Beaky, Mick And Tich - Save Me - Karaoke Version from Zoom Karaoke", - "id": "8s-DCo4kMzc" - }, - { - "title": "The Smiths - Frankly, Mr Shankly - Karaoke Version from Zoom Karaoke", - "id": "Ug8DuVG-ljM" - }, - { - "title": "The Smiths - I Started Something I Couldn't Finish - Karaoke Version from Zoom Karaoke", - "id": "R0wG5mqZBzM" - }, - { - "title": "The Smiths - Girlfriend In A Coma - Karaoke Version from Zoom Karaoke", - "id": "JQruO-ds76Q" - }, - { - "title": "Vera Lynn - Lili Marlene - Karaoke Version from Zoom Karaoke", - "id": "5ucsYzLWxGA" - }, - { - "title": "The Smiths - Shakespeare's Sister - Karaoke Version from Zoom Karaoke", - "id": "xYwwuwmasmU" - }, - { - "title": "Kylie Minogue - Spinning Around - Karaoke Version from Zoom Karaoke (Old Version)", - "id": "wr14pNnt1fY" - }, - { - "title": "Kylie Minogue - Red Blooded Woman - Karaoke Version from Zoom Karaoke", - "id": "vI_gM-Pfyuo" - }, - { - "title": "Vera Lynn - Vera Lynn Medley - Karaoke Version from Zoom Karaoke", - "id": "pgpesIH6IG4" - }, - { - "title": "The Andrews Sisters - Boogie Woogie Bugle Boy - Karaoke Version from Zoom Karaoke", - "id": "p_IUjNRfR5M" - }, - { - "title": "The Andrews Sisters - Don't Sit Under The Apple Tree - Karaoke Version from Zoom Karaoke", - "id": "jSOdCDz-N3s" - }, - { - "title": "The Smiths - The Boy With The Thorn In His Side - Karaoke Version from Zoom Karaoke", - "id": "eAoTYWm0cUs" - }, - { - "title": "Alvin Stardust - You You You - Karaoke Version from Zoom Karaoke", - "id": "bgaDoAX7J74" - }, - { - "title": "Kylie Minogue - In Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "YqorW0sHUDE" - }, - { - "title": "Alvin Stardust - Red Dress - Karaoke Version from Zoom Karaoke", - "id": "XaQ1iBh7ihQ" - }, - { - "title": "The Smiths - Hand In Glove - Karaoke Version from Zoom Karaoke", - "id": "VSEYR3wXUgE" - }, - { - "title": "Kylie Minogue - Come Into My World - Karaoke Version from Zoom Karaoke", - "id": "SPQli60ZNgY" - }, - { - "title": "Manfred Mann - Ragamuffin Man - Karaoke Version from Zoom Karaoke", - "id": "KeUTZC2QT3E" - }, - { - "title": "The Smiths - Vicar In A Tutu - Karaoke Version from Zoom Karaoke", - "id": "KMp_m82Xy5Q" - }, - { - "title": "The Smiths - William, It Was Really Nothing - Karaoke Version from Zoom Karaoke", - "id": "B15jDL41lIs" - }, - { - "title": "Kylie Minogue And Robbie Williams - Kids - Karaoke Version from Zoom Karaoke", - "id": "9-6SrGa6Dz0" - }, - { - "title": "The Hollies - Gasoline Alley Bred - Karaoke Version from Zoom Karaoke", - "id": "5HVRK5Zyv5k" - }, - { - "title": "Vera Lynn - A Nightingale Sang In Berkeley Square - Karaoke Version from Zoom Karaoke", - "id": "3L533TCCTAU" - }, - { - "title": "The Smiths - Shoplifters Of The World Unite - Karaoke Version from Zoom Karaoke", - "id": "3DD3yZiXmMM" - }, - { - "title": "Vera Lynn - Now Is The Hour - Karaoke Version from Zoom Karaoke", - "id": "3CMu5F3trCo" - }, - { - "title": "Pocahontas - Just Around The River Bend - Karaoke Version from Zoom Karaoke", - "id": "XdBHDYj45p0" - }, - { - "title": "Lady And The Tramp - He's A Tramp - Karaoke Version from Zoom Karaoke", - "id": "9aa4_zBUCss" - }, - { - "title": "Freddie Mercury - Living On My Own (Remix) - Karaoke Version from Zoom Karaoke", - "id": "qetV-unskmo" - }, - { - "title": "Lady And The Tramp - Bella Notte - Karaoke Version from Zoom Karaoke", - "id": "Q2FtVc10Hvw" - }, - { - "title": "The Jungle Book - I Wanna Be Like You - Karaoke Version from Zoom Karaoke", - "id": "OaeARBJyI3I" - }, - { - "title": "Kylie Minogue & New Order - Can't Get Blue Monday Out Of My Head - Karaoke Version from Zoom Karaoke", - "id": "NP0ZDnjrDXc" - }, - { - "title": "Norah Jones - What Am I To You - Karaoke Version from Zoom Karaoke", - "id": "IvvPZXL6Nn0" - }, - { - "title": "Norah Jones - The Long Way Home - Karaoke Version from Zoom Karaoke", - "id": "Rkjez_ikOfk" - }, - { - "title": "Norah Jones - Don't Miss You At All - Karaoke Version from Zoom Karaoke", - "id": "K0sFv2hFiJY" - }, - { - "title": "Norah Jones - Humble Me - Karaoke Version from Zoom Karaoke", - "id": "IACM0-AgV18" - }, - { - "title": "The Lion King - Circle Of Life - Karaoke Version from Zoom Karaoke", - "id": "5bO2PdNF0Jw" - }, - { - "title": "Norah Jones - Sunrise - Karaoke Version from Zoom Karaoke", - "id": "FxjrSXntkHs" - }, - { - "title": "Bucks Fizz - Land Of Make Believe - Karaoke Version from Zoom Karaoke", - "id": "YrzLxe_ZfJs" - }, - { - "title": "Pocahontas - Colours Of The Wind - Karaoke Version from Zoom Karaoke", - "id": "Q7jPOnJozGo" - }, - { - "title": "Norah Jones - Those Sweet Words - Karaoke Version from Zoom Karaoke", - "id": "Jj95UJGEM6w" - }, - { - "title": "Norah Jones - Creepin' In (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "tec1J3pw9hU" - }, - { - "title": "Norah Jones - The Prettiest Thing - Karaoke Version from Zoom Karaoke", - "id": "bLKnuiuLOuE" - }, - { - "title": "Mary Poppins - Feed The Birds - Karaoke Version from Zoom Karaoke", - "id": "RF_E_OVw7Zc" - }, - { - "title": "Kylie Minogue - Hand On Your Heart - Karaoke Version from Zoom Karaoke", - "id": "ttkphGjub2c" - }, - { - "title": "Norah Jones - Be Here To Love Me - Karaoke Version from Zoom Karaoke", - "id": "j1XWWu8bAHE" - }, - { - "title": "Norah Jones - Toes - Karaoke Version from Zoom Karaoke", - "id": "X5rrzlH7SOs" - }, - { - "title": "Norah Jones - Above Ground - Karaoke Version from Zoom Karaoke", - "id": "RlsosgMim2w" - }, - { - "title": "Norah Jones And Dolly Parton - Creepin' In (Duet) - Karaoke Version from Zoom Karaoke", - "id": "78ch6VBDnz8" - }, - { - "title": "The Jungle Book - Bare Necessities - Karaoke Version from Zoom Karaoke", - "id": "5mX1e0VGb2o" - }, - { - "title": "Freddie Mercury - The Great Pretender - Karaoke Version from Zoom Karaoke", - "id": "3cybNVhXN2A" - }, - { - "title": "The Lion King - Can You Feel The Love Tonight - Karaoke Version from Zoom Karaoke", - "id": "0li784rMk2Y" - }, - { - "title": "Norah Jones - Carnival Town - Karaoke Version from Zoom Karaoke", - "id": "NbMiVCYtSI8" - }, - { - "title": "Aladdin - A Whole New World - Karaoke Version from Zoom Karaoke", - "id": "bUh3NoPhMO8" - }, - { - "title": "The Carpenters - We've Only Just Begun - Karaoke Version from Zoom Karaoke", - "id": "8bqgx9xPBFI" - }, - { - "title": "Billy Fury - Do You Really Love Me Too (Fool's Errand) - Karaoke Version from Zoom Karaoke", - "id": "o530r6m-hCc" - }, - { - "title": "Nat 'King' Cole - Ramblin' Rose - Karaoke Version from Zoom Karaoke", - "id": "kvEuEXssP54" - }, - { - "title": "John Lennon - Beautiful Boy (Darling Boy) - Karaoke Version from Zoom Karaoke", - "id": "MZa_EC_eUaU" - }, - { - "title": "John Lennon - Working Class Hero - Karaoke Version from Zoom Karaoke", - "id": "xWDl9ejYECk" - }, - { - "title": "Norah Jones - One Flight Down - Karaoke Version from Zoom Karaoke", - "id": "tTOKQiM-MGA" - }, - { - "title": "Norah Jones - Nightingale - Karaoke Version from Zoom Karaoke", - "id": "l-ooSfFwdI4" - }, - { - "title": "Norah Jones - I've Got To See You Again - Karaoke Version from Zoom Karaoke", - "id": "S8-THs9Fx_A" - }, - { - "title": "Paul McCartney - Another Day - Karaoke Version from Zoom Karaoke", - "id": "LtNbaGnss64" - }, - { - "title": "Norah Jones - Lonestar - Karaoke Version from Zoom Karaoke", - "id": "FV_m4yLoFMw" - }, - { - "title": "Nat 'King' Cole - (I Love You) For Sentimental Reasons - Karaoke Version from Zoom Karaoke", - "id": "5SQo0lShUIU" - }, - { - "title": "Norah Jones - Turn Me On - Karaoke Version from Zoom Karaoke", - "id": "4GOpFT4edvc" - }, - { - "title": "John Lennon - Just Like Starting Over - Karaoke Version from Zoom Karaoke", - "id": "1VzxQKFLxI4" - }, - { - "title": "Norah Jones - Come Away With Me - Karaoke Version from Zoom Karaoke", - "id": "069z0iRpvOA" - }, - { - "title": "Norah Jones - Don't Know Why - Karaoke Version from Zoom Karaoke", - "id": "ylXx5N045Ts" - }, - { - "title": "Norah Jones - Cold Cold Heart - Karaoke Version from Zoom Karaoke", - "id": "tZ5ezdLOdQw" - }, - { - "title": "John Lennon - Watching The Wheels - Karaoke Version from Zoom Karaoke", - "id": "nQb700Z7yrM" - }, - { - "title": "Norah Jones - The Long Day Is Over - Karaoke Version from Zoom Karaoke", - "id": "eEZdjLCekhk" - }, - { - "title": "Wings - C Moon - Karaoke Version from Zoom Karaoke", - "id": "apzC2eV5l1U" - }, - { - "title": "Paul McCartney & Wings - Helen Wheels - Karaoke Version from Zoom Karaoke", - "id": "Wo1uuzBxv1w" - }, - { - "title": "The Traveling Wilburys - End Of The Line - Karaoke Version from Zoom Karaoke", - "id": "W5dG38Rvy_Q" - }, - { - "title": "Nat 'King' Cole - L-O-V-E - Karaoke Version from Zoom Karaoke", - "id": "8GBLDKt3c2E" - }, - { - "title": "Meat Loaf - It's All Coming Back To Me Now (Male Solo Version) - Karaoke Version from Zoom Karaoke", - "id": "1nmjaX4IRKo" - }, - { - "title": "Elaine Paige And Barbara Dickson - I Know Him So Well - Karaoke Version from Zoom Karaoke", - "id": "CrGJwEQA-1g" - }, - { - "title": "Wings - Live And Let Die - Karaoke Version from Zoom Karaoke", - "id": "AAM2kXpKF2U" - }, - { - "title": "Marillion - Kayleigh - Karaoke Version from Zoom Karaoke", - "id": "4HoetvI4ZyA" - }, - { - "title": "Leona Lewis - A Moment Like This - Karaoke Version from Zoom Karaoke", - "id": "zup2utaVbF4" - }, - { - "title": "The Who - See Me, Feel Me - Karaoke Version from Zoom Karaoke", - "id": "x4cMC-UmZiE" - }, - { - "title": "Roy Orbison - The Actress - Karaoke Version from Zoom Karaoke", - "id": "w0_W8167A0s" - }, - { - "title": "Showaddywaddy - Come On, Let's Go - Karaoke Version from Zoom Karaoke", - "id": "ieApyu_E-tk" - }, - { - "title": "The Who - I Can't Explain - Karaoke Version from Zoom Karaoke", - "id": "gelQB7z1dbw" - }, - { - "title": "Frankie Goes To Hollywood - Two Tribes - Karaoke Version from Zoom Karaoke", - "id": "HfWwoTP8XhI" - }, - { - "title": "Showaddywaddy - Why Do Lovers Break Each Other's Hearts - Karaoke Version From Zoom Karaoke", - "id": "EjsZfcmKrJI" - }, - { - "title": "The Temptations - My Girl - Karaoke Version from Zoom Karaoke", - "id": "9pe4JSIhXg0" - }, - { - "title": "Paul McCartney - Pipes Of Peace - Karaoke Version from Zoom Karaoke", - "id": "5fy9Od6fmPg" - }, - { - "title": "Roy Orbison - Breakin' Up Is Breakin' My Heart - Karaoke Version from Zoom Karaoke", - "id": "4evcaB1O_Jk" - }, - { - "title": "Showaddywaddy - Sea Cruise - Karaoke Version from Zoom Karaoke", - "id": "w47OAJNQ4dQ" - }, - { - "title": "The Who - Old Red Wine - Karaoke Version from Zoom Karaoke", - "id": "svaluEZ4q1o" - }, - { - "title": "The Fantastics - Something Old, Something New - Karaoke Version from Zoom Karaoke", - "id": "m-1ntaZolis" - }, - { - "title": "The Who - I'm Free - Karaoke Version from Zoom Karaoke", - "id": "fOxk2IXzHDA" - }, - { - "title": "The Who - Magic Bus - Karaoke Version from Zoom Karaoke", - "id": "euuMMRKDe6k" - }, - { - "title": "Level 42 - Running In The Family - Karaoke Version from Zoom Karaoke", - "id": "_gD72GWkWNU" - }, - { - "title": "Showaddywaddy - Heavenly - Karaoke Version from Zoom Karaoke", - "id": "Zr6I2ky64tQ" - }, - { - "title": "The Who - The Kids Are Alright - Karaoke Version from Zoom Karaoke", - "id": "Wn6sHUxeTJI" - }, - { - "title": "Jennifer Rush - The Power Of Love - Karaoke Version from Zoom Karaoke", - "id": "W4GSnTTRoG0" - }, - { - "title": "Paul McCartney & The Frog Chorus - We All Stand Together - Karaoke Version from Zoom Karaoke", - "id": "UaLpyAU9R4E" - }, - { - "title": "Stevie Wonder - I Just Called To Say I Love You - Karaoke Version from Zoom Karaoke", - "id": "TolRC8DKpCs" - }, - { - "title": "Showaddywaddy - Trocadero - Karaoke Version from Zoom Karaoke", - "id": "RUp3nCgZVCA" - }, - { - "title": "Phil Collins - Against All Odds (Take A Look At Me Now) - Karaoke Version from Zoom Karaoke", - "id": "KLmAbSgrsec" - }, - { - "title": "Duran Duran - The Reflex - Karaoke Version from Zoom Karaoke", - "id": "HsFIZYD5Fnc" - }, - { - "title": "Nena - 99 Red Balloons - Karaoke Version from Zoom Karaoke", - "id": "CdlYBoeUzZ4" - }, - { - "title": "Showaddywaddy - Why Do Lovers Break Each Others Hearts Lower Key - Karaoke Version from Zoom Karaoke", - "id": "B8slSey2MOg" - }, - { - "title": "Paul Young - Wherever I Lay My Hat (That's My Home) - Karaoke Version from Zoom Karaoke", - "id": "qUhXwbdbzbM" - }, - { - "title": "Pink Floyd - Brain Damage/Eclipse (Medley) - Karaoke Version from Zoom Karaoke", - "id": "_RQSXcmRt4U" - }, - { - "title": "Dr Hook - Happy Ever After Love - Karaoke Version from Zoom Karaoke", - "id": "UEv4bKD873Q" - }, - { - "title": "Heaven 17 - Temptation (Duet) - Karaoke Version from Zoom Karaoke", - "id": "F8EEktWYy-0" - }, - { - "title": "Rick Springfield - What Kind Of Fool Am I - Karaoke Version from Zoom Karaoke", - "id": "CtlnYcnWWjU" - }, - { - "title": "Tight Fit - The Lion Sleeps Tonight - Karaoke Version from Zoom Karaoke", - "id": "1WYEn_MOASc" - }, - { - "title": "Heaven 17 - Temptation (Male Solo Version) - Karaoke Version from Zoom Karaoke", - "id": "gXknkbtcGaU" - }, - { - "title": "Al Wilson - The Snake - Karaoke Version from Zoom Karaoke", - "id": "eKTHkW1icpw" - }, - { - "title": "The Stranglers - Golden Brown - Karaoke Version from Zoom Karaoke", - "id": "YAU0IdSuOkQ" - }, - { - "title": "The Paper Dolls - Something Here In My Heart - Karaoke Version from Zoom Karaoke", - "id": "N0yt_GoHSE8" - }, - { - "title": "Dionne Warwick - Heartbreaker - Karaoke Version from Zoom Karaoke", - "id": "IjOkfEH91r0" - }, - { - "title": "Alexander O'Neal - Criticize - Karaoke Version from Zoom Karaoke", - "id": "yi_geIBIWH8" - }, - { - "title": "Andy Fairweather-Low - Wide Eyed And Legless - Karaoke Version from Zoom Karaoke", - "id": "wDs9ZX3TxjY" - }, - { - "title": "Charlene - I've Never Been To Me - Karaoke Version from Zoom Karaoke", - "id": "nuqJCHWQ-q8" - }, - { - "title": "The Who - Summertime Blues - Karaoke Version from Zoom Karaoke", - "id": "e1CABBFnfHY" - }, - { - "title": "Spandau Ballet - Gold - Karaoke Version from Zoom Karaoke", - "id": "YHlH8wMktso" - }, - { - "title": "Fat Larry's Band - Zoom - Karaoke Version from Zoom Karaoke", - "id": "EmYejYttVjw" - }, - { - "title": "Paul McCartney And Stevie Wonder - Ebony And Ivory - Karaoke Version from Zoom Karaoke", - "id": "2guL5zzfQRc" - }, - { - "title": "Grease/Sha Na Na - Hound Dog - Karaoke Version from Zoom Karaoke", - "id": "tSl9IxipHs0" - }, - { - "title": "Rick Springfield - Jessie's Girl - Karaoke Version from Zoom Karaoke", - "id": "JibfctADgcg" - }, - { - "title": "Rick Springfield - Don't Talk To Strangers - Karaoke Version from Zoom Karaoke", - "id": "62oQblclwvg" - }, - { - "title": "Rick Springfield - My Father's Chair - Karaoke Version from Zoom Karaoke", - "id": "5qRv1MhGHag" - }, - { - "title": "Billy Fury - Like I've Never Been Gone - Karaoke Version from Zoom Karaoke", - "id": "0uu_W8_6cAc" - }, - { - "title": "Grease/Louis St Louis - Rock 'N' Roll Party Queen - Karaoke Version from Zoom Karaoke", - "id": "-e1bNb_X6mU" - }, - { - "title": "Billy Fury - Cross My Heart - Karaoke Version from Zoom Karaoke", - "id": "X911gjaXRAo" - }, - { - "title": "Billy Fury - When Will You Say I Love You - Karaoke Version from Zoom Karaoke", - "id": "vI2-AMYyNu8" - }, - { - "title": "Rick Springfield - Souls - Karaoke Version from Zoom Karaoke", - "id": "pqzd7EFy0ok" - }, - { - "title": "Grease - We Go Together - Karaoke Version from Zoom Karaoke", - "id": "ntO5ic-VYnM" - }, - { - "title": "Rick Springfield - I Get Excited - Karaoke Version from Zoom Karaoke", - "id": "kUp7SeVtW5k" - }, - { - "title": "Rick Springfield - Affair Of The Heart - Karaoke Version from Zoom Karaoke", - "id": "gF8JBRqwpRE" - }, - { - "title": "Rick Springfield - I've Done Everything For You - Karaoke Version from Zoom Karaoke", - "id": "dUKGo1FL8n8" - }, - { - "title": "Billy Fury - Run To My Lovin' Arms - Karaoke Version from Zoom Karaoke", - "id": "bnxl1v_jcbE" - }, - { - "title": "Billy Fury - It's Only Make Believe - Karaoke Version from Zoom Karaoke", - "id": "_nFigfbYlhQ" - }, - { - "title": "Irene Cara - Flashdance... What A Feeling - Karaoke Version from Zoom Karaoke", - "id": "_Va0ydcF740" - }, - { - "title": "Rick Springfield - State Of The Heart - Karaoke Version from Zoom Karaoke", - "id": "Xi-KUXuxzrY" - }, - { - "title": "Grease/Cindy Bullens - It's Raining On Prom Night - Karaoke Version from Zoom Karaoke", - "id": "XDcf9wW17sg" - }, - { - "title": "Billy Fury - Last Night Was Made For Love - Karaoke Version from Zoom Karaoke", - "id": "V48mek6XtRw" - }, - { - "title": "Grease/Sha Na Na - Rock 'N' Roll Is Here To Stay - Karaoke Version from Zoom Karaoke", - "id": "U9s-W6bDZRU" - }, - { - "title": "Grease/Sha Na Na - Tears On My Pillow - Karaoke Version from Zoom Karaoke", - "id": "Qt7NzPHpJVw" - }, - { - "title": "Rick Springfield - Celebrate Youth - Karaoke Version from Zoom Karaoke", - "id": "OQ-Cy1vXxH4" - }, - { - "title": "Rick Springfield - Love Is Alright Tonight - Karaoke Version from Zoom Karaoke", - "id": "Mwc0r1Fpmy8" - }, - { - "title": "Grease/Sha Na Na - The Grease Medley - Karaoke Version from Zoom Karaoke", - "id": "FSzu-1Dy02w" - }, - { - "title": "Grease/Stockard Channing - There Are Worse Things I Could Do - Karaoke Version from Zoom Karaoke", - "id": "DdesX8viZU0" - }, - { - "title": "Billy Fury - Jealousy - Karaoke Version from Zoom Karaoke", - "id": "BdD5gR-4m5Y" - }, - { - "title": "Grease/John Travolta - Greased Lightning - Karaoke Version from Zoom Karaoke", - "id": "AFdxnmvZwhc" - }, - { - "title": "Grease/Stockard Channing - Look At Me, I'm Sandra Dee - Karaoke Version from Zoom Karaoke", - "id": "9pb4hob_aKA" - }, - { - "title": "Grease/Sha Na Na - Blue Moon - Karaoke Version from Zoom Karaoke", - "id": "79aKNoxvlY0" - }, - { - "title": "Billy Fury - I'd Never Find Another You - Karaoke Version from Zoom Karaoke", - "id": "3TpslqDmx8g" - }, - { - "title": "AC/DC - Shot In The Dark - Karaoke Version from Zoom Karaoke", - "id": "43a17pwYk9M" - }, - { - "title": "Gary Barlow feat. Michael Buble & Sebastian Yatra - Elita - Karaoke Version from Zoom Karaoke", - "id": "k3OvED68hGQ" - }, - { - "title": "Starland Vocal Band - Afternoon Delight - Karaoke Version from Zoom Karaoke", - "id": "NUz41uqBSdI" - }, - { - "title": "James Morrison - This Boy - Karaoke Version from Zoom Karaoke", - "id": "yu56-Gx5T1A" - }, - { - "title": "The Proclaimers - I'm Gonna Be 500 Miles (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "crmbs78yB-I" - }, - { - "title": "George Harrison - Got My Mind Set On You - Karaoke Version from Zoom Karaoke", - "id": "tqHwdyf3yeE" - }, - { - "title": "Kaiser Chiefs - Ruby - Karaoke Version from Zoom Karaoke", - "id": "ziF11TnMJK0" - }, - { - "title": "Simply Red - Holding Back The Years - Karaoke Version from Zoom Karaoke", - "id": "xA8KBzt_9po" - }, - { - "title": "Ray Lamontagne - Trouble - Karaoke Version from Zoom Karaoke", - "id": "w2PRTJlHNSU" - }, - { - "title": "Natalie Imbruglia - Torn - Karaoke Version from Zoom Karaoke", - "id": "cyzDWwdFoXE" - }, - { - "title": "Foreigner - I Want To Know What Love Is - Karaoke Version from Zoom Karaoke", - "id": "Njat8f2-LuY" - }, - { - "title": "McFly - Don't Stop Me Now - Karaoke Version from Zoom Karaoke", - "id": "G77hkRjcdpI" - }, - { - "title": "Simon Webbe - Coming Around Again - Karaoke Version from Zoom Karaoke", - "id": "FW4HXtk9msM" - }, - { - "title": "The Proclaimers - I'm Gonna Be 500 Miles (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "22hT_usORWI" - }, - { - "title": "Doris Day - Secret Love - Karaoke Version from Zoom Karaoke", - "id": "lr2I58MTd9k" - }, - { - "title": "Erasure - Here I Go Impossible Again - Karaoke Version from Zoom Karaoke", - "id": "_j4IRR7gSno" - }, - { - "title": "The Pet Shop Boys - It's A Sin - Karaoke Version from Zoom Karaoke", - "id": "T8Pyx8rQFLU" - }, - { - "title": "Dr And The Medics - Spirit In The Sky - Karaoke Version from Zoom Karaoke", - "id": "GdzICifYu-Y" - }, - { - "title": "Doris Day - Pillow Talk - Karaoke Version from Zoom Karaoke", - "id": "Fhn2U9gA8EY" - }, - { - "title": "James Morrison - Under The Influence - Karaoke Version from Zoom Karaoke", - "id": "Cnt6JzCGiEc" - }, - { - "title": "James Morrison - You Give Me Something - Karaoke Version from Zoom Karaoke", - "id": "6C3OyLoOol4" - }, - { - "title": "James Morrison - Wonderful World - Karaoke Version from Zoom Karaoke", - "id": "4k3y4cR7BZs" - }, - { - "title": "Counting Crows - Hard Candy - Karaoke Version from Zoom Karaoke", - "id": "h9H_MzYuBAE" - }, - { - "title": "The Four Tops - It's The Same Old Song - Karaoke Version from Zoom Karaoke", - "id": "_FssPKXVnw4" - }, - { - "title": "George Michael - Faith (With Organ Intro) - Karaoke Version from Zoom Karaoke", - "id": "FA-bEMc33c8" - }, - { - "title": "All 4 One - I Swear - Karaoke Version from Zoom Karaoke", - "id": "3yKIe0xNxzQ" - }, - { - "title": "Barenaked Ladies - Hello City - Karaoke Version from Zoom Karaoke", - "id": "1T8VVh9qdLU" - }, - { - "title": "Extreme - More Than Words (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "FL2pRMOdV4Q" - }, - { - "title": "Counting Crows - Holiday In Spain - Karaoke Version from Zoom Karaoke", - "id": "8a_I0pR_Zf0" - }, - { - "title": "Jackie Wilson - Reet Petite - Karaoke Version from Zoom Karaoke", - "id": "1DSII6VZilk" - }, - { - "title": "James Morrison - The Last Goodbye - Karaoke Version from Zoom Karaoke", - "id": "zwp3r29HFPE" - }, - { - "title": "Jimmy James & The Vagabonds - I'll Go Where The Music Takes Me - Karaoke Version from Zoom", - "id": "u0kt_YJwRLM" - }, - { - "title": "Jackie Wilson - (Your Love Keeps Lifting Me) Higher And Higher - Karaoke Version from Zoom Karaoke", - "id": "pTl8G5ut2JY" - }, - { - "title": "Berlin - Take My Breath Away - Karaoke Version from Zoom Karaoke", - "id": "kDmJRm24Iag" - }, - { - "title": "The Pet Shop Boys - Always On My Mind - Karaoke Version from Zoom Karaoke", - "id": "_BvN06rlwww" - }, - { - "title": "George Michael - Faith (Without Organ Intro) - Karaoke Version from Zoom Karaoke", - "id": "TRfX50A_rYo" - }, - { - "title": "James Morrison - The Pieces Don't Fit Anymore - Karaoke Version from Zoom Karaoke", - "id": "SgU-JNYZUl0" - }, - { - "title": "James Morrison - One Last Chance - Karaoke Version from Zoom Karaoke", - "id": "Nz1tZL7cyJg" - }, - { - "title": "Wet Wet Wet - Goodnight Girl - Karaoke Version from Zoom Karaoke", - "id": "6a_aPu5_IjY" - }, - { - "title": "Sheryl Crow - All I Wanna Do - Karaoke Version from Zoom Karaoke", - "id": "y_5YVCI-nBA" - }, - { - "title": "James Morrison - Call The Police - Karaoke Version from Zoom Karaoke", - "id": "m5cHBjS8FYw" - }, - { - "title": "Jackie Wilson - I Get The Sweetest Feeling - Karaoke Version from Zoom Karaoke", - "id": "Xi2klvXOk0I" - }, - { - "title": "James Morrison - If The Rain Must Fall - Karaoke Version from Zoom Karaoke", - "id": "R9fKz0Ahxyg" - }, - { - "title": "James Morrison - The Letter - Karaoke Version from Zoom Karaoke", - "id": "DKnBfY16dmM" - }, - { - "title": "The Isley Brothers - This Old Heart Of Mine (Is Weak For You) - Karaoke Version from Zoom Karaoke", - "id": "8qVAETvjn0Q" - }, - { - "title": "Sam Cooke - Another Saturday Night - Karaoke Version from Zoom Karaoke", - "id": "8pWktdMx6PM" - }, - { - "title": "Barenaked Ladies - The Humour Of The Situation - Karaoke Version from Zoom Karaoke", - "id": "rOeBqA5qW2A" - }, - { - "title": "Extreme - More Than Words (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "rD2G1xU7hgs" - }, - { - "title": "The Tymes - Ms Grace - Karaoke Version from Zoom Karaoke", - "id": "V4Scynx4c8A" - }, - { - "title": "Razorlight - America - Karaoke Version from Zoom Karaoke", - "id": "BfZDwQECLEk" - }, - { - "title": "Paul Weller - The Changingman - Karaoke Version from Zoom Karaoke", - "id": "wVEbwM_CiAw" - }, - { - "title": "Style Council - Shout To The Top - Karaoke Version from Zoom Karaoke", - "id": "u8B_MNOcInk" - }, - { - "title": "Paul Weller - Hung Up - Karaoke Version from Zoom Karaoke", - "id": "qVqSLiccW_U" - }, - { - "title": "James Morrison - How Come - Karaoke Version from Zoom Karaoke", - "id": "lbYJSWUQe7Q" - }, - { - "title": "The Pussycat Dolls - Don't Cha (No Rapping) - Karaoke Version from Zoom Karaoke", - "id": "_BcIvJJX9D4" - }, - { - "title": "James Morrison - Better Man - Karaoke Version from Zoom Karaoke", - "id": "RGFQvknXBto" - }, - { - "title": "No Doubt - Don't Speak - Karaoke Version from Zoom Karaoke", - "id": "OOe863eh9r8" - }, - { - "title": "James Morrison - Undiscovered - Karaoke Version from Zoom Karaoke", - "id": "KdeTXoT8TH4" - }, - { - "title": "Paolo Nutini - Last Request - Karaoke Version from Zoom Karaoke", - "id": "I0gdX5mYOk8" - }, - { - "title": "Europe - The Final Countdown - Karaoke Version from Zoom Karaoke", - "id": "qAa3A3_B6lk" - }, - { - "title": "Paul Weller - Wild Wood - Karaoke Version from Zoom Karaoke", - "id": "p8if4pePjTY" - }, - { - "title": "Paul Weller - Out Of The Sinking - Karaoke Version from Zoom Karaoke", - "id": "fH45yqdGp8w" - }, - { - "title": "Style Council - Walls Come Tumbling Down - Karaoke Version from Zoom Karaoke", - "id": "dDJp_gVl_PU" - }, - { - "title": "Style Council - Speak Like A Child - Karaoke Version from Zoom Karaoke", - "id": "aScXQn0kOqo" - }, - { - "title": "High School Musical - What I've Been Looking For - Karaoke Version from Zoom Karaoke", - "id": "TkEiZ9kL9C8" - }, - { - "title": "Paul Weller - Peacock Suit - Karaoke Version from Zoom Karaoke", - "id": "PTKyE1Hwgjk" - }, - { - "title": "Meat Loaf - It's All Coming Back To Me Now (Duet) - Karaoke Version from Zoom Karaoke", - "id": "LZt6S8mfWfo" - }, - { - "title": "The Drifters - Dance With Me - Karaoke Version from Zoom Karaoke", - "id": "DHD1_gP_lFg" - }, - { - "title": "Style Council - You're The Best Thing - Karaoke Version from Zoom Karaoke", - "id": "2dcTBNhM2V8" - }, - { - "title": "Paul Weller - Broken Stones - Karaoke Version from Zoom Karaoke", - "id": "pf9NEp3ixkg" - }, - { - "title": "Nat 'King' Cole - Unforgettable - Karaoke Version from Zoom Karaoke", - "id": "oqPTo0pQqmo" - }, - { - "title": "Percy Sledge - When A Man Loves A Woman - Karaoke Version from Zoom Karaoke", - "id": "iAgdKBErrwQ" - }, - { - "title": "High School Musical - Breaking Free - Karaoke Version from Zoom Karaoke", - "id": "W2J5wXGamO8" - }, - { - "title": "Ben E. King - Stand By Me - Karaoke Version from Zoom Karaoke", - "id": "Ve5tKGh1t8o" - }, - { - "title": "Take That - Patience - Karaoke Version from Zoom Karaoke", - "id": "6fR1o_L-Z0U" - }, - { - "title": "Nat 'King' Cole - When I Fall In Love - Karaoke Version from Zoom Karaoke", - "id": "y2WuMBreWx4" - }, - { - "title": "High School Musical - Start Of Something New - Karaoke Version from Zoom Karaoke", - "id": "wXT8dwUvM88" - }, - { - "title": "High School Musical - Stick To The Status Quo - Karaoke Version from Zoom Karaoke", - "id": "up2gSrd285k" - }, - { - "title": "Nat 'King' Cole - Too Young - Karaoke Version from Zoom Karaoke", - "id": "tCc8mOMjvLw" - }, - { - "title": "Style Council - My Ever Changing Moods - Karaoke Version from Zoom Karaoke", - "id": "o5RjFdzdGgA" - }, - { - "title": "B5 - Getcha Head In The Game - Karaoke Version from Zoom Karaoke", - "id": "nTJ2msG5GMo" - }, - { - "title": "Whitney Houston - Saving All My Love For You - Karaoke Version from Zoom Karaoke", - "id": "lUrZwVT8E2A" - }, - { - "title": "Paul Weller - You Do Something To Me - Karaoke Version from Zoom Karaoke", - "id": "k6s5zYZDfGU" - }, - { - "title": "High School Musical - Bop To The Top - Karaoke Version from Zoom Karaoke", - "id": "eCrZU2sib7U" - }, - { - "title": "Nat 'King' Cole - Those Lazy Hazy Crazy Days Of Summer - Karaoke Version from Zoom Karaoke", - "id": "eBLbomycOKg" - }, - { - "title": "High School Musical - What I've Been Looking For Reprise - Karaoke Version from Zoom Karaoke", - "id": "_kPY0f_r720" - }, - { - "title": "A-ha - The Sun Always Shines On T.V. - Karaoke Version from Zoom Karaoke", - "id": "_XVjhOHZuiY" - }, - { - "title": "High School Musical - Stick To The Status Quo (No Backing Vocals) - Karaoke Version", - "id": "Y6_HA6V5eXc" - }, - { - "title": "Black Lace - Agadoo - Karaoke Version from Zoom Karaoke", - "id": "VXDYK5SKeqs" - }, - { - "title": "High School Musical - We're All In This Together (No Backing Vocals) - Karaoke Version", - "id": "UujI2vaeSVE" - }, - { - "title": "High School Musical - Getcha Head In The Game - Karaoke Version from Zoom Karaoke", - "id": "Tmu3iojsYDk" - }, - { - "title": "Santana feat Rob Thomas - Smooth - Karaoke Version from Zoom Karaoke (Old Version)", - "id": "RlN0Z-cqieE" - }, - { - "title": "High School Musical - I Can't Take My Eyes Off Of You - Karaoke Version from Zoom Karaoke", - "id": "RQ5YjROcy0s" - }, - { - "title": "Phil Oakey And Giorgio Moroder - Together In Electric Dreams - Karaoke Version from Zoom Karaoke", - "id": "Ol6T0yMzKiQ" - }, - { - "title": "Eurythmics - There Must Be An Angel (Playing With My Heart) - Karaoke Version from Zoom Karaoke", - "id": "ORLK6Ga5qH4" - }, - { - "title": "The Fratellis - Whistle For The Choir - Karaoke Version from Zoom Karaoke", - "id": "GprCdt5ley0" - }, - { - "title": "High School Musical - When There Was Me And You - Karaoke Version from Zoom Karaoke", - "id": "6YfZqWTOwEU" - }, - { - "title": "Smokey Robinson & The Miracles - The Tracks Of My Tears - Karaoke Version from Zoom Karaoke", - "id": "3nPKpG7Ai3k" - }, - { - "title": "Avril Lavigne - Runaway - Karaoke Version from Zoom Karaoke", - "id": "vMOz8IKvgKg" - }, - { - "title": "The Commodores - Sail On - Karaoke Version from Zoom Karaoke", - "id": "tG_tov_UTWw" - }, - { - "title": "Duran Duran - A View To A Kill - Karaoke Version from Zoom Karaoke", - "id": "qEEKXM6hsCI" - }, - { - "title": "Louis Armstrong - We Have All The Time In The World - Karaoke Version from Zoom Karaoke", - "id": "V1cF2RhouqA" - }, - { - "title": "Tasmin Archer - Sleeping Satellite - Karaoke Version from Zoom Karaoke", - "id": "Rgds9bbt6M4" - }, - { - "title": "James - Sit Down - Karaoke Version from Zoom Karaoke", - "id": "NZD_9GaPvEY" - }, - { - "title": "All Saints - Never Ever - Karaoke Version from Zoom Karaoke", - "id": "53ldESePzG4" - }, - { - "title": "Blondie - Dreaming - Karaoke Version from Zoom Karaoke", - "id": "i-2LNmb5uDg" - }, - { - "title": "Deborah Harry - French Kissin' In The U.S.A. - Karaoke Version from Zoom Karaoke", - "id": "uE4sGN6Bgg0" - }, - { - "title": "Girls Aloud - Sound Of The Underground - Karaoke Version from Zoom Karaoke", - "id": "u-619tsdRK4" - }, - { - "title": "The Commodores - Still - Karaoke Version from Zoom Karaoke", - "id": "qwVsRXxLmQ8" - }, - { - "title": "Avril Lavigne - The Best Damn Thing - Karaoke Version from Zoom Karaoke", - "id": "i1eJ10iSJfU" - }, - { - "title": "Michael Buble - Save The Last Dance For Me - Karaoke Version from Zoom Karaoke", - "id": "hC7nnBIaYzA" - }, - { - "title": "The Commodores - Nightshift - Karaoke Version from Zoom Karaoke", - "id": "g0uxzOHryLo" - }, - { - "title": "Avril Lavigne - When You're Gone - Karaoke Version from Zoom Karaoke", - "id": "fhOHMxhRVpU" - }, - { - "title": "Avril Lavigne - I Can Do Better - Karaoke Version from Zoom Karaoke", - "id": "YqtXhCjjz8k" - }, - { - "title": "Michael Buble - You Don't Know Me - Karaoke Version from Zoom Karaoke", - "id": "NaN3gdgDsME" - }, - { - "title": "Oasis - Wonderwall - Karaoke Version from Zoom Karaoke", - "id": "LA6VwQ0HXdE" - }, - { - "title": "Robbie Williams - Feel - Karaoke Version from Zoom Karaoke", - "id": "FABvmXxQ6AA" - }, - { - "title": "The Spice Girls - Wannabe - Karaoke Version from Zoom Karaoke", - "id": "DO1XCUjxrRk" - }, - { - "title": "Diana Ross - Upside Down - Karaoke Version from Zoom Karaoke", - "id": "8ofCuFQPpMA" - }, - { - "title": "Rita Coolidge - All Time High - Karaoke Version from Zoom Karaoke", - "id": "3Psfnf9iGTA" - }, - { - "title": "Toto - Rosanna - Karaoke Version from Zoom Karaoke", - "id": "Zved14TddLs" - }, - { - "title": "The Commodores - Easy - Karaoke Version from Zoom Karaoke", - "id": "LX2r-TR2PfI" - }, - { - "title": "Deborah Harry - I Want That Man - Karaoke Version from Zoom Karaoke", - "id": "wyULXz2X3ek" - }, - { - "title": "Blondie - Union City Blue - Karaoke Version from Zoom Karaoke", - "id": "kVDBjg1BeY0" - }, - { - "title": "Reo Speedwagon - Keep On Loving You - Karaoke Version from Zoom Karaoke", - "id": "h0lIyKefxOI" - }, - { - "title": "Sheena Easton - For Your Eyes Only - Karaoke Version from Zoom Karaoke", - "id": "Kyq_rhun8cI" - }, - { - "title": "Blondie - Sunday Girl - Karaoke Version from Zoom Karaoke", - "id": "99GMnVHabcE" - }, - { - "title": "The Swinging Blue Jeans - You're No Good - Karaoke Version from Zoom Karaoke", - "id": "19Q_eU2n0Dg" - }, - { - "title": "Doris Day And Frankie Laine - Sugarbush - Karaoke Version from Zoom Karaoke", - "id": "tDT88bkEtkQ" - }, - { - "title": "Blondie - The Blondie Medley - Karaoke Version from Zoom Karaoke", - "id": "q-rfK1O5RqA" - }, - { - "title": "Neil Reid - Mother Of Mine - Karaoke Version from Zoom Karaoke", - "id": "njjjWKryvyw" - }, - { - "title": "Scissor Sisters - The Other Side - Karaoke Version from Zoom Karaoke", - "id": "mjyQMIcu6dg" - }, - { - "title": "Benny Hill - Older Women - Karaoke Version from Zoom Karaoke", - "id": "lc2lWD7y9XE" - }, - { - "title": "Michael Ball - Music (Prelude) - Karaoke Version from Zoom Karaoke", - "id": "K0WmlGGwK5Q" - }, - { - "title": "Shirley Bassey - Goldfinger - Karaoke Version from Zoom Karaoke", - "id": "FtEDqrYsxEM" - }, - { - "title": "Blondie - Denis - Karaoke Version from Zoom Karaoke", - "id": "DlONKFuWLxk" - }, - { - "title": "Shirley Bassey - Diamonds Are Forever - Karaoke Version from Zoom Karaoke", - "id": "DRCp2HV-5Zk" - }, - { - "title": "The Hollies - Suspended Animation - Karaoke Version from Zoom Karaoke", - "id": "8QbKKZcUSpg" - }, - { - "title": "Scissor Sisters - Paul McCartney - Karaoke Version from Zoom Karaoke", - "id": "1-F9C9SGEsg" - }, - { - "title": "The Kinks - Everybody's Gonna Be Happy - Karaoke Version from Zoom Karaoke", - "id": "8KZ4O_XcvlY" - }, - { - "title": "The Kinks - Stop Your Sobbing - Karaoke Version from Zoom Karaoke", - "id": "pzAmBJXPaS4" - }, - { - "title": "Simon And Garfunkel - Keep The Customer Satisfied - Karaoke Version from Zoom Karaoke", - "id": "kxDIbD8S7vI" - }, - { - "title": "The Chi Lites - Have You Seen Her - Karaoke Version from Zoom Karaoke", - "id": "jGfmO2Ou8MA" - }, - { - "title": "The Hollies - Let Love Pass - Karaoke Version from Zoom Karaoke", - "id": "d1kmf58GHTo" - }, - { - "title": "Scissor Sisters - Lights - Karaoke Version from Zoom Karaoke", - "id": "bWUHvO2RgTs" - }, - { - "title": "Scissor Sisters - Ooh - Karaoke Version from Zoom Karaoke", - "id": "ZGuUyUF_gzY" - }, - { - "title": "The Kinks - Set Me Free - Karaoke Version from Zoom Karaoke", - "id": "OSYuhP2qn_o" - }, - { - "title": "Clout - Substitute - Karaoke Version from Zoom Karaoke", - "id": "BhGPNtP-aYA" - }, - { - "title": "Scissor Sisters - Intermission - Karaoke Version from Zoom Karaoke", - "id": "1mNw25aGW44" - }, - { - "title": "Boney M - The Boney M Megamix (Female Solo) - Karaoke Version from Zoom Karaoke", - "id": "w_oPNuoR2uM" - }, - { - "title": "Doris Day - Ready, Willing And Able - Karaoke Version from Zoom Karaoke", - "id": "S8zvmG2w7Zg" - }, - { - "title": "Fleetwood Mac - Oh Diane - Karaoke Version from Zoom Karaoke", - "id": "N3PifoKZOQw" - }, - { - "title": "Doris Day - The Deadwood Stage - Karaoke Version from Zoom Karaoke", - "id": "MW-fT8mGIHQ" - }, - { - "title": "Benny Hill - What A World - Karaoke Version from Zoom Karaoke", - "id": "MD_xAWZFuLo" - }, - { - "title": "Boney M - Ma Baker (Duet) - Karaoke Version from Zoom Karaoke", - "id": "8beTxe4Dt8Y" - }, - { - "title": "Scissor Sisters - Might Tell You Tonight - Karaoke Version from Zoom Karaoke", - "id": "6yPapts4_QU" - }, - { - "title": "Marmalade - Wait For Me Mary Anne - Karaoke Version from Zoom Karaoke", - "id": "sseWsGtqE7A" - }, - { - "title": "Maria Lawson - Sleepwalking - Karaoke Version from Zoom Karaoke", - "id": "pimoMp2VUcs" - }, - { - "title": "Doris Day - Teacher's Pet - Karaoke Version from Zoom Karaoke", - "id": "aXq99kEPzWI" - }, - { - "title": "Scissor Sisters - Everybody Wants The Same Thing - Karaoke Version from Zoom Karaoke", - "id": "YrLJPzkXSKc" - }, - { - "title": "Boney M - The Boney M Megamix (Duet) - Karaoke Version from Zoom Karaoke", - "id": "Rq_O7QI-Lkw" - }, - { - "title": "Doris Day - Bewitched, Bothered And Bewildered - Karaoke Version from Zoom Karaoke", - "id": "OrvSExTc1BE" - }, - { - "title": "Frankie Laine - High Noon - Karaoke Version from Zoom Karaoke", - "id": "NBijCd2tH84" - }, - { - "title": "Doris Day - The Black Hills Of Dakota - Karaoke Version from Zoom Karaoke", - "id": "M_C207IjP6I" - }, - { - "title": "Benny Hill - The Andalucian Gypsies - Karaoke Version from Zoom Karaoke", - "id": "KQ5HzCOX5Kk" - }, - { - "title": "Doris Day - If I Give My Heart To You - Karaoke Version from Zoom Karaoke", - "id": "IOQjrmcL1o4" - }, - { - "title": "Crosby, Stills, Nash And Young - Our House - Karaoke Version from Zoom Karaoke", - "id": "DTkIFEf1BdU" - }, - { - "title": "Blue Oyster Cult - (Don't Fear) The Reaper - Karaoke Version from Zoom Karaoke", - "id": "-f_w4ZAYk3E" - }, - { - "title": "Scissor Sisters - She's My Man - Karaoke Version from Zoom Karaoke", - "id": "7rIeM6T3dKg" - }, - { - "title": "Neil Diamond - Beautiful Noise - Karaoke Version from Zoom Karaoke", - "id": "gyj3KXwXWZM" - }, - { - "title": "Take That - Shine - Karaoke Version from Zoom Karaoke", - "id": "ZBYZi8ffgcY" - }, - { - "title": "Benny Hill - Jose's Cantina - Karaoke Version from Zoom Karaoke", - "id": "5hod9Or_79E" - }, - { - "title": "Boney M - Brown Girl In The Ring - Karaoke Version from Zoom Karaoke", - "id": "1j8zRQKurL4" - }, - { - "title": "Doris Day - Perhaps Perhaps Perhaps - Karaoke Version from Zoom Karaoke", - "id": "0xqzWpmVtZY" - }, - { - "title": "Boney M - Belfast - Karaoke Version from Zoom Karaoke", - "id": "p2UWz77xRP0" - }, - { - "title": "Neil Diamond - Song Sung Blue - Karaoke Version from Zoom Karaoke", - "id": "fnEfSbFMwWg" - }, - { - "title": "Boney M - Hooray! Hooray! It's A Holi-Holiday - Karaoke Version from Zoom Karaoke", - "id": "dd466jJZU0g" - }, - { - "title": "Joe Dolan - The Answer To Everything - Karaoke Version from Zoom Karaoke", - "id": "LMuUDBklpXU" - }, - { - "title": "Scissor Sisters - Kiss You Off - Karaoke Version from Zoom Karaoke", - "id": "710_wQvpUbo" - }, - { - "title": "Scissor Sisters - I Can't Decide - Karaoke Version from Zoom Karaoke", - "id": "kSj7uOA48DE" - }, - { - "title": "Boney M - Ma Baker (Female Solo) - Karaoke Version from Zoom Karaoke", - "id": "GPj1t3Pfw_8" - }, - { - "title": "Scissor Sisters - Land Of A Thousand Words - Karaoke Version from Zoom Karaoke", - "id": "7SqLzSiKT9U" - }, - { - "title": "Avril Lavigne - Girlfriend - Karaoke Version from Zoom Karaoke", - "id": "73BDs2Qg6tM" - }, - { - "title": "The Hollies - I'm Alive - Karaoke Version from Zoom Karaoke", - "id": "tP0iVV8K9Sc" - }, - { - "title": "The Hollies - Just One Look - Karaoke Version from Zoom Karaoke", - "id": "Vp2ft44Zi5o" - }, - { - "title": "Billy J Kramer & The Dakotas - From A Window - Karaoke Version from Zoom Karaoke", - "id": "yLeUcyXicXE" - }, - { - "title": "The Swinging Blue Jeans - Don't Make Me Over - Karaoke Version from Zoom Karaoke", - "id": "rba02TpffbU" - }, - { - "title": "The Hollies - Here I Go Again - Karaoke Version from Zoom Karaoke", - "id": "sOjl0g1BhYg" - }, - { - "title": "Whigfield - Saturday Night - Karaoke Version from Zoom Karaoke", - "id": "FljYx3edIwg" - }, - { - "title": "Michael Buble - Try A Little Tenderness - Karaoke Version from Zoom Karaoke", - "id": "xbL-Yyd6UM8" - }, - { - "title": "The Spice Girls - Headlines (Friendship Never Ends) - Karaoke Version from Zoom Karaoke", - "id": "4LlZX809ePM" - }, - { - "title": "George Formby - When I'm Cleaning Windows - Karaoke Version from Zoom Karaoke", - "id": "kpGx61ugXOw" - }, - { - "title": "Meat Loaf - I'd Do Anything For Love But I Won't Do That (Duet) - Karaoke Version from Zoom Karaoke", - "id": "j3-E9LyE2vE" - }, - { - "title": "Snap - Rhythm Is A Dancer - Karaoke Version from Zoom Karaoke", - "id": "OJ7PeeTq1os" - }, - { - "title": "Chicory Tip - Son Of My Father - Karaoke Version from Zoom Karaoke", - "id": "w0Ro9zYJFO4" - }, - { - "title": "Jason Donovan - Any Dream Will Do - Karaoke Version from Zoom Karaoke", - "id": "a0lCmQRsg40" - }, - { - "title": "George Formby - Chinese Laundry Blues - Karaoke Version from Zoom Karaoke", - "id": "Y0c0tU9HGzY" - }, - { - "title": "Maria McKee - Show Me Heaven - Karaoke Version from Zoom Karaoke", - "id": "uGc3U_ASPPQ" - }, - { - "title": "T. Rex - Metal Guru - Karaoke Version from Zoom Karaoke", - "id": "scPMZEwzLSk" - }, - { - "title": "Wayne Fontana & The Mindbenders - The Game Of Love - Karaoke Version from Zoom Karaoke", - "id": "CRrvfXlYAFQ" - }, - { - "title": "The Merseybeats - I Think Of You - Karaoke Version from Zoom Karaoke", - "id": "Zzg13iZiZYI" - }, - { - "title": "Michael Buble - Call Me Irresponsible - Karaoke Version from Zoom Karaoke", - "id": "16nlO20sL1E" - }, - { - "title": "Michael Buble - Me And Mrs Jones - Karaoke Version from Zoom Karaoke", - "id": "F7rgdmOhmTY" - }, - { - "title": "Roger Whittaker - New World In The Morning - Karaoke Version from Zoom Karaoke", - "id": "q-yI87UZ_-A" - }, - { - "title": "The Mixtures - The Pushbike Song - Karaoke Version from Zoom Karaoke", - "id": "fkIUbxn5XlI" - }, - { - "title": "D:Ream - Things Can Only Get Better - Karaoke Version from Zoom Karaoke", - "id": "a546QFcJric" - }, - { - "title": "Sugababes - Hole In The Head - Karaoke Version from Zoom Karaoke", - "id": "KKLqrqxQTak" - }, - { - "title": "Anita Ward - Ring My Bell - Karaoke Version from Zoom Karaoke", - "id": "JfAOJAZrO4Y" - }, - { - "title": "Boyzone - Words - Karaoke Version from Zoom Karaoke", - "id": "i3Q32kE7L2A" - }, - { - "title": "Nick Lowe - Cruel To Be Kind - Karaoke Version from Zoom Karaoke", - "id": "RvDrryMN6fk" - }, - { - "title": "George Formby - Leaning On A Lamp Post - Karaoke Version from Zoom Karaoke", - "id": "S1ahakZYIqA" - }, - { - "title": "Michael Buble - I've Got You Under My Skin - Karaoke Version from Zoom Karaoke", - "id": "PKM6oPCuBFk" - }, - { - "title": "East 17 - Stay Another Day - Karaoke Version from Zoom Karaoke", - "id": "ETl_LAGol6s" - }, - { - "title": "Jimmy Nail - Ain't No Doubt - Karaoke Version from Zoom Karaoke", - "id": "lkLB4zPY3jI" - }, - { - "title": "Meat Loaf - I'd Do Anything For Love But I Won't Do That (Male Solo) Karaoke Version", - "id": "h6aSp4RgmYc" - }, - { - "title": "High School Musical 2 - Work This Out (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hazXN-_2-gI" - }, - { - "title": "Elvis Presley - One Night - Karaoke Version from Zoom Karaoke", - "id": "Clwswg0SluU" - }, - { - "title": "High School Musical 2 - I Don't Dance (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hAfijHvQaDU" - }, - { - "title": "Avril Lavigne - Contagious - Karaoke Version from Zoom Karaoke", - "id": "a5IeU9Tqxdc" - }, - { - "title": "High School Musical 2 - All For One - Karaoke Version from Zoom Karaoke", - "id": "SCA1Ls-duV0" - }, - { - "title": "The Searchers - Don't Throw Your Love Away - Karaoke Version from Zoom Karaoke", - "id": "x_UbmZ8r0b0" - }, - { - "title": "Elvis Presley - I Need Your Love Tonight - Karaoke Version from Zoom Karaoke", - "id": "uayByA9m4kM" - }, - { - "title": "Avril Lavigne - Innocence - Karaoke Version from Zoom Karaoke", - "id": "ckIrilWu2Jg" - }, - { - "title": "Craig Douglas - Only Sixteen - Karaoke Version from Zoom Karaoke", - "id": "v0IEgqDhyo8" - }, - { - "title": "Avril Lavigne - Keep Holding On - Karaoke Version from Zoom Karaoke", - "id": "zzeu05bVZKQ" - }, - { - "title": "High School Musical 2 - Gotta Go My Own Way (Duet) - Karaoke Version from Zoom Karaoke", - "id": "x_gwno450sE" - }, - { - "title": "High School Musical 2 - Fabulous - Karaoke Version from Zoom Karaoke", - "id": "xGCpssKOQFI" - }, - { - "title": "Bobby Darin - Dream Lover - Karaoke Version from Zoom Karaoke", - "id": "ctn5g5wwXPg" - }, - { - "title": "Paul Jones - High Time - Karaoke Version from Zoom Karaoke", - "id": "OReQPvhVAVE" - }, - { - "title": "Avril Lavigne - One Of Those Girls - Karaoke Version from Zoom Karaoke", - "id": "Lkg8veweTYA" - }, - { - "title": "Cliff Richard - Travellin' Light - Karaoke Version from Zoom Karaoke", - "id": "-MV5nEHClnk" - }, - { - "title": "High School Musical 2 - Bet On It - Karaoke Version from Zoom Karaoke", - "id": "lZfvRZH4IpQ" - }, - { - "title": "Unit Four Plus Two - Concrete And Clay - Karaoke Version from Zoom Karaoke", - "id": "p2V5kKhqBGo" - }, - { - "title": "Chesney Hawkes - The One And Only - Karaoke Version from Zoom Karaoke", - "id": "l9kJ_W7dGNs" - }, - { - "title": "High School Musical 2 - Everyday - Karaoke Version from Zoom Karaoke", - "id": "_4Nq7dn76jM" - }, - { - "title": "High School Musical 2 - All For One (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "Xq7AFFtQSzg" - }, - { - "title": "Chris Andrews - Yesterday Man - Karaoke Version from Zoom Karaoke", - "id": "TMz2NUB9_UU" - }, - { - "title": "Adam Faith - What Do You Want - Karaoke Version from Zoom Karaoke", - "id": "PDBEei9iYy8" - }, - { - "title": "High School Musical 2 - You Are The Music In Me (Sharpay Version) - Karaoke Version", - "id": "NsFmxFKcz44" - }, - { - "title": "High School Musical 2 - Work This Out - Karaoke Version from Zoom Karaoke", - "id": "LeDad8lS8X0" - }, - { - "title": "Chris Andrews - To Whom It Concerns - Karaoke Version from Zoom Karaoke", - "id": "HzE-KN7qpxs" - }, - { - "title": "Avril Lavigne - Hot - Karaoke Version from Zoom Karaoke", - "id": "HstpiI2PhUE" - }, - { - "title": "Pulp - Disco 2000 - Karaoke Version from Zoom Karaoke", - "id": "9JGersbNLy8" - }, - { - "title": "High School Musical 2 - Gotta Go My Own Way (Female Solo) - Karaoke Version from Zoom Karaoke", - "id": "6Z2epl2wSik" - }, - { - "title": "High School Musical 2 - Fabulous (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "5E2ZXndtw8w" - }, - { - "title": "High School Musical 2 - Humuhumunukunukuapua'A - Karaoke Version from Zoom Karaoke", - "id": "vlMdPmRYB44" - }, - { - "title": "Shayne Ward - Stand By Me - Karaoke Version from Zoom Karaoke", - "id": "K3jZGp4H_9c" - }, - { - "title": "Sugababes - Caught In A Moment - Karaoke Version from Zoom Karaoke", - "id": "H0iiGl2Aoe4" - }, - { - "title": "Paul Jones - I've Been A Bad Bad Boy - Karaoke Version from Zoom Karaoke", - "id": "sNOuX1pNfOE" - }, - { - "title": "The View - Same Jeans - Karaoke Version from Zoom Karaoke", - "id": "YOKpJ-tF0kw" - }, - { - "title": "Whitney Houston - I Will Always Love You - Karaoke Version from Zoom Karaoke", - "id": "CiJoUo-2_X4" - }, - { - "title": "Shirley Bassey - Moonraker - Karaoke Version from Zoom Karaoke", - "id": "9YTSQglXWP0" - }, - { - "title": "Sugababes - Easy - Karaoke Version from Zoom Karaoke", - "id": "3sm9It95t-I" - }, - { - "title": "Nancy Sinatra - You Only Live Twice - Karaoke Version from Zoom Karaoke", - "id": "mgIQVZBnSAM" - }, - { - "title": "Chris Andrews - Pretty Belinda - Karaoke Version from Zoom Karaoke", - "id": "kyPdfh6w4bY" - }, - { - "title": "Gladys Knight - Licence To Kill - Karaoke Version from Zoom Karaoke", - "id": "fFJE6E_nDbo" - }, - { - "title": "High School Musical 2 - What Time Is It - Karaoke Version from Zoom Karaoke", - "id": "Zt9QE-bIx3Q" - }, - { - "title": "Lulu - The Man With The Golden Gun - Karaoke Version from Zoom Karaoke", - "id": "TsRIpsgVC3g" - }, - { - "title": "High School Musical 2 - What Time Is It (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "MYbszKZcN_I" - }, - { - "title": "Michael Buble - Dream A Little Dream Of Me - Karaoke Version from Zoom Karaoke", - "id": "Ce9_-Ffmzkg" - }, - { - "title": "Tommy Roe - Dizzy - Karaoke Version from Zoom Karaoke", - "id": "9P6gNrXo1jg" - }, - { - "title": "The Everly Brothers - Take A Message To Mary (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "zA9guXVgM5g" - }, - { - "title": "Gabrielle - Dreams - Karaoke Version from Zoom Karaoke", - "id": "u79vsH52xTU" - }, - { - "title": "Brian Poole & The Tremeloes - Do You Love Me - Karaoke Version from Zoom Karaoke", - "id": "l92VlSRLYyo" - }, - { - "title": "The Spencer Davis Group - Somebody Help Me - Karaoke Version from Zoom Karaoke", - "id": "byJGRJyGOQI" - }, - { - "title": "Avril Lavigne - Everything Back But You - Karaoke Version from Zoom Karaoke", - "id": "UaDVOWwMpnY" - }, - { - "title": "George Formby - With My Little Stick Of Blackpool Rock (No Ukulele) - Karaoke Version", - "id": "OHBqlZSh7Iw" - }, - { - "title": "Shakespear's Sister - Stay - Karaoke Version from Zoom Karaoke", - "id": "JBslnmvVEOk" - }, - { - "title": "High School Musical 2 - You Are The Music In Me - Karaoke Version from Zoom Karaoke", - "id": "J9WdnTboD84" - }, - { - "title": "The Everly Brothers - Take A Message To Mary (With Harmony) - Karaoke Version from Zoom Kara", - "id": "IQG6eJ81pi8" - }, - { - "title": "George Formby - With My Little Stick Of Blackpool Rock - Karaoke Version from Zoom Karaoke", - "id": "2Zw_Ih2n-U8" - }, - { - "title": "The Bay City Rollers - Shang-A-Lang - Karaoke Version from Zoom Karaoke", - "id": "vtKX9PFR0fQ" - }, - { - "title": "Amen Corner - (If Paradise Is) Half As Nice - Karaoke Version from Zoom Karaoke", - "id": "lPkprPto45w" - }, - { - "title": "The Bachelors - Ramona - Karaoke Version from Zoom Karaoke", - "id": "l6pb6jNhY8w" - }, - { - "title": "The Bachelors - Charmaine - Karaoke Version from Zoom Karaoke", - "id": "j_9BqG81TWI" - }, - { - "title": "Kylie Minogue - 2 Hearts - Karaoke Version from Zoom Karaoke", - "id": "FXyLGG3d_ls" - }, - { - "title": "Olivia Newton-John - If Not For You - Karaoke Version from Zoom Karaoke", - "id": "wTvEqoL1-LQ" - }, - { - "title": "Terry Jacks - Seasons In The Sun - Karaoke Version from Zoom Karaoke", - "id": "py4VgLgW-FI" - }, - { - "title": "Cliff Richard - Lessons In Love - Karaoke Version from Zoom Karaoke", - "id": "mGNgyqZvri0" - }, - { - "title": "Cliff Richard - Lucky Lips - Karaoke Version from Zoom Karaoke", - "id": "b6_E1_DbRzE" - }, - { - "title": "The Proclaimers - Life With You - Karaoke Version from Zoom Karaoke", - "id": "akL1TeAEx-I" - }, - { - "title": "The Buggles - Video Killed The Radio Star (Duet) - Karaoke Version from Zoom Karaoke", - "id": "Y9VG2QvAysU" - }, - { - "title": "Cliff Richard - Don't Talk To Him - Karaoke Version from Zoom Karaoke", - "id": "XAcgro5jNvM" - }, - { - "title": "Cliff Richard - We Say Yeah - Karaoke Version from Zoom Karaoke", - "id": "WXDGJ9Sqw-o" - }, - { - "title": "Emile Ford & The Checkmates - On A Slow Boat To China - Karaoke Version from Zoom Karaoke", - "id": "Vct0OrmA9xs" - }, - { - "title": "Leona Lewis - Yesterday - Karaoke Version from Zoom Karaoke", - "id": "UC-TkepLpoI" - }, - { - "title": "Cliff Richard - Goodbye Sam, Hello Samantha - Karaoke Version from Zoom Karaoke", - "id": "MaYR7_K924M" - }, - { - "title": "The Bachelors - I Believe - Karaoke Version from Zoom Karaoke", - "id": "CCWSnAJbbxw" - }, - { - "title": "The Bachelors - Diane - Karaoke Version from Zoom Karaoke", - "id": "5QUMp3pdZ1o" - }, - { - "title": "T. Rex - 20th Century Boy - Karaoke Version from Zoom Karaoke", - "id": "-QS9Ay8xcIY" - }, - { - "title": "Wizzard - See My Baby Jive - Karaoke Version from Zoom Karaoke", - "id": "qZhmixBopHQ" - }, - { - "title": "The Searchers - Bumble Bee - Karaoke Version from Zoom Karaoke", - "id": "o23tlOlqLmY" - }, - { - "title": "Slade - Mama Weer All Crazee Now - Karaoke Version from Zoom Karaoke", - "id": "eF0gEIGe304" - }, - { - "title": "10cc - Rubber Bullets - Karaoke Version from Zoom Karaoke", - "id": "cBkRRddQxOA" - }, - { - "title": "Herman's Hermits - Herman's Hermits Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "Z8Pu_Bep68g" - }, - { - "title": "Leona Lewis - The First Time Ever I Saw Your Face - Karaoke Version from Zoom Karaoke", - "id": "Xbc2vlLrz5I" - }, - { - "title": "Amy Macdonald - This Is The Life - Karaoke Version from Zoom Karaoke", - "id": "ReHykOODk1A" - }, - { - "title": "Herman's Hermits - There's A Kind Of Hush - Karaoke Version from Zoom Karaoke", - "id": "RHA-tTdXNYQ" - }, - { - "title": "Leona Lewis - Here I Am - Karaoke Version from Zoom Karaoke", - "id": "Mg7YPEY9Tno" - }, - { - "title": "Leona Lewis - Whatever It Takes - Karaoke Version from Zoom Karaoke", - "id": "BI34QyQDlLo" - }, - { - "title": "Leona Lewis - Angel - Karaoke Version from Zoom Karaoke", - "id": "1qffc9VkfMY" - }, - { - "title": "Don McLean - Vincent - Karaoke Version from Zoom Karaoke", - "id": "-HEKn_wpdhI" - }, - { - "title": "Leona Lewis - I Will Be - Karaoke Version from Zoom Karaoke", - "id": "vvICfHHUWCY" - }, - { - "title": "Dave Dee, Dozy, Beaky, Mick And Tich - The Legend Of Xanadu - Karaoke Version from Zoom Karaoke", - "id": "vPAm5J1XIAM" - }, - { - "title": "Alice Cooper - School's Out - Karaoke Version from Zoom Karaoke", - "id": "pTcBgWNl1eg" - }, - { - "title": "The Hoosiers - Worried About Ray - Karaoke Version from Zoom Karaoke", - "id": "ok0MZKeLA4c" - }, - { - "title": "Leona Lewis - Take A Bow - Karaoke Version from Zoom Karaoke", - "id": "jNjH1AhBZ74" - }, - { - "title": "Herman's Hermits - Herman's Hermits Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "g2ZjBHoHDSM" - }, - { - "title": "The Hoosiers - Goodbye Mr A - Karaoke Version from Zoom Karaoke", - "id": "erVr2Ro4VXw" - }, - { - "title": "Peters And Lee - Welcome Home - Karaoke Version from Zoom Karaoke", - "id": "XTMFYQ6iLBA" - }, - { - "title": "The Kinks - Plastic Man - Karaoke Version from Zoom Karaoke", - "id": "VLKNGqC7ds8" - }, - { - "title": "Dawn Featuring Tony Orlando - Tie A Yellow Ribbon 'Round The Old Oak Tree - Karaoke Version", - "id": "SFl808SyhCE" - }, - { - "title": "Suzi Quatro - Can The Can - Karaoke Version from Zoom Karaoke", - "id": "NF2kVVwqhuE" - }, - { - "title": "Leona Lewis - I'm You - Karaoke Version from Zoom Karaoke", - "id": "Jn-uB_tUHZk" - }, - { - "title": "The Bachelors - No Arms Can Ever Hold You - Karaoke Version from Zoom Karaoke", - "id": "J4CEyBr2tPQ" - }, - { - "title": "Herman's Hermits - No Milk Today - Karaoke Version from Zoom Karaoke", - "id": "FO8IJuRlulg" - }, - { - "title": "Leona Lewis - The Best You Never Had - Karaoke Version from Zoom Karaoke", - "id": "9zok8Hf1LkY" - }, - { - "title": "Leona Lewis - Footprints In The Sand - Karaoke Version from Zoom Karaoke", - "id": "95KCf75gBNo" - }, - { - "title": "The Kinks - Days - Karaoke Version from Zoom Karaoke", - "id": "1N-AQZSAWj8" - }, - { - "title": "Leona Lewis - Homeless - Karaoke Version from Zoom Karaoke", - "id": "0w2EBzI15hQ" - }, - { - "title": "Herman's Hermits - Listen People - Karaoke Version from Zoom Karaoke", - "id": "yzsstpi8pKU" - }, - { - "title": "Herman's Hermits - Sleepy Joe - Karaoke Version from Zoom Karaoke", - "id": "v8qdYMdQfRA" - }, - { - "title": "Herman's Hermits - Years May Come, Years May Go - Karaoke Version from Zoom Karaoke", - "id": "elv-SXEDrn4" - }, - { - "title": "Herman's Hermits - Wonderful World - Karaoke Version from Zoom Karaoke", - "id": "yvkQf_xrv3Q" - }, - { - "title": "Georgie Fame & The Blue Flames - Yeh Yeh - Karaoke Version from Zoom Karaoke", - "id": "xAzjkwgDq0o" - }, - { - "title": "Oasis - Live Forever - Karaoke Version from Zoom Karaoke", - "id": "vxzRwUHyAY4" - }, - { - "title": "Sam Cooke - Twistin' The Night Away - Karaoke Version from Zoom Karaoke", - "id": "vpj5WbDVcyo" - }, - { - "title": "Cilla Black - Love Of The Loved - Karaoke Version from Zoom Karaoke", - "id": "j7_97GkPQx8" - }, - { - "title": "Dean Friedman - Lucky Stars (Duet) - Karaoke Version from Zoom Karaoke", - "id": "hb7W79rNKuE" - }, - { - "title": "Leon Jackson - When You Believe - Karaoke Version from Zoom Karaoke", - "id": "_XA9rgEmDYs" - }, - { - "title": "Herman's Hermits - Something's Happening - Karaoke Version from Zoom Karaoke", - "id": "Nihh1fqPxGM" - }, - { - "title": "Leona Lewis - Better In Time - Karaoke Version from Zoom Karaoke", - "id": "EhyLN-HXG6E" - }, - { - "title": "Dean Friedman - Lucky Stars (Male Solo) - Karaoke Version from Zoom Karaoke", - "id": "61Axpv92J44" - }, - { - "title": "Oasis - Roll With It - Karaoke Version from Zoom Karaoke", - "id": "5qMcwVODFVw" - }, - { - "title": "Pat Boone - Speedy Gonzales (Boone And Mexican Girl Vocals) - Karaoke Version from Zoom Karaoke", - "id": "ZgX5MebL0ho" - }, - { - "title": "Oasis - Champagne Supernova - Karaoke Version from Zoom Karaoke", - "id": "QEpaOvdSeMM" - }, - { - "title": "Herman's Hermits - Sunshine Girl - Karaoke Version from Zoom Karaoke", - "id": "98-y2iA1ByE" - }, - { - "title": "Leann Rimes - How Do I Live - Karaoke Version from Zoom Karaoke", - "id": "alSigM3UGYI" - }, - { - "title": "Robbie Williams - Jesus In A Camper Van - Karaoke Version from Zoom Karaoke", - "id": "V0yai-69LTE" - }, - { - "title": "Sugababes - Push The Button - Karaoke Version from Zoom Karaoke", - "id": "u1_31GsZ9b4" - }, - { - "title": "Elvis Presley - Little Sister - Karaoke Version from Zoom Karaoke", - "id": "sDjAM-ROQPU" - }, - { - "title": "Aswad - Need Your Love (Each And Every Day) - Karaoke Version from Zoom Karaoke", - "id": "o5Nyjkhe-lo" - }, - { - "title": "Pat Boone - Speedy Gonzales (Boone Vocal Only) - Karaoke Version from Zoom Karaoke", - "id": "o-QNishnn0A" - }, - { - "title": "R Dean Taylor - Gotta See Jane - Karaoke Version from Zoom Karaoke", - "id": "jWgVHKOY2Ws" - }, - { - "title": "R Dean Taylor - Indiana Wants Me - Karaoke Version from Zoom Karaoke", - "id": "gx4Ofb_djNg" - }, - { - "title": "Girls Aloud - Something Kinda Oooh - Karaoke Version from Zoom Karaoke", - "id": "CE4zF5T13fE" - }, - { - "title": "Aswad - I Need Your Love - Karaoke Version from Zoom Karaoke", - "id": "C4zmq-3byE4" - }, - { - "title": "Elvis Presley - A Fool Such As I - Karaoke Version from Zoom Karaoke", - "id": "80Ru_4xtbfk" - }, - { - "title": "Sinead O'Connor - Nothing Compares 2 U - Karaoke Version from Zoom Karaoke", - "id": "E_eE3qrnkVs" - }, - { - "title": "Rednex - Cotton Eye Joe (Duet) - Karaoke Version from Zoom Karaoke", - "id": "7Jg6loXg5y4" - }, - { - "title": "Pat Boone - Speedy Gonzales (Boone & Speedy Vocals) - Karaoke Version from Zoom Karaoke", - "id": "2Lj1fB6r0UE" - }, - { - "title": "Oasis - Don't Look Back In Anger - Karaoke Version from Zoom Karaoke", - "id": "sQ6LePZ5cOY" - }, - { - "title": "Rednex - Cotton Eye Joe (Male Solo) - Karaoke Version from Zoom Karaoke", - "id": "j_C74M-Y5mM" - }, - { - "title": "Oasis - Stand By Me - Karaoke Version from Zoom Karaoke", - "id": "hn-PYK3QBsg" - }, - { - "title": "Elvis Presley - I Got Stung - Karaoke Version from Zoom Karaoke", - "id": "STda8g_zajw" - }, - { - "title": "Elvis Presley - Are You Lonesome Tonight - Karaoke Version from Zoom Karaoke", - "id": "KvP6MwJ2iug" - }, - { - "title": "Celine Dion - Think Twice - Karaoke Version from Zoom Karaoke", - "id": "5j4cWXILFZ4" - }, - { - "title": "Oasis - Whatever - Karaoke Version from Zoom Karaoke", - "id": "2OCJ8jW9Ih8" - }, - { - "title": "Elvis Presley - All Shook Up - Karaoke Version from Zoom Karaoke", - "id": "1eoOs_dDgC4" - }, - { - "title": "Girls Aloud - Wake Me Up - Karaoke Version from Zoom Karaoke", - "id": "-bjZrqdwYc8" - }, - { - "title": "All I Want For Christmas Is My Two Front Teeth - Karaoke Version from Zoom Karaoke", - "id": "YVVXT7sHkCA" - }, - { - "title": "Sugababes - About You Now - Karaoke Version from Zoom Karaoke", - "id": "ulnrX9slyBQ" - }, - { - "title": "Olivia Newton-John - Long Live Love - Karaoke Version from Zoom Karaoke", - "id": "pzioN5GkbaA" - }, - { - "title": "Girls Aloud - Call The Shots - Karaoke Version from Zoom Karaoke", - "id": "f4uDDAkD144" - }, - { - "title": "Olivia Newton-John And Cliff Richard - Suddenly - Karaoke Version from Zoom Karaoke", - "id": "DqCztXVd7v0" - }, - { - "title": "Duffy - Mercy - Karaoke Version from Zoom Karaoke", - "id": "8xUQNbM1hVQ" - }, - { - "title": "Olivia Newton-John - Have You Never Been Mellow - Karaoke Version from Zoom Karaoke", - "id": "7JkC-GXXLm4" - }, - { - "title": "Olivia Newton-John And Electric Light Orchestra - Xanadu - Karaoke Version from Zoom Karaoke", - "id": "-CvKr0TXNVI" - }, - { - "title": "Olivia Newton-John - Sam - Karaoke Version from Zoom Karaoke", - "id": "-6u2j4mYUMA" - }, - { - "title": "Chic - I Want Your Love - Karaoke Version from Zoom Karaoke", - "id": "_nSAdzyb0Fg" - }, - { - "title": "Aretha Franklin - I Say A Little Prayer - Karaoke Version from Zoom Karaoke", - "id": "KloyG89mIiA" - }, - { - "title": "David Bowie - Life On Mars - Karaoke Version from Zoom Karaoke", - "id": "7q8PGq5ogbg" - }, - { - "title": "Panic At The Disco - Nine In The Afternoon - Karaoke Version from Zoom Karaoke", - "id": "YT7HrDG7f2c" - }, - { - "title": "David Bowie - Starman - Karaoke Version from Zoom Karaoke", - "id": "OsqdyOJH7ug" - }, - { - "title": "Sweet - Ballroom Blitz - Karaoke Version from Zoom Karaoke", - "id": "KQY8P3mb7ZI" - }, - { - "title": "The Jackson 5 - Blame It On The Boogie - Karaoke Version from Zoom Karaoke", - "id": "Ju-8C5IdXUA" - }, - { - "title": "The Nolans - I'm In The Mood For Dancing - Karaoke Version from Zoom Karaoke", - "id": "IhwzurmIIHs" - }, - { - "title": "KC & The Sunshine Band - That's The Way (I Like It) - Karaoke Version from Zoom Karaoke", - "id": "H9KxuLHp4iM" - }, - { - "title": "Sister Sledge - He's The Greatest Dancer - Karaoke Version from Zoom Karaoke", - "id": "EIN3_AohOcc" - }, - { - "title": "Alvin Stardust - Jealous Mind - Karaoke Version from Zoom Karaoke", - "id": "DvcOYriL1JI" - }, - { - "title": "David Bowie - The Jean Genie - Karaoke Version from Zoom Karaoke", - "id": "DvLDdrzdw64" - }, - { - "title": "Estelle feat Kanye West - American Boy (With Rapper) - Karaoke Version from Zoom Karaoke", - "id": "BWsfz08I1Sk" - }, - { - "title": "Tavares - More Than A Woman - Karaoke Version from Zoom Karaoke", - "id": "3vVRbbBvtYk" - }, - { - "title": "The Trammps - Disco Inferno - Karaoke Version from Zoom Karaoke", - "id": "7re_S7Fu7eM" - }, - { - "title": "David Bowie - Space Oddity - Karaoke Version from Zoom Karaoke", - "id": "uxdNTbByADU" - }, - { - "title": "Barry White - Can't Get Enough Of Your Love Babe - Karaoke Version from Zoom Karaoke", - "id": "tb9sv0akcHU" - }, - { - "title": "David Bowie - Heroes - Karaoke Version from Zoom Karaoke", - "id": "qwybfq4JmXk" - }, - { - "title": "Sam Sparro - Black And Gold - Karaoke Version from Zoom Karaoke", - "id": "lcpb7Wzr-X8" - }, - { - "title": "Shirley Bassey - When You Smile - Karaoke Version from Zoom Karaoke", - "id": "jMKSmp1hKso" - }, - { - "title": "Marmalade - Lovin' Things - Karaoke Version from Zoom Karaoke", - "id": "h_DDpEQ9Kak" - }, - { - "title": "Shalamar - A Night To Remember - Karaoke Version from Zoom Karaoke", - "id": "TsgYCC182GA" - }, - { - "title": "Duffy - Syrup And Honey - Karaoke Version from Zoom Karaoke", - "id": "TrJDd9c9pcE" - }, - { - "title": "Gloria Gaynor - Never Can Say Goodbye - Karaoke Version from Zoom Karaoke", - "id": "R2seFz8KMoQ" - }, - { - "title": "Tavares - Don't Take Away The Music - Karaoke Version from Zoom Karaoke", - "id": "NZqtJBaBugg" - }, - { - "title": "Duffy - Rockferry - Karaoke Version from Zoom Karaoke", - "id": "Ltd6aLcvyoo" - }, - { - "title": "Alphabeat - Fascination - Karaoke Version from Zoom Karaoke", - "id": "58cAuSvENpY" - }, - { - "title": "The Real Thing - Can't Get By Without You - Karaoke Version from Zoom Karaoke", - "id": "-Q3l2qBA1-U" - }, - { - "title": "Jam - The Eton Rifles - Karaoke Version from Zoom Karaoke", - "id": "phvY6nmH6YE" - }, - { - "title": "Joe Dolan - Teresa - Karaoke Version from Zoom Karaoke", - "id": "OgXumNTYYmo" - }, - { - "title": "Gloria Gaynor - I Am What I Am - Karaoke Version from Zoom Karaoke", - "id": "z5MkhZ2dTB4" - }, - { - "title": "McFadden And Whitehead - Ain't No Stopping Us Now - Karaoke Version from Zoom Karaoke", - "id": "mslLxNuKIkY" - }, - { - "title": "The Turtles - Happy Together - Karaoke Version from Zoom Karaoke", - "id": "d0lqH0-bH7s" - }, - { - "title": "Hues Corporation - Rock The Boat - Karaoke Version from Zoom Karaoke", - "id": "ZswrlsKamFw" - }, - { - "title": "Chic - Good Times - Karaoke Version from Zoom Karaoke", - "id": "Vbp1m8ND8sY" - }, - { - "title": "Yvonne Elliman - If I Can't Have You - Karaoke Version from Zoom Karaoke", - "id": "VQXC_HA1J6Q" - }, - { - "title": "Sugababes - Denial - Karaoke Version from Zoom Karaoke", - "id": "U-tOHQp_I84" - }, - { - "title": "Dolly Parton - Here You Come Again - Karaoke Version from Zoom Karaoke", - "id": "KuJjDDYYqbU" - }, - { - "title": "Duran Duran - Hungry Like The Wolf - Karaoke Version from Zoom Karaoke", - "id": "KDt6NGVXE-w" - }, - { - "title": "Dolly Parton - Coat Of Many Colours - Karaoke Version from Zoom Karaoke", - "id": "upUkG2LUMW4" - }, - { - "title": "Love Affair - Everlasting Love - Karaoke Version from Zoom Karaoke", - "id": "rd7VA7xtvbU" - }, - { - "title": "Timi Yuro - Hurt - Karaoke Version from Zoom Karaoke", - "id": "oJTS4YwghhQ" - }, - { - "title": "Joe Jackson - Is She Really Going Out With Him - Karaoke Version from Zoom Karaoke", - "id": "ji5aYCnJkgQ" - }, - { - "title": "Chic - Everybody Dance - Karaoke Version from Zoom Karaoke", - "id": "g33NIK6Fsfs" - }, - { - "title": "Duran Duran - Rio - Karaoke Version from Zoom Karaoke", - "id": "fXUj_Mk29Zk" - }, - { - "title": "The Hollies - He Ain't Heavy, He's My Brother - Karaoke Version from Zoom Karaoke", - "id": "ddkUCg-X6FY" - }, - { - "title": "Jilted John - Jilted John - Karaoke Version from Zoom Karaoke", - "id": "d2rWfbRynps" - }, - { - "title": "Tammy Wynette - Your Good Girl's Gonna Go Bad - Karaoke Version from Zoom Karaoke", - "id": "_VlTEo0pQmM" - }, - { - "title": "Jam - That's Entertainment - Karaoke Version from Zoom Karaoke", - "id": "ZBElmqNrIrs" - }, - { - "title": "Adam & The Ants - Ant Music - Karaoke Version from Zoom Karaoke", - "id": "PP0-P2FEoEU" - }, - { - "title": "Duffy - Warwick Avenue - Karaoke Version from Zoom Karaoke", - "id": "JylqnSSR3MU" - }, - { - "title": "Tenpole Tudor - Swords Of A Thousand Men - Karaoke Version from Zoom Karaoke", - "id": "JQTxhZA5MuQ" - }, - { - "title": "Andrea True Connection - More More More - Karaoke Version from Zoom Karaoke", - "id": "HuKeOhkLZ7Y" - }, - { - "title": "Amy Winehouse - Me And Mr Jones - Karaoke Version from Zoom Karaoke", - "id": "Co7sxfr42Ng" - }, - { - "title": "The Fortunes - Caroline - Karaoke Version from Zoom Karaoke", - "id": "AX_ckzDkYKo" - }, - { - "title": "Amy Winehouse - Wake Up Alone - Karaoke Version from Zoom Karaoke", - "id": "7VVFPjRYc_E" - }, - { - "title": "Heatwave - Boogie Nights - Karaoke Version from Zoom Karaoke", - "id": "6psfNNCfHwo" - }, - { - "title": "The Fortunes - Here Comes That Rainy Day Feeling Again - Karaoke Version from Zoom Karaoke", - "id": "1HFQorAFTaQ" - }, - { - "title": "Kylie Minogue - Wow - Karaoke Version from Zoom Karaoke", - "id": "z9KNBzEST_U" - }, - { - "title": "Amy Winehouse - He Can Only Hold Her - Karaoke Version from Zoom Karaoke", - "id": "h_ndpFwIOVg" - }, - { - "title": "Billy J Kramer & The Dakotas - Trains And Boats And Planes (No Harmony) - Karaoke Version", - "id": "G-yd7UzRM1c" - }, - { - "title": "Crispian St Peters - Pied Piper - Karaoke Version from Zoom Karaoke", - "id": "_PWgWxyQcgg" - }, - { - "title": "Amy Winehouse - Cupid - Karaoke Version from Zoom Karaoke", - "id": "oRKlFeHEXZo" - }, - { - "title": "The Equals - Baby Come Back - Karaoke Version from Zoom Karaoke", - "id": "jipQ1k2QZ38" - }, - { - "title": "Peter Sarstedt - Where Do You Go To (My Lovely) - Karaoke Version from Zoom Karaoke", - "id": "2n86O-ZuUNI" - }, - { - "title": "Olivia Newton-John - Banks Of The Ohio - Karaoke Version from Zoom Karaoke", - "id": "cTOJH75jh7s" - }, - { - "title": "Amy Winehouse - Addicted - Karaoke Version from Zoom Karaoke", - "id": "XS3jDq73SNg" - }, - { - "title": "Eddie Cochran - Weekend - Karaoke Version from Zoom Karaoke", - "id": "StrWQB5F_1A" - }, - { - "title": "Olivia Newton-John - Magic - Karaoke Version from Zoom Karaoke", - "id": "Nu1YGPtgPkw" - }, - { - "title": "Amen Corner - Bend Me, Shape Me - Karaoke Version from Zoom Karaoke", - "id": "BJ_WhtMGvq4" - }, - { - "title": "Olivia Newton-John - A Little More Love - Karaoke Version from Zoom Karaoke", - "id": "4hM0SYNmmqA" - }, - { - "title": "Olivia Newton-John - Physical - Karaoke Version from Zoom Karaoke", - "id": "-qRJDT4ISBg" - }, - { - "title": "Amy Winehouse - Tears Dry On Their Own - Karaoke Version from Zoom Karaoke", - "id": "v-MjDJk8ZP0" - }, - { - "title": "Bodies Without Organs (BWO) - Sunshine In The Rain - Karaoke Version from Zoom Karaoke", - "id": "5fIjsHv8Cag" - }, - { - "title": "Mary Hopkin - Those Were The Days - Karaoke Version from Zoom Karaoke", - "id": "G_xH9Uk3ziQ" - }, - { - "title": "Johnny Cash - One Piece At A Time - Karaoke Version from Zoom Karaoke", - "id": "DD1AoxyWkI0" - }, - { - "title": "Joe Jackson - Steppin' Out - Karaoke Version from Zoom Karaoke", - "id": "2U6G6SyKJpo" - }, - { - "title": "Amy Winehouse - Love Is A Losing Game - Karaoke Version from Zoom Karaoke", - "id": "K-vt9clg2tA" - }, - { - "title": "Scouting For Girls - Elvis Ain't Dead - Karaoke Version from Zoom Karaoke", - "id": "z3kBUkzKzl0" - }, - { - "title": "Olivia Newton-John - Take Me Home Country Roads - Karaoke Version from Zoom Karaoke", - "id": "fjhVRIfKDeA" - }, - { - "title": "Amy Winehouse - Rehab - Karaoke Version from Zoom Karaoke", - "id": "TgOPJKg3u2s" - }, - { - "title": "Thunderclap Newman - Something In The Air - Karaoke Version from Zoom Karaoke", - "id": "04y04csMyLI" - }, - { - "title": "Chris Montez - The More I See You - Karaoke Version from Zoom Karaoke", - "id": "y9vce8QF3B0" - }, - { - "title": "The Scaffold - Lily The Pink - Karaoke Version from Zoom Karaoke", - "id": "UEi2riJn1wA" - }, - { - "title": "Amy Macdonald - Mr Rock And Roll - Karaoke Version from Zoom Karaoke", - "id": "U4nTLlAKKU8" - }, - { - "title": "Amy Winehouse - Just Friends - Karaoke Version from Zoom Karaoke", - "id": "yM7466E_9R0" - }, - { - "title": "Billy J Kramer & The Dakotas - Trains And Boats And Planes (With Harmony) - Karaoke Version", - "id": "vqzm7waqPeI" - }, - { - "title": "Nickelback - Rockstar - Karaoke Version from Zoom Karaoke", - "id": "TFP3ueGAyoM" - }, - { - "title": "Dua Lipa feat. DaBaby - Levitating - Karaoke Version from Zoom Karaoke", - "id": "Ef2BsTEcN3Y" - }, - { - "title": "Dua Lipa - Levitating - Karaoke Version from Zoom Karaoke", - "id": "gNhsrppUwhQ" - }, - { - "title": "Becky Hill - Forever Young (McDonald's TV Advert Song) - Karaoke Version from Zoom Karaoke", - "id": "J8csL6oooo4" - }, - { - "title": "Bread - Baby I'm-A Want You - Karaoke Version from Zoom Karaoke", - "id": "fJYpe9Fls5s" - }, - { - "title": "Marvin Gaye And Kim Weston - It Takes Two - Karaoke Version from Zoom Karaoke", - "id": "ukw_hUCwMC8" - }, - { - "title": "The Feeling - Join With Us - Karaoke Version from Zoom Karaoke", - "id": "QNBSmM_bx-w" - }, - { - "title": "High School Musical 3 - Just Getting Started (Without Female Lead) - Karaoke Version", - "id": "NuPSq5x8rHA" - }, - { - "title": "High School Musical 3 - Just Wanna Be With You - Karaoke Version from Zoom Karaoke", - "id": "I_QoHI9dSwk" - }, - { - "title": "Bread - The Guitar Man - Karaoke Version from Zoom Karaoke", - "id": "H8XnEFmPXxI" - }, - { - "title": "Mamas And The Papas - Monday Monday - Karaoke Version from Zoom Karaoke", - "id": "5AbGavbsoNk" - }, - { - "title": "High School Musical 3 - Just Getting Started - Karaoke Version from Zoom Karaoke", - "id": "29rE-mAm6l4" - }, - { - "title": "Bread - Everything I Own - Karaoke Version from Zoom Karaoke", - "id": "vgyKp6lpkKM" - }, - { - "title": "Joe Cocker And Jennifer Warnes - Up Where We Belong - Karaoke Version from Zoom Karaoke", - "id": "gmMnSx2V8as" - }, - { - "title": "Bill Medley And Jennifer Warnes - (I've Had) The Time Of My Life - Karaoke Version from Zoom Karaoke", - "id": "bPCNwfUxNKU" - }, - { - "title": "The Script - The Man Who Can't Be Moved - Karaoke Version from Zoom Karaoke", - "id": "YoDFnSEbkgI" - }, - { - "title": "Marvin Gaye And Diana Ross - You Are Everything - Karaoke Version from Zoom Karaoke", - "id": "ScU2bB_4HGc" - }, - { - "title": "Johnny Mathis And Deniece Williams - Too Much Too Little Too Late - Karaoke Version", - "id": "FxeU0mouEiQ" - }, - { - "title": "Leo Sayer - Moonlighting - Karaoke Version from Zoom Karaoke", - "id": "gWQZ7UQSmwQ" - }, - { - "title": "Marmalade - Ob-La-Di, Ob-La-Da - Karaoke Version from Zoom Karaoke", - "id": "XXPiV-8Odj4" - }, - { - "title": "Pink - So What - Karaoke Version from Zoom Karaoke", - "id": "WXHNchIPUU4" - }, - { - "title": "10cc - Donna - Karaoke Version from Zoom Karaoke", - "id": "PXyzpeYOpT8" - }, - { - "title": "Kid Rock - All Summer Long - Karaoke Version from Zoom Karaoke", - "id": "UMClbqCA-JE" - }, - { - "title": "Glasvegas - Daddy's Gone - Karaoke Version from Zoom Karaoke", - "id": "Qrkwyeh8-lk" - }, - { - "title": "The Damned - Eloise - Karaoke Version from Zoom Karaoke", - "id": "cCkQOMEtN5U" - }, - { - "title": "Rihanna - Disturbia - Karaoke Version from Zoom Karaoke", - "id": "n8i2xc28QzE" - }, - { - "title": "The Four Seasons - Who Loves You - Karaoke Version from Zoom Karaoke", - "id": "nBgi0J64Keo" - }, - { - "title": "Deacon Blue - Real Gone Kid (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "V-xs6NuSfq0" - }, - { - "title": "Gilbert O'Sullivan - No Matter How I Try - Karaoke Version from Zoom Karaoke", - "id": "50Q4ZfWTC8s" - }, - { - "title": "Kings Of Leon - Sex On Fire - Karaoke Version from Zoom Karaoke", - "id": "zlGUSbzLJoc" - }, - { - "title": "Leo Sayer - One Man Band - Karaoke Version from Zoom Karaoke", - "id": "yeV1tUNVHPo" - }, - { - "title": "Journey - Don't Stop Believin' - Karaoke Version from Zoom Karaoke", - "id": "gzsSSqAN-jI" - }, - { - "title": "10cc - The Things We Do For Love - Karaoke Version from Zoom Karaoke", - "id": "CDrKwF22rCs" - }, - { - "title": "Gilbert O'Sullivan - Alone Again (Naturally) - Karaoke Version from Zoom Karaoke", - "id": "qts-VWiwklk" - }, - { - "title": "Reo Speedwagon - Can't Fight This Feeling (Minus Piano) - Karaoke Version from Zoom Karaoke", - "id": "-NbR6uzkUtM" - }, - { - "title": "Love Affair - Bringing On Back The Good Times - Karaoke Version from Zoom Karaoke", - "id": "zKxoyTGr9k4" - }, - { - "title": "Bruce Springsteen - Dancing In The Dark - Karaoke Version from Zoom Karaoke", - "id": "xv08o27_Nkw" - }, - { - "title": "Bruce Springsteen - Born In The U.S.A. - Karaoke Version from Zoom Karaoke", - "id": "fXMkeUpRzhM" - }, - { - "title": "Love Affair - A Day Without Love - Karaoke Version from Zoom Karaoke", - "id": "R44I-lerh4c" - }, - { - "title": "Gabriella Cilmi - Sweet About Me - Karaoke Version from Zoom Karaoke", - "id": "Fct513jZx2w" - }, - { - "title": "Junior Campbell - Hallelujah Freedom - Karaoke Version from Zoom Karaoke", - "id": "4Mv68j7NdkA" - }, - { - "title": "Lesley Gore - It's My Party - Karaoke Version from Zoom Karaoke", - "id": "391KET77Esc" - }, - { - "title": "The Proclaimers - Life With You (No Harmonies) - Karaoke Version from Zoom Karaoke", - "id": "-R-yhRmxN18" - }, - { - "title": "The Feeling - Turn It Up - Karaoke Version from Zoom Karaoke", - "id": "vtiN144_Ggs" - }, - { - "title": "Thin Lizzy - The Boys Are Back In Town - Karaoke Version from Zoom Karaoke", - "id": "s-E4BickXts" - }, - { - "title": "The Walker Brothers - The Sun Ain't Gonna Shine Anymore - Karaoke Version from Zoom Karaok", - "id": "lMBfwQgi9ZU" - }, - { - "title": "Deacon Blue - Real Gone Kid - Karaoke Version from Zoom Karaoke", - "id": "kesdUYOqp-c" - }, - { - "title": "Kiss - Crazy Crazy Nights - Karaoke Version from Zoom Karaoke", - "id": "_GVgrtl7IsQ" - }, - { - "title": "Genesis - Invisible Touch - Karaoke Version from Zoom Karaoke", - "id": "bfNG-xNAKVI" - }, - { - "title": "The Crickets - Don't Ever Change (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "uYubHCjIhps" - }, - { - "title": "Steve Winwood - Valerie - Karaoke Version from Zoom Karaoke", - "id": "Zy14WBH__no" - }, - { - "title": "Reo Speedwagon - Can't Fight This Feeling - Karaoke Version from Zoom Karaoke", - "id": "Vj3jvQrmM8Q" - }, - { - "title": "Ram Jam - Black Betty - Karaoke Version from Zoom Karaoke", - "id": "RNEHRD7Rx_g" - }, - { - "title": "Katy Perry - I Kissed A Girl - Karaoke Version from Zoom Karaoke", - "id": "QqVwg7o9YOU" - }, - { - "title": "Diana Ross - I'm Coming Out - Karaoke Version from Zoom Karaoke", - "id": "QqBuHZLSV0k" - }, - { - "title": "The Steve Miller Band - The Joker - Karaoke Version from Zoom Karaoke", - "id": "Pzl5uUpfi_s" - }, - { - "title": "Peter Frampton - Show Me The Way - Karaoke Version from Zoom Karaoke", - "id": "COXRBQizxc0" - }, - { - "title": "Starship - We Built This City - Karaoke Version from Zoom Karaoke", - "id": "801gwUB29ic" - }, - { - "title": "Southside Johnny & The Asbury Jukes - I Don't Want To Go Home - Karaoke Version from Zoom Karaoke", - "id": "7YZKvgDJM-0" - }, - { - "title": "Neil Diamond - Pretty Amazing Grace - Karaoke Version from Zoom Karaoke", - "id": "2hd6tEiHlRE" - }, - { - "title": "Deep Purple - Smoke On The Water - Karaoke Version from Zoom Karaoke", - "id": "0cnTapurs2Y" - }, - { - "title": "Toto - Hold The Line - Karaoke Version from Zoom Karaoke", - "id": "xVUCsFzBJpM" - }, - { - "title": "Boston - More Than A Feeling - Karaoke Version from Zoom Karaoke", - "id": "sg2GA3Omt4M" - }, - { - "title": "Lynne Hamilton - On The Inside (Theme From Prisoner Cell Block H) - Karaoke Version from Zoom", - "id": "sES61S1yzLA" - }, - { - "title": "Los Bravos - Black Is Black - Karaoke Version from Zoom Karaoke", - "id": "oo73vXttR5Y" - }, - { - "title": "Bad Company - Can't Get Enough Of Your Love - Karaoke Version from Zoom Karaoke", - "id": "iawpuIqbRuI" - }, - { - "title": "Roxy Music - Virginia Plain - Karaoke Version from Zoom Karaoke", - "id": "Yx32VR-IMjk" - }, - { - "title": "Roxy Music - Angel Eyes - Karaoke Version from Zoom Karaoke", - "id": "JAMh5LAd5tA" - }, - { - "title": "Duffy - Stepping Stone - Karaoke Version from Zoom Karaoke", - "id": "FsjeJ2hWVwo" - }, - { - "title": "The Crickets - Don't Ever Change (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "FYdtDbgNcN0" - }, - { - "title": "The Moody Blues - Nights In White Satin - Karaoke Version from Zoom Karaoke", - "id": "4JCt1y7U4Ow" - }, - { - "title": "Duffy - Serious - Karaoke Version from Zoom Karaoke", - "id": "3NE6ZN7E0rA" - }, - { - "title": "Odyssey - Going Back To My Roots - Karaoke Version from Zoom Karaoke", - "id": "dY_nkyDtuFs" - }, - { - "title": "Duffy - Delayed Devotion - Karaoke Version from Zoom Karaoke", - "id": "zNvl9y0UCMo" - }, - { - "title": "Dave Davies - Death Of A Clown - Karaoke Version from Zoom Karaoke", - "id": "ys37pqfq12s" - }, - { - "title": "Pink Floyd - Another Brick In The Wall (Part 2) - Karaoke Version from Zoom Karaoke", - "id": "wmiqBC8gDkI" - }, - { - "title": "The Kinks - Dead End Street - Karaoke Version from Zoom Karaoke", - "id": "vCKnBrIdqfY" - }, - { - "title": "Dave Berry - The Crying Game - Karaoke Version from Zoom Karaoke", - "id": "opkb5kROSF4" - }, - { - "title": "Rose Royce - Wishing On A Star - Karaoke Version from Zoom Karaoke", - "id": "eWejx6hlFJ0" - }, - { - "title": "Procol Harum - A Whiter Shade Of Pale - Karaoke Version from Zoom Karaoke", - "id": "ZI6ZieKTr8o" - }, - { - "title": "Duffy - Hanging On Too Long - Karaoke Version from Zoom Karaoke", - "id": "ZGhuK1uDvDo" - }, - { - "title": "Rainbow - Since You've Been Gone - Karaoke Version from Zoom Karaoke", - "id": "Z4kbx5CODbU" - }, - { - "title": "Petula Clark - Downtown - Karaoke Version from Zoom Karaoke", - "id": "RtuvwSX52NI" - }, - { - "title": "The Kinks - Autumn Almanac - Karaoke Version from Zoom Karaoke", - "id": "PMmktZY3SmQ" - }, - { - "title": "Steppenwolf - Born To Be Wild - Karaoke Version from Zoom Karaoke", - "id": "OFTSufv3k8c" - }, - { - "title": "Sweet - Little Willy - Karaoke Version from Zoom Karaoke", - "id": "EZNwpo-9jRg" - }, - { - "title": "Yes - Owner Of A Lonely Heart - Karaoke Version from Zoom Karaoke", - "id": "At_wOuz6BME" - }, - { - "title": "Duffy - Distant Dreamer - Karaoke Version from Zoom Karaoke", - "id": "745dh8oav34" - }, - { - "title": "Roxy Music - Dance Away - Karaoke Version from Zoom Karaoke", - "id": "5emkRlx_MSw" - }, - { - "title": "The Easybeats - Friday On My Mind - Karaoke Version from Zoom Karaoke", - "id": "1d5FcyYeqCo" - }, - { - "title": "Mott The Hoople - All The Young Dudes - Karaoke Version from Zoom Karaoke", - "id": "1WISX7YspHY" - }, - { - "title": "Fleetwood Mac - Crystal - Karaoke Version from Zoom Karaoke", - "id": "8YmFcLDxUZI" - }, - { - "title": "Tina Turner - Let's Stay Together - Karaoke Version from Zoom Karaoke", - "id": "w4fFwUTyzCw" - }, - { - "title": "Dodgy - Good Enough - Karaoke Version from Zoom Karaoke", - "id": "isv5mry6vFM" - }, - { - "title": "Take That - The Garden - Karaoke Version from Zoom Karaoke", - "id": "iKvZcRENSrI" - }, - { - "title": "Ocean Colour Scene - The Riverboat Song - Karaoke Version from Zoom Karaoke", - "id": "cuOi-StyMl8" - }, - { - "title": "The Hollies - The Air That I Breathe - Karaoke Version from Zoom Karaoke", - "id": "ZlGEPn8meas" - }, - { - "title": "Kings Of Leon - Use Somebody - Karaoke Version from Zoom Karaoke", - "id": "Z5rPmnR7oAk" - }, - { - "title": "Iggy Pop - Passenger - Karaoke Version from Zoom Karaoke", - "id": "LwKq1Pela8o" - }, - { - "title": "High School Musical 3 - A Night To Remember (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "G0UJG-79qgU" - }, - { - "title": "Take That - The Circus - Karaoke Version from Zoom Karaoke", - "id": "1Yl2MOkrdRU" - }, - { - "title": "Ash - Girl From Mars - Karaoke Version from Zoom Karaoke", - "id": "ilPDDWbf_XQ" - }, - { - "title": "Lily Allen - The Fear - Karaoke Version from Zoom Karaoke", - "id": "zhlXGH0l0NY" - }, - { - "title": "Inspiral Carpets - This Is How It Feels - Karaoke Version from Zoom Karaoke", - "id": "vEqaL8eJQ68" - }, - { - "title": "The Hollies - Bus Stop - Karaoke Version from Zoom Karaoke", - "id": "tbaO1M7o8HA" - }, - { - "title": "Dodgy - Staying Out For The Summer - Karaoke Version from Zoom Karaoke", - "id": "nTo0ZTyDZMY" - }, - { - "title": "Cyndi Lauper - Time After Time - Karaoke Version from Zoom Karaoke", - "id": "lC4CKByiypo" - }, - { - "title": "The Charlatans - The Only One I Know - Karaoke Version from Zoom Karaoke", - "id": "kKMBSBGxY2Y" - }, - { - "title": "Tina Turner - We Don't Need Another Hero - Karaoke Version from Zoom Karaoke", - "id": "gK7UBFf9JUw" - }, - { - "title": "The Clash - Rock The Casbah - Karaoke Version from Zoom Karaoke", - "id": "g7gcG498I2o" - }, - { - "title": "Take That - Hello - Karaoke Version from Zoom Karaoke", - "id": "dIVyEIi0QM0" - }, - { - "title": "Divinyls - I Touch Myself - Karaoke Version from Zoom Karaoke", - "id": "cqApmLE86mo" - }, - { - "title": "Take That - Said It All - Karaoke Version from Zoom Karaoke", - "id": "Lce6mTYjUpM" - }, - { - "title": "Fleetwood Mac - Sara - Karaoke Version from Zoom Karaoke", - "id": "KGF1GRxF6OM" - }, - { - "title": "The Human League - Open Your Heart - Karaoke Version from Zoom Karaoke", - "id": "IPBOFE6wm_I" - }, - { - "title": "Dean Martin - Little Ole Wine Drinker Me - Karaoke Version from Zoom Karaoke", - "id": "DMbpuUzEkCk" - }, - { - "title": "Tina Turner - The Best / Simply The Best - Karaoke Version from Zoom Karaoke", - "id": "97yLL4dRPjA" - }, - { - "title": "James - She's A Star - Karaoke Version from Zoom Karaoke", - "id": "8IzBnf3A684" - }, - { - "title": "Ocean Colour Scene - The Day We Caught The Train - Karaoke Version from Zoom Karaoke", - "id": "-rswpZz4eIg" - }, - { - "title": "INXS - Need You Tonight - Karaoke Version from Zoom Karaoke", - "id": "lAEK19wdFDE" - }, - { - "title": "Frank Sinatra - Come Fly With Me - Karaoke Version from Zoom Karaoke", - "id": "gGxfPY6jFCU" - }, - { - "title": "Dean Martin - Memories Are Made Of This - Karaoke Version from Zoom Karaoke", - "id": "UE5ym3RXtUc" - }, - { - "title": "Bobby Darin - Splish Splash - Karaoke Version from Zoom Karaoke", - "id": "P_tmQ0DizcM" - }, - { - "title": "Whitney Houston - The Greatest Love Of All - Karaoke Version from Zoom Karaoke", - "id": "OjfZsmHlIvE" - }, - { - "title": "Frank Sinatra - That's Life - Karaoke Version from Zoom Karaoke", - "id": "5XJ5zSk3QNA" - }, - { - "title": "Cyndi Lauper - I Drove All Night - Karaoke Version from Zoom Karaoke", - "id": "1m6KB5D4peI" - }, - { - "title": "Tina Turner - I Don't Wanna Lose You - Karaoke Version from Zoom Karaoke", - "id": "bKNJab_Exbk" - }, - { - "title": "Dean Martin - Everybody Loves Somebody - Karaoke Version from Zoom Karaoke", - "id": "6vxY4GTssSg" - }, - { - "title": "Dean Martin - Ain't That A Kick In The Head - Karaoke Version from Zoom Karaoke", - "id": "uW4aAxo2L0M" - }, - { - "title": "Pat Boone - Love Letters In The Sand - Karaoke Version from Zoom Karaoke", - "id": "x-dc3CANnl0" - }, - { - "title": "Dean Martin - That's Amore - Karaoke Version from Zoom Karaoke", - "id": "uFuuuk8jD60" - }, - { - "title": "Take That - Up All Night - Karaoke Version from Zoom Karaoke", - "id": "sPAJ9Tg16oI" - }, - { - "title": "Supergrass - Alright - Karaoke Version from Zoom Karaoke", - "id": "pbW-3EZGMGM" - }, - { - "title": "The Cure - Friday I'm In Love - Karaoke Version from Zoom Karaoke", - "id": "eNQE0n5_6pE" - }, - { - "title": "Blur - Parklife - Karaoke Version from Zoom Karaoke", - "id": "Xrl84HDEhkw" - }, - { - "title": "Frank Sinatra - New York, New York - Karaoke Version from Zoom Karaoke", - "id": "WnCCTMR4HXc" - }, - { - "title": "Transvision Vamp - Baby I Don't Care - Karaoke Version from Zoom Karaoke", - "id": "P5pvdDcy6Ko" - }, - { - "title": "Jennifer Hudson - Spotlight - Karaoke Version from Zoom Karaoke", - "id": "Je4FXFiO-b4" - }, - { - "title": "Tom Jones - If He Should Ever Leave You - Karaoke Version from Zoom Karaoke", - "id": "GtPQg-MedNA" - }, - { - "title": "Pat Boone - Remember You're Mine - Karaoke Version from Zoom Karaoke", - "id": "2ChgJaJd_Qk" - }, - { - "title": "Whitney Houston - One Moment In Time - Karaoke Version from Zoom Karaoke", - "id": "wIVwidQZgCE" - }, - { - "title": "Bobby Darin - Mack The Knife - Karaoke Version from Zoom Karaoke", - "id": "ujGR-v5e00E" - }, - { - "title": "Pat Boone - I'll Be Home - Karaoke Version from Zoom Karaoke", - "id": "SccvrP3s-5M" - }, - { - "title": "EMF - Unbelievable - Karaoke Version from Zoom Karaoke", - "id": "QBsw0w_0k5o" - }, - { - "title": "Blur - Girls And Boys - Karaoke Version from Zoom Karaoke", - "id": "FuovRBUagPQ" - }, - { - "title": "Simple Minds - Alive And Kicking - Karaoke Version from Zoom Karaoke", - "id": "DxrpcJ1yDWA" - }, - { - "title": "Pulp - Common People - Karaoke Version from Zoom Karaoke", - "id": "D39K0fcoEUs" - }, - { - "title": "Take That - How Did It Come To This - Karaoke Version from Zoom Karaoke", - "id": "2Q7AKCep62c" - }, - { - "title": "Frank Sinatra - Strangers In The Night - Karaoke Version from Zoom Karaoke", - "id": "z_HRgEBtv6o" - }, - { - "title": "Peter, Paul And Mary - Leaving On A Jet Plane - Karaoke Version from Zoom Karaoke", - "id": "qiXWn7dJIJs" - }, - { - "title": "Leona Lewis - Run - Karaoke Version from Zoom Karaoke", - "id": "n-TcaxJt3-k" - }, - { - "title": "The Walker Brothers - Make It Easy On Yourself - Karaoke Version from Zoom Karaoke", - "id": "bTU37tvS2ZE" - }, - { - "title": "Clarence 'Frogman' Henry - But I Do - Karaoke Version from Zoom Karaoke", - "id": "PVi3JasKyDk" - }, - { - "title": "Joe Brown & The Bruvvers - That's What Love Will Do - Karaoke Version from Zoom Karaoke", - "id": "Grh0hq2bLns" - }, - { - "title": "Bobby Darin - Beyond The Sea - Karaoke Version from Zoom Karaoke", - "id": "AoTn8FyTHAg" - }, - { - "title": "Gabriella Cilmi - Warm This Winter (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "8iJd-7p4PuY" - }, - { - "title": "Gabriella Cilmi - Warm This Winter (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "6OOhlBXMVdg" - }, - { - "title": "Leona Lewis - Forgive Me - Karaoke Version from Zoom Karaoke", - "id": "dSfxCZZkybY" - }, - { - "title": "White Plains - My Baby Loves Lovin' - Karaoke Version from Zoom Karaoke", - "id": "XnKSLCjjAOs" - }, - { - "title": "Joe Brown & The Bruvvers - It Only Took A Minute - Karaoke Version from Zoom Karaoke", - "id": "AzkanLFVDhs" - }, - { - "title": "Boyzone - Love You Anyway - Karaoke Version from Zoom Karaoke", - "id": "iuXkjVe3E6s" - }, - { - "title": "Duffy - Rain On Your Parade - Karaoke Version from Zoom Karaoke", - "id": "e7ZU2Wl5AK0" - }, - { - "title": "Marty Wilde - Bad Boy - Karaoke Version from Zoom Karaoke", - "id": "6IiFIO50WDk" - }, - { - "title": "Marty Wilde - Donna - Karaoke Version from Zoom Karaoke", - "id": "2mdpwkBFe8A" - }, - { - "title": "Mary MacGregor - Torn Between Two Lovers - Karaoke Version from Zoom Karaoke", - "id": "zqtFuXYioHY" - }, - { - "title": "High School Musical 3 - Right Here, Right Now - Karaoke Version from Zoom Karaoke", - "id": "xmaPi7DRcfU" - }, - { - "title": "Beyonce - If I Were A Boy - Karaoke Version from Zoom Karaoke", - "id": "uyuIDzGIA6o" - }, - { - "title": "Peaches And Herb - Reunited - Karaoke Version from Zoom Karaoke", - "id": "rumRWY_O8tI" - }, - { - "title": "The Killers - Human - Karaoke Version from Zoom Karaoke", - "id": "rip-TSrH5aw" - }, - { - "title": "Barry Blue - Dancing On A Saturday Night - Karaoke Version from Zoom Karaoke", - "id": "n1RSKzwr5iQ" - }, - { - "title": "Peter, Paul And Mary - Blowin' In The Wind (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "kT5Fj35LWrs" - }, - { - "title": "Will Young - Changes - Karaoke Version from Zoom Karaoke", - "id": "ec5a97OI8gQ" - }, - { - "title": "X Factor Finalists 2008 - Hero - Karaoke Version from Zoom Karaoke", - "id": "aH0jHHlRT7w" - }, - { - "title": "High School Musical 3 - Scream - Karaoke Version from Zoom Karaoke", - "id": "_-LaiIkQdGI" - }, - { - "title": "Alesha Dixon - The Boy Does Nothing - Karaoke Version from Zoom Karaoke", - "id": "YW8wQnfLBMY" - }, - { - "title": "Katy Perry - Hot N Cold - Karaoke Version from Zoom Karaoke", - "id": "XSVtIxd91H0" - }, - { - "title": "Millie - My Boy Lollipop - Karaoke Version from Zoom Karaoke", - "id": "VeiXJq93R4w" - }, - { - "title": "High School Musical 3 - Can I Have This Dance - Karaoke Version from Zoom Karaoke", - "id": "UADxPF9bIUw" - }, - { - "title": "Peter, Paul And Mary - If I Had A Hammer - Karaoke Version from Zoom Karaoke", - "id": "MMiWNWwb-yk" - }, - { - "title": "Marty Wilde - Sea Of Love - Karaoke Version from Zoom Karaoke", - "id": "ChcOIjmZg_8" - }, - { - "title": "Peter, Paul And Mary - Puff The Magic Dragon - Karaoke Version from Zoom Karaoke", - "id": "BxRu6KBl0nY" - }, - { - "title": "Girls Aloud - The Promise - Karaoke Version from Zoom Karaoke", - "id": "9DvGD__UwvI" - }, - { - "title": "Suzi Quatro And Chris Norman - Stumblin' In - Karaoke Version from Zoom Karaoke", - "id": "1doQJsPDGgA" - }, - { - "title": "Peter, Paul And Mary - Blowin' In The Wind - Karaoke Version from Zoom Karaoke", - "id": "1LNz6P713F8" - }, - { - "title": "Marty Wilde - Endless Sleep - Karaoke Version from Zoom Karaoke", - "id": "-M3HOjiGe_c" - }, - { - "title": "Deacon Blue - Fergus Sings The Blues - Karaoke Version from Zoom Karaoke", - "id": "xQWgCtHXz7A" - }, - { - "title": "The Housemartins - Caravan Of Love - Karaoke Version from Zoom Karaoke", - "id": "wcfV_I0l_Bg" - }, - { - "title": "Jim Reeves - He'll Have To Go - Karaoke Version from Zoom Karaoke", - "id": "d0mtlSpjsl4" - }, - { - "title": "Patrick Swayze - She's Like The Wind - Karaoke Version from Zoom Karaoke", - "id": "BsAkaoEPKb8" - }, - { - "title": "Deacon Blue - Wages Day - Karaoke Version from Zoom Karaoke", - "id": "-8V8sh1MqnE" - }, - { - "title": "Pixie Lott - Mama Do - Karaoke Version from Zoom Karaoke", - "id": "PmVzP3tfhGs" - }, - { - "title": "Jim Reeves - You're The Only Good Thing - Karaoke Version from Zoom Karaoke", - "id": "nzpPqy5QXXw" - }, - { - "title": "Lenka - The Show - Karaoke Version from Zoom Karaoke", - "id": "eJECqXSWh5Y" - }, - { - "title": "Tom Johnston - Where Are You Tonight - Karaoke Version from Zoom Karaoke", - "id": "aBV7O0Afk5Q" - }, - { - "title": "Jim Reeves - I Love You Because - Karaoke Version from Zoom Karaoke", - "id": "WEHOjNxjZmo" - }, - { - "title": "Lily Allen - 22 - Karaoke Version from Zoom Karaoke", - "id": "V4pHkHiCruA" - }, - { - "title": "Jim Reeves - Adios Amigo - Karaoke Version from Zoom Karaoke", - "id": "GSCIp87-B-0" - }, - { - "title": "Michael Jackson - Bad - Karaoke Version from Zoom Karaoke", - "id": "8SzItSUycHM" - }, - { - "title": "The Blow Monkeys - You Don't Own Me - Karaoke Version from Zoom Karaoke", - "id": "1dx3_4x-mBw" - }, - { - "title": "Deacon Blue - Dignity - Karaoke Version from Zoom Karaoke", - "id": "R-fhy2jfn-0" - }, - { - "title": "Jim Reeves - Welcome To My World - Karaoke Version from Zoom Karaoke", - "id": "QRgPsU0aotA" - }, - { - "title": "The Housemartins - Five Get Over Excited - Karaoke Version from Zoom Karaoke", - "id": "YOfZiIhC9m8" - }, - { - "title": "Deacon Blue - Chocolate Girl - Karaoke Version from Zoom Karaoke", - "id": "V_PS2Fc8bS4" - }, - { - "title": "Rose Marie - When Your Old Wedding Ring Was New - Karaoke Version from Zoom Karaoke", - "id": "dIZnYaCee-E" - }, - { - "title": "Lily Allen - Not Fair - Karaoke Version from Zoom Karaoke", - "id": "UezUGJSQA9Q" - }, - { - "title": "The Housemartins - Me And The Farmer - Karaoke Version from Zoom Karaoke", - "id": "87l6bi2f-q0" - }, - { - "title": "The Five Satins - In The Still Of The Night - Karaoke Version from Zoom Karaoke", - "id": "4-ft7JMf4r8" - }, - { - "title": "Solomon Burke - Cry To Me - Karaoke Version from Zoom Karaoke", - "id": "aCyVz8pR_Qg" - }, - { - "title": "La Roux - In For The Kill - Karaoke Version from Zoom Karaoke", - "id": "6LMCqOuo5QY" - }, - { - "title": "Barry McGuire - Eve Of Destruction - Karaoke Version from Zoom Karaoke", - "id": "RMThwza6kGI" - }, - { - "title": "Girls Aloud - Untouchable - Karaoke Version from Zoom Karaoke", - "id": "JNKdNh7fGe0" - }, - { - "title": "Paul Nicholas - Dancing With The Captain - Karaoke Version from Zoom Karaoke", - "id": "wnSHRI-UTGQ" - }, - { - "title": "Lady Gaga - Poker Face - Karaoke Version from Zoom Karaoke", - "id": "TXUjAt6SPU0" - }, - { - "title": "Beyonce - Halo - Karaoke Version from Zoom Karaoke", - "id": "qyXVyivJwWQ" - }, - { - "title": "Goodnight Campers from Hi-De-Hi - Karaoke Version from Zoom Karaoke", - "id": "k_KenQEuguw" - }, - { - "title": "Guys And Dolls - There's A Whole Lot Of Loving - Karaoke Version from Zoom Karaoke", - "id": "_W3iJBhVMB0" - }, - { - "title": "Tom Jones - Letter To Lucille - Karaoke Version from Zoom Karaoke", - "id": "VZLsF-c6Q7o" - }, - { - "title": "Daniel Merriweather - Red - Karaoke Version from Zoom Karaoke", - "id": "sLnTjjlgPHM" - }, - { - "title": "Mickey And Sylvia - Love Is Strange - Karaoke Version from Zoom Karaoke", - "id": "qgU5YXKtHKw" - }, - { - "title": "Ken Dodd - Tears (For Souvenirs) - Karaoke Version from Zoom Karaoke", - "id": "eHq-qYWKCuU" - }, - { - "title": "Fairground Attraction - Perfect - Karaoke Version from Zoom Karaoke", - "id": "RgHBgFcRfCQ" - }, - { - "title": "Lily Allen - Never Gonna Happen - Karaoke Version from Zoom Karaoke", - "id": "NKhR6mCi99Y" - }, - { - "title": "The Pearls - Guilty - Karaoke Version from Zoom Karaoke", - "id": "LRMLs5aXCGE" - }, - { - "title": "Merry Clayton - Yes - Karaoke Version from Zoom Karaoke", - "id": "JlfumklJ4bU" - }, - { - "title": "Eric Carmen - Hungry Eyes - Karaoke Version from Zoom Karaoke", - "id": "7EgN50vdo20" - }, - { - "title": "The Housemartins - Sheep - Karaoke Version from Zoom Karaoke", - "id": "5VPkbROLCSM" - }, - { - "title": "Max Bygraves - Tulips From Amsterdam - Karaoke Version from Zoom Karaoke", - "id": "iO-FA9ou4nA" - }, - { - "title": "High School Musical 3 - High School Musical (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "hAC2BnoN47w" - }, - { - "title": "Des O'Connor - One, Two, Three O'Leary - Karaoke Version from Zoom Karaoke", - "id": "aIz2cw3vl_U" - }, - { - "title": "Alesha Dixon - Breathe Slow - Karaoke Version from Zoom Karaoke", - "id": "Q1FrB7_F-7M" - }, - { - "title": "Take That - Hold Up A Light - Karaoke Version from Zoom Karaoke", - "id": "qGLjOWrhgfg" - }, - { - "title": "Kelly Clarkson - My Life Would Suck Without You - Karaoke Version from Zoom Karaoke", - "id": "oCmiw-mVUkY" - }, - { - "title": "Des O'Connor - Dick A Dum Dum (Kings Road) - Karaoke Version from Zoom Karaoke", - "id": "kcfV3WPTTRs" - }, - { - "title": "Max Bygraves - You Need Hands - Karaoke Version from Zoom Karaoke", - "id": "ivbZIYpo2kI" - }, - { - "title": "Rose Marie - The Answer To Everything - Karaoke Version from Zoom Karaoke", - "id": "fjSMxjXH4v4" - }, - { - "title": "High School Musical 3 - High School Musical - Karaoke Version from Zoom Karaoke", - "id": "cqOTjZaum1s" - }, - { - "title": "James Morrison And Nelly Furtado - Broken Strings - Karaoke Version from Zoom Karaoke", - "id": "UdToCaJEv-8" - }, - { - "title": "Noisettes - Don't Upset The Rhythm - Karaoke Version from Zoom Karaoke", - "id": "U0CFIJaVAPI" - }, - { - "title": "Mud - Show Me You're A Woman - Karaoke Version from Zoom Karaoke", - "id": "TPmSIQu3Xsg" - }, - { - "title": "Des O'Connor - Careless Hands - Karaoke Version from Zoom Karaoke", - "id": "EyHw1v3KhtY" - }, - { - "title": "Des O'Connor - I Pretend - Karaoke Version from Zoom Karaoke", - "id": "4D7Xduo0MjA" - }, - { - "title": "The Seashells - Maybe I Know - Karaoke Version from Zoom Karaoke", - "id": "1qMP1H_Ch84" - }, - { - "title": "Soft Cell - Say Hello Wave Goodbye (Almighty Radio Edit) - Karaoke Version from Zoom Karaoke", - "id": "CtyPhr1Y2w4" - }, - { - "title": "The Shadows - Let Me Be The One - Karaoke Version from Zoom Karaoke", - "id": "v395cp52RzA" - }, - { - "title": "Paul Anka - Diana - Karaoke Version from Zoom Karaoke", - "id": "pdG4LMvAl0A" - }, - { - "title": "Max Bygraves - Gilly Gilly Ossenfeffer Katzenellenbogen By The Sea - Karaoke Version", - "id": "p6DyHRsY6so" - }, - { - "title": "Matchbox - Rockabilly Rebel - Karaoke Version from Zoom Karaoke", - "id": "zsmZu9T-CJQ" - }, - { - "title": "Soft Cell - Say Hello Wave Goodbye - Karaoke Version from Zoom Karaoke", - "id": "zdH8wqHccog" - }, - { - "title": "The Human League - Love Action (I Believe In Love) - Karaoke Version from Zoom Karaoke", - "id": "uZUIjCEE6vs" - }, - { - "title": "Ken Dodd - Promises - Karaoke Version from Zoom Karaoke", - "id": "strGbuDFApo" - }, - { - "title": "Spandau Ballet - Through The Barricades - Karaoke Version from Zoom Karaoke", - "id": "nMNxNmlj-yk" - }, - { - "title": "Spandau Ballet - Only When You Leave - Karaoke Version from Zoom Karaoke", - "id": "mDE7u0SlTI8" - }, - { - "title": "The Human League - Keep Feeling Fascination (Duet) - Karaoke Version from Zoom Karaoke", - "id": "mBiGuxgNNEE" - }, - { - "title": "Ken Dodd - Happiness - Karaoke Version from Zoom Karaoke", - "id": "jpvsxQ-1XJE" - }, - { - "title": "Soft Cell - What - Karaoke Version from Zoom Karaoke", - "id": "iAOKxUBqH9w" - }, - { - "title": "Matchbox - Midnight Dynamos - Karaoke Version from Zoom Karaoke", - "id": "gYVwcSfAtgE" - }, - { - "title": "Johnny Cash - Guess Things Happen That Way - Karaoke Version from Zoom Karaoke", - "id": "fv8oVR-h4tc" - }, - { - "title": "Britney Spears - Womanizer - Karaoke Version from Zoom Karaoke", - "id": "e2fnLswGtdY" - }, - { - "title": "Soft Cell - Torch - Karaoke Version from Zoom Karaoke", - "id": "Zq_rGObk5VA" - }, - { - "title": "Soft Cell - Bedsitter - Karaoke Version from Zoom Karaoke", - "id": "WjZDFXOJrf0" - }, - { - "title": "Spandau Ballet - To Cut A Long Story Short - Karaoke Version from Zoom Karaoke", - "id": "SLTxY8OfNeg" - }, - { - "title": "Johnny Cash - Cry! Cry! Cry! - Karaoke Version from Zoom Karaoke", - "id": "QDkMS-l9phA" - }, - { - "title": "The Hollies - Listen To Me - Karaoke Version from Zoom Karaoke", - "id": "OQW69jPSMXE" - }, - { - "title": "Paul Anka - You Are My Destiny - Karaoke Version from Zoom Karaoke", - "id": "JAA3qfbgcNs" - }, - { - "title": "Max Bygraves - Fings Ain't Wot They Used To Be - Karaoke Version from Zoom Karaoke", - "id": "E8SjOx7NFa4" - }, - { - "title": "The Saturdays - Issues - Karaoke Version from Zoom Karaoke", - "id": "E2VH_8slKqI" - }, - { - "title": "Spandau Ballet - Through The Barricades (End Cut Down) - Karaoke Version from Zoom Karaoke", - "id": "DC-5ZgO8xZ4" - }, - { - "title": "Bob Monkhouse - You Rang M'Lord (Lead Part Only) - Karaoke Version from Zoom Karaoke", - "id": "2fCnpGW7pbQ" - }, - { - "title": "Paul Anka - Lonely Boy - Karaoke Version from Zoom Karaoke", - "id": "1qSbyTOUjvY" - }, - { - "title": "Bob Monkhouse And Paul Shane - You Rang M'Lord (For Two) - Karaoke Version from Zoom Karaoke", - "id": "1Bm4EwZHR4g" - }, - { - "title": "Paul Anka - Put Your Head On My Shoulder - Karaoke Version from Zoom Karaoke", - "id": "-TkAwArERNo" - }, - { - "title": "Celeste - A Little Love (John Lewis Christmas Advert 2020) - Karaoke Version from Zoom Karaoke", - "id": "LjMjFzHCibY" - }, - { - "title": "Alexandra Burke - Bad Boys (For Female Solo) - Karaoke Version from Zoom Karaoke", - "id": "zE1GrvTOPr0" - }, - { - "title": "Andy Williams - Music To Watch Girls By - Karaoke Version from Zoom Karaoke", - "id": "wiMgaOPF88Y" - }, - { - "title": "Mini Viva - Left My Heart In Tokyo - Karaoke Version from Zoom Karaoke", - "id": "oXvRHXz7okg" - }, - { - "title": "Dean Martin - Return To Me - Karaoke Version from Zoom Karaoke", - "id": "hmtdsaGiPg4" - }, - { - "title": "Dean Martin - Gentle On My Mind - Karaoke Version from Zoom Karaoke", - "id": "YafL9K_wzS0" - }, - { - "title": "Dean Martin - Let Me Go Lover - Karaoke Version from Zoom Karaoke", - "id": "Wj6QMLR6aMU" - }, - { - "title": "Dean Martin - Bumming Around - Karaoke Version from Zoom Karaoke", - "id": "CMDc1QdRGa8" - }, - { - "title": "Dean Martin - Volare - Karaoke Version from Zoom Karaoke", - "id": "-mnzm4j0Ix0" - }, - { - "title": "Pixie Lott - Boys And Girls - Karaoke Version from Zoom Karaoke", - "id": "8Id6vR2j7RE" - }, - { - "title": "Barry Manilow - I Write The Songs - Karaoke Version from Zoom Karaoke", - "id": "w2mzUH-Ryhs" - }, - { - "title": "Andy Williams - Moon River - Karaoke Version from Zoom Karaoke", - "id": "ZInV4afnivs" - }, - { - "title": "Matt Monro - If I Never Sing Another Song - Karaoke Version from Zoom Karaoke", - "id": "VRBO7PndZDQ" - }, - { - "title": "The Pretenders - Kid - Karaoke Version from Zoom Karaoke", - "id": "HpPEhyjRL_4" - }, - { - "title": "Andy Williams - Can't Get Used To Losing You - Karaoke Version from Zoom Karaoke", - "id": "2yAqHhxufK4" - }, - { - "title": "Barry Manilow - Could It Be Magic - Karaoke Version from Zoom Karaoke", - "id": "rQV3OG-3PqI" - }, - { - "title": "The Pretenders - Stop Your Sobbing - Karaoke Version from Zoom Karaoke", - "id": "aAPqP9Njq58" - }, - { - "title": "The Pretenders - I'll Stand By You - Karaoke Version from Zoom Karaoke", - "id": "VhdXW2Y5y5U" - }, - { - "title": "Barry Manilow - Can't Smile Without You - Karaoke Version from Zoom Karaoke", - "id": "H_tExtA8r4k" - }, - { - "title": "The Pretenders - Don't Get Me Wrong - Karaoke Version from Zoom Karaoke", - "id": "Ec8NmL9w4V4" - }, - { - "title": "Barry Manilow - Bermuda Triangle - Karaoke Version from Zoom Karaoke", - "id": "9SOJ5eRm75s" - }, - { - "title": "Andy Williams - On The Street Where You Live - Karaoke Version from Zoom Karaoke", - "id": "9Im7-M2-kak" - }, - { - "title": "The Pretenders - I Go To Sleep - Karaoke Version from Zoom Karaoke", - "id": "2GCWbLIQeoY" - }, - { - "title": "Barry Manilow - I Made It Through The Rain - Karaoke Version from Zoom Karaoke", - "id": "_oBWaLwLmS8" - }, - { - "title": "Robbie Williams - Bodies - Karaoke Version from Zoom Karaoke", - "id": "mDWps8GbIrs" - }, - { - "title": "The Tremeloes - Silence Is Golden - Karaoke Version from Zoom Karaoke", - "id": "P9oV6RkXNCA" - }, - { - "title": "Paolo Nutini - Candy - Karaoke Version from Zoom Karaoke", - "id": "zhJknkRzHDg" - }, - { - "title": "Leona Lewis - Happy - Karaoke Version from Zoom Karaoke", - "id": "xVxY6xi7oic" - }, - { - "title": "La Roux - I'm Not Your Toy - Karaoke Version from Zoom Karaoke", - "id": "hCk0Bg5tLcw" - }, - { - "title": "Barry Manilow - Mandy - Karaoke Version from Zoom Karaoke", - "id": "ZwVOVV0sWTM" - }, - { - "title": "Lady Gaga - Brown Eyes - Karaoke Version from Zoom Karaoke", - "id": "ZkVUYyBhn1k" - }, - { - "title": "Little Boots - Remedy - Karaoke Version from Zoom Karaoke", - "id": "YtIaNFNJnm4" - }, - { - "title": "Barry Manilow - Weekend In New England - Karaoke Version from Zoom Karaoke", - "id": "XioIHHx4VcA" - }, - { - "title": "Esmee Denters - Outta Here - Karaoke Version from Zoom Karaoke", - "id": "KOWqLKSrSSk" - }, - { - "title": "Noisettes - Wild Young Hearts - Karaoke Version from Zoom Karaoke", - "id": "I3KfgX20qcc" - }, - { - "title": "Lady Gaga - Disco Heaven - Karaoke Version from Zoom Karaoke", - "id": "ECNrX_W7KpM" - }, - { - "title": "Lady Gaga - Summerboy - Karaoke Version from Zoom Karaoke", - "id": "cnNaCfGKWQs" - }, - { - "title": "The Pretenders - Back On The Chain Gang - Karaoke Version from Zoom Karaoke", - "id": "uvijrEbnuLs" - }, - { - "title": "Engelbert Humperdinck - Spanish Eyes - Karaoke Version from Zoom Karaoke", - "id": "RVeO7rQZ0cY" - }, - { - "title": "Barry Manilow - One Voice - Karaoke Version from Zoom Karaoke", - "id": "FdAGYKtMI6M" - }, - { - "title": "Lady Gaga - Again Again - Karaoke Version from Zoom Karaoke", - "id": "_KsEXktT-Aw" - }, - { - "title": "Barry Manilow - I Wanna Do It With You - Karaoke Version from Zoom Karaoke", - "id": "ZF_HUdT-tKY" - }, - { - "title": "Engelbert Humperdinck - There Goes My Everything - Karaoke Version from Zoom Karaoke", - "id": "k9JhQ11Qz74" - }, - { - "title": "Lady Gaga - I Like It Rough - Karaoke Version from Zoom Karaoke", - "id": "m3du0eNBuCk" - }, - { - "title": "Engelbert Humperdinck - A Man Without Love - Karaoke Version from Zoom Karaoke", - "id": "h-ng6umCqCM" - }, - { - "title": "Engelbert Humperdinck - Winter World Of Love - Karaoke Version from Zoom Karaoke", - "id": "PgaHH6NbosA" - }, - { - "title": "Barry Manilow - Copacabana (At The Copa) - Karaoke Version from Zoom Karaoke", - "id": "H2v54GjhhmQ" - }, - { - "title": "Engelbert Humperdinck - The Way It Used To Be - Karaoke Version from Zoom Karaoke", - "id": "Ci9O5BVhKug" - }, - { - "title": "Barry Manilow - Even Now - Karaoke Version from Zoom Karaoke", - "id": "69fXWRNUy-0" - }, - { - "title": "Perry Como - Hot Diggity Dog Ziggity Boom - Karaoke Version from Zoom Karaoke", - "id": "rbvr2BJ4bj0" - }, - { - "title": "Lady Gaga - The Fame - Karaoke Version from Zoom Karaoke", - "id": "bZhKNlKqzbM" - }, - { - "title": "Simply Red - Fairground - Karaoke Version from Zoom Karaoke", - "id": "1xioiD5Gwow" - }, - { - "title": "The Righteous Brothers - You've Lost That Lovin' Feelin' (For Duo) - Karaoke Version", - "id": "lvoOEfdRBgc" - }, - { - "title": "Engelbert Humperdinck - Am I That Easy To Forget - Karaoke Version from Zoom Karaoke", - "id": "lbH64RsRFr4" - }, - { - "title": "Kings Of Leon - Notion - Karaoke Version from Zoom Karaoke", - "id": "jURVDh7Cd44" - }, - { - "title": "Simply Red - A New Flame - Karaoke Version from Zoom Karaoke", - "id": "hqvud8HLprc" - }, - { - "title": "Engelbert Humperdinck - Les Bicyclettes De Belsize - Karaoke Version from Zoom Karaoke", - "id": "WOu_GqJwfbc" - }, - { - "title": "Perry Como - Magic Moments - Karaoke Version from Zoom Karaoke", - "id": "L-5tccLWf24" - }, - { - "title": "Engelbert Humperdinck - Release Me - Karaoke Version from Zoom Karaoke", - "id": "Ix_Lonrz0Jk" - }, - { - "title": "Engelbert Humperdinck - The Last Waltz - Karaoke Version from Zoom Karaoke", - "id": "E3YSDeEnG4g" - }, - { - "title": "Simply Red - Sunrise - Karaoke Version from Zoom Karaoke", - "id": "vmogp_6qieI" - }, - { - "title": "Jordin Sparks - Battlefield - Karaoke Version from Zoom Karaoke", - "id": "Zy_PF8oiYUg" - }, - { - "title": "Lady Gaga - Lovegame - Karaoke Version from Zoom Karaoke", - "id": "u7XlvLgPV1Y" - }, - { - "title": "Michael Jackson - Thriller - Karaoke Version from Zoom Karaoke", - "id": "fod0TRI14nk" - }, - { - "title": "La Roux - Bulletproof - Karaoke Version from Zoom Karaoke", - "id": "OYRQDURUI04" - }, - { - "title": "Beyonce - Sweet Dreams - Karaoke Version from Zoom Karaoke", - "id": "EoKL4G4syTc" - }, - { - "title": "Simply Red - Money's Too Tight To Mention - Karaoke Version from Zoom Karaoke", - "id": "-n7I-8DqyJU" - }, - { - "title": "Pink - I Don't Believe You - Karaoke Version from Zoom Karaoke", - "id": "eJel1Ae4D9Y" - }, - { - "title": "Cher - Love And Understanding - Karaoke Version from Zoom Karaoke", - "id": "wt713hJjkaU" - }, - { - "title": "Michael Jackson - Ben - Karaoke Version from Zoom Karaoke", - "id": "uVmiBt5vu0Q" - }, - { - "title": "Cher - Bang Bang My Baby Shot Me Down - Karaoke Version from Zoom Karaoke", - "id": "et4fTNLiJN4" - }, - { - "title": "David Guetta feat Kelly Rowland - When Love Takes Over - Karaoke Version from Zoom Karaoke", - "id": "WJ7A1tMmZr4" - }, - { - "title": "Simply Red - For Your Babies - Karaoke Version from Zoom Karaoke", - "id": "S-C0hLk6uG0" - }, - { - "title": "Michael Jackson - Thriller (Without Vincent Price) - Karaoke Version from Zoom Karaoke", - "id": "OwHMgQVWhLc" - }, - { - "title": "Simply Red - Stars - Karaoke Version from Zoom Karaoke", - "id": "LMcNN_pu66M" - }, - { - "title": "Cher - The Shoop Shoop Song (It's In His Kiss) - Karaoke Version from Zoom Karaoke", - "id": "Av6M4Me9eds" - }, - { - "title": "Cher - Dark Lady - Karaoke Version from Zoom Karaoke", - "id": "1WtVdRb0NlY" - }, - { - "title": "The Jackson 5 - I'll Be There - Karaoke Version from Zoom Karaoke", - "id": "yd44DUszUyY" - }, - { - "title": "Elkie Brooks - No More The Fool - Karaoke Version from Zoom Karaoke", - "id": "t7anqsOoeag" - }, - { - "title": "Lady Gaga - Paparazzi - Karaoke Version from Zoom Karaoke", - "id": "nsWuCsBHhMY" - }, - { - "title": "Simply Red - The Right Thing - Karaoke Version from Zoom Karaoke", - "id": "hcXIAL6CFXc" - }, - { - "title": "Cher - I Found Someone - Karaoke Version from Zoom Karaoke", - "id": "YA32O2o7wb4" - }, - { - "title": "Cher - If I Could Turn Back Time - Karaoke Version from Zoom Karaoke", - "id": "O3clzGnd0kM" - }, - { - "title": "Michael Jackson - Rockin' Robin - Karaoke Version from Zoom Karaoke", - "id": "IsgAk-brlWw" - }, - { - "title": "The Righteous Brothers - Unchained Melody - Karaoke Version from Zoom Karaoke", - "id": "HiWxLUEcKxk" - }, - { - "title": "The Righteous Brothers - You've Lost That Lovin' Feelin' (For Solo Male) - Karaoke Version", - "id": "FuoHpdTyAdM" - }, - { - "title": "The Jackson 5 - ABC - Karaoke Version from Zoom Karaoke", - "id": "AQJmRGxM-M8" - }, - { - "title": "Agnes - Release Me - Karaoke Version from Zoom Karaoke", - "id": "9eI_6YANIH8" - }, - { - "title": "Pink - Funhouse - Karaoke Version from Zoom Karaoke", - "id": "9ajXJj5TrQg" - }, - { - "title": "Michael Jackson - Man In The Mirror - Karaoke Version from Zoom Karaoke", - "id": "6fNoDBPfuyU" - }, - { - "title": "Cher - Gypsies, Tramps And Thieves - Karaoke Version from Zoom Karaoke", - "id": "6YPrL2JPOzg" - }, - { - "title": "Cher - Just Like Jesse James - Karaoke Version from Zoom Karaoke", - "id": "2i-2Z68OUVI" - }, - { - "title": "Phil Collins - A Groovy Kind Of Love - Karaoke Version from Zoom Karaoke", - "id": "YddBHuQN9i4" - }, - { - "title": "The Rolling Stones - Mother's Little Helper - Karaoke Version from Zoom Karaoke", - "id": "6vNxa17B5KU" - }, - { - "title": "The Rolling Stones - Start Me Up - Karaoke Version from Zoom Karaoke", - "id": "wtPmWQiuYVs" - }, - { - "title": "The Rolling Stones - 19th Nervous Breakdown - Karaoke Version from Zoom Karaoke", - "id": "iJKThJOXtdg" - }, - { - "title": "The Rolling Stones - Let's Spend The Night Together - Karaoke Version from Zoom Karaoke", - "id": "DPukdg2i62Y" - }, - { - "title": "The Rolling Stones - Angie - Karaoke Version from Zoom Karaoke", - "id": "Cue2PUxgz68" - }, - { - "title": "The Rolling Stones - Ruby Tuesday - Karaoke Version from Zoom Karaoke", - "id": "9hyzuV16D3w" - }, - { - "title": "Florence + The Machine - You've Got The Love - Karaoke Version from Zoom Karaoke", - "id": "pbPabVK7-CQ" - }, - { - "title": "Susan Boyle - Proud - Karaoke Version from Zoom Karaoke", - "id": "NsAFitI_Wt4" - }, - { - "title": "The Rolling Stones - Not Fade Away - Karaoke Version from Zoom Karaoke", - "id": "HPk4LmGj4VA" - }, - { - "title": "Simon And Garfunkel - Only Living Boy In New York (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "9ZMi7W6F2I8" - }, - { - "title": "Susan Boyle - Who I Was Born To Be - Karaoke Version from Zoom Karaoke", - "id": "8BxItgnbq-E" - }, - { - "title": "The Rolling Stones - Wild Horses - Karaoke Version from Zoom Karaoke", - "id": "1s9TnTtbNhY" - }, - { - "title": "Lady Gaga - Bad Romance - Karaoke Version from Zoom Karaoke", - "id": "-A4U-cnxT7A" - }, - { - "title": "Simon And Garfunkel - The Boxer (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "kBWnXAoOWqc" - }, - { - "title": "Simon And Garfunkel - I Am A Rock (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "W3eIPlYWtBE" - }, - { - "title": "JLS - One Shot - Karaoke Version from Zoom Karaoke", - "id": "tm7z9Bbzipo" - }, - { - "title": "Grease 2 - Charades - Karaoke Version from Zoom Karaoke", - "id": "pj0QwoXReiE" - }, - { - "title": "Susan Boyle - Up To The Mountain - Karaoke Version from Zoom Karaoke", - "id": "pMdMgE_YXRM" - }, - { - "title": "The Rolling Stones - Street Fighting Man - Karaoke Version from Zoom Karaoke", - "id": "kIsj9cse4dU" - }, - { - "title": "Susan Boyle - You'll See - Karaoke Version from Zoom Karaoke", - "id": "jZ21IymNQjo" - }, - { - "title": "Susan Boyle - How Great Thou Art - Karaoke Version from Zoom Karaoke", - "id": "hR3zgAPHlTk" - }, - { - "title": "Ke$Ha - Tik Tok - Karaoke Version from Zoom Karaoke", - "id": "dqV0LKklcY0" - }, - { - "title": "Simon And Garfunkel - I Am A Rock (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "GUWLWBGJufE" - }, - { - "title": "Susan Boyle - The End Of The World - Karaoke Version from Zoom Karaoke", - "id": "AiiiDsVyJuk" - }, - { - "title": "Susan Boyle - Cry Me A River - Karaoke Version from Zoom Karaoke", - "id": "3C2WcZjojec" - }, - { - "title": "Simon And Garfunkel - Only Living Boy In New York (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "wD37xcbavZ4" - }, - { - "title": "Simon And Garfunkel - The Boxer (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "u-_Nlaf6g2I" - }, - { - "title": "The Saturdays - Ego - Karaoke Version from Zoom Karaoke", - "id": "rkDjomyguo0" - }, - { - "title": "The Waitresses - Christmas Wrapping - Karaoke Version from Zoom Karaoke", - "id": "h2AHcOdAP20" - }, - { - "title": "Pixie Lott - Band Aid - Karaoke Version from Zoom Karaoke", - "id": "gT8Ei4ZLKP4" - }, - { - "title": "Alexandra Burke - The Silence - Karaoke Version from Zoom Karaoke", - "id": "f89vqnrmjg8" - }, - { - "title": "The Rolling Stones - Under My Thumb - Karaoke Version from Zoom Karaoke", - "id": "EjyeP5PLOAk" - }, - { - "title": "Grease 2 - Cool Rider - Karaoke Version from Zoom Karaoke", - "id": "C3j2UtGSWW8" - }, - { - "title": "Simon And Garfunkel - A Hazy Shade Of Winter (With Harmonies) - Karaoke Version from Zoom Karaoke", - "id": "9OeAxrj7APY" - }, - { - "title": "Iyaz - Replay - Karaoke Version from Zoom Karaoke", - "id": "4mCjkU5RzME" - }, - { - "title": "Simon And Garfunkel - 59th Street Bridge Song (Feelin' Groovy) (No Harmonies) - Karaoke Version", - "id": "Y89fM7Rdy5Y" - }, - { - "title": "Buddy Holly - The Buddy Holly Medley 4 - Karaoke Version from Zoom Karaoke", - "id": "hx31dFvtwR4" - }, - { - "title": "Robbie Williams - Blasphemy - Karaoke Version from Zoom Karaoke", - "id": "RLRuOjpRpeM" - }, - { - "title": "Michael Buble - At This Moment - Karaoke Version from Zoom Karaoke", - "id": "F23SnGR_J2c" - }, - { - "title": "Buddy Holly - The Buddy Holly Medley 3 - Karaoke Version from Zoom Karaoke", - "id": "EQ-bNMv6Txk" - }, - { - "title": "Joe McElderry - The Climb - Karaoke Version from Zoom Karaoke", - "id": "CZ76zWcU_iU" - }, - { - "title": "Simon And Garfunkel - The Sound Of Silence (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "6CYj5wxOkes" - }, - { - "title": "Pixie Lott - Turn It Up - Karaoke Version from Zoom Karaoke", - "id": "w0wbLZKCuGo" - }, - { - "title": "Michael Buble - Cry Me A River - Karaoke Version from Zoom Karaoke", - "id": "p16wNkYxSQ4" - }, - { - "title": "Pixie Lott - Cry Me Out - Karaoke Version from Zoom Karaoke", - "id": "k1IYCWt3vII" - }, - { - "title": "Susan Boyle - Wild Horses - Karaoke Version from Zoom Karaoke", - "id": "_qBG2tzSLrc" - }, - { - "title": "Simon And Garfunkel - The Sound Of Silence (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "3DsA6IqzWtI" - }, - { - "title": "Michael Buble - You're Nobody Till Somebody Loves You - Karaoke Version from Zoom Karaoke", - "id": "xn0v6XTCRGQ" - }, - { - "title": "Bobbysocks - Let It Swing - Karaoke Version from Zoom Karaoke", - "id": "xLM9Jm4XWq8" - }, - { - "title": "Simon And Garfunkel - Homeward Bound (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "tzLQcv83nCs" - }, - { - "title": "Michael Buble - Baby You've Got What It Takes - Karaoke Version from Zoom Karaoke", - "id": "t0r3uBAoB1w" - }, - { - "title": "Marmalade - Radancer - Karaoke Version from Zoom Karaoke", - "id": "nRcIUNqjjR4" - }, - { - "title": "The Allisons - Are You Sure (For Duo) - Karaoke Version from Zoom Karaoke", - "id": "mc4VrHC1P-I" - }, - { - "title": "Sammy Davis Jr - Mr Bojangles (Live) - Karaoke Version from Zoom Karaoke", - "id": "f27LJjUqZJw" - }, - { - "title": "Buddy Holly - The Buddy Holly Medley 5 - Karaoke Version from Zoom Karaoke", - "id": "e_YWj2rSXuM" - }, - { - "title": "Simon And Garfunkel - 59th Street Bridge Song (Feelin' Groovy) (With Harmonies) - Karaoke Version", - "id": "ZzhJ8Zf8ZXU" - }, - { - "title": "Nancy Sinatra - These Boots Are Made For Walkin' - Karaoke Version from Zoom Karaoke", - "id": "YsLbokazHRA" - }, - { - "title": "Robbie Williams - You Know Me - Karaoke Version from Zoom Karaoke", - "id": "OH_oymbD5B4" - }, - { - "title": "Simon And Garfunkel - A Hazy Shade Of Winter (No Harmonies) - Karaoke Version from Zoom Karaoke", - "id": "JvJWEbAkzd8" - }, - { - "title": "Whitney Houston - Million Dollar Bill - Karaoke Version from Zoom Karaoke", - "id": "5yhLR-3LToY" - }, - { - "title": "JLS - Everybody In Love - Karaoke Version from Zoom Karaoke", - "id": "-zxypltQn_Y" - }, - { - "title": "Mud - Crazy - Karaoke Version from Zoom Karaoke", - "id": "-q6-9Bko9ic" - }, - { - "title": "Michael Buble - Whatever It Takes (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "zLjs0H3JFYw" - }, - { - "title": "John Leyton - Wild Wind - Karaoke Version from Zoom Karaoke", - "id": "qxl7VVNFpwU" - }, - { - "title": "The Allisons - Are You Sure (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "dxqcowlg5a8" - }, - { - "title": "The Searchers - The Searchers Medley - Karaoke Version from Zoom Karaoke", - "id": "XrT-ddLhtM0" - }, - { - "title": "Simon And Garfunkel - Homeward Bound (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "XNQcmENe1Zg" - }, - { - "title": "Michael Jackson - This Is It - Karaoke Version from Zoom Karaoke", - "id": "HlkWzI958JQ" - }, - { - "title": "The Pretenders - Talk Of The Town - Karaoke Version from Zoom Karaoke", - "id": "2srTr98S54E" - }, - { - "title": "Buddy Holly - The Buddy Holly Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "uCmRR6vY36I" - }, - { - "title": "Leif Garrett - I Was Made For Dancing - Karaoke Version from Zoom Karaoke", - "id": "szN8Kf0t0d0" - }, - { - "title": "The Pretenders - Night In My Veins - Karaoke Version from Zoom Karaoke", - "id": "cGbN85KIVwI" - }, - { - "title": "Buddy Holly - The Buddy Holly Medley 6 - Karaoke Version from Zoom Karaoke", - "id": "TJ9GIk9nPrw" - }, - { - "title": "Dusty Springfield - Some Of Your Lovin' - Karaoke Version from Zoom Karaoke", - "id": "6bJESBdCSXc" - }, - { - "title": "Michael Buble - Crazy Love - Karaoke Version from Zoom Karaoke", - "id": "5WSJKKSf6R4" - }, - { - "title": "Michael Buble - Georgia On My Mind - Karaoke Version from Zoom Karaoke", - "id": "y6N48sVAKP8" - }, - { - "title": "The Jags - Back Of My Hand - Karaoke Version from Zoom Karaoke", - "id": "wa2Ap8n6_cY" - }, - { - "title": "Tim McGraw - The Tim Mcgraw Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "sQtdoShul7o" - }, - { - "title": "McGuinness Flint - Malt And Barley Blues - Karaoke Version from Zoom Karaoke", - "id": "rX_A2o-Rd2E" - }, - { - "title": "The Box Tops - Neon Rainbow - Karaoke Version from Zoom Karaoke", - "id": "pqVcasKuxmc" - }, - { - "title": "Buddy Holly - The Buddy Holly Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "kaXSbr1qyv8" - }, - { - "title": "The Saturdays - Forever Is Over - Karaoke Version from Zoom Karaoke", - "id": "fT4zPi_DaaI" - }, - { - "title": "Billy Idol - The Billy Idol Medley - Karaoke Version from Zoom Karaoke", - "id": "e9ao_VKUTrM" - }, - { - "title": "T. Rex - The T. Rex Medley - Karaoke Version from Zoom Karaoke", - "id": "V289fB1ZLQw" - }, - { - "title": "Michael Buble - All I Do Is Dream Of You - Karaoke Version from Zoom Karaoke", - "id": "TIRbdwwvbOo" - }, - { - "title": "Christie - San Bernadino - Karaoke Version from Zoom Karaoke", - "id": "Qh9NuW9P2MI" - }, - { - "title": "Cheryl Cole - Fight For This Love - Karaoke Version from Zoom Karaoke", - "id": "P_-0RxpUXFM" - }, - { - "title": "Michael Buble - Hold On - Karaoke Version from Zoom Karaoke", - "id": "DJKS1mRMJIs" - }, - { - "title": "Tim McGraw - The Tim Mcgraw Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "5VgrYv1-HTY" - }, - { - "title": "Michael Buble - Some Kind Of Wonderful - Karaoke Version from Zoom Karaoke", - "id": "4_VedMGmWeg" - }, - { - "title": "The Climax Blues Band - Couldn't Get It Right - Karaoke Version from Zoom Karaoke", - "id": "2tbaI4v4-fU" - }, - { - "title": "Bonnie Tyler - Lost In France - Karaoke Version from Zoom Karaoke", - "id": "4lPviDWttOk" - }, - { - "title": "Elkie Brooks - Don't Cry Out Loud - Karaoke Version from Zoom Karaoke", - "id": "U6qyFkyfr5U" - }, - { - "title": "Cat Stevens - Wild World - Karaoke Version from Zoom Karaoke", - "id": "q6GsVpl4Zpg" - }, - { - "title": "Bob Dylan - Rainy Day Women #12 & 35 - Karaoke Version from Zoom Karaoke", - "id": "OXwDB9WKWV0" - }, - { - "title": "Cat Stevens - The First Cut Is The Deepest - Karaoke Version from Zoom Karaoke", - "id": "KrhhRSLl0lU" - }, - { - "title": "The Commitments - Mustang Sally/In The Midnight Hour (Short Medley) - Karaoke Version from Zoom", - "id": "EX8yChCYAuQ" - }, - { - "title": "Cat Stevens - Moonshadow - Karaoke Version from Zoom Karaoke", - "id": "8E-uFBDd21A" - }, - { - "title": "Showaddywaddy - The Showaddywaddy Medley 3 - Karaoke Version from Zoom Karaoke", - "id": "ce8MILqNe7w" - }, - { - "title": "Bob Dylan - Blowin' In The Wind - Karaoke Version from Zoom Karaoke", - "id": "83EcikZJtl4" - }, - { - "title": "The Zombies - She's Not There - Karaoke Version from Zoom Karaoke", - "id": "vXN6PYXVRAg" - }, - { - "title": "Cat Stevens - Father And Son - Karaoke Version from Zoom Karaoke", - "id": "nxQqfrcVBJA" - }, - { - "title": "The Moody Blues - Go Now - Karaoke Version from Zoom Karaoke", - "id": "kUXJmnbTSfU" - }, - { - "title": "Gerry & The Pacemakers - You'll Never Walk Alone - Karaoke Version from Zoom Karaoke", - "id": "i4Hmo1OEbN8" - }, - { - "title": "Jason Derulo - In My Head - Karaoke Version from Zoom Karaoke", - "id": "fXD4FnFESyI" - }, - { - "title": "The Yardbirds - For Your Love - Karaoke Version from Zoom Karaoke", - "id": "c5uSxukKvGc" - }, - { - "title": "The Commitments - In The Midnight Hour - Karaoke Version from Zoom Karaoke", - "id": "aBTRg4jwl5E" - }, - { - "title": "UB40 - Kingston Town - Karaoke Version from Zoom Karaoke", - "id": "X9IrkVqxY34" - }, - { - "title": "Tom Jones - I Couldn't Say Goodbye - Karaoke Version from Zoom Karaoke", - "id": "QQJmeWBmdEY" - }, - { - "title": "Dave Dee, Dozy, Beaky, Mick And Tich - Hold Tight - Karaoke Version from Zoom Karaoke", - "id": "Id5YBdIu7Vw" - }, - { - "title": "John Fred & His Playboy Band - Judy In Disguise (With Glasses) - Karaoke Version from Zoom Karaoke", - "id": "8DvgRrkevMw" - }, - { - "title": "Elkie Brooks - Sunshine After The Rain - Karaoke Version from Zoom Karaoke", - "id": "-3pE-jysMx8" - }, - { - "title": "Erasure - The Erasure Medley - Karaoke Version from Zoom Karaoke", - "id": "xc_L4HkbqK8" - }, - { - "title": "The Shangri-Las - Leader Of The Pack - Karaoke Version from Zoom Karaoke", - "id": "aDBq77uJQ2g" - }, - { - "title": "Robson And Jerome - I Believe - Karaoke Version from Zoom Karaoke", - "id": "TO71TvGYmSM" - }, - { - "title": "Kiki Dee - Amoureuse - Karaoke Version from Zoom Karaoke", - "id": "PkcCrUX0PPM" - }, - { - "title": "Connie Francis - My Heart Has A Mind Of Its Own - Karaoke Version from Zoom Karaoke", - "id": "JiH7xNwT8kU" - }, - { - "title": "The B52s - Love Shack - Karaoke Version from Zoom Karaoke", - "id": "Ja4_jxyVGFg" - }, - { - "title": "The Bangles - Eternal Flame - Karaoke Version from Zoom Karaoke", - "id": "IheYPZL7e8k" - }, - { - "title": "Elkie Brooks - Lilac Wine - Karaoke Version from Zoom Karaoke", - "id": "Cf4REqMqd4E" - }, - { - "title": "Kiki Dee - Star - Karaoke Version from Zoom Karaoke", - "id": "BJqRWQytyqw" - }, - { - "title": "The Commitments - Mustang Sally - Karaoke Version from Zoom Karaoke", - "id": "AQlM__K7uWw" - }, - { - "title": "Ellie Goulding - Starry Eyed - Karaoke Version from Zoom Karaoke", - "id": "7RIq0U1lJHI" - }, - { - "title": "The Crazy World Of Arthur Brown - Fire - Karaoke Version from Zoom Karaoke", - "id": "573mpEzsmhM" - }, - { - "title": "Donovan - Catch The Wind - Karaoke Version from Zoom Karaoke", - "id": "2rRHMTpn0ZE" - }, - { - "title": "Zager And Evans - In The Year 2525 - Karaoke Version from Zoom Karaoke", - "id": "-0oV8SayWOs" - }, - { - "title": "Robbie Williams - She's The One - Karaoke Version from Zoom Karaoke", - "id": "qljAXVISCRI" - }, - { - "title": "Showaddywaddy - The Showaddywaddy Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "V7p-sbJ0QRU" - }, - { - "title": "Cliff Richard - The Next Time - Karaoke Version from Zoom Karaoke", - "id": "MCdfoTm8nzI" - }, - { - "title": "Bananarama - The Bananarama Medley - Karaoke Version from Zoom Karaoke", - "id": "KXqTSXPVazo" - }, - { - "title": "Showaddywaddy - The Showaddywaddy Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "EvaExXKeYco" - }, - { - "title": "A-ha - The Living Daylights - Karaoke Version from Zoom Karaoke", - "id": "7ixNFDArNUw" - }, - { - "title": "Foster And Allen - A Bunch Of Thyme - Karaoke Version from Zoom Karaoke", - "id": "5SKXInJInu8" - }, - { - "title": "Robbie Williams - Strong - Karaoke Version from Zoom Karaoke", - "id": "AZabWrn0JHo" - }, - { - "title": "Slade - Skweeze Me Pleeze Me - Karaoke Version from Zoom Karaoke", - "id": "WcusHhZ3HOU" - }, - { - "title": "Bobby Vee - Bobby Vee Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "hLbt90ZsQks" - }, - { - "title": "Robbie Williams - Eternity - Karaoke Version from Zoom Karaoke", - "id": "U9wx_crpp_Q" - }, - { - "title": "The Blues Brothers - Blues Brothers Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "O5AiIeOY0_E" - }, - { - "title": "Johnny Tillotson - Poetry In Motion - Karaoke Version from Zoom Karaoke", - "id": "LM1bBmp20Tc" - }, - { - "title": "The Blues Brothers - Blues Brothers Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "DkmCI1b982o" - }, - { - "title": "Robbie Williams - The Road To Mandalay - Karaoke Version from Zoom Karaoke", - "id": "518peiqy56s" - }, - { - "title": "Bobby Vee - Run To Him - Karaoke Version from Zoom Karaoke", - "id": "3MDEG58KwJ4" - }, - { - "title": "Robbie Williams - Old Before I Die - Karaoke Version from Zoom Karaoke", - "id": "qn9V5MUnJM4" - }, - { - "title": "The Paper Dolls - Something Here In My Heart - Karaoke Version from Zoom Karaoke", - "id": "RaCVJSDmmkA" - }, - { - "title": "The Lovin' Spoonful - Summer In The City - Karaoke Version from Zoom Karaoke", - "id": "Oa56dYYbWnw" - }, - { - "title": "The Hollies - On A Carousel - Karaoke Version from Zoom Karaoke", - "id": "Ig0QtSx_huM" - }, - { - "title": "Oasis - D'You Know What I Mean - Karaoke Version from Zoom Karaoke", - "id": "Gq2JPn0yfao" - }, - { - "title": "The Stereophonics - Dakota - Karaoke Version from Zoom Karaoke", - "id": "GV3dM5Rw-4k" - }, - { - "title": "Oasis - Rock 'N' Roll Star - Karaoke Version from Zoom Karaoke", - "id": "816eW0OBiRI" - }, - { - "title": "Vanity Fare - Early In The Morning - Karaoke Version from Zoom Karaoke", - "id": "5IahzS4fIZg" - }, - { - "title": "Phil Collins - Another Day In Paradise - Karaoke Version from Zoom Karaoke", - "id": "wiscSnGd6Zw" - }, - { - "title": "Jedward - Under Pressure Ice Ice Baby - Karaoke Version from Zoom Karaoke", - "id": "WGjE8rZEDaU" - }, - { - "title": "Grease 2 - We'll Be Together - Karaoke Version from Zoom Karaoke", - "id": "Cx_p83Nnv1Q" - }, - { - "title": "Geraldine McQueen (Peter Kay) - Once Upon A Christmas Song - Karaoke Version from Zoom Karaoke", - "id": "1wcIM4D1rb8" - }, - { - "title": "Roy Orbison - Pretty Paper - Karaoke Version from Zoom Karaoke", - "id": "XDNjRzFwiLs" - }, - { - "title": "Phil Collins - Two Hearts - Karaoke Version from Zoom Karaoke", - "id": "tk_KPUr9HUs" - }, - { - "title": "Grease 2 - Prowlin' - Karaoke Version from Zoom Karaoke", - "id": "m59SvZbVKrc" - }, - { - "title": "Alicia Keys - Empire State Of Mind Part 2 Broken Down - Karaoke Version from Zoom Karaoke", - "id": "lttB_kBQgWg" - }, - { - "title": "Grease 2 - Do It For Our Country - Karaoke Version from Zoom Karaoke", - "id": "lsFMMqoxVJo" - }, - { - "title": "Adam Ant - Goody Two Shoes - Karaoke Version from Zoom Karaoke", - "id": "fpA-Bj4V89U" - }, - { - "title": "Boy George - Everything I Own - Karaoke Version from Zoom Karaoke", - "id": "YEyQQbId4QQ" - }, - { - "title": "Billy J Kramer & The Dakotas - Little Children - Karaoke Version from Zoom Karaoke", - "id": "WGh1KssvwJY" - }, - { - "title": "Crispian St Peters - You Were On My Mind - Karaoke Version from Zoom Karaoke", - "id": "TzjoeXjjDY4" - }, - { - "title": "The Lovin' Spoonful - Daydream - Karaoke Version from Zoom Karaoke", - "id": "MOkW_70ifo4" - }, - { - "title": "Grease 2 - Who's That Guy - Karaoke Version from Zoom Karaoke", - "id": "KAH61hpcunc" - }, - { - "title": "Phil Collins - You Can't Hurry Love - Karaoke Version from Zoom Karaoke", - "id": "BVN7cWIY6oY" - }, - { - "title": "Grease 2 - Love Will Turn Back The Hands Of Time - Karaoke Version from Zoom Karaoke", - "id": "7d64imAKtBc" - }, - { - "title": "Elkie Brooks - Pearl's A Singer - Karaoke Version from Zoom Karaoke", - "id": "zEVn4ch3NJM" - }, - { - "title": "Grease 2 - Girl For All Seasons - Karaoke Version from Zoom Karaoke", - "id": "ybEeJY4FPOM" - }, - { - "title": "Police - Message In A Bottle - Karaoke Version from Zoom Karaoke", - "id": "vTugos66Ans" - }, - { - "title": "T'Pau - China In Your Hand - Karaoke Version from Zoom Karaoke", - "id": "t9vlWU92xQE" - }, - { - "title": "The Jackson 5 - Santa Claus Is Coming To Town - Karaoke Version from Zoom Karaoke", - "id": "jvRjPQKUp9o" - }, - { - "title": "Phil Collins - One More Night - Karaoke Version from Zoom Karaoke", - "id": "fJOnSjcO244" - }, - { - "title": "Kylie Minogue - Santa Baby - Karaoke Version from Zoom Karaoke", - "id": "eEyfjjjMRSc" - }, - { - "title": "Cliff Richard - Saviour's Day - Karaoke Version from Zoom Karaoke", - "id": "QjLZjGrgS6w" - }, - { - "title": "Robbie Williams - Morning Sun - Karaoke Version from Zoom Karaoke", - "id": "QV8wzTeTnTQ" - }, - { - "title": "Perry Como And The Fontane Sisters - It's Beginning To Look A Lot Like Christmas - Karaoke Version", - "id": "MNilAdW29Ac" - }, - { - "title": "Gary Glitter - Another Rock And Roll Christmas - Karaoke Version from Zoom Karaoke", - "id": "A-ghw53Zh0A" - }, - { - "title": "Billy Preston & Syreeta - With You I'm Born Again - Karaoke Version from Zoom Karaoke", - "id": "0kOVSFbH7Oo" - }, - { - "title": "The Baseballs - I Don't Feel Like Dancin' - Karaoke Version from Zoom Karaoke", - "id": "RFk5exl1RSo" - }, - { - "title": "Eliza Doolittle - Moneybox - Karaoke Version from Zoom Karaoke", - "id": "y0fJth6McjQ" - }, - { - "title": "Eliza Doolittle - Pack Up - Karaoke Version from Zoom Karaoke", - "id": "DuYQAXDeWmA" - }, - { - "title": "Tom Jones - Only Once - Karaoke Version from Zoom Karaoke", - "id": "oonbKaZGaGE" - }, - { - "title": "Otis Redding - (Sittin' On) The Dock Of The Bay - Karaoke Version from Zoom Karaoke", - "id": "mpMeSwQaQaI" - }, - { - "title": "Scouting For Girls - Famous - Karaoke Version from Zoom Karaoke", - "id": "vRxDGrTHiPY" - }, - { - "title": "The Baseballs - This Love - Karaoke Version from Zoom Karaoke", - "id": "fxL4-d2JORI" - }, - { - "title": "Tom Jones - If This Is Love - Karaoke Version from Zoom Karaoke", - "id": "8oH2um5iGm4" - }, - { - "title": "JLS - The Club Is Alive - Karaoke Version from Zoom Karaoke", - "id": "147RhDc0cuY" - }, - { - "title": "Chuck Berry - Reelin' And Rockin' - Karaoke Version from Zoom Karaoke", - "id": "dnGPC9-AaPE" - }, - { - "title": "Chuck Berry - Rock And Roll Music - Karaoke Version from Zoom Karaoke", - "id": "iexNt6TC-lE" - }, - { - "title": "Madness - The Sun And The Rain - Karaoke Version from Zoom Karaoke", - "id": "z2U5n5tIi68" - }, - { - "title": "The Byrds - So You Want To Be A Rock 'N' Roll Star - Karaoke Version from Zoom Karaoke", - "id": "qL3PMI0b-yI" - }, - { - "title": "Chuck Berry - You Never Can Tell - Karaoke Version from Zoom Karaoke", - "id": "PAqVMy-1ogk" - }, - { - "title": "Katy Perry - California Gurls (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "8PFu7vo4rY0" - }, - { - "title": "Alexandra Burke - All Night Long (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "ivDJmdcJWAg" - }, - { - "title": "Cliff Bennett & The Rebel Rousers - Got To Get You Into My Life - Karaoke Version from Zoom Karaoke", - "id": "66HnglJ5eWE" - }, - { - "title": "Madness - One Step Beyond - Karaoke Version from Zoom Karaoke", - "id": "1kc_g4jFT3s" - }, - { - "title": "The Baseballs - Bleeding Love - Karaoke Version from Zoom Karaoke", - "id": "-KGSK06iM2o" - }, - { - "title": "Bobbie Gentry - I'll Never Fall In Love Again - Karaoke Version from Zoom Karaoke", - "id": "tcDX1edVYd4" - }, - { - "title": "Tom Jones - It's Not Unusual (Live) - Karaoke Version from Zoom Karaoke", - "id": "xSQZ4Lq2Gzc" - }, - { - "title": "Madness - Embarrassment - Karaoke Version from Zoom Karaoke", - "id": "axxpj4pbAqU" - }, - { - "title": "Lady Gaga - Alejandro - Karaoke Version from Zoom Karaoke", - "id": "xLj0-6ZI2f8" - }, - { - "title": "Chuck Berry - Run Rudolph Run - Karaoke Version from Zoom Karaoke", - "id": "feFMXg79DsE" - }, - { - "title": "Marvin Gaye - I Heard It Through The Grapevine - Karaoke Version from Zoom Karaoke", - "id": "Z7ZSgFQ-C84" - }, - { - "title": "Joe Longthorne - Love Is All - Karaoke Version from Zoom Karaoke", - "id": "UqEc5Si2G0k" - }, - { - "title": "Eric Clapton - Tears In Heaven - Karaoke Version from Zoom Karaoke", - "id": "kAQrUXHwWzk" - }, - { - "title": "Joe Longthorne - Hurt - Karaoke Version from Zoom Karaoke", - "id": "5irbfNwAD_M" - }, - { - "title": "Madness - Cardiac Arrest - Karaoke Version from Zoom Karaoke", - "id": "yJdmxani5aI" - }, - { - "title": "Andy Williams - The Impossible Dream - Karaoke Version from Zoom Karaoke", - "id": "qRIHJNC_-Ng" - }, - { - "title": "Kylie Minogue - All The Lovers - Karaoke Version from Zoom Karaoke", - "id": "TW3M819lGzc" - }, - { - "title": "Tom Jones - I Can't Stop Loving You (Live) - Karaoke Version from Zoom Karaoke", - "id": "P2kiaJjiQ7Y" - }, - { - "title": "Joe Longthorne - It's Only Make Believe - Karaoke Version from Zoom Karaoke", - "id": "Dao7otJPQAk" - }, - { - "title": "Chuck Berry - Sweet Little Sixteen - Karaoke Version from Zoom Karaoke", - "id": "DOxs_5oBkhU" - }, - { - "title": "Eric Clapton - Wonderful Tonight - Karaoke Version from Zoom Karaoke", - "id": "9H-Z-6ehH9s" - }, - { - "title": "The Weather Girls - It's Raining Men - Karaoke Version from Zoom Karaoke", - "id": "lur0NxmJEfY" - }, - { - "title": "Chuck Berry - Memphis Tennessee - Karaoke Version from Zoom Karaoke", - "id": "9UcefjyHQGk" - }, - { - "title": "Chuck Berry - Nadine - Karaoke Version from Zoom Karaoke", - "id": "zKACUH6f0-o" - }, - { - "title": "Chuck Berry - Roll Over Beethoven - Karaoke Version from Zoom Karaoke", - "id": "ftdPO6z8oVQ" - }, - { - "title": "Tom Jones - Help Yourself (Live) - Karaoke Version from Zoom Karaoke", - "id": "ey9ewL9NVcE" - }, - { - "title": "Bob Marley - Is This Love - Karaoke Version from Zoom Karaoke", - "id": "bTwdD5wPUX8" - }, - { - "title": "Bob Marley - Jamming - Karaoke Version from Zoom Karaoke", - "id": "9SIq3Z-GYWI" - }, - { - "title": "Bob Marley - One Love/People Get Ready - Karaoke Version from Zoom Karaoke", - "id": "vrlDSiMEKTE" - }, - { - "title": "Mike & The Mechanics - The Living Years - Karaoke Version from Zoom Karaoke", - "id": "cXZpIcqDHaw" - }, - { - "title": "Chuck Berry - School Day (Ring Ring Goes The Bell) - Karaoke Version from Zoom Karaoke", - "id": "6fWIuTJJdHU" - }, - { - "title": "Bob Marley - Stir It Up - Karaoke Version from Zoom Karaoke", - "id": "Ne9qVkMo5CE" - }, - { - "title": "Kenny Loggins - Footloose - Karaoke Version from Zoom Karaoke", - "id": "VjFNscQ0UKI" - }, - { - "title": "Bob Marley - Waiting In Vain - Karaoke Version from Zoom Karaoke", - "id": "4Y1waDEYALw" - }, - { - "title": "Train - Hey, Soul Sister - Karaoke Version from Zoom Karaoke", - "id": "vUTpyxRnk80" - }, - { - "title": "Bob Marley - Three Little Birds - Karaoke Version from Zoom Karaoke", - "id": "qgxVkTmX2mQ" - }, - { - "title": "Roll Deep - Good Times (Male Parts Only) - Karaoke Version from Zoom Karaoke", - "id": "jxGoqpqjP1E" - }, - { - "title": "Miley Cyrus - Party In The U.S.A. - Karaoke Version from Zoom Karaoke", - "id": "UA7dQKS94jI" - }, - { - "title": "Bette Midler - The Rose - Karaoke Version from Zoom Karaoke", - "id": "G3eg8-GqDfY" - }, - { - "title": "Boyzone - Love Is A Hurricane - Karaoke Version from Zoom Karaoke", - "id": "zT5d9zQ3cvY" - }, - { - "title": "Tom Jones - Love Me Tonight (Live) - Karaoke Version from Zoom Karaoke", - "id": "vhHuYuepYLc" - }, - { - "title": "Bob Marley - I Shot The Sheriff - Karaoke Version from Zoom Karaoke", - "id": "h-nv4Kj_CeQ" - }, - { - "title": "Lady Gaga - Monster - Karaoke Version from Zoom Karaoke", - "id": "dPyo4-iTKAA" - }, - { - "title": "Lady Antebellum - Need You Now - Karaoke Version from Zoom Karaoke", - "id": "JmU3A9HZqwI" - }, - { - "title": "Goldfrapp - Rocket - Karaoke Version from Zoom Karaoke", - "id": "twIVQ3hk-8c" - }, - { - "title": "Bob Marley - Buffalo Soldier - Karaoke Version from Zoom Karaoke", - "id": "yo2ZnwKuZ-M" - }, - { - "title": "Joe Longthorne - You're My World - Karaoke Version from Zoom Karaoke", - "id": "QDKPp7Mi5Ss" - }, - { - "title": "Racey - Some Girls - Karaoke Version from Zoom Karaoke", - "id": "kr1vIJli0Yw" - }, - { - "title": "Bob Marley - Get Up, Stand Up - Karaoke Version from Zoom Karaoke", - "id": "T1WeCDql7Eg" - }, - { - "title": "Bette Midler - Wind Beneath My Wings - Karaoke Version from Zoom Karaoke", - "id": "LqGRLuznNY0" - }, - { - "title": "Tom Jones - What's New Pussycat - Karaoke Version from Zoom Karaoke", - "id": "rB6fc4XdxSg" - }, - { - "title": "Scissor Sisters - Fire With Fire - Karaoke Version from Zoom Karaoke", - "id": "NfXwvBWoNrk" - }, - { - "title": "Cheryl Cole - Parachute - Karaoke Version from Zoom Karaoke", - "id": "L3QSc_R088s" - }, - { - "title": "Tom Jones - The Bright Lights And You Girl (Live) - Karaoke Version from Zoom Karaoke", - "id": "pYyVKmj07cg" - }, - { - "title": "Labi Siffre - (Something Inside) So Strong - Karaoke Version from Zoom Karaoke", - "id": "Tp15KapDvVk" - }, - { - "title": "Lady Gaga And Beyonce - Telephone - Karaoke Version from Zoom Karaoke", - "id": "7KIRKHS9cks" - }, - { - "title": "Paloma Faith - Upside Down - Karaoke Version from Zoom Karaoke", - "id": "XZZX7NRGTfk" - }, - { - "title": "Joe Longthorne - Always On My Mind - Karaoke Version from Zoom Karaoke", - "id": "MZr7pkV4zCA" - }, - { - "title": "Joe Longthorne - Mary In The Morning - Karaoke Version from Zoom Karaoke", - "id": "0c51Epb5Ccg" - }, - { - "title": "The Searchers - Sweets For My Sweet (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "TksLiOARSIs" - }, - { - "title": "Donovan - Jennifer Juniper - Karaoke Version from Zoom Karaoke", - "id": "HqfJdhOXfBs" - }, - { - "title": "Bob Dylan - Mr Tambourine Man - Karaoke Version from Zoom Karaoke", - "id": "FYdOJfIITgE" - }, - { - "title": "Donovan - Mellow Yellow - Karaoke Version from Zoom Karaoke", - "id": "2WWxYqY_7lE" - }, - { - "title": "Scouting For Girls - This Ain't A Love Song - Karaoke Version from Zoom Karaoke", - "id": "zaEp5jT16fk" - }, - { - "title": "The Bobby Fuller Four - I Fought The Law - Karaoke Version from Zoom Karaoke", - "id": "sMZqpQ91Y7E" - }, - { - "title": "Nilsson - Without You - Karaoke Version from Zoom Karaoke", - "id": "oNcOYEes3Kc" - }, - { - "title": "Tom Jones - She's A Lady - Karaoke Version from Zoom Karaoke", - "id": "aVJNIyPCO4o" - }, - { - "title": "Bob Dylan - Just Like A Woman - Karaoke Version from Zoom Karaoke", - "id": "_aJXT1plqh0" - }, - { - "title": "The Move - Fire Brigade - Karaoke Version from Zoom Karaoke", - "id": "JvGSnX0GV3w" - }, - { - "title": "Joshua Radin - I'd Rather Be With You - Karaoke Version from Zoom Karaoke", - "id": "ulNDr_K0O7M" - }, - { - "title": "Lena Martell - One Day At A Time - Karaoke Version from Zoom Karaoke", - "id": "fhxwweBY0D4" - }, - { - "title": "Boyzone - Gave It All Away - Karaoke Version from Zoom Karaoke", - "id": "ehgzubS-DeE" - }, - { - "title": "Bob Dylan - The Times They Are A Changin' - Karaoke Version from Zoom Karaoke", - "id": "_EFkbxHRyCw" - }, - { - "title": "Joe Longthorne - When Your Old Wedding Ring Was New - Karaoke Version from Zoom Karaoke", - "id": "WD8qayk4gRE" - }, - { - "title": "Justin Bieber - Baby (Justin Part Only) - Karaoke Version from Zoom Karaoke", - "id": "Ufdts-QR4O0" - }, - { - "title": "Donovan - Sunshine Superman - Karaoke Version from Zoom Karaoke", - "id": "CWtbDnLqUmg" - }, - { - "title": "Louis Armstrong - What A Wonderful World - Karaoke Version from Zoom Karaoke", - "id": "9BCQqo1XMVw" - }, - { - "title": "Tom Jones - Hey Jude (Live) - Karaoke Version from Zoom Karaoke", - "id": "5BasRTiYLLs" - }, - { - "title": "Nilsson - Without You (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "-bOcoxnDIF0" - }, - { - "title": "Kylie Minogue - Better Than Today - Karaoke Version from Zoom Karaoke", - "id": "tyZT7yYtPvg" - }, - { - "title": "Olly Murs - Thinking Of Me - Karaoke Version from Zoom Karaoke", - "id": "rgeL22BjerM" - }, - { - "title": "Stevie Wonder - Signed, Sealed, Delivered I'm Yours - Karaoke Version from Zoom Karaoke", - "id": "ftsXoVdYIJ8" - }, - { - "title": "Paper Lace - The Night Chicago Died - Karaoke Version from Zoom Karaoke", - "id": "6p06crNghuQ" - }, - { - "title": "Wet Wet Wet - Sweet Little Mystery - Karaoke Version from Zoom Karaoke", - "id": "Mju8taIOewE" - }, - { - "title": "Tom Jones - One Day Soon - Karaoke Version from Zoom Karaoke", - "id": "jqhWMC4tXPs" - }, - { - "title": "Westlife - Safe - Karaoke Version from Zoom Karaoke", - "id": "hLdX8USGGQc" - }, - { - "title": "Talking Heads - Road To Nowhere - Karaoke Version from Zoom Karaoke", - "id": "g5oRioAtWRY" - }, - { - "title": "Cliff Richard - Wired For Sound - Karaoke Version from Zoom Karaoke", - "id": "aCH7l0eCwbw" - }, - { - "title": "Stevie Wonder - My Cherie Amour - Karaoke Version from Zoom Karaoke", - "id": "4BS87uGx5w0" - }, - { - "title": "Leapy Lee - Little Arrows - Karaoke Version from Zoom Karaoke", - "id": "tVW9EZ5GlTQ" - }, - { - "title": "Tommy James & The Shondells - I Think We're Alone Now - Karaoke Version from Zoom Karaoke", - "id": "ppaE5hm5OjU" - }, - { - "title": "KC & The Sunshine Band - Give It Up - Karaoke Version from Zoom Karaoke", - "id": "oQ4QhimAzps" - }, - { - "title": "Blancmange - Living On The Ceiling - Karaoke Version from Zoom Karaoke", - "id": "de2b-olKHVs" - }, - { - "title": "Bad Manners - Lip Up Fatty - Karaoke Version from Zoom Karaoke", - "id": "aX5qwbwMEuo" - }, - { - "title": "Stevie Wonder - For Once In My Life - Karaoke Version from Zoom Karaoke", - "id": "SxhZrPIpbKo" - }, - { - "title": "Jersey Boys - The Jersey Boys Medley - Karaoke Version from Zoom Karaoke", - "id": "RFbzZMq-Kbw" - }, - { - "title": "Stevie Wonder - Part Time Lover - Karaoke Version from Zoom Karaoke", - "id": "QR0CtoaUb3c" - }, - { - "title": "Aztec Camera - Somewhere In My Heart - Karaoke Version from Zoom Karaoke", - "id": "QHAeDTvu51s" - }, - { - "title": "Alvin Stardust - I Feel Like Buddy Holly - Karaoke Version from Zoom Karaoke", - "id": "P5bMxFnIntI" - }, - { - "title": "The Overtones - Gambling Man - Karaoke Version from Zoom Karaoke", - "id": "BlIkcsCDdk8" - }, - { - "title": "The Overtones - Carolyn - Karaoke Version from Zoom Karaoke", - "id": "AMWBlq_7g4U" - }, - { - "title": "Bronski Beat - Smalltown Boy - Karaoke Version from Zoom Karaoke", - "id": "swn7uSCLRT0" - }, - { - "title": "Swing Out Sister - Breakout - Karaoke Version from Zoom Karaoke", - "id": "sO2r_aYnSmo" - }, - { - "title": "Black - Wonderful Life - Karaoke Version from Zoom Karaoke", - "id": "rmJpkGnx9j0" - }, - { - "title": "Duffy - Well, Well, Well - Karaoke Version from Zoom Karaoke", - "id": "RBrjCSTXmFI" - }, - { - "title": "Engelbert Humperdinck - How Do I Stop Loving You - Karaoke Version from Zoom Karaoke", - "id": "MYEOJzAmjoQ" - }, - { - "title": "Stray Cats - Rock This Town - Karaoke Version from Zoom Karaoke", - "id": "DBFHEAA1E78" - }, - { - "title": "Men Without Hats - The Safety Dance - Karaoke Version from Zoom Karaoke", - "id": "706Xy7vH_XI" - }, - { - "title": "Matthew Wilder - Break My Stride - Karaoke Version from Zoom Karaoke", - "id": "nb62XpEq_yc" - }, - { - "title": "Matt Cardle - When We Collide - Karaoke Version from Zoom Karaoke", - "id": "at5UGFLfsCU" - }, - { - "title": "Stevie Wonder - Isn't She Lovely - Karaoke Version from Zoom Karaoke", - "id": "ZiUCHNtcXro" - }, - { - "title": "Cutting Crew - (I Just) Died In Your Arms - Karaoke Version from Zoom Karaoke", - "id": "Hd_eT7Lu_kQ" - }, - { - "title": "Stevie Wonder - Superstition - Karaoke Version from Zoom Karaoke", - "id": "4ia5KDIXLy4" - }, - { - "title": "Cheryl Cole - Promise This - Karaoke Version from Zoom Karaoke", - "id": "FVsf2IJhJbM" - }, - { - "title": "The Baseballs - Don't Cha - Karaoke Version from Zoom Karaoke", - "id": "5MWGJyxaoOk" - }, - { - "title": "Jason Donovan - Too Many Broken Hearts - Karaoke Version from Zoom Karaoke", - "id": "M42Mi9fqAwk" - }, - { - "title": "Kylie Minogue - Get Outta My Way - Karaoke Version from Zoom Karaoke", - "id": "zgznhTfsz3g" - }, - { - "title": "The Proclaimers - Letter From America (For Duet) - Karaoke Version from Zoom Karaoke", - "id": "tAgpkVte2uw" - }, - { - "title": "Hot Chocolate - It Started With A Kiss (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "sk99h7aih8I" - }, - { - "title": "The Baseballs - Crazy In Love - Karaoke Version from Zoom Karaoke", - "id": "lbz2XUUo3EI" - }, - { - "title": "The Four Tops - Walk Away Renee - Karaoke Version from Zoom Karaoke", - "id": "_8wZPSODMdA" - }, - { - "title": "King - Love And Pride - Karaoke Version from Zoom Karaoke", - "id": "W40QA1Ite-4" - }, - { - "title": "Neil Sedaka - Oh Carol - Karaoke Version from Zoom Karaoke", - "id": "N7jfhE7-_cw" - }, - { - "title": "Bill Haley & His Comets - Shake Rattle And Roll - Karaoke Version from Zoom Karaoke", - "id": "GJbK7jCUCeI" - }, - { - "title": "The Proclaimers - Letter From America (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "FdTkXhCWvMU" - }, - { - "title": "The Ramones - Baby I Love You - Karaoke Version from Zoom Karaoke", - "id": "EwBFiqTar_s" - }, - { - "title": "Jimmy Ruffin - What Becomes Of The Broken Hearted - Karaoke Version from Zoom Karaoke", - "id": "7BHPFKtOnaU" - }, - { - "title": "McFly - Party Girl - Karaoke Version from Zoom Karaoke", - "id": "lT98e4vOiLg" - }, - { - "title": "Jerry Lee Lewis - Great Balls Of Fire - Karaoke Version from Zoom Karaoke", - "id": "RlFFlVjfCKw" - }, - { - "title": "Jamiroquai - Space Cowboy (Classic Radio Remix) - Karaoke Version from Zoom Karaoke", - "id": "CbG7aexaQ0o" - }, - { - "title": "Marvin Gaye - Too Busy Thinking About My Baby - Karaoke Version from Zoom Karaoke", - "id": "B0nNpYcsv2U" - }, - { - "title": "Kim Carnes - Bette Davis Eyes - Karaoke Version from Zoom Karaoke", - "id": "4cewDg89cu0" - }, - { - "title": "Take That - The Flood - Karaoke Version from Zoom Karaoke", - "id": "tg5IfzkLqnY" - }, - { - "title": "Donna Summer - I Don't Wanna Get Hurt - Karaoke Version from Zoom Karaoke", - "id": "kXFPtrMQBnc" - }, - { - "title": "The Baseballs - Love In This Club - Karaoke Version from Zoom Karaoke", - "id": "mEW57yK3vNk" - }, - { - "title": "Sonia - You'll Never Stop Me From Loving You - Karaoke Version from Zoom Karaoke", - "id": "c3b1bn5DyY4" - }, - { - "title": "Brother Beyond - The Harder I Try - Karaoke Version from Zoom Karaoke", - "id": "TOJPpI2Ba2Y" - }, - { - "title": "Eurythmics - Thorn In My Side - Karaoke Version from Zoom Karaoke", - "id": "SGHwVIndExs" - }, - { - "title": "Johnny Burnette - You're Sixteen - Karaoke Version from Zoom Karaoke", - "id": "LT3DAtCJrsc" - }, - { - "title": "Lou Christie - I'm Gonna Make You Mine - Karaoke Version from Zoom Karaoke", - "id": "IGU15hW4Jfo" - }, - { - "title": "Tracy Chapman - Fast Car - Karaoke Version from Zoom Karaoke", - "id": "HDqQWFviVHA" - }, - { - "title": "Kraftwerk - The Model - Karaoke Version from Zoom Karaoke", - "id": "1aH5Kbs2pgM" - }, - { - "title": "Hot Chocolate - It Started With A Kiss - Karaoke Version from Zoom Karaoke", - "id": "-MhZ5Xz3fmE" - }, - { - "title": "The Baseballs - Let's Get Loud - Karaoke Version from Zoom Karaoke", - "id": "vTRMrqkiwAw" - }, - { - "title": "The Saturdays - Missing You - Karaoke Version from Zoom Karaoke", - "id": "tTxAHBhF3gw" - }, - { - "title": "Tom Jones - Lodi - Karaoke Version from Zoom Karaoke", - "id": "kwpe_NKfwaQ" - }, - { - "title": "Little Richard - Good Golly Miss Molly - Karaoke Version from Zoom Karaoke", - "id": "WQDlk5KpkI8" - }, - { - "title": "Alexandra Burke - Start Without You (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "DogpxoKS5MU" - }, - { - "title": "The Bluebells - Young At Heart - Karaoke Version from Zoom Karaoke", - "id": "-x_f8Vmp7w8" - }, - { - "title": "Pratt And McClain - Happy Days (T.V. Theme) - Karaoke Version from Zoom Karaoke", - "id": "XIYDie0S4dE" - }, - { - "title": "Rocky Sharpe & The Replays - Rama Lama Ding Dong - Karaoke Version from Zoom Karaoke", - "id": "MZruSz2Z9Sc" - }, - { - "title": "The Baseballs - Hey There Delilah - Karaoke Version from Zoom Karaoke", - "id": "9UAfJmpy17U" - }, - { - "title": "The Baseballs - Angels - Karaoke Version from Zoom Karaoke", - "id": "jHGcN-xsRG4" - }, - { - "title": "Danny & The Juniors - At The Hop - Karaoke Version from Zoom Karaoke", - "id": "9AbvrIQkjIw" - }, - { - "title": "Robbie Williams And Gary Barlow - Shame (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "ySFbxvBzmd8" - }, - { - "title": "Madness - Driving In My Car - Karaoke Version from Zoom Karaoke", - "id": "wSaqJlQd6iE" - }, - { - "title": "Coast To Coast - (Do) The Hucklebuck - Karaoke Version from Zoom Karaoke", - "id": "uypSatmmXvs" - }, - { - "title": "Robbie Williams And Gary Barlow - Shame (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "lZ2CMMRr9W8" - }, - { - "title": "The Rubettes - Jukebox Jive - Karaoke Version from Zoom Karaoke", - "id": "ja45Sn_a4n0" - }, - { - "title": "Michael Buble - Hollywood - Karaoke Version from Zoom Karaoke", - "id": "j4Wefj9NoI8" - }, - { - "title": "Rocky Sharpe & The Replays - Shout Shout (Knock Yourself Out) - Karaoke Version from Zoom Karaoke", - "id": "iAJ_CtpZFDc" - }, - { - "title": "Katy Perry - Teenage Dream - Karaoke Version from Zoom Karaoke", - "id": "dyaVtajeW8o" - }, - { - "title": "Norman Wisdom - Up In The World (Film Version) - Karaoke Version from Zoom Karaoke", - "id": "bhpQl9-w2ME" - }, - { - "title": "Darts - Come Back My Love - Karaoke Version from Zoom Karaoke", - "id": "Wk_l8VDcLiI" - }, - { - "title": "Johnny Cymbal - Mr Bassman - Karaoke Version from Zoom Karaoke", - "id": "RJzi0DC0kzs" - }, - { - "title": "The Baseballs - The Look - Karaoke Version from Zoom Karaoke", - "id": "OwfiEzeIT20" - }, - { - "title": "Jerry Lee Lewis - Whole Lotta Shakin' Goin' On - Karaoke Version from Zoom Karaoke", - "id": "M8UIASED93E" - }, - { - "title": "The Wanted - All Time Low - Karaoke Version from Zoom Karaoke", - "id": "EKjPqqojBjQ" - }, - { - "title": "Darts - Daddy Cool/The Girl Can't Help It (Medley) - Karaoke Version from Zoom Karaoke", - "id": "E3gXI46am4A" - }, - { - "title": "The Baseballs - Hot 'N' Cold - Karaoke Version from Zoom Karaoke", - "id": "6Sumd-RxJ48" - }, - { - "title": "Little Richard - Tutti Frutti - Karaoke Version from Zoom Karaoke", - "id": "4nwhg-QKf3w" - }, - { - "title": "Madness - Tomorrow's Just Another Day - Karaoke Version from Zoom Karaoke", - "id": "3al7c-qKnRw" - }, - { - "title": "Bishop Briggs - White Flag - Karaoke Version from Zoom Karaoke", - "id": "2AeWzp8BkPc" - }, - { - "title": "Neil Diamond - Summer Love - Karaoke Version from Zoom Karaoke", - "id": "q0TbMbWY6s0" - }, - { - "title": "Neil Diamond - Yesterday's Songs - Karaoke Version from Zoom Karaoke", - "id": "LCJ-kQfieZo" - }, - { - "title": "Dickie Valentine - Mr Sandman - Karaoke Version from Zoom Karaoke", - "id": "1G_lfne9XJ4" - }, - { - "title": "Ronnie Hilton - A Windmill In Old Amsterdam - Karaoke Version from Zoom Karaoke", - "id": "FK8ADMVaGMY" - }, - { - "title": "Vic Damone - On The Street Where You (Live) - Karaoke Version from Zoom Karaoke", - "id": "91LxjmZeXRQ" - }, - { - "title": "Dickie Valentine - The Finger Of Suspicion - Karaoke Version from Zoom Karaoke", - "id": "t14cEn3SVa4" - }, - { - "title": "Neil Diamond - Hey Louise - Karaoke Version from Zoom Karaoke", - "id": "HX0cvDVquqA" - }, - { - "title": "Gladys Knight & The Pips - Best Thing That Ever Happened To Me - Karaoke Version from Zoom", - "id": "A38saOl9rog" - }, - { - "title": "The Pet Shop Boys - Somewhere - Karaoke Version from Zoom Karaoke", - "id": "bcrKZCSXrH0" - }, - { - "title": "Nick Berry - Every Loser Wins - Karaoke Version from Zoom Karaoke", - "id": "CHwp7rQDouA" - }, - { - "title": "Dean Martin - Under The Bridges Of Paris - Karaoke Version from Zoom Karaoke", - "id": "0O27dhFhoUA" - }, - { - "title": "Etta James - I Just Wanna Make Love To You - Karaoke Version from Zoom Karaoke", - "id": "wp7wgVlPwxU" - }, - { - "title": "Tom Jones - Turn On Your Love Light (Live) - Karaoke Version from Zoom Karaoke", - "id": "v7sXzk91cF4" - }, - { - "title": "Neil Diamond - Kentucky Woman - Karaoke Version from Zoom Karaoke", - "id": "r9gPTHtJwfw" - }, - { - "title": "The Crystals - Then He Kissed Me - Karaoke Version from Zoom Karaoke", - "id": "0H8CC3vN_x0" - }, - { - "title": "Neil Diamond - Cherry, Cherry - Karaoke Version from Zoom Karaoke", - "id": "mdqt2YpzyeE" - }, - { - "title": "Sally Oldfield - Mirrors - Karaoke Version from Zoom Karaoke", - "id": "e-1ckNgmqH4" - }, - { - "title": "Dean Martin - Standing On The Corner - Karaoke Version from Zoom Karaoke", - "id": "6sNE2ElMxbs" - }, - { - "title": "Black Lace - Superman - Karaoke Version from Zoom Karaoke", - "id": "a80kPGO1a9s" - }, - { - "title": "Gladys Knight & The Pips - Baby Don't Change Your Mind - Karaoke Version from Zoom Karaoke", - "id": "o5SP45O2XUM" - }, - { - "title": "Maxine Nightingale - Right Back Where We Started From - Karaoke Version from Zoom Karaoke", - "id": "abR3-y_-TzU" - }, - { - "title": "Gladys Knight & The Pips - Midnight Train To Georgia - Karaoke Version from Zoom Karaoke", - "id": "8fRWR0UrDBk" - }, - { - "title": "Dickie Valentine - Old Piano Rag - Karaoke Version from Zoom Karaoke", - "id": "0rVbyxg0ghg" - }, - { - "title": "Neil Diamond - Acapulco - Karaoke Version from Zoom Karaoke", - "id": "Q6X7TMDD4RY" - }, - { - "title": "Dickie Valentine - The Dickie Valentine Medley - Karaoke Version from Zoom Karaoke", - "id": "1NX1vwsZx-0" - }, - { - "title": "Neil Diamond - Red, Red Wine - Karaoke Version from Zoom Karaoke", - "id": "nVmEXG_B6Dk" - }, - { - "title": "Tom Jones - A Boy From Nowhere (Live) - Karaoke Version from Zoom Karaoke", - "id": "Y_5gY5m0pdw" - }, - { - "title": "Ronnie Hilton - No Other Love - Karaoke Version from Zoom Karaoke", - "id": "JVdZxgrzzvw" - }, - { - "title": "The Marvelettes - When You're Young And In Love - Karaoke Version from Zoom Karaoke", - "id": "Y46Y6gaEVNM" - }, - { - "title": "Neil Diamond - Brother Love's Travelling Salvation Show - Karaoke Version from Zoom Karaoke", - "id": "QgXkxqIubaw" - }, - { - "title": "The Rubettes - Tonight - Karaoke Version from Zoom Karaoke", - "id": "hfYfFsfnixI" - }, - { - "title": "Al Martino - Here In My Heart - Karaoke Version from Zoom Karaoke", - "id": "udjV6RYD6LY" - }, - { - "title": "The Wanted - Gold Forever - Karaoke Version from Zoom Karaoke", - "id": "hSphdbGdSMk" - }, - { - "title": "Nicole Scherzinger - Don't Hold Your Breath - Karaoke Version from Zoom Karaoke", - "id": "-3WsPBuyO-I" - }, - { - "title": "Alexis Jordan - Good Girl - Karaoke Version from Zoom Karaoke", - "id": "fn849X_IM6s" - }, - { - "title": "Liverpool Express - Every Man Must Have A Dream - Karaoke Version from Zoom Karaoke", - "id": "yFFyPZbT_mA" - }, - { - "title": "Neil Diamond - Desiree - Karaoke Version from Zoom Karaoke", - "id": "0o_H9yXQQ_8" - }, - { - "title": "Neil Diamond - Brooklyn Roads - Karaoke Version from Zoom Karaoke", - "id": "RO40qw4oWTo" - }, - { - "title": "Dana - Fairytale - Karaoke Version from Zoom Karaoke", - "id": "3x7k4-HS9LI" - }, - { - "title": "Aretha Franklin - Respect - Karaoke Version from Zoom Karaoke", - "id": "DaDFQ0WFTA8" - }, - { - "title": "Aretha Franklin - Think - Karaoke Version from Zoom Karaoke", - "id": "62b5KeNBs2Y" - }, - { - "title": "Dean Martin - Innamorata (Sweetheart) - Karaoke Version from Zoom Karaoke", - "id": "itTZAXGrUZ8" - }, - { - "title": "Berni Flint - I Don't Want To Put A Hold On You - Karaoke Version from Zoom Karaoke", - "id": "LJ4agHBpYvA" - }, - { - "title": "Brendon - Gimme Some - Karaoke Version from Zoom Karaoke", - "id": "eX316GRHZwg" - }, - { - "title": "Paul Young - Love Of The Common People - Karaoke Version from Zoom Karaoke", - "id": "N0ANbxeahPw" - }, - { - "title": "Neil Diamond - Shilo - Karaoke Version from Zoom Karaoke", - "id": "HPwJGbfPGUg" - }, - { - "title": "Neil Diamond - Play Me - Karaoke Version from Zoom Karaoke", - "id": "3lJQLg_7AfA" - }, - { - "title": "Dickie Valentine - I Wonder - Karaoke Version from Zoom Karaoke", - "id": "-3ngdVyOneY" - }, - { - "title": "Eddie Fisher - Outside Of Heaven - Karaoke Version from Zoom Karaoke", - "id": "vjiH_p_pmjY" - }, - { - "title": "Dean Martin - Kiss - Karaoke Version from Zoom Karaoke", - "id": "8ih30RiA2ys" - }, - { - "title": "1910 Fruitgum Company - Simon Says - Karaoke Version from Zoom Karaoke", - "id": "yY9aE0zLXNs" - }, - { - "title": "The Four Tops - Loco In Acapulco - Karaoke Version from Zoom Karaoke", - "id": "w0YvWUPtVV4" - }, - { - "title": "David Whitfield - Answer Me - Karaoke Version from Zoom Karaoke", - "id": "7mVKMbBEmCk" - }, - { - "title": "Laura Branigan - Gloria - Karaoke Version from Zoom Karaoke", - "id": "ViKR8VG_Iy8" - }, - { - "title": "Brian And Michael - Matchstalk Men And Matchstalk Cats And Dogs (For Solo Male) - Karaoke Version", - "id": "ApYFeYT9xC4" - }, - { - "title": "Fleetwood Mac - Little Lies - Karaoke Version from Zoom Karaoke", - "id": "hF9uUf4R6XY" - }, - { - "title": "Brian And Michael - Matchstalk Men And Matchstalk Cats And Dogs (For Duo) - Karaoke Version", - "id": "m1UUhUr4zTA" - }, - { - "title": "Take That - Kidz - Karaoke Version from Zoom Karaoke", - "id": "-3j3qK_OGEM" - }, - { - "title": "Sheena Easton - Modern Girl - Karaoke Version from Zoom Karaoke", - "id": "a4IyUrdpsEI" - }, - { - "title": "Don Cornell - Hold My Hand - Karaoke Version from Zoom Karaoke", - "id": "ZE76dpeY0eY" - }, - { - "title": "Lady Gaga - Born This Way - Karaoke Version from Zoom Karaoke", - "id": "pj2h5pzwt00" - }, - { - "title": "Dickie Valentine - Christmas Alphabet - Karaoke Version from Zoom Karaoke", - "id": "kr3LCHgxiVw" - }, - { - "title": "Enrique Iglesias - Tonight I'm Lovin' You (With Rapper) - Karaoke Version from Zoom Karaoke", - "id": "0xSWLAeLUSc" - }, - { - "title": "Take That - S.O.S. - Karaoke Version from Zoom Karaoke", - "id": "j9edtaZ9p_o" - }, - { - "title": "The Corrs - Irresistible - Karaoke Version from Zoom Karaoke", - "id": "Gaw-pYO4XTc" - }, - { - "title": "JLS - Eyes Wide Shut - Karaoke Version from Zoom Karaoke", - "id": "C6IoBfOInx4" - }, - { - "title": "Eddie Fisher - I'm Walking Behind You - Karaoke Version from Zoom Karaoke", - "id": "OiKCO-PLgCs" - }, - { - "title": "Sylvia - Y Viva Espana - Karaoke Version from Zoom Karaoke", - "id": "rRIy1v5qRko" - }, - { - "title": "Jessie J - Price Tag (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "GDlX0GciTrU" - }, - { - "title": "The Corrs - Summer Sunshine - Karaoke Version from Zoom Karaoke", - "id": "GwGfQy92apg" - }, - { - "title": "Heart - Alone - Karaoke Version from Zoom Karaoke", - "id": "q11rRc5t25w" - }, - { - "title": "Them - Here Comes The Night - Karaoke Version from Zoom Karaoke", - "id": "ZJZYIZOEtuA" - }, - { - "title": "The Tams - Be Young, Be Foolish, Be Happy - Karaoke Version from Zoom Karaoke", - "id": "TnxoOEids78" - }, - { - "title": "The Four Seasons - Bye Bye Baby - Karaoke Version from Zoom Karaoke", - "id": "OlrbGC60ZgY" - }, - { - "title": "The Corrs - Runaway - Karaoke Version from Zoom Karaoke", - "id": "IWSl4ngHiy8" - }, - { - "title": "Frankie Valli - My Eyes Adored You - Karaoke Version from Zoom Karaoke", - "id": "37iG-4WfHXM" - }, - { - "title": "Owen Paul - My Favourite Waste Of Time - Karaoke Version from Zoom Karaoke", - "id": "C_KFBOdrC80" - }, - { - "title": "The Corrs - What Can I Do (Tin Tin Out Remix) - Karaoke Version from Zoom Karaoke", - "id": "-Wl1Dw9Nb74" - }, - { - "title": "Them - Gloria - Karaoke Version from Zoom Karaoke", - "id": "XCZC1xsr1s0" - }, - { - "title": "The Corrs - Would You Be Happier - Karaoke Version from Zoom Karaoke", - "id": "AUmh5Ygi8X0" - }, - { - "title": "The Wanted - Lose My Mind - Karaoke Version from Zoom Karaoke", - "id": "k3Y5i2XXSNU" - }, - { - "title": "Tom Jones - Resurrection Shuffle (Live) - Karaoke Version from Zoom Karaoke", - "id": "7AIU8ZpsMC8" - }, - { - "title": "The Four Seasons - Opus 17 (Don't You Worry 'Bout Me) - Karaoke Version from Zoom Karaoke", - "id": "Npf4RcXA4Xg" - }, - { - "title": "The Four Seasons - Working My Way Back To You - Karaoke Version from Zoom Karaoke", - "id": "Hw8v3YnzFYk" - }, - { - "title": "The Corrs - Radio - Karaoke Version from Zoom Karaoke", - "id": "q7DZcuWcrB0" - }, - { - "title": "The Corrs - Breathless - Karaoke Version from Zoom Karaoke", - "id": "enM9VtdQqZE" - }, - { - "title": "Sweet Sensation - Sad Sweet Dreamer - Karaoke Version from Zoom Karaoke", - "id": "nI7nIgLjAXA" - }, - { - "title": "Tom Jones - Do I Ever Cross Your Mind - Karaoke Version from Zoom Karaoke", - "id": "g4zCswh9UqY" - }, - { - "title": "The Bay City Rollers - I Only Want To Be With You - Karaoke Version from Zoom Karaoke", - "id": "Fsu2aPcK4bg" - }, - { - "title": "The Corrs - So Young - Karaoke Version from Zoom Karaoke", - "id": "x4_vzRYC4Vw" - }, - { - "title": "Stephanie De Sykes - Born With A Smile On My Face - Karaoke Version from Zoom Karaoke", - "id": "mHW-s2Xn4uQ" - }, - { - "title": "The Corrs - Give Me A Reason - Karaoke Version from Zoom Karaoke", - "id": "Csyq4sK9DHo" - }, - { - "title": "The Corrs - Dreams - Karaoke Version from Zoom Karaoke", - "id": "2D7OnOeUgxY" - }, - { - "title": "Griff - Love Is A Compass - Karaoke Version from Zoom Karaoke", - "id": "eKbK8N9w3Ro" - }, - { - "title": "Brinsley Schwarz - (What's So Funny 'Bout) Peace Love And Understanding - Karaoke Version", - "id": "OQUz8UG7mOM" - }, - { - "title": "Piano Singalong - The Trail Of The Lonesome Pine - Karaoke Version from Zoom Karaoke", - "id": "3smfk-6fH7g" - }, - { - "title": "The Dubliners - Seven Drunken Nights - Karaoke Version from Zoom Karaoke", - "id": "UWlturP6SWI" - }, - { - "title": "The Dubliners - Whiskey In The Jar - Karaoke Version from Zoom Karaoke", - "id": "TJdgWBbLIEI" - }, - { - "title": "Scouting For Girls - Love How It Hurts - Karaoke Version from Zoom Karaoke", - "id": "NvEUWrvjlbc" - }, - { - "title": "Alexandra Stan - Mr Saxobeat - Karaoke Version from Zoom Karaoke", - "id": "DiWzMgOmdBc" - }, - { - "title": "Piano Singalong - You Must Have Been A Beautiful Baby - Karaoke Version from Zoom Karaoke", - "id": "B_eu-Em4rNA" - }, - { - "title": "Piano Singalong - Diamonds Are A Girl's Best Friend - Karaoke Version from Zoom Karaoke", - "id": "orAyas-PMns" - }, - { - "title": "Ronan Keating - If Tomorrow Never Comes - Karaoke Version from Zoom Karaoke", - "id": "j7IPzITefJo" - }, - { - "title": "Piano Singalong - Buttons And Bows - Karaoke Version from Zoom Karaoke", - "id": "QswnFbhpHK4" - }, - { - "title": "Piano Singalong - Pack Up Your Troubles - Karaoke Version from Zoom Karaoke", - "id": "2W1Qy46l8uw" - }, - { - "title": "Mis Teeq - Scandalous - Karaoke Version from Zoom Karaoke", - "id": "zL5DWCfp4bo" - }, - { - "title": "The Pogues And The Dubliners - The Irish Rover - Karaoke Version from Zoom Karaoke", - "id": "yLqzGr0LbFc" - }, - { - "title": "Piano Singalong - Yes Sir, That's My Baby - Karaoke Version from Zoom Karaoke", - "id": "s3Bt0YO4AXI" - }, - { - "title": "Piano Singalong - Hello, Hello, Who's Your Lady Friend - Karaoke Version from Zoom Karaoke", - "id": "r3E7VD6V3OY" - }, - { - "title": "Enrique Iglesias - Hero - Karaoke Version from Zoom Karaoke", - "id": "ps7k9-N9Q_Y" - }, - { - "title": "S Club 7 - Don't Stop Movin' - Karaoke Version from Zoom Karaoke", - "id": "p3JRR96Ar2Q" - }, - { - "title": "Piano Singalong - Lily Of Laguna - Karaoke Version from Zoom Karaoke", - "id": "dXq0hdIjdhQ" - }, - { - "title": "Weird Al Yankovic - Ebay - Karaoke Version from Zoom Karaoke", - "id": "TZsC-0xcMtM" - }, - { - "title": "Piano Singalong - We'll Meet Again - Karaoke Version from Zoom Karaoke", - "id": "Eox6EnnDcvU" - }, - { - "title": "Gareth Gates - Spirit In The Sky - Karaoke Version from Zoom Karaoke", - "id": "A5jP9NVyOsM" - }, - { - "title": "Piano Singalong - Daddy Wouldn't Buy Me A Bow Wow - Karaoke Version from Zoom Karaoke", - "id": "tQVMg2YQs6g" - }, - { - "title": "Natalie Casey - Chick Chick Chicken - Karaoke Version from Zoom Karaoke", - "id": "oGF1eE9ksy0" - }, - { - "title": "Piano Singalong - Ain't That A Grand And Glorious Feeling - Karaoke Version from Zoom Kara", - "id": "iLOttYdOREM" - }, - { - "title": "Atomic Kitten - The Tide Is High Get The Feeling - Karaoke Version from Zoom Karaoke", - "id": "i1TVYLms6s0" - }, - { - "title": "Piano Singalong - You Made Me Love You - Karaoke Version from Zoom Karaoke", - "id": "f2w3LCGgn1w" - }, - { - "title": "Will Young - Evergreen - Karaoke Version from Zoom Karaoke", - "id": "ZeJk8r_IFGg" - }, - { - "title": "The Pogues - Sally Maclennane - Karaoke Version from Zoom Karaoke", - "id": "XBJfp1QXO-A" - }, - { - "title": "Dave Edmunds - Girls Talk (Lower Key) - Karaoke Version from Zoom Karaoke", - "id": "UAFEhKhKHng" - }, - { - "title": "Piano Singalong - Daisy Bell - Karaoke Version from Zoom Karaoke", - "id": "PxUespMvp_Y" - }, - { - "title": "Patrick Swayze And Wendy Fraser - She's Like The Wind (Duet) - Karaoke Version from Zoom Kar", - "id": "LeFOPUk9luw" - }, - { - "title": "Nick Lowe - Heart Of The City - Karaoke Version from Zoom Karaoke", - "id": "Jycf2YQRuDs" - }, - { - "title": "Sophie Ellis Bextor - Murder On The Dancefloor - Karaoke Version from Zoom Karaoke", - "id": "FUX_pgEWfjk" - }, - { - "title": "Ed Sheeran - The A Team - Karaoke Version from Zoom Karaoke", - "id": "39B76VqUFgA" - }, - { - "title": "Atomic Kitten - Whole Again - Karaoke Version from Zoom Karaoke", - "id": "27dIs3cQtog" - }, - { - "title": "Piano Singalong - Tiptoe Through The Tulips - Karaoke Version from Zoom Karaoke", - "id": "wLat4gyTQTc" - }, - { - "title": "Piano Singalong - I'm Forever Blowing Bubbles - Karaoke Version from Zoom Karaoke", - "id": "u-5TS586EdY" - }, - { - "title": "Alex Gaudino feat Kelly Rowland - What A Feeling - Karaoke Version from Zoom Karaoke", - "id": "p88z4OxGIFQ" - }, - { - "title": "Piano Singalong - 21 Today - Karaoke Version from Zoom Karaoke", - "id": "_g44dDEWmP0" - }, - { - "title": "Piano Singalong - By The Light Of The Silvery Moon - Karaoke Version from Zoom Karaoke", - "id": "_DJiYm2VA9k" - }, - { - "title": "Piano Singalong - California Here I Come - Karaoke Version from Zoom Karaoke", - "id": "SAyxq-BL6cI" - }, - { - "title": "The Pogues - Dark Streets Of London - Karaoke Version from Zoom Karaoke", - "id": "GtyP6Ns_WsQ" - }, - { - "title": "Piano Singalong - Wish Me Luck As You Wave Me Goodbye - Karaoke Version from Zoom Karaoke", - "id": "G1Coi7_02-Q" - }, - { - "title": "The Pogues - Dirty Old Town - Karaoke Version from Zoom Karaoke", - "id": "AtqE--O4uxM" - }, - { - "title": "Lady Gaga - The Edge Of Glory - Karaoke Version from Zoom Karaoke", - "id": "80A5IJEkFxg" - }, - { - "title": "Piano Singalong - When You're Smiling - Karaoke Version from Zoom Karaoke", - "id": "6zCfYK0vOGM" - }, - { - "title": "Piano Singalong - I Do Like To Be Beside The Seaside - Karaoke Version from Zoom Karaoke", - "id": "6obDPPgc2y8" - }, - { - "title": "Take That - Love Love - Karaoke Version from Zoom Karaoke", - "id": "5BD5aIS1qK4" - }, - { - "title": "Piano Singalong - Get Me To The Church On Time - Karaoke Version from Zoom Karaoke", - "id": "y5ulYTh5w-M" - }, - { - "title": "Piano Singalong - We're Gonna Hang Out The Washing On The Siegfried Line - Karaoke Version", - "id": "wg6CSoOUT6g" - }, - { - "title": "Piano Singalong - Que Sera Sera - Karaoke Version from Zoom Karaoke", - "id": "rQzMZsyf6a8" - }, - { - "title": "Piano Singalong - As Time Goes By - Karaoke Version from Zoom Karaoke", - "id": "pPuxSkLEU8c" - }, - { - "title": "Ronan Keating - When You Say Nothing At All - Karaoke Version from Zoom Karaoke", - "id": "oi_WkaZSZpU" - }, - { - "title": "Piano Singalong - Show Me The Way To Go Home - Karaoke Version from Zoom Karaoke", - "id": "jseNyW-nCcg" - }, - { - "title": "The Kinks - Come Dancing - Karaoke Version from Zoom Karaoke", - "id": "jYIzH7Qi8e8" - }, - { - "title": "Piano Singalong - On Mother Kelly's Doorstep - Karaoke Version from Zoom Karaoke", - "id": "f2rAA93U9a4" - }, - { - "title": "Piano Singalong - The Lambeth Walk - Karaoke Version from Zoom Karaoke", - "id": "eLyuMlXF2W8" - }, - { - "title": "Piano Singalong - Happy Birthday - Karaoke Version from Zoom Karaoke", - "id": "bm38VCTj3nQ" - }, - { - "title": "Piano Singalong - Don't Dilly Dally - Karaoke Version from Zoom Karaoke", - "id": "_7L1pLNygLw" - }, - { - "title": "Aqua - Barbie Girl (Duet) - Karaoke Version from Zoom Karaoke", - "id": "Z_1bWGqeKqk" - }, - { - "title": "Black Lace - The Hokey Cokey - Karaoke Version from Zoom Karaoke", - "id": "Yh-UnfggkrY" - }, - { - "title": "Piano Singalong - Ma He's Making Eyes At Me - Karaoke Version from Zoom Karaoke", - "id": "W4EmtddENwc" - }, - { - "title": "Aqua - Barbie Girl (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "W28FCLk0dJo" - }, - { - "title": "Piano Singalong - Five Foot Two, Eyes Of Blue - Karaoke Version from Zoom Karaoke", - "id": "Rtc82cHqs9Q" - }, - { - "title": "Piano Singalong - Down At The Old Bull And Bush - Karaoke Version from Zoom Karaoke", - "id": "QoI8mB4ZsCo" - }, - { - "title": "Black Lace - I Am The Music Man - Karaoke Version from Zoom Karaoke", - "id": "H64mfaK7KXE" - }, - { - "title": "Carly Simon - You're So Vain - Karaoke Version from Zoom Karaoke", - "id": "8tWM6wtaNWc" - }, - { - "title": "Piano Singalong - Bring Me Sunshine - Karaoke Version from Zoom Karaoke", - "id": "1OPp4__dGR4" - }, - { - "title": "Piano Singalong - Knees Up Mother Brown - Karaoke Version from Zoom Karaoke", - "id": "-usVxrLOPbo" - }, - { - "title": "The Killers - Mr Brightside - Karaoke Version from Zoom Karaoke", - "id": "NvZyU7ij_bs" - }, - { - "title": "Christina Perri - Jar Of Hearts - Karaoke Version from Zoom Karaoke", - "id": "yCP90-vvDNE" - }, - { - "title": "The Killers - All These Things That I've Done - Karaoke Version from Zoom Karaoke", - "id": "p55_5PPGz54" - }, - { - "title": "Shania Twain - You're Still The One - Karaoke Version from Zoom Karaoke", - "id": "jtWm8yVNJsQ" - }, - { - "title": "Kylie Minogue And Jason Donovan - Especially For You - Karaoke Version from Zoom Karaoke", - "id": "cLN7f08IX0E" - }, - { - "title": "Bruno Mars - The Lazy Song - Karaoke Version from Zoom Karaoke", - "id": "KkpXiJVU9aU" - }, - { - "title": "Black Sabbath - Paranoid - Karaoke Version from Zoom Karaoke", - "id": "6tEvAw_wJzQ" - }, - { - "title": "Neil Diamond - Crunchy Granola Suite - Karaoke Version from Zoom Karaoke", - "id": "zRZG7fVGPUY" - }, - { - "title": "Adam Faith - Lonely Pup (In A Christmas Shop) - Karaoke Version from Zoom Karaoke", - "id": "dRnjpmRBC-E" - }, - { - "title": "Tom Jones - Don't Fight It - Karaoke Version from Zoom Karaoke", - "id": "b9VVYnzCnqg" - }, - { - "title": "The Killers - Somebody Told Me - Karaoke Version from Zoom Karaoke", - "id": "XDX5WhPEk6o" - }, - { - "title": "Shania Twain - Man! I Feel Like A Woman - Karaoke Version from Zoom Karaoke", - "id": "VwVuEZeM264" - }, - { - "title": "Neil Diamond - Holly Holy - Karaoke Version from Zoom Karaoke", - "id": "R9ZymVls3es" - }, - { - "title": "Russ Abbot - Atmosphere - Karaoke Version from Zoom Karaoke", - "id": "Pxnhzkc3FHs" - }, - { - "title": "The Killers - Spaceman - Karaoke Version from Zoom Karaoke", - "id": "OaHHx-JVyFo" - }, - { - "title": "The Killers - Bones - Karaoke Version from Zoom Karaoke", - "id": "Lm2TxARhfNA" - }, - { - "title": "Rocky Horror Picture Show - Time Warp - Karaoke Version from Zoom Karaoke", - "id": "Jg4FyXJDg9c" - }, - { - "title": "DJ Otzi - Hey Baby - Karaoke Version from Zoom Karaoke", - "id": "Sab6X050j2Q" - }, - { - "title": "Tom Jones - Danny Boy (Live) - Karaoke Version from Zoom Karaoke", - "id": "zA8jPpjnMyo" - }, - { - "title": "The Killers - Smile Like You Mean It - Karaoke Version from Zoom Karaoke", - "id": "ufEYnw31udA" - }, - { - "title": "Minnie Riperton - Lovin' You - Karaoke Version from Zoom Karaoke", - "id": "la1jCtezlOY" - }, - { - "title": "Raffaella Carra - Do It Do It Again - Karaoke Version from Zoom Karaoke", - "id": "_ES8Sc1Q7lw" - }, - { - "title": "Neil Diamond - If You Know What I Mean - Karaoke Version from Zoom Karaoke", - "id": "YZfUvpII0JA" - }, - { - "title": "Neil Diamond - Dry Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "VUzz8Q33zc4" - }, - { - "title": "Neil Diamond - I'm A Believer - Karaoke Version from Zoom Karaoke", - "id": "QGNa5DM_9Nk" - }, - { - "title": "Black Lace - Do The Conga - Karaoke Version from Zoom Karaoke", - "id": "Mfm6SR_Nt2A" - }, - { - "title": "The Backstreet Boys - I Want It That Way - Karaoke Version from Zoom Karaoke", - "id": "Jour9Cxc8xM" - }, - { - "title": "The Killers - Read My Mind - Karaoke Version from Zoom Karaoke", - "id": "GVw0zWJ_ccI" - }, - { - "title": "Neil Diamond - Stargazer - Karaoke Version from Zoom Karaoke", - "id": "6TDkZlJ4W68" - }, - { - "title": "The Killers - When You Were Young - Karaoke Version from Zoom Karaoke", - "id": "45fdDxzhPWQ" - }, - { - "title": "The Spin Doctors - Two Princes - Karaoke Version from Zoom Karaoke", - "id": "gvPbVe6D-PY" - }, - { - "title": "No Mercy - Where Do You Go - Karaoke Version from Zoom Karaoke", - "id": "7f957cWKtM8" - }, - { - "title": "The Beautiful South - Rotterdam - Karaoke Version from Zoom Karaoke", - "id": "sr-PI12jVm4" - }, - { - "title": "The Verve - Lucky Man - Karaoke Version from Zoom Karaoke", - "id": "s8ZcsKngbv0" - }, - { - "title": "Will Young - Jealousy - Karaoke Version from Zoom Karaoke", - "id": "rVbBD1hZtyI" - }, - { - "title": "Tom Jones - The Man Who Knows Too Much - Karaoke Version from Zoom Karaoke", - "id": "d93Q9O5oa9Q" - }, - { - "title": "Lady Gaga - You And I - Karaoke Version from Zoom Karaoke", - "id": "_ApdOKjznEE" - }, - { - "title": "Boyzone - Father And Son - Karaoke Version from Zoom Karaoke", - "id": "POGkd92DAoY" - }, - { - "title": "Cee Lo Green - Cry Baby - Karaoke Version from Zoom Karaoke", - "id": "N9kZUcNYwrA" - }, - { - "title": "The Verve - Bitter Sweet Symphony - Karaoke Version from Zoom Karaoke", - "id": "FKGwe5tf_H4" - }, - { - "title": "Ce Ce Peniston - Finally - Karaoke Version from Zoom Karaoke", - "id": "EgaOER2-r_U" - }, - { - "title": "Jimmy Nail - Crocodile Shoes - Karaoke Version from Zoom Karaoke", - "id": "AmArmZgVnhE" - }, - { - "title": "Matt Cardle - Run For Your Life - Karaoke Version from Zoom Karaoke", - "id": "AXDG6-bvB9I" - }, - { - "title": "The Verve - The Drugs Don't Work - Karaoke Version from Zoom Karaoke", - "id": "500MxDQKQJw" - }, - { - "title": "Dappy - No Regrets - Karaoke Version from Zoom Karaoke", - "id": "1h8NBjkKX6A" - }, - { - "title": "Tom Jones - Not Responsible - Karaoke Version from Zoom Karaoke", - "id": "p6CE7ovwDbo" - }, - { - "title": "Matthews Southern Comfort - Woodstock - Karaoke Version from Zoom Karaoke", - "id": "JPYfHkmV93g" - }, - { - "title": "One Direction - What Makes You Beautiful - Karaoke Version from Zoom Karaoke", - "id": "6Fs_wAaCs7U" - }, - { - "title": "Corona - The Rhythm Of The Night - Karaoke Version from Zoom Karaoke", - "id": "3O_d7PXufoc" - }, - { - "title": "Arctic Monkeys - I Bet You Look Good On The Dancefloor - Karaoke Version from Zoom Karaoke", - "id": "G0thW2OOPYM" - }, - { - "title": "Bruce Springsteen - Born To Run - Karaoke Version from Zoom Karaoke", - "id": "h7oFTKHJiKQ" - }, - { - "title": "Bruno Mars - Marry You - Karaoke Version from Zoom Karaoke", - "id": "WwjhQ8FCIH8" - }, - { - "title": "Gene Vincent - Race With The Devil - Karaoke Version from Zoom Karaoke", - "id": "DvrpCr937E8" - }, - { - "title": "Gene Vincent - Blue Jean Bop - Karaoke Version from Zoom Karaoke", - "id": "v24otmiQ5Uo" - }, - { - "title": "Gallagher And Lyle - I Wanna Stay With You - Karaoke Version from Zoom Karaoke", - "id": "QHj9cAdRS_E" - }, - { - "title": "Lisa Loeb & Nine Stories - Stay (I Missed You) - Karaoke Version from Zoom Karaoke", - "id": "OePbA2lnkrQ" - }, - { - "title": "Elvis Presley - I Just Can't Help Believin' - Karaoke Version from Zoom Karaoke", - "id": "Nae8FVLiL9Y" - }, - { - "title": "Hanson - Mmmbop - Karaoke Version from Zoom Karaoke", - "id": "ghwXydQ6F1U" - }, - { - "title": "Coolio - Gangsta's Paradise - Karaoke Version from Zoom Karaoke", - "id": "QeRXzNfZ0-o" - }, - { - "title": "John Waite - Missing You - Karaoke Version from Zoom Karaoke", - "id": "OyLYqPUPg-Q" - }, - { - "title": "The Beautiful South - Don't Marry Her - Karaoke Version from Zoom Karaoke", - "id": "Kvh68jN4DpA" - }, - { - "title": "Badfinger - Come And Get It - Karaoke Version from Zoom Karaoke", - "id": "K8MWeiQyH04" - }, - { - "title": "Canned Heat - On The Road Again - Karaoke Version from Zoom Karaoke", - "id": "AkprpEEstUA" - }, - { - "title": "Tom Jones - I Know - Karaoke Version from Zoom Karaoke", - "id": "9YxndKGfw30" - }, - { - "title": "JLS feat Dev - She Makes Me Wanna (Duet) - Karaoke Version from Zoom Karaoke", - "id": "jwqbSoC08n4" - }, - { - "title": "Jason Derulo - It Girl - Karaoke Version from Zoom Karaoke", - "id": "nxnnHs5hu_k" - }, - { - "title": "Tom Jones - Games People Play (Live) - Karaoke Version from Zoom Karaoke", - "id": "dPbBLKT-SRk" - }, - { - "title": "Paul Simon - You Can Call Me Al - Karaoke Version from Zoom Karaoke", - "id": "pRPza2qixv4" - }, - { - "title": "Leona Lewis And Avicii - Collide - Karaoke Version from Zoom Karaoke", - "id": "ltTiJRMbPk0" - }, - { - "title": "The Spice Girls - Who Do You Think You Are - Karaoke Version from Zoom Karaoke", - "id": "cB3IY7X0bGM" - }, - { - "title": "JLS feat Dev - She Makes Me Wanna (Male Parts Only) - Karaoke Version from Zoom Karaoke", - "id": "PQlNm7reuKs" - }, - { - "title": "The Wanted - Glad You Came - Karaoke Version from Zoom Karaoke", - "id": "NkgP5dE6MYg" - }, - { - "title": "Example - Stay Awake - Karaoke Version from Zoom Karaoke", - "id": "MV68xX0RU4I" - }, - { - "title": "Pixie Lott - All About Tonight - Karaoke Version from Zoom Karaoke", - "id": "K_s7qSfWnVc" - }, - { - "title": "Gene Vincent - Wild Cat - Karaoke Version from Zoom Karaoke", - "id": "I93R1Hx3fZE" - }, - { - "title": "Take That - When We Were Young - Karaoke Version from Zoom Karaoke", - "id": "BbcnHyMYLNk" - }, - { - "title": "Gene Vincent - My Heart - Karaoke Version from Zoom Karaoke", - "id": "tpDq5mTAV5E" - }, - { - "title": "The Spice Girls - Stop - Karaoke Version from Zoom Karaoke", - "id": "sRMaQTj0Lng" - }, - { - "title": "Franz Ferdinand - Take Me Out - Karaoke Version from Zoom Karaoke", - "id": "pEby7etmgJs" - }, - { - "title": "Piano Singalong - Hello Dolly - Karaoke Version from Zoom Karaoke", - "id": "Zob5wIqtH-w" - }, - { - "title": "Gene Vincent - Pistol Packin' Mama - Karaoke Version from Zoom Karaoke", - "id": "IojyzpeHitA" - }, - { - "title": "Piano Singalong - When The Red Red Robin Comes Bob Bob Bobbin' Along - Karaoke Version", - "id": "CRvyKhuMO7E" - }, - { - "title": "Piano Singalong - I've Got A Lovely Bunch Of Coconuts - Karaoke Version from Zoom Karaoke", - "id": "8Ij_XkA6yGY" - }, - { - "title": "Piano Singalong - Hold Your Hand Out, Naughty Boy! - Karaoke Version from Zoom Karaoke", - "id": "3_v8UVb7pMs" - }, - { - "title": "Beyonce - Best Thing I Never Had - Karaoke Version from Zoom Karaoke", - "id": "uLOrsyQX-Xs" - }, - { - "title": "Kaiser Chiefs - I Predict A Riot - Karaoke Version from Zoom Karaoke", - "id": "nYQUN0TXFZE" - }, - { - "title": "DJ Fresh feat Sian Evans - Louder - Karaoke Version from Zoom Karaoke", - "id": "ZcnpC4sohTI" - }, - { - "title": "Piano Singalong - If You Knew Susie - Karaoke Version from Zoom Karaoke", - "id": "XsKvRDhGNXQ" - }, - { - "title": "Piano Singalong - Shine On Harvest Moon - Karaoke Version from Zoom Karaoke", - "id": "WdmrBHWNEpE" - }, - { - "title": "Piano Singalong - Love And Marriage - Karaoke Version from Zoom Karaoke", - "id": "VyKdbyovfbc" - }, - { - "title": "Piano Singalong - Alexander's Ragtime Band - Karaoke Version from Zoom Karaoke", - "id": "TvaHMzpOvjA" - }, - { - "title": "Piano Singalong - Any Old Iron - Karaoke Version from Zoom Karaoke", - "id": "BL1TjaRY_k4" - }, - { - "title": "Nick Lowe - The Nick Lowe Medley - Karaoke Version from Zoom Karaoke", - "id": "656kOjv4qk8" - }, - { - "title": "The Dubliners - The Wild Rover - Karaoke Version from Zoom Karaoke", - "id": "lpmDoB2ipzg" - }, - { - "title": "Piano Singalong - I'm Looking Over A Four Leaf Clover - Karaoke Version from Zoom Karaoke", - "id": "K_iT_npod44" - }, - { - "title": "The Dubliners - The Black Velvet Band - Karaoke Version from Zoom Karaoke", - "id": "1mPU6YAPWfU" - }, - { - "title": "Piano Singalong - Powder Your Face With Sunshine - Karaoke Version from Zoom Karaoke", - "id": "72TSOjYdMtk" - }, - { - "title": "Piano Singalong - Bless 'Em All - Karaoke Version from Zoom Karaoke", - "id": "w0vo91gzcs4" - }, - { - "title": "Piano Singalong - Side By Side - Karaoke Version from Zoom Karaoke", - "id": "q3TSyUU-Oa0" - }, - { - "title": "The Dubliners - Finnegan's Wake - Karaoke Version from Zoom Karaoke", - "id": "i5Y98ps0AYs" - }, - { - "title": "Piano Singalong - Happy Days Are Here Again - Karaoke Version from Zoom Karaoke", - "id": "_BUD-0cKX6Q" - }, - { - "title": "Nick Lowe - I Love The Sound Of Breaking Glass - Karaoke Version from Zoom Karaoke", - "id": "SuYLqS3rUTQ" - }, - { - "title": "Piano Singalong - Kiss Me Goodnight Sergeant Major - Karaoke Version from Zoom Karaoke", - "id": "L5lSMgd8yi0" - }, - { - "title": "Piano Singalong - Bye Bye Blackbird - Karaoke Version from Zoom Karaoke", - "id": "DjlF93rJgcY" - }, - { - "title": "Piano Singalong - It's A Long Way To Tipperary - Karaoke Version from Zoom Karaoke", - "id": "3ONnZDKQoS0" - }, - { - "title": "Piano Singalong - The White Cliffs Of Dover - Karaoke Version from Zoom Karaoke", - "id": "p2nr4fwmXmM" - }, - { - "title": "Nick Lowe - Ragin' Eyes - Karaoke Version from Zoom Karaoke", - "id": "WU6Q8I-X2Vk" - }, - { - "title": "Nick Lowe - Marie Provost - Karaoke Version from Zoom Karaoke", - "id": "W8WAcUuc0Fs" - }, - { - "title": "Piano Singalong - Roll Out The Barrel - Karaoke Version from Zoom Karaoke", - "id": "W8Hg-Fto1is" - }, - { - "title": "Piano Singalong - Maybe It's Because I'm A Londoner - Karaoke Version from Zoom Karaoke", - "id": "Vs-HBeQfvRs" - }, - { - "title": "The Dubliners - The Wild Rover (Faster With Claps) - Karaoke Version from Zoom Karaoke", - "id": "TKh10DpVSV0" - }, - { - "title": "Piano Singalong - Underneath The Arches - Karaoke Version from Zoom Karaoke", - "id": "PEF0UFOkyGI" - }, - { - "title": "Nick Lowe - Without Love - Karaoke Version from Zoom Karaoke", - "id": "KjYOxdpGdgE" - }, - { - "title": "Piano Singalong - Hands, Knees And Boomps A Daisy - Karaoke Version from Zoom Karaoke", - "id": "9EUBAspLovc" - }, - { - "title": "Canned Heat - Let's Work Together - Karaoke Version from Zoom Karaoke", - "id": "8iZCgEPPvdA" - }, - { - "title": "Jessie J - Who You Are - Karaoke Version from Zoom Karaoke", - "id": "WTNtCL-vLAA" - }, - { - "title": "Babybird - You're Gorgeous - Karaoke Version from Zoom Karaoke", - "id": "8QTlUUTBesg" - }, - { - "title": "Richard Marx - Hazard - Karaoke Version from Zoom Karaoke", - "id": "3UcpWUE_afM" - }, - { - "title": "Snow Patrol - This Isn't Everything You Are - Karaoke Version from Zoom Karaoke", - "id": "xu9ZQzbtfwI" - }, - { - "title": "The Wanted - Warzone - Karaoke Version from Zoom Karaoke", - "id": "iyFbLa_d5Ks" - }, - { - "title": "Alanis Morissette - You Oughta Know - Karaoke Version from Zoom Karaoke", - "id": "XUqra1qkWIE" - }, - { - "title": "Lady Gaga - Marry The Night - Karaoke Version from Zoom Karaoke", - "id": "Sx_ziMQgjXQ" - }, - { - "title": "Inner Circle - Sweat (A La La La La Long) - Karaoke Version from Zoom Karaoke", - "id": "IEjixTyQv-Y" - }, - { - "title": "Let Loose - Crazy For You - Karaoke Version from Zoom Karaoke", - "id": "E_mFfsewO50" - }, - { - "title": "4 Non Blondes - What's Up - Karaoke Version from Zoom Karaoke", - "id": "DmiaGOStaNI" - }, - { - "title": "Bruno Mars - Runaway Baby - Karaoke Version from Zoom Karaoke", - "id": "BQ6OMQ-Mf90" - }, - { - "title": "Alanis Morissette - Hand In My Pocket - Karaoke Version from Zoom Karaoke", - "id": "BBKKG_oygZU" - }, - { - "title": "Alex Day - Forever Yours - Karaoke Version from Zoom Karaoke", - "id": "hn8nELRYVqQ" - }, - { - "title": "Big Mountain - Baby, I Love Your Way - Karaoke Version from Zoom Karaoke", - "id": "bomZzGH12aE" - }, - { - "title": "Amy Winehouse - Between The Cheats - Karaoke Version from Zoom Karaoke", - "id": "aUWkfQJ6OIw" - }, - { - "title": "Del Shannon - The Answer To Everything - Karaoke Version from Zoom Karaoke", - "id": "UkBQjAiHGaA" - }, - { - "title": "Alanis Morissette - Head Over Feet - Karaoke Version from Zoom Karaoke", - "id": "R6P5IucmiPQ" - }, - { - "title": "Elvis Presley - Stuck On You - Karaoke Version from Zoom Karaoke", - "id": "QjK3cJWme3g" - }, - { - "title": "Lonestar - Amazed - Karaoke Version from Zoom Karaoke", - "id": "HC-WP_qHSTE" - }, - { - "title": "Amy Winehouse - Will You Still Love Me Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "AcqKnguC0Yk" - }, - { - "title": "Maverick Sabre - I Need - Karaoke Version from Zoom Karaoke", - "id": "-2-CAo6jqQE" - }, - { - "title": "Little Mix - Cannonball - Karaoke Version from Zoom Karaoke", - "id": "xSFmGN2J1XE" - }, - { - "title": "Alanis Morissette - Ironic - Karaoke Version from Zoom Karaoke", - "id": "v0jWkEjU4hA" - }, - { - "title": "Depeche Mode - Enjoy The Silence - Karaoke Version from Zoom Karaoke", - "id": "rMo3RTNz19o" - }, - { - "title": "Amy Winehouse - Valerie ('68 Version) - Karaoke Version from Zoom Karaoke", - "id": "rKn345EvCiU" - }, - { - "title": "Cliff Richard - Livin' Lovin' Doll - Karaoke Version from Zoom Karaoke", - "id": "ifLI-Z4J__s" - }, - { - "title": "Steps - Chain Reaction - Karaoke Version from Zoom Karaoke", - "id": "apImcx21bBM" - }, - { - "title": "Alanis Morissette - Thank U - Karaoke Version from Zoom Karaoke", - "id": "TWf1lePbGP8" - }, - { - "title": "Cliff Richard - It'll Be Me - Karaoke Version from Zoom Karaoke", - "id": "QvDFjzMMcrg" - }, - { - "title": "Elvis Presley - Moody Blue - Karaoke Version from Zoom Karaoke", - "id": "Pe732QzHf9I" - }, - { - "title": "Neil Sedaka - Next Door To An Angel - Karaoke Version from Zoom Karaoke", - "id": "7pbzW0sriQw" - }, - { - "title": "Amy Winehouse - Like Smoke (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "4hXo8dWsyMg" - }, - { - "title": "Elvis Presley - The Girl Of My Best Friend - Karaoke Version from Zoom Karaoke", - "id": "-votdLZvDoE" - }, - { - "title": "Leona Lewis - Hurt - Karaoke Version from Zoom Karaoke", - "id": "-SYZFz5MBsM" - }, - { - "title": "Elvis Presley - Blue Suede Shoes - Karaoke Version from Zoom Karaoke", - "id": "tevSuGzItKU" - }, - { - "title": "Kelly Rowland feat The Wavs - Down For Whatever - Karaoke Version from Zoom Karaoke", - "id": "yGtrA-6G4hA" - }, - { - "title": "Tom Jones - Take Me To The River (Live) - Karaoke Version from Zoom Karaoke", - "id": "xyRETBdm8N8" - }, - { - "title": "Florence + The Machine - Shake It Out - Karaoke Version from Zoom Karaoke", - "id": "kBIJSaBJk9U" - }, - { - "title": "Bobby Vee - Walkin' With My Angel - Karaoke Version from Zoom Karaoke", - "id": "TOFgJC-DPE4" - }, - { - "title": "Steps - 5, 6, 7, 8 - Karaoke Version from Zoom Karaoke", - "id": "QpUc1Lu-CEA" - }, - { - "title": "Steps - Stomp - Karaoke Version from Zoom Karaoke", - "id": "CKYzmceWqMM" - }, - { - "title": "Amy Winehouse - Our Day Will Come - Karaoke Version from Zoom Karaoke", - "id": "2lDaKdKMIZ8" - }, - { - "title": "Billy Fury - Margo, Don't Go - Karaoke Version from Zoom Karaoke", - "id": "0IFQlJgbkcY" - }, - { - "title": "Steps - It's The Way You Make Me Feel - Karaoke Version from Zoom Karaoke", - "id": "-j7zCnRhooc" - }, - { - "title": "Tom Jones - Mary's Boy Child - Karaoke Version from Zoom Karaoke", - "id": "aIzVxU5EYE8" - }, - { - "title": "One Direction - Gotta Be You - Karaoke Version from Zoom Karaoke", - "id": "naoqYdK_L58" - }, - { - "title": "Jigsaw - Sky High - Karaoke Version from Zoom Karaoke", - "id": "lTmEpwjQZxg" - }, - { - "title": "Glee Cast - What I Did For Love - Karaoke Version from Zoom Karaoke", - "id": "DOkFmrW7v6k" - }, - { - "title": "Pink - Just Like A Pill - Karaoke Version from Zoom Karaoke", - "id": "AwS2bMZq7F0" - }, - { - "title": "Pink - Dear Mr President - Karaoke Version from Zoom Karaoke", - "id": "rixNK5jBSQQ" - }, - { - "title": "Pilot - Magic - Karaoke Version from Zoom Karaoke", - "id": "otw0vEm2k24" - }, - { - "title": "Rebecca Ferguson - Nothing's Real But Love - Karaoke Version from Zoom Karaoke", - "id": "maWFgrCMWCQ" - }, - { - "title": "Wet Wet Wet - Somewhere Somehow - Karaoke Version from Zoom Karaoke", - "id": "iNzJ7oKQh88" - }, - { - "title": "Ed Sheeran - Lego House - Karaoke Version from Zoom Karaoke", - "id": "hPTBqmm2gW4" - }, - { - "title": "JLS - Take A Chance On Me - Karaoke Version from Zoom Karaoke", - "id": "bGDF8GdxeE0" - }, - { - "title": "Wet Wet Wet - With A Little Help From My Friends - Karaoke Version from Zoom Karaoke", - "id": "OHzhZyq63j8" - }, - { - "title": "Pink - Get The Party Started - Karaoke Version from Zoom Karaoke", - "id": "LVw08mxP1Nw" - }, - { - "title": "Katy Perry - The One That Got Away - Karaoke Version from Zoom Karaoke", - "id": "Fx5xbaUCkH8" - }, - { - "title": "X Factor Finalists 2011 - Wishing On A Star - Karaoke Version from Zoom Karaoke", - "id": "DEiN08olqVE" - }, - { - "title": "Bruno Mars - It Will Rain - Karaoke Version from Zoom Karaoke", - "id": "B8xsJOnySxs" - }, - { - "title": "Pink - Family Portrait - Karaoke Version from Zoom Karaoke", - "id": "4gj-LqBdl5s" - }, - { - "title": "Mike & The Mechanics - Over My Shoulder - Karaoke Version from Zoom Karaoke", - "id": "1KnfP-OSv7I" - }, - { - "title": "Duran Duran - Ordinary World - Karaoke Version from Zoom Karaoke", - "id": "raUw6oVXmCw" - }, - { - "title": "Wet Wet Wet - Wishing I Was Lucky - Karaoke Version from Zoom Karaoke", - "id": "l5c1FQKJNMs" - }, - { - "title": "Westlife - Lighthouse - Karaoke Version from Zoom Karaoke", - "id": "ZDbdN1Jaw6I" - }, - { - "title": "Ray Parker Jr. - Ghostbusters - Karaoke Version from Zoom Karaoke", - "id": "sUH4JhyjGyc" - }, - { - "title": "Wet Wet Wet - Angel Eyes (Home And Away) - Karaoke Version from Zoom Karaoke", - "id": "vwJYdnN8bbw" - }, - { - "title": "Tom Jones - Nothin' But A Woman (Live) - Karaoke Version from Zoom Karaoke", - "id": "_WPud4ZCfaE" - }, - { - "title": "Tom Jones - I've Got A Heart - Karaoke Version from Zoom Karaoke", - "id": "DBnqTny9BQ0" - }, - { - "title": "Gym Class Heroes - Stereo Hearts - Karaoke Version from Zoom Karaoke", - "id": "BBhpYT4Mgs8" - }, - { - "title": "Lobo - Me And You And A Dog Named Boo - Karaoke Version from Zoom Karaoke", - "id": "8LBp-GMXd64" - }, - { - "title": "The Wanted - Lightning - Karaoke Version from Zoom Karaoke", - "id": "VGg1kSTz7ho" - }, - { - "title": "Kelly Clarkson - Mr Know It All - Karaoke Version from Zoom Karaoke", - "id": "4eCIugERQgE" - }, - { - "title": "Charlene Soraia - Wherever You Will Go - Karaoke Version from Zoom Karaoke", - "id": "xEJwwlJDAXY" - }, - { - "title": "Rihanna feat Calvin Harris - We Found Love - Karaoke Version from Zoom Karaoke", - "id": "x28zY01899M" - }, - { - "title": "Tom Jones - Hard To Handle (Live) - Karaoke Version from Zoom Karaoke", - "id": "mm9FG7OO2_w" - }, - { - "title": "Tom Jones - It's Up To The Woman - Karaoke Version from Zoom Karaoke", - "id": "eBRWP3nu10A" - }, - { - "title": "Damien Rice - Cannonball - Karaoke Version from Zoom Karaoke", - "id": "QPmJ3MgqD44" - }, - { - "title": "Steps - Better Best Forgotten - Karaoke Version from Zoom Karaoke", - "id": "Pmhz3-cB5nc" - }, - { - "title": "Whitney Houston - I Have Nothing - Karaoke Version from Zoom Karaoke", - "id": "Fsv1xj0qsEs" - }, - { - "title": "Tom Jones - I'll Never Fall In Love Again (Live) - Karaoke Version from Zoom Karaoke", - "id": "CYskGGyzccY" - }, - { - "title": "Will Young - Come On - Karaoke Version from Zoom Karaoke", - "id": "AHEo_l2EmB4" - }, - { - "title": "Wet Wet Wet - Julia Says - Karaoke Version from Zoom Karaoke", - "id": "8H-v9WknlXE" - }, - { - "title": "Tom Jones - Little Green Apples - Karaoke Version from Zoom Karaoke", - "id": "7QfYD3i7hxM" - }, - { - "title": "Pink - Who Knew - Karaoke Version from Zoom Karaoke", - "id": "50zjQjts_Qo" - }, - { - "title": "Steps - Last Thing On My Mind - Karaoke Version from Zoom Karaoke", - "id": "nxwsmlM8hFA" - }, - { - "title": "James Morrison - I Won't Let You Go - Karaoke Version from Zoom Karaoke", - "id": "diI4rpMYqpU" - }, - { - "title": "Tom Jones - If I Only Knew (Live) - Karaoke Version from Zoom Karaoke", - "id": "bBmwXCQXjWA" - }, - { - "title": "Diana Ross - When You Tell Me That You Love Me - Karaoke Version from Zoom Karaoke", - "id": "SgQz9YLwGU0" - }, - { - "title": "The Goo Goo Dolls - Iris - Karaoke Version from Zoom Karaoke", - "id": "RnIqU3IRvDk" - }, - { - "title": "Tom Jones - He Stopped Loving Her Today (Live) - Karaoke Version from Zoom Karaoke", - "id": "BC8IgPfMNys" - }, - { - "title": "Tom Jones - You'll Never Walk Alone - Karaoke Version from Zoom Karaoke", - "id": "9eeyRC5y0oY" - }, - { - "title": "Wet Wet Wet - If I Never See You Again - Karaoke Version from Zoom Karaoke", - "id": "1PwIaW-Mlyw" - }, - { - "title": "Tom Jones - Sing For The Good Times - Karaoke Version from Zoom Karaoke", - "id": "gm-CDzz6Dmw" - }, - { - "title": "Eurythmics & Aretha Franklin - Sisters Are Doin' It For Themselves (Solo Singer) - Karaoke Version", - "id": "CCWQ8s5HRIo" - }, - { - "title": "Kings Of Leon - Four Kicks - Karaoke Version from Zoom Karaoke", - "id": "KT9lgQvpQUs" - }, - { - "title": "Alexandra Burke feat Erick Morillo - Elephant - Karaoke Version from Zoom Karaoke", - "id": "TXc0lioUZSI" - }, - { - "title": "Wilson Phillips - Hold On - Karaoke Version from Zoom Karaoke", - "id": "nY4A0WGdCUI" - }, - { - "title": "Travie McCoy feat Bruno Mars - Billionaire - Karaoke Version from Zoom Karaoke", - "id": "D6dVWnKp6jY" - }, - { - "title": "Marcus Collins - Seven Nation Army - Karaoke Version from Zoom Karaoke", - "id": "g2US2dStPRw" - }, - { - "title": "Katy Perry - Part Of Me - Karaoke Version from Zoom Karaoke", - "id": "6z2XyAXRMTc" - }, - { - "title": "Tom Jones - Make This Heart Of Mine Smile Again - Karaoke Version from Zoom Karaoke", - "id": "qiOOkkbhHCs" - }, - { - "title": "Engelbert Humperdinck - A Man Without Love (Dance Version) - Karaoke Version from Zoom Karaoke", - "id": "4avqOmilaus" - }, - { - "title": "Tom Jones - I Get Carried Away - Karaoke Version from Zoom Karaoke", - "id": "0NgeXtarGos" - }, - { - "title": "Olly Murs - Oh My Goodness - Karaoke Version from Zoom Karaoke", - "id": "t6IeE-ryQIQ" - }, - { - "title": "Carly Rae Jepsen - Call Me Maybe - Karaoke Version from Zoom Karaoke", - "id": "2Qtgy9YnFuE" - }, - { - "title": "Engelbert Humperdinck - Love Will Set You Free - Karaoke Version from Zoom Karaoke", - "id": "J7afY7f7gFw" - }, - { - "title": "The Black Eyed Peas - The Time (Dirty Bit) - Karaoke Version from Zoom Karaoke", - "id": "PzQ-shxjNts" - }, - { - "title": "Texas - Say What You Want - Karaoke Version from Zoom Karaoke", - "id": "AcUFSBW5Xvc" - }, - { - "title": "Whitney Houston - So Emotional - Karaoke Version from Zoom Karaoke", - "id": "AbrBVIZHRNM" - }, - { - "title": "Whitney Houston - Didn't We Almost Have It All - Karaoke Version from Zoom Karaoke", - "id": "EHE2sGQ1kUU" - }, - { - "title": "Billy Fury - I'm Lost Without You - Karaoke Version from Zoom Karaoke", - "id": "GHSotu2NUkg" - }, - { - "title": "Alyssa Reid feat Jump Smokers - Alone Again (For Solo Female) - Karaoke Version from Zoom K", - "id": "ECpCjGy2Qm8" - }, - { - "title": "The Knack - My Sharona - Karaoke Version from Zoom Karaoke", - "id": "-DYiAS6Wsj4" - }, - { - "title": "Ed Sheeran - Drunk - Karaoke Version from Zoom Karaoke", - "id": "oILgYn8hPzs" - }, - { - "title": "Billy Fury - Somebody Else's Girl - Karaoke Version from Zoom Karaoke", - "id": "g_vEoTckNLY" - }, - { - "title": "Billy Fury - Once Upon A Dream - Karaoke Version from Zoom Karaoke", - "id": "_W7p-N5MxYk" - }, - { - "title": "Peggy Lee - Fever - Karaoke Version from Zoom Karaoke", - "id": "VMiQSiWY4xg" - }, - { - "title": "Engelbert Humperdinck - Quando Quando Quando (Dance Version) - Karaoke Version from Zoom Karaoke", - "id": "OL2hycmU3Mk" - }, - { - "title": "Emeli Sande - Next To Me - Karaoke Version from Zoom Karaoke", - "id": "NyS-YJfuPk8" - }, - { - "title": "Texas - Black Eyed Boy - Karaoke Version from Zoom Karaoke", - "id": "BqLGr4fgac0" - }, - { - "title": "Billy Fury - Wondrous Place - Karaoke Version from Zoom Karaoke", - "id": "ukyYAcw9jt0" - }, - { - "title": "Billy Fury - In Thoughts Of You - Karaoke Version from Zoom Karaoke", - "id": "T1RdRescJao" - }, - { - "title": "Gotye feat Kimbra - Somebody That I Used To Know (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "7zYoDiWvwN4" - }, - { - "title": "Gotye feat Kimbra - Somebody That I Used To Know (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "Zxll-M2ULMI" - }, - { - "title": "Whitney Houston - Where Do Broken Hearts Go - Karaoke Version from Zoom Karaoke", - "id": "Uf6oRXbfe1Y" - }, - { - "title": "Tom Jones - If You Need Me - Karaoke Version from Zoom Karaoke", - "id": "MlmIYQwkDhI" - }, - { - "title": "Billy Fury - That's Love - Karaoke Version from Zoom Karaoke", - "id": "5Yi6-lJ_QPY" - }, - { - "title": "Billy Fury - Because Of Love - Karaoke Version from Zoom Karaoke", - "id": "526jsTp1KK4" - }, - { - "title": "Alyssa Reid feat Jump Smokers - Alone Again (For Duet) - Karaoke Version from Zoom Karaoke", - "id": "07jHt1AGi4w" - }, - { - "title": "Roxette - Dressed For Success - Karaoke Version from Zoom Karaoke", - "id": "Q4-bVvztYiQ" - }, - { - "title": "Billy Fury - Maybe Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "3XrfDjDZkXQ" - }, - { - "title": "Westlife - Flying Without Wings - Karaoke Version from Zoom Karaoke", - "id": "4lLGqIpMm1w" - }, - { - "title": "Billy Fury - In Summer - Karaoke Version from Zoom Karaoke", - "id": "ypxW6m2KgZw" - }, - { - "title": "The Clash - Should I Stay Or Should I Go - Karaoke Version from Zoom Karaoke", - "id": "dWlg4a045t4" - }, - { - "title": "Pixie Lott - Kiss The Stars - Karaoke Version from Zoom Karaoke", - "id": "xSK0Ol8laHg" - }, - { - "title": "Kelly Clarkson - Stronger - Karaoke Version from Zoom Karaoke", - "id": "O3is76hCYv4" - }, - { - "title": "Cover Drive - Twilight (Duet) - Karaoke Version from Zoom Karaoke", - "id": "dmerLJ7nDms" - }, - { - "title": "Billy Fury - Collette (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "JBpD9znnT98" - }, - { - "title": "Billy Fury - I Will - Karaoke Version from Zoom Karaoke", - "id": "Pdg8sLkh9tk" - }, - { - "title": "Frankie Miller - Darlin' - Karaoke Version from Zoom Karaoke", - "id": "F9_pYEjpK_M" - }, - { - "title": "Seal - Crazy - Karaoke Version from Zoom Karaoke", - "id": "ENdiXVt_uqg" - }, - { - "title": "The Spice Girls - Mama - Karaoke Version from Zoom Karaoke", - "id": "SDGOwN7E0nc" - }, - { - "title": "Stereo MCs - Step It Up - Karaoke Version from Zoom Karaoke", - "id": "2fFlrEfaJD4" - }, - { - "title": "Jennifer Paige - Crush - Karaoke Version from Zoom Karaoke", - "id": "rWQ6TwizCgw" - }, - { - "title": "One Direction - One Thing - Karaoke Version from Zoom Karaoke", - "id": "hd8oHFOeJNI" - }, - { - "title": "Boyzone - Baby Can I Hold You - Karaoke Version from Zoom Karaoke", - "id": "cvqk0PXCmrk" - }, - { - "title": "Monaco - What Do You Want From Me (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "XP5aN_d7IWk" - }, - { - "title": "Space And Cerys Of Catatonia - The Ballad Of Tom Jones - Karaoke Version from Zoom Karaoke", - "id": "9D28JdRPFeo" - }, - { - "title": "Billy Fury - A Thousand Stars - Karaoke Version from Zoom Karaoke", - "id": "wwjOuP2hOjU" - }, - { - "title": "UB40 - I Can't Help Falling In Love With You - Karaoke Version from Zoom Karaoke", - "id": "p5jEyTbvk30" - }, - { - "title": "Monaco - What Do You Want From Me (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "d8pIfv2AKW4" - }, - { - "title": "Cover Drive - Twilight (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "ieFgOsRODc8" - }, - { - "title": "Cindy Und Bert - Immer Wieder Sonntags (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "1ALr5pI4GyY" - }, - { - "title": "Mike Oldfield - Moonlight Shadow - Karaoke Version from Zoom Karaoke", - "id": "fEJ8cXUbGDE" - }, - { - "title": "Cindy Und Bert - Immer Wieder Sonntags (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "TdVx76gmK3o" - }, - { - "title": "Billy Fury - Collette (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "BBzKUjfg43w" - }, - { - "title": "The Backstreet Boys - As Long As You Love Me - Karaoke Version from Zoom Karaoke", - "id": "zhtIk19wSjQ" - }, - { - "title": "Eddy Grant - I Don't Wanna Dance - Karaoke Version from Zoom Karaoke", - "id": "nalAvBQSwl4" - }, - { - "title": "Haddaway - What Is Love - Karaoke Version from Zoom Karaoke", - "id": "ydbNjSKfTNs" - }, - { - "title": "JLS - Do You Feel What I Feel - Karaoke Version from Zoom Karaoke", - "id": "eB9rfdX6maA" - }, - { - "title": "Curtis Stigers - You're All That Matters To Me - Karaoke Version from Zoom Karaoke", - "id": "dnCr9tQRWrg" - }, - { - "title": "Lloyd - Dedication To My Ex Miss That - Karaoke Version from Zoom Karaoke", - "id": "WimNrI8whR0" - }, - { - "title": "Alesha Dixon - Do It Our Way (Play) - Karaoke Version from Zoom Karaoke", - "id": "BZusEnsfsHQ" - }, - { - "title": "Dizzee Rascal And Armand Van Helden - Bonkers - Karaoke Version from Zoom Karaoke", - "id": "Sy_uc0hHEMo" - }, - { - "title": "Jon Secada - Just Another Day - Karaoke Version from Zoom Karaoke", - "id": "3PKWREhevdM" - }, - { - "title": "Sheryl Crow - If It Makes You Happy - Karaoke Version from Zoom Karaoke", - "id": "rTLWSaDGrqw" - }, - { - "title": "Eternal And Bebe Winans - I Wanna Be The Only One - Karaoke Version from Zoom Karaoke", - "id": "7T193pNWHkk" - }, - { - "title": "Mr Big - To Be With You - Karaoke Version from Zoom Karaoke", - "id": "D5Bp9IqXu2U" - }, - { - "title": "Kings Of Leon - Molly's Chambers - Karaoke Version from Zoom Karaoke", - "id": "pVHzcIdpFfA" - }, - { - "title": "Kings Of Leon - Fans - Karaoke Version from Zoom Karaoke (Original Version with Wrong Lyrics!)", - "id": "mRE-NHfyzx0" - }, - { - "title": "Sheryl Crow - Everyday Is A Winding Road - Karaoke Version from Zoom Karaoke", - "id": "j0JLMf-QZwQ" - }, - { - "title": "Zoe - Sunshine On A Rainy Day - Karaoke Version from Zoom Karaoke", - "id": "Q2UbClrOpDk" - }, - { - "title": "Lana Del Rey - Born To Die - Karaoke Version from Zoom Karaoke", - "id": "MX94CyxobCA" - }, - { - "title": "Jessie J - Nobody's Perfect Explicit - Karaoke Version from Zoom Karaoke", - "id": "IKuo7KTvpXE" - }, - { - "title": "The Cranberries - Linger - Karaoke Version from Zoom Karaoke", - "id": "HTvAzaab6dQ" - }, - { - "title": "Boyzone - Picture Of You - Karaoke Version from Zoom Karaoke", - "id": "1Xg7Rvfbgww" - }, - { - "title": "Beyonce - Crazy In Love With Rapper - Karaoke Version from Zoom Karaoke", - "id": "YAUd0jOZomw" - }, - { - "title": "Genesis - I Can't Dance - Karaoke Version from Zoom Karaoke", - "id": "XYLGgY_ObQM" - }, - { - "title": "Kings Of Leon - Pyro - Karaoke Version from Zoom Karaoke", - "id": "COrcw58k-LI" - }, - { - "title": "Kings Of Leon - The Bucket - Karaoke Version from Zoom Karaoke", - "id": "4mNUMYobSHA" - }, - { - "title": "Joshua Kadison - Jessie - Karaoke Version from Zoom Karaoke", - "id": "0Dhos5fSWLQ" - }, - { - "title": "Sia - Courage To Change - Karaoke Version from Zoom Karaoke", - "id": "lgHgodhFNp4" - }, - { - "title": "Dappy feat Brian May - Rockstar - Karaoke Version from Zoom Karaoke", - "id": "7R6DiMLd0uE" - }, - { - "title": "Madonna - Dress You Up - Karaoke Version from Zoom Karaoke", - "id": "v8nu_kn8ZxE" - }, - { - "title": "The Doors - People Are Strange - Karaoke Version from Zoom Karaoke", - "id": "u3QODOufEqU" - }, - { - "title": "Alison Moyet - That Ole Devil Called Love - Karaoke Version from Zoom Karaoke", - "id": "lg0qVY-9TAQ" - }, - { - "title": "Alison Moyet - All Cried Out - Karaoke Version from Zoom Karaoke", - "id": "kleF_lGesgw" - }, - { - "title": "Sixpence None The Richer - Kiss Me - Karaoke Version from Zoom Karaoke", - "id": "b5IJMr_rZcE" - }, - { - "title": "James Blunt - 1973 - Karaoke Version from Zoom Karaoke", - "id": "KSVHoJogRjs" - }, - { - "title": "Alison Moyet - Love Letters - Karaoke Version from Zoom Karaoke", - "id": "BoN57fNgUIk" - }, - { - "title": "Selena Gomez & The Scene - Who Says - Karaoke Version from Zoom Karaoke", - "id": "pivv4b5NANo" - }, - { - "title": "The Spice Girls - Spice Up Your Life - Karaoke Version from Zoom Karaoke", - "id": "oY9hPd97XcM" - }, - { - "title": "Womack And Womack - Teardrops - Karaoke Version from Zoom Karaoke", - "id": "k6oqpA2Pjb8" - }, - { - "title": "Bjork - It's Oh So Quiet - Karaoke Version from Zoom Karaoke", - "id": "bj2usElH920" - }, - { - "title": "Fun - Some Nights - Karaoke Version from Zoom Karaoke", - "id": "a14118xwaJo" - }, - { - "title": "Tinie Tempah feat Eric Turner - Written In The Stars - Karaoke Version from Zoom Karaoke", - "id": "Q8eMfwfQODc" - }, - { - "title": "Paul McCartney & Wings - Band On The Run - Karaoke Version from Zoom Karaoke", - "id": "P2RNsgx82CM" - }, - { - "title": "Lawson - When She Was Mine - Karaoke Version from Zoom Karaoke", - "id": "NsKaWrsez-E" - }, - { - "title": "Katy Perry - Wide Awake - Karaoke Version from Zoom Karaoke", - "id": "BuQpR-2J7Zc" - }, - { - "title": "Jay Z feat Alicia Keys - Empire State Of Mind (For Solo Rapper) - Karaoke Version from Zoom", - "id": "8oa05rdtWnI" - }, - { - "title": "Tinie Tempah - Written In The Stars (Rap Parts Only) - Karaoke Version from Zoom Karaoke", - "id": "z68wx8Evfx4" - }, - { - "title": "Celine Dion - The First Time Ever I Saw Your Face - Karaoke Version from Zoom Karaoke", - "id": "ywtKCzNy2oE" - }, - { - "title": "Miley Cyrus - The Climb - Karaoke Version from Zoom Karaoke", - "id": "wUMFXBpj2G8" - }, - { - "title": "Rainbow - Since You've Been Gone (Lower Key of E) - Karaoke Version from Zoom Karaoke", - "id": "u6HKDJJy9Lg" - }, - { - "title": "David Bowie - Sorrow - Karaoke Version from Zoom Karaoke", - "id": "qa1G6vFUKwk" - }, - { - "title": "Travis - Why Does It Always Rain On Me - Karaoke Version from Zoom Karaoke", - "id": "qGQlYxf1XH0" - }, - { - "title": "Cher Lloyd - Swagger Jagger - Karaoke Version from Zoom Karaoke", - "id": "ndmUAeRHoWY" - }, - { - "title": "Neil Sedaka - Calendar Girl - Karaoke Version from Zoom Karaoke", - "id": "mc9vFrvcLtc" - }, - { - "title": "Jay Z feat Alicia Keys - Empire State Of Mind (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "jyN4Il5IE34" - }, - { - "title": "Loreen - Euphoria (Eurovision 2012 Winner) - Karaoke Version from Zoom Karaoke", - "id": "dhbBqNSShRk" - }, - { - "title": "Jason Mraz - I'm Yours - Karaoke Version from Zoom Karaoke", - "id": "XhcCOmYRJeI" - }, - { - "title": "The Calling - Wherever You Will Go - Karaoke Version from Zoom Karaoke", - "id": "N_5XTcbn9E8" - }, - { - "title": "Bill Withers - Lean On Me - Karaoke Version from Zoom Karaoke", - "id": "L-28r64WK38" - }, - { - "title": "Motorhead - Ace Of Spades - Karaoke Version from Zoom Karaoke", - "id": "H41f7QgDJmU" - }, - { - "title": "The Everly Brothers - Let It Be Me (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "FWEde1uAauo" - }, - { - "title": "James Taylor - You've Got A Friend - Karaoke Version from Zoom Karaoke", - "id": "BOlepFsAFyM" - }, - { - "title": "The Everly Brothers - Let It Be Me (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "8adhuWI8zro" - }, - { - "title": "One Direction - Up All Night - Karaoke Version from Zoom Karaoke", - "id": "7SMfCqWF-bo" - }, - { - "title": "Buzzcocks - Ever Fallen In Love With Someone You Shouldn't 've - Karaoke Version from Zoom Karaoke", - "id": "340LYd3xpj0" - }, - { - "title": "The Drifters - I'll Take You Where The Music's Playing - Karaoke Version from Zoom Karaoke", - "id": "a9Wwregt8LE" - }, - { - "title": "The Drifters - When My Little Girl Is Smiling - Karaoke Version from Zoom Karaoke", - "id": "UA4It4Z6KoE" - }, - { - "title": "The Drifters - Some Kind Of Wonderful - Karaoke Version from Zoom Karaoke", - "id": "G8sZ4Ozu6Hs" - }, - { - "title": "Tulisa - Young - Karaoke Version from Zoom Karaoke", - "id": "kt5ZkK3LRhE" - }, - { - "title": "Amy Winehouse And Tony Bennett - Body And Soul - Karaoke Version from Zoom Karaoke", - "id": "TS15cQZozCw" - }, - { - "title": "The Drifters - At The Club - Karaoke Version from Zoom Karaoke", - "id": "7BGnXix9L48" - }, - { - "title": "Michael Jackson - Heal The World - Karaoke Version from Zoom Karaoke", - "id": "vesRLGx_TlE" - }, - { - "title": "David Bowie - Ziggy Stardust - Karaoke Version from Zoom Karaoke", - "id": "uJDBjKpMPkk" - }, - { - "title": "The Drifters - On Broadway - Karaoke Version from Zoom Karaoke", - "id": "tNCfwmdPWLc" - }, - { - "title": "The Drifters - Love Games - Karaoke Version from Zoom Karaoke", - "id": "rgQ8g15xkWQ" - }, - { - "title": "Rihanna - Umbrella (No Rap Version) - Karaoke Version from Zoom Karaoke", - "id": "ra3UzdpfoBg" - }, - { - "title": "Amy Winehouse - The Girl From Ipanema - Karaoke Version from Zoom Karaoke", - "id": "eCSfj_V5kRA" - }, - { - "title": "Nicki Minaj - Super Bass - Karaoke Version from Zoom Karaoke", - "id": "arHeN2wJgeM" - }, - { - "title": "Michael Jackson - Earth Song - Karaoke Version from Zoom Karaoke", - "id": "Zqd_KNHZu-g" - }, - { - "title": "Luciano Pavarotti - Nessun Dorma - Karaoke Version from Zoom Karaoke", - "id": "RuMenJAcdHw" - }, - { - "title": "LMFAO - Party Rock Anthem - Karaoke Version from Zoom Karaoke", - "id": "FXkdcMaR-Zc" - }, - { - "title": "Amy Winehouse - Wake Up Alone (Original) - Karaoke Version from Zoom Karaoke", - "id": "BFA8DouDwzI" - }, - { - "title": "Michael Jackson - You Are Not Alone - Karaoke Version from Zoom Karaoke", - "id": "8Ev8Mcu5tV8" - }, - { - "title": "Amy Winehouse - Best Friends, Right - Karaoke Version from Zoom Karaoke", - "id": "opJb0wulYwU" - }, - { - "title": "Al Green - Let's Stay Together - Karaoke Version from Zoom Karaoke", - "id": "n7nYMSC9E4c" - }, - { - "title": "Al Green - Tired Of Being Alone - Karaoke Version from Zoom Karaoke", - "id": "jSz8bZXx5K8" - }, - { - "title": "Amy Winehouse - A Song For You - Karaoke Version from Zoom Karaoke", - "id": "gZD-cVaOgFc" - }, - { - "title": "The Drifters - Can I Take You Home Little Girl - Karaoke Version from Zoom Karaoke", - "id": "cdcjZNv5CHs" - }, - { - "title": "The Drifters - Harlem Child - Karaoke Version from Zoom Karaoke", - "id": "aRyYShEhoLY" - }, - { - "title": "Amy Winehouse - Half Time - Karaoke Version from Zoom Karaoke", - "id": "PsZSFGxXXSc" - }, - { - "title": "The Drifters - This Magic Moment - Karaoke Version from Zoom Karaoke", - "id": "N363btrh3u4" - }, - { - "title": "Amy Winehouse - Tears Dry [Original Version] - Karaoke Version from Zoom Karaoke", - "id": "79xyGy5XMlc" - }, - { - "title": "Jessie J - Who's Laughing Now - Karaoke Version from Zoom Karaoke", - "id": "4DQviZ_D7uI" - }, - { - "title": "Bill Withers - Ain't No Sunshine - Karaoke Version from Zoom Karaoke", - "id": "0bG_1ezk0DI" - }, - { - "title": "Ritchie Valens - La Bamba - Karaoke Version from Zoom Karaoke", - "id": "GQRoSBP-VmI" - }, - { - "title": "Bob The Builder - Can We Fix It - Karaoke Version from Zoom Karaoke", - "id": "ypXYshP5_pU" - }, - { - "title": "David Bowie - Rebel Rebel - Karaoke Version from Zoom Karaoke", - "id": "uJ0mrDklDog" - }, - { - "title": "Keane - Silenced By The Night - Karaoke Version from Zoom Karaoke", - "id": "pKp2r_IO4Zo" - }, - { - "title": "Air Supply - All Out Of Love - Karaoke Version from Zoom Karaoke", - "id": "n76StfejseE" - }, - { - "title": "JLS - Proud - Karaoke Version from Zoom Karaoke", - "id": "fFchR5zhwjY" - }, - { - "title": "LeAnn Rimes - Can't Fight The Moonlight - Karaoke Version from Zoom Karaoke", - "id": "U28XCHqDXHE" - }, - { - "title": "David Guetta feat Sia - Titanium - Karaoke Version from Zoom Karaoke", - "id": "ERmGmLkPDbk" - }, - { - "title": "David Bowie - Changes - Karaoke Version from Zoom Karaoke", - "id": "7cbFiCN0LA4" - }, - { - "title": "LMFAO - Sexy And I Know It - Karaoke Version from Zoom Karaoke", - "id": "v5nkEC68uaI" - }, - { - "title": "Eminem feat Rihanna - Love The Way You Lie (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "tc46wmCatmc" - }, - { - "title": "Grease 2 - Rock A Hula Luau (Summer Is Coming) - Karaoke Version from Zoom Karaoke", - "id": "rXHoUisi9go" - }, - { - "title": "Justin Bieber - Boyfriend - Karaoke Version from Zoom Karaoke", - "id": "lFCcVXPK54s" - }, - { - "title": "Lana Del Rey - Video Games - Karaoke Version from Zoom Karaoke", - "id": "kv0T-nfgF8g" - }, - { - "title": "Will Young - Losing Myself - Karaoke Version from Zoom Karaoke", - "id": "XAgMxs___ZQ" - }, - { - "title": "Grease 2 - Reproduction - Karaoke Version from Zoom Karaoke", - "id": "WI0xRUj-7Jw" - }, - { - "title": "Ingrid Michaelson - The Way I Am - Karaoke Version from Zoom Karaoke", - "id": "Q4wQMxY7A6M" - }, - { - "title": "Eminem feat Rihanna - Love The Way You Lie (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "KISX9AB-Hs8" - }, - { - "title": "Rihanna - California King Bed - Karaoke Version from Zoom Karaoke", - "id": "3WdSOw56GLg" - }, - { - "title": "David Bowie & Mick Jagger - Dancing In The Street - Karaoke Version from Zoom Karaoke", - "id": "2StsQp8obUc" - }, - { - "title": "Will Young - Leave Right Now - Karaoke Version from Zoom Karaoke", - "id": "1qgUOjLolvk" - }, - { - "title": "Marvin Gaye - Sexual Healing - Karaoke Version from Zoom Karaoke", - "id": "sIwhuIDcFLs" - }, - { - "title": "Fun feat Janelle Monae - We Are Young - Karaoke Version from Zoom Karaoke", - "id": "oE8TQXzk6eA" - }, - { - "title": "Justin Timberlake - SexyBack - Karaoke Version from Zoom Karaoke", - "id": "vPnxoxWIfkI" - }, - { - "title": "Sir Mix A Lot - Baby Got Back - Karaoke Version from Zoom Karaoke", - "id": "t16d315XvDA" - }, - { - "title": "The Rolling Stones - (I Can't Get No) Satisfaction - Karaoke Version from Zoom Karaoke", - "id": "mPkedetABCg" - }, - { - "title": "Maroon 5 feat Wiz Khalifa - Payphone - Karaoke Version from Zoom Karaoke", - "id": "EvC4hR7PP9c" - }, - { - "title": "Taylor Dayne - Tell It To My Heart - Karaoke Version from Zoom Karaoke", - "id": "tRcSZ7A0ZeQ" - }, - { - "title": "Pink Floyd - Wish You Were Here - Karaoke Version from Zoom Karaoke", - "id": "jlDX2AyRwaI" - }, - { - "title": "Destiny's Child - Say My Name - Karaoke Version from Zoom Karaoke", - "id": "jQ_k9eDir0E" - }, - { - "title": "Amelia Lily - You Bring Me Joy - Karaoke Version from Zoom Karaoke", - "id": "93xXhMybr2Y" - }, - { - "title": "Nirvana - Come As You Are - Karaoke Version from Zoom Karaoke", - "id": "pix3zxqGUPs" - }, - { - "title": "Muse - Survival (Official Olympic Song 2012) - Karaoke Version from Zoom Karaoke", - "id": "nan_iA05ghM" - }, - { - "title": "The Beautiful South - Song For Whoever - Karaoke Version from Zoom Karaoke", - "id": "mn3VU-ZdPTo" - }, - { - "title": "Green Day - Good Riddance (Time Of Your Life) - Karaoke Version from Zoom Karaoke", - "id": "AKJ9M2f3uNU" - }, - { - "title": "Tom Jones - I'm Not Feeling It Anymore - Karaoke Version from Zoom Karaoke", - "id": "lwAzxTGJElA" - }, - { - "title": "Martha & The Vandellas - Heatwave - Karaoke Version from Zoom Karaoke", - "id": "vIJn6uXZuM0" - }, - { - "title": "The Doobie Brothers - Long Train Runnin' - Karaoke Version from Zoom Karaoke", - "id": "RpaFJmt1k7w" - }, - { - "title": "John Denver - Leaving On A Jet Plane - Karaoke Version from Zoom Karaoke", - "id": "Lq5XV8VjvxA" - }, - { - "title": "Diana Ross - Ain't No Mountain High Enough - Karaoke Version from Zoom Karaoke", - "id": "Gebe96tFK1g" - }, - { - "title": "John Denver - Rocky Mountain High - Karaoke Version from Zoom Karaoke", - "id": "FyNvLkwcWTg" - }, - { - "title": "The Spice Girls - 2 Become 1 - Karaoke Version from Zoom Karaoke", - "id": "CycS6p1LGkg" - }, - { - "title": "Blink 182 - All The Small Things - Karaoke Version from Zoom Karaoke", - "id": "CbIRqEVUU2w" - }, - { - "title": "Cher - Walking In Memphis - Karaoke Version from Zoom Karaoke", - "id": "C7b3jrQvlzI" - }, - { - "title": "Neil Sedaka - The Neil Sedaka Medley - Karaoke Version from Zoom Karaoke", - "id": "A2Ce4hdl4Fk" - }, - { - "title": "Elvis Presley - G.I. Blues - Karaoke Version from Zoom Karaoke", - "id": "_f2KBdtDmh4" - }, - { - "title": "The Drifters - The Drifters Medley - Karaoke Version from Zoom Karaoke", - "id": "8qeTtmREkXY" - }, - { - "title": "Etta James - At Last - Karaoke Version from Zoom Karaoke", - "id": "jbCF-l7nU6U" - }, - { - "title": "Blur - Song 2 - Karaoke Version from Zoom Karaoke", - "id": "erb8JKZzOpo" - }, - { - "title": "S Club 7 - Reach - Karaoke Version from Zoom Karaoke", - "id": "TWSbsMeGOcw" - }, - { - "title": "Noisettes - That Girl (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "TWHga8p-ANY" - }, - { - "title": "MC Hammer - U Can't Touch This - Karaoke Version from Zoom Karaoke", - "id": "MnBjPuG-jaY" - }, - { - "title": "Elvis Presley - Guitar Man - Karaoke Version from Zoom Karaoke", - "id": "HxTKWvxE4pU" - }, - { - "title": "Tom Jones - Once There Was A Time - Karaoke Version from Zoom Karaoke", - "id": "G-iEf4T1SEo" - }, - { - "title": "Noisettes - That Girl (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "8vFRxhG_tS4" - }, - { - "title": "Beyonce - Listen - Karaoke Version from Zoom Karaoke", - "id": "7pQcFYEdN-I" - }, - { - "title": "Lucy Spraggan - Last Night - Karaoke Version from Zoom Karaoke", - "id": "7-unoh6aTP0" - }, - { - "title": "Oasis - Stop Crying Your Heart Out - Karaoke Version from Zoom Karaoke", - "id": "-4RDHdjG3Bk" - }, - { - "title": "Queen - The Show Must Go On - Karaoke Version from Zoom Karaoke", - "id": "jzA01fX69wM" - }, - { - "title": "Glee Cast - Defying Gravity - Karaoke Version from Zoom Karaoke", - "id": "aEpwWaHn-s4" - }, - { - "title": "Little Mix - Wings - Karaoke Version from Zoom Karaoke", - "id": "8jwSjWoZlhw" - }, - { - "title": "The Black Eyed Peas - Where Is The Love - Karaoke Version from Zoom Karaoke", - "id": "8A_Zon1Evbc" - }, - { - "title": "The Overlanders - Michelle - Karaoke Version from Zoom Karaoke", - "id": "5Qvz5rtW2zQ" - }, - { - "title": "Calvin Harris feat Example - We'll Be Coming Back - Karaoke Version from Zoom Karaoke", - "id": "cR8D4YhAbvM" - }, - { - "title": "TLC - No Scrubs - Karaoke Version from Zoom Karaoke", - "id": "naazbW0rS8Y" - }, - { - "title": "Salt n Pepa - Let's Talk About Sex - Karaoke Version from Zoom Karaoke", - "id": "nSusT1yQ0Rc" - }, - { - "title": "Paloma Faith - Picking Up The Pieces - Karaoke Version from Zoom Karaoke", - "id": "he-nvBkHvVo" - }, - { - "title": "Michael Jackson - The Way You Make Me Feel - Karaoke Version from Zoom Karaoke", - "id": "egawZSgmdkA" - }, - { - "title": "Electric Six - Gay Bar - Karaoke Version from Zoom Karaoke", - "id": "bT9j11x9EzQ" - }, - { - "title": "will.i.am feat Simons - This Is Love - Karaoke Version from Zoom Karaoke", - "id": "S2Kjb5oXddY" - }, - { - "title": "Shakira - Whenever, Wherever - Karaoke Version from Zoom Karaoke", - "id": "MCFKU5N5NdU" - }, - { - "title": "Chris Farlowe - Out Of Time - Karaoke Version from Zoom Karaoke", - "id": "Ga5ERqV07Qk" - }, - { - "title": "Jim Reeves - Distant Drums - Karaoke Version from Zoom Karaoke", - "id": "0fkUviH1DDg" - }, - { - "title": "Rudimental feat John Newman - Feel The Love - Karaoke Version from Zoom Karaoke", - "id": "-RP4RMH-MBM" - }, - { - "title": "Elvis Presley - An American Trilogy - Karaoke Version from Zoom Karaoke", - "id": "t4Yl79tFMzI" - }, - { - "title": "Wiley feat Rymez And Ms D - Heatwave (For Solo Rapper) - Karaoke Version from Zoom Karaoke", - "id": "o_2umVSifLE" - }, - { - "title": "Stereophonics - Handbags And Gladrags Karaoke Version from Zoom Karaoke", - "id": "hL8DLqKFLVU" - }, - { - "title": "Ralph McTell - Streets Of London - Karaoke Version from Zoom Karaoke", - "id": "gzSyUQGhHKs" - }, - { - "title": "Rizzle Kicks - Mama Do The Hump (For Solo Rapper) - Karaoke Version from Zoom Karaoke", - "id": "bBO3xxkeNIs" - }, - { - "title": "Kanye West feat Jamie Foxx - Gold Digger - Karaoke Version from Zoom Karaoke", - "id": "X2rAJqyomAE" - }, - { - "title": "Wiley feat Rymez And Ms D - Heatwave (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "Wu4CBndAqAw" - }, - { - "title": "The Doobie Brothers - Listen To The Music - Karaoke Version from Zoom Karaoke", - "id": "VSf_y1grhNo" - }, - { - "title": "America - A Horse With No Name - Karaoke Version from Zoom Karaoke", - "id": "LsOxeNkp8Y8" - }, - { - "title": "Hazel O'Connor - Will You - Karaoke Version from Zoom Karaoke", - "id": "AsQo1LFC1l4" - }, - { - "title": "Gerry Rafferty - Baker Street - Karaoke Version from Zoom Karaoke", - "id": "2Elk9zEo5t8" - }, - { - "title": "The Supremes - You Can't Hurry Love - Karaoke Version from Zoom Karaoke", - "id": "VhgubOG0U4U" - }, - { - "title": "Muse - Feeling Good - Karaoke Version from Zoom Karaoke", - "id": "RcrWCkx3KcU" - }, - { - "title": "The Wurzels - Combine Harvester (Brand New Key) - Karaoke Version from Zoom Karaoke", - "id": "htfuqjrTyWM" - }, - { - "title": "Neneh Cherry - Buffalo Stance - Karaoke Version from Zoom Karaoke", - "id": "Z8Yv09Qn7hw" - }, - { - "title": "Elvis Presley - Don't Cry Daddy - Karaoke Version from Zoom Karaoke", - "id": "MSbBJuoCJ0A" - }, - { - "title": "Tom Jones And Mousse T - Sex Bomb - Karaoke Version from Zoom Karaoke", - "id": "7Rv9gE-GeMI" - }, - { - "title": "Ellie Goulding - Your Song - Karaoke Version from Zoom Karaoke", - "id": "2y5Qdf8xdxc" - }, - { - "title": "Fleetwood Mac - Rhiannon - Karaoke Version from Zoom Karaoke", - "id": "yy-9EsRiLUs" - }, - { - "title": "Florence + The Machine - Spectrum (Say My Name) (Calvin Harris Mix) - Karaoke Version from Zoom", - "id": "p2nDucHyyiI" - }, - { - "title": "Dionne Warwick - Walk On By - Karaoke Version from Zoom Karaoke", - "id": "nfVbtVf6FZ0" - }, - { - "title": "Rihanna - Where Have You Been - Karaoke Version from Zoom Karaoke", - "id": "_TREJgjsGTU" - }, - { - "title": "Alicia Keys - If I Ain't Got You - Karaoke Version from Zoom Karaoke", - "id": "YMe4-shSCz0" - }, - { - "title": "Bob Marley - No Woman, No Cry The Legend Remixes - Karaoke Version from Zoom Karaoke", - "id": "VZicSmr-yGY" - }, - { - "title": "Green Day - Basket Case - Karaoke Version from Zoom Karaoke", - "id": "64HS4BO9q5Q" - }, - { - "title": "Arctic Monkeys - Mardy Bum - Karaoke Version from Zoom Karaoke", - "id": "301v_MPG-sA" - }, - { - "title": "Shakira feat Wyclef Jean - Hips Don't Lie (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "2BR-F0Zs-kc" - }, - { - "title": "Michael Jackson - Dirty Diana - Karaoke Version from Zoom Karaoke", - "id": "McbexQwQWSE" - }, - { - "title": "Jazzy Jeff And The Fresh Prince - Boom! Shake The Room - Karaoke Version from Zoom Karaoke", - "id": "ua7nvhwUCaY" - }, - { - "title": "Warren G feat Nate Dogg - Regulate - Karaoke Version from Zoom Karaoke", - "id": "cxnff06YKzQ" - }, - { - "title": "Stooshe - Black Heart - Karaoke Version from Zoom Karaoke", - "id": "_Www02epsxQ" - }, - { - "title": "Taio Cruz - Dynamite - Karaoke Version from Zoom Karaoke", - "id": "XmMEpymK5ec" - }, - { - "title": "Dizzee Rascal feat Calvin Harris And Chrome - Dance Wiv Me - Karaoke Version from Zoom Karaoke", - "id": "UQj0mblc1cc" - }, - { - "title": "Britney Spears - I Love Rock 'N' Roll - Karaoke Version from Zoom Karaoke", - "id": "T-9OiWaCzQw" - }, - { - "title": "Girls Aloud - Biology - Karaoke Version from Zoom Karaoke", - "id": "Qog-gDIqpB4" - }, - { - "title": "En Vogue - Don't Let Go (Love) - Karaoke Version from Zoom Karaoke", - "id": "II8JYYLjrSA" - }, - { - "title": "Shaggy feat RikRok - It Wasn't Me - Karaoke Version from Zoom Karaoke", - "id": "CIzl-XwX8i4" - }, - { - "title": "Counting Crows - Mr Jones - Karaoke Version from Zoom Karaoke", - "id": "8OHSFx1C7hI" - }, - { - "title": "Labrinth feat Tinie Tempah - Earthquake - Karaoke Version from Zoom Karaoke", - "id": "8LRZH4kpOpw" - }, - { - "title": "Birdy - Skinny Love - Karaoke Version from Zoom Karaoke", - "id": "WQxIR_oevRs" - }, - { - "title": "James Arthur - Impossible - Karaoke Version from Zoom Karaoke", - "id": "9YvcMysBCms" - }, - { - "title": "One Direction - Kiss You - Karaoke Version from Zoom Karaoke", - "id": "xC5JZuRBQA0" - }, - { - "title": "One Direction - I Would - Karaoke Version from Zoom Karaoke", - "id": "uS3E3tYGjIg" - }, - { - "title": "Alicia Keys - Girl On Fire - Karaoke Version from Zoom Karaoke", - "id": "ryuSLteNwQk" - }, - { - "title": "One Direction - Heart Attack - Karaoke Version from Zoom Karaoke", - "id": "oLl0IzSUON0" - }, - { - "title": "Olly Murs feat Flo Rida - Troublemaker With Rapper - Karaoke Version from Zoom Karaoke", - "id": "a3DfR8J9vBg" - }, - { - "title": "Boyz II Men - End Of The Road - Karaoke Version from Zoom Karaoke", - "id": "T11tcRyg95s" - }, - { - "title": "One Direction - They Don't Know About Us - Karaoke Version from Zoom Karaoke", - "id": "SeU0qSl3n2A" - }, - { - "title": "David Guetta feat Flo Rida And Nicki Minaj - Where Them Girls At - Karaoke Version from Zoom Karaoke", - "id": "QyoeKEk56Zs" - }, - { - "title": "One Direction - Change My Mind - Karaoke Version from Zoom Karaoke", - "id": "QfAV_UOjlB0" - }, - { - "title": "Noah And The Whale - Five Years Time - Karaoke Version from Zoom Karaoke", - "id": "Ofxpt2eKBMg" - }, - { - "title": "House Of Pain - Jump Around - Karaoke Version from Zoom Karaoke", - "id": "GNc2GjxX9DA" - }, - { - "title": "Plain White T's - Hey There Delilah - Karaoke Version from Zoom Karaoke", - "id": "Fd9dWc2FNco" - }, - { - "title": "Olly Murs feat Flo Rida - Troublemaker (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "CA5DTPslz-g" - }, - { - "title": "Jason Mraz - I Won't Give Up - Karaoke Version from Zoom Karaoke", - "id": "AY17AM-mqpE" - }, - { - "title": "Justin Bieber - U Smile - Karaoke Version from Zoom Karaoke", - "id": "3TZOSI-cp-I" - }, - { - "title": "Labrinth feat Emeli Sande - Beneath Your Beautiful - Karaoke Version from Zoom Karaoke", - "id": "sAAxkruUnNQ" - }, - { - "title": "Tinchy Stryder feat N Dubz - Number One - Karaoke Version from Zoom Karaoke", - "id": "g6Q-8_GDApU" - }, - { - "title": "Little Mix - DNA - Karaoke Version from Zoom Karaoke", - "id": "_lSKEOKS4XQ" - }, - { - "title": "Dean Martin - Rudolph The Red Nosed Reindeer - Karaoke Version from Zoom Karaoke", - "id": "Agz1WlLgwYk" - }, - { - "title": "Westlife - Uptown Girl - Karaoke Version from Zoom Karaoke", - "id": "w-SOLkI92F0" - }, - { - "title": "The Fray - How To Save A Life - Karaoke Version from Zoom Karaoke", - "id": "rrq4pennTEw" - }, - { - "title": "Shaggy - Mr Boombastic - Karaoke Version from Zoom Karaoke", - "id": "g5g8oTllVs0" - }, - { - "title": "Beyonce - Love On Top - Karaoke Version from Zoom Karaoke", - "id": "faB_xodKMYU" - }, - { - "title": "The Rolling Stones - Doom And Gloom - Karaoke Version from Zoom Karaoke", - "id": "YDVGQth39_M" - }, - { - "title": "Swing Republic - Crazy In Love - Karaoke Version from Zoom Karaoke", - "id": "UhIPfbJm7Tg" - }, - { - "title": "One Direction - Back For You - Karaoke Version from Zoom Karaoke", - "id": "OtTVtjBhAhA" - }, - { - "title": "Bruno Mars - Locked Out Of Heaven - Karaoke Version from Zoom Karaoke", - "id": "ORHRB75XvXk" - }, - { - "title": "Jordin Sparks feat Chris Brown - No Air - Karaoke Version from Zoom Karaoke", - "id": "L8Zqi8mliSQ" - }, - { - "title": "Linkin Park - In The End - Karaoke Version from Zoom Karaoke", - "id": "Hu6sYcBD8eg" - }, - { - "title": "MGMT - Kids - Karaoke Version from Zoom Karaoke", - "id": "Ec2UBstv5e8" - }, - { - "title": "Pat Benatar - Love Is A Battlefield - Karaoke Version from Zoom Karaoke", - "id": "8lrpo7cv5ik" - }, - { - "title": "Five - Keep On Movin' - Karaoke Version from Zoom Karaoke", - "id": "qCvXEy7SOrw" - }, - { - "title": "Shania Twain - That Don't Impress Me Much - Karaoke Version from Zoom Karaoke", - "id": "NFjZVkMT7cc" - }, - { - "title": "One Direction - Little Things - Karaoke Version from Zoom Karaoke", - "id": "Ai4NlLIfBac" - }, - { - "title": "Stevie Wonder - Happy Birthday - Karaoke Version from Zoom Karaoke", - "id": "80goFB_MzPk" - }, - { - "title": "Foster The People - Pumped Up Kicks - Karaoke Version from Zoom Karaoke", - "id": "Hc2TF__Jm5s" - }, - { - "title": "Mud - The Mud Medley - Karaoke Version from Zoom Karaoke", - "id": "nD96SYcdbPI" - }, - { - "title": "The Wurzels - The Blackbird - Karaoke Version from Zoom Karaoke", - "id": "n1N4dTCn9UY" - }, - { - "title": "Bruno Mars - Count On Me - Karaoke Version from Zoom Karaoke", - "id": "gnv2r9h8Yac" - }, - { - "title": "Maroon 5 - One More Night - Karaoke Version from Zoom Karaoke", - "id": "dkAW01UkVWI" - }, - { - "title": "Bros - When Will I Be Famous - Karaoke Version from Zoom Karaoke", - "id": "Woh0gYCTBDY" - }, - { - "title": "Tom Jones - All I Get From You Is Heartaches - Karaoke Version from Zoom Karaoke", - "id": "N7A3uYZJWZE" - }, - { - "title": "Tenacious D - Tribute - Karaoke Version from Zoom Karaoke", - "id": "GQ5-YiMOru4" - }, - { - "title": "Robbie Williams feat Lissie - Losers (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "DBVtpnJ5EMU" - }, - { - "title": "Girls Aloud - Something New - Karaoke Version from Zoom Karaoke", - "id": "BuYZmE5Jwyw" - }, - { - "title": "One Direction - Stand Up - Karaoke Version from Zoom Karaoke", - "id": "BQqGexArewY" - }, - { - "title": "Pink Floyd - Comfortably Numb - Karaoke Version from Zoom Karaoke", - "id": "5CmfSw0zGvc" - }, - { - "title": "Blue - All Rise - Karaoke Version from Zoom Karaoke", - "id": "o7TlcV8v3jE" - }, - { - "title": "Paul Carrack - When My Little Girl Is Smiling - Karaoke Version from Zoom Karaoke", - "id": "kzXSoSBV2_I" - }, - { - "title": "Paul Carrack - Don't Shed A Tear - Karaoke Version from Zoom Karaoke", - "id": "ZGp6-nibyls" - }, - { - "title": "Johnny Cash - Hurt - Karaoke Version from Zoom Karaoke", - "id": "SggRvypFAG4" - }, - { - "title": "Paul Carrack - When You Walk In The Room - Karaoke Version from Zoom Karaoke", - "id": "S8YfqaXwGCg" - }, - { - "title": "Lawson - Standing In The Dark - Karaoke Version from Zoom Karaoke", - "id": "QHiKJJjTBFk" - }, - { - "title": "Paul Carrack - I Need You - Karaoke Version from Zoom Karaoke", - "id": "KrrWH1z5vCw" - }, - { - "title": "Kate Nash - Foundations - Karaoke Version from Zoom Karaoke", - "id": "INbpMnpGQDo" - }, - { - "title": "The Spice Girls - Viva Forever - Karaoke Version from Zoom Karaoke", - "id": "GKQJYTaM4fI" - }, - { - "title": "Swedish House Mafia feat John Martin - Don't You Worry Child - Karaoke Version from Zoom", - "id": "Dj_H59Boqqs" - }, - { - "title": "Train - Bruises - Karaoke Version from Zoom Karaoke", - "id": "DHIrbydkjtg" - }, - { - "title": "The Rolling Stones - Sympathy For The Devil - Karaoke Version from Zoom Karaoke", - "id": "7vJOoY1tjvY" - }, - { - "title": "Robbie Williams feat Lissie - Losers (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "7SBnW0-R1U0" - }, - { - "title": "Rita Ora feat Tinie Tempah - R.I.P. (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "eyxhI7SP8Lc" - }, - { - "title": "Ne Yo - Let Me Love You Until You Learn To Love Yourself - Karaoke Version from Zoom Karaoke", - "id": "T_PfiQYxAJ4" - }, - { - "title": "Calvin Harris feat Florence Welch - Sweet Nothing - Karaoke Version from Zoom Karaoke", - "id": "RcOiNcTTqwI" - }, - { - "title": "Scouting For Girls - Snakes And Ladders - Karaoke Version from Zoom Karaoke", - "id": "ACdWKbXWqXA" - }, - { - "title": "Kelis - Milkshake - Karaoke Version from Zoom Karaoke", - "id": "7GsUjAqwXlU" - }, - { - "title": "Girls Aloud - Jump - Karaoke Version from Zoom Karaoke", - "id": "3UMIVpBQgcE" - }, - { - "title": "Rita Ora feat Tinie Tempah - R.I.P. (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "3PDkVDkzH5A" - }, - { - "title": "Britney Spears - Lucky - Karaoke Version from Zoom Karaoke", - "id": "q66S6zm7EDk" - }, - { - "title": "Train - Drops Of Jupiter - Karaoke Version from Zoom Karaoke", - "id": "owfhu18w82E" - }, - { - "title": "Rihanna - Diamonds - Karaoke Version from Zoom Karaoke", - "id": "j5rQFzVMTfw" - }, - { - "title": "The Hollies - Holliedaze (The Hollies Medley) - Karaoke Version from Zoom Karaoke", - "id": "fK3SvsqFQUY" - }, - { - "title": "Flo Rida feat Sia - Wild Ones - Karaoke Version from Zoom Karaoke", - "id": "dywLl-lJw2k" - }, - { - "title": "Emeli Sande - Read All About It (Part III) - Karaoke Version from Zoom Karaoke", - "id": "dDhOuJqecxw" - }, - { - "title": "Gerry & The Pacemakers - The Gerry And The Pacemakers Medley - Karaoke Version from Zoom Karaoke", - "id": "_RKOdB72lBM" - }, - { - "title": "Eagle Eye Cherry - Save Tonight - Karaoke Version from Zoom Karaoke", - "id": "XhflxrqhJ3c" - }, - { - "title": "The Script feat will.i.am - Hall Of Fame - Karaoke Version from Zoom Karaoke", - "id": "TiSmKk-3USU" - }, - { - "title": "Ugly Kid Joe - Cat's In The Candle - Karaoke Version from Zoom Karaoke", - "id": "S8bJoZbFMtg" - }, - { - "title": "Jessie J feat David Guetta - Laserlight - Karaoke Version from Zoom Karaoke", - "id": "LGJgjPfHGx4" - }, - { - "title": "The Script - Break Even - Karaoke Version from Zoom Karaoke", - "id": "KG1MKpNxBS8" - }, - { - "title": "Eiffel 65 - Blue (Da Ba Dee) - Karaoke Version from Zoom Karaoke", - "id": "Jw0jjYCDCs8" - }, - { - "title": "Example - Say Nothing - Karaoke Version from Zoom Karaoke", - "id": "EiZ1UQDoAqs" - }, - { - "title": "Toto - Africa - Karaoke Version from Zoom Karaoke", - "id": "CO1esjLpgf8" - }, - { - "title": "Elbow - One Day Like This - Karaoke Version from Zoom Karaoke", - "id": "9OvoMTYTDLg" - }, - { - "title": "Boy Meets Girl - Waiting For A Star To Fall - Karaoke Version from Zoom Karaoke", - "id": "8m5IVEdf4yQ" - }, - { - "title": "Pink - Blow Me (One Last Kiss) - Karaoke Version from Zoom Karaoke", - "id": "8ZTi659sRMQ" - }, - { - "title": "DJ Fresh feat Rita Ora - Hot Right Now - Karaoke Version from Zoom Karaoke", - "id": "8WdK0myMNlY" - }, - { - "title": "Mousse T Vs. Hot 'N' Juicy - Horny - Karaoke Version from Zoom Karaoke", - "id": "5fa-vF3larE" - }, - { - "title": "Audience - I Had A Dream - Karaoke Version from Zoom Karaoke", - "id": "3h8w-fXkFaQ" - }, - { - "title": "Long John Baldry - It's Too Late Now - Karaoke Version from Zoom Karaoke", - "id": "-RxuYp4bGQU" - }, - { - "title": "Chris Brown - Yeah 3x - Karaoke Version from Zoom Karaoke", - "id": "V_vIAFx-_ko" - }, - { - "title": "Green Day - American Idiot - Karaoke Version from Zoom Karaoke", - "id": "4KoirB06lUE" - }, - { - "title": "Bruno Mars - When I Was Your Man - Karaoke Version from Zoom Karaoke", - "id": "zCiG-MF9Tk0" - }, - { - "title": "Beyonce - 1+1 - Karaoke Version from Zoom Karaoke", - "id": "lVhv30Fp-yU" - }, - { - "title": "Toploader - Dancing In The Moonlight - Karaoke Version from Zoom Karaoke", - "id": "gn0TBsdgS20" - }, - { - "title": "Glen Campbell - It's Only Make Believe - Karaoke Version from Zoom Karaoke", - "id": "ga2B0B4JJTY" - }, - { - "title": "The Kinks - Apeman - Karaoke Version from Zoom Karaoke", - "id": "cnzj4h6WX_8" - }, - { - "title": "Katy Perry - Waking Up In Vegas - Karaoke Version from Zoom Karaoke", - "id": "X2rHP76LY_E" - }, - { - "title": "One Direction - One Way Or Another (Teenage Kicks) - Karaoke Version from Zoom Karaoke", - "id": "MwB90xWmqYI" - }, - { - "title": "Britney Spears - Everytime - Karaoke Version from Zoom Karaoke", - "id": "Kl0G2yLTopQ" - }, - { - "title": "Mike Posner - Cooler Than Me - Karaoke Version from Zoom Karaoke", - "id": "IZQI0NraeBs" - }, - { - "title": "Foo Fighters - Best Of You - Karaoke Version from Zoom Karaoke", - "id": "Hs086bjSoFM" - }, - { - "title": "AC/DC - Thunderstruck - Karaoke Version from Zoom Karaoke", - "id": "DX5oGGCSNbs" - }, - { - "title": "Weird Al Yankovic - Canadian Idiot - Karaoke Version from Zoom Karaoke", - "id": "67hBYbBamB8" - }, - { - "title": "Rufus Wainwright - Hallelujah - Karaoke Version from Zoom Karaoke", - "id": "D7pwxqPAchM" - }, - { - "title": "ZZ Top - Sharp Dressed Man - Karaoke Version from Zoom Karaoke", - "id": "prRalwto9iY" - }, - { - "title": "Chris Brown feat Justin Bieber - Next To You - Karaoke Version from Zoom Karaoke", - "id": "lKX8UytqyqM" - }, - { - "title": "Hotlegs - Neanderthal Man - Karaoke Version from Zoom Karaoke", - "id": "fcFuUD0E_8s" - }, - { - "title": "Bobby Bloom - Montego Bay - Karaoke Version from Zoom Karaoke", - "id": "d29i6D72D2k" - }, - { - "title": "Ronan Keating And Yusuf Islam - Father And Son - Karaoke Version from Zoom Karaoke", - "id": "bO6QFMxCYeg" - }, - { - "title": "Alicia Keys - Fallin' - Karaoke Version from Zoom Karaoke", - "id": "J2F6jmFJT7M" - }, - { - "title": "Glenn Medeiros - Nothing's Gonna Change My Love For You - Karaoke Version from Zoom Karaok", - "id": "dUVKtw7GQcE" - }, - { - "title": "Far East Movement - Like A G6 (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "WowZ6JbNRMg" - }, - { - "title": "Robbie Williams - Mr Bojangles - Karaoke Version from Zoom Karaoke", - "id": "2TygG7WD6DU" - }, - { - "title": "3OH!3 feat Katy Perry - Starstrukk - Karaoke Version from Zoom Karaoke", - "id": "ekpvHhUfkZw" - }, - { - "title": "David Guetta feat Usher - Without You - Karaoke Version from Zoom Karaoke", - "id": "_vCx7hobzeM" - }, - { - "title": "Far East Movement - Like A G6 (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "J7SsLoBBXMo" - }, - { - "title": "Glen Campbell - Honey Come Back - Karaoke Version from Zoom Karaoke", - "id": "FLr-6EotWt0" - }, - { - "title": "Robbie Williams And Nicole Kidman - Somethin' Stupid - Karaoke Version from Zoom Karaoke", - "id": "DF24VL-LDM0" - }, - { - "title": "Shontelle - Impossible - Karaoke Version from Zoom Karaoke", - "id": "CjN69XUMSZo" - }, - { - "title": "Rita Ora - Radioactive - Karaoke Version from Zoom Karaoke", - "id": "C1Qw7Ik74AA" - }, - { - "title": "The Temper Trap - Sweet Disposition - Karaoke Version from Zoom Karaoke", - "id": "AQ-KmKWXQYs" - }, - { - "title": "Britney Spears - I'm Not A Girl, Not Yet A Woman - Karaoke Version from Zoom Karaoke", - "id": "-ZigWLmYEoU" - }, - { - "title": "The Rocky Horror Picture Show - Sweet Transvestite - Karaoke Version from Zoom Karaoke", - "id": "xRZnLUAlX2k" - }, - { - "title": "Robbie Williams - Mack The Knife - Karaoke Version from Zoom Karaoke", - "id": "DInJuvKb83c" - }, - { - "title": "Johnny Nash - I Can See Clearly Now - Karaoke Version from Zoom Karaoke", - "id": "lKpKcp58EB4" - }, - { - "title": "2Pac feat Dr Dre - California Love - Karaoke Version from Zoom Karaoke", - "id": "h5jVkRtZ1Ck" - }, - { - "title": "Lana Del Rey - Blue Jeans - Karaoke Version from Zoom Karaoke", - "id": "X8_XG097M8k" - }, - { - "title": "Justin Bieber - Love Me - Karaoke Version from Zoom Karaoke", - "id": "O0wFdJCThvU" - }, - { - "title": "Irish Traditional - The Fields Of Athenry - Karaoke Version from Zoom Karaoke", - "id": "HN43rFoAz2w" - }, - { - "title": "Lonnie Donegan - My Old Man's A Dustman - Karaoke Version from Zoom Karaoke", - "id": "FrRPObBfBKs" - }, - { - "title": "Traditional - Happy Birthday (With Vocals) - Karaoke Version from Zoom Karaoke", - "id": "BFuoz_ZM0pw" - }, - { - "title": "Secret Affair - Time For Action - Karaoke Version from Zoom Karaoke", - "id": "4r7myxOng2g" - }, - { - "title": "Pitbull feat Ne Yo, Nayer And Afrojack - Give Me Everything (Duet Version) Karaoke Version", - "id": "4NmDUCNPohc" - }, - { - "title": "Pitbull feat Ne Yo, Nayer And Afrojack - Give Me Everything (Male Vocals Only) - Karaoke Version", - "id": "2mDV2fXa2fk" - }, - { - "title": "Billy Paul - Me And Mrs Jones - Karaoke Version from Zoom Karaoke", - "id": "wwqRja87wCs" - }, - { - "title": "Annie Soundtrack - Tomorrow - Karaoke Version from Zoom Karaoke (1982 Version)", - "id": "wcnKI7M76cM" - }, - { - "title": "X Factor Finalists 2010 - Heroes - Karaoke Version from Zoom Karaoke", - "id": "rziy7oTNN1I" - }, - { - "title": "UB40 With Chrissie Hynde - I Got You Babe - Karaoke Version from Zoom Karaoke", - "id": "pkJeT9OWS_k" - }, - { - "title": "Elvis Presley - Santa Bring My Baby Back To Me - Karaoke Version from Zoom Karaoke", - "id": "n7Fs5K1yACw" - }, - { - "title": "Catatonia - Road Rage - Karaoke Version from Zoom Karaoke", - "id": "iielDC11BzQ" - }, - { - "title": "Ed Sheeran - You Need Me, I Don't Need You - Karaoke Version from Zoom Karaoke", - "id": "dSlIoKYGZTI" - }, - { - "title": "Justin Timberlake - Cry Me A River - Karaoke Version from Zoom Karaoke", - "id": "RAYUflZi1fI" - }, - { - "title": "Marina And The Diamonds - Primadonna - Karaoke Version from Zoom Karaoke", - "id": "IajFLW824LU" - }, - { - "title": "Tina Turner - Private Dancer - Karaoke Version from Zoom Karaoke", - "id": "GdooS4Ojok8" - }, - { - "title": "Tina Turner - Proud Mary (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "G3IEOueOCO0" - }, - { - "title": "Sean Paul - She Doesn't Mind - Karaoke Version from Zoom Karaoke", - "id": "FsRbeFu0DXw" - }, - { - "title": "Nicki Minaj feat Chris Brown - Right By My Side - Karaoke Version from Zoom Karaoke", - "id": "BS6tUazMNYc" - }, - { - "title": "Nicki Minaj feat Rihanna - Fly - Karaoke Version from Zoom Karaoke", - "id": "AOl68Q_Ykp0" - }, - { - "title": "The Kooks - Naive - Karaoke Version from Zoom Karaoke", - "id": "0I9c-mqXh04" - }, - { - "title": "Christina Perri - A Thousand Years - Karaoke Version from Zoom Karaoke", - "id": "-E0H0DJhd-I" - }, - { - "title": "Paloma Faith - Just Be - Karaoke Version from Zoom Karaoke", - "id": "f3GXuYqUq2w" - }, - { - "title": "Electric Six - Danger High Voltage - Karaoke Version from Zoom Karaoke", - "id": "WcRYf7mT5Gk" - }, - { - "title": "Bob Marley - Redemption Song - Karaoke Version from Zoom Karaoke", - "id": "y6w_ICCAZBs" - }, - { - "title": "Lady Gaga - Born This Way (Country Road Version) - Karaoke Version from Zoom Karaoke", - "id": "vgcOk9D4ImQ" - }, - { - "title": "Johnny Cash - I've Been Everywhere - Karaoke Version from Zoom Karaoke", - "id": "tAZFxJ21yoU" - }, - { - "title": "Will Smith - Miami - Karaoke Version from Zoom Karaoke", - "id": "sI-lUNyl8cc" - }, - { - "title": "Miley Cyrus - See You Again - Karaoke Version from Zoom Karaoke", - "id": "qFbB0cQd4HA" - }, - { - "title": "Cold Chisel - Khe Sanh - Karaoke Version from Zoom Karaoke", - "id": "paevOLktCZc" - }, - { - "title": "Gossip - Standing In The Way Of Control - Karaoke Version from Zoom Karaoke", - "id": "iD9A_RPmkcg" - }, - { - "title": "Beats International - Dub Be Good To Me (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "hp8RQZitY6M" - }, - { - "title": "One Direction - Last First Kiss - Karaoke Version from Zoom Karaoke", - "id": "V3pKWjaWru8" - }, - { - "title": "The Justice Collective - He Ain't Heavy, He's My Brother - Karaoke Version from Zoom Karaoke", - "id": "HaqTKfl3dp4" - }, - { - "title": "Usher feat Pitbull - DJ Got Us Falling In Love - Karaoke Version from Zoom Karaoke", - "id": "4rdT4loEbEQ" - }, - { - "title": "will.i.am feat Britney Spears - Scream And Shout - Karaoke Version from Zoom Karaoke", - "id": "zkgtl6s0rf4" - }, - { - "title": "Simon And Garfunkel - America - Karaoke Version from Zoom Karaoke", - "id": "uQqByLmA9mg" - }, - { - "title": "Cher Lloyd feat Mike Posner - With Ur Love - Karaoke Version from Zoom Karaoke", - "id": "u553Wq_ecmA" - }, - { - "title": "Kesha - Die Young - Karaoke Version from Zoom Karaoke", - "id": "tXvtlBFqXdM" - }, - { - "title": "Beats International - Dub Be Good To Me (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "ovFwDbjiNwk" - }, - { - "title": "Chris Brown - Turn Up The Music - Karaoke Version from Zoom Karaoke", - "id": "mk8WYMSMvnc" - }, - { - "title": "McFly - Love Is Easy - Karaoke Version from Zoom Karaoke", - "id": "km2voNbgge4" - }, - { - "title": "Five - Everybody Get Up - Karaoke Version from Zoom Karaoke", - "id": "VRP7lwER1U0" - }, - { - "title": "One Direction - Over Again - Karaoke Version from Zoom Karaoke", - "id": "SPVZfTwkqMY" - }, - { - "title": "Emeli Sande - Heaven - Karaoke Version from Zoom Karaoke", - "id": "PoJDF_jdErk" - }, - { - "title": "One Direction - Rock Me - Karaoke Version from Zoom Karaoke", - "id": "OjJO3eJuVDE" - }, - { - "title": "Robbie Williams - Different - Karaoke Version from Zoom Karaoke", - "id": "Kksb6z9V0hI" - }, - { - "title": "Seal - Kiss From A Rose - Karaoke Version from Zoom Karaoke", - "id": "8vXm-QR3rEM" - }, - { - "title": "Rihanna feat Mikky Ekko - Stay - Karaoke Version from Zoom Karaoke", - "id": "8QPZPrJaFG0" - }, - { - "title": "Alicia Keys - No One - Karaoke Version from Zoom Karaoke", - "id": "8AgBaZq_--c" - }, - { - "title": "Hello - Tell Him - Karaoke Version from Zoom Karaoke", - "id": "uTSNeYqy3uA" - }, - { - "title": "Beyonce - Run The World (Girls) - Karaoke Version from Zoom Karaoke", - "id": "AAUXHFP4ZyQ" - }, - { - "title": "Amelia Lily - Party Over - Karaoke Version from Zoom Karaoke", - "id": "l9rEZusNsxM" - }, - { - "title": "Justin Bieber - One Time - Karaoke Version from Zoom Karaoke", - "id": "kHjy-3meF9M" - }, - { - "title": "Blur - Country House - Karaoke Version from Zoom Karaoke", - "id": "bzZU-lwsz-M" - }, - { - "title": "Tony Orlando And Dawn - What Are You Doing Sunday - Karaoke Version from Zoom Karaoke", - "id": "ayUEXWNXPKU" - }, - { - "title": "Tracy Chapman - Baby Can I Hold You - Karaoke Version from Zoom Karaoke", - "id": "XBacpl_9520" - }, - { - "title": "Dr Dre feat Eminem And Skylar Grey - I Need A Doctor (For Solo Male) - Karaoke Version", - "id": "U7mamUPpEUg" - }, - { - "title": "Britney Spears - 3 - Karaoke Version from Zoom Karaoke", - "id": "S__mzBhS6fw" - }, - { - "title": "Martin Solveig feat Dragonette - Hello - Karaoke Version from Zoom Karaoke", - "id": "SZhGQR-prXI" - }, - { - "title": "The Wizard Of Oz - Ding Dong The Witch Is Dead - Karaoke Version from Zoom", - "id": "PsOjwzuKkSI" - }, - { - "title": "The Saturdays feat Sean Paul - What About Us - Karaoke Version from Zoom Karaoke", - "id": "NX4LhGf7QE0" - }, - { - "title": "The Stone Roses - I Am The Resurrection - Karaoke Version from Zoom Karaoke", - "id": "H6vKksNw3EU" - }, - { - "title": "Bridgit Mendler - Ready Or Not - Karaoke Version from Zoom Karaoke", - "id": "EXtaCr9lS68" - }, - { - "title": "Tony Orlando And Dawn - Candida - Karaoke Version from Zoom Karaoke", - "id": "AhRcc_3_UG8" - }, - { - "title": "Boyz II Men - I'll Make Love To You - Karaoke Version from Zoom Karaoke", - "id": "6TTVWCw-wEc" - }, - { - "title": "B.O.B. feat Bruno Mars - Nothin' On You - Karaoke Version from Zoom Karaoke", - "id": "4U8GylpOWsQ" - }, - { - "title": "T. Rex - Solid Gold Easy Action - Karaoke Version from Zoom Karaoke", - "id": "3HaTC38wwEE" - }, - { - "title": "Marvin Gaye And Tammi Terrell - Ain't No Mountain High Enough - Karaoke Version from Zoom", - "id": "0XC39zKT_Dk" - }, - { - "title": "McFly feat Taio Cruz - Shine A Light - Karaoke Version from Zoom Karaoke", - "id": "zyaeJPDwB0s" - }, - { - "title": "Justin Bieber - Mistletoe - Karaoke Version from Zoom Karaoke", - "id": "sv9b46iA48Q" - }, - { - "title": "Desmond Dekker - You Can Get It If You Really Want - Karaoke Version from Zoom Karaoke", - "id": "z30YaWqiUGA" - }, - { - "title": "Destiny's Child - Independent Women (Part 1) - Karaoke Version from Zoom Karaoke", - "id": "l2SS0WSMNVg" - }, - { - "title": "Jimmy Buffett - The Pascagoula Run - Karaoke Version from Zoom Karaoke", - "id": "jZRl9S8SJlo" - }, - { - "title": "Alexis Jordan - Happiness - Karaoke Version from Zoom Karaoke", - "id": "hjr5GyY_adY" - }, - { - "title": "Bob And Marcia - Young Gifted And Black - Karaoke Version from Zoom Karaoke", - "id": "MzR2lvH8ljk" - }, - { - "title": "Roll Deep - Green Light - Karaoke Version from Zoom Karaoke", - "id": "HDGWeh4VonA" - }, - { - "title": "The Saturdays feat Flo Rida - Higher (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "sc_jDArXoDg" - }, - { - "title": "Van Morrison - Moondance - Karaoke Version from Zoom Karaoke", - "id": "ozNjEi75L4w" - }, - { - "title": "Toni Braxton - Unbreak My Heart - Karaoke Version from Zoom Karaoke", - "id": "lV_XW93fZ-A" - }, - { - "title": "Feist - 1234 - Karaoke Version from Zoom Karaoke", - "id": "ff56ZsFk-fA" - }, - { - "title": "Olly Murs - Busy - Karaoke Version from Zoom Karaoke", - "id": "ff2dYfn1u3k" - }, - { - "title": "Olly Murs - Heart On My Sleeve - Karaoke Version from Zoom Karaoke", - "id": "f9cVvDVBpcM" - }, - { - "title": "Queens Of The Stone Age - No One Knows - Karaoke Version from Zoom Karaoke", - "id": "emWFuEcAjHE" - }, - { - "title": "Jake Bugg - Lightning Bolt - Karaoke Version from Zoom Karaoke", - "id": "c1CyZzXkHqQ" - }, - { - "title": "Scouting For Girls - She's So Lovely - Karaoke Version from Zoom Karaoke", - "id": "VhqkcXxbTjg" - }, - { - "title": "Robbie Williams - Be A Boy - Karaoke Version from Zoom Karaoke", - "id": "V_eL2IJpm5w" - }, - { - "title": "Natasha Bedingfield - Unwritten - Karaoke Version from Zoom Karaoke", - "id": "TNGnJm2xsFU" - }, - { - "title": "Paloma Faith - New York - Karaoke Version from Zoom Karaoke", - "id": "RFAWsMdZidI" - }, - { - "title": "Celine Dion - All By Myself - Karaoke Version from Zoom Karaoke", - "id": "PQQG3AAXcPA" - }, - { - "title": "Jay Z - Hard Knock Life - Karaoke Version from Zoom Karaoke", - "id": "PEa9Y0B14xA" - }, - { - "title": "The Saturdays feat Flo Rida - Higher (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "MT-bT1skQEI" - }, - { - "title": "Fall Out Boy - My Songs Know What You Did In The Dark - Karaoke Version from Zoom Karaoke", - "id": "E81qlZbvnXk" - }, - { - "title": "Jimmy Buffett - Growing Older But Not Up - Karaoke Version from Zoom Karaoke", - "id": "DrSMoH5DJUA" - }, - { - "title": "Jake Bugg - Two Fingers - Karaoke Version from Zoom Karaoke", - "id": "9t2MwtSNE3s" - }, - { - "title": "Jay Z - 99 Problems - Karaoke Version from Zoom Karaoke", - "id": "74BvXopdNpc" - }, - { - "title": "Destiny's Child - Survivor - Karaoke Version from Zoom Karaoke", - "id": "4kvghNwEa2g" - }, - { - "title": "JLS - Love You More - Karaoke Version from Zoom Karaoke", - "id": "3bfcIvva9_M" - }, - { - "title": "Pink feat Nate Ruess - Just Give Me A Reason - Karaoke Version from Zoom Karaoke", - "id": "yDJm1swmw9Q" - }, - { - "title": "Deep Purple - Black Night - Karaoke Version from Zoom Karaoke", - "id": "v5Say1f-xGQ" - }, - { - "title": "Olly Murs - Army Of Two - Karaoke Version from Zoom Karaoke", - "id": "mV6woDAPj50" - }, - { - "title": "50 Cent - Candy Shop - Karaoke Version from Zoom Karaoke", - "id": "_96Y0Fi82uY" - }, - { - "title": "Rebecca Black - Friday - Karaoke Version from Zoom Karaoke", - "id": "TClQ0UcqyzI" - }, - { - "title": "The Offspring - Pretty Fly For A White Guy - Karaoke Version from Zoom Karaoke", - "id": "N1QGrqXDO44" - }, - { - "title": "Gabrielle Aplin - Please Don't Say You Love Me - Karaoke Version from Zoom Karaoke", - "id": "LRKHHDgMN9s" - }, - { - "title": "B.O.B. feat. Hayley Williams - Airplanes (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "SqwAf7apxpw" - }, - { - "title": "Haim - Don't Save Me - Karaoke Version from Zoom Karaoke", - "id": "vOxJhE9UvhM" - }, - { - "title": "Carole King - Will You Love Me Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "T6URql4pOI0" - }, - { - "title": "Creedence Clearwater Revival - Up Around The Bend - Karaoke Version from Zoom Karaoke", - "id": "yQKw8d9CrUg" - }, - { - "title": "Justin Timberlake - Mirrors - Karaoke Version from Zoom Karaoke", - "id": "ggIsnccqed8" - }, - { - "title": "Willow Smith - Whip My Hair - Karaoke Version from Zoom Karaoke", - "id": "ffbNnxGe6UQ" - }, - { - "title": "Irish Traditional - Danny Boy - Karaoke Version from Zoom Karaoke", - "id": "RAfF0eBCV8I" - }, - { - "title": "Marilyn Monroe - Diamonds Are A Girl's Best Friend - Karaoke Version from Zoom Karaoke", - "id": "I4RnSaE4Ycs" - }, - { - "title": "David Guetta feat Rihanna - Who's That Chick - Karaoke Version from Zoom Karaoke", - "id": "Gy1OV6-PWjg" - }, - { - "title": "Michael Buble - It's A Beautiful Day - Karaoke Version from Zoom Karaoke", - "id": "GaFVjsML1GQ" - }, - { - "title": "Hoodoo Gurus - 1000 Miles Away - Karaoke Version from Zoom Karaoke", - "id": "7GihSMq7PaE" - }, - { - "title": "Biffy Clyro - Many Of Horror - Karaoke Version from Zoom Karaoke", - "id": "2zGGdXaN2ZA" - }, - { - "title": "Garth Brooks - Friends In Low Places - Karaoke Version from Zoom Karaoke", - "id": "yUzq9Q1tPxE" - }, - { - "title": "Chris Brown feat Benny Benassi - Beautiful People - Karaoke Version from Zoom Karaoke", - "id": "xU6YTvzUhPQ" - }, - { - "title": "Evanescence - My Immortal - Karaoke Version from Zoom Karaoke", - "id": "qKoClBK98Yw" - }, - { - "title": "Bastille - Pompeii - Karaoke Version from Zoom Karaoke", - "id": "N9IWGVkAUN8" - }, - { - "title": "The Black Eyed Peas - Just Can't Get Enough - Karaoke Version from Zoom Karaoke", - "id": "DY3jDF2nG8k" - }, - { - "title": "Ne Yo - So Sick - Karaoke Version from Zoom Karaoke", - "id": "C_drdtAPF6Y" - }, - { - "title": "Macklemore feat Ryan Lewis And Wanz - Thrift Shop - Karaoke Version from Zoom Karaoke", - "id": "2zehgcStZlw" - }, - { - "title": "Nickelback - How You Remind Me - Karaoke Version from Zoom Karaoke", - "id": "1XgrZo-GGI4" - }, - { - "title": "Chairman Of The Board - Give Me Just A Little More Time - Karaoke Version from Zoom Karaoke", - "id": "0I2T6QrcC7A" - }, - { - "title": "Dido - Here With Me - Karaoke Version from Zoom Karaoke", - "id": "eDyn4Qz4ADc" - }, - { - "title": "Fergie - Big Girls Don't Cry - Karaoke Version from Zoom Karaoke", - "id": "M-p_Y9tqc6E" - }, - { - "title": "The Hollies - Carrie Anne - Karaoke Version from Zoom Karaoke", - "id": "8FzsAVJj7WM" - }, - { - "title": "Fleetwood Mac - Tusk - Karaoke Version from Zoom Karaoke", - "id": "l5vtBh5JF6o" - }, - { - "title": "The Stereophonics - Graffiti On The Train - Karaoke Version from Zoom Karaoke", - "id": "gg4Nq1u9I18" - }, - { - "title": "Demi Lovato - La La Land - Karaoke Version from Zoom Karaoke", - "id": "cs5hfEDq4TE" - }, - { - "title": "Rihanna - Shut Up And Drive - Karaoke Version from Zoom Karaoke", - "id": "pn2_bUg8FO8" - }, - { - "title": "The Hollies - Jennifer Eccles - Karaoke Version from Zoom Karaoke", - "id": "ruw0sA8xCY8" - }, - { - "title": "Fleetwood Mac - Blue Letter - Karaoke Version from Zoom Karaoke", - "id": "iZBfYCYHP58" - }, - { - "title": "Olly Murs - Dear Darlin' - Karaoke Version from Zoom Karaoke", - "id": "iG6qBQBnctA" - }, - { - "title": "Dobie Gray - Drift Away - Karaoke Version from Zoom Karaoke", - "id": "c56mZTVP8lA" - }, - { - "title": "Gene Pitney - Nobody Needs Your Love - Karaoke Version from Zoom Karaoke", - "id": "WdxzGSctgoc" - }, - { - "title": "Dina Carroll - Don't Be A Stranger - Karaoke Version from Zoom Karaoke", - "id": "MDebE9eaiAs" - }, - { - "title": "Geri Halliwell - It's Raining Men - Karaoke Version from Zoom Karaoke", - "id": "FyO1Uf6FH8I" - }, - { - "title": "Don Williams - You're My Best Friend - Karaoke Version from Zoom Karaoke", - "id": "DWLbODNznIk" - }, - { - "title": "Fleetwood Mac - Hold Me - Karaoke Version from Zoom Karaoke", - "id": "DG0OpzANagc" - }, - { - "title": "Cat Stevens - Matthew And Son - Karaoke Version from Zoom Karaoke", - "id": "1LZC1B_TchY" - }, - { - "title": "Fleetwood Mac - Monday Morning - Karaoke Version from Zoom Karaoke", - "id": "15-r7IX8fOg" - }, - { - "title": "Scott McKenzie - San Francisco (Be Sure To Wear Some Flowers In Your Hair) - Karaoke Version", - "id": "uO9wUYIgMPo" - }, - { - "title": "The Foundations - Baby Now That I've Found You - Karaoke Version from Zoom Karaoke", - "id": "NMy00Zkvhw0" - }, - { - "title": "Dido - Thank You - Karaoke Version from Zoom Karaoke", - "id": "7OdcBr3VSCE" - }, - { - "title": "Boz Scaggs - Lido Shuffle - Karaoke Version from Zoom Karaoke", - "id": "znCyqqn45xE" - }, - { - "title": "Jason Derulo - Ridin' Solo - Karaoke Version from Zoom Karaoke", - "id": "uQJUQpJxJOc" - }, - { - "title": "Celine Dion - The Power Of Love - Karaoke Version from Zoom Karaoke", - "id": "szH8f3ZOy_U" - }, - { - "title": "Fleetwood Mac - Sugar Daddy - Karaoke Version from Zoom Karaoke", - "id": "rR1qW2zjo5I" - }, - { - "title": "Fleetwood Mac - Second Hand News - Karaoke Version from Zoom Karaoke", - "id": "iOhX40IzLXU" - }, - { - "title": "Michael Buble - You Make Me Feel So Young - Karaoke Version from Zoom Karaoke", - "id": "fQyk72wPgLI" - }, - { - "title": "Girls Aloud - I'll Stand By You - Karaoke Version from Zoom Karaoke", - "id": "abf2iZUIv6A" - }, - { - "title": "Sam Brown - Stop - Karaoke Version from Zoom Karaoke", - "id": "UVDOjTmSFbA" - }, - { - "title": "The Black Eyed Peas - Pump It - Karaoke Version from Zoom Karaoke", - "id": "6NuVCcC2EMM" - }, - { - "title": "The Kooks - She Moves In Her Own Way - Karaoke Version from Zoom Karaoke", - "id": "61nKyFv71MI" - }, - { - "title": "Kenny - The Bump - Karaoke Version from Zoom Karaoke", - "id": "52zr9YqsIpU" - }, - { - "title": "Faith Hill - There You'll Be - Karaoke Version from Zoom Karaoke", - "id": "vlDGPraTY1Y" - }, - { - "title": "Rhianna - Oh Baby - Karaoke Version from Zoom Karaoke", - "id": "jJz1fKbP3p8" - }, - { - "title": "Tinie Tempah feat Ellie Goulding - Wonderman (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "VxSJzwiTBio" - }, - { - "title": "Michael Buble - You've Got A Friend In Me - Karaoke Version from Zoom Karaoke", - "id": "zHQBKRN-a8s" - }, - { - "title": "Tinie Tempah feat Ellie Goulding - Wonderman (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "eJfjnZhA0fo" - }, - { - "title": "Nelly - Hey Porsche - Karaoke Version from Zoom Karaoke", - "id": "YBQmEIEKPiw" - }, - { - "title": "Professor Green feat Lily Allen - Just Be Good To Green - Karaoke Version from Zoom Karaoke", - "id": "AjW90fxWpAM" - }, - { - "title": "Michael Buble - Young At Heart - Karaoke Version from Zoom Karaoke", - "id": "e8_dEE7hooE" - }, - { - "title": "Puff Daddy feat Faith Evans and 112 - I'll Be Missing You - Karaoke Version from Zoom Karaoke", - "id": "KQxkmz1SuRo" - }, - { - "title": "Jake Bugg - Country Song - Karaoke Version from Zoom Karaoke", - "id": "4RnnphqVVgY" - }, - { - "title": "Michael Buble - I Got It Easy - Karaoke Version from Zoom Karaoke", - "id": "5DrNxBYKTMc" - }, - { - "title": "Demi Lovato - Heart Attack - Karaoke Version from Zoom Karaoke", - "id": "UqV-76FGkCI" - }, - { - "title": "Passenger - Let Her Go - Karaoke Version from Zoom Karaoke", - "id": "z9NGyQPiz4k" - }, - { - "title": "Loveable Rogues - What A Night - Karaoke Version from Zoom Karaoke", - "id": "xh-jPpy7Fmk" - }, - { - "title": "Rizzle Kicks - Down With The Trumpets - Karaoke Version from Zoom Karaoke", - "id": "n6U9vBjmbP4" - }, - { - "title": "Kasabian - Fire - Karaoke Version from Zoom Karaoke", - "id": "kTS_RtkvAL0" - }, - { - "title": "Rudimental feat Ella Eyre - Waiting All Night - Karaoke Version from Zoom Karaoke", - "id": "bJ3ZpYzsKbY" - }, - { - "title": "A.R. Rahman feat The Pussycat Dolls - Jai Ho You Are My Destiny - Karaoke Version from Zoom Karaoke", - "id": "ZxaQGCBNKZI" - }, - { - "title": "Bloodhound Gang - The Bad Touch - Karaoke Version from Zoom Karaoke", - "id": "QKZs3NC5npU" - }, - { - "title": "Michael Buble - Who's Lovin' You - Karaoke Version from Zoom Karaoke", - "id": "OlHvTa4gJAA" - }, - { - "title": "Justin Bieber - That Should Be Me - Karaoke Version from Zoom Karaoke", - "id": "NAqCcrQpvFQ" - }, - { - "title": "Glee Cast - Loser Like Me - Karaoke Version from Zoom Karaoke", - "id": "KPKvyYUEcfI" - }, - { - "title": "Michael Buble - To Love Somebody - Karaoke Version from Zoom Karaoke", - "id": "JB3xSgFKvDc" - }, - { - "title": "Beyonce - Countdown - Karaoke Version from Zoom Karaoke", - "id": "8-qgAlUf6Jk" - }, - { - "title": "Destiny's Child - Bootylicious - Karaoke Version from Zoom Karaoke", - "id": "4RwDXEXFWt4" - }, - { - "title": "Jake Bugg - Taste It - Karaoke Version from Zoom Karaoke", - "id": "3pltw24Kr0E" - }, - { - "title": "Shocking Blue - Venus - Karaoke Version from Zoom Karaoke", - "id": "3MrshQO4m4w" - }, - { - "title": "Michael Buble - Come Dance With Me - Karaoke Version from Zoom Karaoke", - "id": "33CHp-OhCt8" - }, - { - "title": "Michael Buble feat Reese Witherspoon - Something Stupid - Karaoke Version from Zoom Karaoke", - "id": "0H6icKy_tw8" - }, - { - "title": "Crowded House - Fall At Your Feet - Karaoke Version from Zoom Karaoke", - "id": "3fc45wqtRIM" - }, - { - "title": "Marvin Gaye - Let's Get It On - Karaoke Version from Zoom Karaoke", - "id": "icYum9Dr5ys" - }, - { - "title": "Arctic Monkeys - When The Sun Goes Down - Karaoke Version from Zoom Karaoke", - "id": "_uZUOjfj-WU" - }, - { - "title": "Rihanna - Cheers (Drink To That) - Karaoke Version from Zoom Karaoke", - "id": "z1Q84aU70lE" - }, - { - "title": "Nelly Furtado - Maneater - Karaoke Version from Zoom Karaoke", - "id": "t51Z5INiTpU" - }, - { - "title": "Michael Buble - To Be Loved - Karaoke Version from Zoom Karaoke", - "id": "iVxhMc95vYU" - }, - { - "title": "Professor Green feat Emeli Sande - Read All About It (Duet Version) - Karaoke Version", - "id": "cOYAl15btBY" - }, - { - "title": "The Kinks - Till The End Of The Day - Karaoke Version from Zoom Karaoke", - "id": "Qs-DQv7-5JU" - }, - { - "title": "Calvin Harris feat Ellie Goulding - I Need Your Love - Karaoke Version from Zoom Karaoke", - "id": "HkNkxYtYleg" - }, - { - "title": "Sparks - This Town Ain't Big Enough For Both Of Us - Karaoke Version from Zoom Karaoke", - "id": "869Jw8nfjmI" - }, - { - "title": "Israel Kamakawiwo'ole - Over The Rainbow What A Wonderful World - Karaoke Version from Zoom", - "id": "X0OGs-CVGe8" - }, - { - "title": "Los Lobos - La Bamba - Karaoke Version from Zoom Karaoke", - "id": "rXyR_4Am8FI" - }, - { - "title": "Celine Dion - Because You Loved Me - Karaoke Version from Zoom Karaoke", - "id": "fphhxu-WVJg" - }, - { - "title": "Britney Spears - Gimme More - Karaoke Version from Zoom Karaoke", - "id": "fT2IgCMKof0" - }, - { - "title": "Beyonce - Broken Hearted Girl - Karaoke Version from Zoom Karaoke", - "id": "eklhH46LSLQ" - }, - { - "title": "The Strokes - Last Nite - Karaoke Version from Zoom Karaoke", - "id": "eYjsYelPAco" - }, - { - "title": "Sailor - A Glass Of Champagne - Karaoke Version from Zoom Karaoke", - "id": "cIVPcxuhGIQ" - }, - { - "title": "Bob Marley - No Woman, No Cry (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "bozHCScW2Zc" - }, - { - "title": "Michael Buble feat The Puppini Sisters - Nevertheless - Karaoke Version From Zoom Karaoke", - "id": "Y6fFC0Vejn8" - }, - { - "title": "Snoop Doggy Dogg - Who Am I (What's My Name) - Karaoke Version from Zoom Karaoke", - "id": "SdW5jWnFBVg" - }, - { - "title": "Leona Lewis - Stop Crying Your Heart Out - Karaoke Version from Zoom Karaoke", - "id": "JtiDcck4Q7I" - }, - { - "title": "Michael Buble With Naturally 7 - Have I Told You Lately That I Love You - Karaoke Version", - "id": "INEcwNVILYg" - }, - { - "title": "Westlife - The Rose - Karaoke Version from Zoom Karaoke", - "id": "HM-NPxrPXUY" - }, - { - "title": "David Gray - This Year's Love - Karaoke Version from Zoom Karaoke", - "id": "BBOvtQoa1sE" - }, - { - "title": "Ringo Starr - Back Off Boogaloo - Karaoke Version from Zoom Karaoke", - "id": "9Pb1Fj-33EA" - }, - { - "title": "Calvin Harris - Feel So Close - Karaoke Version from Zoom Karaoke", - "id": "5i3Ug-WpI1s" - }, - { - "title": "Michael Buble - Close Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "Kw35OqjGhXE" - }, - { - "title": "The Hollies - Stay - Karaoke Version from Zoom Karaoke", - "id": "9gx966wdFNA" - }, - { - "title": "Ryan Adams - Come Pick Me Up - Karaoke Version from Zoom Karaoke", - "id": "p4CZV2pcurw" - }, - { - "title": "Lindisfarne - Meet Me On The Corner - Karaoke Version from Zoom Karaoke", - "id": "1EG67-3ElIg" - }, - { - "title": "Muse - Supermassive Black Hole - Karaoke Version from Zoom Karaoke", - "id": "qcpTKkDeyWo" - }, - { - "title": "Gabz - Lighters (The One) - Karaoke Version from Zoom Karaoke", - "id": "PqrlWGZpS-o" - }, - { - "title": "Ryan Adams - Come Pick Me Up - Karaoke Version from Zoom Karaoke", - "id": "EbIwl3BP6Vo" - }, - { - "title": "Foo Fighters - All My Life - Karaoke Version from Zoom Karaoke", - "id": "zpORJWOW1Vg" - }, - { - "title": "Shakira - She Wolf - Karaoke Version from Zoom Karaoke", - "id": "sqgXKfRLmC4" - }, - { - "title": "Poison - Every Rose Has Its Thorn - Karaoke Version from Zoom Karaoke", - "id": "qU-sdyBgOxs" - }, - { - "title": "Usher feat Alicia Keys - My Boo - Karaoke Version from Zoom Karaoke", - "id": "jZmf5SKSVPY" - }, - { - "title": "Aqua - Doctor Jones (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "VtYO72YP3c8" - }, - { - "title": "Chas And Dave - Rabbit (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "Qc350Rdhyqs" - }, - { - "title": "DJ Sammy - Heaven (Candlelight Mix) - Karaoke Version from Zoom Karaoke", - "id": "Pb735EaNzSA" - }, - { - "title": "The Bay City Rollers - Summerlove Sensation - Karaoke Version from Zoom Karaoke", - "id": "POgzI4TbIzU" - }, - { - "title": "John Newman - Love Me Again - Karaoke Version from Zoom Karaoke", - "id": "Okfbs6IuTOE" - }, - { - "title": "Radiohead - Karma Police - Karaoke Version from Zoom Karaoke", - "id": "MtwcEILAyDg" - }, - { - "title": "The Doors - Break On Through To The Other Side - Karaoke Version from Zoom Karaoke", - "id": "JK-S6-ex0dw" - }, - { - "title": "Foo Fighters - The Pretender - Karaoke Version from Zoom Karaoke", - "id": "D44iFRXdyLg" - }, - { - "title": "Aqua - Doctor Jones (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "91yclZ4rh1U" - }, - { - "title": "AC/DC - T.N.T. - Karaoke Version from Zoom Karaoke", - "id": "7p1hAx9P1bA" - }, - { - "title": "The Trammps - Hold Back The Night - Karaoke Version from Zoom Karaoke", - "id": "-btM80P0uiI" - }, - { - "title": "Barry Biggs - Side Show - Karaoke Version from Zoom Karaoke", - "id": "wrzBxAXzovU" - }, - { - "title": "Kate Bush - Babooshka - Karaoke Version from Zoom Karaoke", - "id": "wlLu6FTHftM" - }, - { - "title": "Beverley Craven - Promise Me - Karaoke Version from Zoom Karaoke", - "id": "oYBsC8ykufQ" - }, - { - "title": "Uncle Kracker - Follow Me - Karaoke Version from Zoom Karaoke", - "id": "oHJ44Jp-HAk" - }, - { - "title": "Nancy Sinatra - Sugar Town - Karaoke Version from Zoom Karaoke", - "id": "h-fzWIkj5to" - }, - { - "title": "Muse - Time Is Running Out - Karaoke Version from Zoom Karaoke", - "id": "XmJeo1HsDo4" - }, - { - "title": "The Verve - Sonnet - Karaoke Version from Zoom Karaoke", - "id": "LkgHkWqiGys" - }, - { - "title": "Lady Gaga - Speechless - Karaoke Version from Zoom Karaoke", - "id": "IY3Bln0sTpo" - }, - { - "title": "Macy Gray - I Try - Karaoke Version from Zoom Karaoke", - "id": "FWtiddU5BIQ" - }, - { - "title": "Chris De Burgh - Patricia The Stripper - Karaoke Version from Zoom Karaoke", - "id": "A7H-SQ1qQoU" - }, - { - "title": "Estelle feat Kanye West - American Boy (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "t82QfrEXyEA" - }, - { - "title": "Usher - Burn - Karaoke Version from Zoom Karaoke", - "id": "kcic3CRIAAE" - }, - { - "title": "The Motors - Airport - Karaoke Version from Zoom Karaoke", - "id": "j_WU-qQx6VU" - }, - { - "title": "Paul Carrack - Don't Let The Sun Catch You Crying - Karaoke Version from Zoom Karaoke", - "id": "W67KKympl14" - }, - { - "title": "S Club 7 - S Club Party - Karaoke Version from Zoom Karaoke", - "id": "UQg-cKP0fOs" - }, - { - "title": "Tinie Tempah feat Labrinth - Frisky - Karaoke Version from Zoom Karaoke", - "id": "D6Ow6r0zLT8" - }, - { - "title": "Jason Derulo - The Other Side - Karaoke Version from Zoom Karaoke", - "id": "0C63tGoDwlg" - }, - { - "title": "Barry White - Just The Way You Are - Karaoke Version from Zoom Karaoke", - "id": "iig4bhMdb2s" - }, - { - "title": "Glee Cast - Halo/Walking On Sunshine (Medley) - Karaoke Version from Zoom Karaoke", - "id": "_2yOij2iqWw" - }, - { - "title": "Ian Dury And The Blockheads - Hit Me With Your Rhythm Stick - Karaoke Version from Zoom Karaoke", - "id": "8r-rKW9yXog" - }, - { - "title": "The Darts - It's Raining - Karaoke Version from Zoom Karaoke", - "id": "-YCvhaaTsJc" - }, - { - "title": "N Dubz feat Mr Hudson - Playing With Fire - Karaoke Version from Zoom Karaoke", - "id": "u5tGfKJJ1OA" - }, - { - "title": "Muse - Starlight - Karaoke Version from Zoom Karaoke", - "id": "tMVDCT9kQew" - }, - { - "title": "Ne Yo - Closer - Karaoke Version from Zoom Karaoke", - "id": "odyjohIR0Dw" - }, - { - "title": "Weezer - Buddy Holly - Karaoke Version from Zoom Karaoke", - "id": "m5T4MADETLs" - }, - { - "title": "Newton Faulkner - Dream Catch Me - Karaoke Version from Zoom Karaoke", - "id": "k6gogyIoTqM" - }, - { - "title": "Icona Pop - I Love It - Karaoke Version from Zoom Karaoke", - "id": "iUUGZsa1KmQ" - }, - { - "title": "Gabrielle - Out Of Reach - Karaoke Version from Zoom Karaoke", - "id": "YZ8zhFDfKOA" - }, - { - "title": "John Legend - Ordinary People - Karaoke Version from Zoom Karaoke", - "id": "TWHIlVaiciE" - }, - { - "title": "Selena Gomez And The Scene - Slow Down - Karaoke Version from Zoom Karaoke", - "id": "QErH84BPG6k" - }, - { - "title": "Chris Brown - Forever - Karaoke Version from Zoom Karaoke", - "id": "Nm19Exgem-k" - }, - { - "title": "Oasis - The Importance Of Being Idle - Karaoke Version from Zoom Karaoke", - "id": "LRM7WFN8CE0" - }, - { - "title": "The Cure - Boys Don't Cry - Karaoke Version from Zoom Karaoke", - "id": "UcUKoH5t-vM" - }, - { - "title": "Fleetwood Mac - Big Love - Karaoke Version from Zoom Karaoke", - "id": "IuOu8PfAU7Q" - }, - { - "title": "Ed Helms from The Hangover Soundtrack - Stu's Song - Karaoke Version from Zoom Karaoke", - "id": "1CZ-ID0Cns8" - }, - { - "title": "Dizzee Rascal feat Robbie Williams - Goin' Crazy- Karaoke Version from Zoom Karaoke", - "id": "-kBaw5tfMlA" - }, - { - "title": "Stooshe - Slip - Karaoke Version from Zoom Karaoke", - "id": "jakreXgtn48" - }, - { - "title": "The Black Eyed Peas - Meet Me Halfway - Karaoke Version from Zoom Karaoke", - "id": "PomJptTbJ_c" - }, - { - "title": "Charlie Brown - On My Way - Karaoke Version from Zoom Karaoke", - "id": "ztD7Pq5wpJU" - }, - { - "title": "Paolo Nutini - New Shoes - Karaoke Version from Zoom Karaoke", - "id": "vC-hlX4SUBo" - }, - { - "title": "The Wanted - Walks Like Rihanna - Karaoke Version from Zoom Karaoke", - "id": "sw7PAyyzoGw" - }, - { - "title": "The Rolling Stones - Tumbling Dice - Karaoke Version from Zoom Karaoke", - "id": "qbmjHBvkpFI" - }, - { - "title": "Union J - Carry You - Karaoke Version from Zoom Karaoke", - "id": "pNZAHyvD-Yw" - }, - { - "title": "Noah And The Whale - L.I.F.E.G.O.E.S.O.N. (Life Goes On) - Karaoke Version from Zoom Karaoke", - "id": "p7_nmOKxYoc" - }, - { - "title": "Glee Cast - On My Own - Karaoke Version from Zoom Karaoke", - "id": "jUfl2uJYSvM" - }, - { - "title": "The Bay City Rollers - Keep On Dancing - Karaoke Version from Zoom Karaoke", - "id": "fXJ7ve5rDTw" - }, - { - "title": "The Searchers - When You Walk In The Room - Karaoke Version from Zoom Karaoke", - "id": "eCj37dRSzIs" - }, - { - "title": "The Wanted - Heart Vacancy - Karaoke Version from Zoom Karaoke", - "id": "VR8E00HiNEw" - }, - { - "title": "Leah McFall - I Will Survive - Karaoke Version from Zoom Karaoke", - "id": "R61JuC5kKBs" - }, - { - "title": "Timbaland feat OneRepublic - Apologise - Karaoke Version from Zoom Karaoke", - "id": "PWFUDRTMUvU" - }, - { - "title": "Eminem - When I'm Gone - Karaoke Version from Zoom Karaoke", - "id": "HG1tygmIIB0" - }, - { - "title": "The Bay City Rollers - All Of Me Loves All Of You - Karaoke Version from Zoom Karaoke", - "id": "EJysylWDX2E" - }, - { - "title": "Bruno Mars - Treasure - Karaoke Version from Zoom Karaoke", - "id": "800o5k531QQ" - }, - { - "title": "Fleetwood Mac - Family Man - Karaoke Version from Zoom Karaoke", - "id": "54VxJWBdlao" - }, - { - "title": "Cannon & Ball Theme - Together We'll Be O.K. - Karaoke Version from Zoom Karaoke", - "id": "CyKgKLv5ZQk" - }, - { - "title": "Kylie Minogue - Magic - Karaoke Version from Zoom Karaoke", - "id": "w91dm_yVTxI" - }, - { - "title": "Michael Jackson - P.Y.T. (Pretty Young Thing) - Karaoke Version from Zoom Karaoke", - "id": "Ejy1hyZ5kSo" - }, - { - "title": "Don McLean - Birthday Song - Karaoke Version from Zoom Karaoke", - "id": "GzZy4YBSp4A" - }, - { - "title": "Klangkarussell feat Will Heard - Sonnentanz Sun Don't Shine - Karaoke Version from Zoom K", - "id": "xZTbTSA2Uow" - }, - { - "title": "Joy Division - Love Will Tear Us Apart - Karaoke Version from Zoom Karaoke", - "id": "qAyCLRpyUHk" - }, - { - "title": "Bob Dylan - Like A Rolling Stone - Karaoke Version from Zoom Karaoke", - "id": "nszLTX2oOjE" - }, - { - "title": "The Supremes - Automatically Sunshine - Karaoke Version from Zoom Karaoke", - "id": "wOunreLqQmE" - }, - { - "title": "Afroman - Because I Got High - Karaoke Version from Zoom Karaoke", - "id": "uWAegll0izs" - }, - { - "title": "Imagine Dragons - Radioactive - Karaoke Version from Zoom Karaoke", - "id": "rf-KuAu21r4" - }, - { - "title": "Radiohead - Street Spirit Fade Out - Karaoke Version from Zoom Karaoke", - "id": "p4FrrZijO_Q" - }, - { - "title": "Paul McCartney - New - Karaoke Version from Zoom Karaoke", - "id": "_XdfY3fsZ9Y" - }, - { - "title": "The Stereophonics - Maybe Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "WlQIHfce41g" - }, - { - "title": "S Club 7 - Bring It All Back - Karaoke Version from Zoom Karaoke", - "id": "Q5LOGqwxMYU" - }, - { - "title": "Kate Bush - Hounds Of Love - Karaoke Version from Zoom Karaoke", - "id": "Mca608-UkBk" - }, - { - "title": "The Spice Girls - Goodbye - Karaoke Version from Zoom Karaoke", - "id": "Ktm3DqhBQvA" - }, - { - "title": "Charles Aznavour - She - Karaoke Version from Zoom Karaoke", - "id": "K075VgttbnU" - }, - { - "title": "Fool's Garden - Lemon Tree - Karaoke Version from Zoom Karaoke", - "id": "BqEdz6--bxs" - }, - { - "title": "Radiohead - High And Dry - Karaoke Version from Zoom Karaoke", - "id": "5wGefHI4UOk" - }, - { - "title": "Rizzle Kicks - When I Was A Youngster - Karaoke Version from Zoom Karaoke", - "id": "2xYkFSjxQwI" - }, - { - "title": "Ronan Keating - This Is Your Song - Karaoke Version from Zoom Karaoke", - "id": "w_Zr419jyCE" - }, - { - "title": "Fountains Of Wayne - Stacy's Mom - Karaoke Version from Zoom Karaoke", - "id": "ZxlEyHsh6V4" - }, - { - "title": "Arctic Monkeys - Why'd You Only Call Me When You're High - Karaoke Version from Zoom Karaoke", - "id": "B5EkenK9eVE" - }, - { - "title": "Britney Spears - Sometimes - Karaoke Version from Zoom Karaoke", - "id": "-AyNXMlRo5c" - }, - { - "title": "Tom Petty And The Heartbreakers - Free Fallin' - Karaoke Version from Zoom Karaoke", - "id": "st0KsabInNU" - }, - { - "title": "Lulu - To Sir With Love - Karaoke Version from Zoom Karaoke", - "id": "qCIIIiVncIA" - }, - { - "title": "Black Eyed Peas - Shut Up - Karaoke Version from Zoom Karaoke", - "id": "ZLVkce-Tot4" - }, - { - "title": "Pink - Glitter In The Air - Karaoke Version from Zoom Karaoke", - "id": "VlnZ2O6Ju_Y" - }, - { - "title": "Simon And Garfunkel - Cecilia (No Harmony) - Karaoke Version from Zoom Karaoke", - "id": "Qg04wL03ymA" - }, - { - "title": "Perry Como - For The Good Times - Karaoke Version from Zoom Karaoke", - "id": "QW6a5PJuwr4" - }, - { - "title": "Barbra Streisand - The Way We Were - Karaoke Version from Zoom Karaoke", - "id": "VqoPA52xdYQ" - }, - { - "title": "Tracy Chapman - Give Me One Reason - Karaoke Version from Zoom Karaoke", - "id": "h_JSH95kdJs" - }, - { - "title": "Miley Cyrus - We Can't Stop - Karaoke Version from Zoom Karaoke", - "id": "wrnKCRVcpuY" - }, - { - "title": "Joni Mitchell - Big Yellow Taxi - Karaoke Version from Zoom Karaoke", - "id": "AKdp2nKlrQU" - }, - { - "title": "Wanted - We Own The Night - Karaoke Version from Zoom Karaoke", - "id": "A8DFgXE3anA" - }, - { - "title": "Simon And Garfunkel - Cecilia - Karaoke Version from Zoom Karaoke", - "id": "wYLWarDW0XQ" - }, - { - "title": "Carly Simon - Coming Around Again - Karaoke Version from Zoom Karaoke", - "id": "vETpPRiHr4E" - }, - { - "title": "Tom Jones And Cerys From Catatonia - Baby It's Cold Outside - Karaoke Version from Zoom Karaoke", - "id": "rmnS6cV27w8" - }, - { - "title": "Tina Arena - Chains - Karaoke Version from Zoom Karaoke", - "id": "re_tSJxTOBY" - }, - { - "title": "Joe Dolce Music Theatre - Shaddap You Face - Karaoke Version from Zoom Karaoke", - "id": "qrtkEZ75_sM" - }, - { - "title": "Tom Jones And John Farnham - My Yiddishe Momme - Karaoke Version from Zoom Karaoke", - "id": "mYGvfTVgAAM" - }, - { - "title": "Platters - Only You - Karaoke Version from Zoom Karaoke", - "id": "hVQkkxjEZDk" - }, - { - "title": "Bobby Vinton - Blue Velvet - Karaoke Version from Zoom Karaoke", - "id": "MpozpyEpE6E" - }, - { - "title": "David Guetta feat Snoop Dogg - Sweat - Karaoke Version from Zoom Karaoke", - "id": "Kz453RJo1rk" - }, - { - "title": "My Chemical Romance - Teenagers - Karaoke Version from Zoom Karaoke", - "id": "CDBCLIx60HU" - }, - { - "title": "Westlife - Mandy - Karaoke Version from Zoom Karaoke", - "id": "lJvfNYTqGMM" - }, - { - "title": "Selena Gomez - Come And Get It - Karaoke Version from Zoom Karaoke", - "id": "7tGX9AKFlrU" - }, - { - "title": "Linkin Park - What I've Done - Karaoke Version from Zoom Karaoke", - "id": "gEI5KrpsM84" - }, - { - "title": "David Bowie - The Man Who Sold The World - Karaoke Version from Zoom Karaoke", - "id": "4F2bvQfQy9g" - }, - { - "title": "Nelly - Hot In Herre - Karaoke Version from Zoom Karaoke", - "id": "zgyzGPrpPjQ" - }, - { - "title": "Bobby Goldsboro - Honey - Karaoke Version from Zoom Karaoke", - "id": "mSL47tnB9SM" - }, - { - "title": "Bruno Mars - Young Girls - Karaoke Version from Zoom Karaoke", - "id": "RXrYUi4HO_M" - }, - { - "title": "Westlife - Seasons In The Sun - Karaoke Version from Zoom Karaoke", - "id": "NUAZ-280_m8" - }, - { - "title": "The Sound Of Music - Edelweiss (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "KpyqpB2E5j4" - }, - { - "title": "Run DMC Vs Jason Nevins - It's Like That Rapper (Duet) - Karaoke Version from Zoom Karaoke", - "id": "GCRp-Ib9Bbo" - }, - { - "title": "Eminem - My Name Is - Karaoke Version from Zoom Karaoke", - "id": "7dvOoztGBwk" - }, - { - "title": "Depeche Mode - Sweetest Perfection - Karaoke Version from Zoom Karaoke", - "id": "6VdRZr-HKcY" - }, - { - "title": "Joe Longthorne - Don't Cry Out Loud - Karaoke Version from Zoom Karaoke", - "id": "yw5gbbdqvFg" - }, - { - "title": "Elvis Presley - Young And Beautiful - Karaoke Version from Zoom Karaoke", - "id": "qYezxn0yjPQ" - }, - { - "title": "Olly Murs - Right Place, Right Time - Karaoke Version from Zoom Karaoke", - "id": "m0xNNlM2HfY" - }, - { - "title": "Dusty Springfield - I Just Don't Know What To Do With Myself - Karaoke Version from Zoom Karaoke", - "id": "kiQ-QG4mRDI" - }, - { - "title": "Wiz Khalifa - Black And Yellow - Karaoke Version from Zoom Karaoke", - "id": "gTcO_o9ydoc" - }, - { - "title": "Glen Campbell - Gentle On My Mind - Karaoke Version from Zoom Karaoke", - "id": "_CgvtF_z2DU" - }, - { - "title": "Lawson feat B o B - Brokenhearted - Karaoke Version from Zoom Karaoke", - "id": "Wi79Ki9QiCo" - }, - { - "title": "Chicago - I Don't Wanna Live Without Your Love - Karaoke Version from Zoom Karaoke", - "id": "SfBOdfA_qXA" - }, - { - "title": "Tommy Steele - Flash Bang Wallop - Karaoke Version from Zoom Karaoke", - "id": "Krx0Et5xnWU" - }, - { - "title": "Blink 182 - What's My Age Again - Karaoke Version from Zoom Karaoke", - "id": "CcW-Kveq-8g" - }, - { - "title": "Blink 182 - I Miss You - Karaoke Version from Zoom Karaoke", - "id": "8sAOYg6yo-A" - }, - { - "title": "Run DMC Vs Jason Nevins - It's Like That (For Solo Rapper) - Karaoke Version from Zoom Kara", - "id": "83rc4WKqKXQ" - }, - { - "title": "The Smashing Pumpkins - 1979 - Karaoke Version from Zoom Karaoke", - "id": "5bHXNWDFOVM" - }, - { - "title": "Patti Smith - Because The Night - Karaoke Version from Zoom Karaoke", - "id": "4jSHaK9KNDI" - }, - { - "title": "OK Go - Here It Goes Again - Karaoke Version from Zoom Karaoke", - "id": "40uDFav1jsw" - }, - { - "title": "The Sound Of Music - Edelweiss (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "2LE3R5uw8sc" - }, - { - "title": "Robbie Williams - Go Gentle - Karaoke Version from Zoom Karaoke", - "id": "Mgw0EbqMPZc" - }, - { - "title": "Michael Bolton - How Can We Be Lovers - Karaoke Version from Zoom Karaoke", - "id": "K6JHQ53rXsw" - }, - { - "title": "John Newman - Cheating - Karaoke Version from Zoom Karaoke", - "id": "GRmDQrvVEvY" - }, - { - "title": "James Blunt - Bonfire Heart - Karaoke Version from Zoom Karaoke", - "id": "6IjuCHTIit8" - }, - { - "title": "The Crew Cuts - Sh-Boom (Life Could Be A Dream) - Karaoke Version from Zoom Karaoke", - "id": "ZSUXW0HD3Iw" - }, - { - "title": "Miley Cyrus - Adore You - Karaoke Version from Zoom Karaoke", - "id": "EYN8W3Q0JCo" - }, - { - "title": "Jessie J - Thunder - Karaoke Version from Zoom Karaoke", - "id": "4rBJQJ91fBY" - }, - { - "title": "Nelly - Just A Dream - Karaoke Version from Zoom Karaoke", - "id": "xu9QgPNt96M" - }, - { - "title": "Ace Of Base - The Sign - Karaoke Version from Zoom Karaoke", - "id": "xu8E-sidabU" - }, - { - "title": "Zedd feat Hayley Williams - Stay The Night - Karaoke Version from Zoom Karaoke", - "id": "gY4KyLkxGx0" - }, - { - "title": "The Vamps - Can We Dance - Karaoke Version from Zoom Karaoke", - "id": "nMGWXgj1chc" - }, - { - "title": "Katy Perry - Walking On Air - Karaoke Version from Zoom Karaoke", - "id": "j8yuivWyQdo" - }, - { - "title": "Blur - Tender - Karaoke Version from Zoom Karaoke", - "id": "drXkpJWVtjA" - }, - { - "title": "The Manic Street Preachers - Your Love Alone Is Not Enough - Karaoke Version from Zoom Karaoke", - "id": "aZcmzOTRIcE" - }, - { - "title": "Yeah Yeah Yeahs - Gold Lion - Karaoke Version from Zoom Karaoke", - "id": "XtJ_PM_2NQU" - }, - { - "title": "Yeah Yeah Yeahs - Heads Will Roll - Karaoke Version from Zoom Karaoke", - "id": "XKoZontFyWY" - }, - { - "title": "The Saturdays - Disco Love - Karaoke Version from Zoom Karaoke", - "id": "VjBv02Ong2Y" - }, - { - "title": "Westlife - I Have A Dream - Karaoke Version from Zoom Karaoke", - "id": "R9MATd-e8QY" - }, - { - "title": "Cameo - Candy - Karaoke Version from Zoom Karaoke", - "id": "OCD99yzYMNI" - }, - { - "title": "The Carpenters - I Won't Last A Day Without You - Karaoke Version from Zoom Karaoke", - "id": "Dlbu9b9HETw" - }, - { - "title": "Ylvis - The Fox - Karaoke Version from Zoom Karaoke", - "id": "CHOgHQOVm1c" - }, - { - "title": "Nelly Furtado - I'm Like A Bird - Karaoke Version from Zoom Karaoke", - "id": "4amrXSAs84g" - }, - { - "title": "Gorillaz - Dare - Karaoke Version from Zoom Karaoke", - "id": "1V3DnCbatKE" - }, - { - "title": "Damien Rice - The Blower's Daughter - Karaoke Version from Zoom Karaoke", - "id": "iQSIS_Gk7YE" - }, - { - "title": "The Stone Roses - I Wanna Be Adored - Karaoke Version from Zoom Karaoke", - "id": "po-GWn_wtpE" - }, - { - "title": "Savage Garden - To The Moon And Back - Karaoke Version from Zoom Karaoke", - "id": "QecN52B-wJM" - }, - { - "title": "My Chemical Romance - Welcome To The Black Parade - Karaoke Version from Zoom Karaoke", - "id": "P6zb8apjz5A" - }, - { - "title": "Daryl Braithwaite - The Horses - Karaoke Version from Zoom Karaoke", - "id": "I7qF-NrPOHY" - }, - { - "title": "The Jam - Down In The Tube Station At Midnight - Karaoke Version from Zoom Karaoke", - "id": "BwIvFY7TsuI" - }, - { - "title": "Destiny's Child - Bills Bills Bills - Karaoke Version from Zoom Karaoke", - "id": "1-q3vxm6jBk" - }, - { - "title": "The Sound Of Music - Climb Every Mountain - Karaoke Version from Zoom Karaoke", - "id": "v73dUvIMJOs" - }, - { - "title": "The Stone Roses - Sally Cinnamon - Karaoke Version from Zoom Karaoke", - "id": "rHzi7mav9fI" - }, - { - "title": "Pink - Leave Me Alone I'm Lonely - Karaoke Version from Zoom Karaoke", - "id": "lsXWMVDDSkA" - }, - { - "title": "Regina Spektor - Samson - Karaoke Version from Zoom Karaoke", - "id": "XHhmMbbcPIc" - }, - { - "title": "The Little Mermaid - Part Of Your World - Karaoke Version from Zoom Karaoke", - "id": "VYc27beNTfE" - }, - { - "title": "Oasis - Songbird - Karaoke Version from Zoom Karaoke", - "id": "PQZn5-0n30M" - }, - { - "title": "London Grammar - Strong - Karaoke Version from Zoom Karaoke", - "id": "O4ljRx0-QDg" - }, - { - "title": "Alan Jackson - Here In The Real World - Karaoke Version from Zoom Karaoke", - "id": "KR3AJ1-Qr80" - }, - { - "title": "Lawson - Juliet - Karaoke Version from Zoom Karaoke", - "id": "DyegGgIzIKk" - }, - { - "title": "S Club 7 - Never Had A Dream Come True - Karaoke Version from Zoom Karaoke", - "id": "4NiJNGyCfqM" - }, - { - "title": "The 1975 - The City - Karaoke Version from Zoom Karaoke", - "id": "4AFcUh2WJlo" - }, - { - "title": "Chipmunk feat Chris Brown - Champion - Karaoke Version from Zoom Karaoke", - "id": "xGNS27V6HbQ" - }, - { - "title": "Mario - Let Me Love You - Karaoke Version from Zoom Karaoke", - "id": "sJ8eMyzgjGk" - }, - { - "title": "Ne Yo - Miss Independent - Karaoke Version from Zoom Karaoke", - "id": "UJHjy3b-Mb0" - }, - { - "title": "Daniel Bedingfield - If You're Not The One - Karaoke Version from Zoom Karaoke", - "id": "TfKE52UHCXw" - }, - { - "title": "Monty Python - Always Look On The Bright Side Of Life - Karaoke Version from Zoom Karaoke", - "id": "TKtFAfgjyV8" - }, - { - "title": "Crash Test Dummies - Mmm Mmm Mmm Mmm - Karaoke Version from Zoom Karaoke", - "id": "PlczxnaBDLw" - }, - { - "title": "Miley Cyrus - Wrecking Ball - Karaoke Version from Zoom Karaoke", - "id": "N_3J5DKyX3A" - }, - { - "title": "Jason Derulo feat 2 Chainz - Talk Dirty - Karaoke Version from Zoom Karaoke", - "id": "LGagzs9Ewbs" - }, - { - "title": "JLS - Billion Lights - Karaoke Version from Zoom Karaoke", - "id": "AvORE7SpqH4" - }, - { - "title": "Pink - Nobody Knows - Karaoke Version from Zoom Karaoke", - "id": "7V1lJIBIKrk" - }, - { - "title": "Richard Marx - Right Here Waiting - Karaoke Version from Zoom Karaoke", - "id": "2DYu1FJkYiM" - }, - { - "title": "Hamilton, Joe Frank And Reynolds - Don't Pull Your Love - Karaoke Version from Zoom Karaoke", - "id": "-dOMB9bqr58" - }, - { - "title": "Lou Bega - Mambo No 5 - Karaoke Version from Zoom Karaoke", - "id": "saK_ibpMRcM" - }, - { - "title": "AC/DC - It's A Long Way To The Top If You Wanna Rock 'N' Roll - Karaoke Version from Zoom Karaoke", - "id": "pYTdVwZK5dw" - }, - { - "title": "Mika - Happy Ending - Karaoke Version from Zoom Karaoke", - "id": "p2Uk5iIDAhU" - }, - { - "title": "DJ Sammy - Heaven (Dance Mix) - Karaoke Version from Zoom Karaoke", - "id": "iGMYCU3zmNU" - }, - { - "title": "You Me At Six - Lived A Lie - Karaoke Version from Zoom Karaoke", - "id": "h4TCq_UkC9E" - }, - { - "title": "Johnny Cash - Personal Jesus - Karaoke Version from Zoom Karaoke", - "id": "gzysV8HMEmM" - }, - { - "title": "The Cure - Just Like Heaven - Karaoke Version from Zoom Karaoke", - "id": "eVSP_8-gkyQ" - }, - { - "title": "Alan Jackson - Ring Of Fire - Karaoke Version from Zoom Karaoke", - "id": "TO_hqAmqROg" - }, - { - "title": "The 1975 - Sex - Karaoke Version from Zoom Karaoke", - "id": "TDF0bBc_F0Q" - }, - { - "title": "Celine Dion - Loved Me Back To Life - Karaoke Version from Zoom Karaoke", - "id": "MV5Ycz4DLEA" - }, - { - "title": "Kings Of Leon - Revelry - Karaoke Version from Zoom Karaoke", - "id": "IhwMB7rBWrI" - }, - { - "title": "Lana Del Rey And Cedric Gervais - Summertime Sadness - Karaoke Version from Zoom Karaoke", - "id": "4YCzDk8Y0c8" - }, - { - "title": "Arctic Monkeys - Do I Wanna Know - Karaoke Version from Zoom Karaoke", - "id": "zwLOETRKZk0" - }, - { - "title": "Barbra Streisand - Evergreen - Karaoke Version from Zoom Karaoke", - "id": "wON3jbt8oDA" - }, - { - "title": "Jimmy Barnes - Working Class Man - Karaoke Version from Zoom Karaoke", - "id": "nqcL8JMKXUg" - }, - { - "title": "Jessie J - It's My Party - Karaoke Version from Zoom Karaoke", - "id": "mfg1gxiq04o" - }, - { - "title": "Arctic Monkeys - R U Mine - Karaoke Version from Zoom Karaoke", - "id": "gr0LBqhmXBU" - }, - { - "title": "Tenacious D - Wonderboy - Karaoke Version from Zoom Karaoke", - "id": "gT66UfthWpo" - }, - { - "title": "Cher Lloyd - Want U Back - Karaoke Version from Zoom Karaoke", - "id": "_ZwMeX2SVrk" - }, - { - "title": "Pink feat Lily Rose Cooper - True Love - Karaoke Version from Zoom Karaoke", - "id": "V6Y804hUQT8" - }, - { - "title": "Matt Cardle And Melanie C - Loving You - Karaoke Version from Zoom Karaoke", - "id": "FZGhgIQd_fE" - }, - { - "title": "Bruce Springsteen - I'm On Fire - Karaoke Version from Zoom Karaoke", - "id": "CYya-VxZpWc" - }, - { - "title": "Emeli Sande - My Kind Of Love - Karaoke Version from Zoom Karaoke", - "id": "CHBB8_LnFqg" - }, - { - "title": "OneRepublic - Counting Stars - Karaoke Version from Zoom Karaoke", - "id": "AVNrNxd9wkI" - }, - { - "title": "Nick Cave And The Bad Seeds And Kylie Minogue - Where The Wild Roses Grow - Karaoke Version", - "id": "6FjFrS7SxZ8" - }, - { - "title": "Robbie Williams - Better Man - Karaoke Version from Zoom Karaoke", - "id": "5GUGlQQUwIQ" - }, - { - "title": "Def Leppard - Pour Some Sugar On Me - Karaoke Version from Zoom Karaoke", - "id": "2ZSj5cEh-h8" - }, - { - "title": "Caro Emerald - Liquid Lunch - Karaoke Version from Zoom Karaoke", - "id": "0eJm2BpbOKo" - }, - { - "title": "Wild Cherry - Play That Funky Music - Karaoke Version from Zoom Karaoke", - "id": "xqH8OFpca90" - }, - { - "title": "Rihanna - What Now - Karaoke Version from Zoom Karaoke", - "id": "66WtiE4Q338" - }, - { - "title": "M I A - Paper Planes - Karaoke Version from Zoom Karaoke", - "id": "jawljMCcoOc" - }, - { - "title": "Avicii - Hey Brother - Karaoke Version from Zoom Karaoke", - "id": "hnpAoYD14vc" - }, - { - "title": "Five - When The Lights Go Out - Karaoke Version from Zoom Karaoke", - "id": "dJcHbVlQtDE" - }, - { - "title": "Tom Jones - At This Moment - Karaoke Version from Zoom Karaoke", - "id": "XFyVqSTiT24" - }, - { - "title": "Paloma Faith - Stone Cold Sober - Karaoke Version from Zoom Karaoke", - "id": "W4anuobzkuo" - }, - { - "title": "Carrie Underwood - Before He Cheats - Karaoke Version from Zoom Karaoke", - "id": "THBqaXIyv-w" - }, - { - "title": "Leona Lewis - One More Sleep - Karaoke Version from Zoom Karaoke", - "id": "K2OCIPxp43I" - }, - { - "title": "They Might Be Giants - Birdhouse In Your Soul - Karaoke Version from Zoom Karaoke", - "id": "HuA4-D9S3Gw" - }, - { - "title": "Frankie Avalon - Venus - Karaoke Version from Zoom Karaoke", - "id": "HG9kA1mGjBw" - }, - { - "title": "UB40 - Homely Girl - Karaoke Version from Zoom Karaoke", - "id": "GaXkUOtLjog" - }, - { - "title": "Alan Jackson - Pop A Top - Karaoke Version from Zoom Karaoke", - "id": "F1C_8FvJENc" - }, - { - "title": "Michael Jackson And Paul McCartney - The Girl Is Mine - Karaoke Version from Zoom Karaoke", - "id": "BQUNSt73e9I" - }, - { - "title": "John Newman - Losing Sleep - Karaoke Version from Zoom Karaoke", - "id": "63_tjH4TaHs" - }, - { - "title": "Naughty Boy feat Emeli Sande - Wonder - Karaoke Version from Zoom Karaoke", - "id": "ygOj_eR39M0" - }, - { - "title": "John Mayer - Why Georgia - Karaoke Version from Zoom Karaoke", - "id": "y_eFcKIN3P0" - }, - { - "title": "Siouxsie And The Banshees - Happy House - Karaoke Version from Zoom Karaoke", - "id": "k3MkFgIQjsQ" - }, - { - "title": "Maroon 5 - Misery - Karaoke Version from Zoom Karaoke", - "id": "YBZpcUkC8OY" - }, - { - "title": "Mazzy Star - Fade Into You - Karaoke Version from Zoom Karaoke", - "id": "UtTFQurUKAY" - }, - { - "title": "Depeche Mode - Personal Jesus - Karaoke Version from Zoom Karaoke", - "id": "T9YzdgHnsv4" - }, - { - "title": "James Arthur - You're Nobody 'Til Somebody Loves You - Karaoke Version from Zoom Karaoke", - "id": "T6wkKLo9ZGE" - }, - { - "title": "B*Witched - C'est La Vie - Karaoke Version from Zoom Karaoke", - "id": "SPt6qnXbuUM" - }, - { - "title": "The Sound Of Music - Do-Re-Mi - Karaoke Version from Zoom Karaoke (Julie Andrews)", - "id": "PE4ekOAv0jM" - }, - { - "title": "Lily Allen - Hard Out Here - Karaoke Version from Zoom Karaoke", - "id": "L3zXK6PK-Hg" - }, - { - "title": "Imagine Dragons - On Top Of The World - Karaoke Version from Zoom Karaoke", - "id": "pJ4MFryBLJo" - }, - { - "title": "Foals - My Number - Karaoke Version from Zoom Karaoke", - "id": "QajONBvIANk" - }, - { - "title": "Glee Cast - Out Here On My Own - Karaoke Version from Zoom Karaoke", - "id": "xs_XAEuaMS0" - }, - { - "title": "Irene Cara - Out Here On My Own - Karaoke Version from Zoom Karaoke", - "id": "wwU4OsvV2mI" - }, - { - "title": "Matt Monro - Why Not Now - Karaoke Version from Zoom Karaoke", - "id": "rfrJuDiEP0g" - }, - { - "title": "One Direction - More Than This - Karaoke Version from Zoom Karaoke", - "id": "nezF37MQ21w" - }, - { - "title": "Cody Simpson - Pretty Brown Eyes - Karaoke Version from Zoom Karaoke", - "id": "nXX1oKY4zs8" - }, - { - "title": "Bastille - Of The Night - Karaoke Version from Zoom Karaoke", - "id": "nJ8U592XSQg" - }, - { - "title": "The Stone Roses - Waterfall - Karaoke Version from Zoom Karaoke", - "id": "_yR_hB_DpEo" - }, - { - "title": "Michael Bolton - Steel Bars - Karaoke Version from Zoom Karaoke", - "id": "_3NIDZUDBV0" - }, - { - "title": "The Stereophonics - A Thousand Trees - Karaoke Version from Zoom Karaoke", - "id": "WaNca-Hfm7c" - }, - { - "title": "Underworld - Born Slippy - Karaoke Version from Zoom Karaoke", - "id": "WOX9Q8gdZfU" - }, - { - "title": "The Waterboys - The Whole Of The Moon - Karaoke Version from Zoom Karaoke", - "id": "PzbOkgGOhgk" - }, - { - "title": "Sheryl Crow - The First Cut Is The Deepest - Karaoke Version from Zoom Karaoke", - "id": "NZsbUl8SVMI" - }, - { - "title": "Cliff Richard & Sarah Brightman - All I Ask Of You - Karaoke Version from Zoom Karaoke", - "id": "MREh5qm1SNc" - }, - { - "title": "Jet - Cold Hard Bitch - Karaoke Version from Zoom Karaoke", - "id": "HFbp7wrb7M8" - }, - { - "title": "Carole King - It's Too Late - Karaoke Version from Zoom Karaoke", - "id": "3THthrjcxNY" - }, - { - "title": "Girls Aloud - Life Got Cold - Karaoke Version from Zoom Karaoke", - "id": "-p50IkpW-qo" - }, - { - "title": "Katy Perry - Unconditionally - Karaoke Version from Zoom Karaoke", - "id": "GOzRLGQmP1s" - }, - { - "title": "John Mayer - Neon - Karaoke Version from Zoom Karaoke", - "id": "BxT1VJIynRE" - }, - { - "title": "Westlife - Swear It Again - Karaoke Version from Zoom Karaoke", - "id": "6y4D86x2Q60" - }, - { - "title": "Eminem feat Rihanna - The Monster - Karaoke Version from Zoom Karaoke", - "id": "VKqI24lncks" - }, - { - "title": "Anna Kendrick - Cup Song - Karaoke Version from Zoom Karaoke", - "id": "HvCvG6HVKMI" - }, - { - "title": "Justin Bieber - Heartbreaker - Karaoke Version from Zoom Karaoke", - "id": "58fmEA6ONpk" - }, - { - "title": "Paul McCartney - Queenie Eye - Karaoke Version from Zoom Karaoke", - "id": "3FJKH9wG4e8" - }, - { - "title": "Little Mix - Move - Karaoke Version from Zoom Karaoke", - "id": "zUeui459cys" - }, - { - "title": "The Rockin' Berries - He's In Town - Karaoke Version from Zoom Karaoke", - "id": "a0nSX5F5-JQ" - }, - { - "title": "Alan Jackson - Chasin' That Neon Rainbow - Karaoke Version from Zoom Karaoke", - "id": "ZL7_7mQYX0Q" - }, - { - "title": "Tracey Ullman - Breakaway - Karaoke Version from Zoom Karaoke", - "id": "WBaWfRkWaDo" - }, - { - "title": "The Strokes - Someday - Karaoke Version from Zoom Karaoke", - "id": "SOz7lmnOWXc" - }, - { - "title": "Gallagher And Lyle - Heart On My Sleeve - Karaoke Version from Zoom Karaoke", - "id": "-PgRLeSGsZ8" - }, - { - "title": "The Dandy Warhols - Bohemian Like You - Karaoke Version from Zoom Karaoke", - "id": "zDrUr1At1Bs" - }, - { - "title": "Nirvana - Heart Shaped Box - Karaoke Version from Zoom Karaoke", - "id": "w-08jCj4kuM" - }, - { - "title": "Ellie Goulding - How Long Will I Love You - Karaoke Version from Zoom Karaoke", - "id": "pXmRxBJszN8" - }, - { - "title": "The Black Keys - Lonely Boy - Karaoke Version from Zoom Karaoke", - "id": "ksIJfH-c5tc" - }, - { - "title": "Olly Murs - Hand On Heart - Karaoke Version from Zoom Karaoke", - "id": "iWbywXtpH5M" - }, - { - "title": "One Direction - Story Of My Life - Karaoke Version from Zoom Karaoke", - "id": "eNb8T75g5M8" - }, - { - "title": "James Blunt - Satellites - Karaoke Version from Zoom Karaoke", - "id": "XCMmM0g7CWw" - }, - { - "title": "Pixie Lott - Use Somebody - Karaoke Version from Zoom Karaoke", - "id": "VlUwfSwfwFk" - }, - { - "title": "Arcade Fire - We Used To Wait - Karaoke Version from Zoom Karaoke", - "id": "Ve_0t9IYmnY" - }, - { - "title": "Union J - Beautiful Life - Karaoke Version from Zoom Karaoke", - "id": "TBkKtMGC8bs" - }, - { - "title": "Britney Spears - Work Bitch - Karaoke Version from Zoom Karaoke", - "id": "KkiSCX45deQ" - }, - { - "title": "Third Eye Blind - Semi Charmed Life - Karaoke Version from Zoom Karaoke", - "id": "8-93663yAB4" - }, - { - "title": "Oasis - Falling Down - Karaoke Version from Zoom Karaoke", - "id": "1_EMEs5AeqU" - }, - { - "title": "Lily Allen - Somewhere Only We Know - Karaoke Version from Zoom Karaoke", - "id": "-C21kAgMl5w" - }, - { - "title": "Alex Clare - Too Close - Karaoke Version from Zoom Karaoke", - "id": "sgbWGUO3AR0" - }, - { - "title": "Cast - Guiding Star - Karaoke Version from Zoom Karaoke", - "id": "m2u_f7ppsTQ" - }, - { - "title": "Oasis - Little By Little - Karaoke Version from Zoom Karaoke", - "id": "v1fjwAyixW0" - }, - { - "title": "Billy Bragg - A New England - Karaoke Version from Zoom Karaoke", - "id": "uryDh6qA42c" - }, - { - "title": "Jessie J - Sexy Lady - Karaoke Version from Zoom Karaoke", - "id": "sZ1NCzmv730" - }, - { - "title": "Bruce Springsteen - Thunder Road - Karaoke Version from Zoom Karaoke", - "id": "hk0ioBH3JIc" - }, - { - "title": "Conor Maynard - R U Crazy - Karaoke Version from Zoom Karaoke", - "id": "gAzebzjWmeM" - }, - { - "title": "The Proclaimers - I'm On My Way - Karaoke Version from Zoom Karaoke", - "id": "d5fCHcVJegY" - }, - { - "title": "The Carpenters - Ticket To Ride - Karaoke Version from Zoom Karaoke", - "id": "aJLohWPWc6g" - }, - { - "title": "Wilkinson - Afterglow - Karaoke Version from Zoom Karaoke", - "id": "WoZ2YIcwn8M" - }, - { - "title": "The Specials - A Message To You Rudy - Karaoke Version from Zoom Karaoke", - "id": "3sQh1niQHFE" - }, - { - "title": "The Proclaimers - I'm On My Way (No Harmonies) - Karaoke Version from Zoom Karaoke", - "id": "3rLawHwGVMU" - }, - { - "title": "Karyn White - Superwoman - Karaoke Version from Zoom Karaoke", - "id": "1bGafy51Fww" - }, - { - "title": "Becky Hill - Space - Karaoke Version from Zoom Karaoke", - "id": "Kl-AQkmecVU" - }, - { - "title": "Miranda Cosgrove - Leave It All To Me (Theme from iCarly) - Karaoke Version from Zoom Karaoke", - "id": "7NL3n69Gjn8" - }, - { - "title": "Marillion - Lavender - Karaoke Version from Zoom Karaoke", - "id": "fa52rvfpI6s" - }, - { - "title": "Jennifer Lopez - Same Girl - Karaoke Version from Zoom Karaoke", - "id": "spAqrMQBOXI" - }, - { - "title": "The Killers - Runaways - Karaoke Version from Zoom Karaoke", - "id": "TBxnjfRJEAY" - }, - { - "title": "Placebo - Song To Say Goodbye - Karaoke Version from Zoom Karaoke", - "id": "zV5tMvg1l50" - }, - { - "title": "Blur - Charmless Man - Karaoke Version from Zoom Karaoke", - "id": "w2jiQDDJR8c" - }, - { - "title": "Elyar Fox - Do It All Over Again - Karaoke Version from Zoom Karaoke", - "id": "uhOxM34ByYs" - }, - { - "title": "Electric Light Orchestra - Long Black Road - Karaoke Version from Zoom Karaoke", - "id": "jeqUNV0RM3I" - }, - { - "title": "The Stereophonics - The Bartender And The Thief - Karaoke Version from Zoom Karaoke", - "id": "ijyilKSD2OM" - }, - { - "title": "The Streets - Fit But You Know It - Karaoke Version from Zoom Karaoke", - "id": "g-JB2viq3lQ" - }, - { - "title": "Of Monsters And Men - Little Talks - Karaoke Version from Zoom Karaoke", - "id": "fYtCFYqGRlY" - }, - { - "title": "Ewan McGregor & Nicole Kidman - Come What May - Karaoke Version from Zoom Karaoke", - "id": "dzELJ9g40I4" - }, - { - "title": "Celine Dion - Falling Into You - Karaoke Version from Zoom Karaoke", - "id": "_paQcPOt1QM" - }, - { - "title": "Boyce Avenue feat Jennel Garcia - Demons - Karaoke Version from Zoom Karaoke", - "id": "_4QZ0-_qABs" - }, - { - "title": "The Lighthouse Family - High - Karaoke Version from Zoom Karaoke", - "id": "YGvrorRKFVk" - }, - { - "title": "Chris Brown - Don't Wake Me Up - Karaoke Version from Zoom Karaoke", - "id": "Mmc5CqqAOCU" - }, - { - "title": "Alan Jackson - Don't Rock The Jukebox - Karaoke Version from Zoom Karaoke", - "id": "LvgSlKm1lFQ" - }, - { - "title": "The Shamen - Ebeneezer Goode - Karaoke Version from Zoom Karaoke", - "id": "EbNV0jh2lsE" - }, - { - "title": "One Direction - I Want - Karaoke Version from Zoom Karaoke", - "id": "AVpXoqxW_ug" - }, - { - "title": "Fleet Foxes - White Winter Hymnal - Karaoke Version from Zoom Karaoke", - "id": "A2yh6R-Cg74" - }, - { - "title": "Whitney Houston - Run To You - Karaoke Version from Zoom Karaoke", - "id": "8dySjuB51Bo" - }, - { - "title": "Ellie Goulding - Goodness Gracious - Karaoke Version from Zoom Karaoke", - "id": "staBe1R8eu8" - }, - { - "title": "Limp Bizkit - Behind Blue Eyes - Karaoke Version from Zoom Karaoke", - "id": "pZmFESMyenU" - }, - { - "title": "Dr. Dre feat Snoop Dogg - Still D.R.E. - Karaoke Version from Zoom Karaoke", - "id": "jFC7AJRtOt4" - }, - { - "title": "Blue - One Love - Karaoke Version from Zoom Karaoke", - "id": "frT3SU2hhnw" - }, - { - "title": "Andrew Gold - Never Let Her Slip Away - Karaoke Version from Zoom Karaoke", - "id": "YBEDnz3df9E" - }, - { - "title": "Julio Iglesias & Willie Nelson - To All The Girls I've Loved Before - Karaoke Version from", - "id": "IIeQBPKjXtU" - }, - { - "title": "Kid Rock feat Sheryl Crow - Picture - Karaoke Version from Zoom Karaoke", - "id": "tuP6LczqLR4" - }, - { - "title": "Shabba Ranks - Mr Loverman (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "oeMZELhaPiQ" - }, - { - "title": "James Brown - I Got You (I Feel Good) - Karaoke Version from Zoom Karaoke", - "id": "kbQbfGfOeQk" - }, - { - "title": "UB40 - Rat In Mi Kitchen - Karaoke Version from Zoom Karaoke", - "id": "VKScnWZPUsw" - }, - { - "title": "Pitbull feat Ke$ha - Timber - Karaoke Version from Zoom Karaoke", - "id": "S84z80_y9u8" - }, - { - "title": "Tinie Tempah feat Labrinth - Lover Not A Fighter - Karaoke Version from Zoom Karaoke", - "id": "L5QMYEjgf2k" - }, - { - "title": "Bob Dylan - Subterranean Homesick Blues - Karaoke Version from Zoom Karaoke", - "id": "Et0-5WIVd4E" - }, - { - "title": "Bobby Boris Pickett & The Crypt Kickers - Monster Mash - Karaoke Version from Zoom Karaoke", - "id": "5ZjnG4GPARk" - }, - { - "title": "Katy Perry - Legendary Lovers - Karaoke Version from Zoom Karaoke", - "id": "1BXI3zWxIg4" - }, - { - "title": "Alan Jackson - Dallas - Karaoke Version from Zoom Karaoke", - "id": "zKD9a3wayA4" - }, - { - "title": "Paramore - Misery Business - Karaoke Version from Zoom Karaoke", - "id": "wjT-Opzeukc" - }, - { - "title": "Alan Jackson - Someday - Karaoke Version from Zoom Karaoke", - "id": "tBKog6YsswY" - }, - { - "title": "Naughty Boy feat Wiz Khalifa & Ella Eyre - Think About It - Karaoke Version from Zoom Karaoke", - "id": "ryQTQaSUhKk" - }, - { - "title": "Barenaked Ladies - One Week - Karaoke Version from Zoom Karaoke", - "id": "rGA2rYf02Gc" - }, - { - "title": "Matt Monro - Love Walked In - Karaoke Version from Zoom Karaoke", - "id": "mZf77SLDG90" - }, - { - "title": "Salt 'N' Pepa feat En Vogue - Whatta Man - Karaoke Version from Zoom Karaoke", - "id": "lCOjxRClbRw" - }, - { - "title": "Fleetwood Mac - Landslide - Karaoke Version from Zoom Karaoke", - "id": "YvVxNAy80dE" - }, - { - "title": "Beyonce - XO - Karaoke Version from Zoom Karaoke", - "id": "TBX5y0iyRCw" - }, - { - "title": "Lee Marvin - Wand'rin' Star - Karaoke Version from Zoom Karaoke", - "id": "R8WF3Z4Cco8" - }, - { - "title": "Lorde - Team - Karaoke Version from Zoom Karaoke", - "id": "ORZl6S-d6Gc" - }, - { - "title": "Shabba Ranks - Mr Loverman (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "HWPFzxxGg5Y" - }, - { - "title": "Little Mix - Change Your Life - Karaoke Version from Zoom Karaoke", - "id": "6jr0f8RTWCs" - }, - { - "title": "Johnnie Ray - Just Walkin' In The Rain - Karaoke Version from Zoom Karaoke", - "id": "2kUfRQoTYzE" - }, - { - "title": "Neil Diamond - Sweet Caroline (Hot August Night Version) - Karaoke Version from Zoom Karaoke", - "id": "ymY6hynTJhc" - }, - { - "title": "Rudimental feat Emeli Sande - Free - Karaoke Version from Zoom Karaoke", - "id": "wRfQ3HC0m7I" - }, - { - "title": "Boyzone - Love Will Save The Day - Karaoke Version from Zoom Karaoke", - "id": "v5BrKWpOJT0" - }, - { - "title": "The Prodigy - Firestarter - Karaoke Version from Zoom Karaoke", - "id": "u-6LMaXoe14" - }, - { - "title": "Kate Bush - The Man With The Child In His Eyes - Karaoke Version from Zoom Karaoke", - "id": "tz-HsxC0NtU" - }, - { - "title": "Bardo - One Step Further - Karaoke Version from Zoom Karaoke", - "id": "p_RX-oqXMU4" - }, - { - "title": "Pixies - Where Is My Mind - Karaoke Version from Zoom Karaoke", - "id": "pH-aBIEcjTo" - }, - { - "title": "James Arthur - Recovery - Karaoke Version from Zoom Karaoke", - "id": "kjQIFqmqvyg" - }, - { - "title": "Celine Dion - It's All Coming Back To Me Now - Karaoke Version from Zoom Karaoke", - "id": "h8QWmQsya_M" - }, - { - "title": "Peter Cetera - Glory Of Love - Karaoke Version from Zoom Karaoke", - "id": "ZfsSUWbaBu0" - }, - { - "title": "Status Quo - In The Army Now - Karaoke Version from Zoom Karaoke", - "id": "YZFk7NaF80I" - }, - { - "title": "will.i.am feat. Miley Cyrus, French Montana & Wiz Khalifa - Feelin' Myself - Karaoke Version", - "id": "RPuUvX2nNsI" - }, - { - "title": "Paul Carrack - Life's Too Short - Karaoke Version from Zoom Karaoke", - "id": "Mo5TuLTU0Rs" - }, - { - "title": "Jefferson Airplane - Somebody To Love - Karaoke Version from Zoom Karaoke", - "id": "HsZMbxKwumE" - }, - { - "title": "Status Quo - What You're Proposing - Karaoke Version from Zoom Karaoke", - "id": "Bv1mtJtoL8Q" - }, - { - "title": "Spitting Image - The Chicken Song - Karaoke Version from Zoom Karaoke", - "id": "BJoL6A1X_LQ" - }, - { - "title": "Bruno Mars - Gorilla - Karaoke Version from Zoom Karaoke", - "id": "8MrjE9SO1Zw" - }, - { - "title": "Kim Wilde - You Keep Me Hangin' On - Karaoke Version from Zoom Karaoke", - "id": "7zwBasLlGE4" - }, - { - "title": "Stacy Lattisaw - Jump To The Beat - Karaoke Version from Zoom Karaoke", - "id": "1y6lZngBQio" - }, - { - "title": "All Saints - Pure Shores - Karaoke Version from Zoom Karaoke", - "id": "0pLXzSYyMp4" - }, - { - "title": "Mumford And Sons - I Will Wait - Karaoke Version from Zoom Karaoke", - "id": "tS-v7OxJhbg" - }, - { - "title": "Leonard Cohen - Dance Me To The End Of Love - Karaoke Version from Zoom Karaoke", - "id": "stoN6XTkbZI" - }, - { - "title": "The Belle Stars - Sign Of The Times - Karaoke Version from Zoom Karaoke", - "id": "obb8C40MUlg" - }, - { - "title": "Fats Domino - Be My Guest - Karaoke Version from Zoom Karaoke", - "id": "fkq2yTll508" - }, - { - "title": "George Michael - Freedom '90 - Karaoke Version from Zoom Karaoke", - "id": "ZXiAyFM0Rvo" - }, - { - "title": "Rita Ora - Shine Ya Light - Karaoke Version from Zoom Karaoke", - "id": "PwXOFYsWydY" - }, - { - "title": "Pat Benatar - Hit Me With Your Best Shot - Karaoke Version from Zoom Karaoke", - "id": "IHWo6oqrPsY" - }, - { - "title": "Randy Crawford - One Day I'll Fly Away - Karaoke Version from Zoom Karaoke", - "id": "GbhT2KoljXY" - }, - { - "title": "Engelbert Humperdinck - All You've Gotta Do Is Ask - Karaoke Version from Zoom Karaoke", - "id": "DWRRE0lZJHw" - }, - { - "title": "Kelly Clarkson - Underneath The Tree - Karaoke Version from Zoom Karaoke", - "id": "rsOKJxPpzGQ" - }, - { - "title": "Brian Hyland - Itsy Bitsy Teenie Weenie Yellow Polka Dot Bikini - Karaoke Version from Zoom Karaoke", - "id": "ZhbosHBwGTY" - }, - { - "title": "Sam Bailey - Skyscraper - Karaoke Version from Zoom Karaoke", - "id": "TsgDffLtgC4" - }, - { - "title": "Matt Monro - What To Do - Karaoke Version from Zoom Karaoke", - "id": "Q_G6Ko7knl0" - }, - { - "title": "Ed Sheeran - Give Me Love - Karaoke Version from Zoom Karaoke", - "id": "Ojo8ge8Y0GU" - }, - { - "title": "Bob Dylan - Lay Lady Lay - Karaoke Version from Zoom Karaoke", - "id": "NDV_6_3iNPA" - }, - { - "title": "The Vamps - Wild Heart - Karaoke Version from Zoom Karaoke", - "id": "GJZdH23e6-I" - }, - { - "title": "Alan Jackson - Wanted - Karaoke Version from Zoom Karaoke", - "id": "9OY7eo1I3ZU" - }, - { - "title": "Gary Barlow - Let Me Go - Karaoke Version from Zoom Karaoke", - "id": "tr1TZBBFggM" - }, - { - "title": "Chas And Dave - In Sickness And In Health - Karaoke Version from Zoom Karaoke", - "id": "JKs-UbOJnGU" - }, - { - "title": "Demi Lovato - Neon Lights - Karaoke Version from Zoom Karaoke", - "id": "6l8eimfQJX0" - }, - { - "title": "Sandy Posey - Single Girl - Karaoke Version from Zoom Karaoke", - "id": "0iExi53LjN0" - }, - { - "title": "Sean Paul - Get Busy - Karaoke Version from Zoom Karaoke", - "id": "ug1WdP-G5CU" - }, - { - "title": "Union J - Loving You Is Easy - Karaoke Version from Zoom Karaoke", - "id": "tsuxSnk1fX4" - }, - { - "title": "Dionne Warwick - That's What Friends Are For - Karaoke Version from Zoom Karaoke", - "id": "n98MyYHMP8o" - }, - { - "title": "Mark Morrison - Return Of The Mack - Karaoke Version from Zoom Karaoke", - "id": "hyHB1x6z7Qc" - }, - { - "title": "Jim Reeves - I Won't Forget You - Karaoke Version from Zoom Karaoke", - "id": "gJ4QQigIo9I" - }, - { - "title": "Pitbull feat Chris Brown - International Love - Karaoke Version from Zoom Karaoke", - "id": "e0vJwE_D9-A" - }, - { - "title": "The Clash - London Calling - Karaoke Version from Zoom Karaoke", - "id": "acnU3QflPBQ" - }, - { - "title": "Jason Derulo - Trumpets - Karaoke Version from Zoom Karaoke", - "id": "UtIg3IJ6U4s" - }, - { - "title": "One Direction - Midnight Memories - Karaoke Version from Zoom Karaoke", - "id": "RhXhisOU8FI" - }, - { - "title": "Blackstreet feat Dr Dre - No Diggity - Karaoke Version from Zoom Karaoke", - "id": "JNeVf9rdPiM" - }, - { - "title": "Barbra Streisand & Celine Dion - Tell Him - Karaoke Version from Zoom Karaoke", - "id": "F6m0E-YNesM" - }, - { - "title": "The Wanted - Show Me Love (America) - Karaoke Version from Zoom Karaoke", - "id": "DU04tiPLTQk" - }, - { - "title": "The Source feat Candi Staton - You Got The Love - Karaoke Version from Zoom Karaoke", - "id": "7_RXEa0aW_k" - }, - { - "title": "Luther Vandross - Never Too Much - Karaoke Version from Zoom Karaoke", - "id": "6hHB-sECfWM" - }, - { - "title": "The Monkees - Look Out Here Comes Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "4tEB6N9IDmQ" - }, - { - "title": "Gary Barlow And The Commonwealth Band - Sing - Karaoke Version from Zoom Karaoke", - "id": "0oYXdNSaZgk" - }, - { - "title": "John Martin - Anywhere For You - Karaoke Version from Zoom Karaoke", - "id": "pppvYxnibws" - }, - { - "title": "Katy Perry feat Juicy J - Dark Horse (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "gZbaotK3uZ8" - }, - { - "title": "Juice Newton - Angel Of The Morning - Karaoke Version from Zoom Karaoke", - "id": "fAzCnCwJO5c" - }, - { - "title": "The Vapors - Turning Japanese - Karaoke Version from Zoom Karaoke", - "id": "_2F__B3dUts" - }, - { - "title": "Tom Jones - In Style And Rhythm - Karaoke Version from Zoom Karaoke", - "id": "WfCQcK7twB0" - }, - { - "title": "Tracey Ullman - They Don't Know - Karaoke Version from Zoom Karaoke", - "id": "Qi11yh-dTPs" - }, - { - "title": "Johnnie Ray - Yes Tonight Josephine - Karaoke Version from Zoom Karaoke", - "id": "OWa2FFPi2E0" - }, - { - "title": "Sheena Easton - Morning Train Nine To Five - Karaoke Version from Zoom Karaoke", - "id": "K6KzIAamGZo" - }, - { - "title": "Neil Young - Old Man - Karaoke Version from Zoom Karaoke", - "id": "GAmcgR6RPhQ" - }, - { - "title": "Katy Perry feat Juicy J - Dark Horse (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "9eFyHw2DAko" - }, - { - "title": "Lily Allen - Air Balloon - Karaoke Version from Zoom Karaoke", - "id": "KuJso2plW7Y" - }, - { - "title": "Idina Menzel - Let It Go - Karaoke Version from Zoom Karaoke", - "id": "TS6dkfcz1P4" - }, - { - "title": "Tony Orlando And Dawn - The Tony Orlando And Dawn Medley - Karaoke Version from Zoom Karaoke", - "id": "uliBz6T28oc" - }, - { - "title": "Ed Sheeran - Small Bump - Karaoke Version from Zoom Karaoke", - "id": "tTz82BhignM" - }, - { - "title": "Alan Jackson - She's Got The Rhythm And I Got The Blues - Karaoke Version from Zoom Karaoke", - "id": "sCCv_ZWqOs0" - }, - { - "title": "Engelbert Humperdinck - Cafe - Karaoke Version from Zoom Karaoke", - "id": "lurwtBZyFPI" - }, - { - "title": "Taio Cruz feat Kylie Minogue - Higher - Karaoke Version from Zoom Karaoke", - "id": "On85322ah84" - }, - { - "title": "Alan Jackson - Love's Got A Hold On You - Karaoke Version from Zoom Karaoke", - "id": "M_9wsThvyio" - }, - { - "title": "Katy B - Crying For No Reason - Karaoke Version from Zoom Karaoke", - "id": "Kq3QAb4G-6A" - }, - { - "title": "Device feat Lzzy Hale - Close My Eyes Forever - Karaoke Version from Zoom Karaoke", - "id": "JRU0AkPhF84" - }, - { - "title": "OneRepublic - If I Lose Myself - Karaoke Version from Zoom Karaoke", - "id": "HxKdflYaWfA" - }, - { - "title": "Foo Fighters - Monkey Wrench - Karaoke Version from Zoom Karaoke", - "id": "FgUj3vT7lV4" - }, - { - "title": "Neon Jungle - Braveheart - Karaoke Version from Zoom Karaoke", - "id": "DGnLonyIONk" - }, - { - "title": "Enrique Iglesias feat Pitbull - I'm A Freak - Karaoke Version from Zoom Karaoke", - "id": "9p_C6G7p5VM" - }, - { - "title": "Fergie feat Q Tip and GoonRock - A Little Party Never Killed Nobody All We Got - Karaoke Version", - "id": "9_lNyZmu_R8" - }, - { - "title": "Belinda Carlisle - Leave A Light On - Karaoke Version from Zoom Karaoke", - "id": "-TK4YbyrV04" - }, - { - "title": "Craig David - Fill Me In - Karaoke Version from Zoom Karaoke", - "id": "kq495sDABMo" - }, - { - "title": "Madness - Shame And Scandal - Karaoke Version from Zoom Karaoke", - "id": "ycgZpdQj6GE" - }, - { - "title": "The Little Mermaid - Under The Sea - Karaoke Version from Zoom Karaoke", - "id": "vm4XbGw_aXY" - }, - { - "title": "Clean Bandit feat Jess Glynne - Rather Be - Karaoke Version from Zoom Karaoke", - "id": "vg0rzCPU91g" - }, - { - "title": "Jason Donovan - Nothing Can Divide Us - Karaoke Version from Zoom Karaoke", - "id": "kEBEQeiLEc0" - }, - { - "title": "The Stone Roses - She Bangs The Drums - Karaoke Version from Zoom Karaoke", - "id": "bSuwWYBPaIY" - }, - { - "title": "Secret Affair - My World - Karaoke Version from Zoom Karaoke", - "id": "ZsJYHSojrFY" - }, - { - "title": "UB40 - Groovin' - Karaoke Version from Zoom Karaoke", - "id": "V8tHaq7Wsm4" - }, - { - "title": "Shakira feat Rihanna - Can't Remember To Forget You - Karaoke Version from Zoom Karaoke", - "id": "NtDpaQ4sm-M" - }, - { - "title": "Engelbert Humperdinck - Let's Kiss Tomorrow Goodbye - Karaoke Version from Zoom Karaoke", - "id": "H-VHVisPCiY" - }, - { - "title": "Jason Donovan - Every Day I Love You More - Karaoke Version from Zoom Karaoke", - "id": "5kFbC0c4xbc" - }, - { - "title": "Kylie Minogue - Into The Blue - Karaoke Version from Zoom Karaoke", - "id": "06F8_4Nyoco" - }, - { - "title": "Cliff Richard - Angel - Karaoke Version from Zoom Karaoke", - "id": "_aga_CuvFiw" - }, - { - "title": "Paolo Nutini - Rewind - Karaoke Version from Zoom Karaoke", - "id": "b4i3mj6YZD0" - }, - { - "title": "Fern Kinney - Together We Are Beautiful - Karaoke Version from Zoom Karaoke", - "id": "Uap94VuVwSw" - }, - { - "title": "Peter And Gordon - I Go To Pieces - Karaoke Version from Zoom Karaoke", - "id": "SeVZFXwn6WU" - }, - { - "title": "Cher - You Haven't Seen The Last Of Me - Karaoke Version from Zoom Karaoke", - "id": "J51QqpPaShk" - }, - { - "title": "Paloma Faith - Can't Rely On You - Karaoke Version from Zoom Karaoke", - "id": "gKF2NP5H2n0" - }, - { - "title": "Placebo - Every You Every Me - Karaoke Version from Zoom Karaoke", - "id": "_S6Tg4XmslQ" - }, - { - "title": "Gorgon City feat MNEK - Ready For Your Love - Karaoke Version from Zoom Karaoke", - "id": "XyDeOzyFd3I" - }, - { - "title": "Racing Cars - They Shoot Horses Don't They - Karaoke Version from Zoom Karaoke", - "id": "Wdfw-rFukIQ" - }, - { - "title": "The Rockin' Berries - Poor Man's Son - Karaoke Version from Zoom Karaoke", - "id": "Ssm4cN-JUxE" - }, - { - "title": "James Brown - It's A Man's, Man's, Man's World - Karaoke Version from Zoom Karaoke", - "id": "EaGEvi1G9DQ" - }, - { - "title": "Placebo - The Bitter End - Karaoke Version from Zoom Karaoke", - "id": "9DuBo-RdXMM" - }, - { - "title": "Jason Donovan - When You Come Back To Me - Karaoke Version from Zoom Karaoke", - "id": "vmk1QMuLhzY" - }, - { - "title": "Peter And Gordon - I Go To Pieces - Karaoke Version from Zoom Karaoke", - "id": "ezd7PSOUGHU" - }, - { - "title": "The Trashmen - Surfin' Bird - Karaoke Version from Zoom Karaoke", - "id": "_WMTeQTwPOg" - }, - { - "title": "Simply Red - Ev'ry Time We Say Goodbye - Karaoke Version from Zoom Karaoke", - "id": "EjL-Q3AGgeU" - }, - { - "title": "Limp Bizkit - Rollin' - Karaoke Version from Zoom Karaoke", - "id": "AptE2MYyg7w" - }, - { - "title": "Roxette - The Look - Karaoke Version from Zoom Karaoke", - "id": "GggdO0akp0I" - }, - { - "title": "The Lion King - Hakuna Matata - Karaoke Version from Zoom Karaoke", - "id": "tcuP-GHt5U0" - }, - { - "title": "Pulp - Do You Remember The First Time - Karaoke Version from Zoom Karaoke", - "id": "lmn8LIu34Bg" - }, - { - "title": "The Lion King - Hakuna Matata (Solo) - Karaoke Version from Zoom Karaoke", - "id": "dw6DvfWTQ6c" - }, - { - "title": "The Gaslight Anthem - Great Expectations - Karaoke Version from Zoom Karaoke", - "id": "b1GAJ_gN190" - }, - { - "title": "Alan Jackson - I'd Love You All Over Again - Karaoke Version from Zoom Karaoke", - "id": "_zDEC-V9g6w" - }, - { - "title": "Deee-Lite - Groove Is In The Heart - Karaoke Version from Zoom Karaoke", - "id": "SWxkD8A5E0s" - }, - { - "title": "Westlife - When You're Looking Like That - Karaoke Version from Zoom Karaoke", - "id": "Hbp_VxxEBQ4" - }, - { - "title": "Crowded House - Don't Dream It's Over - Karaoke Version from Zoom Karaoke", - "id": "CM-vvXJmNr4" - }, - { - "title": "Annie Soundtrack - It's The Hard Knock Life - Karaoke Version from Zoom Karaoke", - "id": "CGGvxvQmIks" - }, - { - "title": "George Michael - One More Try - Karaoke Version from Zoom Karaoke", - "id": "YGdEEzsWZIU" - }, - { - "title": "Charles And Eddie - Would I Lie To You - Karaoke Version from Zoom Karaoke", - "id": "SpVZRJDr-0A" - }, - { - "title": "Elyar Fox - A Billion Girls - Karaoke Version from Zoom Karaoke", - "id": "OmgAkAKxrPY" - }, - { - "title": "Duran Duran - Save A Prayer (U.S. Single Version) - Karaoke Version from Zoom Karaoke", - "id": "ECUG5z06c80" - }, - { - "title": "Bruce Springsteen - The River - Karaoke Version from Zoom Karaoke", - "id": "CV97iori2tQ" - }, - { - "title": "The Vamps - Last Night - Karaoke Version from Zoom Karaoke", - "id": "2M416MiCoSw" - }, - { - "title": "Austin Roberts - Rocky - Karaoke Version from Zoom Karaoke", - "id": "07heGKEWVM4" - }, - { - "title": "The Fresh Price - The Fresh Prince Of Bel Air - Karaoke Version from Zoom Karaoke", - "id": "QLCejsx5CeI" - }, - { - "title": "Elvis Presley - Didja' Ever - Karaoke Version from Zoom Karaoke", - "id": "uypQolj--FA" - }, - { - "title": "Christina Perri - Human - Karaoke Version from Zoom Karaoke", - "id": "tkUKuCjYlEY" - }, - { - "title": "Foxes - Holding Onto Heaven - Karaoke Version from Zoom Karaoke", - "id": "osJmmRHQFNE" - }, - { - "title": "Elvis Presley - Bridge Over Troubled Water - Karaoke Version from Zoom Karaoke", - "id": "X09S1dKIqeY" - }, - { - "title": "Idina Menzel from Wicked - The Wizard And I - Karaoke Version from Zoom Karaoke", - "id": "P4TuAWmrlac" - }, - { - "title": "Duke Dumont feat Jax Jones - I Got U (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "NsV6aElrv5s" - }, - { - "title": "Foreigner - Waiting For A Girl Like You - Karaoke Version from Zoom Karaoke", - "id": "NUptiRmNE6M" - }, - { - "title": "Dusty Springfield - Goin' Back - Karaoke Version from Zoom Karaoke", - "id": "MNjsZzCfaTI" - }, - { - "title": "Joseph And The Amazing Technicolor Dreamcoat - Close Every Door - Karaoke Version from Zoom Karaoke", - "id": "AbEPTUUPe2s" - }, - { - "title": "Art Garfunkel - Bright Eyes - Karaoke Version from Zoom Karaoke", - "id": "2d84XIV9qaI" - }, - { - "title": "Tami Lynn - I'm Gonna Run Away From You - Karaoke Version from Zoom Karaoke", - "id": "jjknW_c-yJA" - }, - { - "title": "The Monkees - (Theme From) The Monkees - Karaoke Version from Zoom Karaoke", - "id": "3gUAsqqtbl8" - }, - { - "title": "Tony Orlando And Dawn - Say Has Anybody Seen My Sweet Gypsy Rose - Karaoke Version from Zoom Karaoke", - "id": "t3o0hlfeetQ" - }, - { - "title": "Curiosity Killed The Cat - Down To Earth - Karaoke Version from Zoom Karaoke", - "id": "JQO9iXjDAts" - }, - { - "title": "Idina Menzel from Wicked - I'm Not That Girl - Karaoke Version from Zoom Karaoke", - "id": "xrdt_Vmfsx4" - }, - { - "title": "Pink - Trouble - Karaoke Version from Zoom Karaoke", - "id": "tZDhNVZaDVA" - }, - { - "title": "Jimmy Eat World - The Middle - Karaoke Version from Zoom Karaoke", - "id": "k2zvWg0516Q" - }, - { - "title": "Neil Sedaka - The Hungry Years - Karaoke Version from Zoom Karaoke", - "id": "QM6J9osnNbY" - }, - { - "title": "Captain And Tennille - Love Will Keep Us Together - Karaoke Version from Zoom Karaoke", - "id": "MdSUiE2oSAY" - }, - { - "title": "Duke Dumont feat Jax Jones - I Got U (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "Fl4Sj2LHad8" - }, - { - "title": "Dollar - Who Were You With In The Moonlight - Karaoke Version from Zoom Karaoke", - "id": "Bc6zJ4oQAHA" - }, - { - "title": "Matt Monro - How Do You Do - Karaoke Version from Zoom Karaoke", - "id": "5MqkrmjeJtM" - }, - { - "title": "Sigma - Nobody To Love - Karaoke Version from Zoom Karaoke", - "id": "3BKjvMwlSrQ" - }, - { - "title": "Bruce Springsteen - Jungleland - Karaoke Version from Zoom Karaoke", - "id": "2qBk0nixYGM" - }, - { - "title": "Lana Del Rey - Young And Beautiful - Karaoke Version from Zoom Karaoke", - "id": "0m8UXxLMAEs" - }, - { - "title": "Afrojack feat Wrabel - Ten Feet Tall - Karaoke Version from Zoom Karaoke", - "id": "vLE-RyYU5lQ" - }, - { - "title": "Alan Jackson - Midnight In Montgomery - Karaoke Version from Zoom Karaoke", - "id": "p-7Ybb159co" - }, - { - "title": "UB40 - Many Rivers To Cross - Karaoke Version from Zoom Karaoke", - "id": "iH3Tg0C_XAI" - }, - { - "title": "Pink - U And Ur Hand - Karaoke Version from Zoom Karaoke", - "id": "fJRBEpRyJC8" - }, - { - "title": "Jay Z feat Justin Timberlake - Holy Grail - Karaoke Version from Zoom Karaoke", - "id": "dSIUHszRGvQ" - }, - { - "title": "Matt Monro - Three Coins In The Fountain - Karaoke Version from Zoom Karaoke", - "id": "Zk9wNMzceHo" - }, - { - "title": "Bastille - Things We Lost In The Fire - Karaoke Version from Zoom Karaoke", - "id": "WyF0lw-tvX0" - }, - { - "title": "The Stereophonics - Just Looking - Karaoke Version from Zoom Karaoke", - "id": "SzYTSVAzj98" - }, - { - "title": "Conway Twitty - Slow Hand - Karaoke Version from Zoom Karaoke", - "id": "N6T7OOuKHo4" - }, - { - "title": "Annie Lennox - Why - Karaoke Version from Zoom Karaoke", - "id": "Gy1YxNntqHQ" - }, - { - "title": "The Clash - I Fought The Law - Karaoke Version from Zoom Karaoke", - "id": "CvkaPRDn0YQ" - }, - { - "title": "Fats Domino - I'm Walkin' - Karaoke Version from Zoom Karaoke", - "id": "BT8uuW3G0Uw" - }, - { - "title": "Little Mix - Word Up - Karaoke Version from Zoom Karaoke", - "id": "-CjNv9iNprQ" - }, - { - "title": "The Vaccines - If You Wanna - Karaoke Version from Zoom Karaoke", - "id": "W2NrraPc2l0" - }, - { - "title": "Bruce Springsteen - Badlands - Karaoke Version from Zoom Karaoke", - "id": "JhzPNoKvvZY" - }, - { - "title": "Aloe Blacc - The Man - Karaoke Version from Zoom Karaoke", - "id": "3LYxJoO5pi4" - }, - { - "title": "Crosby, Stills And Nash - Marrakesh Express - Karaoke Version from Zoom Karaoke", - "id": "sOGqYEwvOPg" - }, - { - "title": "Tears For Fears - Mad World - Karaoke Version from Zoom Karaoke", - "id": "p-WMvkT1QHE" - }, - { - "title": "Fats Domino - Ain't That A Shame - Karaoke Version from Zoom Karaoke", - "id": "oEXJMN2K4V8" - }, - { - "title": "The Libertines - Can't Stand Me Now - Karaoke Version from Zoom Karaoke", - "id": "mMPlzQUCZcs" - }, - { - "title": "Kate Bush - December Will Be Magic Again - Karaoke Version from Zoom Karaoke", - "id": "hEMUy6siSGM" - }, - { - "title": "Toto Coelo - I Eat Cannibals - Karaoke Version from Zoom Karaoke", - "id": "ehldv315gCY" - }, - { - "title": "The Korgis - Everybody's Got To Learn Sometime - Karaoke Version from Zoom Karaoke", - "id": "YDL_jKoCKSM" - }, - { - "title": "Muse - Plug In Baby - Karaoke Version from Zoom Karaoke", - "id": "UYeTTMXsBa8" - }, - { - "title": "The Move - I Can Hear The Grass Grow - Karaoke Version from Zoom Karaoke", - "id": "RKEqKmxCxy8" - }, - { - "title": "Avicii feat Audra Mae - Addicted To You - Karaoke Version from Zoom Karaoke", - "id": "PSNGod2QslI" - }, - { - "title": "Tom Jones And The Stereophonics - Mama Told Me Not To Come - Karaoke Version from Zoom Karaoke", - "id": "97MsMSoVzHk" - }, - { - "title": "Bruce Springsteen - Hungry Heart - Karaoke Version from Zoom Karaoke", - "id": "6GBlhprmntY" - }, - { - "title": "John Newman - Out Of My Head - Karaoke Version from Zoom Karaoke", - "id": "-K1P8O36QrU" - }, - { - "title": "Tiesto - Red Lights - Karaoke Version from Zoom Karaoke", - "id": "vS8C_kNmZ8g" - }, - { - "title": "Route 94 feat Jess Glynne - My Love - Karaoke Version from Zoom Karaoke", - "id": "ohYIinbYMAI" - }, - { - "title": "Tracey Ullman - Move Over Darling - Karaoke Version from Zoom Karaoke", - "id": "CR5YEc3hTs0" - }, - { - "title": "A-ha - I've Been Losing You - Karaoke Version from Zoom Karaoke", - "id": "-8fi7EMbZRI" - }, - { - "title": "Jefferson Airplane - White Rabbit - Karaoke Version from Zoom Karaoke", - "id": "qZqZu5CiPWk" - }, - { - "title": "John Legend - All Of Me - Karaoke Version from Zoom Karaoke", - "id": "WgdF4B3iXAA" - }, - { - "title": "Sam Smith - Money On My Mind - Karaoke Version from Zoom Karaoke", - "id": "Ur_eKbskv3c" - }, - { - "title": "The Lion King - I Just Can't Wait To Be King - Karaoke Version from Zoom Karaoke", - "id": "Tbei-slMUEY" - }, - { - "title": "Five Star - Rain Or Shine - Karaoke Version from Zoom Karaoke", - "id": "TIt3cRailqk" - }, - { - "title": "USA For Africa - We Are The World - Karaoke Version from Zoom Karaoke", - "id": "RH93yrry8xw" - }, - { - "title": "Judy Clay And William Bell - Private Number - Karaoke Version from Zoom Karaoke", - "id": "QEgxPO2_7y0" - }, - { - "title": "Molly Smitten Downes - Children Of The Universe - Karaoke Version from Zoom Karaoke", - "id": "C3_YqTrTZxw" - }, - { - "title": "Sister Act - Oh Happy Day - Karaoke Version from Zoom Karaoke", - "id": "4wnzkO4Dq28" - }, - { - "title": "Jay Z feat Beyonce - '03 Bonnie And Clyde - Karaoke Version from Zoom Karaoke", - "id": "wrGAMl3Cl2U" - }, - { - "title": "Del Amitri - Nothing Ever Happens - Karaoke Version from Zoom Karaoke", - "id": "0fnmf5A-V50" - }, - { - "title": "Zedd feat Foxes - Clarity - Karaoke Version from Zoom Karaoke", - "id": "ti0CUrR9NZk" - }, - { - "title": "Van Morrison - And It Stoned Me - Karaoke Version from Zoom Karaoke", - "id": "lWkUdIdgnA0" - }, - { - "title": "Selena Gomez And The Scene - Hit The Lights - Karaoke Version from Zoom Karaoke", - "id": "b0oRcXcxV6g" - }, - { - "title": "Vampire Weekend - A Punk - Karaoke Version from Zoom Karaoke", - "id": "aMnmNaLfn8w" - }, - { - "title": "Christina Perri - Burning Gold - Karaoke Version from Zoom Karaoke", - "id": "7ffsSPMyydA" - }, - { - "title": "Black Sabbath - Supernaut - Karaoke Version from Zoom Karaoke", - "id": "-ckL5bPV8Z0" - }, - { - "title": "Garth Brooks - If Tomorrow Never Comes - Karaoke Version from Zoom Karaoke", - "id": "G8Jt_pl50U8" - }, - { - "title": "Will Young - Light My Fire - Karaoke Version from Zoom Karaoke", - "id": "wLNusclPhGY" - }, - { - "title": "Paul Heaton & Jacqui Abbott - D I Y - Karaoke Version from Zoom Karaoke", - "id": "tkNPdXgibwk" - }, - { - "title": "Ella Henderson - Ghost - Karaoke Version from Zoom Karaoke", - "id": "euXbC6Iz1HY" - }, - { - "title": "DJ Casper - Cha Cha Slide - Karaoke Version from Zoom Karaoke", - "id": "bHI0tT8nyls" - }, - { - "title": "Wanda Jackson - Let's Have A Party - Karaoke Version from Zoom Karaoke", - "id": "Z88f2EI3VMg" - }, - { - "title": "Tina Charles - Dance Little Lady Dance - Karaoke Version from Zoom Karaoke", - "id": "WRB3Z1oJZqA" - }, - { - "title": "George Ezra - Budapest - Karaoke Version from Zoom Karaoke", - "id": "Ub2PhgygzUg" - }, - { - "title": "Everything But The Girl - I Don't Want To Talk About It - Karaoke Version from Zoom Karaoke", - "id": "R476daR2L2U" - }, - { - "title": "Sid Vicious / The Sex Pistols - My Way - Karaoke Version from Zoom Karaoke", - "id": "QOiD8vFvjjg" - }, - { - "title": "Alan Jackson - Tonight I Climbed The Wall - Karaoke Version from Zoom Karaoke", - "id": "KGJiIID1RMA" - }, - { - "title": "Frank Sinatra - You Make Me Feel So Young - Karaoke Version from Zoom Karaoke", - "id": "K27MQUvUw3w" - }, - { - "title": "Shed Seven - Chasing Rainbows - Karaoke Version from Zoom Karaoke", - "id": "EsLVsd_YSsw" - }, - { - "title": "Hermes House Band - Country Roads - Karaoke Version from Zoom Karaoke", - "id": "Ag8kkCRDMj0" - }, - { - "title": "My Fair Lady - On The Street Where You Live - Karaoke Version from Zoom Karaoke", - "id": "6cpa61r4JKU" - }, - { - "title": "Alan Jackson - Who Says You Can't Have It All - Karaoke Version from Zoom Karaoke", - "id": "0EHdrrfBBQ8" - }, - { - "title": "Ellie Goulding - Beating Heart - Karaoke Version from Zoom Karaoke", - "id": "UL7fFv9MGWg" - }, - { - "title": "Paloma Faith - Only Love Can Hurt Like This - Karaoke Version from Zoom Karaoke", - "id": "AFl26hp_He8" - }, - { - "title": "The Wanted - Glow In The Dark - Karaoke Version from Zoom Karaoke", - "id": "R3qFiJBCVDw" - }, - { - "title": "Celine Dion - I'm Alive - Karaoke Version from Zoom Karaoke", - "id": "MaZRM6QP3jQ" - }, - { - "title": "Simply Red - Come To My Aid - Karaoke Version from Zoom Karaoke", - "id": "-t9Ohfld-W4" - }, - { - "title": "Kenny Rogers - Lady - Karaoke Version from Zoom Karaoke", - "id": "wAlDshUTxH0" - }, - { - "title": "The Common Linnets - Calm After The Storm - Karaoke Version from Zoom Karaoke", - "id": "sBNxd4tAFjg" - }, - { - "title": "Shed Seven - Going For Gold - Karaoke Version from Zoom Karaoke", - "id": "pJfeducc25o" - }, - { - "title": "DJ Cassidy feat Robin Thicke & Jessie J - Calling All Hearts - Karaoke Version from Zoom Karaoke", - "id": "j_W77SRfXcw" - }, - { - "title": "Lana Del Rey - National Anthem - Karaoke Version from Zoom Karaoke", - "id": "YzQCeKJJ9WA" - }, - { - "title": "Ben Howard - Only Love - Karaoke Version from Zoom Karaoke", - "id": "QB9BQOOZknM" - }, - { - "title": "Cheap Trick - I Want You To Want Me - Karaoke Version from Zoom Karaoke", - "id": "GOQZ8PF6bE0" - }, - { - "title": "Lil' Wayne feat Bruno Mars - Mirror - Karaoke Version from Zoom Karaoke", - "id": "FDP-4S1wA5U" - }, - { - "title": "Lana Del Rey - West Coast - Karaoke Version from Zoom Karaoke", - "id": "-WO2afAFU3Q" - }, - { - "title": "Kim Wilde - Hey Mister Snowman - Karaoke Version from Zoom Karaoke", - "id": "zuVU2i47Jok" - }, - { - "title": "Grandmaster Melle Mel - White Lines Don't Don't Do It - Karaoke Version from Zoom Karaoke", - "id": "mIEtHJOo6Vc" - }, - { - "title": "Peter Gabriel And Kate Bush - Don't Give Up - Karaoke Version from Zoom Karaoke", - "id": "iEfw8ud9tQc" - }, - { - "title": "James Taylor - Fire And Rain - Karaoke Version from Zoom Karaoke", - "id": "e47f8VWgaq4" - }, - { - "title": "Yvonne Elliman - I Don't Know How To Love Him - Karaoke Version from Zoom Karaoke", - "id": "a0BKBD-bBEo" - }, - { - "title": "5 Seconds Of Summer - Don't Stop - Karaoke Version from Zoom Karaoke", - "id": "QZ1DBMrP1Rs" - }, - { - "title": "Reel 2 Real feat The Mad Stuntman - I Like To Move It - Karaoke Version from Zoom Karaoke", - "id": "Q4BfWRVcLOo" - }, - { - "title": "Warpaint - Undertow - Karaoke Version from Zoom Karaoke", - "id": "ELfRBR_1p9o" - }, - { - "title": "Simply Red - Fake - Karaoke Version from Zoom Karaoke", - "id": "h3onb-7OqjE" - }, - { - "title": "The Cure - Why Can't I Be You - Karaoke Version from Zoom Karaoke", - "id": "d0FWtejAbjI" - }, - { - "title": "The Firm - Star Trekkin' - Karaoke Version from Zoom Karaoke", - "id": "cYLro1pEtP4" - }, - { - "title": "Rixton - Me And My Broken Heart - Karaoke Version from Zoom Karaoke", - "id": "YBRiVvblE80" - }, - { - "title": "Elvis Presley - Love Me - Karaoke Version from Zoom Karaoke", - "id": "HNTcdxRFBEo" - }, - { - "title": "John Holt - Help Me Make It Through The Night - Karaoke Version from Zoom Karaoke", - "id": "A284aH3kXwI" - }, - { - "title": "David Guetta feat Sia - She Wolf Falling To Pieces - Karaoke Version from Zoom Karaoke", - "id": "1GUgFcHa5jA" - }, - { - "title": "Michael Jackson - She's Out Of My Life - Karaoke Version from Zoom Karaoke", - "id": "z67VstSIpsg" - }, - { - "title": "The Cure - In Between Days - Karaoke Version from Zoom Karaoke", - "id": "lh4Klm49ess" - }, - { - "title": "The Darkness - Christmas Time Don't Let The Bells End - Karaoke Version from Zoom Karaoke", - "id": "ghrHjmUyPdc" - }, - { - "title": "Rita Ora - I Will Never Let You Down - Karaoke Version from Zoom Karaoke", - "id": "YMpNmm8vQY4" - }, - { - "title": "Kristina Train - Dark Black - Karaoke Version from Zoom Karaoke", - "id": "SC0zJvmObMM" - }, - { - "title": "Alison Moyet - Is This Love - Karaoke Version from Zoom Karaoke", - "id": "IUlgBWLqceQ" - }, - { - "title": "Iron Maiden - Run To The Hills - Karaoke Version from Zoom Karaoke", - "id": "INgr09uWvvE" - }, - { - "title": "Bob Dylan - Knockin' On Heaven's Door - Karaoke Version from Zoom Karaoke", - "id": "GdbNa-KHmtk" - }, - { - "title": "Rainbow - I Surrender - Karaoke Version from Zoom Karaoke", - "id": "6ah1Dgx8vaA" - }, - { - "title": "UB40 - Cherry Oh Baby - Karaoke Version from Zoom Karaoke", - "id": "6Ahr_X2bulU" - }, - { - "title": "Smokie - Baby It's You - Karaoke Version from Zoom Karaoke", - "id": "63HEC8DeyvA" - }, - { - "title": "Katy B - Still - Karaoke Version from Zoom Karaoke", - "id": "2cvj-rVnRgY" - }, - { - "title": "Alan Jackson - Chattahoochee - Karaoke Version from Zoom Karaoke", - "id": "uvcIbAlZRsM" - }, - { - "title": "The Beautiful South - Dream A Little Dream Of Me (Duet Version) - Karaoke Version from Zoom", - "id": "qvYZR3DLWLo" - }, - { - "title": "John Holt - I'd Love You To Want Me - Karaoke Version from Zoom Karaoke", - "id": "pf0UtyJoCbA" - }, - { - "title": "Spagna - Call Me - Karaoke Version from Zoom Karaoke", - "id": "kPPdH0oaRh0" - }, - { - "title": "Joe Cocker - You Are So Beautiful - Karaoke Version from Zoom Karaoke", - "id": "f1NtHar9zic" - }, - { - "title": "The Beautiful South - Dream A Little Dream Of Me (For Solo Female) - Karaoke Version from Zoom", - "id": "XAK8I3d66fs" - }, - { - "title": "Terrorvision - Oblivion - Karaoke Version from Zoom Karaoke", - "id": "PsoWfRS5Flo" - }, - { - "title": "Bruce Springsteen - Santa Claus Is Comin' To Town - Karaoke Version from Zoom Karaoke", - "id": "GOpKVOeSbDI" - }, - { - "title": "Groove Coverage - Poison - Karaoke Version from Zoom Karaoke", - "id": "GLjytbQg1sI" - }, - { - "title": "Clean Bandit feat Sharna Bass - Extraordinary - Karaoke Version from Zoom Karaoke", - "id": "FWxZhtbFUk0" - }, - { - "title": "The Manic Street Preachers - A Design For Life - Karaoke Version from Zoom Karaoke", - "id": "DuIKNVg-a4Y" - }, - { - "title": "The Communards - Never Can Say Goodbye - Karaoke Version from Zoom Karaoke", - "id": "9PiWuhSQ-CQ" - }, - { - "title": "Soul Asylum - Runaway Train - Karaoke Version from Zoom Karaoke", - "id": "8HqhYWa3B5I" - }, - { - "title": "The Rubettes - Baby I Know - Karaoke Version from Zoom Karaoke", - "id": "7Se2lX3GU9w" - }, - { - "title": "Captain Sensible - Happy Talk - Karaoke Version from Zoom Karaoke", - "id": "5X6OjMvIScU" - }, - { - "title": "Kristina Train - Dream Of Me - Karaoke Version from Zoom Karaoke", - "id": "5BzdO6Abrdk" - }, - { - "title": "Rihanna - S.O.S. - Karaoke Version from Zoom Karaoke", - "id": "ZMxwnRLS2-M" - }, - { - "title": "The Fifth Dimension - Aquarius/Let The Sunshine In (No Backing Vocals) - Karaoke Version", - "id": "TgsUJmfljl0" - }, - { - "title": "One Direction - Stole My Heart - Karaoke Version from Zoom Karaoke", - "id": "SB0fdagkkJ0" - }, - { - "title": "Joe Jackson - I'm The Man - Karaoke Version from Zoom Karaoke", - "id": "wado9PXZ7WM" - }, - { - "title": "Notorious BIG feat Mase And Puffy Daddy - Mo' Money Mo' Problems - Karaoke Version from Zoom Karaoke", - "id": "rYCAkomPg3o" - }, - { - "title": "The Beat - Tears Of A Clown - Karaoke Version from Zoom Karaoke", - "id": "ksYcooDMnQo" - }, - { - "title": "Ten Sharp - You - Karaoke Version from Zoom Karaoke", - "id": "cx8b44VAqn8" - }, - { - "title": "Level 42 - Leaving Me Now - Karaoke Version from Zoom Karaoke", - "id": "ScPd-QivqcA" - }, - { - "title": "One Direction - Moments - Karaoke Version from Zoom Karaoke", - "id": "K1yCgXtT0DI" - }, - { - "title": "The Fifth Dimension - Aquarius/Let The Sunshine In - Karaoke Version from Zoom Karaoke", - "id": "HiYCPj82lgM" - }, - { - "title": "Joan Osborne - One Of Us - Karaoke Version from Zoom Karaoke", - "id": "GCGpE8_lcac" - }, - { - "title": "Smokey Robinson - Being With You - Karaoke Version from Zoom Karaoke", - "id": "vzsy2g8w2MQ" - }, - { - "title": "Magic! - Rude - Karaoke Version from Zoom Karaoke", - "id": "uioy-9yQZEI" - }, - { - "title": "John Holt - Too Much Love - Karaoke Version from Zoom Karaoke", - "id": "qX58Cj6nNh0" - }, - { - "title": "Wicked - Popular - Karaoke Version from Zoom Karaoke", - "id": "ji1nRX28zYA" - }, - { - "title": "Linda Ronstadt And Aaron Neville - Don't Know Much - Karaoke Version from Zoom Karaoke", - "id": "eL4Q38hP2QY" - }, - { - "title": "The Automatic - Monster - Karaoke Version from Zoom Karaoke", - "id": "aDBvp2ncRLU" - }, - { - "title": "Thelma Houston - Don't Leave Me This Way - Karaoke Version from Zoom Karaoke", - "id": "Yv5cgMkX2Nk" - }, - { - "title": "My Chemical Romance - I'm Not Okay (I Promise) - Karaoke Version from Zoom Karaoke", - "id": "YIE_hFrSdtw" - }, - { - "title": "Ritchie Valens - Donna - Karaoke Version from Zoom Karaoke", - "id": "QLTC6dXMsHs" - }, - { - "title": "The Saturdays - What Are You Waiting For - Karaoke Version from Zoom Karaoke", - "id": "LT1P4Bowv2M" - }, - { - "title": "Justin Timberlake feat Jay Z - Suit And Tie - Karaoke Version from Zoom Karaoke", - "id": "IqLwQzzGnus" - }, - { - "title": "Paul Carrack - Eyes Of Blue - Karaoke Version from Zoom Karaoke", - "id": "8VZ-NfKa-lc" - }, - { - "title": "OneRepublic - Love Runs Out - Karaoke Version from Zoom Karaoke", - "id": "dt6xWslwZLE" - }, - { - "title": "Jamiroquai - Cosmic Girl - Karaoke Version from Zoom Karaoke", - "id": "WjrgUq_K1QU" - }, - { - "title": "Queensryche - Silent Lucidity - Karaoke Version from Zoom Karaoke", - "id": "rx7pqrAOr_k" - }, - { - "title": "Limahl - Never Ending Story (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "rXkX3VsSrqU" - }, - { - "title": "Musical Youth - Pass The Dutchie - Karaoke Version from Zoom Karaoke", - "id": "rMPFm1JPUEQ" - }, - { - "title": "Frank Ocean - Thinkin' 'Bout You - Karaoke Version from Zoom Karaoke", - "id": "pU-GuIx4mgU" - }, - { - "title": "Frank Sinatra And Antonio Carlos Jobim - The Girl From Ipanema - Karaoke Version from Zoom", - "id": "azV8qJRXIns" - }, - { - "title": "Jason Derulo - Marry Me - Karaoke Version from Zoom Karaoke", - "id": "Z-7hQsNtysc" - }, - { - "title": "Paul Carrack - Eyes Of Blue (Reggae Version) - Karaoke Version from Zoom Karaoke", - "id": "35fXQ1gtRHE" - }, - { - "title": "Westworld - Sonic Boom Boy - Karaoke Version from Zoom Karaoke", - "id": "yIbl-2jMZCU" - }, - { - "title": "Lisa Stansfield - All Around The World - Karaoke Version from Zoom Karaoke", - "id": "x7SZU5-2zLY" - }, - { - "title": "Bruce Springsteen - One Step Up - Karaoke Version from Zoom Karaoke", - "id": "w1kjq2CQU18" - }, - { - "title": "Alan Jackson - Gone Country - Karaoke Version from Zoom Karaoke", - "id": "jdSfMQcubZM" - }, - { - "title": "Frank Sinatra - Summer Wind - Karaoke Version from Zoom Karaoke", - "id": "ejgqqwJxYyQ" - }, - { - "title": "Hall And Oates - Kiss On My List - Karaoke Version from Zoom Karaoke", - "id": "axBoSaxZdzQ" - }, - { - "title": "Lorde - Tennis Court - Karaoke Version from Zoom Karaoke", - "id": "XrZ0YQtG0f0" - }, - { - "title": "The Script - If You Could See Me Now - Karaoke Version from Zoom Karaoke", - "id": "U9Dgl2XTEy0" - }, - { - "title": "Aqua - Cartoon Heroes - Karaoke Version from Zoom Karaoke", - "id": "RSY39m_hiZk" - }, - { - "title": "The Selecter - On My Radio - Karaoke Version from Zoom Karaoke", - "id": "QjWthU_bvCU" - }, - { - "title": "David Gray - The One I Love - Karaoke Version from Zoom Karaoke", - "id": "QKvW_pK2u9c" - }, - { - "title": "Foxes - Glorious - Karaoke Version from Zoom Karaoke", - "id": "N-iugziC2cE" - }, - { - "title": "Gregg Allman - I'm No Angel - Karaoke Version from Zoom Karaoke", - "id": "6IEDGSg38cg" - }, - { - "title": "Fine Young Cannibals - Don't Look Back - Karaoke Version from Zoom Karaoke", - "id": "5_4aSx1TsS4" - }, - { - "title": "Gorillaz - Clint Eastwood - Karaoke Version from Zoom Karaoke", - "id": "-fPwFE5HsQk" - }, - { - "title": "Bruce Springsteen - Thunder Road (Minus Harmonica) - Karaoke Version from Zoom Karaoke", - "id": "L8swwu3jwR0" - }, - { - "title": "Paul Carrack - I'm Losing You - Karaoke Version from Zoom Karaoke", - "id": "V6BoUhOmWqc" - }, - { - "title": "Demi Lovato - Made In The U.S.A. - Karaoke Version from Zoom Karaoke", - "id": "tjGKdkO75gM" - }, - { - "title": "The Beautiful South - Old Red Eyes Is Back - Karaoke Version from Zoom Karaoke", - "id": "C2JEu-etYtA" - }, - { - "title": "Tom Odell - Another Love - Karaoke Version from Zoom Karaoke", - "id": "l7NrN6rbMOg" - }, - { - "title": "Dr Dre feat Snoop Dogg - Nuthin' But A 'G' Thang - Karaoke Version from Zoom Karaoke", - "id": "SLi5pP-Q7kY" - }, - { - "title": "Donna Summer And Barbra Streisand - No More Tears Enough Is Enough - Karaoke Version", - "id": "F2T-nbwG1_o" - }, - { - "title": "Go West - The King Of Wishful Thinking - Karaoke Version from Zoom Karaoke", - "id": "9uxFe8Fcx9U" - }, - { - "title": "Tiesto feat Matthew Koma - Wasted - Karaoke Version from Zoom Karaoke", - "id": "8tXXVEOubEE" - }, - { - "title": "Example - One More Day Stay With Me - Karaoke Version from Zoom Karaoke", - "id": "7RE7enaQ1HM" - }, - { - "title": "Shed Seven - Disco Down - Karaoke Version from Zoom Karaoke", - "id": "6fMuf0mlyck" - }, - { - "title": "Leonard Cohen - The Future - Karaoke Version from Zoom Karaoke", - "id": "67p0yvRtW9Y" - }, - { - "title": "Phantom Planet - California - Karaoke Version from Zoom Karaoke", - "id": "2myuqL45nVg" - }, - { - "title": "Barbra Streisand And Barry Gibb - Guilty - Karaoke Version from Zoom Karaoke", - "id": "z2fnFpZ5REA" - }, - { - "title": "2Pac - Changes - Karaoke Version from Zoom Karaoke", - "id": "s1PnGUARAYY" - }, - { - "title": "Pet Shop Boys feat Dusty Springfield - What Have I Done To Deserve This - Karaoke Version", - "id": "ViABOMkPiDs" - }, - { - "title": "Freddie Mercury - In My Defence - Karaoke Version from Zoom Karaoke", - "id": "OaoAOCgUqfw" - }, - { - "title": "Everything But The Girl - Missing (Todd Terry Remix) - Karaoke Version from Zoom Karaoke", - "id": "ufW79W5iObU" - }, - { - "title": "The Gap Band - Oops Upside Your Head - Karaoke Version from Zoom Karaoke", - "id": "uVRxdaC0wn0" - }, - { - "title": "Radiohead - 2+2=5 - Karaoke Version from Zoom Karaoke", - "id": "tRptd0fYDb0" - }, - { - "title": "Alan Jackson - Livin' On Love - Karaoke Version from Zoom Karaoke", - "id": "kyQzFz7N7Us" - }, - { - "title": "Happy Mondays - Step On - Karaoke Version from Zoom Karaoke", - "id": "ity7C6arXBM" - }, - { - "title": "Color Me Badd - I Wanna Sex You Up - Karaoke Version from Zoom Karaoke", - "id": "cQo2_Qnc9i4" - }, - { - "title": "Kenny Loggins - Danger Zone - Karaoke Version from Zoom Karaoke", - "id": "_GytioD-eDs" - }, - { - "title": "Peter Gabriel - Solsbury Hill - Karaoke Version from Zoom Karaoke", - "id": "V5rvKpx_EvI" - }, - { - "title": "Ronan Keating And Lulu - We've Got Tonight - Karaoke Version from Zoom Karaoke", - "id": "QDj-dfhqboA" - }, - { - "title": "The Beat - Mirror In The Bathroom - Karaoke Version from Zoom Karaoke", - "id": "C3j_yteugKI" - }, - { - "title": "Eddy Raven - Who Do You Know In California - Karaoke Version from Zoom Karaoke", - "id": "B4Vk2iL54HY" - }, - { - "title": "Go West - Faithful - Karaoke Version from Zoom Karaoke", - "id": "5KaVycWjw6Q" - }, - { - "title": "George Benson - The George Benson Medley - Karaoke Version from Zoom Karaoke", - "id": "awoJBaKQWco" - }, - { - "title": "Birdy - Tee Shirt - Karaoke Version from Zoom Karaoke", - "id": "_P8iNCsNrU0" - }, - { - "title": "Train - Cadillac Cadillac - Karaoke Version from Zoom Karaoke", - "id": "HFRDOErPRBw" - }, - { - "title": "Sister Act - Hail Holy Queen - Karaoke Version from Zoom Karaoke", - "id": "8FXkYL6OwG0" - }, - { - "title": "Baltimora - Tarzan Boy - Karaoke Version from Zoom Karaoke", - "id": "v0Uyvm77AzI" - }, - { - "title": "Sia - Chandelier - Karaoke Version from Zoom Karaoke", - "id": "o3Ihtr1Nnck" - }, - { - "title": "Sum 41 - In Too Deep - Karaoke Version from Zoom Karaoke", - "id": "mBVw9n8Nqoc" - }, - { - "title": "Train - Bulletproof Picasso - Karaoke Version from Zoom Karaoke", - "id": "hxM4qADmu-s" - }, - { - "title": "Sam Smith - I'm Not The Only One - Karaoke Version from Zoom Karaoke", - "id": "al4CUTaJZCg" - }, - { - "title": "Sigma feat Paloma Faith - Changing - Karaoke Version from Zoom Karaoke", - "id": "DiYxlok1Zjk" - }, - { - "title": "Professor Green feat Tori Kelly - Lullaby - Karaoke Version from Zoom Karaoke", - "id": "2td4Fl4aNTk" - }, - { - "title": "Train - Son Of A Prison Guard - Karaoke Version from Zoom Karaoke", - "id": "nIDlvYRayYk" - }, - { - "title": "Simply Red - Money's Too Tight To Mention - Karaoke Version from Zoom Karaoke", - "id": "iJGkPfBA1FI" - }, - { - "title": "Royal Blood - Out Of The Black - Karaoke Version from Zoom Karaoke", - "id": "eYsRumUiVBA" - }, - { - "title": "Sam Smith - How Will I Know - Karaoke Version from Zoom Karaoke", - "id": "_Q8O1Gf6nbE" - }, - { - "title": "Paul Williams - Bugsy Malone - Karaoke Version from Zoom Karaoke", - "id": "xWwk1Ecs3vs" - }, - { - "title": "Renee And Renato - Save Your Love - Karaoke Version from Zoom Karaoke", - "id": "cIJQvnqtYfQ" - }, - { - "title": "Becky G - Shower - Karaoke Version from Zoom Karaoke", - "id": "EhzLgZL98Dw" - }, - { - "title": "Charli XCX - Boom Clap - Karaoke Version from Zoom Karaoke", - "id": "0ZFkbyW0wZs" - }, - { - "title": "Ritchie Valens - Come On Let's Go - Karaoke Version from Zoom Karaoke", - "id": "l_fB45nYZdo" - }, - { - "title": "Chris De Burgh - A Woman's Heart - Karaoke Version from Zoom Karaoke", - "id": "j8VKuadTnOc" - }, - { - "title": "Nazareth - Love Hurts - Karaoke Version from Zoom Karaoke", - "id": "g1f3oPuZFuY" - }, - { - "title": "Fall Out Boy - Thnks Fr Th Mmrs - Karaoke Version from Zoom Karaoke", - "id": "fb6sdc9w8p0" - }, - { - "title": "Oasis - Slide Away - Karaoke Version from Zoom Karaoke", - "id": "WC5mvuqbT_o" - }, - { - "title": "Lady Soul - If My Sister's In Trouble - Karaoke Version from Zoom Karaoke", - "id": "LwEiz_8lRN4" - }, - { - "title": "Chris De Burgh - So Beautiful - Karaoke Version from Zoom Karaoke", - "id": "EAeC2KLyCPk" - }, - { - "title": "The Script - Superheroes - Karaoke Version from Zoom Karaoke", - "id": "9YnKbXXAq8Q" - }, - { - "title": "Creedence Clearwater Revival - Have You Ever Seen The Rain - Karaoke Version from Zoom Karaoke", - "id": "8jcYl__Tk2M" - }, - { - "title": "Green Day - Welcome To Paradise - Karaoke Version from Zoom Karaoke", - "id": "1uXJEnkbq8A" - }, - { - "title": "Chris De Burgh - High On Emotion - Karaoke Version from Zoom Karaoke", - "id": "1WARWCbPRj8" - }, - { - "title": "Blondie - Picture This - Karaoke Version from Zoom Karaoke", - "id": "zSHX-pLM9vM" - }, - { - "title": "Robbie Williams - No Regrets - Karaoke Version from Zoom Karaoke", - "id": "tZBJspFAKKw" - }, - { - "title": "Royal Blood - Little Monster - Karaoke Version from Zoom Karaoke", - "id": "zOlVVA9gRLY" - }, - { - "title": "Sam Smith - When I Was Your Man - Karaoke Version from Zoom Karaoke", - "id": "qRGn-ueg9y8" - }, - { - "title": "Gorgon City feat Zak Abel - Unmissable - Karaoke Version from Zoom Karaoke", - "id": "W3L8CxrBKD4" - }, - { - "title": "The Art Company - Susanna - Karaoke Version from Zoom Karaoke", - "id": "V6ABT1FsAy8" - }, - { - "title": "Brian May - Driven By You - Karaoke Version from Zoom Karaoke", - "id": "RGz7ai4BYwE" - }, - { - "title": "Whitesnake - Still Of The Night - Karaoke Version from Zoom Karaoke", - "id": "P42CMYU0fQ8" - }, - { - "title": "Bruce Springsteen - Darkness On The Edge Of Town - Karaoke Version from Zoom Karaoke", - "id": "IdWF_GzVY4Q" - }, - { - "title": "Donna Summer - This Time I Know It's For Real - Karaoke Version from Zoom Karaoke", - "id": "HROIrWpy-PM" - }, - { - "title": "O-Town - All Or Nothing - Karaoke Version from Zoom Karaoke", - "id": "C0BFnFTt7Dw" - }, - { - "title": "Dee Dee Sharp - Gravy - Karaoke Version from Zoom Karaoke", - "id": "74puBQ8K8W4" - }, - { - "title": "Eddie Floyd - Knock On Wood - Karaoke Version from Zoom Karaoke", - "id": "6rmrHThUqnI" - }, - { - "title": "Secondcity feat Ali Love - What Can I Do - Karaoke Version from Zoom Karaoke", - "id": "Ux4SqDdTPoA" - }, - { - "title": "Sister Act - My Guy My God - Karaoke Version from Zoom Karaoke", - "id": "PmNCs_i4Rn0" - }, - { - "title": "Ella Eyre - Comeback - Karaoke Version from Zoom Karaoke", - "id": "qGbujYfln4U" - }, - { - "title": "3 Doors Down - Here Without You - Karaoke Version from Zoom Karaoke", - "id": "e2tqFU6bl-8" - }, - { - "title": "5 Seconds Of Summer - Amnesia - Karaoke Version from Zoom Karaoke", - "id": "-f6nIKecd64" - }, - { - "title": "Matt Monro - Portrait Of My Love - Karaoke Version from Zoom Karaoke", - "id": "5V7bx8CoHd8" - }, - { - "title": "Lilly Wood And The Prick feat Robin Schulz - Prayer In C - Karaoke Version from Zoom Karaoke", - "id": "y14jg3n05QE" - }, - { - "title": "Roachford - Cuddly Toy - Karaoke Version from Zoom Karaoke", - "id": "lBjb6u0sSV8" - }, - { - "title": "Shani Wallis - As Long As He Needs Me - Karaoke Version from Zoom Karaoke", - "id": "ZOMMgq4RXho" - }, - { - "title": "Ed Sheeran - Thinking Out Loud - Karaoke Version from Zoom Karaoke", - "id": "Q9ANSSZaUTk" - }, - { - "title": "Katy Perry - This Is How We Do - Karaoke Version from Zoom Karaoke", - "id": "OpvDB-iCiME" - }, - { - "title": "Bastille - Oblivion - Karaoke Version from Zoom Karaoke", - "id": "LPIy-TLDjXQ" - }, - { - "title": "Rod Stewart - Have You Ever Seen The Rain - Karaoke Version from Zoom Karaoke", - "id": "Cl_jqzvCYDs" - }, - { - "title": "The Vamps - Oh Cecilia - Karaoke Version from Zoom Karaoke", - "id": "AbCD73BbRwc" - }, - { - "title": "A Fine Frenzy - Think Of You - Karaoke Version from Zoom Karaoke", - "id": "32lY5knawJI" - }, - { - "title": "Whitesnake - Blindman - Karaoke Version from Zoom Karaoke", - "id": "TTYfqOfKwpE" - }, - { - "title": "A Fine Frenzy - Ashes And Wine - Karaoke Version from Zoom Karaoke", - "id": "yZM2oRKCYD8" - }, - { - "title": "Paloma Faith - Trouble With My Baby - Karaoke Version from Zoom Karaoke", - "id": "y68i-L4Zz-U" - }, - { - "title": "Echo And The Bunnymen - The Killing Moon - Karaoke Version from Zoom Karaoke", - "id": "wGzCl6NTwAc" - }, - { - "title": "Nicki Minaj - Anaconda - Karaoke Version from Zoom Karaoke", - "id": "tGLwSrkRqj4" - }, - { - "title": "Outkast - Roses - Karaoke Version from Zoom Karaoke", - "id": "spoeWydhbMY" - }, - { - "title": "The Sound Of Music - The Lonely Goatherd - Karaoke Version from Zoom Karaoke", - "id": "V6uojT6ipmk" - }, - { - "title": "Bread - If - Karaoke Version from Zoom Karaoke", - "id": "KCZowsUAXB0" - }, - { - "title": "David Guetta feat Sam Martin - Lovers On The Sun - Karaoke Version from Zoom Karaoke", - "id": "EY7qGzd4VS4" - }, - { - "title": "Bob Seger - Night Moves - Karaoke Version from Zoom Karaoke", - "id": "9LZTxUgU1WU" - }, - { - "title": "The Rolling Stones - The Rolling Stones Medley - Karaoke Version from Zoom Karaoke", - "id": "6fa7aLu-ssU" - }, - { - "title": "A Fine Frenzy - Almost Lover - Karaoke Version from Zoom Karaoke", - "id": "4FM_0wRIQxk" - }, - { - "title": "G R L - Ugly Heart - Karaoke Version from Zoom Karaoke", - "id": "dr3_mfC4pnw" - }, - { - "title": "Ariana Grande feat Big Sean - Best Mistake - Karaoke Version from Zoom Karaoke", - "id": "52tGSjpsUhY" - }, - { - "title": "Derek And The Dominoes - Layla - Karaoke Version from Zoom Karaoke", - "id": "uBys422UIvI" - }, - { - "title": "Craig David - Walking Away - Karaoke Version from Zoom Karaoke", - "id": "t5BxacQBKVs" - }, - { - "title": "Linda Ronstadt And James Ingram - Somewhere Out There - Karaoke Version from Zoom Karaoke", - "id": "ng7bhQdQ4O8" - }, - { - "title": "Wretch 32 feat L Marshall - Traktor - Karaoke Version from Zoom Karaoke", - "id": "lIcVF-D8J2w" - }, - { - "title": "Alan Jackson - Tall, Tall Trees - Karaoke Version from Zoom Karaoke", - "id": "jxHczR8wBN0" - }, - { - "title": "Alan Jackson And Jimmy Buffett - It's Five O'Clock Somewhere - Karaoke Version from Zoom Karaoke", - "id": "YHqt52v7v0c" - }, - { - "title": "Nico And Vinz - Am I Wrong - Karaoke Version from Zoom Karaoke", - "id": "QA7FlcsMFuk" - }, - { - "title": "Bars And Melody - Hopeful - Karaoke Version from Zoom Karaoke", - "id": "Bb7zevJgvDU" - }, - { - "title": "Ritchie Valens - We Belong Together - Karaoke Version from Zoom Karaoke", - "id": "72OYCTuLscw" - }, - { - "title": "Simply Red - Your Mirror (Live In Chile) - Karaoke Version from Zoom Karaoke", - "id": "hatbvz2VECc" - }, - { - "title": "Clean Bandit feat Jess Glynne - Real Love - Karaoke Version from Zoom Karaoke", - "id": "bC_OFsO4Maw" - }, - { - "title": "Westlife - Please Stay - Karaoke Version from Zoom Karaoke", - "id": "Sq0pz3vc8LI" - }, - { - "title": "Band Aid 30 - Do They Know It's Christmas - Karaoke Version from Zoom Karaoke", - "id": "SaBC4QLdEDw" - }, - { - "title": "Princess - Say I'm Your Number One - Karaoke Version from Zoom Karaoke", - "id": "FszyIvb1Qwo" - }, - { - "title": "Simply Red - The Right Thing (Live In Chile) - Karaoke Version from Zoom Karaoke", - "id": "8KluAxZhyO0" - }, - { - "title": "Porgy And Bess - Summertime - Karaoke Version from Zoom Karaoke", - "id": "hw79tD6lyzk" - }, - { - "title": "Echosmith - Cool Kids - Karaoke Version from Zoom Karaoke", - "id": "2chTeOvG-00" - }, - { - "title": "Simply Red - It's Only Love (Live In Chile) - Karaoke Version from Zoom Karaoke", - "id": "1niCTcKTUMk" - }, - { - "title": "Randy And The Rainbows - Denise - Karaoke Version from Zoom Karaoke", - "id": "oNJbtkNaoKY" - }, - { - "title": "Take That - These Days - Karaoke Version from Zoom Karaoke", - "id": "iQVTEo_48wY" - }, - { - "title": "John Legend - All Of Me (Tiesto Remix) - Karaoke Version from Zoom Karaoke", - "id": "_G_lXBrMNMs" - }, - { - "title": "One Direction - Fireproof - Karaoke Version from Zoom Karaoke", - "id": "od24JhdRc-A" - }, - { - "title": "Big Country - In A Big Country - Karaoke Version from Zoom Karaoke", - "id": "iX3xmMMeDhE" - }, - { - "title": "Zac Brown Band feat Alan Jackson - As She's Walking Away - Karaoke Version from Zoom Karaoke", - "id": "P5iLags-m48" - }, - { - "title": "Haircut 100 - Favourite Shirts - Karaoke Version from Zoom Karaoke", - "id": "nS8SYd9jYOo" - }, - { - "title": "Ella Henderson - Glow - Karaoke Version from Zoom Karaoke", - "id": "zqpxcplNoYs" - }, - { - "title": "Genesis - That's All - Karaoke Version from Zoom Karaoke", - "id": "HsAWUBZMy7M" - }, - { - "title": "Tears For Fears - Shout - Karaoke Version from Zoom Karaoke", - "id": "esOn2VXsRKM" - }, - { - "title": "The Undertones - Wednesday Week - Karaoke Version from Zoom Karaoke", - "id": "wcTlPz34FqI" - }, - { - "title": "Lindsay Buckingham - Holiday Road - Karaoke Version from Zoom Karaoke", - "id": "iLMF3QvIfmg" - }, - { - "title": "Twinkle - Terry - Karaoke Version from Zoom Karaoke", - "id": "-9nHzsiNG94" - }, - { - "title": "OMD - (Forever) Live And Die - Karaoke Version from Zoom Karaoke", - "id": "_EDlMvMTtqs" - }, - { - "title": "Ariana Grande feat The Weeknd - Love Me Harder - Karaoke Version from Zoom Karaoke", - "id": "YoE7CyBO96Y" - }, - { - "title": "OMD - Souvenir - Karaoke Version from Zoom Karaoke", - "id": "XWzjX2AIOGg" - }, - { - "title": "One Direction - Steal My Girl - Karaoke Version from Zoom Karaoke", - "id": "RxH3RcjokVE" - }, - { - "title": "Magic! - Let Your Hair Down - Karaoke Version from Zoom Karaoke", - "id": "BYN8nsbXU68" - }, - { - "title": "Tom Odell - Real Love - Karaoke Version from Zoom Karaoke", - "id": "2Nfz8a4celU" - }, - { - "title": "Fine Young Cannibals - Good Thing - Karaoke Version from Zoom Karaoke", - "id": "R7EDib2-OD0" - }, - { - "title": "Ariana Grande feat Zedd - Break Free - Karaoke Version from Zoom Karaoke", - "id": "tpeV2l7UIc8" - }, - { - "title": "Freddy Fender - Before The Next Teardrop Falls - Karaoke Version from Zoom Karaoke", - "id": "djvbmvXX4rQ" - }, - { - "title": "Michael Ball - Stranger In Paradise/And This In My Beloved - Karaoke Version from Zoom Karaoke", - "id": "cki_5Ocmoow" - }, - { - "title": "Def Leppard - Hysteria - Karaoke Version from Zoom Karaoke", - "id": "ODRonxhduWc" - }, - { - "title": "Jim Croce - Time In A Bottle - Karaoke Version from Zoom Karaoke", - "id": "Kkc1paicUH4" - }, - { - "title": "Rusted Root - Send Me On My Way - Karaoke Version from Zoom Karaoke", - "id": "H1rhbDpy0UE" - }, - { - "title": "Stevie Wonder - One Little Christmas Tree - Karaoke Version from Zoom Karaoke", - "id": "DKyG2pxpb8M" - }, - { - "title": "AC/DC - Play Ball - Karaoke Version from Zoom Karaoke", - "id": "s1e_SPS_RNI" - }, - { - "title": "Fine Young Cannibals - She Drives Me Crazy - Karaoke Version from Zoom Karaoke", - "id": "sXWhh0Gej08" - }, - { - "title": "Train - Shake Up Christmas - Karaoke Version from Zoom Karaoke", - "id": "9dycDZT9nZk" - }, - { - "title": "Neil Diamond - Something Blue - Karaoke Version from Zoom Karaoke", - "id": "8v3DwFIOz-E" - }, - { - "title": "Alan Jackson - Good Time - Karaoke Version from Zoom Karaoke", - "id": "uEeTiRL0sDk" - }, - { - "title": "Genesis - Land Of Confusion - Karaoke Version from Zoom Karaoke", - "id": "jWHroALA7bI" - }, - { - "title": "Willie Nelson - City Of New Orleans - Karaoke Version from Zoom Karaoke", - "id": "gcf2JhlxHuo" - }, - { - "title": "Alan Jackson - A Million Ways To Die - Karaoke Version from Zoom Karaoke", - "id": "eC9OKF2KqSU" - }, - { - "title": "Andy Williams - It's The Most Wonderful Time Of The Year - Karaoke Version from Zoom Karaoke", - "id": "N3V0uBU8BfM" - }, - { - "title": "Alan Jackson - I Don't Even Know Your Name - Karaoke Version from Zoom Karaoke", - "id": "CdzdJ8D8NPQ" - }, - { - "title": "John Holt - You Baby - Karaoke Version from Zoom Karaoke", - "id": "5NZMAuFovvQ" - }, - { - "title": "George Jones - He Stopped Loving Her Today - Karaoke Version from Zoom Karaoke", - "id": "PXjZDqphQ0c" - }, - { - "title": "Sister Act - I Will Follow Him - Karaoke Version from Zoom Karaoke", - "id": "u-MPv2M_QD0" - }, - { - "title": "Michael Ball - This Is The Moment - Karaoke Version from Zoom Karaoke", - "id": "srqB_VFYhvE" - }, - { - "title": "Paul Young - Everytime You Go Away - Karaoke Version from Zoom Karaoke", - "id": "cbfjxRaBXxs" - }, - { - "title": "Willie Nelson - Always On My Mind - Karaoke Version from Zoom Karaoke", - "id": "_JVRVuzIKaU" - }, - { - "title": "Simply Red - Something Got Me Started (Live In Chile 2009) Karaoke Version from Zoom Karaoke", - "id": "_6E5jF3gfF4" - }, - { - "title": "The Veronicas - You Ruin Me - Karaoke Version from Zoom Karaoke", - "id": "NGuRfn0MRqY" - }, - { - "title": "Calvin Harris feat John Newman - Blame - Karaoke Version from Zoom Karaoke", - "id": "Jax7qcxJRg4" - }, - { - "title": "Etta James - Roll With Me Henry - Karaoke Version from Zoom Karaoke", - "id": "EdoGdal8drQ" - }, - { - "title": "Chris De Burgh - When I Think Of You - Karaoke Version from Zoom Karaoke", - "id": "1e36yyy9DnI" - }, - { - "title": "The Band Perry - If I Die Young - Karaoke Version from Zoom Karaoke", - "id": "1Kk9aWe-_Uo" - }, - { - "title": "The Stone Roses - Made Of Stone - Karaoke Version from Zoom Karaoke", - "id": "RxgGxinCClE" - }, - { - "title": "Charli XCX - Break The Rules - Karaoke Version from Zoom Karaoke", - "id": "ukCc0XG02gs" - }, - { - "title": "George Benson - In Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "u2RDmWAGvnw" - }, - { - "title": "Notorious BIG feat Diddy, Nelly, Jegged Edge & Avery Storm - Nasty Girl - Karaoke Version", - "id": "piEDX3hLNEU" - }, - { - "title": "Smokey Robinson - Really Gonna Miss You - Karaoke Version from Zoom Karaoke", - "id": "pZNJEl8CCQI" - }, - { - "title": "Little Shop Of Horrors - Suddenly Seymour - Karaoke Version from Zoom Karaoke", - "id": "if4rXb_bdx4" - }, - { - "title": "The Streets - Dry Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "gVZr-zu-YDc" - }, - { - "title": "Brotherhood Of Man - Oh Boy (The Mood I'm In) - Karaoke Version from Zoom Karaoke", - "id": "dtq3qImIVJE" - }, - { - "title": "Chekmate - If I Could Turn Back The Hands Of Time - Karaoke Version from Zoom Ka", - "id": "O0pOfssP_M0" - }, - { - "title": "R Dean Taylor - There's A Ghost In My House - Karaoke Version from Zoom Karaoke", - "id": "M3aUxBqeG20" - }, - { - "title": "Sister Act - Shout - Karaoke Version from Zoom Karaoke", - "id": "G6J-V5DVwgM" - }, - { - "title": "George Benson - Give Me The Night - Karaoke Version from Zoom Karaoke", - "id": "Ct9BPuH3OFE" - }, - { - "title": "Midge Ure - If I Was - Karaoke Version from Zoom Karaoke", - "id": "AQMhRPWU9v8" - }, - { - "title": "The Black Keys - Gold On The Ceiling - Karaoke Version from Zoom Karaoke", - "id": "54AUQDUqXqI" - }, - { - "title": "David Soul - Don't Give Up On Us - Karaoke Version from Zoom Karaoke", - "id": "4Uhgg7kLp5U" - }, - { - "title": "The Manic Street Preachers - If You Tolerate This Your Children Will Be Next - Karaoke Version", - "id": "QNj94xURh5Y" - }, - { - "title": "Donovan - Universal Soldier - Karaoke Version from Zoom Karaoke", - "id": "gaaoKjoqjeI" - }, - { - "title": "John Newman - Try - Karaoke Version from Zoom Karaoke", - "id": "zesdO6LxH6g" - }, - { - "title": "Olly Murs feat Demi Lovato - Up - Karaoke Version from Zoom Karaoke", - "id": "tR9W9h3Ym5g" - }, - { - "title": "Atomic Kitten - Eternal Flame - Karaoke Version from Zoom Karaoke", - "id": "jv2oxdo7-xc" - }, - { - "title": "Alan Jackson - I'll Try - Karaoke Version from Zoom Karaoke", - "id": "csiRvQw1m00" - }, - { - "title": "The Manic Street Preachers - You Stole The Sun From My Heart - Karaoke Version from Zoom Karaoke", - "id": "cmHqK3wj5IU" - }, - { - "title": "Maroon 5 - Sugar - Karaoke Version from Zoom Karaoke", - "id": "J7EbYm5zvNY" - }, - { - "title": "Ash - Shining Light - Karaoke Version from Zoom Karaoke", - "id": "GR85BIyt6kU" - }, - { - "title": "Imagine Dragons - Demons - Karaoke Version from Zoom Karaoke", - "id": "GGOyVyEqp14" - }, - { - "title": "Hairspray - You Can't Stop The Beat - Karaoke Version from Zoom Karaoke", - "id": "AI65ggHW2vM" - }, - { - "title": "Nik Kershaw - Wouldn't It Be Good - Karaoke Version from Zoom Karaoke", - "id": "6owvSBWVeaI" - }, - { - "title": "Miley Cyrus feat French Montana - FU - Karaoke Version from Zoom Karaoke", - "id": "5iwDaWvNfLw" - }, - { - "title": "Charli XCX - Doing It - Karaoke Version from Zoom Karaoke", - "id": "2O8I5ZV1SPI" - }, - { - "title": "Colbie Caillat - Try - Karaoke Version from Zoom Karaoke", - "id": "0irz5Y6h0gI" - }, - { - "title": "Whitesnake - Love Ain't No Stranger - Karaoke Version from Zoom Karaoke", - "id": "wpYycUpcoy8" - }, - { - "title": "Hairspray - I Can Hear The Bells - Karaoke Version from Zoom Karaoke", - "id": "w1czxOy-nkQ" - }, - { - "title": "Becky G - Can't Stop Dancin' - Karaoke Version from Zoom Karaoke", - "id": "lVWjnDb31EE" - }, - { - "title": "Nicki French - Total Eclipse Of The Heart - Karaoke Version from Zoom Karaoke", - "id": "kuzZnY8zSHI" - }, - { - "title": "Johnny Cash And June Carter - Long Legged Guitar Pickin' Man - Karaoke Version from Zoom Karaoke", - "id": "h5b5HWU1vCY" - }, - { - "title": "Maroon 5 - Won't Go Home Without You - Karaoke Version from Zoom Karaoke", - "id": "fwufdWu021Q" - }, - { - "title": "The Glitter Band - Goodbye My Love - Karaoke Version from Zoom Karaoke", - "id": "eMgpAIkhHEs" - }, - { - "title": "Hairspray - Good Morning Baltimore - Karaoke Version from Zoom Karaoke", - "id": "aVTRplLFido" - }, - { - "title": "Johnny Logan - Hold Me Now (2001 Remix) - Karaoke Version from Zoom Karaoke", - "id": "PUU4PNmeCIg" - }, - { - "title": "Whitesnake - Love Will Set You Free - Karaoke Version from Zoom Karaoke", - "id": "ANRD8Ru_93Y" - }, - { - "title": "Hairspray - I Can Hear The Bells Good Morning Baltimore Medley - Karaoke Version from Zoom Karaoke", - "id": "5lTb5q1XSCw" - }, - { - "title": "Olly Murs - Beautiful To Me - Karaoke Version from Zoom Karaoke", - "id": "jagdftZTmuo" - }, - { - "title": "Barbra Streisand - Memory - Karaoke Version from Zoom Karaoke", - "id": "ogrIf64AMVI" - }, - { - "title": "Def Leppard - Animal - Karaoke Version from Zoom Karaoke", - "id": "lsz22SlDEGY" - }, - { - "title": "One Direction - Spaces - Karaoke Version from Zoom Karaoke", - "id": "gscrLvlaBco" - }, - { - "title": "OneRepublic - Stop And Stare - Karaoke Version from Zoom Karaoke", - "id": "f2o8IagOtJ4" - }, - { - "title": "Westlife - World Of Our Own - Karaoke Version from Zoom Karaoke", - "id": "Z9bbUzK_shU" - }, - { - "title": "Kate Bush - This Woman's Work - Karaoke Version from Zoom Karaoke", - "id": "PkG9FFkK0lI" - }, - { - "title": "Def Leppard - Let's Get Rocked - Karaoke Version from Zoom Karaoke", - "id": "OY9M6g6M_OU" - }, - { - "title": "Demi Lovato - Let It Go - Karaoke Version from Zoom Karaoke", - "id": "CTXmSeyKfrE" - }, - { - "title": "One Direction - Where Do Broken Hearts Go - Karaoke Version from Zoom Karaoke", - "id": "yU_9rDA-gMg" - }, - { - "title": "Squeeze - Another Nail In My Heart - Karaoke Version from Zoom Karaoke", - "id": "uhP7nlFcmaM" - }, - { - "title": "The Undertones - It's Going To Happen - Karaoke Version from Zoom Karaoke", - "id": "tMUdsC5lBhw" - }, - { - "title": "INXS - Beautiful Girl - Karaoke Version from Zoom Karaoke", - "id": "qJtAFoR1JKA" - }, - { - "title": "Donny Osmond - Could She Be Mine - Karaoke Version from Zoom Karaoke", - "id": "mcLBbaUZ6As" - }, - { - "title": "Gary Barlow - Open Road - Karaoke Version from Zoom Karaoke", - "id": "lgGoZPEy_eA" - }, - { - "title": "Foreigner - Cold As Ice - Karaoke Version from Zoom Karaoke", - "id": "faPvd4w180U" - }, - { - "title": "Hinder - What Ya Gonna Do - Karaoke Version from Zoom Karaoke", - "id": "Wi1IsOldyzw" - }, - { - "title": "Mr Probz - Nothing Really Matters - Karaoke Version from Zoom Karaoke", - "id": "QVWYp9Gfa_Q" - }, - { - "title": "Maroon 5 - Goodnight Goodnight - Karaoke Version from Zoom Karaoke", - "id": "IaKjIWSMRRc" - }, - { - "title": "Fleur East - Uptown Funk - Karaoke Version from Zoom Karaoke", - "id": "CaZ-ppWOHzk" - }, - { - "title": "Labrinth - Jealous - Karaoke Version from Zoom Karaoke", - "id": "AbfIfWbwYJo" - }, - { - "title": "Bruce Springsteen - The Promised Land - Karaoke Version from Zoom Karaoke", - "id": "6hEomO8XiGE" - }, - { - "title": "George Strait - I Just Want To Dance With You - Karaoke Version from Zoom Karaoke", - "id": "3sl77lHTfJA" - }, - { - "title": "Darts - Duke Of Earl - Karaoke Version from Zoom Karaoke", - "id": "2FB0iXUn8us" - }, - { - "title": "Maroon 5 - Wake Up Call - Karaoke Version from Zoom Karaoke", - "id": "1Sxecn5mnOw" - }, - { - "title": "Sia - You're Never Fully Dressed Without A Smile - Karaoke Version from Zoom Karaoke", - "id": "0pQQ--15gDU" - }, - { - "title": "Def Leppard - Photograph - Karaoke Version from Zoom Karaoke", - "id": "0KJN6WVmsXg" - }, - { - "title": "Def Leppard - Love Bites - Karaoke Version from Zoom Karaoke", - "id": "_7J4jlnjjXY" - }, - { - "title": "One Direction - Night Changes - Karaoke Version from Zoom Karaoke", - "id": "W0rKmoMAZiE" - }, - { - "title": "Def Leppard - When Love And Hate Collide - Karaoke Version from Zoom Karaoke", - "id": "w_oyUK-tskE" - }, - { - "title": "Kaiser Chiefs - Coming Home - Karaoke Version from Zoom Karaoke", - "id": "w35zzV1tfoQ" - }, - { - "title": "One Direction - Ready To Run - Karaoke Version from Zoom Karaoke", - "id": "svDFfrLFeD4" - }, - { - "title": "The Stylistics - I'm Stone In Love With You - Karaoke Version from Zoom Karaoke", - "id": "sNfwjJW8lik" - }, - { - "title": "Etta James - I'd Rather Go Blind - Karaoke Version from Zoom Karaoke", - "id": "qxAjHqcti-0" - }, - { - "title": "Genesis - Turn It On Again - Karaoke Version from Zoom Karaoke", - "id": "iuxOY9-8xGY" - }, - { - "title": "Sheppard - Geronimo - Karaoke Version from Zoom Karaoke", - "id": "Zr4T_2-aqwM" - }, - { - "title": "Ella Henderson - Yours - Karaoke Version from Zoom Karaoke", - "id": "Ux2HgNJCyo0" - }, - { - "title": "Neil Diamond - Melody Road - Karaoke Version from Zoom Karaoke", - "id": "R4OqDYw-Vyg" - }, - { - "title": "One Direction - Clouds - Karaoke Version from Zoom Karaoke", - "id": "ItE0nMQPuTc" - }, - { - "title": "Olly Murs feat Travie McCoy - Wrapped Up With Rapper - Karaoke Version from Zoom Karaoke", - "id": "56OyWUA1Kis" - }, - { - "title": "Talk Talk - Such A Shame - Karaoke Version from Zoom Karaoke", - "id": "0KSsR50Ni7o" - }, - { - "title": "Neil Diamond - Alone At The Ball - Karaoke Version from Zoom Karaoke", - "id": "xJntvxBGuBE" - }, - { - "title": "Genesis - Abacab - Karaoke Version from Zoom Karaoke", - "id": "urdo4xsyrE0" - }, - { - "title": "Genesis - Follow You Follow Me - Karaoke Version from Zoom Karaoke", - "id": "uZfpWo4oPrU" - }, - { - "title": "McBusted - Air Guitar - Karaoke Version from Zoom Karaoke", - "id": "rLedI27MrmM" - }, - { - "title": "Sam Smith - Like I Can - Karaoke Version from Zoom Karaoke", - "id": "fRrecjM3uW0" - }, - { - "title": "Nico And Vinz - In Your Arms - Karaoke Version from Zoom Karaoke", - "id": "ZfoYsmJZ2eM" - }, - { - "title": "Fine Young Cannibals - Suspicious Minds - Karaoke Version from Zoom Karaoke", - "id": "UFiOB_tOXnQ" - }, - { - "title": "One Direction - Girl Almighty - Karaoke Version from Zoom Karaoke", - "id": "PxtRuuRGQwA" - }, - { - "title": "Neil Diamond - In Better Days - Karaoke Version from Zoom Karaoke", - "id": "M2s5fvuiVcc" - }, - { - "title": "Genesis - Mama - Karaoke Version from Zoom Karaoke", - "id": "GC08Fj0NHOg" - }, - { - "title": "One Direction - 18 - Karaoke Version from Zoom Karaoke", - "id": "FjvF8KXAVWM" - }, - { - "title": "The Stranglers - Always The Sun - Karaoke Version from Zoom Karaoke", - "id": "DXKMIon8E7c" - }, - { - "title": "Electric Light Orchestra - Rock 'N' Roll Is King - Karaoke Version from Zoom Karaoke", - "id": "9ltYtmy3PJk" - }, - { - "title": "Ben Haenow - Something I Need - Karaoke Version from Zoom Karaoke", - "id": "9J_FkkL1uX4" - }, - { - "title": "One Direction - Stockholm Syndrome - Karaoke Version from Zoom Karaoke", - "id": "5YW3Ns_1j1c" - }, - { - "title": "One Direction - Fool's Gold - Karaoke Version from Zoom Karaoke", - "id": "25xkmR-YRNo" - }, - { - "title": "Cheryl - Only Human - Karaoke Version from Zoom Karaoke", - "id": "_FSI18yiyb4" - }, - { - "title": "Eric Clapton - Change The World - Karaoke Version from Zoom Karaoke", - "id": "q5KVTn79gZY" - }, - { - "title": "The Carpenters - Calling Occupants Of Interplanetary Craft - Karaoke Version from Zoom Karaoke", - "id": "pjUxSXygo-0" - }, - { - "title": "Eric Clapton - Lay Down Sally - Karaoke Version from Zoom Karaoke", - "id": "m_TUunNsxk4" - }, - { - "title": "Olly Murs - Seasons - Karaoke Version from Zoom Karaoke", - "id": "kyhxRJLq5NI" - }, - { - "title": "Genesis - Tonight Tonight Tonight - Karaoke Version from Zoom Karaoke", - "id": "cZTJWG5UIQY" - }, - { - "title": "Robin Beck - First Time - Karaoke Version from Zoom Karaoke", - "id": "aT41xhUk-v8" - }, - { - "title": "Chris De Burgh - Missing You - Karaoke Version from Zoom Karaoke", - "id": "_Df-PDhVOHc" - }, - { - "title": "Sam Smith - Lay Me Down - Karaoke Version from Zoom Karaoke", - "id": "Y3xN6kp7f4k" - }, - { - "title": "John Holt - Morning Of My Life - Karaoke Version from Zoom Karaoke", - "id": "UeDwaLVr3q4" - }, - { - "title": "David Guetta feat Emeli Sande - What I Did For Love - Karaoke Version from Zoom Karaoke", - "id": "NwtRdZ1T4sw" - }, - { - "title": "Bros - I Owe You Nothing - Karaoke Version from Zoom Karaoke", - "id": "IKN7PTy9lyk" - }, - { - "title": "Queens Of The Stone Age - Sick Sick Sick - Karaoke Version from Zoom Karaoke", - "id": "BK6WSamuA_0" - }, - { - "title": "Alan Jackson - Look At Me - Karaoke Version from Zoom Karaoke", - "id": "6KomhpJ1Ds4" - }, - { - "title": "Sam Smith And John Legend - Lay Me Down - Karaoke Version from Zoom Karaoke", - "id": "sT_VVwEfh0E" - }, - { - "title": "Rihanna feat Kanye West and Paul McCartney - FourFiveSeconds - Karaoke Version from Zoom", - "id": "q-znosiclbE" - }, - { - "title": "Eric Clapton - Bad Love - Karaoke Version from Zoom Karaoke", - "id": "oKlJRYqgmbI" - }, - { - "title": "Boris Gardiner - I Wanna Wake Up With You - Karaoke Version from Zoom Karaoke", - "id": "lXqSMGWQcuo" - }, - { - "title": "Alan Jackson - Little Bitty - Karaoke Version from Zoom Karaoke", - "id": "flbHldMvIH8" - }, - { - "title": "Eric Clapton - Cocaine - Karaoke Version from Zoom Karaoke", - "id": "cfRuEX9tlAE" - }, - { - "title": "Barry Howard - Percy The Pixie - Karaoke Version from Zoom Karaoke", - "id": "ZBbRZ6cfQ6Y" - }, - { - "title": "Barry Manilow - The Old Songs - Karaoke Version from Zoom Karaoke", - "id": "T3qfqF17rXA" - }, - { - "title": "Take That - Let In The Sun - Karaoke Version from Zoom Karaoke", - "id": "Pc3zVBXTV_8" - }, - { - "title": "Slade - Take Me Bak 'Ome - Karaoke Version from Zoom Karaoke", - "id": "PMPVrho1Gck" - }, - { - "title": "Michael McDonald - Sweet Freedom - Karaoke Version from Zoom Karaoke", - "id": "KDNRWSDJxYk" - }, - { - "title": "Ed Sheeran - Photograph - Karaoke Version from Zoom Karaoke", - "id": "5laCXBlXNkk" - }, - { - "title": "Marianas Trench - Celebrity Status - Karaoke Version from Zoom Karaoke", - "id": "4YSTTNzqahg" - }, - { - "title": "Marlon Roudette - When The Beat Drops Out - Karaoke Version from Zoom Karaoke", - "id": "UtV-_kCsq_U" - }, - { - "title": "Eric Clapton - I Shot The Sheriff - Karaoke Version from Zoom Karaoke", - "id": "pnT9ZltHtf8" - }, - { - "title": "The Doobie Brothers - What A Fool Believes - Karaoke Version from Zoom Karaoke", - "id": "BIcGDrD-9Oc" - }, - { - "title": "Climie Fisher - Love Changes (Everything) - Karaoke Version from Zoom Karaoke", - "id": "reRfxzsUmeo" - }, - { - "title": "Erasure - Dead Of Night - Karaoke Version from Zoom Karaoke", - "id": "kVCNP6d30lM" - }, - { - "title": "Klaxons - Atlantis To Interzone - Karaoke Version from Zoom Karaoke", - "id": "jcdJ4mzvB8o" - }, - { - "title": "The Carpenters - There's A Kind Of Hush - Karaoke Version from Zoom Karaoke", - "id": "emNA-5NBymk" - }, - { - "title": "James Bay - Hold Back The River - Karaoke Version from Zoom Karaoke", - "id": "_zRKhR7ndKk" - }, - { - "title": "Secret Affair - My World/Time For Action (Medley) - Karaoke Version from Zoom Karaoke", - "id": "Z1Ur7Ka6LJE" - }, - { - "title": "Smash Cast - Don't Forget Me - Karaoke Version from Zoom Karaoke", - "id": "UPZxRm4tQN4" - }, - { - "title": "Genesis - Jesus He Knows Me - Karaoke Version from Zoom Karaoke", - "id": "OjyLMU5KSJo" - }, - { - "title": "McBusted - Get Over It - Karaoke Version from Zoom Karaoke", - "id": "FABeV7j3h6o" - }, - { - "title": "Genesis - In Too Deep - Karaoke Version from Zoom Karaoke", - "id": "DfrKJ9ftpxc" - }, - { - "title": "The Weeknd - Earned It - Karaoke Version from Zoom Karaoke", - "id": "0sfQCoGvIcw" - }, - { - "title": "Joan Armatrading - Drop The Pilot - Karaoke Version from Zoom Karaoke", - "id": "-zQ6_QTsDng" - }, - { - "title": "Victoria Wood - The Ballad Of Barry And Freda (Let's Do It) - Karaoke Version from Zoom Karaoke", - "id": "-0B38FPZOTU" - }, - { - "title": "The Beautiful South - Pretenders To The Throne - Karaoke Version from Zoom Karaoke", - "id": "_hWUqPtCtKw" - }, - { - "title": "Ella Henderson - Mirror Man Karaoke Version from Zoom Karaoke", - "id": "Tzi3mDyn4ns" - }, - { - "title": "Ellie Goulding - Love Me Like You Do - Karaoke Version from Zoom Karaoke", - "id": "M2z1bDi8ZvU" - }, - { - "title": "Dolly Parton - Blue Smoke - Karaoke Version from Zoom Karaoke", - "id": "zu-BnXAGta4" - }, - { - "title": "Aswad - Don't Turn Around - Karaoke Version from Zoom Karaoke", - "id": "tlQOU0ZGQA4" - }, - { - "title": "Queen - The Queen Medley 3 - Karaoke Version from Zoom Karaoke", - "id": "pXe4l-M1MkM" - }, - { - "title": "Oasis - Cast No Shadow - Karaoke Version from Zoom Karaoke", - "id": "k-bN5NYgbnc" - }, - { - "title": "OneRepublic - I Lived - Karaoke Version from Zoom Karaoke", - "id": "iIgJUOXrjGA" - }, - { - "title": "Cbeebies - The Bedtime Song - Karaoke Version from Zoom Karaoke", - "id": "bL2MftEtkM4" - }, - { - "title": "Renaissance - Northern Lights - Karaoke Version from Zoom Karaoke", - "id": "YgAZGX20328" - }, - { - "title": "Queens Of The Stone Age - Go With The Flow - Karaoke Version from Zoom Karaoke", - "id": "YY1sNVGSuOM" - }, - { - "title": "The Carpenters - Solitaire - Karaoke Version from Zoom Karaoke", - "id": "B9JNgiYAuYk" - }, - { - "title": "Wicked Soundtrack - As Long As You're Mine - Karaoke Version from Zoom Karaoke", - "id": "98uMcNAh4LU" - }, - { - "title": "Eric Clapton - Promises - Karaoke Version from Zoom Karaoke", - "id": "1zAVZ_OK6vo" - }, - { - "title": "The Manic Street Preachers - The Masses Against The Classes - Karaoke Version from Zoom Karaoke", - "id": "wSopslygLdo" - }, - { - "title": "Flying Pickets - Only You - Karaoke Version from Zoom Karaoke", - "id": "qxNsPp-rwYg" - }, - { - "title": "Jessie J - Sweet Talker - Karaoke Version from Zoom Karaoke", - "id": "imOOUMF8G_Q" - }, - { - "title": "The Manic Street Preachers - The Love Of Richard Nixon - Karaoke Version from Zoom Karaoke", - "id": "a_josspECqs" - }, - { - "title": "Klaxons - It's Not Over Yet - Karaoke Version from Zoom Karaoke", - "id": "TqJn9KeoMH4" - }, - { - "title": "Smash Cast - Let Me Be Your Star - Karaoke Version from Zoom Karaoke", - "id": "SDAuZBEFGJg" - }, - { - "title": "Foreigner - Juke Box Hero - Karaoke Version from Zoom Karaoke", - "id": "AqvfKhdFG6w" - }, - { - "title": "Foreigner - Hot Blooded - Karaoke Version from Zoom Karaoke", - "id": "84P8rRfTloI" - }, - { - "title": "George Ezra - Cassy O' - Karaoke Version from Zoom Karaoke", - "id": "76SqpiaBxJs" - }, - { - "title": "Take That - Get Ready For It - Karaoke Version from Zoom Karaoke", - "id": "yj7xd9SAbTs" - }, - { - "title": "Genesis - Throwing It All Away - Karaoke Version from Zoom Karaoke", - "id": "xqKMbizAtE8" - }, - { - "title": "Fiddler's Dram - Day Trip To Bangor - Karaoke Version from Zoom Karaoke", - "id": "lE-Dy7KVMsY" - }, - { - "title": "Pulp - Mile End - Karaoke Version from Zoom Karaoke", - "id": "Ud6pNkCak6c" - }, - { - "title": "Jessie J - Masterpiece - Karaoke Version from Zoom Karaoke", - "id": "QsExkp9wsc4" - }, - { - "title": "Genesis - No Son Of Mine - Karaoke Version from Zoom Karaoke", - "id": "I7Q2EQ1pZfs" - }, - { - "title": "Foreigner - Double Vision - Karaoke Version from Zoom Karaoke", - "id": "HLI5Nx_lQ_8" - }, - { - "title": "Selena Gomez - The Heart Wants What It Wants - Karaoke Version from Zoom Karaoke", - "id": "z4jwQW68Q74" - }, - { - "title": "The Carpenters - Can't Smile Without You - Karaoke Version from Zoom Karaoke", - "id": "ab5pMUd9QeQ" - }, - { - "title": "The Manic Street Preachers - Everything Must Go - Karaoke Version from Zoom Karaoke", - "id": "B6VoiFnZF0Q" - }, - { - "title": "Hozier - Take Me To Church - Karaoke Version from Zoom Karaoke", - "id": "jqNxCqxDg64" - }, - { - "title": "Klaxons - Golden Skans - Karaoke Version from Zoom Karaoke", - "id": "bIEIAhcLrUc" - }, - { - "title": "Stan Bush - The Touch - Karaoke Version from Zoom Karaoke", - "id": "_vI3wLTzkHY" - }, - { - "title": "Alan Jackson - Home - Karaoke Version from Zoom Karaoke", - "id": "_n0-SlNnyTU" - }, - { - "title": "Thompson Twins - Hold Me Now - Karaoke Version from Zoom Karaoke", - "id": "Rp5TD4Wl4QY" - }, - { - "title": "Jess Glynne - Hold My Hand - Karaoke Version from Zoom Karaoke", - "id": "Fd3gaZid2CA" - }, - { - "title": "Imagine Dragons - I Bet My Life - Karaoke Version from Zoom Karaoke", - "id": "En7rPb2W2r4" - }, - { - "title": "The Manic Street Preachers - Empty Souls - Karaoke Version from Zoom Karaoke", - "id": "ETxvmG4qVp4" - }, - { - "title": "Michael Bolton - A Time For Letting Go - Karaoke Version from Zoom Karaoke", - "id": "DgtjTnGJ6Ks" - }, - { - "title": "Crash Test Dummies - Superman's Song - Karaoke Version from Zoom Karaoke", - "id": "4nyh47o_nws" - }, - { - "title": "Kristin Chenoweth - Taylor The Latte Boy - Karaoke Version from Zoom Karaoke", - "id": "1FPtHGNR9oA" - }, - { - "title": "Bonnie Tyler + Todd Rundgren - Loving You's A Dirty Job But Somebody's Gotta Do It - Karaoke Version", - "id": "JT9raKBko-0" - }, - { - "title": "Jim Reeves - Dear Hearts And Gentle People - Karaoke Version from Zoom Karaoke", - "id": "k_RFP3ikK7Q" - }, - { - "title": "Aretha Franklin - You Make Me Feel Like A Natural Woman - Karaoke Version from Zoom Karaok", - "id": "ElydQilrvHQ" - }, - { - "title": "The Seahorses - Blinded By The Sun - Karaoke Version from Zoom Karaoke", - "id": "zuiIvBXVSXw" - }, - { - "title": "Bing Crosby - Winter Wonderland - Karaoke Version from Zoom Karaoke", - "id": "dIkK0vh9EV4" - }, - { - "title": "Brenda Russell - Piano In The Dark - Karaoke Version from Zoom Karaoke", - "id": "URtpUryEbDs" - }, - { - "title": "The Dooleys - Love Of My Life - Karaoke Version from Zoom Karaoke", - "id": "FUd7DjVwDnE" - }, - { - "title": "Frankie Miller - Caledonia - Karaoke Version from Zoom Karaoke", - "id": "E_xpBOh7XXU" - }, - { - "title": "Lunchmoney Lewis - Bills - Karaoke Version from Zoom Karaoke", - "id": "oQbqZ5DXjdE" - }, - { - "title": "Patsy Cline - She's Got You - Karaoke Version from Zoom Karaoke", - "id": "yqWych0u1T0" - }, - { - "title": "10cc - I'm Mandy, Fly Me - Karaoke Version from Zoom Karaoke", - "id": "xbTSWzggHnY" - }, - { - "title": "Baddiel And Skinner And The Lightning Seeds - Three Lions - Karaoke Version from Zoom Karaoke", - "id": "1RLT2euRWho" - }, - { - "title": "Modjo - Lady (Hear Me Tonight) - Karaoke Version from Zoom Karaoke", - "id": "kR5EkVpOLQQ" - }, - { - "title": "will.i.am - Bang Bang - Karaoke Version from Zoom Karaoke", - "id": "ySFzBf4OycY" - }, - { - "title": "Michael Bolton - How Am I Supposed To Live Without You - Karaoke Version from Zoom Karaoke", - "id": "xN4i4Yg-rsI" - }, - { - "title": "John Holt - Stoned Out Of My Mind - Karaoke Version from Zoom Karaoke", - "id": "ub0vuojkJN8" - }, - { - "title": "Fleet Foxes - Mykonos - Karaoke Version from Zoom Karaoke", - "id": "uISwrV9EITs" - }, - { - "title": "Alan Jackson - Right On The Money - Karaoke Version from Zoom Karaoke", - "id": "rH1OmYQfF54" - }, - { - "title": "George Ezra - Listen To The Man - Karaoke Version from Zoom Karaoke", - "id": "m_4qsizYcS4" - }, - { - "title": "Jim Reeves - Silver Bells - Karaoke Version from Zoom Karaoke", - "id": "eUoALU3ajb0" - }, - { - "title": "Muse - Psycho - Karaoke Version from Zoom Karaoke", - "id": "XgsiHPlcwEg" - }, - { - "title": "The Levellers - What A Beautiful Day - Karaoke Version from Zoom Karaoke", - "id": "Wc6Y5rNH-fU" - }, - { - "title": "Celine Dion - The Colour Of My Love - Karaoke Version from Zoom Karaoke", - "id": "K6oeKRc3d68" - }, - { - "title": "Mary Poppins - Supercalifragilisticexpialidocious - Karaoke Version from Zoom Karaoke", - "id": "J6MPIcWOMnQ" - }, - { - "title": "Backstreet Boys - In A World Like This - Karaoke Version from Zoom Karaoke", - "id": "5zQpGK9cgZU" - }, - { - "title": "Kasabian - Eez Eh - Karaoke Version from Zoom Karaoke", - "id": "pQ52vDq4JBM" - }, - { - "title": "Clean Bandit - Stronger - Karaoke Version from Zoom Karaoke", - "id": "kNXYlmkJEUo" - }, - { - "title": "John Holt - Never Never Never - Karaoke Version from Zoom Karaoke", - "id": "ieNlY9xgDWw" - }, - { - "title": "Johnny Mathis - Have Yourself A Merry Little Christmas - Karaoke Version from Zoom Karaoke", - "id": "_ITl-qrH2lo" - }, - { - "title": "Nicki Minaj - The Night Is Still Young - Karaoke Version from Zoom Karaoke", - "id": "YDhNuKj8saE" - }, - { - "title": "Alan Jackson - 1976 - Karaoke Version from Zoom Karaoke", - "id": "RI80zbyJiBA" - }, - { - "title": "The Village People - Macho Man - Karaoke Version from Zoom Karaoke", - "id": "R3vhWCjDje8" - }, - { - "title": "Zedd feat Selena Gomez - I Want You To Know - Karaoke Version from Zoom Karaoke", - "id": "QWz_2p6JwlQ" - }, - { - "title": "Nick Jonas - Jealous - Karaoke Version from Zoom Karaoke", - "id": "Hekce91MdEU" - }, - { - "title": "Lawson - Roads - Karaoke Version from Zoom Karaoke", - "id": "B54_ap345Aw" - }, - { - "title": "Westlife - I'll See You Again - Karaoke Version from Zoom Karaoke", - "id": "6k-kKNnv_T4" - }, - { - "title": "John Holt - Mr Bojangles - Karaoke Version from Zoom Karaoke", - "id": "4GRDMIMm4E0" - }, - { - "title": "Union J - You Got It All - Karaoke Version from Zoom Karaoke", - "id": "0wi3ZqvTrC0" - }, - { - "title": "The Sound Of Music - My Favourite Things - Karaoke Version from Zoom Karaoke", - "id": "0PvFF0mvAFQ" - }, - { - "title": "Ed Sheeran And Rudimental - Bloodstream - Karaoke Version from Zoom Karaoke", - "id": "KU6rRtUJbbA" - }, - { - "title": "101 Dalmatians - Cruella De Vil - Karaoke Version from Zoom Karaoke", - "id": "2ZTBirA0F9I" - }, - { - "title": "The Spice Girls - Say You'll Be There - Karaoke Version from Zoom Karaoke", - "id": "yskiMfXRtL4" - }, - { - "title": "Carly Rae Jepsen - I Really Like You - Karaoke Version from Zoom Karaoke", - "id": "vsfXOqIIVaA" - }, - { - "title": "Jennifer Hudson - And I Am Telling You I'm Not Going - Karaoke Version from Zoom Karaoke", - "id": "tnKskbbq6gs" - }, - { - "title": "Ricky Martin - She Bangs - Karaoke Version from Zoom Karaoke", - "id": "kqICcwPoYp8" - }, - { - "title": "Calvin Harris feat Ellie Goulding - Outside - Karaoke Version from Zoom Karaoke", - "id": "g3zF-qLYjMw" - }, - { - "title": "Meghan Trainor - Dear Future Husband - Karaoke Version from Zoom Karaoke", - "id": "c6b7T1kOADo" - }, - { - "title": "Smokie feat Roy Chubby Brown - Who The F**k Is Alice - Karaoke Version", - "id": "T-4jC1sjXW0" - }, - { - "title": "The Move - Night Of Fear - Karaoke Version from Zoom Karaoke", - "id": "Qv4K9Hiyqpw" - }, - { - "title": "Alan Jackson - Who's Cheatin' Who - Karaoke Version from Zoom Karaoke", - "id": "O56ZGAjRj88" - }, - { - "title": "NWA - Express Yourself - Karaoke Version from Zoom Karaoke", - "id": "MvftVMum4ls" - }, - { - "title": "Anita Baker - You Bring Me Joy - Karaoke Version from Zoom Karaoke", - "id": "DZKOm_3UvhQ" - }, - { - "title": "Ned Miller - From A Jack To A King - Karaoke Version from Zoom Karaoke", - "id": "w3k9ZAMwBME" - }, - { - "title": "Oasis - Some Might Say - Karaoke Version from Zoom Karaoke", - "id": "ywFde5avGdY" - }, - { - "title": "Queens Of The Stone Age - Make It Wit Chu - Karaoke Version from Zoom Karaoke", - "id": "sGNtMY4_tdQ" - }, - { - "title": "Ed Sheeran - I'm A Mess - Karaoke Version from Zoom Karaoke", - "id": "okeYzYLelcc" - }, - { - "title": "The Carpenters - Happy - Karaoke Version from Zoom Karaoke", - "id": "eZZHpZga7uA" - }, - { - "title": "John Holt - The Girl From Ipanema - Karaoke Version from Zoom Karaoke", - "id": "e9CuR57-1CI" - }, - { - "title": "The Detroit Spinners - Working My Way Back To You - Karaoke Version from Zoom Karaoke", - "id": "e5YKVFlQEWc" - }, - { - "title": "George Ezra - Blame It On Me - Karaoke Version from Zoom Karaoke", - "id": "ViLzf52EBzw" - }, - { - "title": "Marianas Trench - Haven't Had Enough - Karaoke Version from Zoom Karaoke", - "id": "UO-h5Al4-k4" - }, - { - "title": "Regina Belle - Baby Come To Me - Karaoke Version from Zoom Karaoke", - "id": "JAzqVKsKIsc" - }, - { - "title": "John Holt - Which Way You Going Baby - Karaoke Version from Zoom Karaoke", - "id": "Fr417sesxFs" - }, - { - "title": "John Parr - St Elmo's Fire (Man In Motion) - Karaoke Version from Zoom Karaoke", - "id": "-MoUa3FTFeA" - }, - { - "title": "Judy Collins - Both Sides Now - Karaoke Version from Zoom Karaoke", - "id": "z3CYLZ1_q2g" - }, - { - "title": "James Brown - Get Up (I Feel Like Being A) Sex Machine - Karaoke Version from Zoom Karaoke", - "id": "VZipcse3m8s" - }, - { - "title": "Gossip - Move In The Right Direction - Karaoke Version from Zoom Karaoke", - "id": "S2lMw1138vk" - }, - { - "title": "A Tribe Called Quest - Can I Kick It - Karaoke Version from Zoom Karaoke", - "id": "Q7la7hRcCtY" - }, - { - "title": "The Script - Man On A Wire - Karaoke Version from Zoom Karaoke", - "id": "61aKvWwtvvA" - }, - { - "title": "Vance Joy - Riptide - Karaoke Version from Zoom Karaoke", - "id": "0RZjBAwG9nQ" - }, - { - "title": "Manic Street Preachers feat Traci Lords - Little Baby Nothing - Karaoke Version from Zoom", - "id": "vdD76M6uzk4" - }, - { - "title": "Alan Jackson - There Goes - Karaoke Version from Zoom Karaoke", - "id": "vbUpRb3Qx-g" - }, - { - "title": "John Holt - Killing Me Softly - Karaoke Version from Zoom Karaoke", - "id": "sqqm95eii2k" - }, - { - "title": "Patsy Cline - Your Cheatin' Heart - Karaoke Version from Zoom Karaoke", - "id": "ozchHLKhgNQ" - }, - { - "title": "Foreigner - Say You Will - Karaoke Version from Zoom Karaoke", - "id": "oU_zZpaTGAM" - }, - { - "title": "Queens Of The Stone Age - 3's And 7's - Karaoke Version from Zoom Karaoke", - "id": "XnqH42DM28w" - }, - { - "title": "Ice Cube - It Was A Good Day - Karaoke Version from Zoom Karaoke", - "id": "VZk7YtBdwZg" - }, - { - "title": "Queens Of The Stone Age - Little Sister - Karaoke Version from Zoom Karaoke", - "id": "LHPjxdGEXFg" - }, - { - "title": "Eric Clapton - My Father's Eyes - Karaoke Version from Zoom Karaoke", - "id": "9rzq0uaNVpE" - }, - { - "title": "Madcon - Beggin' - Karaoke Version from Zoom Karaoke", - "id": "1Z2IPXR1E94" - }, - { - "title": "Alesso feat Roy English - Cool - Karaoke Version from Zoom Karaoke", - "id": "-wDpPXOkwQ4" - }, - { - "title": "The Village People - Sex Over The Phone - Karaoke Version from Zoom Karaoke", - "id": "QqxjOWxA7Rg" - }, - { - "title": "Cliff Richard - The Cliff Richard Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "D0OaInmrcHE" - }, - { - "title": "Cliff Richard - The Cliff Richard Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "thx-jp9WYVM" - }, - { - "title": "Sydney Youngblood - Sit And Wait - Karaoke Version from Zoom Karaoke", - "id": "dEL7665ausg" - }, - { - "title": "Alan Jackson - It Must Be Love - Karaoke Version from Zoom Karaoke", - "id": "cbxM-frm__I" - }, - { - "title": "Bobbie Gentry - Ode To Billie Joe - Karaoke Version from Zoom Karaoke", - "id": "cIaSna78HK8" - }, - { - "title": "Mike And The Mechanics - Silent Running - Karaoke Version from Zoom Karaoke", - "id": "QlUlHEyZFkc" - }, - { - "title": "Lost Frequencies - Are You With Me - Karaoke Version from Zoom Karaoke", - "id": "LK-uU5RDI74" - }, - { - "title": "Barbra Streisand - Somewhere - Karaoke Version from Zoom Karaoke", - "id": "KVQ4QYahnYc" - }, - { - "title": "Jesse McCartney - Just So You Know - Karaoke Version from Zoom Karaoke", - "id": "5LUy2Cz5-ks" - }, - { - "title": "Robin Schulz feat Jasmine Thompson - Sun Goes Down - Karaoke Version from Zoom Karaoke", - "id": "zUla-EVWyMc" - }, - { - "title": "Kacey Musgraves - High Time - Karaoke Version from Zoom Karaoke", - "id": "ltYVftTzjWA" - }, - { - "title": "John Denver - Sunshine On My Shoulders - Karaoke Version from Zoom Karaoke", - "id": "k_jITVAW-js" - }, - { - "title": "Rita Ora - Poison - Karaoke Version from Zoom Karaoke", - "id": "k0m652YSewA" - }, - { - "title": "The Charlie Daniels Band - The Devil Went Down To Georgia - Karaoke Version from Zoom Karaoke", - "id": "eH4pkOBV9w8" - }, - { - "title": "Charlie Puth feat Meghan Trainor - Marvin Gaye - Karaoke Version From Zoom Karaoke", - "id": "X8XT9U_jN4Y" - }, - { - "title": "Darius Rucker - Wagon Wheel - Karaoke Version from Zoom Karaoke", - "id": "X3DnqOWxPq4" - }, - { - "title": "Sugababes - Too Lost In You - Karaoke Version from Zoom Karaoke", - "id": "WS1qPQDj5YM" - }, - { - "title": "Charlie Puth feat Meghan Trainor - Marvin Gaye - Karaoke Version from Zoom Karaoke", - "id": "KevhorYW-I8" - }, - { - "title": "Donovan - Catch The Wind - Karaoke Version from Zoom Karaoke", - "id": "FfKv2yZeOUQ" - }, - { - "title": "Bob Dylan - It Ain't Me Babe - Karaoke Version from Zoom Karaoke", - "id": "3JLjLU7eeUk" - }, - { - "title": "Perry Como - Hello Young Lovers - Karaoke Version from Zoom Karaoke", - "id": "2cPpCj6KAUQ" - }, - { - "title": "Mari Wilson - Just What I Always Wanted - Karaoke Version from Zoom Karaoke", - "id": "Uj8x_qPWkdQ" - }, - { - "title": "Blur - Coffee And TV - Karaoke Version from Zoom Karaoke", - "id": "QuwXwzU1GbA" - }, - { - "title": "BJ Thomas - Hooked On A Feeling - Karaoke Version from Zoom Karaoke", - "id": "-M-dJfhFUo8" - }, - { - "title": "Kate Bush - Cloudbusting - Karaoke Version from Zoom Karaoke", - "id": "t-2T1rbjWS8" - }, - { - "title": "Status Quo - The Anniversary Waltz (Part 1) - Karaoke Version from Zoom Karaoke", - "id": "PXXg-Kqlt3w" - }, - { - "title": "Eric Clapton - Layla - Karaoke Version from Zoom Karaoke", - "id": "KQdyx9as_qY" - }, - { - "title": "Dennis Waterman - It's Alright (Theme from New Tricks) - Karaoke Version from Zoom Karaoke", - "id": "JFxTMXAiuHU" - }, - { - "title": "Bob Dylan - Positively 4th Street - Karaoke Version from Zoom Karaoke", - "id": "HYBWHwcrnj0" - }, - { - "title": "Joni Mitchell - Both Sides Now (2000 Version) - Karaoke Version from Zoom Karaoke", - "id": "G9IOgJxrD9A" - }, - { - "title": "Johnny Cash - Cocaine Blues - Karaoke Version from Zoom Karaoke", - "id": "BI01jRjLVao" - }, - { - "title": "Herb Alpert - This Guy's In Love With You - Karaoke Version from Zoom Karaoke", - "id": "A88Sq7ryK1g" - }, - { - "title": "Tinie Tempah feat Jess Glynne - Not Letting Go - Karaoke Version from Zoom Karaoke", - "id": "5PTuqJFyB48" - }, - { - "title": "Rockwell - Somebody's Watching Me - Karaoke Version from Zoom Karaoke", - "id": "5HNaadukctM" - }, - { - "title": "The Pet Shop Boys - Heart - Karaoke Version from Zoom Karaoke", - "id": "1IW58LQAopQ" - }, - { - "title": "Bing Crosby And David Bowie - Peace On Earth/Little Drummer Boy - Karaoke Version from Zoom Karaoke", - "id": "-kAt26caYMw" - }, - { - "title": "Charli XCX - Famous - Karaoke Version from Zoom Karaoke", - "id": "xP_LYA6Yq3E" - }, - { - "title": "Natalie La Rose feat Jeremih - Somebody - Karaoke Version from Zoom Karaoke", - "id": "otduP1MX2So" - }, - { - "title": "Des'ree - You Gotta Be - Karaoke Version from Zoom Karaoke", - "id": "kntHrvNPr0Y" - }, - { - "title": "Kris Kristofferson - Me And Bobby McGee - Karaoke Version from Zoom Karaoke", - "id": "eQu082mv8ek" - }, - { - "title": "The Isley Brothers - Harvest For The World - Karaoke Version from Zoom Karaoke", - "id": "aRZB6Q0dMKg" - }, - { - "title": "Kodaline - The One - Karaoke Version from Zoom Karaoke", - "id": "_BgIUoeT3No" - }, - { - "title": "June Lodge feat Prince Mohammed - Someone Loves You Honey - Karaoke Version from Zoom Karaoke", - "id": "Zv6w3Rbh-DY" - }, - { - "title": "Queen - The Queen Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "VPVIWS7ZSQM" - }, - { - "title": "Jason Derulo - Want To Want Me - Karaoke Version from Zoom Karaoke", - "id": "UmJ5ZxKPOQs" - }, - { - "title": "Gorgon City feat Jennifer Hudson - Go All Night - Karaoke Version from Zoom Karaoke", - "id": "UMpOAT5eG0U" - }, - { - "title": "The Saw Doctors - N17 - Karaoke Version from Zoom Karaoke", - "id": "Rei22CYYmpI" - }, - { - "title": "Leonard Cohen - So Long Marianne - Karaoke Version from Zoom Karaoke", - "id": "LZaa1IaGdRE" - }, - { - "title": "New Order - World In Motion - Karaoke Version from Zoom Karaoke", - "id": "BfMLRNYaFb0" - }, - { - "title": "Radiohead - Paranoid Android - Karaoke Version from Zoom Karaoke", - "id": "6kVLurOHmHw" - }, - { - "title": "Bill Medley And Jennifer Warnes - I've Had The Time Of My Life (For Solo Male) - Karaoke Version", - "id": "2jhblQNrgNI" - }, - { - "title": "Alison Moyet - Love Resurrection - Karaoke Version from Zoom Karaoke", - "id": "vfNWaUOox2A" - }, - { - "title": "Cliff Richard - The Cliff Richard Medley 3 - Karaoke Version from Zoom Karaoke", - "id": "ZYQu3XJyIPg" - }, - { - "title": "The Vamps feat Demi Lovato - Somebody To You - Karaoke Version from Zoom Karaoke", - "id": "G18b8aE-U4U" - }, - { - "title": "The Stone Roses - Bye Bye Badman - Karaoke Version from Zoom Karaoke", - "id": "3jz1W6mHcxc" - }, - { - "title": "BJ Thomas - Raindrops Keep Fallin' On My Head - Karaoke Version from Zoom Karaoke", - "id": "0JRdYhi460A" - }, - { - "title": "Happy Mondays - Kinky Afro - Karaoke Version from Zoom Karaoke", - "id": "vrEEug13Suc" - }, - { - "title": "Alan Jackson - Between The Devil And Me - Karaoke Version from Zoom Karaoke", - "id": "vG5nBTBlPrg" - }, - { - "title": "Survivor - Man Against The World - Karaoke Version from Zoom Karaoke", - "id": "qJ1CTx6KKf8" - }, - { - "title": "Smokie - The Classic Hits Medley - Karaoke Version from Zoom Karaoke", - "id": "ny7dc26vQNA" - }, - { - "title": "Florence And The Machine - Ship To Wreck - Karaoke Version from Zoom Karaoke", - "id": "cbZMwMguZ18" - }, - { - "title": "Carlene Davis - Stealing Love On The Side - Karaoke Version from Zoom Karaoke", - "id": "bcxNxWc9KMI" - }, - { - "title": "The Rolling Stones - Route 66 - Karaoke Version from Zoom Karaoke", - "id": "au_23ZyY3eg" - }, - { - "title": "Cynthia Schloss - Sad Movies (Make Me Cry) - Karaoke Version from Zoom Karaoke", - "id": "VjehW3RCM2g" - }, - { - "title": "Conway Twitty - It's Only Make Believe - Karaoke Version from Zoom Karaoke", - "id": "VTrH38Y3XOA" - }, - { - "title": "Dusty Springfield - If You Go Away - Karaoke Version from Zoom Karaoke", - "id": "VACiGrQBghw" - }, - { - "title": "Jahmene Douglas - Titanium - Karaoke Version from Zoom Karaoke", - "id": "SvhR6ugJ3Rk" - }, - { - "title": "UB40 - Impossible Love - Karaoke Version from Zoom Karaoke", - "id": "Px2legJZCLk" - }, - { - "title": "T. Rex - Telegram Sam - Karaoke Version from Zoom Karaoke", - "id": "E3GoAFgLGOQ" - }, - { - "title": "Judas Priest - The Green Manalishi With The Two Pronged Crown - Karaoke Version from Zoom", - "id": "DAww39di36c" - }, - { - "title": "Gorillaz - Feel Good Inc - Karaoke Version from Zoom Karaoke", - "id": "CnU4VrbhZuc" - }, - { - "title": "The Levellers - One Way - Karaoke Version from Zoom Karaoke", - "id": "BMVQ0BIAMkA" - }, - { - "title": "Cliff Richard - The Cliff Richard Medley 4 - Karaoke Version from Zoom Karaoke", - "id": "AfHuk_uEujQ" - }, - { - "title": "Bobby Darin - Eighteen Yellow Roses - Karaoke Version from Zoom Karaoke", - "id": "AFHJutrMZQY" - }, - { - "title": "Nina Simone - Feeling Good - Karaoke Version from Zoom Karaoke", - "id": "9uyjRpmfsU0" - }, - { - "title": "Roy Orbison - The Roy Orbison Medley 1 - Karaoke Version from Zoom Karaoke", - "id": "7HT7v4ewtVA" - }, - { - "title": "Michael Bolton - Said I Loved You But I Lied - Karaoke Version from Zoom Karaoke", - "id": "3HnJv58VK7E" - }, - { - "title": "Ed Sheeran - I See Fire - Karaoke Version from Zoom Karaoke", - "id": "09q2z6Gs0Go" - }, - { - "title": "Roy Orbison - The Roy Orbison Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "-QYkTuXQhd4" - }, - { - "title": "My Chemical Romance - Summertime - Karaoke Version from Zoom Karaoke", - "id": "-Htz0CpHgJ0" - }, - { - "title": "Sigala - Easy Love - Karaoke Version from Zoom Karaoke", - "id": "nwrsPd6xkpM" - }, - { - "title": "Isaac Hayes - Chocolate Salty Balls - Karaoke Version from Zoom Karaoke", - "id": "mY3D9Xj8yuo" - }, - { - "title": "Robyn - Dancing On My Own - Karaoke Version from Zoom Karaoke", - "id": "My582hhtXD0" - }, - { - "title": "Liza Minnelli - Maybe This Time - Karaoke Version from Zoom Karaoke", - "id": "y5Gzc-CWWcU" - }, - { - "title": "Mike And The Mechanics - Word Of Mouth - Karaoke Version from Zoom Karaoke", - "id": "rufCJli9gc0" - }, - { - "title": "Robert Palmer And UB40 - I'll Be Your Baby Tonight - Karaoke Version from Zoom Karaoke", - "id": "nxOzSxokZrw" - }, - { - "title": "The Wannadies - You And Me Song - Karaoke Version from Zoom Karaoke", - "id": "mr4tlcfwnrQ" - }, - { - "title": "Frozen - In Summer - Karaoke Version from Zoom Karaoke", - "id": "fdWN15oI5tE" - }, - { - "title": "The Beautiful South - Everybody's Talkin' - Karaoke Version from Zoom Karaoke", - "id": "e9208uFQfsA" - }, - { - "title": "Kacey Musgraves - Merry Go 'Round - Karaoke Version from Zoom Karaoke", - "id": "cqThe8mb_QU" - }, - { - "title": "The Cult - Wild Flower - Karaoke Version from Zoom Karaoke", - "id": "c_FBQ9k1BRI" - }, - { - "title": "Phil Collins - You'll Be In My Heart - Karaoke Version from Zoom Karaoke", - "id": "c9lPQXrCSjE" - }, - { - "title": "Morecambe And Wise - Bring Me Sunshine - Karaoke Version from Zoom Karaoke", - "id": "H1FeYD8z9AE" - }, - { - "title": "Oasis - Supersonic - Karaoke Version from Zoom Karaoke", - "id": "DO3N1mXNC98" - }, - { - "title": "Newton - Sometimes When We Touch - Karaoke Version from Zoom Karaoke", - "id": "7slSgMUmAAY" - }, - { - "title": "Rupert Holmes - Escape The Pina Colada Song - Karaoke Version from Zoom Karaoke", - "id": "DZlHqNr6pAU" - }, - { - "title": "Hoyt Axton - Della And The Dealer - Karaoke Version from Zoom Karaoke", - "id": "oGPPk5uDjQg" - }, - { - "title": "Calvin Harris And Disciples - How Deep Is Your Love - Karaoke Version from Zoom Karaoke", - "id": "mnnQPJ04lzY" - }, - { - "title": "Hazell Dean - Who's Leaving Who - Karaoke Version from Zoom Karaoke", - "id": "lGJuyRQIWMs" - }, - { - "title": "Dolly Parton - Love Is Like A Butterfly - Karaoke Version from Zoom Karaoke", - "id": "Z04WYUA4xTI" - }, - { - "title": "Kacey Musgraves - Follow Your Arrow - Karaoke Version from Zoom Karaoke", - "id": "wCqUUjaqFpY" - }, - { - "title": "Rachel Platten - Fight Song - Karaoke Version from Zoom Karaoke", - "id": "6jdkE1Nn6QA" - }, - { - "title": "All Saints - Under The Bridge - Karaoke Version from Zoom Karaoke", - "id": "1er7Vv9c55I" - }, - { - "title": "Player - Baby Come Back - Karaoke Version from Zoom Karaoke", - "id": "-7EzZ0LE1hs" - }, - { - "title": "Madness - Night Boat To Cairo - Karaoke Version from Zoom Karaoke", - "id": "GChUcmHcoCg" - }, - { - "title": "Cilla Black - Surprise Surprise Theme - Karaoke Version from Zoom Karaoke", - "id": "sWG2GAoIGcM" - }, - { - "title": "Justin Hayward - Forever Autumn - Karaoke Version from Zoom Karaoke", - "id": "gmrICSzPyhw" - }, - { - "title": "Jennifer Hudson - One Night Only - Karaoke Version from Zoom Karaoke", - "id": "SBDrSj-30i0" - }, - { - "title": "Skunk Anansie - Weak - Karaoke Version from Zoom Karaoke", - "id": "5ATcfQyQUN4" - }, - { - "title": "James Bay - Let It Go - Karaoke Version from Zoom Karaoke", - "id": "f5s8-jhChqU" - }, - { - "title": "One Direction - Drag Me Down - Karaoke Version from Zoom Karaoke", - "id": "dR4Y0kGNof0" - }, - { - "title": "Aneka - Japanese Boy - Karaoke Version from Zoom Karaoke", - "id": "UToADEo792U" - }, - { - "title": "Alan Jackson - Where I Come From - Karaoke Version from Zoom Karaoke", - "id": "TxO4IkuEboA" - }, - { - "title": "Lenny Kravitz - Fly Away - Karaoke Version from Zoom Karaoke", - "id": "TvOvM7J6OXo" - }, - { - "title": "Jewel - Doin' Fine - Karaoke Version from Zoom Karaoke", - "id": "IVzZaJXZ-kM" - }, - { - "title": "Robson And Jerome - Up On The Roof - Karaoke Version from Zoom Karaoke", - "id": "T2FZQr-bG9U" - }, - { - "title": "Montell Jordan - This Is How We Do It - Karaoke Version from Zoom Karaoke", - "id": "y8pWfrsOcIc" - }, - { - "title": "Haley And Michaels - 500 Miles - Karaoke Version from Zoom Karaoke", - "id": "t1ZNLZKZJCs" - }, - { - "title": "Beyonce - One Night Only - Karaoke Version from Zoom Karaoke", - "id": "oL2vU_KSTiM" - }, - { - "title": "Kacey Musgraves - Biscuits - Karaoke Version from Zoom Karaoke", - "id": "n86gkHBwtbw" - }, - { - "title": "New Radicals - You Get What You Give - Karaoke Version from Zoom Karaoke", - "id": "mTdOkqzkrQg" - }, - { - "title": "Celine Dion And Andrea Bocelli - The Prayer - Karaoke Version from Zoom Karaoke", - "id": "jDbOogLHUqE" - }, - { - "title": "Kodaline - All I Want - Karaoke Version from Zoom Karaoke", - "id": "gNdmRaWJ6VY" - }, - { - "title": "Sam Feldt feat Kimberly Anne - Show Me Love - Karaoke Version from Zoom Karaoke", - "id": "gMzJD6HBEec" - }, - { - "title": "Big Brother And The Holding Company - Piece Of My Heart - Karaoke Version from Zoom Karaoke", - "id": "exsTwL1NHcs" - }, - { - "title": "Jewel - Foolish Games - Karaoke Version from Zoom Karaoke", - "id": "ePpxEm4zdBc" - }, - { - "title": "Dan Hill - Sometimes When We Touch - Karaoke Version from Zoom Karaoke", - "id": "S9aMgXGeCXg" - }, - { - "title": "Wicked - Defying Gravity - Karaoke Version from Zoom Karaoke", - "id": "RKRihukoK3k" - }, - { - "title": "Earth Wind And Fire - September - Karaoke Version from Zoom Karaoke", - "id": "GdUQv12UHNc" - }, - { - "title": "Crazy Town - Butterfly - Karaoke Version from Zoom Karaoke", - "id": "ASRpdfoIbLc" - }, - { - "title": "Stereophonics - C'est La Vie - Karaoke Version from Zoom Karaoke", - "id": "8Lhvu1_NNn8" - }, - { - "title": "Sigma feat Ella Henderson - Glitterball - Karaoke Version from Zoom Karaoke", - "id": "6Sfir2RIpX4" - }, - { - "title": "Young The Giant - My Body - Karaoke Version from Zoom Karaoke", - "id": "59FFsgcEcoM" - }, - { - "title": "Alan Jackson - Where Were You When The World Stopped Turning - Karaoke Version from Zoom Karaoke", - "id": "3RwJyh9L6UU" - }, - { - "title": "Free - Wishing Well - Karaoke Version from Zoom Karaoke", - "id": "r3bgsyMLgHo" - }, - { - "title": "Meghan Trainor feat John Legend - Like I'm Gonna Lose You - Karaoke Version from Zoom Karaoke", - "id": "x2JF3itwXXA" - }, - { - "title": "Demi Lovato - Cool For The Summer - Karaoke Version from Zoom Karaoke", - "id": "ur6V13Vxd28" - }, - { - "title": "Dorothy Moore - Misty Blue - Karaoke Version from Zoom Karaoke", - "id": "cIzoeZWyCIc" - }, - { - "title": "The Divine Comedy - National Express - Karaoke Version from Zoom Karaoke", - "id": "baNtUHXNKfM" - }, - { - "title": "Petula Clark - This Is My Song - Karaoke Version from Zoom Karaoke", - "id": "WFLNhP2ehqU" - }, - { - "title": "Jess Glynne - Don't Be So Hard On Yourself - Karaoke Version from Zoom Karaoke", - "id": "IpWG9KR1IDI" - }, - { - "title": "Johnny Hates Jazz - Shattered Dreams - Karaoke Version from Zoom Karaoke", - "id": "F9vp_bThxFU" - }, - { - "title": "Natalie Cole - Miss You Like Crazy - Karaoke Version from Zoom Karaoke", - "id": "9Y8vUzQZDbA" - }, - { - "title": "Jewel - 2 Find U - Karaoke Version from Zoom Karaoke", - "id": "ZJzkFKrzqBg" - }, - { - "title": "My Fair Lady - I Could Have Danced All Night - Karaoke Version from Zoom Karaoke", - "id": "8TfQFzZGyUM" - }, - { - "title": "Paloma Faith - Better Than This - Karaoke Version from Zoom Karaoke", - "id": "wFBBqVku1iA" - }, - { - "title": "Elvis Presley - That's All Right - Karaoke Version from Zoom Karaoke", - "id": "wWrG1q-afZk" - }, - { - "title": "Jewel - 2 Become 1 - Karaoke Version from Zoom Karaoke", - "id": "hmIEI47OgQM" - }, - { - "title": "Walk The Moon - Shut Up And Dance - Karaoke Version from Zoom Karaoke", - "id": "gVf0XelByNs" - }, - { - "title": "Ray Stevens - Misty - Karaoke Version from Zoom Karaoke", - "id": "cktrb2ZegMI" - }, - { - "title": "Blur - The Universal - Karaoke Version from Zoom Karaoke", - "id": "ZTFc-Rpkmz0" - }, - { - "title": "Conchita Wurst - Rise Like A Phoenix - Karaoke Version from Zoom Karaoke", - "id": "VYkc-QvZE0Q" - }, - { - "title": "Ava Max - Who's Laughing Now - Karaoke Version from Zoom Karaoke", - "id": "V-WgwUi2EbY" - }, - { - "title": "Aretha Franklin - A Deeper Love (Sam Halabi Remix) - Karaoke Version from Zoom Karaoke", - "id": "Uagj1AOjwUw" - }, - { - "title": "Elvis Presley - Treat Me Nice - Karaoke Version from Zoom Karaoke", - "id": "TGzuj2UajWk" - }, - { - "title": "Jocelyn Brown - Somebody Else's Guy - Karaoke Version from Zoom Karaoke", - "id": "OgJRV0N8sDU" - }, - { - "title": "BTS - Dynamite - Karaoke Version from Zoom Karaoke", - "id": "DJyNn9IJu74" - }, - { - "title": "Jessie J - Mamma Knows Best - Karaoke Version from Zoom Karaoke", - "id": "3oRWVo7pyeU" - }, - { - "title": "The Sound Of Music - (How Do You Solve A Problem Like) Maria - Karaoke Version from Zoom Karaoke", - "id": "JdgaoRFnz-k" - }, - { - "title": "Vanessa Paradis - Joe Le Taxi - Karaoke Version from Zoom Karaoke", - "id": "-_9c_uq9dJk" - }, - { - "title": "Otis Redding - A Change Is Gonna Come - Karaoke Version from Zoom Karaoke", - "id": "DeUzW6WWNP8" - }, - { - "title": "Charlie Puth - One Call Away - Karaoke Version from Zoom Karaoke", - "id": "3kCgKwO76Bs" - }, - { - "title": "The Cult - She Sells Sanctuary - Karaoke Version from Zoom Karaoke", - "id": "xeZlnC5f4zA" - }, - { - "title": "London Beat - I've Been Thinking About You - Karaoke Version from Zoom Karaoke", - "id": "wRIGuOtMSIU" - }, - { - "title": "Dinah Washington - Mad About The Boy - Karaoke Version from Zoom Karaoke", - "id": "uU1COwWZqCE" - }, - { - "title": "Althea And Donna - Uptown Top Ranking - Karaoke Version from Zoom Karaoke", - "id": "rq5vC-nh8JI" - }, - { - "title": "Stereophonics - Have A Nice Day - Karaoke Version from Zoom Karaoke", - "id": "pssMI_L5a-A" - }, - { - "title": "Tracy Byrd - Ten Rounds With Jose Cuervo - Karaoke Version from Zoom Karaoke", - "id": "hnxve6brfoU" - }, - { - "title": "Rocky Horror Picture Show - Hot Patootie Bless My Soul - Karaoke Version from Zoom Karaoke", - "id": "hgu4m7K67LM" - }, - { - "title": "Rocky Horror Picture Show - Hot Patootie Bless My Soul - Karaoke Version from Zoom Karaoke", - "id": "dBene3lyAjw" - }, - { - "title": "Ellie Goulding - Army - Karaoke Version from Zoom Karaoke", - "id": "TDK0lQXlWYU" - }, - { - "title": "Carole King - I Feel The Earth Move - Karaoke Version from Zoom Karaoke", - "id": "IVhGDPGqufs" - }, - { - "title": "Ben Howard - Keep Your Head Up - Karaoke Version from Zoom Karaoke", - "id": "Cru4n_rgpKw" - }, - { - "title": "Squeeze - Cradle To The Grave - Karaoke Version from Zoom Karaoke", - "id": "2Y8nil64Esc" - }, - { - "title": "Otis Redding - Love Man - Karaoke Version from Zoom Karaoke", - "id": "u_RY-XPqRjY" - }, - { - "title": "One Direction - Perfect - Karaoke Version from Zoom Karaoke", - "id": "sVHtGjXYhoM" - }, - { - "title": "Ellie Goulding - On My Mind - Karaoke Version from Zoom Karaoke", - "id": "sB-umKNYu8s" - }, - { - "title": "Kula Shaker - Hey Dude - Karaoke Version from Zoom Karaoke", - "id": "mv-3I584u6U" - }, - { - "title": "Alan Jackson - Small Town Southern Man - Karaoke Version from Zoom Karaoke", - "id": "mUBca3nTnpg" - }, - { - "title": "Grandmaster Flash And The Furious Five - The Message - Karaoke Version from Zoom Karaoke", - "id": "b5wKsP7-e58" - }, - { - "title": "The Beautiful South - Prettiest Eyes - Karaoke Version from Zoom Karaoke", - "id": "aTzZXJW39Lo" - }, - { - "title": "West Side Story - Maria - Karaoke Version from Zoom Karaoke", - "id": "_nur71oqho8" - }, - { - "title": "Sherbet - Howzat - Karaoke Version from Zoom Karaoke", - "id": "Xox61ZZWGSQ" - }, - { - "title": "Lost Frequencies feat Janieck Devy - Reality - Karaoke Version from Zoom Karaoke", - "id": "Ot3EWD8mSgk" - }, - { - "title": "Rick James - Super Freak - Karaoke Version from Zoom Karaoke", - "id": "NRpa3Y1IIZs" - }, - { - "title": "Don Gibson - Sea Of Heartbreak - Karaoke Version from Zoom Karaoke", - "id": "M52NonRXcxE" - }, - { - "title": "Marcus Marr And Chet Faker - The Trouble With Us - Karaoke Version from Zoom Karaoke", - "id": "8gJEWFo-9ig" - }, - { - "title": "Robert Palmer - She Makes My Day - Karaoke Version from Zoom Karaoke", - "id": "8WnwZ7jGGbI" - }, - { - "title": "The Weeknd - The Hills (Explicit) - Karaoke Version from Zoom Karaoke", - "id": "7LkIe1GKGFA" - }, - { - "title": "Traditional Christmas - Little Donkey - Karaoke Version from Zoom Karaoke", - "id": "6CB_A3tryu8" - }, - { - "title": "Angela Lansbury - Beauty And The Beast - Karaoke Version from Zoom Karaoke", - "id": "U150qI5i_Hk" - }, - { - "title": "Heather Small - Proud - Karaoke Version from Zoom Karaoke", - "id": "yFo0NmBgmNA" - }, - { - "title": "Wicked - What Is This Feeling - Karaoke Version from Zoom Karaoke", - "id": "qzXW_FKM3v8" - }, - { - "title": "Windsor Davies And Don Estelle - Whispering Grass - Karaoke Version from Zoom Karaoke", - "id": "qCoGufsGUOk" - }, - { - "title": "Elvis Presley - My Boy - Karaoke Version from Zoom Karaoke", - "id": "kU3rb5nuv3E" - }, - { - "title": "Britney Spears - Born To Make You Happy - Karaoke Version from Zoom Karaoke", - "id": "Zu9lG4ED8BA" - }, - { - "title": "Electric Light Orchestra - State Of Mind - Karaoke Version from Zoom Karaoke", - "id": "I-KQ2CaLR4c" - }, - { - "title": "All About Eve - Martha's Harbour - Karaoke Version from Zoom Karaoke", - "id": "wRMfndW9WlY" - }, - { - "title": "Jewel - Intuition - Karaoke Version from Zoom Karaoke", - "id": "lH2f7rMYd2E" - }, - { - "title": "Alan Jackson - Remember When - Karaoke Version from Zoom Karaoke", - "id": "er5iJmE5AGs" - }, - { - "title": "Sia - Alive - Karaoke Version from Zoom Karaoke", - "id": "_HX_onnKxRM" - }, - { - "title": "Ultravox - Dancing With Tears In My Eyes - Karaoke Version from Zoom Karaoke", - "id": "yWTYgUHkpeE" - }, - { - "title": "Craig David - Rendezvous - Karaoke Version from Zoom Karaoke", - "id": "uBY8wB7wMXo" - }, - { - "title": "Bill Withers - Just The Two Of Us - Karaoke Version from Zoom Karaoke", - "id": "tVwh83PtA3s" - }, - { - "title": "Carousel - You'll Never Walk Alone - Karaoke Version from Zoom Karaoke", - "id": "sjBcdCB9uOY" - }, - { - "title": "Roxette - Dangerous - Karaoke Version from Zoom Karaoke", - "id": "sP1EBoaV2lI" - }, - { - "title": "Smokie - Changing All The Time - Karaoke Version from Zoom Karaoke", - "id": "sOi0Npj2VU4" - }, - { - "title": "Jamie Lawson - Wasn't Expecting That - Karaoke Version from Zoom Karaoke", - "id": "iBi0YJ61Na0" - }, - { - "title": "Shania Twain - I'm Gonna Getcha Good - Karaoke Version from Zoom Karaoke", - "id": "e_RWz7feJ88" - }, - { - "title": "Roxette - Fading Like A Flower (Every Time You Leave) - Karaoke Version from Zoom Karaoke", - "id": "YVY3LZ0FhGs" - }, - { - "title": "Roxette - How Do You Do - Karaoke Version from Zoom Karaoke", - "id": "XW_4hQM5_hw" - }, - { - "title": "James Bay - Scars - Karaoke Version from Zoom Karaoke", - "id": "TnjnBECn1EU" - }, - { - "title": "Madonna - Santa Baby - Karaoke Version from Zoom Karaoke", - "id": "SuCvvtq96XU" - }, - { - "title": "Las Ketchup - The Ketchup Song - Karaoke Version from Zoom Karaoke", - "id": "KE2dKPZLdMI" - }, - { - "title": "Billy Fury - Be Mine Tonight - Karaoke Version from Zoom Karaoke", - "id": "BGeMZsLQi3w" - }, - { - "title": "Rocky Horror Picture Show - Touch A Touch A Touch A Touch Me - Karaoke Version from Zoom Karaoke", - "id": "9psiVhsQyQs" - }, - { - "title": "Tatu - Not Gonna Get Us - Karaoke Version from Zoom Karaoke", - "id": "8GDNahgE4y8" - }, - { - "title": "Boyzone - You Needed Me - Karaoke Version from Zoom Karaoke", - "id": "0pn5885R5ZI" - }, - { - "title": "Naughty Boy ft Beyonce & Arrow Benjamin - Runnin' Lose It All - Karaoke Version from Zoom Karaoke", - "id": "s506a_FgSkg" - }, - { - "title": "Sam Smith - Writing's On The Wall - Karaoke Version from Zoom Karaoke", - "id": "e_beMPUPUWc" - }, - { - "title": "Panic At The Disco - I Write Sins Not Tragedies - Karaoke Version from Zoom Karaoke", - "id": "Uz3jtK__VqM" - }, - { - "title": "The Sound Of Music - Sixteen Going On Seventeen - Karaoke Version from Zoom Karaoke", - "id": "TJHu-1GVAWI" - }, - { - "title": "Alan Jackson - Drive (For Daddy Gene) - Karaoke Version from Zoom Karaoke", - "id": "Q-cJ_qakjeU" - }, - { - "title": "Thompson Twins - Doctor Doctor - Karaoke Version from Zoom Karaoke", - "id": "PeToTJYi2Dw" - }, - { - "title": "Robbie Williams - Handsome Man - Karaoke Version from Zoom Karaoke", - "id": "EI39RJCLbNI" - }, - { - "title": "Robbie Williams - Hot Fudge - Karaoke Version from Zoom Karaoke", - "id": "BqvxXkIsGig" - }, - { - "title": "The Commitments - Try A Little Tenderness - Karaoke Version from Zoom Karaoke", - "id": "BNHqf3AXcE8" - }, - { - "title": "Jewel - Hands - Karaoke Version from Zoom Karaoke", - "id": "8UF1xbAQkGA" - }, - { - "title": "Sophie Ellis Bextor - Love Is A Camera - Karaoke Version from Zoom Karaoke", - "id": "-i9v_9E43sI" - }, - { - "title": "Annie Soundtrack - Little Girls - Karaoke Version from Zoom Karaoke", - "id": "x-W-ADspo44" - }, - { - "title": "The Commitments - The Dark End Of The Street - Karaoke Version from Zoom Karaoke", - "id": "vIEUi-H3M-w" - }, - { - "title": "John Newman feat Charlie Williams - Tiring Game - Karaoke Version from Zoom Karaoke", - "id": "ujufmSz8Umk" - }, - { - "title": "Years And Years - Eyes Shut - Karaoke Version from Zoom Karaoke", - "id": "tjs92JscW2s" - }, - { - "title": "Alan Jackson - Country Boy - Karaoke Version from Zoom Karaoke", - "id": "or5ZBpUW0gc" - }, - { - "title": "Jason Derulo - Cheyenne - Karaoke Version from Zoom Karaoke", - "id": "n-OGn5rxuoA" - }, - { - "title": "Perry Como - Ave Maria - Karaoke Version from Zoom Karaoke", - "id": "h-hn1KS2LOA" - }, - { - "title": "The Searchers - Goodbye My Love - Karaoke Version from Zoom Karaoke", - "id": "dpICPzwf590" - }, - { - "title": "Michael Jackson And Justin Timberlake - Love Never Felt So Good - Karaoke Version from Zoom Karaoke", - "id": "b0bQuEGX91w" - }, - { - "title": "Rufus And Chaka Khan - Ain't Nobody - Karaoke Version from Zoom Karaoke", - "id": "WA0beYSuQg0" - }, - { - "title": "Justin Bieber - What Do You Mean - Karaoke Version from Zoom Karaoke", - "id": "TBHX5klRU1I" - }, - { - "title": "Westlife - If I Let You Go - Karaoke Version from Zoom Karaoke", - "id": "Orv-HEDmde0" - }, - { - "title": "Queen - Love Of My Life - Karaoke Version from Zoom Karaoke", - "id": "OCqE9i-FTq4" - }, - { - "title": "Junior Senior - Move Your Feet - Karaoke Version from Zoom Karaoke", - "id": "J0ZoAbOTz1A" - }, - { - "title": "Electric Light Orchestra - Easy Money - Karaoke Version from Zoom Karaoke", - "id": "AcQVO88N94Y" - }, - { - "title": "R City feat Adam Levine - Locked Away - Karaoke Version from Zoom Karaoke", - "id": "6DGyN3ELyJY" - }, - { - "title": "Mulan - I'll Make A Man Out Of You - Karaoke Version from Zoom Karaoke", - "id": "5wf9EWeogrY" - }, - { - "title": "The Weeknd - Can't Feel My Face - Karaoke Version from Zoom Karaoke", - "id": "3pjwhxn52gw" - }, - { - "title": "Zara Larsson feat MNEK - Never Forget You - Karaoke Version from Zoom Karaoke", - "id": "urTMU81LmIQ" - }, - { - "title": "Perry Como - And I Love You So - Karaoke Version from Zoom Karaoke", - "id": "hFLG_eduaO4" - }, - { - "title": "Lunchmoney Lewis feat Chloe Angelides - Whip It - Karaoke Version from Zoom Karaoke", - "id": "OxhDB-0aCS4" - }, - { - "title": "Meghan Trainor - Good To Be Alive - Karaoke Version from Zoom Karaoke", - "id": "I_WBcNY95lw" - }, - { - "title": "Fetty Wap - Trap Queen - Karaoke Version from Zoom Karaoke", - "id": "p3kfqZZrxuE" - }, - { - "title": "Kajagoogoo - Too Shy - Karaoke Version from Zoom Karaoke", - "id": "nosbfsFUe-c" - }, - { - "title": "Wendy Moten - Come In Out Of The Rain - Karaoke Version from Zoom Karaoke", - "id": "jFWqP0XkITE" - }, - { - "title": "Travis - Driftwood - Karaoke Version from Zoom Karaoke", - "id": "__9LnUX6K0s" - }, - { - "title": "Texas - I Don't Want A Lover - Karaoke Version from Zoom Karaoke", - "id": "FdUNVrnykn8" - }, - { - "title": "Cyrus - Stone - Karaoke Version from Zoom Karaoke", - "id": "zMGoOWwrwzE" - }, - { - "title": "TLC - Unpretty - Karaoke Version from Zoom Karaoke", - "id": "p9gyt1R4L38" - }, - { - "title": "Mary Poppins - The Perfect Nanny - Karaoke Version from Zoom Karaoke", - "id": "yRaI0IKeYQw" - }, - { - "title": "Mary Poppins - A British Bank The Life I Lead - Karaoke Version from Zoom Karaoke", - "id": "ipIWPjnm2G4" - }, - { - "title": "One Direction - History - Karaoke Version from Zoom Karaoke", - "id": "VgHcWBS3Ff0" - }, - { - "title": "Emilia - Big Big World - Karaoke Version from Zoom Karaoke", - "id": "OmYY25l9mqo" - }, - { - "title": "Atlantic Starr - Always - Karaoke Version from Zoom Karaoke", - "id": "I-YwXuL9Nw0" - }, - { - "title": "Otis Redding - I've Been Loving You Too Long - Karaoke Version from Zoom Karaoke", - "id": "G4gYYeuNsvU" - }, - { - "title": "Frozen - Reindeers Are Better Than People - Karaoke Version from Zoom Karaoke", - "id": "E63E5yH6TbM" - }, - { - "title": "Pixies - Monkey Gone To Heaven - Karaoke Version from Zoom Karaoke", - "id": "Cj3aHVBH81k" - }, - { - "title": "Hole - Doll Parts - Karaoke Version from Zoom Karaoke", - "id": "ARTL7Yesu7w" - }, - { - "title": "Otis Redding - Cigarettes And Coffee - Karaoke Version from Zoom Karaoke", - "id": "4BNl3ZBI-qQ" - }, - { - "title": "Mary Poppins - I Love To Laugh - Karaoke Version from Zoom Karaoke", - "id": "2Tjh_VamOOY" - }, - { - "title": "The Beautiful South - Good As Gold Stupid As Mud (For Solo Male) - Karaoke Version from Zoom", - "id": "xEex8kEyiuI" - }, - { - "title": "Leonard Cohen - Bird On The Wire - Karaoke Version from Zoom Karaoke", - "id": "t0ylMb4q38E" - }, - { - "title": "Kate Bush - Army Dreamers - Karaoke Version from Zoom Karaoke", - "id": "e_7eIxp4pco" - }, - { - "title": "Otis Redding - Hard To Handle - Karaoke Version from Zoom Karaoke", - "id": "Z6CsMrq5Vhk" - }, - { - "title": "Olly Murs - Stevie Knows - Karaoke Version from Zoom Karaoke", - "id": "UhNk1if3M68" - }, - { - "title": "Squeeze - Happy Days - Karaoke Version from Zoom Karaoke", - "id": "6HkKdldeYZc" - }, - { - "title": "The Beatles - Don't Let Me Down - Karaoke Version from Zoom Karaoke", - "id": "4WkKNceXBD8" - }, - { - "title": "Duke Dumont - Ocean Drive - Karaoke Version from Zoom Karaoke", - "id": "ntJAX_kmw3I" - }, - { - "title": "The Cult - Painted On My Heart - Karaoke Version from Zoom Karaoke", - "id": "eHpkaS885lY" - }, - { - "title": "One Direction - If I Could Fly - Karaoke Version from Zoom Karaoke", - "id": "xFyDfeiAPS8" - }, - { - "title": "Florence And The Machine - Never Let Me Go - Karaoke Version from Zoom Karaoke", - "id": "wRYgdBIZQr8" - }, - { - "title": "Rocky Horror Picture Show - Over At The Frankenstein Place - Karaoke Version from Zoom Karaoke", - "id": "qjAPI2bCTTw" - }, - { - "title": "Pink Floyd - Hey You - Karaoke Version from Zoom Karaoke", - "id": "p8buJtf2bpg" - }, - { - "title": "The Soggy Bottom Boys - I Am A Man Of Constant Sorrow - Karaoke Version from Zoom Karaoke", - "id": "lGuIXQzm7ug" - }, - { - "title": "Justin Timberlake - What Goes Around Comes Around - Karaoke Version from Zoom Karaoke", - "id": "eH184RJVKvM" - }, - { - "title": "Rudimental feat Ed Sheeran - Lay It All On Me - Karaoke Version from Zoom Karaoke", - "id": "YgkmBxtpFL8" - }, - { - "title": "Paul Heaton And Jacqui Abbot - I Don't See Them - Karaoke Version from Zoom Karaoke", - "id": "CNkpMWm09WI" - }, - { - "title": "The Beautiful South - Good As Gold Stupid As Mud (Duet Version) - Karaoke Version from Zoom", - "id": "G0eIyccumQo" - }, - { - "title": "Jess Glynne - Right Here - Karaoke Version from Zoom Karaoke", - "id": "DpIow2MPbvQ" - }, - { - "title": "Bette Midler - From A Distance - Karaoke Version from Zoom Karaoke", - "id": "tU8p-kpqvZc" - }, - { - "title": "Paul Heaton And Jacqui Abbot - The Austerity Of Love - Karaoke Version from Zoom Karaoke", - "id": "in4F69os2WE" - }, - { - "title": "The Overtones - Runaway - Karaoke Version from Zoom Karaoke", - "id": "ieIr9dWIc7I" - }, - { - "title": "Little Mix - Love Me Like You - Karaoke Version from Zoom Karaoke", - "id": "dZCby2QU74E" - }, - { - "title": "The Cartoons - Witch Doctor - Karaoke Version from Zoom Karaoke", - "id": "c-OC_i19M80" - }, - { - "title": "The O'Jays - Love Train - Karaoke Version from Zoom Karaoke", - "id": "bU0uAR_caro" - }, - { - "title": "Randy Crawford - Almaz - Karaoke Version from Zoom Karaoke", - "id": "V2y1DJCvANw" - }, - { - "title": "Roger Whittaker - The Last Farewell - Karaoke Version from Zoom Karaoke", - "id": "UYILeh7qmD8" - }, - { - "title": "Rocky Horror Picture Show - Dammit Janet - Karaoke Version from Zoom Karaoke", - "id": "28EMIaPLjm8" - }, - { - "title": "Glen Campbell - Galveston - Karaoke Version from Zoom Karaoke", - "id": "-kgtKYJW2gY" - }, - { - "title": "Aurora - Half The World Away - Karaoke Version from Zoom Karaoke", - "id": "mjYSWvcNUnw" - }, - { - "title": "Ann Breen - Pal Of My Cradle Days - Karaoke Version from Zoom Karaoke", - "id": "dBlBCnXJ_5Q" - }, - { - "title": "Leona Lewis - Thunder - Karaoke Version from Zoom Karaoke", - "id": "XrcBYEwirWM" - }, - { - "title": "T. Rex - Children Of The Revolution - Karaoke Version from Zoom Karaoke", - "id": "M12Y5V752N0" - }, - { - "title": "Wham! - Wham Rap (Enjoy What You Do) - Karaoke Version from Zoom Karaoke", - "id": "GffRInosSnU" - }, - { - "title": "Johnny Cash - The Man Comes Around - Karaoke Version from Zoom Karaoke", - "id": "4tV0TbFbPqA" - }, - { - "title": "Eruption - One Way Ticket - Karaoke Version from Zoom Karaoke", - "id": "0d0HXZXlr7s" - }, - { - "title": "Bob Dylan - It's All Over Now, Baby Blue - Karaoke Version from Zoom Karaoke", - "id": "yrq-oNFc51o" - }, - { - "title": "Squeeze - Tempted - Karaoke Version from Zoom Karaoke", - "id": "koVYEFpsSYM" - }, - { - "title": "Justin Bieber - Love Yourself - Karaoke Version from Zoom Karaoke", - "id": "dzpabKcxE5c" - }, - { - "title": "Gene Wilder - Pure Imagination - Karaoke Version from Zoom Karaoke", - "id": "Uqfjhsd96S8" - }, - { - "title": "Rocky Horror Picture Show - Science Fiction Double Feature - Karaoke Version from Zoom Kar", - "id": "HdWeGtMEySg" - }, - { - "title": "Jessie Ware - Wildest Moments - Karaoke Version from Zoom Karaoke", - "id": "ElsnXR_bOxk" - }, - { - "title": "The Wizard Of Oz - We're Off To See The Wizard - Karaoke Version from Zoom Karaoke", - "id": "4fbvb6piv_g" - }, - { - "title": "Julie Andrews - The Sound Of Music - Karaoke Version from Zoom Karaoke", - "id": "zpiGtE-bua8" - }, - { - "title": "Desmond Dekker And The Aces - Israelites - Karaoke Version from Zoom Karaoke", - "id": "zddg2B59cqA" - }, - { - "title": "Ariana Grande - Focus - Karaoke Version from Zoom Karaoke", - "id": "vuGfmgAGcs8" - }, - { - "title": "Robbie Williams - It Was A Very Good Year - Karaoke Version from Zoom Karaoke", - "id": "txpYT-rN5f8" - }, - { - "title": "Ben Haenow feat Kelly Clarkson - Second Hand Heart - Karaoke Version from Zoom Karaoke", - "id": "qhVquZlAmYE" - }, - { - "title": "Fleur East - Sax - Karaoke Version from Zoom Karaoke", - "id": "nQIIpie6qwY" - }, - { - "title": "Blur - End Of A Century - Karaoke Version from Zoom Karaoke", - "id": "n48Umd9Q4ys" - }, - { - "title": "Olly Murs - Kiss Me - Karaoke Version from Zoom Karaoke", - "id": "kqA7ZT8-jgQ" - }, - { - "title": "Jessica Mauboy - This Ain't Love - Karaoke Version from Zoom Karaoke", - "id": "kA6G4aMv1zg" - }, - { - "title": "Joni Mitchell - California - Karaoke Version from Zoom Karaoke", - "id": "jqxuQqsqm68" - }, - { - "title": "Birds Of Tokyo - I'd Go With You Anywhere - Karaoke Version from Zoom Karaoke", - "id": "imdt-U0lCPk" - }, - { - "title": "The Beautiful South - One Last Love Song - Karaoke Version from Zoom Karaoke", - "id": "g81knvVwLVI" - }, - { - "title": "The Presidents Of The USA - Video Killed The Radio Star - Karaoke Version from Zoom Karaoke", - "id": "etc-U8_QMZ8" - }, - { - "title": "Guy Sebastian - Black And Blue - Karaoke Version from Zoom Karaoke", - "id": "b08Ed_-uWxQ" - }, - { - "title": "Jessie J feat B o B - Price Tag (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "Yn8eDxVaQQc" - }, - { - "title": "Judy Collins - Send In The Clowns - Karaoke Version from Zoom Karaoke", - "id": "V0UiDDbhxyI" - }, - { - "title": "Frank Sinatra - It Was A Very Good Year - Karaoke Version from Zoom Karaoke", - "id": "R2_k8krzGuE" - }, - { - "title": "Conrad Sewell - Who You Lovin' - Karaoke Version from Zoom Karaoke", - "id": "JBEv3Sueywo" - }, - { - "title": "Grace feat G Eazy - You Don't Own Me - Karaoke Version from Zoom Karaoke", - "id": "IKzCB3H-bNY" - }, - { - "title": "Nathan Sykes - Over And Over Again - Karaoke Version from Zoom Karaoke", - "id": "Frw_7b61WZI" - }, - { - "title": "Foxes - Youth - Karaoke Version from Zoom Karaoke", - "id": "5VLEfK0ZiKk" - }, - { - "title": "Perry Como - Temptation - Karaoke Version from Zoom Karaoke", - "id": "4y3WQW1Hslg" - }, - { - "title": "Jim Diamond - I Should Have Known Better - Karaoke Version from Zoom Karaoke", - "id": "khn--5stll8" - }, - { - "title": "Johnny Hates Jazz - Turn Back The Clock - Karaoke Version from Zoom Karaoke", - "id": "WzkHOH1aNUs" - }, - { - "title": "Garbage - Stupid Girl - Karaoke Version from Zoom Karaoke", - "id": "GnBbB7Eft9A" - }, - { - "title": "Michael Ball - Love Changes Everything - Karaoke Version from Zoom Karaoke", - "id": "rG-mEWh50ZU" - }, - { - "title": "Tame Impala - The Less I Know The Better - Karaoke Version from Zoom Karaoke", - "id": "nMqTPZG5txM" - }, - { - "title": "Elvis Presley - King Creole - Karaoke Version from Zoom Karaoke", - "id": "hmqAU-FS6Ng" - }, - { - "title": "A1 - Caught In The Middle - Karaoke Version from Zoom Karaoke", - "id": "E26CVj_FuXY" - }, - { - "title": "Beres Hammond - I Feel Good - Karaoke Version from Zoom Karaoke", - "id": "BXJmUvOXX_c" - }, - { - "title": "Mulan - A Girl Worth Fighting For - Karaoke Version from Zoom Karaoke", - "id": "ufu6JipJBMM" - }, - { - "title": "The Pet Shop Boys - Rent - Karaoke Version from Zoom Karaoke", - "id": "tUXNnj4NHfk" - }, - { - "title": "Ed Sheeran - Afire Love - Karaoke Version from Zoom Karaoke", - "id": "osl_4xJClPs" - }, - { - "title": "MO - Kamikaze - Karaoke Version from Zoom Karaoke", - "id": "WAB0QqpWbw4" - }, - { - "title": "Simon And Garfunkel - Scarborough Fair - Karaoke Version from Zoom Karaoke", - "id": "Es5F3wTaK6w" - }, - { - "title": "Ellie Goulding - Something In The Way You Move - Karaoke Version from Zoom Karaoke", - "id": "8AudbZA936U" - }, - { - "title": "The Presidents Of The USA - Peaches - Karaoke Version from Zoom Karaoke", - "id": "5-CS4TZVfo0" - }, - { - "title": "Elvis Presley With The Royal Philharmonic Orchestra - And The Grass Won't Pay No Mind - Karaoke", - "id": "3QUpE3nTU0w" - }, - { - "title": "Tame Impala - Feels Like We Only Go Backwards - Karaoke Version from Zoom Karaoke", - "id": "ypqnRA1cJnE" - }, - { - "title": "The Jackson 5 - The Love You Save (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "vkbT3NUoT0M" - }, - { - "title": "Twenty One Pilots - Stressed Out - Karaoke Version from Zoom Karaoke", - "id": "vfjbwAlr1tY" - }, - { - "title": "Elvis Presley With The Royal Philharmonic Orchestra - It's Now Or Never - Karaoke Version", - "id": "qDQGCZMeYHU" - }, - { - "title": "Duran Duran - Planet Earth - Karaoke Version from Zoom Karaoke", - "id": "f1s-yDuw368" - }, - { - "title": "Conrad Sewell - Remind Me - Karaoke Version from Zoom Karaoke", - "id": "aMElIdUPVQs" - }, - { - "title": "The Jackson 5 - The Love You Save (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "Y9b_K_fUwu8" - }, - { - "title": "Mulan - Honour To Us All - Karaoke Version from Zoom Karaoke", - "id": "QuUrw4qSa4I" - }, - { - "title": "Hole - Violet - Karaoke Version from Zoom Karaoke", - "id": "Og6TN25-Qgw" - }, - { - "title": "Shania Twain - Honey I'm Home - Karaoke Version from Zoom Karaoke", - "id": "LMrH1vztPTs" - }, - { - "title": "Hole - Malibu - Karaoke Version from Zoom Karaoke", - "id": "JeormWsn1ko" - }, - { - "title": "Simon And Garfunkel - Scarborough Fair - Karaoke Version from Zoom Karaoke", - "id": "In2-kQ52fTc" - }, - { - "title": "Hole - Miss World - Karaoke Version from Zoom Karaoke", - "id": "DSbWXlbZSxc" - }, - { - "title": "Elvis Presley With The Royal Philharmonic Orchestra - In The Ghetto - Karaoke Version", - "id": "9uz_CDEQeH4" - }, - { - "title": "Elvis Presley With The Royal Philharmonic Orchestra - Steamroller Blues - Karaoke Version", - "id": "9BmUtAQe76E" - }, - { - "title": "Zayn Malik - Pillowtalk - Karaoke Version from Zoom Karaoke", - "id": "7k9RFzf55FE" - }, - { - "title": "Sweeney Todd - My Friends (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "4PP4xW9K7WE" - }, - { - "title": "X Ambassadors - Renegades - Karaoke Version from Zoom Karaoke", - "id": "05kL9yG1qZ0" - }, - { - "title": "Lukas Graham - 7 Years - Karaoke Version from Zoom Karaoke", - "id": "iyKavZ4JqTE" - }, - { - "title": "Elvis Presley With The Royal Philharmonic Orchestra - Burning Love - Karaoke Version", - "id": "ZKGStuqkh2g" - }, - { - "title": "David Bowie - Drive-In Saturday - Karaoke Version from Zoom Karaoke", - "id": "Ov_GDwOxy2k" - }, - { - "title": "Kelly Clarkson - Piece By Piece - Karaoke Version from Zoom Karaoke", - "id": "4zRhUtcGFz4" - }, - { - "title": "Rachel Platten - Stand By You - Karaoke Version from Zoom Karaoke", - "id": "2VRbjgUho_g" - }, - { - "title": "Beres Hammond - Groovy Little Thing - Karaoke Version from Zoom Karaoke", - "id": "FJsByiXkXrU" - }, - { - "title": "Michael Holliday - The Story Of My Life - Karaoke Version from Zoom Karaoke", - "id": "t2NtT44XGyk" - }, - { - "title": "Justin Bieber - I'll Show You - Karaoke Version from Zoom Karaoke", - "id": "oDSLpYVfEdc" - }, - { - "title": "5 Seconds Of Summer - Jet Black Heart - Karaoke Version from Zoom Karaoke", - "id": "dYXz3hr6KMU" - }, - { - "title": "A Ha - Hunting High And Low - Karaoke Version from Zoom Karaoke", - "id": "Q0cclyurKZE" - }, - { - "title": "Jess Glynne - Take Me Home - Karaoke Version from Zoom Karaoke", - "id": "H3IWPKi-tdI" - }, - { - "title": "The Housemartins - Build - Karaoke Version from Zoom Karaoke", - "id": "BrBxEZkZ7Lw" - }, - { - "title": "Alessia Cara - Here - Karaoke Version from Zoom Karaoke", - "id": "9IhOybdkR6U" - }, - { - "title": "Electric Light Orchestra - Telephone Line - Karaoke Version from Zoom Karaoke", - "id": "9ChR7tGBDTg" - }, - { - "title": "Tangled - Mother Knows Best - Karaoke Version from Zoom Karaoke", - "id": "5f4dW6VSmsg" - }, - { - "title": "Courtney Barnett - Nobody Really Cares If You Don't Go To The Party - Karaoke Version", - "id": "yQsFtwvtwWo" - }, - { - "title": "Kid Rock - First Kiss - Karaoke Version from Zoom Karaoke", - "id": "gKiT7b95Jlg" - }, - { - "title": "Aladdin - Friend Like Me - Karaoke Version from Zoom Karaoke", - "id": "930aA9Qos2w" - }, - { - "title": "Earl - Good Witch - Karaoke Version from Zoom Karaoke", - "id": "u9oNr1XP-rI" - }, - { - "title": "Jimmy Dean - Big Bad John - Karaoke Version from Zoom Karaoke", - "id": "qGUm3dfqLO0" - }, - { - "title": "Snow White And The Seven Dwarfs - Someday My Prince Will Come - Karaoke Version from Zoom", - "id": "p4pbJ7zvJTg" - }, - { - "title": "Nathan Sykes And Ariana Grande - Over And Over Again - Karaoke Version from Zoom Karaoke", - "id": "jo4K7x42uoM" - }, - { - "title": "Luther Vandross - Always And Forever - Karaoke Version from Zoom Karaoke", - "id": "hGa-bTO0dZU" - }, - { - "title": "Sia - Cheap Thrills - Karaoke Version from Zoom Karaoke", - "id": "aiZLZbyGHHw" - }, - { - "title": "Aladdin - Arabian Nights - Karaoke Version from Zoom Karaoke", - "id": "ZxefWg-5E8E" - }, - { - "title": "Pulp - Sorted For E's And Wizz - Karaoke Version from Zoom Karaoke", - "id": "Tevl8F7qrV8" - }, - { - "title": "Smash Mouth - I'm A Believer - Karaoke Version from Zoom Karaoke", - "id": "RhQlrJMZhf0" - }, - { - "title": "The Libertines - Don't Look Back Into The Sun - Karaoke Version from Zoom Karaoke", - "id": "QwOK_B3dDmc" - }, - { - "title": "The Rubens - Hoops - Karaoke Version from Zoom Karaoke", - "id": "QcEOvtMccu8" - }, - { - "title": "Mary Poppins - Jolly Holiday - Karaoke Version from Zoom Karaoke", - "id": "LpLHr5Hqy2A" - }, - { - "title": "A Goofy Movie - After Today - Karaoke Version from Zoom Karaoke", - "id": "IT891LvO7As" - }, - { - "title": "Mandy Moore And Zachary Levi - I See The Light - Karaoke Version from Zoom Karaoke", - "id": "IO6k89fqHHk" - }, - { - "title": "The Lighthouse Family - Lifted - Karaoke Version from Zoom Karaoke", - "id": "FDaVUU-xkls" - }, - { - "title": "Hole - Celebrity Skin - Karaoke Version from Zoom Karaoke", - "id": "DQ-ObjL4Nj4" - }, - { - "title": "Little Mix feat Jason Derulo - Secret Love Song - Karaoke Version from Zoom Karaoke", - "id": "DFPa-FdZqcA" - }, - { - "title": "Hercules - Go The Distance - Karaoke Version from Zoom Karaoke", - "id": "Cf4QhHiKGIk" - }, - { - "title": "Beauty And The Beast - Something There - Karaoke Version from Zoom Karaoke", - "id": "C3mIZyCQnUE" - }, - { - "title": "Baha Men - Best Years Of Our Lives - Karaoke Version from Zoom Karaoke", - "id": "C12A6oU80xQ" - }, - { - "title": "West Side Story - Tonight - Karaoke Version from Zoom Karaoke", - "id": "34CoNcFSXPY" - }, - { - "title": "Adam Lambert - The Original High - Karaoke Version from Zoom Karaoke", - "id": "31GIJPK3NnE" - }, - { - "title": "Jason Wade - You Belong To Me - Karaoke Version from Zoom Karaoke", - "id": "2XIoFA770lE" - }, - { - "title": "Zara Larsson - Lush Life - Karaoke Version from Zoom Karaoke", - "id": "0HEFQGlRn2E" - }, - { - "title": "Kylie Minogue - On A Night Like This - Karaoke Version from Zoom Karaoke", - "id": "-vjgToJskxY" - }, - { - "title": "Tame Impala - Cause I'm A Man - Karaoke Version from Zoom Karaoke", - "id": "Gd9J7yZusNE" - }, - { - "title": "Susan Cadogan - Hurt So Good - Karaoke Version from Zoom Karaoke", - "id": "T8uV_m_h87M" - }, - { - "title": "Sham Rock - Tell Me Ma - Karaoke Version from Zoom Karaoke", - "id": "1_kY1sO2fD0" - }, - { - "title": "TV Theme - Tweenies - Karaoke Version from Zoom Karaoke", - "id": "oMIgtXoLfJw" - }, - { - "title": "Chas And Dave - Ain't No Pleasing You - Karaoke Version from Zoom Karaoke", - "id": "kI3kB2OsUxE" - }, - { - "title": "Smokie - I'll Meet You At Midnight - Karaoke Version from Zoom Karaoke", - "id": "iiw0SaDdGzU" - }, - { - "title": "Rick Astley - Keep Singing - Karaoke Version from Zoom Karaoke", - "id": "deag4uhE_vc" - }, - { - "title": "Chas And Dave - I Wonder In Whose Arms - Karaoke Version from Zoom Karaoke", - "id": "ctuDMPfulM0" - }, - { - "title": "TV Theme - Tweenies - Karaoke Version from Zoom Karaoke", - "id": "Sj8hs0eVvW0" - }, - { - "title": "TV Theme - Topsy And Tim - Karaoke Version from Zoom Karaoke", - "id": "LefrxF94nWE" - }, - { - "title": "Steel Panther - Fat Girl (Thar She Blows) - Karaoke Version from Zoom Karaoke", - "id": "KF7V5ZqGepo" - }, - { - "title": "The Andrews Sisters - I'll Be With You In Apple Blossom Time - Karaoke Version from Zoom K", - "id": "K6Pgoocw74w" - }, - { - "title": "Chas And Dave - The Sideboard Song - Karaoke Version from Zoom Karaoke", - "id": "H2kvafVAZr0" - }, - { - "title": "Chas And Dave - Margate - Karaoke Version from Zoom Karaoke", - "id": "Ct8yL7coAqM" - }, - { - "title": "TV Theme - Mike The Knight - Karaoke Version from Zoom Karaoke", - "id": "3DHnNXSiSFs" - }, - { - "title": "Elvis Presley With The Royal Philharmonic Orchestra - An American Trilogy Karaoke Version", - "id": "QOlxBr1Of2U" - }, - { - "title": "Massive Attack - Unfinished Sympathy - Karaoke Version from Zoom Karaoke", - "id": "vanIiINj6FI" - }, - { - "title": "Jason Derulo - Get Ugly - Karaoke Version from Zoom Karaoke", - "id": "vM8DpOkWs7U" - }, - { - "title": "Bob Dylan - Forever Young - Karaoke Version from Zoom Karaoke", - "id": "r98mCPKHCLM" - }, - { - "title": "The Contours - Do You Love Me - Karaoke Version from Zoom Karaoke", - "id": "q_1gaFCZE5c" - }, - { - "title": "Dr Feelgood - Milk And Alcohol - Karaoke Version from Zoom Karaoke", - "id": "oVs61IykqWw" - }, - { - "title": "Curtis Mayfield - Move On Up - Karaoke Version from Zoom Karaoke", - "id": "guRuE_Ffip8" - }, - { - "title": "Sailor - Girls Girls Girls - Karaoke Version from Zoom Karaoke", - "id": "MtSE4ml-G9U" - }, - { - "title": "Jimmy Cliff - Wonderful World Beautiful People - Karaoke Version from Zoom Karaoke", - "id": "6hWXcjWSZls" - }, - { - "title": "Frankie Lymon And The Teenagers - Why Do Fools Fall In Love - Karaoke Version from Zoom Karaoke", - "id": "447nCmK3AMk" - }, - { - "title": "Helen Reddy - Angie Baby - Karaoke Version from Zoom Karaoke", - "id": "xIghUy9GzLY" - }, - { - "title": "Tarrus Riley - She's Royal - Karaoke Version from Zoom Karaoke", - "id": "wgKWUtaVMKk" - }, - { - "title": "TV Theme - Thomas And Friends - Karaoke Version from Zoom Karaoke", - "id": "niw3ECEuVy4" - }, - { - "title": "Alanis Morissette - Not The Doctor - Karaoke Version from Zoom Karaoke", - "id": "h8QuH6idtLA" - }, - { - "title": "Stevie Wonder - Overjoyed - Karaoke Version from Zoom Karaoke", - "id": "VsSRui3EvRI" - }, - { - "title": "James Bay - Best Fake Smile - Karaoke Version from Zoom Karaoke", - "id": "VMZjdyargY8" - }, - { - "title": "Jimmy Cliff - The Harder They Come - Karaoke Version from Zoom Karaoke", - "id": "R9j-U7etZLI" - }, - { - "title": "Whitney Houston - All At Once - Karaoke Version from Zoom Karaoke", - "id": "PtzTQqF0Pu4" - }, - { - "title": "Glen Washington - Kindness For Weakness - Karaoke Version from Zoom Karaoke", - "id": "PU9cwskq0-o" - }, - { - "title": "Ariana Grande - One Last Time - Karaoke Version from Zoom Karaoke", - "id": "DyL6zlVGxPE" - }, - { - "title": "Nick Cave And The Bad Seeds feat PJ Harvey - Henry Lee - Karaoke Version from Zoom Karaoke", - "id": "BcUoUQqVb00" - }, - { - "title": "Mike Posner - I Took A Pill In Ibiza (SeeB Remix) - Karaoke Version from Zoom Karaoke", - "id": "-VraQIUsFVo" - }, - { - "title": "Collabro - Over The Rainbow - Karaoke Version from Zoom Karaoke", - "id": "zxOvu3n-a5k" - }, - { - "title": "Tab Hunter - Young Love - Karaoke Version from Zoom Karaoke", - "id": "vS0rDlm9nO4" - }, - { - "title": "The Corrs - Bring On The Night - Karaoke Version from Zoom Karaoke", - "id": "mHHzaMQeYgw" - }, - { - "title": "Ray Charles - Georgia On My Mind - Karaoke Version from Zoom Karaoke", - "id": "_LlWxdhDrwg" - }, - { - "title": "Suzi Quatro - Devil Gate Drive - Karaoke Version from Zoom Karaoke", - "id": "YTt39hp0kPU" - }, - { - "title": "Dandy Livingstone - Suzanne Beware Of The Devil - Karaoke Version from Zoom Karaoke", - "id": "QHQHJuuZiLY" - }, - { - "title": "Elvis Presley & The Royal Philharmonic Orchestra - You've Lost That Lovin' Feelin' - Karaoke Version", - "id": "PHfcz63BFxE" - }, - { - "title": "Disney Villians The Musical feat Maleficent - Karaoke Version from Zoom Karaoke", - "id": "NijU4eQzWgo" - }, - { - "title": "Perry Como - Dream On Little Dreamer - Karaoke Version from Zoom Karaoke", - "id": "NJCZxjk8otI" - }, - { - "title": "Radiohead - Nice Dream - Karaoke Version from Zoom Karaoke", - "id": "Bv_iT13q1Xg" - }, - { - "title": "Gregory Isaacs - Night Nurse - Karaoke Version from Zoom Karaoke", - "id": "AqZHd6UW1Q0" - }, - { - "title": "Phil Collins - I Wish It Would Rain Down - Karaoke Version from Zoom Karaoke", - "id": "AUqJfZ-q9y4" - }, - { - "title": "Crowded House - Four Seasons In One Day - Karaoke Version from Zoom Karaoke", - "id": "82BhQCdkmOU" - }, - { - "title": "Natalie Imbruglia - Big Mistake - Karaoke Version from Zoom Karaoke", - "id": "xYn423gEbh0" - }, - { - "title": "Pocahontas - Savages (Parts I & II) - Karaoke Version from Zoom Karaoke", - "id": "qrsnR_OabKM" - }, - { - "title": "Tame Impala - Let It Happen - Karaoke Version from Zoom Karaoke", - "id": "oQTHebTQhcg" - }, - { - "title": "Sheryl Crow - Sweet Child O' Mine - Karaoke Version from Zoom Karaoke", - "id": "gkMK4DcIfO0" - }, - { - "title": "Marc Cohn - Walking In Memphis - Karaoke Version from Zoom Karaoke", - "id": "efJgLdT9XsY" - }, - { - "title": "The Beach Boys - Kokomo - Karaoke Version from Zoom Karaoke", - "id": "aHmfaaKerP4" - }, - { - "title": "Patsy Gallant - From New York To L.A. - Karaoke Version from Zoom Karaoke", - "id": "RaHDK3vrUqs" - }, - { - "title": "Kids From Fame - Starmaker - Karaoke Version from Zoom Karaoke", - "id": "LQUOianj4wY" - }, - { - "title": "Junior Murvin - Police And Thieves - Karaoke Version from Zoom Karaoke", - "id": "I_DsSk723tE" - }, - { - "title": "Flo Rida - My House - Karaoke Version from Zoom Karaoke", - "id": "BeCe8DLUZsk" - }, - { - "title": "The Wombles - The Wombling Song - Karaoke Version from Zoom Karaoke", - "id": "5QWIZbWBErk" - }, - { - "title": "My Fair Lady - Wouldn't It Be Loverly - Karaoke Version from Zoom Karaoke", - "id": "1uCtZ4B6o4s" - }, - { - "title": "Silento - Watch Me (Whip / Nae Nae) - Karaoke Version from Zoom Karaoke", - "id": "-L1-HuEBkoU" - }, - { - "title": "Chicago - You're The Inspiration - Karaoke Version from Zoom Karaoke", - "id": "tFaqTTHJKOY" - }, - { - "title": "Rick Astley - Cry For Help - Karaoke Version from Zoom Karaoke", - "id": "oN0OS3Y3PAY" - }, - { - "title": "Angry Anderson - Suddenly - Karaoke Version from Zoom Karaoke", - "id": "ZA_rUQGGnwY" - }, - { - "title": "Chicago - Hard To Say I'm Sorry - Karaoke Version from Zoom Karaoke", - "id": "UKQUBjIMwKo" - }, - { - "title": "Flume feat Kai - Never Be Like You - Karaoke Version from Zoom Karaoke", - "id": "MAOviRwF-eE" - }, - { - "title": "Phil Collins - Can't Stop Loving You - Karaoke Version from Zoom Karaoke", - "id": "z9GXvduKcU8" - }, - { - "title": "Mike Posner - I Took A Pill In Ibiza - Karaoke Version from Zoom Karaoke", - "id": "q5JHSMp_QMQ" - }, - { - "title": "Donna Summer - Love To Love You Baby - Karaoke Version from Zoom Karaoke", - "id": "n0Y4tnnOIkQ" - }, - { - "title": "DJ Snake feat Justin Bieber - Let Me Love You - Karaoke Version from Zoom Karaoke", - "id": "vdNc33woMGo" - }, - { - "title": "Chaka Khan - I Feel For You (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "pOtE6wDWj8o" - }, - { - "title": "Edith Piaf - La Vie En Rose - Karaoke Version from Zoom Karaoke", - "id": "j4sdvX51mpc" - }, - { - "title": "Chuck Berry - My Ding A Ling - Karaoke Version from Zoom Karaoke", - "id": "_9flI_OLEpI" - }, - { - "title": "KD Lang - Constant Craving - Karaoke Version from Zoom Karaoke", - "id": "T6fVbzUNPdk" - }, - { - "title": "Kylie Minogue - Tears On My Pillow - Karaoke Version from Zoom Karaoke", - "id": "SrgvgkA7nEk" - }, - { - "title": "Mulan - Reflection - Karaoke Version from Zoom Karaoke", - "id": "Iu5g7DyqLWY" - }, - { - "title": "Republica - Drop Dead Gorgeous - Karaoke Version from Zoom Karaoke", - "id": "IaDJDvejrxg" - }, - { - "title": "Level 42 - Lessons In Love - Karaoke Version from Zoom Karaoke", - "id": "GixAlcHAdcc" - }, - { - "title": "Pocahontas - Listen With Your Heart - Karaoke Version from Zoom Karaoke", - "id": "8Jf-UIEQANA" - }, - { - "title": "Flight Of The Conchords - The Most Beautiful Girl In The Room - Karaoke Version from Zoom Karaoke", - "id": "-pbZgc768ac" - }, - { - "title": "Beres Hammond - They Gonna Talk - Karaoke Version from Zoom Karaoke", - "id": "uNjWt8jCgxE" - }, - { - "title": "Vanessa Williams - Save The Best For Last - Karaoke Version from Zoom Karaoke", - "id": "DI6Q_qwwbGQ" - }, - { - "title": "The Smiths - The Headmaster Ritual - Karaoke Version from Zoom Karaoke", - "id": "Cit2y8FuEsQ" - }, - { - "title": "The Commitments - I Can't Stand The Rain - Karaoke Version from Zoom Karaoke", - "id": "86756LoyUC4" - }, - { - "title": "Tame Impala - Elephant - Karaoke Version from Zoom Karaoke", - "id": "3KpDTbQ7W1o" - }, - { - "title": "Luther Vandross & Janet Jackson - The Best Things In Life Are Free - Karaoke Version from Zoom", - "id": "nWfQ6gem7go" - }, - { - "title": "Phil Collins - I Don't Care Anymore - Karaoke Version from Zoom Karaoke", - "id": "jnQQdHXE6v4" - }, - { - "title": "Phil Collins - Do You Remember - Karaoke Version from Zoom Karaoke", - "id": "hoCCzFA876s" - }, - { - "title": "TV Theme - Monster High (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "gnTzOaTF1FM" - }, - { - "title": "Chainsmokers feat Halsey - Closer - Karaoke Version from Zoom Karaoke", - "id": "YFu48Y4JlOg" - }, - { - "title": "Steel Panther - Death To All But Metal - Karaoke Version from Zoom Karaoke", - "id": "UBx63Uby4sg" - }, - { - "title": "TV Theme - Monster High (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "OwHqPFXo7Wg" - }, - { - "title": "First Aid Kit - My Silver Lining - Karaoke Version from Zoom Karaoke", - "id": "InF-blPxY2U" - }, - { - "title": "Shirley Bassey - Kiss Me Honey Honey Kiss Me - Karaoke Version from Zoom Karaoke", - "id": "HD2OHyHzhQ4" - }, - { - "title": "Hilltop Hoods - Cosby Sweater - Karaoke Version from Zoom Karaoke", - "id": "FPVLoI6N3YQ" - }, - { - "title": "Hall And Oates - Private Eyes - Karaoke Version from Zoom Karaoke", - "id": "x_nYfDw3kUk" - }, - { - "title": "The Smiths - Some Girls Are Bigger Than Others - Karaoke Version from Zoom Karaoke", - "id": "vDxZMk_lr2w" - }, - { - "title": "Bette Midler - The Glory Of Love - Karaoke Version from Zoom Karaoke", - "id": "mHoR1sXGur0" - }, - { - "title": "Twenty One Pilots - Heathens - Karaoke Version from Zoom Karaoke", - "id": "hudsrArKuZA" - }, - { - "title": "Dennis Brown - Here I Come - Karaoke Version from Zoom Karaoke", - "id": "MBZVn1pLez8" - }, - { - "title": "Boyce Avenue - Titanium - Karaoke Version from Zoom Karaoke", - "id": "DRrZomvEBm0" - }, - { - "title": "The Smiths - That Joke Isn't Funny Anymore - Karaoke Version from Zoom Karaoke", - "id": "6zeI9LAHrGU" - }, - { - "title": "Katy Perry - Thinking Of You - Karaoke Version from Zoom Karaoke", - "id": "-gOWALSpwG0" - }, - { - "title": "The Smiths - The Night Has Opened My Eyes - Karaoke Version from Zoom Karaoke", - "id": "hocKoxPpGaU" - }, - { - "title": "A1 - Like A Rose - Karaoke Version from Zoom Karaoke", - "id": "HBy2CJFYG0g" - }, - { - "title": "John McLean - If I Gave My Heart To You - Karaoke Version from Zoom Karaoke", - "id": "551yF6epgdc" - }, - { - "title": "The Smiths - Unloveable - Karaoke Version from Zoom Karaoke", - "id": "y0ypAavqRAE" - }, - { - "title": "Maxi Priest - Just A Little Bit Longer - Karaoke Version from Zoom Karaoke", - "id": "vaGWEd0kJRE" - }, - { - "title": "Rick Astley - When I Fall In Love - Karaoke Version from Zoom Karaoke", - "id": "vLK2Xoq9YN0" - }, - { - "title": "Hall And Oates - You Make My Dreams - Karaoke Version from Zoom Karaoke", - "id": "vBF2vedymOI" - }, - { - "title": "Glen Washington - One Of The Days - Karaoke Version from Zoom Karaoke", - "id": "tMILLsWCMgs" - }, - { - "title": "Ozzy And Kelly Osbourne - Changes - Karaoke Version from Zoom Karaoke", - "id": "hdJSklZACGo" - }, - { - "title": "The Cardigans - My Favourite Game - Karaoke Version from Zoom Karaoke", - "id": "IXqRrI783z8" - }, - { - "title": "Barenaked Ladies - Passcode - Karaoke Version from Zoom Karaoke", - "id": "8gfBU7k4qxc" - }, - { - "title": "Major Lazer feat Justin Bieber and MO - Cold Water - Karaoke Version from Zoom", - "id": "3MJ4Paz5L0k" - }, - { - "title": "Rihanna - Sledgehammer - Karaoke Version from Zoom Karaoke", - "id": "1BVYN-hzwrY" - }, - { - "title": "Sam Smith - Nirvana - Karaoke Version from Zoom Karaoke", - "id": "0ZnMPy0HzLk" - }, - { - "title": "Rick Astley - She Wants To Dance With Me - Karaoke Version from Zoom Karaoke", - "id": "XpcAYjLME4E" - }, - { - "title": "DNCE - Toothbrush - Karaoke Version from Zoom Karaoke", - "id": "3bjuAq6D_t0" - }, - { - "title": "Major Lazer feat Justin Bieber and MO - Cold Water - Karaoke Version from Zoom", - "id": "uQgllJ7yc7c" - }, - { - "title": "Galantis - Peanut Butter Jelly - Karaoke Version from Zoom Karaoke", - "id": "tEP3NAMTJWo" - }, - { - "title": "Calum Scott - Dancing On My Own (Tiesto Remix) - Karaoke Version from Zoom Karaoke", - "id": "VyCEBc670CM" - }, - { - "title": "Enya - Orinoco Flow - Karaoke Version from Zoom Karaoke", - "id": "T7FWdjOtJIk" - }, - { - "title": "Grace - Hell Of A Girl - Karaoke Version from Zoom Karaoke", - "id": "Sa3DNeEGVwk" - }, - { - "title": "The Smiths - Unhappy Birthday - Karaoke Version from Zoom Karaoke", - "id": "PER3EIHn1mE" - }, - { - "title": "Rick Astley - Whenever You Need Somebody - Karaoke Version from Zoom Karaoke", - "id": "O9gu536poPs" - }, - { - "title": "Meghan Trainor - Better When I'm Dancing - Karaoke Version from Zoom Karaoke", - "id": "8vc2SPpj2fc" - }, - { - "title": "Sia feat Sean Paul - Cheap Thrills (Remix) - Karaoke Version from Zoom Karaoke", - "id": "-XoJ_fdESeA" - }, - { - "title": "Neil Sedaka - Laughter In The Rain - Karaoke Version from Zoom Karaoke", - "id": "TLQ9WBdFoxU" - }, - { - "title": "Tony Rebel - Jah By My Side - Karaoke Version from Zoom Karaoke", - "id": "6HaAft8YHC0" - }, - { - "title": "Vaughn Monroe - Riders In The Sky (A Cowboy Legend) - Karaoke Version from Zoom Karaoke", - "id": "n-_SJ-gEa5k" - }, - { - "title": "Glen Washington - If Loving You Is Wrong I Don't Want To Be Right - Karaoke Version from Zoom", - "id": "WMuDTY3rsMk" - }, - { - "title": "The Carpenters - For All We Know - Karaoke Version from Zoom Karaoke", - "id": "Qb6WaiQT2eo" - }, - { - "title": "Amy Grant - Baby Baby - Karaoke Version from Zoom Karaoke", - "id": "ru5RqBCr0X4" - }, - { - "title": "Stevie Nicks - Stand Back - Karaoke Version from Zoom Karaoke", - "id": "w9hVAG9laJA" - }, - { - "title": "Iron Maiden - Aces High - Karaoke Version from Zoom Karaoke", - "id": "w2JKS9zDhRU" - }, - { - "title": "Shola Ama - You Might Need Somebody - Karaoke Version from Zoom Karaoke", - "id": "uGBaxlCZLgk" - }, - { - "title": "Perry Como - If I Could Almost Read Your Mind - Karaoke Version from Zoom Karaoke", - "id": "t9GNjoXh-_o" - }, - { - "title": "Jimmy Helms - Gonna Make You An Offer You Can't Refuse - Karaoke Version from Zoom Karaoke", - "id": "mGsNKYBbM6c" - }, - { - "title": "Glen Washington - Strangers In The Night - Karaoke Version from Zoom Karaoke", - "id": "mGoPAkeHjm8" - }, - { - "title": "Rui Da Silva feat Cassandra - Touch Me - Karaoke Version from Zoom Karaoke", - "id": "ke0SiWQwK_M" - }, - { - "title": "Oklahoma - Oh, What A Beautiful Mornin' - Karaoke Version from Zoom Karaoke", - "id": "jKJGgTHhQPI" - }, - { - "title": "The Marvelettes - Please Mr Postman - Karaoke Version from Zoom Karaoke", - "id": "fDclp5ylF38" - }, - { - "title": "Willy Wonka And The Chocolate Factory - Oompa Loompa - Karaoke Version from Zoom Karaoke", - "id": "dVumoQ2ZwEY" - }, - { - "title": "Regina Spektor - You've Got Time - Karaoke Version from Zoom Karaoke", - "id": "d0RzojsrQJI" - }, - { - "title": "Spandau Ballet - I'll Fly For You - Karaoke Version from Zoom Karaoke", - "id": "XuSnzdLObwI" - }, - { - "title": "Miss Saigon - Why God Why - Karaoke Version from Zoom Karaoke", - "id": "UDI-UjX5r2M" - }, - { - "title": "Eurythmics - Love Is A Stranger - Karaoke Version from Zoom Karaoke", - "id": "KTBbGZyd7Jw" - }, - { - "title": "Cascada - What Hurts The Most - Karaoke Version from Zoom Karaoke", - "id": "K2ZWbiCFXZg" - }, - { - "title": "George Benson - The Greatest Love Of All - Karaoke Version from Zoom Karaoke", - "id": "D12Dm9wngdw" - }, - { - "title": "Tom Petty And The Heartbreakers - I Won't Back Down - Karaoke Version from Zoom Karaoke", - "id": "7fL2JEs-oJw" - }, - { - "title": "Gnash feat Olivia O'Brien - I Hate U, I Love U - Karaoke Version from Zoom", - "id": "7L_9b5YanSw" - }, - { - "title": "Rick Astley - Angels On My Side - Karaoke Version from Zoom Karaoke", - "id": "6HlK3gqYbJI" - }, - { - "title": "Randy Crawford - You Might Need Somebody - Karaoke Version from Zoom Karaoke", - "id": "6-aWeKgg_kI" - }, - { - "title": "Tarrus Riley - Gimme Likkle One Drop - Karaoke Version from Zoom Karaoke", - "id": "5lsfyeH7Gqs" - }, - { - "title": "The Commitments - Take Me To The River - Karaoke Version from Zoom Karaoke", - "id": "1Kh9Nl42uMw" - }, - { - "title": "OneRepublic - Wherever I Go - Karaoke Version from Zoom Karaoke", - "id": "tuSKw349X8I" - }, - { - "title": "Soft Cell - Tainted Love Where Did Our Love Go - Karaoke Version from Zoom Karaoke", - "id": "ox6waUbFO0c" - }, - { - "title": "Primal Scream - Rocks - Karaoke Version from Zoom Karaoke", - "id": "PVd-5RY0pFk" - }, - { - "title": "Gene Kelly - Singin' In The Rain - Karaoke Version from Zoom Karaoke", - "id": "EX12QF0_Oi4" - }, - { - "title": "Dennis Brown - Revolution - Karaoke Version from Zoom Karaoke", - "id": "BwhaUJrzboA" - }, - { - "title": "Tom Petty And The Heartbreakers - Learning To Fly - Karaoke Version from Zoom Karaoke", - "id": "65fMphfiZUk" - }, - { - "title": "Garth Brooks - The Thunder Rolls - Karaoke Version from Zoom Karaoke", - "id": "1zQG45Na7Zc" - }, - { - "title": "Bobby Vee - One Last Kiss - Karaoke Version from Zoom Karaoke", - "id": "zW3seEbxPPM" - }, - { - "title": "Bruce Springsteen - Glory Days - Karaoke Version from Zoom Karaoke", - "id": "vnsbjZov0RE" - }, - { - "title": "INXS - New Sensation - Karaoke Version from Zoom Karaoke", - "id": "omfMTEH3gtM" - }, - { - "title": "Frank Sinatra - Love's Been Good To Me - Karaoke Version from Zoom Karaoke", - "id": "nyN-61gjK-8" - }, - { - "title": "Major Lazer X DJ Snake feat MO - Lean On - Karaoke Version from Zoom Karaoke", - "id": "ntua9o2U73I" - }, - { - "title": "Clean Bandit feat Louisa Johnson - Tears - Karaoke Version from Zoom Karaoke", - "id": "kjPG4ETQ2vE" - }, - { - "title": "The Smiths - Stop Me If You Think You've Heard This One Before - Karaoke Version from Zoom", - "id": "kZxHKaQ3omM" - }, - { - "title": "Soft Cell - Where Did Our Love Go - Karaoke Version from Zoom Karaoke", - "id": "k8gDeQLbLKg" - }, - { - "title": "Olly Murs - You Don't Know Love - Karaoke Version from Zoom Karaoke", - "id": "eZ8H9LQOG2Y" - }, - { - "title": "The Smiths - I Know It's Over - Karaoke Version from Zoom Karaoke", - "id": "cql-ni9XbBU" - }, - { - "title": "Pussycat Dolls - When I Grow Up - Karaoke Version from Zoom Karaoke", - "id": "cnpp7BwbXIQ" - }, - { - "title": "Perry Como - It's Impossible - Karaoke Version from Zoom Karaoke", - "id": "bw-IpiFWxAI" - }, - { - "title": "Maxi Priest - Some Guys Have All The Luck - Karaoke Version from Zoom Karaoke", - "id": "b8ogV2EHJuw" - }, - { - "title": "Bobby Vinton - Roses Are Red (My Love) - Karaoke Version from Zoom Karaoke", - "id": "U3kmIlYILTA" - }, - { - "title": "Sigma feat Take That - Cry - Karaoke Version from Zoom Karaoke", - "id": "OYLB4hTh7u8" - }, - { - "title": "Earth Wind And Fire - Fantasy - Karaoke Version from Zoom Karaoke", - "id": "MTcBRL1-TmQ" - }, - { - "title": "Jamie Lawson - Someone For Everyone - Karaoke Version from Zoom Karaoke", - "id": "LqeC3aD-0ug" - }, - { - "title": "Maxi Priest - Wild World - Karaoke Version from Zoom Karaoke", - "id": "HBugteUNoDI" - }, - { - "title": "Tom Jones - You Can Leave Your Hat On - Karaoke Version from Zoom Karaoke", - "id": "-Vwn78B846I" - }, - { - "title": "Reggie 'N' Bollie - New Girl - Karaoke Version from Zoom Karaoke", - "id": "c0OWStQBotA" - }, - { - "title": "Lukas Graham - Mama Said - Karaoke Version from Zoom Karaoke", - "id": "GsTZPMtvysU" - }, - { - "title": "Deacon Blue - I'll Never Fall In Love Again (For Solo Male) - Karaoke Version from Zoom Kara", - "id": "9AkiUZli2bI" - }, - { - "title": "Chas And Dave - Stars Over 45 - Karaoke Version from Zoom Karaoke", - "id": "3bmoCseJoWs" - }, - { - "title": "Tarrus Riley - Sorry Is A Sorry Word - Karaoke Version from Zoom Karaoke", - "id": "t2Kk5SLFmOM" - }, - { - "title": "Shirley Bassey - I (Who Have Nothing) - Karaoke Version from Zoom Karaoke", - "id": "Mfaf3TrYiY0" - }, - { - "title": "Beres Hammond - Love From A Distance - Karaoke Version from Zoom Karaoke", - "id": "rOEhWXEGCp8" - }, - { - "title": "Tom Petty And The Heartbreakers - Mary Jane's Last Dance - Karaoke Version from Zoom Karaoke", - "id": "fJkWJ-PuJaI" - }, - { - "title": "Kungs Vs Cookin' On 3 Burners - This Girl - Karaoke Version from Zoom Karaoke", - "id": "ck3ogOIlTM8" - }, - { - "title": "Republica - Ready To Go - Karaoke Version from Zoom Karaoke", - "id": "bqwZ34kPwfw" - }, - { - "title": "The Carpenters - Sing - Karaoke Version from Zoom Karaoke", - "id": "LyvnM5k2bD0" - }, - { - "title": "Twenty One Pilots - Ride - Karaoke Version from Zoom Karaoke", - "id": "E80ojclQzK4" - }, - { - "title": "Nicole - A Little Peace - Karaoke Version from Zoom Karaoke", - "id": "DPTNq5xxpoc" - }, - { - "title": "The Rolling Stones - Gimme Shelter - Karaoke Version from Zoom Karaoke", - "id": "Av5fTV0OuHI" - }, - { - "title": "Yazoo - Nobody's Diary - Karaoke Version from Zoom Karaoke", - "id": "1wocKj3SN_4" - }, - { - "title": "Ariana Grande - Dangerous Woman - Karaoke Version from Zoom Karaoke", - "id": "1SHnd42e13w" - }, - { - "title": "Chas And Dave - Gertcha - Karaoke Version from Zoom Karaoke", - "id": "Ux2AM860gmM" - }, - { - "title": "Alan Walker - Faded - Karaoke Version from Zoom Karaoke", - "id": "x4RyAMFcaSk" - }, - { - "title": "Lou Rawls - You'll Never Find Another Love Like Mine - Karaoke Version from Zoom Karaoke", - "id": "v_YGO34l300" - }, - { - "title": "The Stone Roses - All For One - Karaoke Version from Zoom Karaoke", - "id": "r9L2l_jExf0" - }, - { - "title": "Depeche Mode - Everything Counts - Karaoke Version from Zoom Karaoke", - "id": "nutB7i8dyu4" - }, - { - "title": "Shirley Bassey - This Is My Life - Karaoke Version from Zoom Karaoke", - "id": "ngN4erXn8y0" - }, - { - "title": "Diana Ross - Touch Me In The Morning - Karaoke Version from Zoom Karaoke", - "id": "nOFaFMoW5S4" - }, - { - "title": "Chas And Dave - London Girls - Karaoke Version from Zoom Karaoke", - "id": "l-v0ewi283Q" - }, - { - "title": "Stevie Nicks - Edge Of Seventeen - Karaoke Version from Zoom Karaoke", - "id": "Ng7cGBbnSxw" - }, - { - "title": "Annie Get Your Gun - Anything You Can Do - Karaoke Version from Zoom Karaoke", - "id": "DhPlFcigaXU" - }, - { - "title": "Justin Bieber - Company - Karaoke Version from Zoom Karaoke", - "id": "BtEbGF31lIE" - }, - { - "title": "Scouting For Girls - I Wish I Was James Bond - Karaoke Version from Zoom Karaoke", - "id": "1wFYFP_uM5o" - }, - { - "title": "Galantis - No Money - Karaoke Version from Zoom Karaoke", - "id": "XeF25kCbFPs" - }, - { - "title": "Halsey - Colours - Karaoke Version from Zoom Karaoke", - "id": "F9E1L45g87U" - }, - { - "title": "Ariana Grande - Into You - Karaoke Version from Zoom Karaoke", - "id": "70AIChUfOV8" - }, - { - "title": "Showboat - Can't Help Lovin' Dat Man - Karaoke Version from Zoom Karaoke", - "id": "yK301DV9YUI" - }, - { - "title": "Calvin Harris feat Rihanna - This Is What You Came For - Karaoke Version from Zoom Karaok", - "id": "uenyJUrQphU" - }, - { - "title": "Meghan Trainor - Just A Friend To You (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "slxU77maHrs" - }, - { - "title": "Little Mix feat Sean Paul - Hair (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "c3yPs_fPz5M" - }, - { - "title": "TV Theme - Horrid Henry - Karaoke Version from Zoom Karaoke", - "id": "PAYpv12llD8" - }, - { - "title": "TV Theme - Fireman Sam - Karaoke Version from Zoom Karaoke", - "id": "OM89G8IEykI" - }, - { - "title": "Dennis Brown - Sitting And Watching - Karaoke Version from Zoom Karaoke", - "id": "JhaPB6wskVk" - }, - { - "title": "TV Theme - Fraggle Rock - Karaoke Version from Zoom Karaoke", - "id": "C2KSmJDsEns" - }, - { - "title": "Meghan Trainor - Hopeless Romantic - Karaoke Version from Zoom Karaoke", - "id": "2a4t7cQAooY" - }, - { - "title": "Radiohead - Burn The Witch - Karaoke Version from Zoom Karaoke", - "id": "y8XoVTrueLM" - }, - { - "title": "The Smiths - Asleep - Karaoke Version from Zoom Karaoke", - "id": "x-eMg5HMHI0" - }, - { - "title": "TV Theme - Bertha - Karaoke Version from Zoom Karaoke", - "id": "j3u7h2yFMqE" - }, - { - "title": "Lazy Town - Bing Bang (Time To Dance) - Karaoke Version from Zoom Karaoke", - "id": "OjvswIUcAFc" - }, - { - "title": "Meghan Trainor - Champagne Problems - Karaoke Version from Zoom Karaoke", - "id": "C4qHuaCCqmg" - }, - { - "title": "Justin Timberlake - Can't Stop The Feeling - Karaoke Version from Zoom Karaoke", - "id": "391uC33uI94" - }, - { - "title": "Gladys Knight - Help Me Make It Through The Night - Karaoke Version from Zoom Karaoke", - "id": "2ST8SJnHv5s" - }, - { - "title": "Alice Gold - Runaway Love - Karaoke Version from Zoom Karaoke", - "id": "1jwEmHFmsLY" - }, - { - "title": "Marti Webb - Take That Look Off Your Face - Karaoke Version from Zoom Karaoke", - "id": "sHrZIXsR2qs" - }, - { - "title": "Josh Groban - You Raise Me Up - Karaoke Version from Zoom Karaoke", - "id": "nQVx8Ov9hgs" - }, - { - "title": "The Rolling Stones - Miss You - Karaoke Version from Zoom Karaoke", - "id": "alME8Tthh1w" - }, - { - "title": "Meghan Trainor - Me Too - Karaoke Version from Zoom Karaoke", - "id": "Yhdd1qnqt_E" - }, - { - "title": "TV Theme - Super Gran - Karaoke Version from Zoom Karaoke", - "id": "Bx_5oBvfsj4" - }, - { - "title": "TV Theme - Balamory - Karaoke Version from Zoom Karaoke", - "id": "8cCYNTzX0CA" - }, - { - "title": "Steel Panther - Gloryhole - Karaoke Version from Zoom Karaoke", - "id": "75Wfyj2rySE" - }, - { - "title": "The Temptations - Just My Imagination Running Away With Me - Karaoke Version from Zoom Kar", - "id": "gkTjOD74Xqk" - }, - { - "title": "Samantha Fox - Touch Me (I Want Your Body) - Karaoke Version from Zoom Karaoke", - "id": "f0cNEBV3EiM" - }, - { - "title": "Green Day - Revolution Radio - Karaoke Version from Zoom Karaoke", - "id": "CFhQSEIlw8A" - }, - { - "title": "The Sweet - The Sweet Medley - Karaoke Version from Zoom Karaoke", - "id": "M8k95iogP0w" - }, - { - "title": "Johnny Cash - The General Lee - Karaoke Version from Zoom Karaoke", - "id": "aZT75221C5M" - }, - { - "title": "Westlife - Queen Of My Heart - Karaoke Version from Zoom Karaoke", - "id": "3Kt7BxGey8M" - }, - { - "title": "The Pointer Sisters - Slow Hand - Karaoke Version from Zoom Karaoke", - "id": "gFbtP4GaVaQ" - }, - { - "title": "Michael Buble feat Black Thought - Nobody But Me (Duet Version) - Karaoke Version from Zoom", - "id": "lcr0dek58tw" - }, - { - "title": "OneRepublic - Kids - Karaoke Version from Zoom Karaoke", - "id": "k6xVQKD0uNo" - }, - { - "title": "Deacon Blue - When Will You Make My Telephone Ring - Karaoke Version from Zoom Karaoke", - "id": "J6khPjsY1xg" - }, - { - "title": "Rick Astley - God Says - Karaoke Version from Zoom Karaoke", - "id": "HZmmY6Q0J7U" - }, - { - "title": "Green Day - Still Breathing - Karaoke Version from Zoom Karaoke", - "id": "QcagcyDmz90" - }, - { - "title": "Calvin Harris - My Way - Karaoke Version from Zoom Karaoke", - "id": "MKTNSTjS-Pg" - }, - { - "title": "AC/DC - Hell's Bells - Karaoke Version from Zoom Karaoke", - "id": "hcpYU7LHe3M" - }, - { - "title": "Selena Gomez - Same Old Love - Karaoke Version from Zoom Karaoke", - "id": "S1JF4VdKDmU" - }, - { - "title": "Ward Thomas - Guilty Flowers - Karaoke Version from Zoom Karaoke", - "id": "D7KRCXDDobc" - }, - { - "title": "Ward Thomas - Carry You Home - Karaoke Version from Zoom Karaoke", - "id": "pn2aUUqx4wI" - }, - { - "title": "No Doubt - Just A Girl - Karaoke Version from Zoom Karaoke", - "id": "_ectf5jG-UQ" - }, - { - "title": "Little Mix - Shout Out To My Ex - Karaoke Version from Zoom Karaoke", - "id": "7o58bSRKDW4" - }, - { - "title": "Michael Buble - I Believe In You - Karaoke Version from Zoom Karaoke", - "id": "h0JZQH-ol0Q" - }, - { - "title": "The Skyliners - Since I Don't Have You - Karaoke Version from Zoom Karaoke", - "id": "Yl5zc93zpIU" - }, - { - "title": "James Arthur - Say You Won't Let Go - Karaoke Version from Zoom Karaoke", - "id": "1OqECrWsORQ" - }, - { - "title": "Tom Odell - I Know - Karaoke Version from Zoom Karaoke", - "id": "Ocr2E_mKf8U" - }, - { - "title": "Jon And Vangelis - I'll Find My Way Home - Karaoke Version from Zoom Karaoke", - "id": "MNR58Y5gUeo" - }, - { - "title": "Daya - Sit Still, Look Pretty - Karaoke Version from Zoom Karaoke", - "id": "HSsF40YI050" - }, - { - "title": "Lady Gaga - Perfect Illusion - Karaoke Version from Zoom Karaoke", - "id": "8BvsPzJFd9M" - }, - { - "title": "Al Martino - Spanish Eyes - Karaoke Version from Zoom Karaoke", - "id": "nDxKC5huHow" - }, - { - "title": "Chris Cornell - You Know My Name - Karaoke Version from Zoom Karaoke", - "id": "Lwx8xc7Ejz4" - }, - { - "title": "Lady Gaga - Million Reasons - Karaoke Version from Zoom Karaoke", - "id": "Fhv-B6lBjIg" - }, - { - "title": "Joni Mitchell - River - Karaoke Version from Zoom Karaoke", - "id": "vcUt10M5paI" - }, - { - "title": "Iron Maiden - Wasted Years - Karaoke Version from Zoom Karaoke", - "id": "f9bKDvi0OoU" - }, - { - "title": "John Legend - Love Me Now - Karaoke Version from Zoom Karaoke", - "id": "MoVmletqU-U" - }, - { - "title": "Michael Buble feat Black Thought - Nobody But Me (With Rapper) - Karaoke Version from Zoom", - "id": "MHxTyHUTB5k" - }, - { - "title": "Level 42 - Something About You - Karaoke Version from Zoom Karaoke", - "id": "COwNgWOC98E" - }, - { - "title": "Robbie Williams - Have You Met Miss Jones - Karaoke Version from Zoom Karaoke", - "id": "_TgR4h3zRU8" - }, - { - "title": "The Smiths - Please Please Please Let Me Get What I Want - Karaoke Version from Zoom Karaoke", - "id": "HuuGtnvPXbA" - }, - { - "title": "Morgan Heritage - She's Still Loving Me - Karaoke Version from Zoom Karaoke", - "id": "TUyUB7S3mN8" - }, - { - "title": "Aaliyah - More Than A Woman - Karaoke Version from Zoom Karaoke", - "id": "wI_ez3oTFgA" - }, - { - "title": "Ellie Goulding - Still Falling For You - Karaoke Version from Zoom Karaoke", - "id": "eSrQ3Dj22Rk" - }, - { - "title": "Patti LaBelle And Michael McDonald - On My Own - Karaoke Version from Zoom Karaoke", - "id": "MNntCG-GKs0" - }, - { - "title": "Olly Murs - Grow Up - Karaoke Version from Zoom Karaoke", - "id": "DY43RMPFa-A" - }, - { - "title": "Shawn Mendes - Mercy - Karaoke Version from Zoom Karaoke", - "id": "A6BZhhKRI1g" - }, - { - "title": "Patsy Cline - Back In Baby's Arms - Karaoke Version from Zoom Karaoke", - "id": "uqWLxg3EVe4" - }, - { - "title": "Bobby Hebb - Sunny - Karaoke Version from Zoom Karaoke", - "id": "q64dxEuyASU" - }, - { - "title": "Hailee Steinfeld And Grey feat Zedd - Starving - Karaoke Version from Zoom Karaoke", - "id": "kkmKoehGjOM" - }, - { - "title": "Perry Como - The Birth Of The Blues - Karaoke Version from Zoom Karaoke", - "id": "jysamoD-WzE" - }, - { - "title": "Kings Of Leon - Waste A Moment - Karaoke Version from Zoom Karaoke", - "id": "WNa1Gq-gLJ4" - }, - { - "title": "Charlie Puth feat Selena Gomez - We Don't Talk Anymore - Karaoke Version from Zoom Karaoke", - "id": "I0t_r-tfvhk" - }, - { - "title": "The Stone Roses - Mersey Paradise - Karaoke Version from Zoom Karaoke", - "id": "7pTF-MKL2RY" - }, - { - "title": "Ward Thomas - Cartwheels - Karaoke Version from Zoom Karaoke", - "id": "YWdVwzKM8tY" - }, - { - "title": "Panic At The Disco - L.A. Devotee - Karaoke Version from Zoom Karaoke", - "id": "RKyxxarNMjA" - }, - { - "title": "AC/DC - Rock And Roll Ain't Noise Pollution - Karaoke Version from Zoom Karaoke", - "id": "EKkJgxcdBvc" - }, - { - "title": "Phil Collins - True Colours - Karaoke Version from Zoom Karaoke", - "id": "9Eoe8OvlW88" - }, - { - "title": "Ariana Grande feat Nicki Minaj - Side To Side - Karaoke Version from Zoom Karaoke", - "id": "-VavgIAoo5Q" - }, - { - "title": "Years And Years - Meteorite - Karaoke Version from Zoom Karaoke", - "id": "hp3OR3OvPxg" - }, - { - "title": "Sia - Big Girls Cry - Karaoke Version from Zoom Karaoke", - "id": "GeQgitajolc" - }, - { - "title": "Fleetwood Mac - You Making Loving Fun - Karaoke Version from Zoom Karaoke", - "id": "y3Wb4uxu370" - }, - { - "title": "AC/DC - Dirty Deeds Done Cheap - Karaoke Version from Zoom Karaoke", - "id": "g3DpXYZzeUc" - }, - { - "title": "Diana Ross - Do You Know Where You're Going To - Karaoke Version from Zoom Karaoke", - "id": "dhUP2Wu1rdk" - }, - { - "title": "DeBarge - Rhythm Of The Night - Karaoke Version from Zoom Karaoke", - "id": "XK5XYfcpgYM" - }, - { - "title": "Selena Gomez - Same Old Love - Karaoke Version from Zoom Karaoke", - "id": "KUZQY4Z1BGU" - }, - { - "title": "Martin Garrix feat Bebe Rexha - In The Name Of Love - Karaoke Version from Zoom Karaoke", - "id": "6GABnmkBRfk" - }, - { - "title": "Darlene Love - Christmas (Baby Please Come Home) - Karaoke Version from Zoom Karaoke", - "id": "Z4sYYAMqNSM" - }, - { - "title": "Robbie Williams - Heavy Entertainment Show - Karaoke Version from Zoom Karaoke", - "id": "HOocHHZ2N7c" - }, - { - "title": "Belinda Carlisle - Mad About You - Karaoke Version from Zoom Karaoke", - "id": "DwsRRqi2o0s" - }, - { - "title": "Katy Perry - Rise - Karaoke Version from Zoom Karaoke", - "id": "uI0HhWiXGws" - }, - { - "title": "Enrique Iglesias - Bailamos - Karaoke Version from Zoom Karaoke", - "id": "a9HtQyPGxnc" - }, - { - "title": "Niall Horan - This Town - Karaoke Version from Zoom Karaoke", - "id": "ZeOPf0JTFlk" - }, - { - "title": "OneRepublic - Future Looks Good - Karaoke Version from Zoom Karaoke", - "id": "OYrjMsTAM90" - }, - { - "title": "Kenny Chesney feat Pink - Setting The World On Fire - Karaoke Version from Zoom Karaoke", - "id": "6aYKSdbcqTk" - }, - { - "title": "Storm Large - Eight Miles Wide - Karaoke Version from Zoom Karaoke", - "id": "mJJYJwcmNDY" - }, - { - "title": "Kelsea Ballerini - Peter Pan - Karaoke Version from Zoom Karaoke", - "id": "UAXRtqlQ-iA" - }, - { - "title": "Earth Wind And Fire - Let's Groove - Karaoke Version from Zoom Karaoke", - "id": "yo-ydhMWVQo" - }, - { - "title": "The Shires - A Thousand Hallelujahs - Karaoke Version from Zoom Karaoke", - "id": "ulcLRcuHdn0" - }, - { - "title": "Barbara Dickson - January February - Karaoke Version from Zoom Karaoke", - "id": "ll-I52tj4wI" - }, - { - "title": "Maroon 5 feat Kendrick Lamar - Don't Wanna Know - Karaoke Version from Zoom Karaoke", - "id": "fgT-t6jY2HI" - }, - { - "title": "The Pet Shop Boys - Suburbia - Karaoke Version from Zoom Karaoke", - "id": "ddvVrpZjuEY" - }, - { - "title": "Queen - Flash - Karaoke Version from Zoom Karaoke", - "id": "ddkCyr0ufUs" - }, - { - "title": "Joan Armatrading - Love And Affection - Karaoke Version from Zoom Karaoke", - "id": "bt7u9azTjIM" - }, - { - "title": "Robbie Williams - Party Like A Russian - Karaoke Version from Zoom Karaoke", - "id": "aVnUAXvNvnk" - }, - { - "title": "Sia feat Kendrick Lamar - The Greatest - Karaoke Version from Zoom Karaoke", - "id": "_7D8nRoJmBM" - }, - { - "title": "OMC - How Bizarre - Karaoke Version from Zoom Karaoke", - "id": "Kqv7Z1sEEcM" - }, - { - "title": "Dr Hook - Walk Right In - Karaoke Version from Zoom Karaoke", - "id": "BblPfNZHQdo" - }, - { - "title": "Rod Stewart - Hot Legs - Karaoke Version from Zoom Karaoke", - "id": "vB9uwkJWzic" - }, - { - "title": "Robbie Williams and Jonathan Wilkes - Me And My Shadow - Karaoke Version from Zoom Karaoke", - "id": "fLTBjhlrA5Y" - }, - { - "title": "Little Eva - The Loco-Motion - Karaoke Version from Zoom Karaoke", - "id": "Ia5E21hBbYY" - }, - { - "title": "Neiked feat Dyo - Sexual - Karaoke Version from Zoom Karaoke", - "id": "DOQ_EVvuOXk" - }, - { - "title": "Tom Odell - Wrong Crowd - Karaoke Version from Zoom Karaoke", - "id": "zqUj3LPWHBY" - }, - { - "title": "Rod Stewart - What Am I Gonna Do I'm So In Love With You - Karaoke Version from Zoom Karaoke", - "id": "pGstgrv2Hc0" - }, - { - "title": "Michael Buble - On An Evening In Roma - Karaoke Version from Zoom Karaoke", - "id": "bd97-qGCbh8" - }, - { - "title": "Pia Mia feat Tyga and Chris Brown - Do It Again - Karaoke Version from Zoom Karaoke", - "id": "AJN9gEAcdgY" - }, - { - "title": "Michael Buble - This Love Of Mine - Karaoke Version from Zoom Karaoke", - "id": "rF9oNBbZ5ks" - }, - { - "title": "Daniel O'Donnell - Sing Me An Old Irish Song - Karaoke Version from Zoom Karaoke", - "id": "WZUdWrKxyC0" - }, - { - "title": "John Miles - Music - Karaoke Version from Zoom Karaoke", - "id": "AkH0GXXxED8" - }, - { - "title": "Nathaniel Rateliff And The Night Sweats - I Need Never Get Old - Karaoke Version from Zoom", - "id": "Pwv-xiQKZqQ" - }, - { - "title": "A1 - Same Old Brand New You - Karaoke Version from Zoom Karaoke", - "id": "7jBA6fQvlLk" - }, - { - "title": "The Stone Roses - Fools Gold - Karaoke Version from Zoom Karaoke", - "id": "tMwXZSuP2Bo" - }, - { - "title": "Green Day - Bang Bang - Karaoke Version from Zoom Karaoke", - "id": "qXQjUEQt7so" - }, - { - "title": "The Doobie Brothers - Another Park Another Sunday - Karaoke Version from Zoom Karaoke", - "id": "ojXjcVhAPuw" - }, - { - "title": "Michael Buble - Take You Away - Karaoke Version from Zoom Karaoke", - "id": "kIatbmCbaig" - }, - { - "title": "Johnny Cash - Sunday Mornin' Comin' Down - Karaoke Version from Zoom Karaoke", - "id": "KPVblX8Bm3Q" - }, - { - "title": "The Weeknd - False Alarm - Karaoke Version from Zoom Karaoke", - "id": "x58nOC4k7Fo" - }, - { - "title": "Perry Como - In The Still Of The Night - Karaoke Version from Zoom Karaoke", - "id": "safVoAo8-4M" - }, - { - "title": "A Day To Remember - Naivety - Karaoke Version from Zoom Karaoke", - "id": "o6LIAJq3Tzk" - }, - { - "title": "Robbie Williams - Love My Life - Karaoke Version from Zoom Karaoke", - "id": "beXi01_EkUw" - }, - { - "title": "Journey - Open Arms - Karaoke Version from Zoom Karaoke", - "id": "FMKLru3TBUk" - }, - { - "title": "The New Seekers - The New Seekers Medley - Karaoke Version from Zoom Karaoke", - "id": "18oO8e5hLak" - }, - { - "title": "Billy Joel - Scenes From An Italian Restaurant - Karaoke Version from Zoom Karaoke", - "id": "x_xjH7XnyXY" - }, - { - "title": "Olly Murs - 24 Hrs - Karaoke Version from Zoom Karaoke", - "id": "vjBxxKQLn4Q" - }, - { - "title": "The Sweet - Co Co - Karaoke Version from Zoom Karaoke", - "id": "brqMINsU5SE" - }, - { - "title": "Nathaniel Rateliff And The Night Sweats - Howling At Nothing - Karaoke Version from Zoom Karaoke", - "id": "LCgTmSfIF3g" - }, - { - "title": "AC/DC - Shoot To Thrill - Karaoke Version from Zoom Karaoke", - "id": "wSPDkQYUIIE" - }, - { - "title": "Biffy Clyro - Howl - Karaoke Version from Zoom Karaoke", - "id": "PGvOjeHaK44" - }, - { - "title": "Ed Sheeran - Shape Of You - Karaoke Version from Zoom Karaoke", - "id": "Mbt6nFx4irU" - }, - { - "title": "Olly Murs - Deeper - Karaoke Version from Zoom Karaoke", - "id": "CY-xB_I6mGo" - }, - { - "title": "Gary Portnoy - Where Everybody Knows Your Name - Karaoke Version from Zoom Karaoke", - "id": "7doLAaLOOiU" - }, - { - "title": "Mika - Lollipop - Karaoke Version from Zoom Karaoke", - "id": "-maTLA5IIiw" - }, - { - "title": "Keane - A Bad Dream - Karaoke Version from Zoom Karaoke", - "id": "pkoxmjDW1m8" - }, - { - "title": "The Elgins - Heaven Must Have Sent You - Karaoke Version from Zoom Karaoke", - "id": "_b2MgQP0Wh4" - }, - { - "title": "Olly Murs - Read My Mind - Karaoke Version from Zoom Karaoke", - "id": "YBIB5YPUnU0" - }, - { - "title": "RuPaul - Sissy That Walk - Karaoke Version from Zoom Karaoke", - "id": "Bv8kcULsnLY" - }, - { - "title": "Jessie Ware - Say You Love Me - Karaoke Version from Zoom Karaoke", - "id": "87BTp6PRRns" - }, - { - "title": "Michael Buble - God Only Knows - Karaoke Version from Zoom Karaoke", - "id": "780rDVkJ57U" - }, - { - "title": "Journey - Any Way You Want It - Karaoke Version from Zoom Karaoke", - "id": "6w5jTkaSvd8" - }, - { - "title": "Pixies - The Holiday Song - Karaoke Version from Zoom Karaoke", - "id": "hYD6d5aTmGY" - }, - { - "title": "Van Morrison - Sweet Thing - Karaoke Version from Zoom Karaoke", - "id": "VeBn2c8Kfro" - }, - { - "title": "Van Morrison - Have I Told You Lately - Karaoke Version from Zoom Karaoke", - "id": "PHUP73FU4B4" - }, - { - "title": "Bad Manners - My Girl Lollipop - Karaoke Version from Zoom Karaoke", - "id": "y8yj_nIu1pY" - }, - { - "title": "Tom Odell - Grow Old With Me - Karaoke Version from Zoom Karaoke", - "id": "mJehU8pk80Q" - }, - { - "title": "Blondie - Shayla - Karaoke Version from Zoom Karaoke", - "id": "Tv7G1T9cHeA" - }, - { - "title": "A Flock Of Seagulls- I Ran - Karaoke Version from Zoom Karaoke", - "id": "RD6ONoJF6_M" - }, - { - "title": "Tom Odell - Here I Am - Karaoke Version from Zoom Karaoke", - "id": "P9YpeVyXOBI" - }, - { - "title": "David Bowie - Queen Bitch - Karaoke Version from Zoom Karaoke", - "id": "CU2nikesNN8" - }, - { - "title": "Rae Sremmurd feat Gucci Mane - Black Beatles - Karaoke Version from Zoom Karaoke", - "id": "1WYrHf7eWF8" - }, - { - "title": "The Chainsmokers feat Phoebe Ryan - All We Know - Karaoke Version from Zoom Karaoke", - "id": "fbrs2D0k3XM" - }, - { - "title": "Tina Turner - When The Heartache Is Over - Karaoke Version from Zoom Karaoke", - "id": "DhkNOf1wsu4" - }, - { - "title": "Sugar Minott - Good Thing Going - Karaoke Version from Zoom Karaoke", - "id": "9y5aLJ6VH14" - }, - { - "title": "Magic - Red Dress - Karaoke Version from Zoom Karaoke", - "id": "e8PoijSGeKA" - }, - { - "title": "Pixies - Here Comes Your Man - Karaoke Version from Zoom Karaoke", - "id": "Sba14c8J6gQ" - }, - { - "title": "Tom Odell - Magnetised - Karaoke Version from Zoom Karaoke", - "id": "xQ1GYuxAZ9U" - }, - { - "title": "Bruno Mars - Versace On The Floor - Karaoke Version from Zoom Karaoke", - "id": "WLZd46vHew8" - }, - { - "title": "Aaliyah feat Timbaland - Try Again - Karaoke Version from Zoom Karaoke", - "id": "zeOI-Ke3lMc" - }, - { - "title": "Living In A Box - Room In Your Heart - Karaoke Version from Zoom Karaoke", - "id": "fdOXYyi-pJs" - }, - { - "title": "Perry Como - Seattle - Karaoke Version from Zoom Karaoke", - "id": "2Izd5Ect8eo" - }, - { - "title": "David Lee Roth - Just A GigoloI Ain't Got Nobody - Karaoke Version from Zoom Karaoke", - "id": "uqHCGh0_82I" - }, - { - "title": "Olly Murs - Better Than Me - Karaoke Version from Zoom Karaoke", - "id": "X8uthumJ_wA" - }, - { - "title": "Journey - When You Love A Woman - Karaoke Version from Zoom Karaoke", - "id": "V6CVLidCvYo" - }, - { - "title": "Alanis Morissette - Uninvited - Karaoke Version from Zoom Karaoke", - "id": "fskDC8ugeaY" - }, - { - "title": "DNCE - Body Moves - Karaoke Version from Zoom Karaoke", - "id": "UfziAOseLFA" - }, - { - "title": "Nathan Sykes - Famous - Karaoke Version from Zoom Karaoke", - "id": "LuYoDpSm7hQ" - }, - { - "title": "AC/DC - Givin' The Dog A Bone - Karaoke Version from Zoom Karaoke", - "id": "Gp98dg29ARw" - }, - { - "title": "Michael Buble - The Very Thought Of You - Karaoke Version from Zoom Karaoke", - "id": "nfHOYF2hml8" - }, - { - "title": "Van Morrison - Someone Like You - Karaoke Version from Zoom Karaoke", - "id": "bqCsxrImNIQ" - }, - { - "title": "Belinda Carlisle - La Luna - Karaoke Version from Zoom Karaoke", - "id": "WfX1Kt0p44g" - }, - { - "title": "Phil Collins and Marilyn Martin - Separate Lives - Karaoke Version from Zoom Karaoke", - "id": "HfBX2MmOk-8" - }, - { - "title": "Olly Murs - Back Around - Karaoke Version from Zoom Karaoke", - "id": "FvDouujd4Fo" - }, - { - "title": "Michael Buble - Today Is Yesterday's Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "fN9yLaGuPAk" - }, - { - "title": "Van Morrison - Into The Mystic - Karaoke Version from Zoom Karaoke", - "id": "WqRsjKeSjWQ" - }, - { - "title": "Olly Murs - Flaws - Karaoke Version from Zoom Karaoke", - "id": "WUOeB1OiYhY" - }, - { - "title": "Patrick Hernandez - Born To Be Alive - Karaoke Version from Zoom Karaoke", - "id": "Hawbo4Ky2tE" - }, - { - "title": "Tom Odell - Concrete - Karaoke Version from Zoom Karaoke", - "id": "aqIzzKxOhIY" - }, - { - "title": "The Sweet - Fox On The Run - Karaoke Version from Zoom Karaoke", - "id": "RgqXvTIkbQ4" - }, - { - "title": "Rag'n'Bone Man - Human - Karaoke Version from Zoom Karaoke", - "id": "yppWymvAa1o" - }, - { - "title": "Electric Light Orchestra - 10538 Overture - Karaoke Version from Zoom Karaoke", - "id": "xtIa4JneabU" - }, - { - "title": "Michael Buble feat Meghan Trainor - Someday - Karaoke Version from Zoom Karaoke", - "id": "swbxYzF1b-g" - }, - { - "title": "Ed Sheeran - Castle On The Hill - Karaoke Version from Zoom Karaoke", - "id": "rK5YM5xejuY" - }, - { - "title": "Johnny Cash - One - Karaoke Version from Zoom Karaoke", - "id": "jozs8tWEEMQ" - }, - { - "title": "Riton feat Kah Lo - Rinse And Repeat - Karaoke Version from Zoom Karaoke", - "id": "SQFlNZZYFUI" - }, - { - "title": "Michael Buble - My Baby Just Cares For Me - Karaoke Version from Zoom Karaoke", - "id": "FOdhXBVWWxk" - }, - { - "title": "Clean Bandit feat Anne Marie and Sean Paul - Rockabye - Karaoke Version from Zoom Karaoke", - "id": "6W_Y4OQfz5A" - }, - { - "title": "Rod Stewart - Ooh La La - Karaoke Version from Zoom Karaoke", - "id": "3wIozXm61ZQ" - }, - { - "title": "Rod Stewart - Reason To Believe - Karaoke Version from Zoom Karaoke", - "id": "2XqnWv2UNPw" - }, - { - "title": "David Bowie - Golden Years - Karaoke Version from Zoom Karaoke", - "id": "ziOgwPhxnes" - }, - { - "title": "DJ Fresh feat Ellie Goulding - Flashlight - Karaoke Version from Zoom Karaoke", - "id": "pJuu510vBqs" - }, - { - "title": "Major Lazer feat Nicki Minaj and Partynextdoor - Run Up - Karaoke Version from Zoom Karao", - "id": "nzVyYPoPOMM" - }, - { - "title": "Wheatus - A Little Respect - Karaoke Version from Zoom Karaoke", - "id": "Bq0KaWZb8XE" - }, - { - "title": "Garth Brooks - Unanswered Prayers - Karaoke Version from Zoom Karaoke", - "id": "cMptI48-ZWo" - }, - { - "title": "Marvin Gaye - Can I Get A Witness - Karaoke Version from Zoom Karaoke", - "id": "Chobe1iTG1g" - }, - { - "title": "Imagine Dragons - Believer - Karaoke Version from Zoom Karaoke", - "id": "xr-wAeZG_Rg" - }, - { - "title": "Ed Sheeran - How Would You Feel (Paean) - Karaoke Version from Zoom Karaoke", - "id": "WTpIJt4eJsc" - }, - { - "title": "Don Broco - Everybody - Karaoke Version from Zoom Karaoke", - "id": "hn6lZ9_Fjoo" - }, - { - "title": "Viola Wills - Gonna Get Along With You Now - Karaoke Version from Zoom Karaoke", - "id": "KICqfUqWVJE" - }, - { - "title": "Jim Reeves - I Can't Stop Loving You - Karaoke Version from Zoom Karaoke", - "id": "gqV1rmHcp-c" - }, - { - "title": "Jimmy James And The Vagabonds - Now Is The Time - Karaoke Version from Zoom Karaoke", - "id": "naz6xWXq3cI" - }, - { - "title": "Sia - Never Give Up - Karaoke Version from Zoom Karaoke", - "id": "-gewOBQ0r60" - }, - { - "title": "Gary Puckett And The Union Gap - Lady Willpower - Karaoke Version from Zoom Karaoke", - "id": "n8OTMGF2ebY" - }, - { - "title": "Olly Murs - Years And Years - Karaoke Version from Zoom Karaoke", - "id": "e9I5GpSG-ew" - }, - { - "title": "Alessia Cara - Scars To Your Beautiful - Karaoke Version from Zoom Karaoke", - "id": "TTPBL0DHEZs" - }, - { - "title": "Crash Test Dummies - Afternoons And Coffeespoons - Karaoke Version from Zoom Karaoke", - "id": "VcouUjtXqYA" - }, - { - "title": "R & J Stone - We Do It - Karaoke Version from Zoom Karaoke", - "id": "rP0q1N51QNk" - }, - { - "title": "Starley - Call On Me (Ryan Riback Remix) - Karaoke Version from Zoom Karaoke", - "id": "l05bKxMxZZo" - }, - { - "title": "Dua Lipa - Be The One - Karaoke Version from Zoom Karaoke", - "id": "jWYhY5TrbI4" - }, - { - "title": "Bebe Rexha - I Got You - Karaoke Version from Zoom Karaoke", - "id": "j73iejDMcug" - }, - { - "title": "Long John Baldry - Let The Heartaches Begin - Karaoke Version from Zoom Karaoke", - "id": "dc594WSMd6I" - }, - { - "title": "Green Day - Youngblood - Karaoke Version from Zoom Karaoke", - "id": "PhxHyXuHoU8" - }, - { - "title": "Michael Buble - I Wanna Be Around - Karaoke Version from Zoom Karaoke", - "id": "fa2zDTpqXUI" - }, - { - "title": "Wish Me Luck/Kiss Me Goodnight/Tipperary/Pack Up Your Troubles - Piano Medley - Karaoke Version", - "id": "UQwYy2G-BRE" - }, - { - "title": "JP Cooper - September Song - Karaoke Version from Zoom Karaoke", - "id": "8xssYAHYmls" - }, - { - "title": "Jack Savoretti - I'm Yours - Karaoke Version from Zoom Karaoke", - "id": "cGjVP2oDzO0" - }, - { - "title": "The Weeknd - Party Monster - Karaoke Version from Zoom Karaoke", - "id": "_gY0y0tdgqo" - }, - { - "title": "The Weeknd - Reminder (Less Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "eQpsKBH9FHI" - }, - { - "title": "Patsy Cline - Strange - Karaoke Version from Zoom Karaoke", - "id": "ZxAXSabqziw" - }, - { - "title": "The Chainsmokers - Paris - Karaoke Version from Zoom Karaoke", - "id": "Hsh4VbrPvQM" - }, - { - "title": "Jim Reeves - Just Walking In The Rain - Karaoke Version from Zoom Karaoke", - "id": "GU2xmG07HsA" - }, - { - "title": "The Temptations - Get Ready - Karaoke Version from Zoom Karaoke", - "id": "1JObnM4I6qI" - }, - { - "title": "Jax Jones feat Raye - You Don't Know Me (Clean) - Karaoke Version from Zoom Karaoke", - "id": "s9nIIYJqM7E" - }, - { - "title": "Ed Sheeran - Perfect - Karaoke Version from Zoom Karaoke", - "id": "Z-njOmb1-mo" - }, - { - "title": "The Angels - My Boyfriend's Back - Karaoke Version from Zoom Karaoke", - "id": "JkHti5Ym49I" - }, - { - "title": "Lesley Gore - You Don't Own Me - Karaoke Version from Zoom Karaoke", - "id": "ix0lofXxMXY" - }, - { - "title": "Wilson Pickett - Land Of A Thousand Dances - Karaoke Version from Zoom Karaoke", - "id": "8QDD2_wHCEE" - }, - { - "title": "Ed Sheeran - Bibia Be Ye Ye - Karaoke Version from Zoom Karaoke", - "id": "aYhZ5Uhlf04" - }, - { - "title": "Imelda May - Black Tears - Karaoke Version from Zoom Karaoke", - "id": "sFvowRSUBYw" - }, - { - "title": "The Commitments - Chain Of Fools - Karaoke Version from Zoom Karaoke", - "id": "aPjp9v5xuGo" - }, - { - "title": "Barry White - You See The Trouble With Me - Karaoke Version from Zoom Karaoke", - "id": "L_nBr48M2Pg" - }, - { - "title": "Lukas Graham - You're Not There - Karaoke Version from Zoom Karaoke", - "id": "ChWJtoZLN6o" - }, - { - "title": "Bob Seger - Against The Wind - Karaoke Version from Zoom Karaoke", - "id": "AmDBT3qt0po" - }, - { - "title": "Tom Jones - A Minute Of Your Time - Karaoke Version from Zoom Karaoke", - "id": "A9sNdXQSIFc" - }, - { - "title": "Take That - Giants - Karaoke Version from Zoom Karaoke", - "id": "0MdGCHL3rrs" - }, - { - "title": "Little Mix feat Charlie Puth - Oops - Karaoke Version from Zoom Karaoke", - "id": "-fgiLaE4Fyg" - }, - { - "title": "Madness - Bed And Breakfast Man - Karaoke Version from Zoom Karaoke", - "id": "t73T5ameMHM" - }, - { - "title": "Ace Of Base - Always Have Always Will - Karaoke Version from Zoom Karaoke", - "id": "mDNT_Fxgt3M" - }, - { - "title": "Steve Aoki and Louis Tomlinson - Just Hold On - Karaoke Version from Zoom Karaoke", - "id": "OkHm0vheHcs" - }, - { - "title": "Olly Murs - Unpredictable - Karaoke Version from Zoom Karaoke", - "id": "mX5b6mcjFs8" - }, - { - "title": "Ed Sheeran - Barcelona - Karaoke Version from Zoom Karaoke", - "id": "kh3QSjDcdd4" - }, - { - "title": "Roy Orbison - Penny Arcade (Rock Version) - Karaoke Version from Zoom Karaoke", - "id": "dh1evAyro8w" - }, - { - "title": "Neil Diamond - I've Been This Way Before - Karaoke Version from Zoom Karaoke", - "id": "_M1-IUvoUJ0" - }, - { - "title": "Zara Larsson - I Would Like - Karaoke Version from Zoom Karaoke", - "id": "4ipyqHYfYYk" - }, - { - "title": "Mike And The Mechanics - A Time And Place - Karaoke Version from Zoom Karaoke", - "id": "ocirDlU9Ji8" - }, - { - "title": "Twin Atlantic - The Chaser - Karaoke Version from Zoom Karaoke", - "id": "mhKsYwGKGl8" - }, - { - "title": "Lenny Kravitz - Are You Gonna Go My Way- Karaoke Version from Zoom Karaoke", - "id": "iecV-eHfLNs" - }, - { - "title": "Depeche Mode - Where's The Revolution Clean Version - Karaoke Version from Zoom Karaoke", - "id": "Twhepk6yT3Q" - }, - { - "title": "Little Mix - Touch - Karaoke Version from Zoom Karaoke", - "id": "0dP36cAzmi4" - }, - { - "title": "The Temptations - The Way You Do The Things You Do - Karaoke Version from Zoom Karaoke", - "id": "sq8-3EHmYwI" - }, - { - "title": "Semisonic - Closing Time - Karaoke Version from Zoom Karaoke", - "id": "sLbDSgKsYqE" - }, - { - "title": "Sia - Move Your Body (Single Mix) - Karaoke Version from Zoom Karaoke", - "id": "rR60sxeGkok" - }, - { - "title": "The Woolpackers - Hillbilly Rock Hillbilly Roll - Karaoke Version from Zoom Karaoke", - "id": "pmxYL4s3fMs" - }, - { - "title": "Van Morrison - These Are The Days - Karaoke Version from Zoom Karaoke", - "id": "iVn8G7PNcVI" - }, - { - "title": "The Chiffons - One Fine Day - Karaoke Version from Zoom Karaoke", - "id": "hGxDZLHs344" - }, - { - "title": "Starley - Call On Me - Karaoke Version from Zoom Karaoke", - "id": "ejB2xz1FgtA" - }, - { - "title": "Olly Murs - Love You More - Karaoke Version from Zoom Karaoke", - "id": "ajZ2DbZhVIQ" - }, - { - "title": "Idina Menzel and Kristin Chenoweth - For Good (Live) - Karaoke Version from Zoom Karaoke", - "id": "W5L7qI5Asvc" - }, - { - "title": "Train - Play That Song - Karaoke Version from Zoom Karaoke", - "id": "SxYBeFU_xIU" - }, - { - "title": "Dr Hook - Baby Makes Her Blue Jeans Talk - Karaoke Version from Zoom Karaoke", - "id": "NZR9yIZkjuM" - }, - { - "title": "The Pet Shop Boys - Opportunities - Karaoke Version from Zoom Karaoke", - "id": "Iu8w-JcPyIc" - }, - { - "title": "Jack Savoretti - Home - Karaoke Version from Zoom Karaoke", - "id": "IUoKf-GnYBQ" - }, - { - "title": "Olly Murs - Private - Karaoke Version from Zoom Karaoke", - "id": "I5ucSUOqfqo" - }, - { - "title": "Jack Savoretti - Written In Scars - Karaoke Version from Zoom Karaoke", - "id": "GaWbRwlZ9QI" - }, - { - "title": "You Me At Six - Night People - Karaoke Version from Zoom Karaoke", - "id": "BC1TBHcbrko" - }, - { - "title": "Lana Del Rey - Love - Karaoke Version from Zoom Karaoke", - "id": "9HSyGzUes0o" - }, - { - "title": "Frank Wilson - Do I Love You (Indeed I Do) - Karaoke Version from Zoom Karaoke", - "id": "7cseDhPiIIM" - }, - { - "title": "The Temptations - Ain't Too Proud To Beg - Karaoke Version from Zoom Karaoke", - "id": "67LjgO_tRlE" - }, - { - "title": "OneRepublic - Let's Hurt Tonight - Karaoke Version from Zoom Karaoke", - "id": "5mI8Lfndf1o" - }, - { - "title": "Tina Turner - Steamy Windows - Karaoke Version from Zoom Karaoke", - "id": "3OK09yNQRU0" - }, - { - "title": "Demi Lovato - Sorry Not Sorry - Karaoke Version from Zoom Karaoke", - "id": "DsUqWe_krj4" - }, - { - "title": "Lorde - Green Light - Karaoke Version from Zoom Karaoke", - "id": "xILZrtwuyB4" - }, - { - "title": "John Farnham - Burn For You - Karaoke Version from Zoom Karaoke", - "id": "ZAPWwnGlPy4" - }, - { - "title": "Creedence Clearwater Revival - Born On The Bayou - Karaoke Version from Zoom Karaoke", - "id": "BhbECGInEz4" - }, - { - "title": "Dear Evan Hansen - Waving Through A Window - Karaoke Version from Zoom Karaoke", - "id": "xHCj4MAhCUg" - }, - { - "title": "Harry Styles - Sign Of The Times - Karaoke Version from Zoom Karaoke", - "id": "cEDRVqba1ps" - }, - { - "title": "The Who - The Seeker - Karaoke Version from Zoom Karaoke", - "id": "cAQjkIRje00" - }, - { - "title": "Thin Lizzy - Jailbreak - Karaoke Version from Zoom Karaoke", - "id": "1Zsh7TTdrSo" - }, - { - "title": "Imelda May - Train Kept A Rollin' - Karaoke Version from Zoom Karaoke", - "id": "0GpVaBCnjlY" - }, - { - "title": "The Human League - Louise - Karaoke Version from Zoom Karaoke", - "id": "ot3tC1RloV8" - }, - { - "title": "Thin Lizzy - Rosalie - Karaoke Version from Zoom Karaoke", - "id": "W41eFamZ_ss" - }, - { - "title": "Cast - Fine Time - Karaoke Version from Zoom Karaoke", - "id": "NA7PIRNa6Dk" - }, - { - "title": "The Chainsmokers feat Emily Warren - My Type - Karaoke Version from Zoom Karaoke", - "id": "5UdA8qKNpsA" - }, - { - "title": "Talking Heads - And She Was - Karaoke Version from Zoom Karaoke", - "id": "UmArkn7FRrw" - }, - { - "title": "Bruno Mars - That's What I Like - Karaoke Version from Zoom Karaoke", - "id": "KfoCg60D4NM" - }, - { - "title": "Van Morrison - Keep Me Singing - Karaoke Version from Zoom Karaoke", - "id": "84htMVpkGmM" - }, - { - "title": "Del Amitri - Roll To Me - Karaoke Version from Zoom Karaoke", - "id": "-BSB9ABVpes" - }, - { - "title": "Del Amitri - Always The Last To Know (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "gRLFvMbbRlo" - }, - { - "title": "The Monks - Nice Legs Shame About Her Face - Karaoke Version from Zoom Karaoke", - "id": "-W_bzhzrmRQ" - }, - { - "title": "The Human League - Heart Like A Wheel (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "AGHIAsS861o" - }, - { - "title": "Creedence Clearwater Revival - Down On The Corner - Karaoke Version from Zoom Karaoke", - "id": "ulGr3rm0kNM" - }, - { - "title": "Ruth B - Lost Boy - Karaoke Version from Zoom Karaoke", - "id": "MzOn6WR3BYU" - }, - { - "title": "The Human League - Heart Like A Wheel (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "K-tD_a6TAtU" - }, - { - "title": "Imelda May - Johnny Got A Boom Boom - Karaoke Version from Zoom Karaoke", - "id": "5_41cf5pNOw" - }, - { - "title": "Badfinger - Baby Blue - Karaoke Version from Zoom Karaoke", - "id": "z3mGRyCbUF0" - }, - { - "title": "Limmie and Family Cookin' - You Can Do Magic - Karaoke Version from Zoom Karaoke", - "id": "yyD6DNag-8A" - }, - { - "title": "Rent - Seasons Of Love - Karaoke Version from Zoom Karaoke", - "id": "p-zuLD-cT1g" - }, - { - "title": "Gerry Rafferty - Right Down The Line - Karaoke Version from Zoom Karaoke", - "id": "oH1Meh89cb4" - }, - { - "title": "Andy Grammer - Honey, I'm Good - Karaoke Version from Zoom Karaoke", - "id": "LAV3uD91nY8" - }, - { - "title": "The Saw Doctors - Red Cortina - Karaoke Version from Zoom Karaoke", - "id": "f8_dYHuZRIs" - }, - { - "title": "Roberta Flack - The First Time Ever I Saw Your Face - Karaoke Version from Zoom Karaoke", - "id": "CbbNgdy8NWk" - }, - { - "title": "The Human League - The Lebanon (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "0t3wgemoFYk" - }, - { - "title": "Rag'n'Bone Man - Lay My Body Down - Karaoke Version from Zoom Karaoke", - "id": "_3tcoPQy_hg" - }, - { - "title": "Imelda May - Tainted Love - Karaoke Version from Zoom Karaoke", - "id": "E7hjONbsejc" - }, - { - "title": "Detroit Emeralds - Feel The Need In Me - Karaoke Version from Zoom Karaoke", - "id": "zvUGKT00N2A" - }, - { - "title": "Miley Cyrus - Younger Now - Karaoke Version from Zoom Karaoke", - "id": "ZHYl_PLNciI" - }, - { - "title": "Pink - What About Us - Karaoke Version from Zoom Karaoke", - "id": "TmN4t4-k70Q" - }, - { - "title": "Sweet Female Attitude - Flowers - Karaoke Version from Zoom Karaoke", - "id": "z88J92Pv978" - }, - { - "title": "T'Pau - Heart And Soul - Karaoke Version from Zoom Karaoke", - "id": "iVetWKTuAQk" - }, - { - "title": "Imelda May - It's Good To Be Alive - Karaoke Version from Zoom Karaoke", - "id": "_w_H-fZO5oE" - }, - { - "title": "Snow White And The Seven Dwarfs - Whistle While You Work - Karaoke Version from Zoom Karaoke", - "id": "Qp_YwAY52rk" - }, - { - "title": "Jack Savoretti - Soldier's Eyes - Karaoke Version from Zoom Karaoke", - "id": "K4jpa4PjdR0" - }, - { - "title": "Imelda May - How Bad Can A Good Girl Be - Karaoke Version from Zoom Karaoke", - "id": "7UUlNnJDMmQ" - }, - { - "title": "Engelbert Humperdinck - Ten Guitars - Karaoke Version from Zoom Karaoke", - "id": "6a-ygNs6Coc" - }, - { - "title": "Ray Price - Danny Boy - Karaoke Version from Zoom Karaoke", - "id": "inx2nlN1Oiw" - }, - { - "title": "Bryan Ferry - Slave To Love - Karaoke Version from Zoom Karaoke", - "id": "aGcNGfwf5ts" - }, - { - "title": "Creedence Clearwater Revival - Who'll Stop The Rain - Karaoke Version from Zoom Karaoke", - "id": "vUghMWnwNkk" - }, - { - "title": "Curtis Stigers - I Wonder Why - Karaoke Version from Zoom Karaoke", - "id": "3MJAsPFDwHE" - }, - { - "title": "Louisa Johnson - Best Behaviour - Karaoke Version from Zoom Karaoke", - "id": "yiSneMM606U" - }, - { - "title": "Anne Marie - Ciao Adios - Karaoke Version from Zoom Karaoke", - "id": "vzML3rfcJag" - }, - { - "title": "Werewolves Of London/All Summer Long/Sweet Home Alabama Medley - Karaoke Version from Zoom Karaoke", - "id": "fhgOPTorL8M" - }, - { - "title": "Average White Band - Let's Go Round Again - Karaoke Version from Zoom Karaoke", - "id": "ayqTm-AayC8" - }, - { - "title": "Kygo feat Selena Gomez - It Ain't Me - Karaoke Version from Zoom Karaoke", - "id": "VUkxMff3ZAM" - }, - { - "title": "Dennis Brown - Money In My Pocket - Karaoke Version from Zoom Karaoke", - "id": "G22PnRCBrYU" - }, - { - "title": "Miley Cyrus - Younger Now (Intro Cut Down) Karaoke Version from Zoom Karaoke", - "id": "f6s5__urkCA" - }, - { - "title": "Ray Price - Softly And Tenderly (Live) - Karaoke Version from Zoom Karaoke", - "id": "QXEmSPaZd88" - }, - { - "title": "Sweet - Teenage Rampage - Karaoke Version from Zoom Karaoke", - "id": "dy7goq-vyGE" - }, - { - "title": "Talking Heads - Wild Wild Life - Karaoke Version from Zoom Karaoke", - "id": "v-sbxQxPicY" - }, - { - "title": "Paul McCartney - No More Lonely Nights - Karaoke Version from Zoom Karaoke", - "id": "jI4ah_KrCJY" - }, - { - "title": "The Bay City Rollers - The Bay City Rollers Medley - Karaoke Version from Zoom Karaoke", - "id": "Z22Htn9arh4" - }, - { - "title": "George Michael - Outside - Karaoke Version from Zoom Karaoke", - "id": "SIku1Zx-RC0" - }, - { - "title": "Bastille - Basket Case - Karaoke Version from Zoom Karaoke", - "id": "P_UO_Lb2rTY" - }, - { - "title": "Kasabian - Comeback Kid - Karaoke Version from Zoom Karaoke", - "id": "Oy4xUMH-a5w" - }, - { - "title": "Frank Sinatra - Let Me Try Again - Karaoke Version from Zoom Karaoke", - "id": "NgzO3txINho" - }, - { - "title": "Chris Rea - Looking For The Summer - Karaoke Version from Zoom Karaoke", - "id": "NFT6yVrlhPc" - }, - { - "title": "Imelda May - Mayhem - Karaoke Version from Zoom Karaoke", - "id": "LKRfgL1IanI" - }, - { - "title": "Thin Lizzy - Dancing In The Moonlight - Karaoke Version from Zoom Karaoke", - "id": "1MhHK1Upgk8" - }, - { - "title": "Kenny Rogers -You Decorated My Life - Karaoke Version from Zoom Karaoke", - "id": "-X6ojJX5MrY" - }, - { - "title": "Creedence Clearwater Revival - Looking Out My Back Door - Karaoke Version from Zoom Karaok", - "id": "zxI24ZEyF5Q" - }, - { - "title": "Bob Seger - Still The Same - Karaoke Version from Zoom Karaoke", - "id": "prRI58wqWjs" - }, - { - "title": "Cream - Badge - Karaoke Version from Zoom Karaoke", - "id": "RB6HNZoLUAQ" - }, - { - "title": "Chris Rea - The Blue Cafe - Karaoke Version from Zoom Karaoke", - "id": "4MN7xUS64dE" - }, - { - "title": "Joe Cocker - My Father's Son - Karaoke Version from Zoom Karaoke", - "id": "lCDz6VQZm6c" - }, - { - "title": "Maroon 5 feat SZA - What Lovers Do - Karaoke Version from Zoom Karaoke", - "id": "AZD6y6O7g8g" - }, - { - "title": "The Carpenters - A Song For You - Karaoke Version from Zoom Karaoke", - "id": "3YSrjjK2CZU" - }, - { - "title": "Johnny Cash - The Ways Of A Woman In Love - Karaoke Version from Zoom Karaoke", - "id": "ydgZaUPTnm8" - }, - { - "title": "Jack Savoretti - When We Were Lovers - Karaoke Version from Zoom Karaoke", - "id": "tJgKNn0xnwg" - }, - { - "title": "George Benson - Lady Love Me One More Time - Karaoke Version from Zoom Karaoke", - "id": "qerdmoQgWdE" - }, - { - "title": "Sam Smith - Too Good At Goodbyes - Karaoke Version from Zoom Karaoke", - "id": "jHv9Gt0Vih4" - }, - { - "title": "Mike And The Mechanics - Another Cup Of Coffee - Karaoke Version from Zoom Karaoke", - "id": "b6i1w1o_oes" - }, - { - "title": "Bob Seger - Turn The Page - Karaoke Version from Zoom Karaoke", - "id": "ZdyI02k-MYw" - }, - { - "title": "Rudimental feat James Arthur - Sun Comes Up - Karaoke Version from Zoom Karaoke", - "id": "NgEWa-nFwNc" - }, - { - "title": "Jamie Lawson - Can't See Straight - Karaoke Version from Zoom Karaoke", - "id": "Fl8kKkC9RDw" - }, - { - "title": "Jack Savoretti - Dreamers - Karaoke Version from Zoom Karaoke", - "id": "Ez1MjFbNCNo" - }, - { - "title": "Cream - Sunshine Of Your Love - Karaoke Version from Zoom Karaoke", - "id": "s0ne7VgNp9A" - }, - { - "title": "Warren Zevon - Werewolves Of London - Karaoke Version from Zoom Karaoke", - "id": "nvN56FD6-vg" - }, - { - "title": "The Script - Rain - Karaoke Version from Zoom Karaoke", - "id": "ne98xXsoXeQ" - }, - { - "title": "The Specials - Gangsters - Karaoke Version from Zoom Karaoke.", - "id": "n72SRUez2kE" - }, - { - "title": "Dear Evan Hansen - For Forever - Karaoke Version from Zoom Karaoke", - "id": "YZyH8GdFzzw" - }, - { - "title": "Miss Saigon - The Last Night Of The World - Karaoke Version from Zoom Karaoke", - "id": "YEyqK9QXN8U" - }, - { - "title": "The Specials - Friday Night, Saturday Morning - Karaoke Version from Zoom Karaoke", - "id": "XumY1LzbEsg" - }, - { - "title": "Matt Terry - When Christmas Comes Around - Karaoke Version from Zoom Karaoke", - "id": "TCUthA3_FcI" - }, - { - "title": "Jack Savoretti - Whiskey Tango - Karaoke Version from Zoom Karaoke", - "id": "9-eLuGsJvjA" - }, - { - "title": "Shania Twain - Swingin' With My Eyes Closed - Karaoke Version from Zoom Karaoke", - "id": "8XpEMl9UiFg" - }, - { - "title": "The Saw Doctors - To Win Just Once - Karaoke Version from Zoom Karaoke", - "id": "3-mgCsrHi5s" - }, - { - "title": "Paloma Faith - Crybaby - Karaoke Version from Zoom Karaoke", - "id": "szwf4ZW22k8" - }, - { - "title": "JP Cooper - She's On My Mind - Karaoke Version from Zoom Karaoke", - "id": "91zFmG2zVgM" - }, - { - "title": "George Michael feat Nile Rodgers - Fantasy - Karaoke Version from Zoom Karaoke", - "id": "ensIxNx_8cs" - }, - { - "title": "Train - Valentine - Karaoke Version from Zoom Karaoke", - "id": "Tz-b4YGTjmo" - }, - { - "title": "Rent - Out Tonight (Movie Version) - Karaoke Version from Zoom Karaoke", - "id": "2BjVRYtWzUA" - }, - { - "title": "Kungs feat Olly Murs and Coely - More Mess - Karaoke Version from Zoom Karaoke", - "id": "0llEvMBfOas" - }, - { - "title": "Anne Marie - Heavy - Karaoke Version from Zoom Karaoke", - "id": "lV8l_TI-je4" - }, - { - "title": "Marty Robbins - A White Sport Coat - Karaoke Version from Zoom Karaoke", - "id": "c7UaKXxcrVo" - }, - { - "title": "Marty Robbins - Devil Woman - Karaoke Version from Zoom Karaoke", - "id": "VHSZHtkOIa4" - }, - { - "title": "The Saw Doctors - I Useta Lover - Karaoke Version from Zoom Karaoke", - "id": "Nlv_7GHO5MY" - }, - { - "title": "Sweet - Action - Karaoke Version from Zoom Karaoke", - "id": "Mz-1ykLT43c" - }, - { - "title": "Steps - Scared Of The Dark - Karaoke Version from Zoom Karaoke", - "id": "MxxO4W-L-_s" - }, - { - "title": "The Carpenters - Love Me For What I Am - Karaoke Version from Zoom Karaoke", - "id": "0M2HUB25mh4" - }, - { - "title": "Ed Sheeran - Happier - Karaoke Version from Zoom Karaoke", - "id": "wZBNWd1iZCg" - }, - { - "title": "Racey - Lay Your Love On Me - Karaoke Version from Zoom Karaoke", - "id": "ki2XUvDz6dc" - }, - { - "title": "The Saw Doctors - Never Mind The Strangers - Karaoke Version from Zoom Karaoke", - "id": "1n6Cp7B11jI" - }, - { - "title": "Jasmine Thompson - Ain't Nobody - Acoustative Piano Karaoke Version from Zoom Karaoke", - "id": "3SnkxOn2gyY" - }, - { - "title": "Alvin Stardust - Pretend - Karaoke Version from Zoom Karaoke", - "id": "p6VSsbeMdt8" - }, - { - "title": "Zayn feat Sia - Dusk Till Dawn - Karaoke Version from Zoom Karaoke", - "id": "iIzCFtD9CjY" - }, - { - "title": "Phil Collins - On My Way - Karaoke Version from Zoom Karaoke", - "id": "Kl8pMbw3dsQ" - }, - { - "title": "Pink - Whatever You Want - Karaoke Version from Zoom Karaoke", - "id": "6-4V2m_mkXE" - }, - { - "title": "Avicii feat Rita Ora - Lonely Together - Karaoke Version from Zoom Karaoke", - "id": "0w8yyvCC2Lw" - }, - { - "title": "Echo And The Bunnymen - Nothing Lasts Forever - Karaoke Version from Zoom Karaoke", - "id": "z7ufQmok2Q8" - }, - { - "title": "The Saw Doctors - Green And Red Of Mayo - Karaoke Version from Zoom Karaoke", - "id": "RV34tG3MMGQ" - }, - { - "title": "Strawberry Switchblade - Since Yesterday - Karaoke Version from Zoom Karaoke", - "id": "moSMPcOjBkw" - }, - { - "title": "Sam Smith - Burning (With Piano On Verse 1 ) - Karaoke Version from Zoom Karaoke", - "id": "1YmZI3gYLWY" - }, - { - "title": "Dave Edmunds - Queen Of Hearts - Karaoke Version from Zoom Karaoke", - "id": "Bakg5SbF2LA" - }, - { - "title": "Dave Edmunds - Born To Be With You - Karaoke Version from Zoom Karaoke", - "id": "zXJqqU9UZKI" - }, - { - "title": "Camila Cabello feat Young Thug - Havana - Karaoke Version from Zoom Karaoke", - "id": "vQ9GzWbdoGg" - }, - { - "title": "Cream - White Room - Karaoke Version from Zoom Karaoke", - "id": "p91NLKhEpJw" - }, - { - "title": "Miley Cyrus - Inspired - Karaoke Version from Zoom Karaoke", - "id": "oo71GgyLaCE" - }, - { - "title": "Post Malone feat 21 Savage - Rockstar (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "fBOkFmf-VMA" - }, - { - "title": "Post Malone feat 21 Savage - Rockstar (No Swearing Version) - Karaoke Version from Zoom Karaoke.", - "id": "atN6Z1l-1cw" - }, - { - "title": "Starlight Express - Starlight Express - Karaoke Version from Zoom Karaoke", - "id": "ZPQChRfClmE" - }, - { - "title": "Cream - Crossroads - Karaoke Version from Zoom Karaoke", - "id": "TsuARQep5Oc" - }, - { - "title": "Kim Wilde - Never Trust A Stranger - Karaoke Version from Zoom Karaoke", - "id": "M5RSUm8mh8o" - }, - { - "title": "Cream - Strange Brew - Karaoke Version from Zoom Karaoke", - "id": "79sS4RaxhNY" - }, - { - "title": "Fun Boy Three - Our Lips Are Sealed - Karaoke Version from Zoom Karaoke", - "id": "pW7-UttyQ6Y" - }, - { - "title": "Paul Heaton And Jacqui Abbott - She Got The Garden - Karaoke Version from Zoom Karaoke", - "id": "c_C6IMUBTYc" - }, - { - "title": "Johnny Mathis - Misty - Karaoke Version from Zoom Karaoke", - "id": "nLpn98nrfOU" - }, - { - "title": "Post Malone - I Fall Apart - Karaoke Version from Zoom Karaoke", - "id": "ZG9WyZwvoro" - }, - { - "title": "Orange Juice - Rip It Up - Karaoke Version from Zoom Karaoke", - "id": "AOkux6mojBM" - }, - { - "title": "Kid Creole And The Coconuts - Stool Pigeon - Karaoke Version from Zoom Karaoke", - "id": "5FvO8tIfB1c" - }, - { - "title": "Suzi Quatro - She's In Love With You - Karaoke Version from Zoom Karaoke", - "id": "w-gmeCD5YNg" - }, - { - "title": "Backstreet Boys - All I Have To Give - Karaoke Version from Zoom Karaoke", - "id": "KOq5cpsZon8" - }, - { - "title": "Tangled - When Will My Life Begin - Karaoke Version from Zoom Karaoke", - "id": "AYLixYeEFUw" - }, - { - "title": "The Killers - The Man - Karaoke Version from Zoom Karaoke", - "id": "jMYa1YTtd6o" - }, - { - "title": "Bryan Ferry - Don't Stop The Dance - Karaoke Version from Zoom Karaoke", - "id": "-xjYAhxVYh0" - }, - { - "title": "The Kinks - The Kinks Medley - Karaoke Version from Zoom Karaoke", - "id": "xsP5Fou7jP8" - }, - { - "title": "Tennessee Ernie Ford - Sixteen Tons - Karaoke Version from Zoom Karaoke", - "id": "l7pAcafZMCE" - }, - { - "title": "The Stranglers - Go Buddy Go - Karaoke Version from Zoom Karaoke", - "id": "MqkzDVQ5Y64" - }, - { - "title": "Khalid - Young Dumb And Broke - Karaoke Version from Zoom Karaoke", - "id": "jLv4O56jQiQ" - }, - { - "title": "Jeffrey Osborne - On The Wings Of Love - Karaoke Version from Zoom Karaoke", - "id": "gofrKyFCtwg" - }, - { - "title": "Phil Collins - Son Of Man - Karaoke Version from Zoom Karaoke", - "id": "cMrNDnoJT4g" - }, - { - "title": "The Kinks - This Time Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "XrypkHr-glE" - }, - { - "title": "Jona Lewie - You'll Always Find Me In The Kitchen At Parties - Karaoke Version from Zoom Karaoke.", - "id": "QiwJGVeW7NQ" - }, - { - "title": "Dave Edmunds - Every Time I See Her - Karaoke Version from Zoom Karaoke", - "id": "_lQN_iX281E" - }, - { - "title": "Dave Edmunds - From Small Things (Big Things One Day Come) - Karaoke Version from Zoom Karaoke.", - "id": "YfEocuXzsvQ" - }, - { - "title": "Chris Rea - And You My Love - Karaoke Version from Zoom Karaoke", - "id": "ympgO039J0k" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - Blue Angel - Karaoke Version from Zoom Karaoke.", - "id": "vquof0WM1HA" - }, - { - "title": "Lene Lovich - Lucky Number - Karaoke Version from Zoom Karaoke", - "id": "mqh9l-Cye9w" - }, - { - "title": "Ed Sheeran - Galway Girl - Karaoke Version from Zoom Karaoke", - "id": "iSNJPx2oizk" - }, - { - "title": "Ed Sheeran - New Man - Karaoke Version from Zoom Karaoke", - "id": "fO5SIGk5-SI" - }, - { - "title": "Ed Sheeran - Nancy Mulligan - Karaoke Version from Zoom Karaoke", - "id": "dAJ1j5g4Twg" - }, - { - "title": "Ed Sheeran - Save Myself - Karaoke Version from Zoom Karaoke", - "id": "blmnRCzFT0s" - }, - { - "title": "Ed Sheeran - Hearts Don't Break Around Here - Karaoke Version from Zoom Karaoke", - "id": "VlEB09u_y94" - }, - { - "title": "Katy Perry - Chained To The Rhythm Karaoke Version from Zoom Karaoke", - "id": "JXdoDs3BfPk" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - You Got It - Karaoke Version from Zoom Karaoke.", - "id": "I7i1ztRtxrQ" - }, - { - "title": "Harry Styles - Kiwi - Karaoke Version from Zoom Karaoke", - "id": "Ep44GISWCnw" - }, - { - "title": "Ed Sheeran - What Do I Know - Karaoke Version from Zoom Karaoke", - "id": "AHLlrbFSJtk" - }, - { - "title": "Kenny Rogers - Long Arm Of The Law - Karaoke Version from Zoom Karaoke", - "id": "9OFq2f_cWAA" - }, - { - "title": "CNCO feat Little Mix - Reggaeton Lento (Remix) - Karaoke Version from Zoom Karaoke", - "id": "0Cq6rZYbn_s" - }, - { - "title": "Kenny Rogers - The Kenny Rogers Medley - Karaoke Version from Zoom Karaoke", - "id": "-uOJ8RxIoRU" - }, - { - "title": "Sham 69 - Hurry Up Harry - Karaoke Version from Zoom Karaoke", - "id": "eq2aVropjRA" - }, - { - "title": "Styx - Babe - Karaoke Version from Zoom Karaoke", - "id": "RPFrHdOJS84" - }, - { - "title": "The Barron Knights - A Taste Of Aggro - Karaoke Version from Zoom Karaoke", - "id": "CRQ9cQa2R6g" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - Oh, Pretty Woman - Zoom Karaoke Version", - "id": "oH0NTGcBzB4" - }, - { - "title": "Camila Cabello - Never Be The Same - Karaoke Version from Zoom Karaoke", - "id": "jvwqLWNebP4" - }, - { - "title": "Bruno Mars feat Cardi B - Finesse Remix (Cleaner Version) - Karaoke Version from Zoom Karaoke.", - "id": "j1JV7mdFp1E" - }, - { - "title": "Neil Young and Crazy Horse - Hey Hey My My (Into The Black) - Karaoke Version from Zoom Karaoke.", - "id": "soR-tN56ksI" - }, - { - "title": "Elvis Presley - Wear My Ring Around Your Neck - Karaoke Version from Zoom Karaoke", - "id": "xHtAsdXg_1g" - }, - { - "title": "UB40 - The UB40 Medley - Karaoke Version from Zoom Karaoke", - "id": "x5o9lN8NnKA" - }, - { - "title": "Rihanna - P S (I'm Still Not Over You) - Karaoke Version from Zoom Karaoke", - "id": "lBkSnjgODSg" - }, - { - "title": "Eminem feat Ed Sheeran - River (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "bFqBO4_u1d8" - }, - { - "title": "Kaiser Chiefs - Oh My God - Karaoke Version from Zoom Karaoke", - "id": "ZuZ4AI_Kpi0" - }, - { - "title": "James Arthur - Naked - Karaoke Version from Zoom Karaoke", - "id": "T9LyRu9hTqM" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - Only The Lonely - Zoom Karaoke Version", - "id": "SU3aw9Xoe9Q" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - Uptown - Karaoke Version from Zoom Karaoke.", - "id": "P8DWP57dDM8" - }, - { - "title": "The Greatest Showman - Never Enough - Karaoke Version from Zoom Karaoke", - "id": "MwAhi9WvbOs" - }, - { - "title": "Dean Martin - Face In A Crowd - Karaoke Version from Zoom Karaoke", - "id": "JlLFigr3sxg" - }, - { - "title": "The Stereophonics - Mr Writer - Karaoke Version from Zoom Karaoke", - "id": "Galwhq1cYmg" - }, - { - "title": "Phil Collins - The Phil Collins Medley 2 - Karaoke Version from Zoom Karaoke", - "id": "P187HswmRf4" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - Dream Baby - Karaoke Version from Zoom", - "id": "Lniz6iAvyac" - }, - { - "title": "Pink - Wild Hearts Can't Be Broken - Karaoke Version from Zoom Karaoke", - "id": "jDAiz1EuEDg" - }, - { - "title": "Pulp - The Pulp Medley - Common People/Disco 2000 - Karaoke Version from Zoom Karaoke", - "id": "ibKDLeIR3fU" - }, - { - "title": "Phil Collins - The Phil Collins Medley 1 - Two Hearts/You Can't Hurry Love - Karaoke Version", - "id": "V_xzv9MoJCU" - }, - { - "title": "Sham 69 - If The Kids Are United - Karaoke Version from Zoom Karaoke", - "id": "N4vHIpqnNVU" - }, - { - "title": "Sham 69 - Hersham Boys - Karaoke Version from Zoom Karaoke", - "id": "KjfZ4bnLPbA" - }, - { - "title": "Moon Taxi - Two High - Karaoke Version from Zoom Karaoke", - "id": "98Srp17jxBY" - }, - { - "title": "Joey Ramone - What A Wonderful World - Karaoke Version from Zoom Karaoke", - "id": "o7gwYBlIpWQ" - }, - { - "title": "Echobelly - Insomniac - Karaoke Version from Zoom Karaoke", - "id": "fctN8sQKYWA" - }, - { - "title": "Liam Payne and Rita Ora - For You - Karaoke Version from Zoom Karaoke", - "id": "XmKL3Ief1Gs" - }, - { - "title": "Amazulu - Too Good To Be Forgotten - Karaoke Version from Zoom Karaoke", - "id": "9cRZLRJvISw" - }, - { - "title": "Hailee Steinfeld and Friends - Let Me Go - Karaoke Version from Zoom Karaoke", - "id": "NzwsMsHlctU" - }, - { - "title": "Jason Derulo feat. French Montana - Tip Toe - Karaoke Version from Zoom Karaoke", - "id": "G6gEa5mKsXw" - }, - { - "title": "Hoseah Partsch - Paper Planes - Karaoke Version from Zoom Karaoke", - "id": "DF0xhwQZ_lE" - }, - { - "title": "Dua Lipa - IDGAF - Karaoke Version from Zoom Karaoke", - "id": "5FT5_1USMew" - }, - { - "title": "Kendrick Lamar and SZA - All The Stars - Karaoke Version from Zoom Karaoke", - "id": "-JCx-4uuwxU" - }, - { - "title": "The Greatest Showman - This Is Me - Karaoke Version from Zoom Karaoke", - "id": "Qo9D-LvMzlQ" - }, - { - "title": "The Sex Pistols - Friggin' In The Riggin' - Karaoke Version from Zoom Karaoke", - "id": "P0PjBcqs16s" - }, - { - "title": "Elvis Presley - I Want You, I Need You, I Love You - Karaoke Version from Zoom Karaoke", - "id": "bH0HABu3OEo" - }, - { - "title": "Camila Cabello - Something's Gotta Give - Karaoke Version from Zoom Karaoke", - "id": "YBcnHEBngO8" - }, - { - "title": "Joan Jett And The Blackhearts - Bad Reputation - Karaoke Version from Zoom Karaoke", - "id": "D1HDK3bUc40" - }, - { - "title": "Fleetwood Mac - Gold Dust Woman - Karaoke Version from Zoom Karaoke", - "id": "5vaxacis-h0" - }, - { - "title": "Clean Bandit & Mabel feat. 24KGoldn - Tick Tock - Karaoke Version from Zoom Karaoke", - "id": "9qhfUmX9dqY" - }, - { - "title": "Joy Division - Transmission - Karaoke Version from Zoom Karaoke", - "id": "uyjQWo5lh_Y" - }, - { - "title": "David Guetta feat Justin Bieber - 2U - Karaoke Version from Zoom Karaoke", - "id": "SiSHHS-V50U" - }, - { - "title": "The Zombies - This Will Be Our Year - Karaoke Version from Zoom Karaoke", - "id": "BSgxPfflzdY" - }, - { - "title": "Imagine Dragons - Thunder - Karaoke Version from Zoom Karaoke", - "id": "qsSib4xhqPI" - }, - { - "title": "Mike And The Mechanics - A Beggar On A Beach Of Gold - Karaoke Version from Zoom Karaoke", - "id": "UMinue1RXmw" - }, - { - "title": "The Wizard Of Oz - Over The Rainbow - Karaoke Version from Zoom Karaoke (Judy Garland)", - "id": "ru12qNDQ4DU" - }, - { - "title": "Joe Cocker - Unchain My Heart - Karaoke Version from Zoom Karaoke", - "id": "wq56Co2IcJ8" - }, - { - "title": "Mud - She's Got The Devil In Her Eyes - Karaoke Version from Zoom Karaoke", - "id": "usLdM3qWgFc" - }, - { - "title": "The Courteeners - Not Nineteen Forever - Karaoke Version from Zoom Karaoke", - "id": "sx1i1DlHlHQ" - }, - { - "title": "Mud - Book Of Love - Karaoke Version from Zoom Karaoke", - "id": "sPCZxWtgMxw" - }, - { - "title": "Crystal Waters - Gypsy Woman (She's Homeless) - Karaoke Version from Zoom Karaoke", - "id": "pdvjSUAe17g" - }, - { - "title": "Heatwave - Always And Forever - Karaoke Version from Zoom Karaoke", - "id": "j3ja-TJP6GQ" - }, - { - "title": "Ray Price - I'm Still Not Over You - Karaoke Version from Zoom Karaoke", - "id": "hCIDL2huvv4" - }, - { - "title": "Rita Ora - Your Song - Karaoke Version from Zoom Karaoke", - "id": "XD-DJYILKQI" - }, - { - "title": "Mud - Why Do Fools Fall In Love/Book Of Love (Medley) - Karaoke Version from Zoom Karaoke", - "id": "SYJecjSNUPI" - }, - { - "title": "Kelly Clarkson - It's Quiet Uptown - Karaoke Version from Zoom Karaoke", - "id": "NQROOEulmpo" - }, - { - "title": "Ray Price - I'll Go To A Stranger - Karaoke Version from Zoom Karaoke", - "id": "NKJu0moruus" - }, - { - "title": "Pulp - Babies - Karaoke Version from Zoom Karaoke", - "id": "J70Xz2IA1rI" - }, - { - "title": "The Traveling Wilburys - Handle With Care - Karaoke Version from Zoom Karaoke", - "id": "GOp5a09tgi0" - }, - { - "title": "Lana Del Rey feat The Weeknd - Lust For Life - Karaoke Version from Zoom Karaoke", - "id": "9XGJYu_TRHM" - }, - { - "title": "Lady Antebellum - Better Off Now That You're Gone (For Solo Male) - Zoom Karaoke Version", - "id": "rH1xG0YWaGU" - }, - { - "title": "Katy Perry feat Nicki Minaj - Swish Swish - Karaoke Version from Zoom Karaoke", - "id": "jcgsh4UwFv0" - }, - { - "title": "Big Brother And The Holding Company - Summertime - Karaoke Version from Zoom Karaoke", - "id": "irFvD1N-4q8" - }, - { - "title": "Bebe Rexha feat Lil' Wayne - The Way I Are (Dance With Somebody) - Zoom Karaoke Version", - "id": "eGu-KBsAq9o" - }, - { - "title": "Jekyll And Hyde - Someone Like You - Karaoke Version from Zoom Karaoke", - "id": "wrLmkSWzoBI" - }, - { - "title": "Dionne Warwick - I'll Never Love This Way Again - Karaoke Version from Zoom Karaoke", - "id": "qnxtXdfYKxY" - }, - { - "title": "Liam Payne feat Quavo - Strip That Down - Karaoke Version from Zoom Karaoke", - "id": "dQSzjNUV12w" - }, - { - "title": "Lorde - Perfect Places - Karaoke Version from Zoom Karaoke", - "id": "75FuHeNq-3w" - }, - { - "title": "Oliver - Reviewing The Situation - Karaoke Version from Zoom Karaoke", - "id": "3p_TLznwvuU" - }, - { - "title": "Maggie Lindemann - Pretty Girl (Remix) - Karaoke Version from Zoom Karaoke", - "id": "19dk_K4sE2Y" - }, - { - "title": "Hercules - I Won't Say (I'm In Love) - Karaoke Version from Zoom Karaoke", - "id": "UrRh4uajiVk" - }, - { - "title": "Atlantic Starr - Secret Lovers - Karaoke Version from Zoom Karaoke", - "id": "Nxl93kNv36s" - }, - { - "title": "Aladdin - Prince Ali - Karaoke Version from Zoom Karaoke", - "id": "1LNtkVIxOp8" - }, - { - "title": "Little Mix - You Gotta Not - Karaoke Version from Zoom Karaoke", - "id": "zVCIDkjj_7k" - }, - { - "title": "Moana - How Far I'll Go - Karaoke Version from Zoom Karaoke", - "id": "fhkBeFuhjFk" - }, - { - "title": "Neil Young With Crazy Horse - Cinnamon Girl - Karaoke Version from Zoom Karaoke", - "id": "uTdjpyDoeRU" - }, - { - "title": "The Who - Pinball Wizard - Karaoke Version from Zoom Karaoke", - "id": "Y1Dk6myCDA0" - }, - { - "title": "TV Theme - Pokemon Theme - Karaoke Version from Zoom Karaoke", - "id": "I-3TaAiABoM" - }, - { - "title": "Dusty Springfield - Stay Awhile - Karaoke Version from Zoom Karaoke", - "id": "pIv380lnmXE" - }, - { - "title": "Maroon 5 - Wait - Karaoke Version from Zoom Karaoke", - "id": "SAH8CExz3ao" - }, - { - "title": "Rudimental ft. Macklemore, Jess Glynne & Dan Caplen - These Days - Karaoke Version from Zoom Karaoke", - "id": "MQUDHBEM82U" - }, - { - "title": "The Beautiful South - I'll Sail This Ship Alone - Karaoke Version from Zoom Karaoke", - "id": "FHncjpXn-XY" - }, - { - "title": "Cat Stevens - Oh Very Young - Karaoke Version from Zoom Karaoke", - "id": "Aip2YU1fQfM" - }, - { - "title": "Dusty Springfield - Losing You - Karaoke Version from Zoom Karaoke", - "id": "7bjvHBUMDLs" - }, - { - "title": "Dusty Springfield - I Close My Eyes And Count To Ten - Karaoke Version from Zoom Karaoke", - "id": "5Sw579dupT0" - }, - { - "title": "Years And Years - Desire - Karaoke Version from Zoom Karaoke", - "id": "TFgjJN0Af9w" - }, - { - "title": "Kansas - Carry On Wayward Son - Karaoke Version from Zoom Karaoke", - "id": "uwz3o5GNDTA" - }, - { - "title": "Neil Young - The Needle And The Damage Done - Karaoke Version from Zoom Karaoke", - "id": "jaDk5K31ChM" - }, - { - "title": "Fall Out Boy - Immortals - Karaoke Version from Zoom Karaoke", - "id": "YFpD0mcC82k" - }, - { - "title": "Demi Lovato - Stone Cold - Karaoke Version from Zoom Karaoke", - "id": "me5-XEjMJVc" - }, - { - "title": "Placebo - Nancy Boy - Karaoke Version from Zoom Karaoke", - "id": "z3GoZpvqs4w" - }, - { - "title": "Jason Derulo ft Ty Dolla $ign & Nicki Minaj - Swalla (Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "rfsvSg4cY0M" - }, - { - "title": "Miley Cyrus - Malibu - Karaoke Version from Zoom Karaoke", - "id": "IalquwGLGwo" - }, - { - "title": "Shawn Mendes - There's Nothing Holdin' Me Back - Karaoke Version from Zoom Karaoke", - "id": "SZ6_6iVsd6A" - }, - { - "title": "Kenny Rogers - She Believes In Me - Karaoke Version from Zoom Karaoke", - "id": "-InvxqoFO-0" - }, - { - "title": "Smokie - Take Good Care Of My Baby - Karaoke Version from Zoom Karaoke", - "id": "oisUEqKLHpQ" - }, - { - "title": "Suede - Beautiful Ones - Karaoke Version from Zoom Karaoke", - "id": "T71BpOFsYgI" - }, - { - "title": "Chubby Checker - The Twist - Karaoke Version from Zoom Karaoke", - "id": "PpIn467jPB8" - }, - { - "title": "Katy Perry feat Migos - Bon Appetit (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "KZY6_HBCsos" - }, - { - "title": "Katy Perry feat Migos - Bon Appetit (For Solo Female) - Karaoke Version from Zoom Karaoke", - "id": "pU8RDX1ISF4" - }, - { - "title": "Harry Styles - Sweet Creature - Karaoke Version from Zoom Karaoke", - "id": "b6H3rVOwYTI" - }, - { - "title": "Jason Derulo ft Ty Dolla $ign & Nicki Minaj - Swalla (Duet) - Karaoke Version from Zoom Karaoke", - "id": "gcGpNBaZsVE" - }, - { - "title": "DJ Khaled ft Justin Bieber, Quavo, Chance The Rapper & Lil' Wayne - I'm The One (Clean)", - "id": "LYltOiAEax0" - }, - { - "title": "Halsey - Eyes Closed - Karaoke Version from Zoom Karaoke", - "id": "-hR7sIE5hMg" - }, - { - "title": "The Human League - Human (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "4sPFwWDpafs" - }, - { - "title": "The Human League - Human (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "WvVU-ZbgyQ4" - }, - { - "title": "The Three Degrees - Woman In Love - Karaoke Version from Zoom Karaoke", - "id": "SKKbrR0-mZw" - }, - { - "title": "Cinderella - So This Is Love - Karaoke Version from Zoom Karaoke", - "id": "YX7ceBWjfX4" - }, - { - "title": "Hairspray - The Nicest Kids In Town - Karaoke Version from Zoom Karaoke", - "id": "jSI57n_lKr4" - }, - { - "title": "Kenny Rogers - Through The Years - Karaoke Version from Zoom Karaoke", - "id": "vT3y8ryoSCM" - }, - { - "title": "Birdy - Wings - Karaoke Version from Zoom Karaoke", - "id": "z8xWGQKuBT8" - }, - { - "title": "Rag'n'Bone Man - Skin - Karaoke Version from Zoom Karaoke", - "id": "u_dX8GLNeXk" - }, - { - "title": "Semisonic - Chemistry - Karaoke Version from Zoom Karaoke", - "id": "rS2tIN9apjQ" - }, - { - "title": "Thin Lizzy - Cold Sweat - Karaoke Version from Zoom Karaoke", - "id": "jlsnFvmXwDs" - }, - { - "title": "Charlie Puth - Attention - Karaoke Version from Zoom Karaoke", - "id": "_eYVEp3Kvas" - }, - { - "title": "Weezer - Say It Ain't So - Karaoke Version from Zoom Karaoke", - "id": "7zvfwCFgDtE" - }, - { - "title": "Little Shop Of Horrors - Somewhere That's Green - Karaoke Version from Zoom Karaoke", - "id": "7sPMK_eQ0Gw" - }, - { - "title": "Mike And The Mechanics - Taken In - Karaoke Version from Zoom Karaoke", - "id": "0tX_IdYBvh0" - }, - { - "title": "Gonzalez - Haven't Stopped Dancing Yet - Karaoke Version from Zoom Karaoke", - "id": "vMGFBWe-3RA" - }, - { - "title": "Green Day - Troubled Times - Karaoke Version from Zoom Karaoke", - "id": "tfv7_CQtDNY" - }, - { - "title": "Moana - Shiny - Karaoke Version from Zoom Karaoke", - "id": "9GtzkZIgdHc" - }, - { - "title": "East 17 - It's Alright - Karaoke Version from Zoom Karaoke", - "id": "us8TZ0sho4E" - }, - { - "title": "The Kinks - Victoria - Karaoke Version from Zoom Karaoke", - "id": "VvzbrybY7N0" - }, - { - "title": "Johnny Nash - Tears On My Pillow - Karaoke Version from Zoom Karaoke", - "id": "KCBH-iNOzLQ" - }, - { - "title": "Louis Tomlinson feat Bebe Rexha and DFA - Back To You (Clean Version) - Zoom Karaoke Version", - "id": "mY9Q90w8WKQ" - }, - { - "title": "Linkin Park - New Divide - Karaoke Version from Zoom Karaoke", - "id": "UV7YpYezD14" - }, - { - "title": "School Of Rock - Teacher's Pet - Karaoke Version from Zoom Karaoke", - "id": "3-vMTWFHL5c" - }, - { - "title": "Hamilton The Musical - Burn - Karaoke Version from Zoom Karaoke", - "id": "WWkhtWeRTyA" - }, - { - "title": "Sigala and Ella Eyre - Came Here For Love - Karaoke Version from Zoom Karaoke", - "id": "tYEAGKofoZ4" - }, - { - "title": "Neil Young - Harvest Moon - Karaoke Version from Zoom Karaoke", - "id": "oTDN_NnZqLk" - }, - { - "title": "Mud - Hypnosis - Karaoke Version from Zoom Karaoke", - "id": "nWTcy8ZKvxE" - }, - { - "title": "Mud - Moonshine Sally - Karaoke Version from Zoom Karaoke", - "id": "fTY2zUOGVJE" - }, - { - "title": "Tommy Steele - Little White Bull - Karaoke Version from Zoom Karaoke", - "id": "bzomepXJFhU" - }, - { - "title": "Frank Sinatra - High Hopes - Karaoke Version from Zoom Karaoke", - "id": "WB-k2rt_bJ0" - }, - { - "title": "Paul Heaton And Jacqui Abbot - I Gotta Praise - Karaoke Version from Zoom Karaoke", - "id": "V1PJ7gv4-PU" - }, - { - "title": "Joe Cocker - A Woman Loves A Man - Karaoke Version from Zoom Karaoke", - "id": "QqTi3Bw5rR4" - }, - { - "title": "Linkin Park - Castle Of Glass - Karaoke Version from Zoom Karaoke", - "id": "FabzHvyAXps" - }, - { - "title": "The Kinks - Mr Pleasant - Karaoke Version from Zoom Karaoke", - "id": "KCVyE4rXJbQ" - }, - { - "title": "Sweet - Love Is Like Oxygen - Karaoke Version from Zoom Karaoke", - "id": "JgkK-RxriAw" - }, - { - "title": "Dua Lipa - New Rules - Karaoke Version from Zoom Karaoke", - "id": "4qotESP0qhQ" - }, - { - "title": "Kansas - Fight Fire With Fire - Karaoke Version from Zoom Karaoke", - "id": "JkSCYA0Zasg" - }, - { - "title": "Beck - Loser - Karaoke Version from Zoom Karaoke", - "id": "jlkjuRcmmlg" - }, - { - "title": "James Blunt and Ed Sheeran - Sacrifice (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "kUUvR0hlQjk" - }, - { - "title": "Destiny's Child - Emotion - Karaoke Version from Zoom Karaoke", - "id": "i6m9L9EdC6U" - }, - { - "title": "The Cheeky Girls - Cheeky Song - Touch My Bum Karaoke Version from Zoom Karaoke", - "id": "MxcG48yEM2E" - }, - { - "title": "Johnny Nash - Hold Me Tight - Karaoke Version from Zoom Karaoke", - "id": "1Gr75SgGTxQ" - }, - { - "title": "Jim Reeves - Bimbo (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "x1Dhq7u9Qxs" - }, - { - "title": "Johnny Nash - There Are More Questions Than Answers - Karaoke Version from Zoom Karaoke", - "id": "nzOplpPqqps" - }, - { - "title": "Miss Saigon - I'd Give My Life For You - Karaoke Version from Zoom Karaoke", - "id": "dLzAFM9OuDc" - }, - { - "title": "Kesha - Praying - Karaoke Version from Zoom Karaoke", - "id": "XUFMpZUHtvI" - }, - { - "title": "Crowded House - Better Be Home Soon - Karaoke Version from Zoom Karaoke", - "id": "WYaLuVuJIKg" - }, - { - "title": "Crowded House - Something So Strong - Karaoke Version from Zoom Karaoke", - "id": "NunZT4SDFs0" - }, - { - "title": "George Ezra - Paradise - Karaoke Version from Zoom Karaoke", - "id": "ssunBIeTq-8" - }, - { - "title": "Andra Day - Rise Up - Karaoke Version from Zoom Karaoke", - "id": "caL-NCsqo9o" - }, - { - "title": "The Snake Oil Willie Band - I Don't Look Good Naked Anymore - Karaoke Version from Zoom Karaoke", - "id": "UY_NXuOHjuc" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - Love Hurts - Karaoke Version from Zoom", - "id": "OmgHnqaZh0s" - }, - { - "title": "Little Shop Of Horrors - Dentist - Karaoke Version from Zoom Karaoke", - "id": "TRRNKz5qkSU" - }, - { - "title": "First Aid Kit - Fireworks (With Harmony for Solo Singer) Karaoke Version from Zoom Karaoke", - "id": "IlTZg9Yzcmw" - }, - { - "title": "First Aid Kit - Fireworks (No Harmony For Duet) - Karaoke Version from Zoom Karaoke", - "id": "21wR-L7PrY8" - }, - { - "title": "Fiction Factory - (Feels Like) Heaven - Karaoke Version from Zoom Karaoke", - "id": "Stoif2kfIXg" - }, - { - "title": "Bebe Rexha feat Florida Georgia Line - Meant To Be - Karaoke Version from Zoom Karaoke", - "id": "0dNgTft26Nw" - }, - { - "title": "Tony Bennett - Fly Me To The Moon (In Other Words) - Karaoke Version from Zoom Karaoke", - "id": "yBWyM151sIQ" - }, - { - "title": "Little Shop Of Horrors - Skid Row (Downtown) - Karaoke Version from Zoom Karaoke", - "id": "FYZk9CUXqz8" - }, - { - "title": "The Undertones - My Perfect Cousin - Karaoke Version from Zoom Karaoke", - "id": "smiAbgGBvZM" - }, - { - "title": "The Chainsmokers - You Owe Me - Karaoke Version from Zoom Karaoke", - "id": "VhrDW6PqJj4" - }, - { - "title": "Ramz - Barking - Karaoke Version from Zoom Karaoke", - "id": "ndPk95vIyHs" - }, - { - "title": "Portugal The Man - Feel It Still - Karaoke Version from Zoom Karaoke", - "id": "3KnMGoq1ydk" - }, - { - "title": "James Bay - Wild Love - Karaoke Version from Zoom Karaoke", - "id": "GEXDYkPZ4ds" - }, - { - "title": "Cat Stevens - Peace Train - Karaoke Version from Zoom Karaoke", - "id": "7pMhHckBKjc" - }, - { - "title": "Brian Hyland - Ginny Come Lately - Karaoke Version from Zoom Karaoke", - "id": "0Owt0uWwDd8" - }, - { - "title": "The Greatest Showman - Tightrope - Karaoke Version from Zoom Karaoke", - "id": "OUAY8tWkH1Q" - }, - { - "title": "Nat King Cole - Let's Face The Music And Dance - Karaoke Version from Zoom Karaoke", - "id": "Mb7puAoy6tE" - }, - { - "title": "Electronic - Getting Away With It - Karaoke Version from Zoom Karaoke", - "id": "For4ueo_nWI" - }, - { - "title": "Don Williams - Say It Again - Karaoke Version from Zoom Karaoke", - "id": "0BBLPo-bgOw" - }, - { - "title": "Don Williams - Amanda - Karaoke Version from Zoom Karaoke", - "id": "I_Uv7TFxO7I" - }, - { - "title": "Selena Gomez - Bad Liar - Karaoke Version from Zoom Karaoke", - "id": "nHxc263WCec" - }, - { - "title": "Snowy White - Bird Of Paradise - Karaoke Version from Zoom Karaoke", - "id": "aGIt3xU8erQ" - }, - { - "title": "James Blunt and Ed Sheeran - Sacrifice Duet Version - Karaoke Version from Zoom Karaoke", - "id": "ZLW044uqI8w" - }, - { - "title": "Zedd feat Liam Payne - Get Low - Karaoke Version from Zoom Karaoke", - "id": "UzWc2P2a3EQ" - }, - { - "title": "The Bay City Rollers - Remember - Karaoke Version from Zoom Karaoke", - "id": "4MY65onoPQU" - }, - { - "title": "Cat Stevens - The Wind - Karaoke Version from Zoom Karaoke", - "id": "brHI5EBCgF8" - }, - { - "title": "Andrew Gold - Lonely Boy - Karaoke Version from Zoom Karaoke", - "id": "Z-QcCY-yGk8" - }, - { - "title": "Noel Gallagher's High Flying Birds - It's A Beautiful World - Karaoke Version from Zoom Karaoke", - "id": "XxSemCaWsGA" - }, - { - "title": "Paloma Faith - Til I'm Done - Karaoke Version from Zoom Karaoke", - "id": "KUpRp_7en7E" - }, - { - "title": "Ozzy Osbourne - Hellraiser - Karaoke Version from Zoom Karaoke", - "id": "kJewnvtEiEE" - }, - { - "title": "Liam Gallagher - Paper Crown - Karaoke Version from Zoom Karaoke", - "id": "0EVhmP3ZGbk" - }, - { - "title": "Janelle Monae - Make Me Feel - Karaoke Version from Zoom Karaoke", - "id": "AfPsaIbKngY" - }, - { - "title": "The Fratellis - Starcrossed Losers - Karaoke Version from Zoom Karaoke", - "id": "jgO9hsz04l0" - }, - { - "title": "Kenny Rogers - Reuben James - Karaoke Version from Zoom Karaoke", - "id": "ieuyB8ghPo0" - }, - { - "title": "Joe Cocker - Delta Lady - Karaoke Version from Zoom Karaoke", - "id": "uYpraXuKKs4" - }, - { - "title": "Don Williams - Tulsa Time - Karaoke Version from Zoom Karaoke", - "id": "efH_KVdRm8o" - }, - { - "title": "Don Williams - Some Broken Hearts Never Mend - Karaoke Version from Zoom Karaoke", - "id": "JMS_ADqoGkw" - }, - { - "title": "Cat Stevens - Where Do The Children Play - Karaoke Version from Zoom Karaoke", - "id": "BcqUMB85sEk" - }, - { - "title": "Taylor Swift - Delicate - Karaoke Version from Zoom Karaoke", - "id": "DMmvTA3csgA" - }, - { - "title": "Niall Horan - On The Loose - Karaoke Version from Zoom Karaoke", - "id": "nu_HU6-4YjY" - }, - { - "title": "Marshmello and Anne Marie - Friends - Karaoke Version from Zoom Karaoke", - "id": "qVjZsLISDNY" - }, - { - "title": "G-Eazy feat Charlie Puth - Sober - Karaoke Version from Zoom Karaoke", - "id": "vFvJadok-Vk" - }, - { - "title": "Charlie Puth feat Kehlani - Done For Me - Karaoke Version from Zoom Karaoke", - "id": "S7_cl0DDXSY" - }, - { - "title": "Cat Stevens - Hard Headed Woman - Karaoke Version from Zoom Karaoke", - "id": "R05UMMGWLVw" - }, - { - "title": "Brenda Lee - Dynamite - Karaoke Version from Zoom Karaoke", - "id": "FUfdk2zMAsY" - }, - { - "title": "Backstreet Boys - Larger Than Life - Karaoke Version from Zoom Karaoke", - "id": "FSJdGxLBmnE" - }, - { - "title": "Brenda Lee - Coming On Strong (Re-recorded Version) - Karaoke Version from Zoom Karaoke", - "id": "99m7nVd91Z4" - }, - { - "title": "Andy Stewart - Donald Where's Your Troosers - Karaoke Version from Zoom Karaoke", - "id": "U0oPp0MnTdg" - }, - { - "title": "Mari Wilson - Cry Me A River - Karaoke Version from Zoom Karaoke", - "id": "7C56or0vpnA" - }, - { - "title": "Barry White - Let The Music Play - Karaoke Version from Zoom Karaoke", - "id": "gDy92AM3XrI" - }, - { - "title": "The Bay City Rollers - Rock And Roll Love Letter - Karaoke Version from Zoom Karaoke", - "id": "feXlVtv7zYg" - }, - { - "title": "Mud - Dyna-Mite - Karaoke Version from Zoom Karaoke", - "id": "aMrNPpBc3sk" - }, - { - "title": "Mud - Rocket - Karaoke Version from Zoom Karaoke", - "id": "hbxYaC9kMew" - }, - { - "title": "Mud - The End Of The World - Karaoke Version from Zoom Karaoke", - "id": "EEiIUQNWZgI" - }, - { - "title": "Randy Crawford And The Crusaders - Street Life - Karaoke Version from Zoom Karaoke", - "id": "ClGld4xPfgw" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - Running Scared Karaoke Version from", - "id": "jxKYtrxhROg" - }, - { - "title": "Jeff Buckley - Grace - Karaoke Version from Zoom Karaoke", - "id": "ZRydtQvBy1Y" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - I Drove All Night - Karaoke Version", - "id": "UL2MwTvkXIM" - }, - { - "title": "Neil Young - After The Gold Rush - Karaoke Version from Zoom Karaoke", - "id": "Psm-evj1ks4" - }, - { - "title": "Neil Young - Out On The Weekend - Karaoke Version from Zoom Karaoke", - "id": "DDv2u0c6M74" - }, - { - "title": "Driver 67 - Car 67 - Karaoke Version from Zoom Karaoke", - "id": "9KDpw2-BC2U" - }, - { - "title": "Elvis Presley - A Big Hunk O' Love - Karaoke Version from Zoom Karaoke", - "id": "6-0LcdLSOfE" - }, - { - "title": "The Charlatans - One To Another - Karaoke Version from Zoom Karaoke", - "id": "uz7xzTVlEsY" - }, - { - "title": "The Stone Roses - Ten Storey Love Song - Karaoke Version from Zoom Karaoke", - "id": "pytKkK6KqKM" - }, - { - "title": "Tina Arena - Whistle Down The Wind - Karaoke Version from Zoom Karaoke", - "id": "gyDrwbMBKJA" - }, - { - "title": "Sheryl Crow - My Favourite Mistake - Karaoke Version from Zoom Karaoke", - "id": "cKEc4PE3LHE" - }, - { - "title": "Transvision Vamp - I Want Your Love - Karaoke Version from Zoom Karaoke", - "id": "7IN8rs4ErjM" - }, - { - "title": "West Side Story - Somewhere - Karaoke Version from Zoom Karaoke", - "id": "vwg8AFESpUc" - }, - { - "title": "Pink - Beautiful Trauma - Karaoke Version from Zoom Karaoke", - "id": "tNMGTriARlU" - }, - { - "title": "Edwyn Collins - A Girl Like You - Karaoke Version from Zoom Karaoke", - "id": "r4BHYQ29pv0" - }, - { - "title": "Donna Summer - Love's Unkind - Karaoke Version from Zoom Karaoke", - "id": "m61kgByg1TA" - }, - { - "title": "Jeff Buckley - Lilac Wine - Karaoke Version from Zoom Karaoke", - "id": "i0liOIRVh4g" - }, - { - "title": "Neil Young - Southern Man - Karaoke Version from Zoom Karaoke", - "id": "gfaaPuf4hDg" - }, - { - "title": "James - Waltzing Along - Karaoke Version from Zoom Karaoke", - "id": "dunkwqfkVH0" - }, - { - "title": "Jeff Buckley - So Real - Karaoke Version from Zoom Karaoke", - "id": "WkH9AaHPj2c" - }, - { - "title": "Pulp - Underwear - Karaoke Version from Zoom Karaoke", - "id": "KKI94QNVcZo" - }, - { - "title": "The Little Mermaid - Kiss The Girl - Karaoke Version from Zoom Karaoke", - "id": "Ix937tARCFQ" - }, - { - "title": "Neil Young - Only Love Can Break Your Heart - Karaoke Version from Zoom Karaoke", - "id": "FvXRjD9_rkw" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - Crying - Karaoke Version from Zoom Kar", - "id": "BCzS6CktTjw" - }, - { - "title": "Ed Sheeran and Beyonce - Perfect - Karaoke Version from Zoom Karaoke", - "id": "8nPHThpXij0" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - It's Over - Karaoke Version from Zoom", - "id": "7hjtBTf00lM" - }, - { - "title": "Sam Smith - One Last Song - Karaoke Version from Zoom Karaoke", - "id": "5CKvRFE06I8" - }, - { - "title": "David Alexander - Working Man - Karaoke Version from Zoom Karaoke", - "id": "ybdxnKVC6G4" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - In Dreams - Karaoke Version from Zoom", - "id": "yEHarlwDnx4" - }, - { - "title": "Niall Horan - Flicker - Karaoke Version from Zoom Karaoke", - "id": "xI2sfiyOr_8" - }, - { - "title": "Rita Ora - Anywhere - Karaoke Version from Zoom Karaoke", - "id": "mOHBD3naQic" - }, - { - "title": "XTC - Senses Working Overtime - Karaoke Version from Zoom Karaoke", - "id": "m7k_ve-ORRk" - }, - { - "title": "Elbow - Golden Slumbers - Karaoke Version from Zoom Karaoke", - "id": "fh4Z2PxAJjM" - }, - { - "title": "Selena Gomez and Marshmello - Wolves - Karaoke Version from Zoom Karaoke", - "id": "Om8ytL-RdLE" - }, - { - "title": "Roy Orbison With The Royal Philharmonic Orchestra - I'm Hurtin' - Karaoke Version from Zoo", - "id": "IpjP4bBBWXA" - }, - { - "title": "Alvin Stardust - I Won't Run Away - Karaoke Version from Zoom Karaoke", - "id": "9vop9LGgXXc" - }, - { - "title": "Hamilton The Musical - Hurricane - Karaoke Version from Zoom Karaoke", - "id": "XTSU3x1lBeQ" - }, - { - "title": "Simple Minds - Hypnotised - Karaoke Version from Zoom Karaoke", - "id": "IaVoDJMKIug" - }, - { - "title": "Cinderella - A Dream Is A Wish Your Heart Makes - Karaoke Version from Zoom Karaoke", - "id": "MFN78RHvyLk" - }, - { - "title": "Liza Minnelli - Cabaret - Karaoke Version from Zoom Karaoke", - "id": "DpBkdRqFkf0" - }, - { - "title": "The Carpenters - You're The One - Karaoke Version from Zoom Karaoke", - "id": "SZHsKagYiIs" - }, - { - "title": "Kid Creole And The Coconuts - Annie I'm Not Your Daddy - Karaoke Version from Zoom Karaoke", - "id": "xahwVorQ57I" - }, - { - "title": "Hurricane Smith - Oh Babe What Would You Say - Karaoke Version from Zoom Karaoke", - "id": "u4XDs__Qp3M" - }, - { - "title": "Christopher Cross - Arthur's Theme (Best That You Can Do) - Karaoke Version from Zoom Karaoke", - "id": "N8_XQrQ0Foo" - }, - { - "title": "Calum Scott - You Are The Reason - Karaoke Version from Zoom Karaoke", - "id": "DKJt1VsRU14" - }, - { - "title": "Liam Payne - Bedroom Floor - Karaoke Version from Zoom Karaoke", - "id": "AMT2qHxdWhE" - }, - { - "title": "Sigrid - Strangers - Karaoke Version from Zoom Karaoke", - "id": "-tx_-PdDQ0Q" - }, - { - "title": "Jeff Buckley - Everybody Here Wants You - Karaoke Version from Zoom Karaoke", - "id": "QPwgX9lxTOM" - }, - { - "title": "Celine Dion and Peabo Bryson - Beauty And The Beast (Duet) - Karaoke Version from Zoom Karaoke", - "id": "6UJU6VSux0Y" - }, - { - "title": "Dusty Springfield - Spooky - Karaoke Version from Zoom Karaoke", - "id": "C1AAeP5SRls" - }, - { - "title": "Gerry Rafferty - Night Owl - Karaoke Version from Zoom Karaoke", - "id": "nh0bwGrFJh0" - }, - { - "title": "INXS - Suicide Blonde - Karaoke Version from Zoom Karaoke", - "id": "ozz5RiWsBjU" - }, - { - "title": "Justin Timberlake feat Chris Stapleton - Say Something - Karaoke Version from Zoom Karaoke", - "id": "7vrzspsoLHY" - }, - { - "title": "Kenny Rogers - Daytime Friends - Karaoke Version from Zoom Karaoke", - "id": "P5DtcOyM5pw" - }, - { - "title": "The Cranberries - Promises - Karaoke Version from Zoom Karaoke", - "id": "jeKWSyeS9Z8" - }, - { - "title": "Anna Puu - Me Ollaan Runo - Karaoke Version from Zoom Karaoke", - "id": "ewK4fCw1qKk" - }, - { - "title": "The Cranberries - Animal Instinct - Karaoke Version from Zoom Karaoke", - "id": "Vm5UgSe-R1I" - }, - { - "title": "Apulanta - Lokin Pรครคllรค Lokki - Karaoke Version from Zoom Karaoke", - "id": "Ed6eGN20jOQ" - }, - { - "title": "Atomirotta - Aurinkoon - Karaoke Version from Zoom Karaoke", - "id": "fXiFEk6sz00" - }, - { - "title": "The Cranberries - When You're Gone - Karaoke Version from Zoom Karaoke", - "id": "2j17R6DVz8M" - }, - { - "title": "Iisa - Jos Se Sattuu - Karaoke Version from Zoom Karaoke", - "id": "9NKsHqj5bYI" - }, - { - "title": "Olavi Uusivirta - Kesรคyรถn Uni - Karaoke Version from Zoom Karaoke", - "id": "gDrfdFJ_5ek" - }, - { - "title": "Pรครค Kii - Sรค Veit Mun Levyt Kirpparille - Karaoke Version from Zoom Karaoke", - "id": "eolSjqGoxkE" - }, - { - "title": "Alma - Karma - Karaoke Version from Zoom Karaoke", - "id": "dOwhLjc1omY" - }, - { - "title": "Yona - Ghetto - Karaoke Version from Zoom Karaoke", - "id": "TYmcKKX8rqg" - }, - { - "title": "Evelina - Tornado - Karaoke Version from Zoom Karaoke", - "id": "Olyx4R9y9aA" - }, - { - "title": "Kaija Koo - Mun Sydรคn - Karaoke Version from Zoom Karaoke", - "id": "NWq6e2kCusE" - }, - { - "title": "Apulanta - Toinen Jumala - Karaoke Version from Zoom Karaoke", - "id": "KtPhk_Ka59E" - }, - { - "title": "Pyhimys feat Aksel Kankaanranta - Jรคttilรคinen - Karaoke Version from Zoom Karaoke", - "id": "CqSat3UBoM8" - }, - { - "title": "The Cranberries - Dreams - Karaoke Version from Zoom Karaoke", - "id": "deRn-EEVikE" - }, - { - "title": "The Cranberries - Just My Imagination - Karaoke Version from Zoom Karaoke", - "id": "JpTekZHCpT0" - }, - { - "title": "The Cranberries - Analyse - Karaoke Version from Zoom Karaoke", - "id": "CxZK1eUJWW8" - }, - { - "title": "Maroon 5 - Nobody's Love - Karaoke Version from Zoom Karaoke", - "id": "yB2rTc_sbMY" - }, - { - "title": "The Killers - My Own Soul's Warning - Karaoke Version from Zoom Karaoke", - "id": "9BmrQKNHtQY" - }, - { - "title": "Little Mix - Holiday - Karaoke Version from Zoom Karaoke", - "id": "M8bqOwo00Ew" - }, - { - "title": "Katy Perry - Smile - Karaoke Version from Zoom Karaoke", - "id": "JDskjbgH6oc" - }, - { - "title": "Dermot Kennedy - Giants - Karaoke Version from Zoom Karaoke", - "id": "2goVmoenArg" - }, - { - "title": "Cat Stevens - Lady D'Arbanville - Karaoke Version from Zoom Karaoke", - "id": "jcq8OKr5kHA" - }, - { - "title": "Cat Stevens - Can't Keep It In - Karaoke Version from Zoom Karaoke", - "id": "PvsQB6Y0188" - }, - { - "title": "Calvin Harris and Dua Lipa - One Kiss - Karaoke Version from Zoom Karaoke", - "id": "WMTLoE6t_Kg" - }, - { - "title": "Bullet For My Valentine - You Want A Battle (Here's A War) - Karaoke Version from Zoom Karaoke", - "id": "aFt2AI8zFT8" - }, - { - "title": "The Greatest Showman - A Million Dreams - Karaoke Version from Zoom Karaoke", - "id": "3X433j9DjSI" - }, - { - "title": "Ultravox - Vienna/Dancing With Tears In My Eyes (Medley) - Karaoke Version from Zoom Karaoke", - "id": "E6sJh7PQ8VI" - }, - { - "title": "The Greatest Showman - Come Alive - Karaoke Version from Zoom Karaoke", - "id": "cClG9UyjFQI" - }, - { - "title": "The Verve - The Drugs Don't Work-Lucky Man Medley - Karaoke Version from Zoom Karaoke", - "id": "r_C0gaItB5E" - }, - { - "title": "The Traveling Wilburys - Handle With Care/End Of The Line Medley - Karaoke Version from Zoom Karaoke", - "id": "c59vS0pAkrQ" - }, - { - "title": "Texas - Say What You Want-Black Eyed Boy Medley - Karaoke Version from Zoom Karaoke", - "id": "dcvZJLJrfH0" - }, - { - "title": "Tears For Fears - Shout-Everybody Wants To Rule The World Medley - Karaoke Version from Zoom Karaoke", - "id": "L6KW_IBIXtQ" - }, - { - "title": "The Stereophonics - Have A Nice Day-Dakota Medley - Karaoke Version from Zoom Karaoke", - "id": "IuBdQY0czBc" - }, - { - "title": "Sister Sledge - Lost In Music-We Are Family Medley - Karaoke Version from Zoom Karaoke", - "id": "wXIRWGZmkaA" - }, - { - "title": "Sheryl Crow - If It Makes You Happy-My Favourite Mistake Medley - Karaoke Version from Zoom Karaoke", - "id": "hRjEZkUuoGg" - }, - { - "title": "Sam Cooke - Only Sixteen-Cupid Medley - Karaoke Version from Zoom Karaoke", - "id": "oToN9JqGMNc" - }, - { - "title": "Kings Of Leon - Use Somebody / Sex On Fire (Medley) - Karaoke Version from Zoom Karaoke", - "id": "uWb5p9nnlq0" - }, - { - "title": "Zedd feat Grey and Maren Morris - The Middle - Karaoke Version from Zoom Karaoke", - "id": "hwsFeaKQzJw" - }, - { - "title": "Red Box - Lean On Me (Ah-Li-Ayo) - Karaoke Version from Zoom Karaoke", - "id": "Vl8jFUWGuq4" - }, - { - "title": "Cat Stevens - If You Want To Sing Out, Sing Out - Karaoke Version from Zoom Karaoke", - "id": "_5xuYCdRyII" - }, - { - "title": "Wet Wet Wet - Sweet Little Mystery-Wishing I Was Lucky Medley - Karaoke Version from Zoom Karaoke", - "id": "DDtsqngO1RU" - }, - { - "title": "Westlife - World Of Our Own-When You're Looking Like That Medley - Karaoke Version from Zoom Karaoke", - "id": "sHBH2u5mdSE" - }, - { - "title": "Chess - One Night In Bangkok - Karaoke Version from Zoom Karaoke", - "id": "OKBQVkr7riw" - }, - { - "title": "Ashford and Simpson - Solid - Karaoke Version from Zoom Karaoke", - "id": "I6j8zpO5mTA" - }, - { - "title": "The Greatest Showman - Rewrite The Stars - Karaoke Version from Zoom Karaoke", - "id": "QZCImuHnVIs" - }, - { - "title": "Sting and Shaggy - Don't Make Me Wait - Karaoke Version from Zoom Karaoke", - "id": "u4DH18fn9gI" - }, - { - "title": "Sinitta - Toy Boy - Karaoke Version from Zoom Karaoke", - "id": "CThiUb34Wa0" - }, - { - "title": "Colonel Abrams - Trapped - Karaoke Version from Zoom Karaoke", - "id": "Yh6bTmwhpVQ" - }, - { - "title": "Cliff Richard - Some People - Karaoke Version from Zoom Karaoke", - "id": "jctxDR8mAZQ" - }, - { - "title": "James Bay - Us - Karaoke Version from Zoom Karaoke", - "id": "FKHrR-zW-qg" - }, - { - "title": "Dolly Parton and Ricky Van Shelton - Rockin' Years - Karaoke Version from Zoom Karaoke", - "id": "3OLZVJMSzB0" - }, - { - "title": "Celine Dion - That's The Way It Is - Karaoke Version from Zoom Karaoke", - "id": "_quDozm62vk" - }, - { - "title": "Amos Lee - Violin - Karaoke Version from Zoom Karaoke", - "id": "8-8DZRVc1Rw" - }, - { - "title": "Various Artists - This Little Light Of Mine (Dance Mix) - Karaoke Version from Zoom Karaoke", - "id": "o6KSmZpmHbg" - }, - { - "title": "The Beach Boys - I Can Hear Music - Karaoke Version from Zoom Karaoke", - "id": "687784tMPlM" - }, - { - "title": "Paula Abdul - Opposites Attract - Karaoke Version from Zoom Karaoke", - "id": "BYcYIiH3kso" - }, - { - "title": "Kenny Rogers - You And I - Karaoke Version from Zoom Karaoke", - "id": "eI3JZySpWzs" - }, - { - "title": "John Mayer - In The Blood - Karaoke Version from Zoom Karaoke", - "id": "qIUTOQUeXXQ" - }, - { - "title": "Halsey feat Don Stefflon and Big Sean - Alone - Karaoke Version from Zoom Karaoke", - "id": "ykVsePQLViY" - }, - { - "title": "Frank Sinatra with The Red Norvo Quintet - Night And Day (Live in Australia 1959) - Karaoke Version", - "id": "hNVAl4IsEBA" - }, - { - "title": "Enchanted - Happy Working Song - Karaoke Version from Zoom Karaoke", - "id": "LZVAubU4Vj4" - }, - { - "title": "Luis Fonsi & Daddy Yankee ft Justin Bieber - Despacito Remix (Solo) - Karaoke Version from Zoom Kara", - "id": "WhH47OfrsOU" - }, - { - "title": "Luis Fonsi & Daddy Yankee ft Justin Bieber - Despacito Remix (Duet) - Karaoke Version from Zoom Kara", - "id": "lfwI9-n8vLs" - }, - { - "title": "Jason Derulo - Colours - Karaoke Version from Zoom Karaoke", - "id": "QeDNkB4M3vU" - }, - { - "title": "Leon Bridges - Coming Home - Karaoke Version from Zoom Karaoke", - "id": "7Yrj6_zRxmU" - }, - { - "title": "Dolly Parton - Just When I Needed You Most - Karaoke Version from Zoom Karaoke", - "id": "8IDkqD_eBlE" - }, - { - "title": "Chris Stapleton - Tennessee Whiskey - Karaoke Version from Zoom Karaoke", - "id": "AScdyDHCdSE" - }, - { - "title": "Zayn - Let Me - Karaoke Version from Zoom Karaoke", - "id": "5f5Rf_D-r1Q" - }, - { - "title": "The Weeknd - Call Out My Name - Karaoke Version from Zoom Karaoke", - "id": "GiiPw4xHzWo" - }, - { - "title": "Waylon Jennings - Good Ol' Boys (Dukes of Hazzard Theme) - Karaoke Version from Zoom Karaoke", - "id": "6mfX_blCFHE" - }, - { - "title": "Tom Petty And The Heartbreakers - Refugee - Karaoke Version from Zoom Karaoke", - "id": "ef1vOQZH7_8" - }, - { - "title": "The Proclaimers - Sunshine On Leith (For Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "-8ukH9eWNvw" - }, - { - "title": "The Proclaimers - Sunshine On Leith (For Duet) - Karaoke Version from Zoom Karaoke", - "id": "q64_EyY9uMA" - }, - { - "title": "The Kingsmen - Louie Louie - Karaoke Version from Zoom Karaoke", - "id": "QdXeOYud-I8" - }, - { - "title": "Tom Petty And The Heartbreakers - American Girl - Karaoke Version from Zoom Karaoke", - "id": "1EhMGs2m83Q" - }, - { - "title": "Tom Petty - You Don't Know How It Feels - Karaoke Version from Zoom Karaoke", - "id": "W5S37zkPamo" - }, - { - "title": "Seether - Betray And Degrade - Karaoke Version from Zoom Karaoke", - "id": "SmQ5ezbuTxY" - }, - { - "title": "The Pet Shop Boys - Left To My Own Devices - Karaoke Version from Zoom Karaoke", - "id": "rTxyY8r--VE" - }, - { - "title": "Paloma Faith - Make Your Own Kind Of Music - Karaoke Version from Zoom Karaoke", - "id": "vZEhRfOvrv8" - }, - { - "title": "Celine Dion - Ashes - Karaoke Version from Zoom Karaoke", - "id": "Gwz4T9vwYyw" - }, - { - "title": "Fun Boy Three - The Tunnel Of Love - Karaoke Version from Zoom Karaoke", - "id": "RYO0rJSRqos" - }, - { - "title": "Fun Boy Three - The Lunatics Have Taken Over The Asylum - Karaoke Version from Zoom Karaoke", - "id": "rccrMiVnDY4" - }, - { - "title": "Birdy - Wings (Acoustic Version) - Karaoke Version from Zoom Karaoke", - "id": "qdcQbAJm2tE" - }, - { - "title": "Years And Years - Sanctify - Karaoke Version from Zoom Karaoke", - "id": "IpWs78fQW80" - }, - { - "title": "Hamilton The Musical - Dear Theodosia - Karaoke Version from Zoom Karaoke", - "id": "O3Wk9ATpUp4" - }, - { - "title": "Arctic Monkeys - Four Out Of Five - Karaoke Version from Zoom Karaoke", - "id": "b_xtKH5SlWY" - }, - { - "title": "Tom Petty And The Heartbreakers - The Waiting - Karaoke Version from Zoom Karaoke", - "id": "0G2o1sikUoo" - }, - { - "title": "The Riverdale Cast - The World According To Chris (Carrie) - Karaoke Version from Zoom Karaoke", - "id": "5XZCkkIEahU" - }, - { - "title": "The Riverdale Cast - In (Carrie The Musical) - Karaoke Version from Zoom Karaoke", - "id": "1TAHSMDSLOA" - }, - { - "title": "Matilda The Musical - Naughty - Karaoke Version from Zoom Karaoke", - "id": "GdoeHIf-viw" - }, - { - "title": "Tom Petty - It's Good To Be King - Karaoke Version from Zoom Karaoke", - "id": "cDkugaGNlbg" - }, - { - "title": "Maroon 5 feat Cardi B - Girls Like You (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "LNI_pnx_6hY" - }, - { - "title": "Maroon 5 feat Cardi B - Girls Like You (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "_eyMjO1ZDow" - }, - { - "title": "Maroon 5 - Girls Like You (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "WjKEYQMqJG8" - }, - { - "title": "Maroon 5 - Girls Like You (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "DPUYLY97VEk" - }, - { - "title": "Marina And The Diamonds - I Am Not A Robot - Karaoke Version from Zoom Karaoke", - "id": "8fzyx_rOybg" - }, - { - "title": "Marina And The Diamonds - Hollywood - Karaoke Version from Zoom Karaoke", - "id": "VTRPr5qP2Zs" - }, - { - "title": "Liam Payne & J Balvin - Familiar - Karaoke Version from Zoom Karaoke", - "id": "S2sof2TAgXE" - }, - { - "title": "Jonas Blue feat Jack & Jack - Rise - Karaoke Version from Zoom Karaoke", - "id": "laQjthunt88" - }, - { - "title": "Ella Fitzgerald - Ev'ry Time We Say Goodbye - Karaoke Version from Zoom Karaoke", - "id": "XPsITNOyzvA" - }, - { - "title": "Demi Lovato - Sober - Karaoke Version from Zoom Karaoke", - "id": "30JcDoEucnE" - }, - { - "title": "Chvrches - Miracle - Karaoke Version from Zoom Karaoke", - "id": "7Wr-SqFWflQ" - }, - { - "title": "Blue Mink - The Banner Man - Karaoke Version from Zoom Karaoke", - "id": "RXtl7bBkxQs" - }, - { - "title": "Jim Croce - Operator (That's Not The Way It Feels) - Karaoke Version from Zoom Karaoke", - "id": "KC5XWJZjRZI" - }, - { - "title": "Jim Croce - New York's Not My Home - Karaoke Version from Zoom Karaoke", - "id": "qdLPDk-Ik2I" - }, - { - "title": "Jim Croce - I Got A Name - Karaoke Version from Zoom Karaoke", - "id": "1GAdhiwvG90" - }, - { - "title": "Jim Croce - Dreamin' Again - Karaoke Version from Zoom Karaoke", - "id": "ZeycWQREknA" - }, - { - "title": "Ella Fitzgerald - Blue Moon - Karaoke Version from Zoom Karaoke", - "id": "hrAgOux610Q" - }, - { - "title": "The Lightning Seeds - You Showed Me - Karaoke Version from Zoom Karaoke", - "id": "NCLbrPtv6jE" - }, - { - "title": "McVicar Soundtrack / Roger Daltrey - My Time Is Gonna Come - Karaoke Version from Zoom Karaoke", - "id": "T24GcfvEZbM" - }, - { - "title": "Rod Stewart - Brighton Beach - Karaoke Version from Zoom Karaoke", - "id": "SZ8IDJgGlJ4" - }, - { - "title": "McVicar Soundtrack / Roger Daltrey - Without Your Love - Karaoke Version from Zoom Karaoke", - "id": "EXzRs1cLj04" - }, - { - "title": "McVicar Soundtrack / Roger Daltrey - White City Lights - Karaoke Version from Zoom Karaoke", - "id": "uOWQeC3rQNQ" - }, - { - "title": "McVicar Soundtrack / Roger Daltrey - McVicar - Karaoke Version from Zoom Karaoke", - "id": "F2AsCvkSW44" - }, - { - "title": "Jim Croce - Photographs And Memories - Karaoke Version from Zoom Karaoke", - "id": "6sIHNY1-mgw" - }, - { - "title": "Cathy Dennis - Touch Me (All Night Long) - Karaoke Version from Zoom Karaoke", - "id": "7DOpzeAJqfU" - }, - { - "title": "Biffy Clyro - Re-Arrange - Karaoke Version from Zoom Karaoke", - "id": "59u-S_1CiW8" - }, - { - "title": "Belinda Carlisle - I Get Weak - Karaoke Version from Zoom Karaoke", - "id": "YH4w2Mntet0" - }, - { - "title": "The Book Of Mormon - Baptise Me - Karaoke Version from Zoom Karaoke", - "id": "jVYo6LyCs34" - }, - { - "title": "Jim Croce - Walkin' Back To Georgia - Karaoke Version from Zoom Karaoke", - "id": "4MWlEOyNkO4" - }, - { - "title": "Causes - Teach Me How To Dance With You - Karaoke Version from Zoom Karaoke", - "id": "UeO1sRuou-c" - }, - { - "title": "Biffy Clyro - Biblical - Karaoke Version from Zoom Karaoke", - "id": "ve-kurwimJI" - }, - { - "title": "Simon And Garfunkel - Keep The Customer Satisfied (No BVs) - Karaoke Version from Zoom Karaoke", - "id": "fjBRpEreUaY" - }, - { - "title": "McVicar Soundtrack / Roger Daltrey - Just A Dream Away - Karaoke Version from Zoom Karaoke", - "id": "hpySPpHaErs" - }, - { - "title": "McVicar Soundtrack / Roger Daltrey - Free Me - Karaoke Version from Zoom Karaoke", - "id": "o6adkLmiNPo" - }, - { - "title": "McVicar Soundtrack / Roger Daltrey - Bitter And Twisted - Karaoke Version from Zoom Karaoke", - "id": "hHHLrx9i6lw" - }, - { - "title": "Cliff Richard - I Love You - Karaoke Version from Zoom Karaoke", - "id": "W_1TSYhY9yA" - }, - { - "title": "Big Country - Chance - Karaoke Version from Zoom Karaoke", - "id": "UWoEmG0TOQA" - }, - { - "title": "Twenty One Pilots - Jumpsuit - Karaoke Version from Zoom Karaoke", - "id": "B9rtyQeMkqU" - }, - { - "title": "The Lightning Seeds - Sugar Coated Iceberg - Karaoke Version from Zoom Karaoke", - "id": "2o_ny6InmW0" - }, - { - "title": "Sister Sledge - Thinking Of You - Karaoke Version from Zoom Karaoke", - "id": "8qky_7bog3g" - }, - { - "title": "Ella Fitzgerald - I Can't Give You Anything But Love - Karaoke Version from Zoom Karaoke", - "id": "hz4qVCa1y7U" - }, - { - "title": "Ella Fitzgerald and Louis Armstrong - Summertime - Karaoke Version from Zoom Karaoke", - "id": "BTGoqUr5T9k" - }, - { - "title": "Ariana Grande - God Is A Woman - Karaoke Version from Zoom Karaoke", - "id": "FZzExvJ5N1U" - }, - { - "title": "Turin Brakes - Pain Killer - Karaoke Version from Zoom Karaoke", - "id": "7hY_w3B2390" - }, - { - "title": "Tommy Hunt - Loving On The Losing Side - Karaoke Version from Zoom Karaoke", - "id": "364MQIBdE_M" - }, - { - "title": "The Stylistics - Let's Put It All Together - Karaoke Version from Zoom Karaoke", - "id": "SUS7Ynr3k8g" - }, - { - "title": "Peter Cetera - No Explanation - Karaoke Version from Zoom Karaoke", - "id": "PPka1dJxOrU" - }, - { - "title": "Miles Kane - Cry On My Guitar - Karaoke Version from Zoom Karaoke", - "id": "GeRd1DkeA8s" - }, - { - "title": "Manfred Mann's Earth Band - Blinded By The Light - Karaoke Version from Zoom Karaoke", - "id": "DEvrdRKSW5k" - }, - { - "title": "Joe Dolan - It's You It's You It's You - Karaoke Version from Zoom Karaoke", - "id": "d0aT8Hs8YGA" - }, - { - "title": "James Bay - Just For Tonight - Karaoke Version from Zoom Karaoke", - "id": "XxkIj6PncvQ" - }, - { - "title": "Bad Wolves - Zombie - Karaoke Version from Zoom Karaoke", - "id": "chG5RvTzkAM" - }, - { - "title": "Albert Hammond - The Free Electric Band - Karaoke Version from Zoom Karaoke", - "id": "nPGRsiqXDSA" - }, - { - "title": "Kygo and Imagine Dragons - Born To Be Yours - Karaoke Version from Zoom Karaoke", - "id": "bwG987ccL6c" - }, - { - "title": "Traditional - Jerusalem - Karaoke Version from Zoom Karaoke", - "id": "f-RYjoHlQkg" - }, - { - "title": "Passenger - Runaway - Karaoke Version from Zoom Karaoke", - "id": "ZDr2sKxqYV0" - }, - { - "title": "Benny Blanco feat Halsey and Khalid - Eastside - Karaoke Version from Zoom Karaoke", - "id": "L99VwYPD4vM" - }, - { - "title": "Thompson Twins - You Take Me Up - Karaoke Version from Zoom Karaoke", - "id": "fRQsPFAu1JE" - }, - { - "title": "Thompson Twins - Lies - Karaoke Version from Zoom Karaoke", - "id": "Cfvmc5sSkN8" - }, - { - "title": "Thompson Twins - Lay Your Hands On Me - Karaoke Version from Zoom Karaoke", - "id": "LFAFiyN1xYI" - }, - { - "title": "The Stylistics - Sixteen Bars - Karaoke Version from Zoom Karaoke", - "id": "jeewYQFP4ec" - }, - { - "title": "Shirley Bassey - If I Never Sing Another Song - Karaoke Version from Zoom Karaoke", - "id": "yRBBnlwdIZw" - }, - { - "title": "Rose Royce - I Wanna Get Next To You - Karaoke Version from Zoom Karaoke", - "id": "Rr4hC1uAv0Y" - }, - { - "title": "Richard Hawley - Tonight The Streets Are Ours - Karaoke Version from Zoom Karaoke", - "id": "ggU7Oi6u104" - }, - { - "title": "Richard Hawley - Baby, You're My Light - Karaoke Version from Zoom Karaoke", - "id": "n87o5Ynm-6w" - }, - { - "title": "Miles Kane - Loaded - Karaoke Version from Zoom Karaoke", - "id": "cDHrN1FKcKQ" - }, - { - "title": "Ella Fitzgerald - With A Song In My Heart - Karaoke Version from Zoom Karaoke", - "id": "ghaJa3Pz11M" - }, - { - "title": "Ella Fitzgerald - Manhattan - Karaoke Version from Zoom Karaoke", - "id": "qBGJXk6DRmg" - }, - { - "title": "Don Broco - Priorities - Karaoke Version from Zoom Karaoke", - "id": "oCHCpL9-nqg" - }, - { - "title": "The Chainsmokers feat Emily Warren - Side Effects - Karaoke Version from Zoom Karaoke", - "id": "pgE7Z15SHK0" - }, - { - "title": "Mick Jagger - Party Doll - Karaoke Version from Zoom Karaoke", - "id": "desM1sy6054" - }, - { - "title": "Jim Croce - Hey Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "nY_NzoqE3W8" - }, - { - "title": "Jim Croce - Age - Karaoke Version from Zoom Karaoke", - "id": "xmyd_izhL_E" - }, - { - "title": "Jess Glynne - All I Am - Karaoke Version from Zoom Karaoke", - "id": "JOdKgLBkcWE" - }, - { - "title": "Ella Fitzgerald - Let's Do It Let's Fall In Love - Karaoke Version from Zoom Karaoke", - "id": "ge0mwT4dVF8" - }, - { - "title": "David Guetta feat Anne Marie - Don't Leave Me Alone - Karaoke Version from Zoom Karaoke", - "id": "VXTG-db5OGA" - }, - { - "title": "The Book Of Mormon - I Believe - Karaoke Version from Zoom Karaoke", - "id": "oFiFB_X-USs" - }, - { - "title": "John Lennon - Love - Karaoke Version from Zoom Karaoke", - "id": "qL0OL-IL8uA" - }, - { - "title": "West End feat Sybil - The Love I Lost - Karaoke Version from Zoom Karaoke", - "id": "4YWg0QA6YHk" - }, - { - "title": "Mร˜ - Final Song - Karaoke Version from Zoom Karaoke", - "id": "R6D6FtMpWoo" - }, - { - "title": "Tom Walker - Leave A Light On - Karaoke Version from Zoom Karaoke", - "id": "LrjTaH-9q8w" - }, - { - "title": "5 Seconds Of Summer - Youngblood - Karaoke Version from Zoom Karaoke", - "id": "DrJymk_oABM" - }, - { - "title": "Air Supply - Goodbye - Karaoke Version from Zoom Karaoke", - "id": "mn63mAE6vic" - }, - { - "title": "Air Supply - Making Love Out Of Nothing At All - Karaoke Version from Zoom Karaoke", - "id": "LgJEubj-cSY" - }, - { - "title": "George Ezra - Shotgun - Karaoke Version from Zoom Karaoke", - "id": "xlJ6wp7KSGk" - }, - { - "title": "Jim Croce - Bad Bad Leroy Brown - Karaoke Version from Zoom Karaoke", - "id": "-tGiF-whYTA" - }, - { - "title": "Jim Croce - I'll Have To Say I Love You In A Song - Karaoke Version from Zoom Karaoke", - "id": "FVilROBsZVA" - }, - { - "title": "Leon Bridges - Beyond - Karaoke Version from Zoom Karaoke", - "id": "6l7wsz7zfgo" - }, - { - "title": "Marina And The Diamonds - How To Be A Heartbreaker - Karaoke Version from Zoom Karaoke", - "id": "6Yu-epsV_M8" - }, - { - "title": "The Book Of Mormon - You And Me (But Mostly Me) - Karaoke Version from Zoom Karaoke", - "id": "LMbtc8Ymk8U" - }, - { - "title": "Anne Marie - 2002 - Karaoke Version from Zoom Karaoke", - "id": "BgtQfzbq6u4" - }, - { - "title": "Jim Croce - You Don't Mess Around With Jim - Karaoke Version from Zoom Karaoke", - "id": "ccKHngao7W0" - }, - { - "title": "Rita Ora feat Cardi B, Bebe Rexha & Charli XCX - Girls - Karaoke Version from Zoom Karaoke", - "id": "5mGu0gwLn5U" - }, - { - "title": "Sigrid - High Five - Karaoke Version from Zoom Karaoke", - "id": "liOMLvTIVSE" - }, - { - "title": "The Book Of Mormon - Sal Tlay Ka Siti - Karaoke Version from Zoom Karaoke", - "id": "RyRa4opuXIk" - }, - { - "title": "Blue Mink - Melting Pot - Karaoke Version from Zoom Karaoke", - "id": "qgzm6E7tPGo" - }, - { - "title": "Cat Stevens - Remember The Days Of The Old School Yard - Karaoke Version from Zoom Karaoke", - "id": "5pdj3ycVWdA" - }, - { - "title": "Cardi B feat Kehlani - Ring - Karaoke Version from Zoom Karaoke", - "id": "iEev7IOQSII" - }, - { - "title": "Cardi B feat Kehlani - Ring (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "BWFT7K7Tfx0" - }, - { - "title": "Bob Seger And The Silver Bullet Band - Old Time Rock And Roll - Karaoke Version from Zoom Karaoke", - "id": "GGe41CfMDI4" - }, - { - "title": "Pinkfong - Baby Shark - Karaoke Version from Zoom Karaoke", - "id": "YshfhiaZzkw" - }, - { - "title": "Pinkfong - Baby Shark (No Backing Vocals) - Karaoke Version from Zoom Karaoke", - "id": "1foOgjutK1A" - }, - { - "title": "The Dualers - Red Light - Karaoke Version from Zoom Karaoke", - "id": "roPjBLwJs_I" - }, - { - "title": "The Drifters - Fools Fall In Love - Karaoke Version from Zoom Karaoke", - "id": "wIpbUPzMjDY" - }, - { - "title": "The Beatles - Till There Was You (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "68EjBKFNt20" - }, - { - "title": "Seal - Future Love Paradise - Karaoke Version from Zoom Karaoke", - "id": "zAsm1WlViS8" - }, - { - "title": "The Pasadenas - I'm Doin' Fine Now - Karaoke Version from Zoom Karaoke", - "id": "SDgzngzkaz4" - }, - { - "title": "Meat Loaf & John Parr - Rock 'N' Roll Mercenaries (Solo Male) - Karaoke Version from Zoom Karaoke", - "id": "DSLuHX1wsME" - }, - { - "title": "Meat Loaf & John Parr - Rock 'N' Roll Mercenaries (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "iciQ7iTSBlo" - }, - { - "title": "Ella Fitzgerald and Louis Armstrong - Tenderly - Karaoke Version from Zoom Karaoke", - "id": "vQPIBkJE-Xo" - }, - { - "title": "Ella Fitzgerald & Louis Armstrong - They Can't Take That Away - Karaoke Version from Zoom Karaoke", - "id": "AuMZ3iJz9Ss" - }, - { - "title": "Dean Martin - Mambo Italiano - Karaoke Version from Zoom Karaoke", - "id": "adSgScoX428" - }, - { - "title": "Christy Moore - Ordinary Man - Karaoke Version from Zoom Karaoke", - "id": "bYxRkHzMkNk" - }, - { - "title": "Boyzone - Because - Karaoke Version from Zoom Karaoke", - "id": "gs9JI4bhs5Y" - }, - { - "title": "The Tymes - You Little Trustmaker - Karaoke Version from Zoom Karaoke", - "id": "3vXX7dSPpsk" - }, - { - "title": "The Tymes - You Little Trustmaker (No Chorus BVs) - Karaoke Version from Zoom Karaoke", - "id": "_3bsTr9VPjU" - }, - { - "title": "The Charlatans - Just When You're Thinkin' Things Over - Karaoke Version from Zoom Karaoke", - "id": "eJIBNhLOxd0" - }, - { - "title": "Don Broco - What You Do To Me - Karaoke Version from Zoom Karaoke", - "id": "ZcB5VtptUZg" - }, - { - "title": "Classix Nouveaux - Guilty - Karaoke Version from Zoom Karaoke", - "id": "bWi6UO2NNv4" - }, - { - "title": "Randy Travis - Forever And Ever Amen - Karaoke Version from Zoom Karaoke", - "id": "nrzZzgBxlF4" - }, - { - "title": "Mamma Mia 2 - Waterloo - Karaoke Version from Zoom Karaoke", - "id": "esJzjqbmLu0" - }, - { - "title": "Mamma Mia 2 - Knowing Me Knowing You - Karaoke Version from Zoom Karaoke", - "id": "ZuSGsLkUH0M" - }, - { - "title": "Lenny Kravitz - Five More Days 'Til Summer - Karaoke Version from Zoom Karaoke", - "id": "uPcemeCerQA" - }, - { - "title": "Dear Evan Hansen - Sincerely Me - Karaoke Version from Zoom Karaoke", - "id": "YlohAu6tCzk" - }, - { - "title": "Everybody's Talking About Jamie - And You Don't Even Know It - Karaoke Version from Zoom Karaoke", - "id": "5YV6bcV7x2E" - }, - { - "title": "Everybody's Talking About Jamie - Spotlight - Karaoke Version from Zoom Karaoke", - "id": "e7W8CPcYFX0" - }, - { - "title": "Everybody's Talking About Jamie - The Wall In My Head - Karaoke Version from Zoom Karaoke", - "id": "aBCg1g1fDtc" - }, - { - "title": "Fifth Harmony - Don't Say You Love Me - Karaoke Version from Zoom Karaoke", - "id": "Zl-mJVi24gQ" - }, - { - "title": "Jethro Tull - Living In The Past - Karaoke Version from Zoom Karaoke", - "id": "Q81wiPpaa3o" - }, - { - "title": "Hamilton The Musical - It's Quiet Uptown - Karaoke Version from Zoom Karaoke", - "id": "HzLR36oKMcU" - }, - { - "title": "Jethro Tull - Teacher - Karaoke Version from Zoom Karaoke", - "id": "DWo1jfDT3uY" - }, - { - "title": "The Lightning Seeds - Lucky You - Karaoke Version from Zoom Karaoke", - "id": "gW3S17U1-l0" - }, - { - "title": "The Lightning Seeds - Pure - Karaoke Version from Zoom Karaoke", - "id": "zrQXIT8KbmQ" - }, - { - "title": "The New Seekers - I Get A Little Sentimental Over You - Karaoke Version from Zoom Karaoke", - "id": "sVVm6XrH2fg" - }, - { - "title": "Belinda Carlisle - Runaway Horses - Karaoke Version from Zoom Karaoke", - "id": "YgvmTGB3bFI" - }, - { - "title": "McVicar Soundtrack / Roger Daltrey - Waiting For A Friend - Karaoke Version from Zoom Karaoke", - "id": "9vsEMG75FAY" - }, - { - "title": "Selena Gomez - Back To You - Karaoke Version from Zoom Karaoke", - "id": "FrhNk3TZn18" - }, - { - "title": "The Lightning Seeds - The Life Of Riley - Karaoke Version from Zoom Karaoke", - "id": "F6WPCJqAG_g" - }, - { - "title": "Jim Croce - A Long Time Ago - Karaoke Version from Zoom Karaoke", - "id": "qjapuhOxn40" - }, - { - "title": "John Holt - Stick By Me - Karaoke Version from Zoom Karaoke", - "id": "jIDk4OFWLW4" - }, - { - "title": "Gerry Cinnamon - Belter - Karaoke Version from Zoom Karaoke", - "id": "a0xftcT-Vlc" - }, - { - "title": "Saliva - Ladies And Gentlemen - Karaoke Version from Zoom Karaoke", - "id": "OYGuBEW4Gi0" - }, - { - "title": "Sister Act The Musical - The Life I Never Led - Karaoke Version from Zoom Karaoke", - "id": "UT3aq17BwNU" - }, - { - "title": "Snow feat MC Shan - Informer - Karaoke Version from Zoom Karaoke", - "id": "TppRIKBBVNo" - }, - { - "title": "Stevie Nicks ft Tom Petty - Stop Draggin' My Heart Around - Karaoke Version from Zoom Karaoke", - "id": "zAN6F35YOJA" - }, - { - "title": "Waylon Jennings - I've Always Been Crazy - Karaoke Version from Zoom Karaoke", - "id": "dWZ0pxw2_Bs" - }, - { - "title": "Wicked - Wonderful - Karaoke Version from Zoom Karaoke", - "id": "5pe51zuuExs" - }, - { - "title": "Zac Brown Band feat Jimmy Buffett - Knee Deep - Karaoke Version from Zoom Karaoke", - "id": "mZb65JgPuwM" - }, - { - "title": "Avenue Q - There's A Fine Fine Line - Karaoke Version from Zoom Karaoke", - "id": "yQk465vNTco" - }, - { - "title": "Dear Evan Hansen - Only Us - Karaoke Version from Zoom Karaoke", - "id": "yP_AFxX7J5E" - }, - { - "title": "Dear Evan Hansen - So Big So Small - Karaoke Version from Zoom Karaoke", - "id": "sVjRxAV28o4" - }, - { - "title": "Ella Fitzgerald - Misty - Karaoke Version from Zoom Karaoke", - "id": "UqowU9alkHw" - }, - { - "title": "Dr Feelgood - Down At The Doctors - Karaoke Version from Zoom Karaoke", - "id": "gGTNxnJte9I" - }, - { - "title": "Cheat Codes and Little Mix - Only You - Karaoke Version from Zoom Karaoke", - "id": "Sb_F0DSrQc0" - }, - { - "title": "Boy George and Culture Club - Let Somebody Love You - Karaoke Version from Zoom Karaoke", - "id": "9skWBRe_Z60" - }, - { - "title": "All Saints - After All - Karaoke Version from Zoom Karaoke", - "id": "HyOR6syOLEg" - }, - { - "title": "The Flower Pot Men - Let's Go To San Francisco - Karaoke Version from Zoom Karaoke", - "id": "p9t5iLXdOcA" - }, - { - "title": "The Drifters - Fools Fall In Love (Down 3 Semitones) - Karaoke Version from Zoom Karaoke", - "id": "5wSgteBGKlc" - }, - { - "title": "The Drifters - Fools Fall In Love (Down 2 Semitones) - Karaoke Version from Zoom Karaoke", - "id": "KDftMvyMOPk" - }, - { - "title": "Nina Nesbitt - Loyal To Me - Karaoke Version from Zoom Karaoke", - "id": "obGaEE1gUGU" - }, - { - "title": "Meat Loaf - More Than You Deserve (Short Version) - Karaoke Version from Zoom Karaoke", - "id": "nTYNQf-PP2k" - }, - { - "title": "Mamma Mia 2 - Why Did It Have To Be Me - Karaoke Version from Zoom Karaoke", - "id": "72loOFf1O8A" - }, - { - "title": "Mamma Mia 2 - When I Kissed The Teacher - Karaoke Version from Zoom Karaoke", - "id": "dTlHy5Ys3Rk" - }, - { - "title": "Mamma Mia 2 - The Name Of The Game - Karaoke Version from Zoom Karaoke", - "id": "ugj5xW3L-40" - }, - { - "title": "Mamma Mia 2 - One Of Us - Karaoke Version from Zoom Karaoke", - "id": "EboGUXXzM0U" - }, - { - "title": "Hercules - One Last Hope - Karaoke Version from Zoom Karaoke", - "id": "YKc9mkTBZwE" - }, - { - "title": "Jim Croce - The Hard Way Every Time - Karaoke Version from Zoom Karaoke", - "id": "e62BftlF-4U" - }, - { - "title": "Zac Brown Band - Toes - Karaoke Version from Zoom Karaoke", - "id": "Wi2KtZADyUU" - }, - { - "title": "Piano Singalong - Run Rabbit Run - Karaoke Version from Zoom Karaoke", - "id": "q5qlNj_XpTs" - }, - { - "title": "Jim Croce - Rapid Roy The Stock Car Boy - Karaoke Version from Zoom Karaoke", - "id": "IUCPxswV5EI" - }, - { - "title": "Ella Fitzgerald - I Get A Kick Out Of You - Karaoke Version from Zoom Karaoke", - "id": "_r1rSJ-1Khk" - }, - { - "title": "Calum Scott - What I Miss Most - Karaoke Version from Zoom Karaoke", - "id": "zVR54qw7chs" - }, - { - "title": "Clean Bandit feat Demi Lovato - Solo - Karaoke Version from Zoom Karaoke", - "id": "fk26g-OcIig" - }, - { - "title": "Artful Dodger feat Craig David - Re-Rewind - Karaoke Version from Zoom Karaoke", - "id": "AUNG8CpAYIk" - }, - { - "title": "Rick Astley - Try - Karaoke Version from Zoom Karaoke", - "id": "2XdX8vSWIjw" - }, - { - "title": "Olly Murs feat Snoop Dogg - Moves - Karaoke Version from Zoom Karaoke", - "id": "2pkz94JRaXc" - }, - { - "title": "Lady Gaga - Is That Alright - Karaoke Version from Zoom Karaoke", - "id": "jc7KLrP6KgM" - }, - { - "title": "Lady Gaga and Bradley Cooper - Shallow - Karaoke Version from Zoom Karaoke", - "id": "pOp3ZwUhLjU" - }, - { - "title": "Jim Croce - Thursday - Karaoke Version from Zoom Karaoke", - "id": "8KbImP17gcY" - }, - { - "title": "James - I Know What I'm Here For - Karaoke Version from Zoom Karaoke", - "id": "EO4jDtFFF4Q" - }, - { - "title": "Hall And Oates - Out Of Touch - Karaoke Version from Zoom Karaoke", - "id": "OtxGtofGbFs" - }, - { - "title": "Gwen Guthrie - Ain't Nothin' Goin' On But The Rent - Karaoke Version from Zoom Karaoke", - "id": "deUn_G9Js_E" - }, - { - "title": "Don McLean - Crossroads - Karaoke Version from Zoom Karaoke", - "id": "VaBbpKYQjhs" - }, - { - "title": "Jose Feliciano - Feliz Navidad - Karaoke Version from Zoom Karaoke", - "id": "eWTgTeedLCM" - }, - { - "title": "Grace Carter - Why Her Not Me - Karaoke Version from Zoom Karaoke", - "id": "ZR-dn9CUVu8" - }, - { - "title": "Ariana Grande - Breathin' - Karaoke Version from Zoom Karaoke", - "id": "088EcRF7n7w" - }, - { - "title": "Roger Whittaker - River Lady A Little Goodbye - Karaoke Version from Zoom Karaoke", - "id": "veJ4pXrzbMU" - }, - { - "title": "Matt Nathanson - Car Crash - Karaoke Version from Zoom Karaoke", - "id": "ZA1ujVFzjj0" - }, - { - "title": "Mary Poppins - A Spoonful of Sugar - Karaoke Version from Zoom Karaoke", - "id": "5SCkMYHEFd0" - }, - { - "title": "Mamma Mia 2 - I Wonder - Karaoke Version from Zoom Karaoke", - "id": "xRFm07IF77s" - }, - { - "title": "Panic At The Disco - High Hopes - Karaoke Version from Zoom Karaoke", - "id": "ZX217ui5msM" - }, - { - "title": "Lukas Graham - Love Someone - Karaoke Version from Zoom Karaoke", - "id": "yH52Gk67B4U" - }, - { - "title": "Lady Gaga - Always Remember Us This Way - Karaoke Version from Zoom Karaoke", - "id": "mSUQJFodwJw" - }, - { - "title": "Jim Croce - Workin' At The Car Wash Blues - Karaoke Version from Zoom Karaoke", - "id": "Yis4TH6nDlg" - }, - { - "title": "The Housemartins - Bow Down - Karaoke Version from Zoom Karaoke", - "id": "aVK0lv_p1eE" - }, - { - "title": "Freya Ridings - Lost Without You - Karaoke Version from Zoom Karaoke", - "id": "ZnEOKYVSktI" - }, - { - "title": "The Script - Without Those Songs - Karaoke Version from Zoom Karaoke", - "id": "6r3ARxO4neo" - }, - { - "title": "Spandau Ballet - Once More - Karaoke Version from Zoom Karaoke", - "id": "Nin1YzOxNmg" - }, - { - "title": "Rita Ora - Let You Love Me - Karaoke Version from Zoom Karaoke", - "id": "_Rhzfs1ZN40" - }, - { - "title": "Little Mix feat Nicki Minaj - Woman Like Me - Karaoke Version from Zoom Karaoke", - "id": "Z7BtUtUbnkc" - }, - { - "title": "Kelly Clarkson - Never Enough - Karaoke Version from Zoom Karaoke", - "id": "G_ME7gCYChc" - }, - { - "title": "Elvis Presley - Mystery Train - Karaoke Version from Zoom Karaoke", - "id": "Dv2F45iiCJU" - }, - { - "title": "Ella Fitzgerald - I Love Paris - Karaoke Version from Zoom Karaoke", - "id": "cDnMGkaUDYw" - }, - { - "title": "Tom Walker - Angels - Karaoke Version from Zoom Karaoke", - "id": "ylnYhwfK998" - }, - { - "title": "Silk City & Dua Lipa - Electricity - Karaoke Version from Zoom Karaoke", - "id": "15EuJUXMJ1w" - }, - { - "title": "Sheridan Smith - Priceless - Karaoke Version from Zoom Karaoke", - "id": "YhQT63d9KIE" - }, - { - "title": "Pink - A Million Dreams - Karaoke Version from Zoom Karaoke", - "id": "xofX1G6MOB4" - }, - { - "title": "Lindisfarne - Fog On The Tyne - Karaoke Version from Zoom Karaoke", - "id": "o94P74tz0yE" - }, - { - "title": "Jess Glynne - Thursday - Karaoke Version from Zoom Karaoke", - "id": "QysnJEWsFeE" - }, - { - "title": "Jason Derulo & David Guetta feat Nicki Minaj & Willy W - Goodbye - Karaoke Version from Zoom Karaoke", - "id": "yiM23MSKMeE" - }, - { - "title": "Dan Fogelberg - Run For The Roses - Karaoke Version from Zoom Karaoke", - "id": "P-ueDBGUUrU" - }, - { - "title": "Carlene Carter & Dave Edmunds - Baby Ride Easy - Karaoke Version from Zoom Karaoke", - "id": "3igNFc9zLDQ" - }, - { - "title": "Bradley Cooper - Maybe It's Time - Karaoke Version from Zoom Karaoke", - "id": "EGl0QOlVjzY" - }, - { - "title": "Ariana Grande - Thank U, Next - Karaoke Version from Zoom Karaoke", - "id": "iw4fmETFtu8" - }, - { - "title": "The Jam - English Rose - Karaoke Version from Zoom Karaoke", - "id": "-TimCurZXbw" - }, - { - "title": "Love - Alone Again Or - Karaoke Version from Zoom Karaoke", - "id": "ctrqvFIani4" - }, - { - "title": "Level 42 - It's Over - Karaoke Version from Zoom Karaoke", - "id": "Tvalc-mpm34" - }, - { - "title": "Lady Gaga - Hair Body Face - Karaoke Version from Zoom Karaoke", - "id": "CTbcWK6UhFQ" - }, - { - "title": "Lady Gaga - Before I Cry - Karaoke Version from Zoom Karaoke", - "id": "_qacKihcZro" - }, - { - "title": "Bradley Cooper & Lady Gaga - Diggin' My Grave - Karaoke Version from Zoom Karaoke", - "id": "UGrvaJdLS1g" - }, - { - "title": "Bradley Cooper - Alibi - Karaoke Version from Zoom Karaoke", - "id": "e_jrjoG0dt0" - }, - { - "title": "The Delfonics - Didn't I Blow Your Mind This Time - Karaoke Version from Zoom Karaoke", - "id": "OsC8F_K4FJg" - }, - { - "title": "Dodgy - In A Room - Karaoke Version from Zoom Karaoke", - "id": "JpphUHBupYs" - }, - { - "title": "Culture Club - I'll Tumble 4 Ya - Karaoke Version from Zoom Karaoke", - "id": "ZS9gavHtcQA" - }, - { - "title": "The Flying Burrito Brothers - Hot Burrito #1 - Karaoke Version from Zoom Karaoke", - "id": "oY6lJk6uAkU" - }, - { - "title": "Sara Bareilles - Tightrope - Karaoke Version from Zoom Karaoke", - "id": "rVFQuQPsS48" - }, - { - "title": "Rick Astley - She Makes Me - Karaoke Version from Zoom Karaoke", - "id": "S27_LoLQYjE" - }, - { - "title": "John Denver - Back Home Again - Karaoke Version from Zoom Karaoke", - "id": "Vw0oFJA1zxE" - }, - { - "title": "James Arthur & Anne Marie - Rewrite The Stars - Karaoke Version from Zoom Karaoke", - "id": "EhWPI2jKQ0E" - }, - { - "title": "George Ezra - Hold My Girl - Karaoke Version from Zoom Karaoke", - "id": "svzGzGt4XWs" - }, - { - "title": "Timi Yuro - What's A Matter Baby Is It Hurting You - Karaoke Version from Zoom Karaoke", - "id": "HfLdQR-Kerw" - }, - { - "title": "Ryan Sheridan - Jigsaw - Karaoke Version from Zoom Karaoke", - "id": "NE8cv8swG2o" - }, - { - "title": "Mamma Mia 2 - I've Been Waiting For You - Karaoke Version from Zoom Karaoke", - "id": "Kdz7FI_2hN4" - }, - { - "title": "Mamma Mia 2 - Andante Andante - Karaoke Version from Zoom Karaoke", - "id": "mNzGX5FgnT8" - }, - { - "title": "Freddie Mercury - Time - Karaoke Version from Zoom Karaoke", - "id": "x4dRhjhHCdE" - }, - { - "title": "Ella Fitzgerald - I Could Write A Book - Karaoke Version from Zoom Karaoke", - "id": "pvnv2BwiL00" - }, - { - "title": "Ella Fitzgerald - Embraceable You - Karaoke Version from Zoom Karaoke", - "id": "ZjHupUA0SJk" - }, - { - "title": "Dusty Springfield - I'll Try Anything - Karaoke Version from Zoom Karaoke", - "id": "uc8IRWNlfkc" - }, - { - "title": "Boy George - The Crying Game - Karaoke Version from Zoom Karaoke", - "id": "XD9mHHSDd6s" - }, - { - "title": "Alison Jiear - I Just Wanna Dance (Explicit Version)", - "id": "pfqR6KUvL1w" - }, - { - "title": "Alison Jiear - I Just Wanna Dance (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "Xk81YwD6M-U" - }, - { - "title": "A Flock Of Seagulls - The More You Live, The More You Love - Karaoke Version from Zoom Karaoke", - "id": "SZCQ_NKX9v4" - }, - { - "title": "The Flying Burrito Brothers - Sin City - Karaoke Version from Zoom Karaoke", - "id": "Nr8xOjH-1N0" - }, - { - "title": "Michael Buble feat Loren Allred - Help Me Make It Through - Karaoke Version from Zoom Karaoke", - "id": "n2t-gwvteWc" - }, - { - "title": "Michael Buble - When You're Not Here - Karaoke Version from Zoom Karaoke", - "id": "zvsWtM69UAU" - }, - { - "title": "Michael Buble - Forever Now - Karaoke Version from Zoom Karaoke", - "id": "YDeIkXP5GSg" - }, - { - "title": "Lady Gaga and Bradley Cooper - Music To My Eyes - Karaoke Version from Zoom Karaoke", - "id": "2thUPRRs-oQ" - }, - { - "title": "Kylie Minogue feat Jack Savoretti - Music's Too Sad Without You - Karaoke Version from Zoom Karaoke", - "id": "a3URx793EBQ" - }, - { - "title": "Cheryl - Love Made Me Do It - Karaoke Version from Zoom Karaoke", - "id": "ioi-vpx_OwM" - }, - { - "title": "Ella Fitzgerald - My Funny Valentine - Karaoke Version from Zoom Karaoke", - "id": "B18ZDabBCZ8" - }, - { - "title": "Donna Taggart - Jealous Of The Angels - Karaoke Version from Zoom Karaoke", - "id": "25CMj1rcvG8" - }, - { - "title": "Dalton Harris feat James Arthur - The Power Of Love - Karaoke Version from Zoom Karaoke", - "id": "UwFjuV_xm8U" - }, - { - "title": "Clean Bandit feat Marina & Luis Fonsi - Baby - Karaoke Version from Zoom Karaoke", - "id": "uT8qB3tkJWM" - }, - { - "title": "Calum Scott - No Matter What - Karaoke Version from Zoom Karaoke", - "id": "QcO1VOkgpTs" - }, - { - "title": "Mark Ronson feat Miley Cyrus - Nothing Breaks Like A Heart - Karaoke Version from Zoom Karaoke", - "id": "GHia5Mn6kCQ" - }, - { - "title": "Halsey - Without Me - Karaoke Version from Zoom Karaoke", - "id": "Z3NLpgSW4xo" - }, - { - "title": "Katy Perry - Cosy Little Christmas - Karaoke Version from Zoom Karaoke", - "id": "b00vXtMf5N0" - }, - { - "title": "Sia - Sing For My Life - Karaoke Version from Zoom Karaoke", - "id": "SeT4Wv0N4kA" - }, - { - "title": "The Flying Burrito Brothers - Christine's Tune - Karaoke Version from Zoom Karaoke", - "id": "qjPAWpXqMBs" - }, - { - "title": "The Delfonics - La La Means I Love You - Karaoke Version from Zoom Karaoke", - "id": "K9It3cW9NbY" - }, - { - "title": "The Delfonics - Hey! Love - Karaoke Version from Zoom Karaoke", - "id": "nlcr0G0w3lg" - }, - { - "title": "The Danleers - One Summer Night - Karaoke Version from Zoom Karaoke", - "id": "nMWcxfztcio" - }, - { - "title": "Mabel - Don't Call Me Up - Karaoke Version from Zoom Karaoke", - "id": "O1dZhOSwgoM" - }, - { - "title": "Kacey Musgraves - Wonder Woman - Karaoke Version from Zoom Karaoke", - "id": "LYV8p-KM41s" - }, - { - "title": "Jack Savoretti - Candlelight - Karaoke Version from Zoom Karaoke", - "id": "wGxatgMrZdc" - }, - { - "title": "Guy Mitchell - Singing The Blues - Karaoke Version from Zoom Karaoke", - "id": "6IK6KIs1m1w" - }, - { - "title": "Dusty Springfield - 24 Hours From Tulsa - Karaoke Version from Zoom Karaoke", - "id": "NU2LbelSuj0" - }, - { - "title": "Dua Lipa - Swan Song - Karaoke Version from Zoom Karaoke", - "id": "xxOuK1bdASw" - }, - { - "title": "Def Leppard - Pour Some Sugar On Me-Let's Get Rocked Medley - Karaoke Version from Zoom Karaoke", - "id": "DMqqJqugCOw" - }, - { - "title": "Connie Francis - Tennessee Waltz - Karaoke Version from Zoom Karaoke", - "id": "D4zrlCz0VCY" - }, - { - "title": "Morrissey - Back On The Chain Gang - Karaoke Version from Zoom Karaoke", - "id": "VogCgbhqYcw" - }, - { - "title": "James Morrison and Joss Stone - My Love Goes On - Karaoke Version from Zoom Karaoke", - "id": "HPvtoESjrRk" - }, - { - "title": "Heathers The Musical - Dead Girl Walking - Karaoke Version from Zoom Karaoke", - "id": "hw3UKd_26Yo" - }, - { - "title": "Gilbert O'Sullivan - We Will - Karaoke Version from Zoom Karaoke", - "id": "2hhif8ZVgOk" - }, - { - "title": "Eruption - I Can't Stand The Rain - Karaoke Version from Zoom Karaoke", - "id": "3C6r9AzSMQw" - }, - { - "title": "Eddie And The Hot Rods - Do Anything You Wanna Do - Karaoke Version from Zoom Karaoke", - "id": "4sUNNr9HTnU" - }, - { - "title": "Connie Francis - You Always Hurt The One You Love - Karaoke Version from Zoom Karaoke", - "id": "GvPozo1O7E4" - }, - { - "title": "Twenty One Pilots - Chlorine - Karaoke Version from Zoom Karaoke", - "id": "exv5eBYrtCk" - }, - { - "title": "Tom Walker - Just You And I - Karaoke Version from Zoom Karaoke", - "id": "nhjqzEjtFBY" - }, - { - "title": "Robbie Williams - Everybody Wants To Rule The World - Karaoke Version from Zoom Karaoke", - "id": "sFh_LFusFvo" - }, - { - "title": "Nick Kamen - Each Time You Break My Heart - Karaoke Version from Zoom Karaoke", - "id": "Ie7BsQjU0zY" - }, - { - "title": "Ariana Grande - Needy (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "TtyDgC2tN0Y" - }, - { - "title": "XTC - Generals And Majors - Karaoke Version from Zoom Karaoke", - "id": "Pgy_KZwwQ6U" - }, - { - "title": "Wicked - No Good Deed - Karaoke Version from Zoom Karaoke", - "id": "ynyn0TfwD6M" - }, - { - "title": "Wicked - For Good - Karaoke Version from Zoom Karaoke", - "id": "jpBZUFG8rbg" - }, - { - "title": "Wet Wet Wet - Sweet Surrender - Karaoke Version from Zoom Karaoke", - "id": "spO_iwaFreE" - }, - { - "title": "Disturbed - The Sound Of Silence - Karaoke Version from Zoom Karaoke", - "id": "ZC626en5X28" - }, - { - "title": "The Cure - A Forest - Karaoke Version from Zoom Karaoke", - "id": "5md3K-dmN8Y" - }, - { - "title": "Rent - Love Heals - Karaoke Version from Zoom Karaoke", - "id": "c-pN7TFDhVQ" - }, - { - "title": "Lewis Capaldi - Someone You Loved - Karaoke Version from Zoom Karaoke", - "id": "Kj_nPo0L4jQ" - }, - { - "title": "Heathers The Musical - Seventeen - Karaoke Version from Zoom Karaoke", - "id": "CGTLuQuJOO8" - }, - { - "title": "David Alexander - I Know - Karaoke Version from Zoom Karaoke", - "id": "HJHWJTWaP24" - }, - { - "title": "Cliff Richard - Dreamin' - Karaoke Version from Zoom Karaoke", - "id": "-tDlZSjkF-w" - }, - { - "title": "The Skids - Into The Valley - Karaoke Version from Zoom Karaoke", - "id": "kAoWbievH4g" - }, - { - "title": "The Ruts - Babylon's Burning - Karaoke Version from Zoom Karaoke", - "id": "ab9zUihXCmQ" - }, - { - "title": "The Newbeats - Run Baby Run - Karaoke Version from Zoom Karaoke", - "id": "9WxYBd8xejY" - }, - { - "title": "Rich Kids - Rich Kids - Karaoke Version from Zoom Karaoke", - "id": "1ejpzw8du04" - }, - { - "title": "Paul Heaton And Jacqui Abbott - 7 Inch Singles (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "joLTUi4h1io" - }, - { - "title": "Paul Heaton And Jacqui Abbott - 7 Inch Singles (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "m5LNxcGODWA" - }, - { - "title": "OMD - Locomotion - Karaoke Version from Zoom Karaoke", - "id": "Xs76dfVF92k" - }, - { - "title": "Matilda The Musical - When I Grow Up (For Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "Kcw02HktIRk" - }, - { - "title": "Matilda The Musical - When I Grow Up (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "-rOEBiPo7m0" - }, - { - "title": "Kinky Boots - Sex Is In The Heel - Karaoke Version from Zoom Karaoke", - "id": "GGXasfNGPOM" - }, - { - "title": "Kinky Boots - Land Of Lola - Karaoke Version from Zoom Karaoke", - "id": "hDAMmsF9kUk" - }, - { - "title": "George Ezra - Pretty Shining People - Karaoke Version from Zoom Karaoke", - "id": "_BqoWzzRYnw" - }, - { - "title": "The Cure - Primary - Karaoke Version from Zoom Karaoke", - "id": "sJe5vVyGRQA" - }, - { - "title": "Lighthouse Family - Ocean Drive - Karaoke Version from Zoom Karaoke", - "id": "dnUWK2Bd_8Q" - }, - { - "title": "Heathers The Musical - Candy Store - Karaoke Version from Zoom Karaoke", - "id": "7PBB1ZZ6n5c" - }, - { - "title": "Bruce Springsteen - Tougher Than The Rest - Karaoke Version from Zoom Karaoke", - "id": "g7qO1cAIUBA" - }, - { - "title": "Bruce Springsteen - Human Touch - Karaoke Version from Zoom Karaoke", - "id": "inSP1lkgMWA" - }, - { - "title": "Blondie - I'm Always Touched By Your Presence, Dear - Karaoke Version from Zoom Karaoke", - "id": "3eW_OUPKZ_s" - }, - { - "title": "Ariana Grande - Needy (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "ezY9m8w1drg" - }, - { - "title": "Stevie Ray Vaughan - Cold Shot - Karaoke Version from Zoom Karaoke", - "id": "Spi4mPaO6oM" - }, - { - "title": "Madness - Waiting For The Ghost Train - Karaoke Version from Zoom Karaoke", - "id": "4r4JfF_zywo" - }, - { - "title": "Kat Dahlia - Gangsta - Karaoke Version from Zoom Karaoke", - "id": "T5q9WpyfR0U" - }, - { - "title": "George Ezra - Only A Human - Karaoke Version from Zoom Karaoke", - "id": "pckyfl7Azls" - }, - { - "title": "Engelbert Humperdinck - Love Me With All Your Heart - Karaoke Version from Zoom Karaoke", - "id": "T7yZA72YvPY" - }, - { - "title": "Ava Max - So Am I - Karaoke Version from Zoom Karaoke", - "id": "fQ1K0F8dH4o" - }, - { - "title": "ABC - When Smokey Sings - Karaoke Version from Zoom Karaoke", - "id": "BHcolFq5kxc" - }, - { - "title": "The Dualers - Kiss On The Lips (With Harmony) - Karaoke Version from Zoom Karaoke", - "id": "gK4bqEo2I_w" - }, - { - "title": "The Dualers - Kiss On The Lips (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "RuujlMXoT7U" - }, - { - "title": "Andrea Bocelli feat Dua Lipa - If Only - Karaoke Version from Zoom Karaoke", - "id": "3FDDVwrIYxA" - }, - { - "title": "The Dream Weavers - It's Almost Tomorrow - Karaoke Version from Zoom Karaoke", - "id": "HfBvpXJsnDE" - }, - { - "title": "Stevie Ray Vaughan - Pride And Joy - Karaoke Version from Zoom Karaoke", - "id": "_hPXGkh49_Y" - }, - { - "title": "Steps - Story Of A Heart - Karaoke Version from Zoom Karaoke", - "id": "0x2Gl9bMNGQ" - }, - { - "title": "Paul Anka - Diana (Down 3 Semitones) - Karaoke Version from Zoom Karaoke", - "id": "mLNW4q_0j-o" - }, - { - "title": "Matt Simons - Open Up - Karaoke Version from Zoom Karaoke", - "id": "3ullPsMgito" - }, - { - "title": "Hello - New York Groove - Karaoke Version from Zoom Karaoke", - "id": "roLoa0OAA1A" - }, - { - "title": "Harry Chapin - Cat's In The Cradle - Karaoke Version from Zoom Karaoke", - "id": "t70wUwXSafY" - }, - { - "title": "Example - Close Enemies - Karaoke Version from Zoom Karaoke", - "id": "3Z5WfiFIZNw" - }, - { - "title": "David Alexander - If I Could See The Rhondda - Karaoke Version from Zoom Karaoke", - "id": "OoZeVx-oTes" - }, - { - "title": "Conchita Wurst - You Are Unstoppable - Karaoke Version from Zoom Karaoke", - "id": "P7CgyZDI2Mw" - }, - { - "title": "World Party - Is It Like Today - Karaoke Version from Zoom Karaoke", - "id": "MSUcwj2TKdg" - }, - { - "title": "Tom Robinson Band - Up Against The Wall - Karaoke Version from Zoom Karaoke", - "id": "x7yRa_Cnaoo" - }, - { - "title": "The Coral - Pass It On - Karaoke Version from Zoom Karaoke", - "id": "iT6s-iMns5Y" - }, - { - "title": "David Alexander - Bennett's Mighty Men - Karaoke Version from Zoom Karaoke", - "id": "ikiDZOKoUXg" - }, - { - "title": "Come From Away - Me And The Sky - Karaoke Version from Zoom Karaoke", - "id": "SPUS58Rtd5g" - }, - { - "title": "Waitress The Musical - She Used To Be Mine - Karaoke Version from Zoom Karaoke", - "id": "uDb91AYM4Uk" - }, - { - "title": "Stevie Ray Vaughan - Life By The Drop - Karaoke Version from Zoom Karaoke", - "id": "5PAm020mcZs" - }, - { - "title": "Rod Stewart - Grace - Karaoke Version from Zoom Karaoke", - "id": "Rp-SKDy1PQc" - }, - { - "title": "Rocky Sharpe And The Replays - Never - Karaoke Version from Zoom Karaoke", - "id": "zwryI6XC3b0" - }, - { - "title": "Pink - Walk Me Home - Karaoke Version from Zoom Karaoke", - "id": "swwxEUNjVQQ" - }, - { - "title": "Jonas Brothers - Cool - Karaoke Version from Zoom Karaoke", - "id": "04WsNEqUvHo" - }, - { - "title": "John Newman - Feelings - Karaoke Version from Zoom Karaoke", - "id": "0UJeUd_1EXs" - }, - { - "title": "David Alexander - Green Green Grass Of Home - Karaoke Version from Zoom Karaoke", - "id": "Q38qVOccqLg" - }, - { - "title": "David Alexander - Cry - Karaoke Version from Zoom Karaoke", - "id": "8PHiiVyTpe0" - }, - { - "title": "David Alexander - Come Home Rhondda Boy - Karaoke Version from Zoom Karaoke", - "id": "LDYwDfU7DbA" - }, - { - "title": "David Alexander - My Wales - Karaoke Version from Zoom Karaoke", - "id": "8rhyC5Y_1ek" - }, - { - "title": "Rocky Sharpe And The Replays - If You Wanna Be Happy - Karaoke Version from Zoom Karaoke", - "id": "2HpJSVqwuG4" - }, - { - "title": "David Alexander - If I Only Had Time - Karaoke Version from Zoom Karaoke", - "id": "OG9bM74s1uU" - }, - { - "title": "Tom Jones - Without Love There Is Nothing - Karaoke Version from Zoom Karaoke", - "id": "Qd9zd3qbmQg" - }, - { - "title": "David Alexander - The Answer To Everything - Karaoke Version from Zoom Karaoke", - "id": "kSA6G1josqc" - }, - { - "title": "David Alexander - She Wears My Ring - Karaoke Version from Zoom Karaoke", - "id": "N2h-q6X31BU" - }, - { - "title": "David Alexander - One Day - Karaoke Version from Zoom Karaoke", - "id": "oIWe264RG3Q" - }, - { - "title": "Nina Nesbitt - Colder (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "7juvnwl96c4" - }, - { - "title": "Nina Nesbitt - Colder (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "VDEM0SRxPuI" - }, - { - "title": "Odyssey - Native New Yorker - Karaoke Version from Zoom Karaoke", - "id": "7-RsojyaMSw" - }, - { - "title": "Stephanie Mills - Never Knew Love Like This Before - Karaoke Version from Zoom Karaoke", - "id": "yxr0OinOCQU" - }, - { - "title": "The Dream Academy - Life In A Northern Town - Karaoke Version from Zoom Karaoke", - "id": "R90g6bhK12I" - }, - { - "title": "The Rezillos - Top Of The Pops - Karaoke Version from Zoom Karaoke", - "id": "ElGvOjB5akM" - }, - { - "title": "The Zac Brown Band - Homegrown - Karaoke Version from Zoom Karaoke", - "id": "x2WPbN3C_MM" - }, - { - "title": "Alice Merton - Lash Out - Karaoke Version from Zoom Karaoke", - "id": "G3LIEqtJo5E" - }, - { - "title": "Clean Bandit feat Ellie Goulding - Mama - Karaoke Version from Zoom Karaoke", - "id": "o0wHxZIPpkA" - }, - { - "title": "Dani and Lizzy - Dancing In The Sky - Karaoke Version from Zoom Karaoke", - "id": "xN9Rn7_vN9U" - }, - { - "title": "Diana Ross - Love Hangover - Karaoke Version from Zoom Karaoke", - "id": "jKNDx7V7hKw" - }, - { - "title": "Frankie Laine - Making Memories - Karaoke Version from Zoom Karaoke", - "id": "jbC1V9H0cok" - }, - { - "title": "Imagine Dragons - Bad Liar - Karaoke Version from Zoom Karaoke", - "id": "brOHQkuf7DU" - }, - { - "title": "Mungo Jerry - Lady Rose - Karaoke Version from Zoom Karaoke", - "id": "i5bs5w2dtyw" - }, - { - "title": "Wet Wet Wet - Temptation - Karaoke Version from Zoom Karaoke", - "id": "gI11HdwYL1E" - }, - { - "title": "Amy MacDonald - Mr Rock And Roll-This Is The Life Medley - Karaoke Version from Zoom Karaoke", - "id": "atT3svYVi_M" - }, - { - "title": "George Ezra - I Try (Live Lounge Version) - Karaoke Version from Zoom Karaoke", - "id": "2W-Pj-VF9hc" - }, - { - "title": "Gerry Rafferty - Get It Right Next Time - Karaoke Version from Zoom Karaoke", - "id": "NSkxaLWXZhU" - }, - { - "title": "Mary Poppins Returns - Lovely London Sky - Karaoke Version from Zoom Karaoke", - "id": "0nc1fFF0Cns" - }, - { - "title": "Simply Red - Money's Too Tight To Mention-Stars Medley - Karaoke Version from Zoom Karaoke", - "id": "2buoMEliBwQ" - }, - { - "title": "Tavares - Don't Take Away The Music-Heaven Must Be Missing - Karaoke Version from Zoom Karaoke", - "id": "mCCUfq5lIpE" - }, - { - "title": "The Supremes - The Supremes Medley - Karaoke Version from Zoom Karaoke", - "id": "ZFXQ8fWOzeo" - }, - { - "title": "The Temptations - My Girl-Get Ready Medley - Karaoke Version from Zoom Karaoke", - "id": "4I8M1L_QFG4" - }, - { - "title": "XTC - Senses Working Overtime-Making Plans For Nigel Medley - Karaoke Version from Zoom Karaoke", - "id": "vcITBdPZCEk" - }, - { - "title": "The Zac Brown Band - Chicken Fried - Karaoke Version from Zoom Karaoke", - "id": "8-eJDPmLuiM" - }, - { - "title": "Richard Marx - Hold On To The Nights - Karaoke Version from Zoom Karaoke", - "id": "4HtiwRvtILg" - }, - { - "title": "The Platters - My Prayer - Karaoke Version from Zoom Karaoke", - "id": "jUOTpOoTE5g" - }, - { - "title": "The Platters - Smoke Gets In Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "p9feEVim6Uk" - }, - { - "title": "The Platters - The Great Pretender - Karaoke Version from Zoom Karaoke", - "id": "0QlnBvbd8zo" - }, - { - "title": "The Zac Brown Band - Jump Right In - Karaoke Version from Zoom Karaoke", - "id": "vVMbSevntY0" - }, - { - "title": "Dobie Gray - The In Crowd - Karaoke Version from Zoom Karaoke", - "id": "B-Az9p7lR_s" - }, - { - "title": "Joe Esposito - You're The Best - Karaoke Version from Zoom Karaoke", - "id": "t9i9XwsW1g8" - }, - { - "title": "Jonny Lang - Still Rainin' - Karaoke Version from Zoom Karaoke", - "id": "P17KkHb8n7w" - }, - { - "title": "Mary Poppins Returns - The Place Where Lost Things Go - Karaoke Version from Zoom Karaoke", - "id": "7f7B3FWYA2U" - }, - { - "title": "Richard Marx - Angelia - Karaoke Version from Zoom Karaoke", - "id": "JFUuCvdluL0" - }, - { - "title": "Richard Marx - Now And Forever - Karaoke Version from Zoom Karaoke", - "id": "a8HtVtlj4PU" - }, - { - "title": "Sam Smith and Normani - Dancing With A Stranger - Karaoke Version from Zoom Karaoke", - "id": "zxHCscCj2mU" - }, - { - "title": "Split Enz - I Got You - Karaoke Version from Zoom Karaoke", - "id": "jhTtXuoFNT8" - }, - { - "title": "The Blow Monkeys - Digging Your Scene - Karaoke Version from Zoom Karaoke", - "id": "FT_zyGlg7W8" - }, - { - "title": "Andy Burrows & Matt Haig - Barcelona - Karaoke Version from Zoom Karaoke", - "id": "G-Pf0ehFlUM" - }, - { - "title": "Backstreet Boys - Chances - Karaoke Version from Zoom Karaoke", - "id": "qk1N_AHesmw" - }, - { - "title": "Michael Buble - Where Or When - Karaoke Version from Zoom Karaoke", - "id": "TNcp_gVPnS8" - }, - { - "title": "The Platters - Twilight Time - Karaoke Version from Zoom Karaoke", - "id": "89GeNff4zrU" - }, - { - "title": "Connie Francis - Wishing It Was You - Karaoke Version from Zoom Karaoke", - "id": "MG8rd3Ne_Xc" - }, - { - "title": "Culture Club - Love Is Love - Karaoke Version from Zoom Karaoke", - "id": "keSx6yAv9wI" - }, - { - "title": "Dan Fogelberg - Leader Of The Band - Karaoke Version from Zoom Karaoke", - "id": "kaurrUsSWP8" - }, - { - "title": "Dan Fogelberg - Longer - Karaoke Version from Zoom Karaoke", - "id": "MzL4Zz92zfA" - }, - { - "title": "Dobie Gray - Out On The Floor - Karaoke Version from Zoom Karaoke", - "id": "cP2V__6LRzI" - }, - { - "title": "Ella Fitzgerald - But Not For Me - Karaoke Version from Zoom Karaoke", - "id": "-2g4HhzR6js" - }, - { - "title": "Kygo feat Sandro Cavazza - Happy Now - Karaoke Version from Zoom Karaoke", - "id": "Pz2_tofOAWY" - }, - { - "title": "Ava Max - Sweet But Psycho - Karaoke Version from Zoom Karaoke", - "id": "rvaIg-0gWTQ" - }, - { - "title": "George Ezra - Saviour - Karaoke Version from Zoom Karaoke", - "id": "BuGVNBdUjD0" - }, - { - "title": "Michael Buble - Unforgettable - Karaoke Version from Zoom Karaoke", - "id": "flrMIi1fX-I" - }, - { - "title": "Culture Club - Miss Me Blind (With Vocal Ending) - Karaoke Version from Zoom Karaoke", - "id": "cOH_BNuaCso" - }, - { - "title": "Dan Fogelberg - Rhythm Of The Rain - Karaoke Version from Zoom Karaoke", - "id": "a9eBQ2_4Tj4" - }, - { - "title": "Ella Fitzgerald - Someone To Watch Over Me - Karaoke Version from Zoom Karaoke", - "id": "xspnGXONtf8" - }, - { - "title": "John Denver - I'm Sorry - Karaoke Version from Zoom Karaoke", - "id": "9QNRZWDsKE4" - }, - { - "title": "Jonas Blue feat Lennon Stella & Liam Payne - Polaroid - Karaoke Version from Zoom Karaoke", - "id": "Cb858ecSNIE" - }, - { - "title": "Michael Buble - My Funny Valentine - Karaoke Version from Zoom Karaoke", - "id": "2WmQlLzqhuU" - }, - { - "title": "Michael Buble - When I Fall In Love - Karaoke Version from Zoom Karaoke", - "id": "fb81gdRXbJ0" - }, - { - "title": "Rik And Nik - The Finger Song Highland Mix - Karaoke Version from Zoom Karaoke", - "id": "oA4Nv0s4Mis" - }, - { - "title": "Ella Fitzgerald - The Man I Love - Karaoke Version from Zoom Karaoke", - "id": "P_UVLKA54pA" - }, - { - "title": "Ella Fitzgerald - There's A Small Hotel - Karaoke Version from Zoom Karaoke", - "id": "FLfUSGHkyFM" - }, - { - "title": "Elton John - Passengers - Karaoke Version from Zoom Karaoke", - "id": "AMSIwAXl7A4" - }, - { - "title": "Gerry Cinnamon - Sometimes - Karaoke Version from Zoom Karaoke", - "id": "1pYXyb2zl2k" - }, - { - "title": "James Arthur - Empty Space - Karaoke Version from Zoom Karaoke", - "id": "Vc5amtIRPWM" - }, - { - "title": "Jax Jones & Years And Years - Play - Karaoke Version from Zoom Karaoke", - "id": "4sgpKBKc7vw" - }, - { - "title": "Khalid - Better - Karaoke Version from Zoom Karaoke", - "id": "XmIWfcHIcRA" - }, - { - "title": "Mamma Mia 2 - I Have A Dream - Karaoke Version from Zoom Karaoke", - "id": "narysl7y9-E" - }, - { - "title": "Randy Travis - Forever And Ever Amen Key of F# - Karaoke Version from Zoom Karaoke", - "id": "reqmbRZWUfw" - }, - { - "title": "Rick Astley - Hold Me In Your Arms - Karaoke Version from Zoom Karaoke", - "id": "XgRA-6ge4yc" - }, - { - "title": "Ten Tonnes - Better Than Me - Karaoke Version from Zoom Karaoke", - "id": "-9EjZJ-OG6k" - }, - { - "title": "The Bodysnatchers - Let's Do Rock Steady - Karaoke Version from Zoom Karaoke", - "id": "bzWeAMc3P-s" - }, - { - "title": "The Platters - Remember When - Karaoke Version from Zoom Karaoke", - "id": "3BJ44TAISfU" - }, - { - "title": "Odyssey - Native New Yorker - Karaoke Version from Zoom Karaoke", - "id": "4K4DDKFb_kM" - }, - { - "title": "Stephanie Mills - Never Knew Love Like This Before - Karaoke Version from Zoom Karaoke", - "id": "GB5YBeSjZYE" - }, - { - "title": "The Dream Academy - Life In A Northern Town - Karaoke Version from Zoom Karaoke", - "id": "U2uOh_kRS0o" - }, - { - "title": "Heathers The Musical - Lifeboat - Karaoke Version from Zoom Karaoke", - "id": "v8GyL_uuQec" - }, - { - "title": "Manfred Mann - Fox On The Run - Karaoke Version from Zoom Karaoke", - "id": "z2lzTeNJbdY" - }, - { - "title": "Showaddywaddy - Heartbeat - Karaoke Version from Zoom Karaoke", - "id": "S0g_fwnD3vk" - }, - { - "title": "Showaddywaddy - Remember Then - Karaoke Version from Zoom Karaoke", - "id": "qUnUQ2Sr9fQ" - }, - { - "title": "Showaddywaddy - Chain Gang - Karaoke Version from Zoom Karaoke", - "id": "YvCziaJsKU0" - }, - { - "title": "Showaddywaddy - A Little Bit Of Soap - Karaoke Version from Zoom Karaoke", - "id": "9H-h3ygc0Fw" - }, - { - "title": "Robert Palmer - Bad Case Of Loving You Doctor Doctor - Karaoke Version from Zoom Karaoke", - "id": "TyOzUbeLtUE" - }, - { - "title": "Freya Ridings - You Mean The World To Me - Karaoke Version from Zoom Karaoke", - "id": "LN2x6RxlBjY" - }, - { - "title": "Ed Sheeran, Chris Stapleton & Bruno Mars - BLOW - Karaoke Version from Zoom Karaoke", - "id": "isn8F0ITg_Q" - }, - { - "title": "Don Diablo With Jessie J - Brave - Karaoke Version from Zoom Karaoke", - "id": "cxwEWq5GpY4" - }, - { - "title": "Eighth Wonder - I'm Not Scared - Karaoke Version from Zoom Karaoke", - "id": "zMx8ehLhxEo" - }, - { - "title": "The Lumineers - Gloria - Karaoke Version from Zoom Karaoke", - "id": "rLp76uqCoWo" - }, - { - "title": "Bastille - Joy - Karaoke Version from Zoom Karaoke", - "id": "ZfF7kYERc6U" - }, - { - "title": "Shawn Mendes - If I Can't Have You - Karaoke Version from Zoom Karaoke", - "id": "DgAKVp7RM3w" - }, - { - "title": "B.A. Robertson - Bang Bang - Karaoke Version from Zoom Karaoke", - "id": "CX24XpwpG5Y" - }, - { - "title": "The Herd - I Don't Want Our Loving To Die - Karaoke Version from Zoom Karaoke", - "id": "AxKiN_qwFqo" - }, - { - "title": "Ed Sheeran - I Don't Care Acoustic Version - Karaoke Version from Zoom Karaoke", - "id": "J50LQvi1I7Y" - }, - { - "title": "Freya Ridings - Castles - Karaoke Version from Zoom Karaoke", - "id": "ge20r4bKlRY" - }, - { - "title": "Acoustative - It Must Have Been Love - Karaoke Version from Zoom Karaoke", - "id": "7C2JxymMtAA" - }, - { - "title": "Taylor Swift feat Brandon Urie - ME! - Karaoke Version from Zoom Karaoke", - "id": "uHLE3jGqkJ0" - }, - { - "title": "Lewis Capaldi - Grace - Karaoke Version from Zoom Karaoke", - "id": "gD5WK86M0zU" - }, - { - "title": "Lewis Capaldi - Hold Me While You Wait - Karaoke Version from Zoom Karaoke", - "id": "MoUV5nZXHyg" - }, - { - "title": "Mary J Blige - Family Affair - Karaoke Version from Zoom Karaoke", - "id": "AfayFPcUQRw" - }, - { - "title": "Roger Whittaker - Durham Town - Karaoke Version from Zoom Karaoke", - "id": "Vg8qWNbmQ6U" - }, - { - "title": "Taylor Swift - You Need To Calm Down - Karaoke Version from Zoom Karaoke", - "id": "pxTfhxzeK2w" - }, - { - "title": "David Alexander - Let Me Try Again - Karaoke Version from Zoom Karaoke", - "id": "rXkyagjsCpc" - }, - { - "title": "David Alexander - Myfanwy - Karaoke Version from Zoom Karaoke", - "id": "pdtA9K4mw4Y" - }, - { - "title": "David Alexander - Solitaire - Karaoke Version from Zoom Karaoke", - "id": "WnD8LShvxas" - }, - { - "title": "David Alexander - Why Don't You Spend The Night - Karaoke Version from Zoom Karaoke", - "id": "XT-u83BNwWw" - }, - { - "title": "The McGuire Sisters - Sugartime For Female Trio - Karaoke Version from Zoom Karaoke", - "id": "H98Gh-hTxN4" - }, - { - "title": "The McGuire Sisters - Sugartime For Solo Female - Karaoke Version from Zoom Karaoke", - "id": "iklcSOIq-9w" - }, - { - "title": "The Trammps - Hold Back The Night/Disco Inferno (Medley) - Karaoke Version from Zoom Karaoke", - "id": "eLfZjqXjbt8" - }, - { - "title": "Thompson Twins - Hold Me Now/Doctor Doctor (Medley) - Karaoke Version from Zoom Karaoke", - "id": "gvtLawCpIyU" - }, - { - "title": "David Alexander - Everything Love's Supposed To Be - Karaoke Version from Zoom Karaoke", - "id": "OuIUAmQjMn8" - }, - { - "title": "David Alexander - Help Me Make It Through The Night - Karaoke Version from Zoom Karaoke", - "id": "-iWT0_OOvM4" - }, - { - "title": "Kodaline - High Hopes - Karaoke Version from Zoom Karaoke", - "id": "MAGBVv-7PLQ" - }, - { - "title": "Neil Diamond - Longfellow Serenade - Karaoke Version from Zoom Karaoke", - "id": "c8gymnIK3Lc" - }, - { - "title": "Sybil - The Love I Lost/When I'm Good And Ready (Medley) - Karaoke Version from Zoom Karaoke", - "id": "W1plsVTniwM" - }, - { - "title": "Sylvester - You Make Me Feel Mighty Real - Karaoke Version from Zoom Karaoke", - "id": "Yr-c_Ln1RSM" - }, - { - "title": "The Beat - Can't Get Used To Losing You - Karaoke Version from Zoom Karaoke", - "id": "ylaA0IIB4D4" - }, - { - "title": "David Alexander - The Answer To Everything - Karaoke Version from Zoom Karaoke", - "id": "4YqfxvZ7C8I" - }, - { - "title": "UB40 - Come Back Darling - Karaoke Version from Zoom Karaoke", - "id": "cGmTuqBYRkk" - }, - { - "title": "David Alexander - Lady Lay Down - Karaoke Version from Zoom Karaoke", - "id": "coioJ5Q6Tik" - }, - { - "title": "David Alexander - So Many Ways - Karaoke Version from Zoom Karaoke", - "id": "mnHpXNuyG6k" - }, - { - "title": "The Dubliners - The Rare Old Times - Karaoke Version from Zoom Karaoke", - "id": "AKIwYsqi0MU" - }, - { - "title": "Bill Haley And His Comets - Rock A Beatin' Boogie - Karaoke Version from Zoom Karaoke", - "id": "UHXWuvMUUuQ" - }, - { - "title": "David Alexander - Endlessly - Karaoke Version from Zoom Karaoke", - "id": "AtN1r1DenTo" - }, - { - "title": "David Alexander - It's Just A Matter Of Time - Karaoke Version from Zoom Karaoke", - "id": "vUz2pLU5ppw" - }, - { - "title": "Jason Derulo - Take You Dancing - Karaoke Version from Zoom Karaoke", - "id": "otni10oPjGI" - }, - { - "title": "Major - Why I Love You - Karaoke Version from Zoom Karaoke", - "id": "rA50yQJa-uk" - }, - { - "title": "Gerry Cinnamon - Kampfire Vampire - Karaoke Version from Zoom Karaoke", - "id": "b32VMDMUeqs" - }, - { - "title": "Brooks and Dunn - Neon Moon - Karaoke Version from Zoom Karaoke", - "id": "UPRhGxdLWSI" - }, - { - "title": "Kygo and Whitney Houston - Higher Love - Karaoke Version from Zoom Karaoke", - "id": "UO05xFtUJLs" - }, - { - "title": "Sam Smith - How Do You Sleep - Karaoke Version from Zoom Karaoke", - "id": "vv5OAO0k00w" - }, - { - "title": "Ed Sheeran feat Khalid - Beautiful People - Karaoke Version from Zoom Karaoke", - "id": "_t7MxoNEqcw" - }, - { - "title": "Ellie Goulding and Juice WRLD - Hate Me - Karaoke Version from Zoom Karaoke", - "id": "ZVSwAjzjf4Q" - }, - { - "title": "Jack Savoretti - What More Can I Do - Karaoke Version from Zoom Karaoke", - "id": "GqURlwmOHYs" - }, - { - "title": "Jess Glynne - No One - Karaoke Version from Zoom Karaoke", - "id": "wNxS5j_0bUw" - }, - { - "title": "Justin Bieber & Ed Sheeran - I Don't Care - Karaoke Version from Zoom Karaoke", - "id": "oLLdfpKDwm0" - }, - { - "title": "Andy Williams - A Summer Place - Karaoke Version from Zoom Karaoke", - "id": "mRx0-LifQRo" - }, - { - "title": "Halsey - Nightmare - Karaoke Version from Zoom Karaoke", - "id": "QL_F_TDfhW0" - }, - { - "title": "Elvis Presley - (If You're Looking For) Trouble - Karaoke Version from Zoom Karaoke", - "id": "8_WQZC0Pjwg" - }, - { - "title": "Jess Glynne & Jax Jones - One Touch - Karaoke Version from Zoom Karaoke", - "id": "57N_5h2Gxbk" - }, - { - "title": "Jess Glynne - I'll Be There - Karaoke Version from Zoom Karaoke", - "id": "-dyYppbrqdg" - }, - { - "title": "David Alexander - More And More - Karaoke Version from Zoom Karaoke", - "id": "eLoIQcb-9YE" - }, - { - "title": "James Arthur - Falling Like The Stars - Karaoke Version from Zoom Karaoke", - "id": "8pIv1yV0H9s" - }, - { - "title": "Neil Diamond - The Story Of My Life - Karaoke Version from Zoom Karaoke", - "id": "UNrNWhbtRz8" - }, - { - "title": "Neil Diamond - Morningside - Karaoke Version from Zoom Karaoke", - "id": "rt67Pperh3E" - }, - { - "title": "Tony Christie - Happy Birthday Baby - Karaoke Version from Zoom Karaoke", - "id": "Wbh6ObCP2XM" - }, - { - "title": "David Alexander - Feelings - Karaoke Version from Zoom Karaoke", - "id": "0pt09mfnSmc" - }, - { - "title": "Neil Young - Four Strong Winds - Karaoke Version from Zoom Karaoke", - "id": "ru_J16Ke5h4" - }, - { - "title": "Evelyn Thomas - High Energy - Karaoke Version from Zoom Karaoke", - "id": "iDoWf_VmKVQ" - }, - { - "title": "Mott The Hoople - Roll Away The Stone - Karaoke Version from Zoom Karaoke", - "id": "YrQoLIR25Eg" - }, - { - "title": "David Alexander - The Price Of Coal - Karaoke Version from Zoom Karaoke", - "id": "WZQwKbirleg" - }, - { - "title": "Freddie Mercury - Time Waits For No One (Piano Version) - Karaoke Version from Zoom Karaoke", - "id": "S2NZT0QKuQ8" - }, - { - "title": "David Alexander - Feed The Fire - Karaoke Version from Zoom Karaoke", - "id": "DTxTJ3fWZE0" - }, - { - "title": "Donna Summer - Last Dance - Karaoke Version from Zoom Karaoke", - "id": "07Zv-E-aNNw" - }, - { - "title": "Katy Perry - Never Really Over - Karaoke Version from Zoom Karaoke", - "id": "dAVyU9VIrSA" - }, - { - "title": "Duane Stephenson - Cottage In Negril - Karaoke Version from Zoom Karaoke", - "id": "pffbt7_EJ9c" - }, - { - "title": "Ed Sheeran feat Yebba - Best Part Of Me - Karaoke Version from Zoom Karaoke", - "id": "ovx3sRV3d3U" - }, - { - "title": "Kygo & Rita Ora - Carry On - Karaoke Version from Zoom Karaoke", - "id": "TeZx7EHMZ7w" - }, - { - "title": "Joe Dolan - Goodbye Venice Goodbye - Karaoke Version from Zoom Karaoke", - "id": "MwC2zrWKxeM" - }, - { - "title": "Liam Gallagher - Shockwave - Karaoke Version from Zoom Karaoke", - "id": "1pCzDe4rQWk" - }, - { - "title": "Sarah McLachlan - When She Loved Me (from Toy Story 2) - Karaoke Version from Zoom Karaoke", - "id": "HGURHlfvHVc" - }, - { - "title": "Anne Marie feat Doja Cat - To Be Young - Karaoke Version from Zoom Karaoke", - "id": "5RSx1JAuuPU" - }, - { - "title": "Willy Wonka And The Chocolate Factory - I Want It Now - Karaoke Version from Zoom Karaoke", - "id": "HWzOgmApca0" - }, - { - "title": "Descendants 3 - Queen Of Mean - Karaoke Version from Zoom Karaoke", - "id": "lBF5vR2EppY" - }, - { - "title": "Jax Jones & Bebe Rexha - Harder - Karaoke Version from Zoom Karaoke", - "id": "7l2dzDZ6jOY" - }, - { - "title": "Willy Wonka And The Chocolate Factory - I Want It Now (Duet) - Karaoke Version from Zoom Karaoke", - "id": "V7UIaa1KOvc" - }, - { - "title": "Chris Stapleton - Broken Halos - Karaoke Version from Zoom Karaoke", - "id": "-BM5YiB7Jzo" - }, - { - "title": "5 Seconds Of Summer - Teeth - Karaoke Version from Zoom Karaoke", - "id": "zXT_Jq31T18" - }, - { - "title": "Camila Cabello - Shameless - Karaoke Version from Zoom Karaoke", - "id": "wVGszyqyw5A" - }, - { - "title": "Ava Max - Torn - Karaoke Version from Zoom Karaoke", - "id": "ttKB_VdIiDQ" - }, - { - "title": "Craig David - 7 Days - Karaoke Version from Zoom Karaoke", - "id": "q-FMHQjZjb4" - }, - { - "title": "Taylor Swift - Paper Rings - Karaoke Version from Zoom Karaoke", - "id": "oGLCq1EeqAw" - }, - { - "title": "Wax - Bridge To Your Heart - Karaoke Version from Zoom Karaoke", - "id": "n3epyT6MULU" - }, - { - "title": "Chris Stapleton - Fire Away - Karaoke Version from Zoom Karaoke", - "id": "mk_S6b2UgtI" - }, - { - "title": "OneRepublic - Rescue Me - Karaoke Version from Zoom Karaoke", - "id": "fYAkunmHf-Q" - }, - { - "title": "Celine Dion - Lying Down - Karaoke Version from Zoom Karaoke", - "id": "bq9Vm_Jl-NA" - }, - { - "title": "Middle Of The Road - Soley Soley - Karaoke Version from Zoom Karaoke", - "id": "b9NFmjqZGzI" - }, - { - "title": "Amy Wadge - Faith's Song - Karaoke Version from Zoom Karaoke", - "id": "EC_N4SGkl1Y" - }, - { - "title": "Liam Gallagher - One Of Us - Karaoke Version from Zoom Karaoke", - "id": "82T9OoMlgxE" - }, - { - "title": "Taylor Swift - Lover - Karaoke Version from Zoom Karaoke", - "id": "3XIFeO2a5Gc" - }, - { - "title": "Terence Trent D'Arby - If You Let Me Stay - Karaoke Version from Zoom Karaoke", - "id": "V2l9aOoTVkU" - }, - { - "title": "Ed Sheeran feat Meek Mill & A Boogie Wit Da Hoodie - 1000 Nights - Karaoke Version from Zoom Karaoke", - "id": "7Cws-XJj_A8" - }, - { - "title": "The Fatback Band - I Found Lovin' - Karaoke Version from Zoom Karaoke", - "id": "QbtLKPTt3OM" - }, - { - "title": "Ed Sheeran feat Paulo Londra & Dave - Nothing On You - Karaoke Version from Zoom Karaoke", - "id": "6qEepQDGzRg" - }, - { - "title": "Katy Perry - Small Talk - Karaoke Version from Zoom Karaoke", - "id": "uD11WuU9YFc" - }, - { - "title": "Andy Williams - Speak Softly Love - Karaoke Version from Zoom Karaoke", - "id": "enaDPAMilRE" - }, - { - "title": "Ed Sheeran feat Camila Cabello & Cardi B - South Of The Border - Karaoke Version from Zoom Karaoke", - "id": "8_H1VbV0pxU" - }, - { - "title": "Goldfrapp - Ooh La La - Karaoke Version from Zoom Karaoke", - "id": "qY78RZkkWMw" - }, - { - "title": "Miley Cyrus - Slide Away - Karaoke Version from Zoom Karaoke", - "id": "Z6RJVggQxu8" - }, - { - "title": "The Shapeshifters - Lola's Theme - Karaoke Version from Zoom Karaoke", - "id": "_XDB4KpobAM" - }, - { - "title": "Kelly Clarkson - I Dare You - Karaoke Version from Zoom Karaoke", - "id": "0BWkXMH5EiE" - }, - { - "title": "The Weeknd - Blinding Lights - Karaoke Version from Zoom Karaoke", - "id": "-JA6H2-yBm4" - }, - { - "title": "Simple Minds - All The Things She Said - Karaoke Version from Zoom Karaoke", - "id": "O9SM4HpzCOE" - }, - { - "title": "Rita Ora - New Look - Karaoke Version from Zoom Karaoke", - "id": "BYFKR_aNQig" - }, - { - "title": "Robert Palmer - Simply Irresistible - Karaoke Version from Zoom Karaoke", - "id": "jM6Y2g_nODM" - }, - { - "title": "Heathers The Musical - Freeze Your Brain - Karaoke Version from Zoom Karaoke", - "id": "uENDhgSi7qs" - }, - { - "title": "Jonas Blue feat Theresa Rex - What I Like About You - Karaoke Version from Zoom Karaoke", - "id": "XzRCCR0tGrw" - }, - { - "title": "Liam Gallagher - Once - Karaoke Version from Zoom Karaoke", - "id": "sG65Ntvaal8" - }, - { - "title": "Sigala and Paloma Faith - Lullaby (Acoustic Version) - Karaoke Version from Zoom Karaoke", - "id": "EX5TauFFqJ0" - }, - { - "title": "The Beautiful South - We Are Each Other - Karaoke Version from Zoom Karaoke", - "id": "RFiTfLamKPw" - }, - { - "title": "Tori Amos - Crucify - Karaoke Version from Zoom Karaoke", - "id": "7YL0y0y6nT0" - }, - { - "title": "Yola - Faraway Look - Karaoke Version from Zoom Karaoke", - "id": "d2i-eysxwJM" - }, - { - "title": "Middle Of The Road - Tweedle Dee Tweedle Dum - Karaoke Version from Zoom Karaoke", - "id": "2etyyDPM9S4" - }, - { - "title": "Ed Sheeran feat HER - I Don't Want Your Money - Karaoke Version from Zoom Karaoke", - "id": "TGAzbkeX_sw" - }, - { - "title": "Lord Tanamo - I'm In The Mood For Love - Karaoke Version from Zoom Karaoke", - "id": "ndrkF96bFYc" - }, - { - "title": "Faith Hill - This Kiss - Karaoke Version from Zoom Karaoke", - "id": "5oUTTF0tBjw" - }, - { - "title": "Lord Creator / The Dualers - Don't Stay Out Late - Karaoke Version from Zoom Karaoke", - "id": "Q8VHoHbwuw0" - }, - { - "title": "James Arthur - You - Karaoke Version from Zoom Karaoke", - "id": "Gq9tuQlGpM8" - }, - { - "title": "James - Sometimes - Karaoke Version from Zoom Karaoke", - "id": "v38uqIUB7Ek" - }, - { - "title": "Harry Styles - Lights Up - Karaoke Version from Zoom Karaoke", - "id": "D-R--w3j_Tc" - }, - { - "title": "JoJo Siwa - High Top Shoes - Karaoke Version from Zoom Karaoke", - "id": "A5iVLDaH6-w" - }, - { - "title": "Elvis Presley - Promised Land - Karaoke Version from Zoom Karaoke", - "id": "SSM3Kd3mw7o" - }, - { - "title": "Dana - It's Gonna Be A Cold Cold Christmas - Karaoke Version from Zoom Karaoke", - "id": "YclsNpf8Yew" - }, - { - "title": "Kodaline - Shed A Tear - Karaoke Version from Zoom Karaoke", - "id": "E4h-mn5uRMY" - }, - { - "title": "Neil Diamond - Glory Road - Karaoke Version from Zoom Karaoke", - "id": "rYJA7Oi6hpM" - }, - { - "title": "Dan + Shay & Justin Bieber - 10,000 Hours - Karaoke Version from Zoom Karaoke", - "id": "rHi5VasERCg" - }, - { - "title": "Chris Stapleton - Millionaire - Karaoke Version from Zoom Karaoke", - "id": "XRlAKeyP4Ig" - }, - { - "title": "Van Morrison - Wild Night - Karaoke Version from Zoom Karaoke", - "id": "8V9ZkF5VisA" - }, - { - "title": "Charlie Puth - Mother - Karaoke Version from Zoom Karaoke", - "id": "f4JAl5a-ffk" - }, - { - "title": "Andrew Gold - Thank You For Being A Friend - Karaoke Version from Zoom Karaoke", - "id": "eY_dZB1ixL4" - }, - { - "title": "Andy Williams - Where Do I Begin Love Story - Karaoke Version from Zoom Karaoke", - "id": "sykmf5bGpB0" - }, - { - "title": "Andy Williams - A Time For Us - Karaoke Version from Zoom Karaoke", - "id": "jZHXlB9XJk8" - }, - { - "title": "Beyonce - Spirit - Karaoke Version from Zoom Karaoke", - "id": "rFhVN7D-85U" - }, - { - "title": "Shawn Mendes and Camila Cabello - Senorita - Karaoke Version from Zoom Karaoke", - "id": "q2A7qYZLWnI" - }, - { - "title": "Zara Larsson - All The Time - Karaoke Version from Zoom Karaoke", - "id": "FIHuEZHEFt4" - }, - { - "title": "Andy Williams - Happy Holiday - Karaoke Version from Zoom Karaoke", - "id": "jAdXQR1DTQQ" - }, - { - "title": "Ariana Grande and Social House - Boyfriend (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "JHLSfqSaH3E" - }, - { - "title": "Ariana Grande and Social House - Boyfriend (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "JpTiUJDzDJo" - }, - { - "title": "Ava Max - Freaking Me Out - Karaoke Version from Zoom Karaoke", - "id": "_42H7irJCIY" - }, - { - "title": "Creedence Clearwater Revival - Cotton Fields - Karaoke Version from Zoom Karaoke", - "id": "LkIpNGwN_rs" - }, - { - "title": "Taylor Swift - The Archer - Karaoke Version from Zoom Karaoke", - "id": "mtPiHPm4LC4" - }, - { - "title": "Radio Riddler feat Ali Campbell - Purple Rain - Karaoke Version from Zoom Karaoke", - "id": "g9fn7pznnfU" - }, - { - "title": "Creedence Clearwater Revival - Green River - Karaoke Version from Zoom Karaoke", - "id": "xsAoQdUbRCU" - }, - { - "title": "Descendants - Evil Like Me - Karaoke Version from Zoom Karaoke", - "id": "4zdtWWF86vM" - }, - { - "title": "Ed Sheeran feat Eminem & 50 Cent - Remember The Name (Clean) - Karaoke Version from Zoom Karaoke", - "id": "If2324QLutc" - }, - { - "title": "Ed Sheeran feat Eminem & 50 Cent - Remember The Name (Explicit) - Karaoke Version from Zoom Karaoke", - "id": "i2juHVraXus" - }, - { - "title": "Jefferson Airplane - Volunteers - Karaoke Version from Zoom Karaoke", - "id": "dbbIbpfWGD0" - }, - { - "title": "Keane - The Way I Feel - Karaoke Version from Zoom Karaoke", - "id": "_grJEYJW08k" - }, - { - "title": "Sigala and Becky Hill - Wish You Well - Karaoke Version from Zoom Karaoke", - "id": "I9Y_wLP5NC4" - }, - { - "title": "Parry Gripp - It's Raining Tacos - Karaoke Version from Zoom Karaoke", - "id": "6PcxvwMKulQ" - }, - { - "title": "James - Getting Away With It (All Messed Up) - Karaoke Version from Zoom Karaoke (Old Version)", - "id": "_aQe1B_T3VQ" - }, - { - "title": "Post Malone - Circles - Karaoke Version from Zoom Karaoke", - "id": "ylEf2z9zJWQ" - }, - { - "title": "Bruce Springsteen - I Wish I Were Blind - Karaoke Version from Zoom Karaoke", - "id": "Dv8Mx_S-zpk" - }, - { - "title": "Maroon 5 - Memories - Karaoke Version from Zoom Karaoke", - "id": "PGtHq8Z1rso" - }, - { - "title": "Madness - Mr Apples - Karaoke Version from Zoom Karaoke", - "id": "fWjev7G-4SQ" - }, - { - "title": "Rita Coolidge - We're All Alone - Karaoke Version from Zoom Karaoke", - "id": "vMGDRlB2oN4" - }, - { - "title": "Lewis Capaldi - Bruises - Karaoke Version from Zoom Karaoke", - "id": "Sy-G-0ewOms" - }, - { - "title": "Kenny Rogers & Kim Carnes - Don't Fall In Love With A Dreamer - Karaoke Version from Zoom Karaoke", - "id": "70p6jCksdBs" - }, - { - "title": "Stereophonics - I Wanna Get Lost With You - Karaoke Version from Zoom Karaoke", - "id": "ZqXByEfrd00" - }, - { - "title": "John Legend - All Of Me (Reggae Version) - Karaoke Version from Zoom Karaoke", - "id": "BYD-jrwKjik" - }, - { - "title": "The Carpenters - Now - Karaoke Version from Zoom Karaoke", - "id": "PfU7W8bs7qc" - }, - { - "title": "Harry Belafonte - Day-O (The Banana Boat Song) - Karaoke Version from Zoom Karaoke", - "id": "UokaBzSDIhY" - }, - { - "title": "UB40 - The Way You Do The Things You Do - Karaoke Version from Zoom Karaoke", - "id": "KH_7kqUFKMI" - }, - { - "title": "Gerry Cinnamon - Canter - Karaoke Version from Zoom Karaoke", - "id": "axTKyfTkvvA" - }, - { - "title": "Ed Sheeran ft Stormzy Jaykae & Aitch - Take Me Back To London - Karaoke Version from Zoom Karaoke", - "id": "U34fvdED8P4" - }, - { - "title": "Chris Stapleton - Traveller - Karaoke Version from Zoom Karaoke", - "id": "jrj6qpio5PQ" - }, - { - "title": "Dominic Fike - 3 Nights - Karaoke Version from Zoom Karaoke", - "id": "aMd86NLKcr0" - }, - { - "title": "Niall Horan - Nice To Meet Ya - Karaoke Version from Zoom Karaoke", - "id": "BtXC9QjsU-s" - }, - { - "title": "George Michael - Jesus To A Child - Karaoke Version from Zoom Karaoke", - "id": "0rKiznrXER4" - }, - { - "title": "Oasis - Rockin' Chair - Karaoke Version from Zoom Karaoke", - "id": "77lLrZdGUz8" - }, - { - "title": "Dermot Kennedy - Power Over Me - Karaoke Version from Zoom Karaoke", - "id": "ZU-4xOCtiGU" - }, - { - "title": "Will Smith feat K Ci - Will 2K - Karaoke Version from Zoom Karaoke", - "id": "NHZ1a7LriX4" - }, - { - "title": "Jonas Brothers - What A Man Gotta Do - Karaoke Version from Zoom Karaoke", - "id": "q50hjBGnAZE" - }, - { - "title": "Will Smith feat Sisqo & Kool Moe Dee - Wild Wild West - Karaoke Version from Zoom Karaoke", - "id": "AMlAQGYt8Kg" - }, - { - "title": "Tom Walker - Better Half Of Me - Karaoke Version from Zoom Karaoke", - "id": "8adIEVJD9lA" - }, - { - "title": "Gene Pitney - The Man Who Shot Liberty Valance - Karaoke Version from Zoom Karaoke", - "id": "xB2vwKAvIu4" - }, - { - "title": "Stormzy feat Ed Sheeran & Burna Boy - Own It - Karaoke Version from Zoom Karaoke", - "id": "kxIjGydXmJQ" - }, - { - "title": "Gerry Cinnamon - The Bonny - Karaoke Version from Zoom Karaoke", - "id": "joBMEoNEfd4" - }, - { - "title": "Foster And Allen - Old Flames - Karaoke Version from Zoom Karaoke", - "id": "eINZqNzG-_E" - }, - { - "title": "Sam Fender - Play God - Karaoke Version from Zoom Karaoke", - "id": "6mSJToQbB8w" - }, - { - "title": "The Proclaimers - Over And Done With - Karaoke Version from Zoom Karaoke", - "id": "3eTT4au3Mjg" - }, - { - "title": "Foster And Allen - The Blacksmith - Karaoke Version from Zoom Karaoke", - "id": "F9HGOW2HK98" - }, - { - "title": "Chronixx - Skankin' Sweet - Karaoke Version from Zoom Karaoke", - "id": "jJoPkCiBvz8" - }, - { - "title": "Des'ree - Life - Karaoke Version from Zoom Karaoke", - "id": "onoMeF8MepM" - }, - { - "title": "Gene Pitney - Half Heaven Half Heartache - Karaoke Version from Zoom Karaoke", - "id": "Lw12tq_7SYg" - }, - { - "title": "Ellie Goulding - River - Karaoke Version from Zoom Karaoke", - "id": "X2hvTrFp5vg" - }, - { - "title": "Scott Fitzgerald & Yvonne Keeley - If I Had Words (Duet Version) - Karaoke Version from Zoom Karaoke", - "id": "zeFmrqgO7UE" - }, - { - "title": "Scott Fitzgerald & Yvonne Keeley - If I Had Words (Solo Singer) - Karaoke Version from Zoom Karaoke", - "id": "ZuPaWXw5rPs" - }, - { - "title": "Air Supply - Even The Nights Are Better - Karaoke Version from Zoom Karaoke", - "id": "M72adIVYxZE" - }, - { - "title": "Darts - The Boy From New York City - Karaoke Version from Zoom Karaoke", - "id": "gyEptc6E0Ek" - }, - { - "title": "Gene Pitney - Every Breath I Take - Karaoke Version from Zoom Karaoke", - "id": "IRth4wev6bY" - }, - { - "title": "Gene Pitney - Only Love Can Break A Heart - Karaoke Version from Zoom Karaoke", - "id": "ADJR93ftZyc" - }, - { - "title": "The Feeling - Love It When You Call - Karaoke Version from Zoom Karaoke", - "id": "2BDAlgyLojo" - }, - { - "title": "Sara Bareilles - Gravity - Karaoke Version from Zoom Karaoke", - "id": "QoG52wboLBo" - }, - { - "title": "Arizona Zervas - Roxanne - Karaoke Version from Zoom Karaoke", - "id": "_mdb1usyoTg" - }, - { - "title": "Tom Robinson - War Baby (Live Version) - Karaoke Version from Zoom Karaoke", - "id": "SUQf91jzsbg" - }, - { - "title": "Alma - Lonely Night - Karaoke Version from Zoom Karaoke", - "id": "Rzz42HceTXE" - }, - { - "title": "UB40 - Higher Ground - Karaoke Version from Zoom Karaoke", - "id": "imhQdTJGcjY" - }, - { - "title": "The Proclaimers - Let's Get Married - Karaoke Version from Zoom Karaoke", - "id": "pxIgJ2xt2-w" - }, - { - "title": "Bebe Rexha - You Can't Stop The Girl - Karaoke Version from Zoom Karaoke", - "id": "UDcfR_0njK4" - }, - { - "title": "The Jackson 5 - Who's Lovin' You - Karaoke Version from Zoom Karaoke", - "id": "eqxROa5Auy4" - }, - { - "title": "Dermot Kennedy - Outnumbered - Karaoke Version from Zoom Karaoke", - "id": "YBibu4MIfx0" - }, - { - "title": "Robbie Williams - Time For Change - Karaoke Version from Zoom Karaoke", - "id": "EHSxydyz36I" - }, - { - "title": "Elvis Presley - It's Only Love - Karaoke Version from Zoom Karaoke", - "id": "G87a4L6UCJc" - }, - { - "title": "Liam Gallagher - Now That I've Found You - Karaoke Version from Zoom Karaoke", - "id": "T1IA6gJR-ic" - }, - { - "title": "Dua Lipa - Don't Start Now - Karaoke Version from Zoom Karaoke", - "id": "u9naENMmG84" - }, - { - "title": "Frozen 2 - Show Yourself - Karaoke Version from Zoom Karaoke", - "id": "WiE0RgGZ30A" - }, - { - "title": "Kacey Musgraves - All Is Found - Karaoke Version from Zoom Karaoke", - "id": "rvgNSD8AEb8" - }, - { - "title": "Mabel - Loneliest Time Of Year - Karaoke Version from Zoom Karaoke", - "id": "ENYtfz-oIvc" - }, - { - "title": "Oasis - Talk Tonight - Karaoke Version from Zoom Karaoke", - "id": "qfedqWmQgcU" - }, - { - "title": "Sam Fender - Saturday - Karaoke Version from Zoom Karaoke", - "id": "ZWDChD87zQs" - }, - { - "title": "Foster And Allen - I Will Love You All My Life - Karaoke Version from Zoom Karaoke", - "id": "QKZH_N1dsWY" - }, - { - "title": "Harry Styles - Adore You - Karaoke Version from Zoom Karaoke", - "id": "iI48CBffg0A" - }, - { - "title": "Jessie J - One More Try - Karaoke Version from Zoom Karaoke", - "id": "RHh5JBeGcxE" - }, - { - "title": "Justin Bieber - Yummy - Karaoke Version from Zoom Karaoke", - "id": "EGQVdLtPcJk" - }, - { - "title": "Survivor - Burning Heart - Karaoke Version from Zoom Karaoke", - "id": "P2z_rnRDMrw" - }, - { - "title": "The Witcher - Toss A Coin To Your Witcher - Karaoke Version from Zoom Karaoke", - "id": "xqfLtPeTaYw" - }, - { - "title": "Gerry Cinnamon - Sun Queen - Karaoke Version from Zoom Karaoke", - "id": "juHiY5WrovI" - }, - { - "title": "Ginuwine - Pony - Karaoke Version from Zoom Karaoke", - "id": "0L5n1XIFCYI" - }, - { - "title": "Passenger - Things That Stop You Dreaming - Karaoke Version from Zoom Karaoke", - "id": "wIPIWZfltH0" - }, - { - "title": "The Wizard Of Oz - Yellow Brick Road / Off To See The Wizard - Karaoke Version from Zoom Karaoke", - "id": "aVtTBeqUBYg" - }, - { - "title": "Rod Stewart - Mandolin Wind - Karaoke Version from Zoom Karaoke", - "id": "7lOJB0eEA9g" - }, - { - "title": "Lewis Capaldi - Before You Go - Karaoke Version from Zoom Karaoke", - "id": "KuD7osdoSJ4" - }, - { - "title": "Edwin Starr - Stop Her On Sight (S.O.S.) - Karaoke Version from Zoom Karaoke", - "id": "BPw04HW0ObY" - }, - { - "title": "Celeste - Strange - Karaoke Version from Zoom Karaoke", - "id": "mtoMHo5cnkw" - }, - { - "title": "Rainbow - All Night Long - Karaoke Version from Zoom Karaoke", - "id": "xa1GhJsMgk0" - }, - { - "title": "Dua Lipa - Hallucinate - Karaoke Version from Zoom Karaoke", - "id": "wm6lYF4czVo" - }, - { - "title": "Camila Cabello - Living Proof - Karaoke Version from Zoom Karaoke", - "id": "rw6KcJMzCF4" - }, - { - "title": "Yvonne Fair - It Should Have Been Me - Karaoke Version from Zoom Karaoke", - "id": "aPMnOsm3Ako" - }, - { - "title": "UB40 - Bring Me Your Cup - Karaoke Version from Zoom Karaoke", - "id": "QRai4NMpv3I" - }, - { - "title": "Foster And Allen - My Uncle Mike - Karaoke Version from Zoom Karaoke", - "id": "J-2-p-Dqw1w" - }, - { - "title": "Dua Lipa - Future Nostalgia - Karaoke Version from Zoom Karaoke", - "id": "CTK7dWlMosk" - }, - { - "title": "Jax Jones & Ella Henderson - This Is Real - Karaoke Version from Zoom Karaoke", - "id": "t8L4CJtgCac" - }, - { - "title": "Celeste - Stop This Flame - Karaoke Version from Zoom Karaoke", - "id": "q4clupPhsQU" - }, - { - "title": "Halsey - You Should Be Sad - Karaoke Version from Zoom Karaoke", - "id": "7-iHFZihi9U" - }, - { - "title": "Tears For Fears - Pale Shelter - Karaoke Version from Zoom Karaoke", - "id": "4nZg27Zqzmw" - }, - { - "title": "Joel Corry - Sorry - Karaoke Version from Zoom Karaoke", - "id": "B7BmySKNmbs" - }, - { - "title": "Lizzo - Good As Hell - Karaoke Version from Zoom Karaoke", - "id": "zwb-buveDZc" - }, - { - "title": "Edwin Starr - 25 Miles - Karaoke Version from Zoom Karaoke", - "id": "KRxaRYrymAQ" - }, - { - "title": "Waitress - What Baking Can Do - Karaoke Version from Zoom Karaoke", - "id": "L_ajM70S59I" - }, - { - "title": "Celine Dion - Only One Road - Karaoke Version from Zoom Karaoke", - "id": "v8mpDEohExU" - }, - { - "title": "Lizzo - Juice - Karaoke Version from Zoom Karaoke", - "id": "sCIOEfQ-dUw" - }, - { - "title": "Edwin Starr - War - Karaoke Version from Zoom Karaoke", - "id": "OPE9a_jg9kM" - }, - { - "title": "Bonnie Tyler - If I Sing You A Love Song - Karaoke Version from Zoom Karaoke", - "id": "3FNeSTmG9Os" - }, - { - "title": "Halsey - Still Learning - Karaoke Version from Zoom Karaoke", - "id": "uAbCDqi2p7E" - }, - { - "title": "Neil Diamond - Nothing But A Heartache - Karaoke Version from Zoom Karaoke", - "id": "lvkpK6yzevc" - }, - { - "title": "Beyonce feat Jay Z - Crazy In Love - Karaoke Version from Zoom Karaoke", - "id": "RkXJwg20YVU" - }, - { - "title": "Roberta Flack - Killing Me Softly With His Song - Karaoke Version from Zoom Karaoke", - "id": "K9PlSZeppN0" - }, - { - "title": "Lizzo feat Ariana Grande - Good As Hell Remix - Karaoke Version from Zoom Karaoke", - "id": "FiDMRIu--WI" - }, - { - "title": "Gerry Cinnamon - Diamonds In The Mud - Karaoke Version from Zoom Karaoke", - "id": "003W4Bii0aU" - }, - { - "title": "Lady Gaga - Stupid Love - Karaoke Version from Zoom Karaoke", - "id": "lL0bpl7GMBQ" - }, - { - "title": "Katy Perry - Never Worn White - Karaoke Version from Zoom Karaoke", - "id": "zKy-LgYESwA" - }, - { - "title": "Dua Lipa - Physical - Karaoke Version from Zoom Karaoke", - "id": "-hNdO3Oags4" - }, - { - "title": "Harry Styles - Falling - Karaoke Version from Zoom Karaoke", - "id": "AXdMI4lMFbg" - }, - { - "title": "Joel Corry - Lonely - Karaoke Version from Zoom Karaoke", - "id": "ZZO2SO3bSww" - }, - { - "title": "Gerry Cinnamon - What Have You Done - Karaoke Version from Zoom Karaoke", - "id": "C_1NcrTzyIc" - }, - { - "title": "Gerry Cinnamon - Fickle McSelfish - Karaoke Version from Zoom Karaoke", - "id": "U8rAQbgJ0uk" - }, - { - "title": "Lizzo - Cuz I Love You - Karaoke Version from Zoom Karaoke", - "id": "w56pZNtUTQo" - }, - { - "title": "Anne Marie - Birthday - Karaoke Version from Zoom Karaoke", - "id": "z-yG9TSKx8M" - }, - { - "title": "Doja Cat - Say So - Karaoke Version from Zoom Karaoke", - "id": "rrdATsGspJg" - }, - { - "title": "Cardi B feat Bad Bunny & J Balvin - I Like It - Karaoke Version from Zoom Karaoke", - "id": "b6SmyGMikbc" - }, - { - "title": "Gerry Cinnamon - Where We're Going - Karaoke Version from Zoom Karaoke", - "id": "apDh2a_Vj6E" - }, - { - "title": "Demi Lovato - I Love Me - Karaoke Version from Zoom Karaoke", - "id": "W4o90i1aInQ" - }, - { - "title": "Mark Ronson feat Yebba - Don't Leave Me Lonely - Karaoke Version from Zoom Karaoke", - "id": "Q_i-odiaTHc" - }, - { - "title": "Sam Feldt feat Rani - Post Malone - Karaoke Version from Zoom Karaoke", - "id": "EAVDJMxZzbg" - }, - { - "title": "George Ezra - Barcelona - Karaoke Version from Zoom Karaoke", - "id": "Dd9XTry-rGU" - }, - { - "title": "Becky Hill - Better Off Without You - Karaoke Version from Zoom Karaoke", - "id": "1xLqHLqLsS8" - }, - { - "title": "James Blunt - Carry You Home - Karaoke Version from Zoom Karaoke", - "id": "-ZFy7Mg0j1U" - }, - { - "title": "Tom Grennan - This Is The Place - Karaoke Version from Zoom Karaoke", - "id": "kv1AwBvHXXw" - }, - { - "title": "Kesha - Cannibal - Karaoke Version from Zoom Karaoke", - "id": "eGgOPFoXK58" - }, - { - "title": "Meghan Trainor - No Excuses - Karaoke Version from Zoom Karaoke", - "id": "aGFvQQuyM6E" - }, - { - "title": "Charlie Puth - Girlfriend - Karaoke Version from Zoom Karaoke", - "id": "1j-zauExKfY" - }, - { - "title": "Taylor Swift - Cardigan - Karaoke Version from Zoom Karaoke", - "id": "LiSEqQM2yAE" - }, - { - "title": "Joel Corry & MNEK - Head And Heart - Karaoke Version from Zoom Karaoke", - "id": "cFZ8DSEU8HQ" - }, - { - "title": "Ariana Grande and Justin Bieber - Stuck With U - Karaoke Version from Zoom Karaoke", - "id": "UXN4Up2NSOE" - }, - { - "title": "Jonas Blue & Paloma Faith - Mistakes - Karaoke Version from Zoom Karaoke", - "id": "NW3PwNlJIgE" - }, - { - "title": "James Blunt - The Greatest - Karaoke Version from Zoom Karaoke", - "id": "xf3bDUswfQA" - }, - { - "title": "The Weeknd - In Your Eyes - Karaoke Version from Zoom Karaoke", - "id": "keoOKhjPN50" - }, - { - "title": "Taylor Swift - The Man - Karaoke Version from Zoom Karaoke", - "id": "ih_3sFN1sBQ" - }, - { - "title": "Live Lounge Allstars - Times Like These - Karaoke Version from Zoom Karaoke", - "id": "e5V1VJreAUo" - }, - { - "title": "OneRepublic - Didn't I - Karaoke Version from Zoom Karaoke", - "id": "cw8yaR1A9IU" - }, - { - "title": "Dua Lipa - Break My Heart - Karaoke Version from Zoom Karaoke", - "id": "bgVwP9AQFIM" - }, - { - "title": "Sam Smith and Demi Lovato - I'm Ready - Karaoke Version from Zoom Karaoke", - "id": "ZvLfA155CQ4" - }, - { - "title": "Selena Gomez - Lose You To Love Me - Karaoke Version from Zoom Karaoke", - "id": "OSRQ3JBNV_g" - }, - { - "title": "Kacey Musgraves - Rainbow - Karaoke Version from Zoom Karaoke", - "id": "Gyi1_qScSwI" - }, - { - "title": "Ava Max - Kings & Queens - Karaoke Version from Zoom Karaoke", - "id": "G1KWeNPyFK4" - }, - { - "title": "Little Mix - Break Up Song - Karaoke Version from Zoom Karaoke", - "id": "EKiV_x2GgIU" - }, - { - "title": "Pink - Most Girls - Karaoke Version from Zoom Karaoke", - "id": "Cv7Jxb4Tank" - }, - { - "title": "Jason Mraz - Look For The Good - Karaoke Version from Zoom Karaoke", - "id": "3sNxPT4REBg" - }, - { - "title": "Lady Gaga - You've Got A Friend (Live Acoustic) - Karaoke Version from Zoom Karaoke", - "id": "WlxNbm1uTWE" - }, - { - "title": "Katy Perry - Daisies - Karaoke Version from Zoom Karaoke", - "id": "pDlKmwcHoxQ" - }, - { - "title": "Jonas Brothers feat Karol G - X - Karaoke Version from Zoom Karaoke", - "id": "U5uk9G5Bmog" - }, - { - "title": "Ellie Goulding - Power - Karaoke Version from Zoom Karaoke", - "id": "qwJaJQ2Tl6I" - }, - { - "title": "Lady Gaga & Ariana Grande - Rain On Me - Karaoke Version from Zoom Karaoke", - "id": "Wark2HtMNh8" - }, - { - "title": "Brandi Carlile - The Story - Karaoke Version from Zoom Karaoke", - "id": "hvav1TqgiA0" - }, - { - "title": "The Strokes - Bad Decisions - Karaoke Version from Zoom Karaoke", - "id": "Yr8eA4chJJA" - }, - { - "title": "Sam Fischer - This City - Karaoke Version from Zoom Karaoke", - "id": "DV54gAHSmvU" - }, - { - "title": "Bishop Briggs - River - Karaoke Version from Zoom Karaoke", - "id": "vo9-W3Oxk90" - }, - { - "title": "Marshmello & Halsey - Be Kind - Karaoke Version from Zoom Karaoke", - "id": "087MLPIX2io" - }, - { - "title": "Descendants 3 - Do What You Gotta Do - Karaoke Version from Zoom Karaoke", - "id": "WwgcBDjMc_s" - }, - { - "title": "Niall Horan - Black And White - Karaoke Version from Zoom Karaoke", - "id": "cDQParsOQDg" - }, - { - "title": "Stereophonics - Don't Let The Devil Take Another Day - Karaoke Version from Zoom Karaoke", - "id": "FVGdv3qPGWU" - }, - { - "title": "Tom Walker - Wait For You - Karaoke Version from Zoom Karaoke", - "id": "71mYnaeDRpw" - }, - { - "title": "Topic feat A7S - Breaking Me - Karaoke Version from Zoom Karaoke", - "id": "1uX7KHbKc6E" - }, - { - "title": "John Legend - Never Break - Karaoke Version from Zoom Karaoke", - "id": "LS51KjfUdWE" - }, - { - "title": "The 1975 - If You're Too Shy Let Me Know - Karaoke Version from Zoom Karaoke", - "id": "JKjfX_fn0KQ" - }, - { - "title": "JP Cooper - Little Bit Of Love - Karaoke Version from Zoom Karaoke", - "id": "Xb3mJVaPOxg" - }, - { - "title": "Lennon Stella feat Charlie Puth - Summer Feelings - Karaoke Version from Zoom Karaoke", - "id": "1hMNdcu4m-4" - }, - { - "title": "Becky Hill & Sigala - Heaven On My Mind - Karaoke Version from Zoom Karaoke", - "id": "Aaw2Yf9WHEY" - }, - { - "title": "JP Saxe feat Julia Michaels - If The World Was Ending - Karaoke Version from Zoom Karaoke", - "id": "-baJ5_7I4fw" - }, - { - "title": "Lewis Capaldi - Leaving My Love Behind - Karaoke Version from Zoom Karaoke", - "id": "nIxYc5DGY6M" - }, - { - "title": "Dixie D'Amelio - Be Happy - Karaoke Version from Zoom Karaoke", - "id": "mhqIZKORI28" - }, - { - "title": "HAIM - The Steps - Karaoke Version from Zoom Karaoke", - "id": "sukTjpt-M-E" - }, - { - "title": "YEBBA - My Mind - Acoustative Piano Karaoke Version from Zoom Karaoke", - "id": "Q_jmz2oFCJM" - }, - { - "title": "The Witcher - Toss A Coin To Your Witcher - Karaoke Version from Zoom Karaoke as sung by Joey Batey", - "id": "mz9mH6Jh8Pw" - }, - { - "title": "Tones And I - Dance Monkey (Acoustative Version) - Karaoke Version from Zoom Karaoke", - "id": "fnYhPOYTQ74" - }, - { - "title": "How to create a Zoom Karaoke Custom CD+G disc on our website www.zoom-entertainments.co.uk", - "id": "vuWYnNvYW4E" - }, - { - "title": "Dua Lipa - Future Nostalgia - Karaoke Version from Zoom Karaoke", - "id": "sGdNR7iw5dE" - }, - { - "title": "Loneliest Time Of The Year - Mabel - Karaoke Version from Zoom Karaoke", - "id": "C_WgjTnE0wM" - }, - { - "title": "Time For Change - Robbie Williams - Karaoke Version from Zoom Karaoke", - "id": "CjVok_l2lOU" - }, - { - "title": "Lost In The Woods - Frozen 2 Soundtrack - Karaoke Version from Zoom Karaoke", - "id": "GeEVHGtuZ68" - }, - { - "title": "Into The Unknown - Frozen 2 Soundtrack - Karaoke Version from Zoom Karaoke", - "id": "xORxX7bJq-Q" - }, - { - "title": "NINA - Christmas Dream - Karaoke Version from Zoom Karaoke", - "id": "mDx4a2bBy30" - }, - { - "title": "NINA - Christmas Dream (Official Lyric Video)", - "id": "sAEChYJdaZA" - }, - { - "title": "Traditional Christmas Carol - Jingle Bells - Karaoke Version from Zoom Karaoke", - "id": "ifSe5UwlPN4" - }, - { - "title": "Traditional Christmas Carol - Silent Night - Karaoke Version from Zoom Karaoke", - "id": "hRV9p_v2Huw" - }, - { - "title": "Traditional Christmas Carol - The Twelve Days Of Christmas - Karaoke Version from Zoom Karaoke", - "id": "b94F1O_-RfE" - }, - { - "title": "Traditional Christmas Carol - God Rest Ye Merry Gentlemen - Karaoke Version from Zoom Karaoke", - "id": "ZQ0akDKK5Nc" - }, - { - "title": "Traditional Christmas Carol - O Come All Ye Faithful - Karaoke Version from Zoom Karaoke", - "id": "QBG2WK88_4w" - }, - { - "title": "Traditional Christmas Carol - O Little Town Of Bethlehem - Karaoke Version from Zoom Karaoke", - "id": "IPx42HD8okM" - }, - { - "title": "Traditional Christmas Carol - Hark The Herald Angels Sing - Karaoke Version from Zoom Karaoke", - "id": "90cqdcgFoLk" - }, - { - "title": "Traditional Christmas Carol - I Saw Three Ships - Karaoke Version from Zoom Karaoke", - "id": "o8T-KWrFu-Q" - }, - { - "title": "Traditional Christmas Carol - The Holly And The Ivy - Karaoke Version from Zoom Karaoke", - "id": "Ax-AZdmTYIU" - }, - { - "title": "Traditional Christmas Carol - The First Noel - Karaoke Version from Zoom Karaoke", - "id": "41SvcdrECWU" - }, - { - "title": "Traditional Christmas Carol - Joy To The World - Karaoke Version from Zoom Karaoke", - "id": "z_EsjR9qP1w" - }, - { - "title": "Traditional Christmas Carol - We Wish You A Merry Christmas - Karaoke Version from Zoom Karaoke", - "id": "orTJWmuHQuk" - }, - { - "title": "Traditional Christmas Carol - We Three Kings - Karaoke Version from Zoom Karaoke", - "id": "Z0ilBT9uDnQ" - }, - { - "title": "Traditional Christmas Carol - While Shepherds Watched - Karaoke Version from Zoom Karaoke", - "id": "OsowTbfW9UM" - }, - { - "title": "Traditional Christmas Carol - Once In Royal David's City - Karaoke Version from Zoom Karaoke", - "id": "Eyxuqwei8yE" - }, - { - "title": "Michael Sembello - Maniac - Karaoke Version from Zoom Karaoke", - "id": "91qYIJBY1js" - }, - { - "title": "Matt Monro - On A Clear Day - Karaoke Version from Zoom Karaoke", - "id": "VZPXxQS4L6g" - }, - { - "title": "Madonna - Papa Don't Preach - Karaoke Version from Zoom Karaoke", - "id": "X4rLAT_9hFo" - }, - { - "title": "Lou Rawls - You'll Never Find Another Love Like Mine - Karaoke Version from Zoom Karaoke", - "id": "hB2a13mE2hY" - }, - { - "title": "London Grammar - Strong - Karaoke Version from Zoom Karaoke", - "id": "IvyP55CcdGM" - }, - { - "title": "Michael Buble - When You're Not Here - Karaoke Version from Zoom Karaoke", - "id": "se2SGaOjyFk" - }, - { - "title": "Michael Buble - Haven't Met You Yet - Karaoke Version from Zoom Karaoke", - "id": "mMbX01ZEQpc" - }, - { - "title": "Michael Buble - Summer Wind - Karaoke Version from Zoom Karaoke", - "id": "YFu2FA02shA" - }, - { - "title": "Little Mix feat. Charlie Puth - Oops - Karaoke Version from Zoom Karaoke", - "id": "f7LNbaVq9mg" - }, - { - "title": "Lipps Inc. - Funkytown - Karaoke Version from Zoom Karaoke", - "id": "Te7c30Fkzzs" - }, - { - "title": "Judy Collins - Send In The Clowns - Karaoke Version from Zoom Karaoke", - "id": "AqWqIUYIEu0" - }, - { - "title": "Judy Street - What - Karaoke Version from Zoom Karaoke", - "id": "eexxxNlIZCQ" - }, - { - "title": "Joan Osborne - One Of Us - Karaoke Version from Zoom Karaoke", - "id": "bu24X5zArj0" - }, - { - "title": "Janelle Monae - Make Me Feel (Clean Version) - Karaoke Version from Zoom Karaoke", - "id": "ATVEjtnzJCU" - }, - { - "title": "Janelle Monae - Make Me Feel (Explicit Version) - Karaoke Version from Zoom Karaoke", - "id": "w_ij21a5RW0" - }, - { - "title": "Jamie Cullum - High And Dry - Karaoke Version from Zoom Karaoke", - "id": "6P4CTUZq1I0" - }, - { - "title": "Jamie Cullum - I Could Have Danced All Night - Karaoke Version from Zoom Karaoke", - "id": "HK2cgM8nPxM" - }, - { - "title": "The Housemartins - Caravan Of Love - Karaoke Version from Zoom Karaoke", - "id": "FOz5hUE9T9g" - }, - { - "title": "Haddaway - What Is Love - Karaoke Version from Zoom Karaoke", - "id": "XTWlt3ou5K4" - }, - { - "title": "Andy Burrows & Matt Haig - Barcelona - Karaoke Version from Zoom Karaoke", - "id": "4LpTswlBUdg" - }, - { - "title": "Girls Aloud - Untouchable - Karaoke Version from Zoom Karaoke", - "id": "xmzShaFPWwA" - }, - { - "title": "Girls Aloud - Can't Speak French - Karaoke Version from Zoom Karaoke", - "id": "ztJsJByIWmM" - }, - { - "title": "Girls Aloud - Sound Of The Underground - Karaoke Version from Zoom Karaoke", - "id": "wOH_SJ193Bw" - }, - { - "title": "Girls Aloud - Wake Me Up - Karaoke Version from Zoom Karaoke", - "id": "_wZH9q1dLYs" - }, - { - "title": "George Michael feat Nile Rodgers - Fantasy - Karaoke Version from Zoom Karaoke", - "id": "K5THjbjFo64" - }, - { - "title": "Kids Karaoke Wind The Bobbin Up Karaoke Version from Zoom Karaoke", - "id": "Et5jnygMz-c" - }, - { - "title": "Kids Karaoke What Shall We Do With The Drunken Sailor Karaoke Version from Zoom Karaoke", - "id": "IKFc3eSOmkM" - }, - { - "title": "Kids Karaoke When The Saints Go Marching In Karaoke Version from Zoom Karaoke", - "id": "IiLR3_LmNXY" - }, - { - "title": "Kids Karaoke Twinkle Twinkle Little Star 5 Different Verses Karaoke Version from Zoom Karaoke", - "id": "zbMeneYME0A" - }, - { - "title": "Kids Karaoke Twinkle Twinkle Little Star Verse 1 Three Times Karaoke Version from Zoom Karaoke", - "id": "rVWi1YFAQNw" - }, - { - "title": "Kids Karaoke The Animals Went In Two By Two Karaoke Version from Zoom Karaoke", - "id": "sZE35lcs2gQ" - }, - { - "title": "Kids Karaoke Three Blind Mice Karaoke Version from Zoom Karaoke", - "id": "CUMYRMPyCvk" - }, - { - "title": "Kids Karaoke This Old Man Karaoke Version from Zoom Karaoke", - "id": "NFBGJuBXL2M" - }, - { - "title": "Kids Karaoke The Wheels On The Bus Karaoke Version from Zoom Karaoke", - "id": "sYnOui1eX2M" - }, - { - "title": "Kids Karaoke The Grand Old Duke Of York Karaoke Version from Zoom Karaoke", - "id": "i_JJ0sna2MI" - }, - { - "title": "Kids Karaoke The Farmer's In His Den Karaoke Version from Zoom Karaoke", - "id": "ZNzWWBzEIq0" - }, - { - "title": "Kids Karaoke Ten Green Bottles Karaoke Version from Zoom Karaoke", - "id": "cKhQXolC3I0" - }, - { - "title": "Kids Karaoke The Alphabet Song Karaoke Version from Zoom Karaoke", - "id": "CHmwmGJ3HbE" - }, - { - "title": "Kids Karaoke Sing A Song Of Sixpence Karaoke Version from Zoom Karaoke", - "id": "EAivqARCBkw" - }, - { - "title": "Kids Karaoke She'll Be Coming 'Round The Mountain Karaoke Version from Zoom Karaoke", - "id": "N-HFuALpcGM" - }, - { - "title": "Kids Karaoke - Row, Row, Row Your Boat - Karaoke Version from Zoom Karaoke", - "id": "tkivDao-Ip0" - }, - { - "title": "Kids Karaoke Pop Goes The Weasel Karaoke Version from Zoom Karaoke", - "id": "k3W-BdZwnoY" - }, - { - "title": "Kids Karaoke Old MacDonald Had A Farm Karaoke Version from Zoom Karaoke", - "id": "5GmA0e_DmwE" - }, - { - "title": "Kids Karaoke London Bridge Is Falling Down Karaoke Version from Zoom Karaoke", - "id": "qoEQGgEiSrg" - }, - { - "title": "Kids Karaoke Michael, Row The Boat Ashore Karaoke Version from Zoom Karaoke", - "id": "c_o2mGQ6Cy0" - }, - { - "title": "Kids Karaoke Kum Ba Yah Karaoke Version from Zoom Karaoke", - "id": "pEpalk_tEoY" - }, - { - "title": "Kids Karaoke Mary Had A Little Lamb Karaoke Version from Zoom Karaoke", - "id": "J-gG2-MfKXQ" - }, - { - "title": "Kids Karaoke Little Bo Peep Karaoke Version from Zoom Karaoke", - "id": "uQpnw1iod5Y" - }, - { - "title": "Kids Karaoke If You're Happy And You Know It Karaoke Version from Zoom Karaoke", - "id": "M6zpfu2HODE" - }, - { - "title": "Kids Karaoke It's Raining, It's Pouring Karaoke Version from Zoom Karaoke", - "id": "lMmKfSgI7Qk" - }, - { - "title": "Kids Karaoke Incy Wincy Spider Karaoke Version from Zoom Karaoke", - "id": "54NmqUJhQmA" - }, - { - "title": "Kids Karaoke I'm A Little Teapot Karaoke Version from Zoom Karaoke", - "id": "SjtcOWbYgXw" - }, - { - "title": "Kids Karaoke I Hear Thunder Karaoke Version from Zoom Karaoke", - "id": "r2b0Eny4cx4" - }, - { - "title": "Kids Karaoke Humpty Dumpty Karaoke Version from Zoom Karaoke", - "id": "BseSbFcI4CM" - }, - { - "title": "Kids Karaoke Hickory Dickory Dock Karaoke Version from Zoom Karaoke", - "id": "UrmlgBdvf18" - }, - { - "title": "Kids Karaoke Head, Shoulders Knees And Toes 9 Verses Karaoke Version from Zoom Karaoke", - "id": "obrK2nUoPgA" - }, - { - "title": "Kids Karaoke He's Got The Whole World In His Hands Karaoke Version from Zoom Karaoke", - "id": "yVwooM9kUO0" - }, - { - "title": "Kids Karaoke Head, Shoulders Knees And Toes 6 Verses Karaoke Version from Zoom Karaoke", - "id": "oL4mZxxKb5w" - }, - { - "title": "Kids Karaoke Five Currant Buns Karaoke Version from Zoom Karaoke", - "id": "b6FjXkYldb4" - }, - { - "title": "Kids Karaoke Five Little Speckled Frogs Karaoke Version from Zoom Karaoke", - "id": "rPsWe45Go8A" - }, - { - "title": "God Save The Queen - Karaoke Version from Zoom Karaoke - British National Anthem", - "id": "i43i73epdZA" - }, - { - "title": "Kids Karaoke One, Two, Three, Four, Five Karaoke Version from Zoom Karaoke", - "id": "pp-wZd6-7VA" - }, - { - "title": "Kids Karaoke - Baa Baa Black Sheep - Karaoke Version from Zoom Karaoke", - "id": "fBjYu_lC1X0" - }, - { - "title": "Kids Karaoke Five Little Ducks Karaoke Version from Zoom Karaoke", - "id": "SAk2fc_qYhE" - }, - { - "title": "Kids Karaoke Oranges And Lemons Karaoke Version from Zoom Karaoke", - "id": "LG8sq4ZP2R8" - }, - { - "title": "Kids Karaoke A Sailor Went To Sea Karaoke Version from Zoom Karaoke", - "id": "JTlFajBiepw" - }, - { - "title": "George Michael - Careless Whisper - Karaoke Version from Zoom Karaoke", - "id": "xMNcGK_lJtA" - }, - { - "title": "Gene Pitney - Nobody Needs Your Love - Karaoke Version from Zoom Karaoke", - "id": "1cmAW7RxPsE" - }, - { - "title": "Garth Brooks - The Dance - Karaoke Version from Zoom Karaoke", - "id": "zlRlR7XW7c8" - }, - { - "title": "Frank Sinatra & The Red Norvo Quintet - Night And Day - Karaoke Version from Zoom Karaoke", - "id": "DBjrKGDy_yM" - }, - { - "title": "Frank Sinatra And Celeste Holm - Who Wants To Be A Millionaire - Karaoke Version from Zoom Karaoke", - "id": "9DNv8sFlw_A" - }, - { - "title": "Frank Sinatra - Summer Wind - Karaoke Version from Zoom Karaoke", - "id": "ZxbKtXYdtRc" - }, - { - "title": "Hamilton The Musical - Hurricane - Karaoke Version from Zoom Karaoke", - "id": "9j7Qr68MFGE" - }, - { - "title": "Dr. Hook - Better Love Next Time - Karaoke Version from Zoom Karaoke", - "id": "jcmbtGGS2g4" - }, - { - "title": "Doris Day - The Black Hills Of Dakota - Karaoke Version from Zoom Karaoke", - "id": "aNFPmSRb7dc" - }, - { - "title": "Donna Summer - Bad Girls - Karaoke Version from Zoom Karaoke", - "id": "OoMzm5wjW0Y" - }, - { - "title": "Donna Summer - Hot Stuff - Karaoke Version from Zoom Karaoke", - "id": "UpeQC55gX4I" - }, - { - "title": "Dion - The Wanderer - Karaoke Version from Zoom Karaoke", - "id": "7-CjUIZWXWs" - }, - { - "title": "Deep Blue Something - Breakfast At Tiffany's - Karaoke Version from Zoom Karaoke", - "id": "ErddmUPuPMo" - }, - { - "title": "Dan Fogelberg - Rhythm Of The Rain - Karaoke Version from Zoom Karaoke", - "id": "0ZErnHM6xNQ" - }, - { - "title": "Chicago The Musical - All That Jazz - Karaoke Version from Zoom Karaoke", - "id": "w8YKV9aRwfs" - }, - { - "title": "Chicago The Musical - Razzle Dazzle - Karaoke Version from Zoom Karaoke", - "id": "0cwmCo5kf8Q" - }, - { - "title": "C & C Music Factory - Just A Touch Of Love - Karaoke Version from Zoom Karaoke", - "id": "1BEkQdGKebY" - }, - { - "title": "Brian Hyland - Sealed With A Kiss - Karaoke Version from Zoom Karaoke", - "id": "fbw8-f3lSb8" - }, - { - "title": "Boyzone - You Needed Me - Karaoke Version from Zoom Karaoke", - "id": "DRwo7et6WqA" - }, - { - "title": "Bobby Vee - Earth Angel - Karaoke Version from Zoom Karaoke", - "id": "pZ_jN2JhpQk" - }, - { - "title": "Ben Howard - Only Love - Karaoke Version from Zoom Karaoke", - "id": "Rc_bIBAzP4I" - }, - { - "title": "Bastille - Basket Case - Karaoke Version from Zoom Karaoke", - "id": "R2s2KC79urw" - }, - { - "title": "Plain White T's - Hey There Delilah - Karaoke Version from Zoom Karaoke", - "id": "Q9YSQ1LaQTE" - }, - { - "title": "The Baseballs - Hey There Delilah - Karaoke Version from Zoom Karaoke", - "id": "IUz3REqK1BQ" - }, - { - "title": "Barry White - Never Never Gonna Give You Up - Karaoke Version from Zoom Karaoke", - "id": "SeFIAqP8fHM" - }, - { - "title": "Barry Manilow - I Wanna Do It With You - Karaoke Version from Zoom Karaoke", - "id": "ES2MExa1C_Q" - }, - { - "title": "Band Aid 30 - Do They Know It's Christmas (2014) - Karaoke Version from Zoom Karaoke", - "id": "yAvksjjyruE" - }, - { - "title": "Band Aid - Do They Know It's Christmas - Karaoke Version from Zoom Karaoke", - "id": "WDnmMkKizNk" - }, - { - "title": "Bad Wolves - Zombie - Karaoke Version from Zoom Karaoke", - "id": "weCQbj7WgTM" - }, - { - "title": "Andy Kim - Rock Me Gently - Karaoke Version from Zoom Karaoke", - "id": "-xNMYme8Ttw" - }, - { - "title": "Alex Clare - Too Close - Karaoke Version from Zoom Karaoke", - "id": "F8VxgaxBNtU" - }, - { - "title": "America - A Horse With No Name - Karaoke Version from Zoom Karaoke", - "id": "QgfXiK8TQNY" - }, - { - "title": "Ace Of Base - All That She Wants - Karaoke Version from Zoom Karaoke", - "id": "9hIyw9RbZPc" - }, - { - "title": "Ace Of Base - The Sign - Karaoke Version from Zoom Karaoke", - "id": "mc52EHZ04iw" - }, - { - "title": "Green Day - Good Riddance (Time Of Your Life) - Karaoke Version from Zoom Karaoke", - "id": "2xHrgr7UbvU" - }, - { - "title": "Radiohead - Street Spirit Fade Out - Karaoke Version from Zoom Karaoke", - "id": "7Kzt0VY5a_U" - }, - { - "title": "Radiohead - No Surprises - Karaoke Version from Zoom Karaoke", - "id": "H8cNOHKKx7U" - }, - { - "title": "Radiohead - 2+2=5 - Karaoke Version from Zoom Karaoke", - "id": "7qkuSiOj_Is" - }, - { - "title": "Radiohead - Paranoid Android - Karaoke Version from Zoom Karaoke", - "id": "7-ucPTAdvf4" - }, - { - "title": "Soft Cell - Say Hello Wave Goodbye (Almighty Radio Edit) - Karaoke Version from Zoom Karaoke", - "id": "yE2RVh45UCI" - }, - { - "title": "Talking Heads - Once In A Lifetime - Karaoke Version from Zoom Karaoke", - "id": "cGsIBVs1TyY" - }, - { - "title": "The Cranberries - Ode To My Family - Karaoke Version from Zoom Karaoke", - "id": "DeSWngfQSuQ" - }, - { - "title": "The Cranberries - Zombie - Karaoke Version from Zoom Karaoke", - "id": "F45ayZ5ScGY" - }, - { - "title": "The Cranberries - Salvation - Karaoke Version from Zoom Karaoke", - "id": "cChp5dh9uvo" - }, - { - "title": "Twenty One Pilots - Chlorine - Karaoke Version from Zoom Karaoke", - "id": "6X5QfCCW4uw" - }, - { - "title": "Twenty One Pilots - Jumpsuit - Karaoke Version from Zoom Karaoke", - "id": "rLOnZDvazLY" - }, - { - "title": "Whitesnake - Still Of The Night - Karaoke Version from Zoom Karaoke", - "id": "d6OWc_CfbkI" - }, - { - "title": "Wham! - Last Christmas - Karaoke Version from Zoom Karaoke", - "id": "LAvaaQO2L_o" - }, - { - "title": "Wham! - Wham Rap (Enjoy What You Do) - Karaoke Version from Zoom Karaoke", - "id": "_38gtxtjvPI" - } - ], - "@VocalStarKaraoke": [ - { - "title": "Don't Say You Love Me - Jin KARAOKE Without Backing Vocals", - "id": "jU5usqfZwXk" - }, - { - "title": "Don't Say You Love Me - Jin KARAOKE With Vocal Guide", - "id": "m51bbu2ghp4" - }, - { - "title": "The Glen (Levi Heron Edit) - Beluga Lagoon KARAOKE Without Backing Vocals", - "id": "uh3RCcIgmc0" - }, - { - "title": "The Glen (Levi Heron Edit) - Beluga Lagoon KARAOKE With Vocal Guide", - "id": "6l2nrmQ-cyQ" - }, - { - "title": "(I Can't Get No) Satisfaction - The Rolling Stones KARAOKE Without Backing Vocals", - "id": "2graLFkcBN0" - }, - { - "title": "(I Can't Get No) Satisfaction - The Rolling Stones KARAOKE With Vocal Guide", - "id": "67rKZKzAiY0" - }, - { - "title": "Joy - Newsboys KARAOKE", - "id": "MVrubqEzZ-8" - }, - { - "title": "Homeward Bound - Simon & Garfunkel KARAOKE", - "id": "HxuyPh0KPGI" - }, - { - "title": "Your Idol - Saja Boys Kpop Demon Hunters KARAOKE", - "id": "jdVOGM_p7WQ" - }, - { - "title": "Golden - Huntr-X Kpop Demon Hunters Cast KARAOKE", - "id": "WEVTTpNOfSc" - }, - { - "title": "One Love - Blue KARAOKE", - "id": "Gm6_RwmfyCA" - }, - { - "title": "Night Fever - Bee Gees KARAOKE Without Backing Vocals", - "id": "GgpbIzSOtxc" - }, - { - "title": "The Loco-Motion - Little Eva KARAOKE Without Backing Vocals", - "id": "MRdJUVfgcEk" - }, - { - "title": "The Loco-Motion - Little Eva KARAOKE With Vocal Guide", - "id": "fWCJuHaqCjk" - }, - { - "title": "The Long And Winding Road - Gareth Gates and Will Young KARAOKE", - "id": "S2m3v2HGYUQ" - }, - { - "title": "The Long And Winding Road - Gareth Gates and Will Young KARAOKE With Vocal Guide", - "id": "N66U4BITyaA" - }, - { - "title": "Lipstick on Your Collar - Connie Francis KARAOKE Without Backing Vocals", - "id": "RADhx8KujWA" - }, - { - "title": "Lipstick on Your Collar - Connie Francis KARAOKE With Vocal Guide", - "id": "l38KkrkK_vo" - }, - { - "title": "Got To Have Your Love - Liberty X KARAOKE", - "id": "DKtGwGoyGmQ" - }, - { - "title": "Hi Ho Silver Lining - Jeff Beck KARAOKE Without Backing Vocals", - "id": "D49sNbtU9_U" - }, - { - "title": "Hi Ho Silver Lining - Jeff Beck KARAOKE With Vocal Guide", - "id": "symDRt_x7ZA" - }, - { - "title": "I Only Want To Be With You - Dusty Springfield KARAOKE Without Backing Vocals", - "id": "0iUS9YXrxUI" - }, - { - "title": "Get Over You - Sophie Ellis-Bextor KARAOKE", - "id": "WH3g8N3ieYM" - }, - { - "title": "Do You Love Me - The Contours KARAOKE", - "id": "v2lCDMy-wWE" - }, - { - "title": "Come into My World - Kylie Minogue KARAOKE", - "id": "PGFEhnGpTQI" - }, - { - "title": "Hot Stuff - Donna Summer KARAOKE Without Backing Vocals", - "id": "wREeHyurir8" - }, - { - "title": "Hot Stuff - Donna Summer KARAOKE With Vocal Guide", - "id": "L6nVykmB3BY" - }, - { - "title": "A Thousand Miles - Vanessa Carlton KARAOKE", - "id": "nfrQOu9Or5k" - }, - { - "title": "Gimme! Gimme! Gimme! - ABBA KARAOKE Without Backing Vocals", - "id": "79fgkh806FA" - }, - { - "title": "Gimme! Gimme! Gimme! - ABBA KARAOKE With Vocal Guide", - "id": "pGN4LJBkLFU" - }, - { - "title": "What Was That - Lorde KARAOKE Without Backing Vocals", - "id": "X4yw7tn29W4" - }, - { - "title": "What Was That - Lorde KARAOKE With Vocal Guide", - "id": "3Gma87LggJ4" - }, - { - "title": "We Are Family - Sister Sledge KARAOKE Without Backing Vocals", - "id": "Luf6bUv51iI" - }, - { - "title": "We Are Family - Sister Sledge KARAOKE With Vocal Guide", - "id": "A8V9y0ZoXdg" - }, - { - "title": "Starry Eyed Surprise - Paul Oakenfold KARAOKE", - "id": "uYYwk-piEDo" - }, - { - "title": "Some Girls - Racey KARAOKE", - "id": "na_5VdATS2E" - }, - { - "title": "Reet Petite - Jackie Wilson KARAOKE", - "id": "P_0yoAb5SfI" - }, - { - "title": "Papa Don't Preach - Kelly Osbourne KARAOKE With Vocal Guide", - "id": "0Y5MgiWJyv4" - }, - { - "title": "Papa Don't Preach - Kelly Osbourne KARAOKE", - "id": "r3gO3h-8Tg4" - }, - { - "title": "Do Wah Diddy Diddy - Manfred Mann KARAOKE Without Backing Vocals", - "id": "9jymHgzAG7I" - }, - { - "title": "Do Wah Diddy Diddy - Manfred Mann KARAOKE With Vocal Guide", - "id": "KyQ-Y5Mf1sQ" - }, - { - "title": "I Love It When We Do - Ronan Keating KARAOKE", - "id": "zwLxJuwGyZY" - }, - { - "title": "Love Me Not - Ravyn Lenae KARAOKE Without Backing Vocals", - "id": "y0-p4_LBPzQ" - }, - { - "title": "Love Me Not - Ravyn Lenae KARAOKE With Vocal Guide", - "id": "1RSvpM82Yd0" - }, - { - "title": "Dizzy - The Wonder Stuff and Vic Reeves KARAOKE Without Backing Vocals", - "id": "5Hyn0kNIYYE" - }, - { - "title": "Dizzy - The Wonder Stuff and Vic Reeves KARAOKE With Vocal Guide", - "id": "y5IY0V9W1zw" - }, - { - "title": "Acquiesce - Oasis KARAOKE", - "id": "GOQR-mN0iWM" - }, - { - "title": "Drugs I Like - Nate Band KARAOKE", - "id": "7yZkCs8tlLU" - }, - { - "title": "Baby Love - The Supremes KARAOKE Without Backing Vocals", - "id": "90uU8V5u5Z8" - }, - { - "title": "Baby Love - The Supremes KARAOKE With Vocal Guide", - "id": "csiv0XgmDR0" - }, - { - "title": "When I Lost You - Sarah Whatmore KARAOKE", - "id": "o-08Z8KD4iY" - }, - { - "title": "Colour Blind - Darius KARAOKE", - "id": "8cpxoxeDjhc" - }, - { - "title": "Drive - Ed Sheeran KARAOKE", - "id": "llNFDuXVaqQ" - }, - { - "title": "Tell It to My Heart - Kelly Llorenna KARAOKE", - "id": "-zuFQMZKwVA" - }, - { - "title": "Strange Relationship - Darren Hayes KARAOKE", - "id": "PuEfhdHJLEg" - }, - { - "title": "Round Round - Sugababes KARAOKE", - "id": "V_xuo9gb1og" - }, - { - "title": "Just Like A Pill - Pink KARAOKE", - "id": "7peKtPghtk0" - }, - { - "title": "The Riverboat Song - Ocean Colour Scene KARAOKE Without Backing Vocals", - "id": "_JMtXvH8SPU" - }, - { - "title": "The Riverboat Song - Ocean Colour Scene KARAOKE With Vocal Guide", - "id": "DMx7yztKXO8" - }, - { - "title": "Pearlโ€™s a Singer - Elkie Brooks KARAOKE Without Backing Vocals", - "id": "Vyy1QUdrmAg" - }, - { - "title": "Pearlโ€™s a Singer - Elkie Brooks KARAOKE With Vocal Guide", - "id": "NUxnWXkYpvE" - }, - { - "title": "Keep On Singin' My Song - Christina Aguilera KARAOKE Without Backing Vocals", - "id": "9eydhCffx9k" - }, - { - "title": "Keep On Singin' My Song - Christina Aguilera KARAOKE With Vocal Guide", - "id": "ypA3DDtCf1U" - }, - { - "title": "Survive - Lewis Capaldi KARAOKE", - "id": "KUOkcf25s78" - }, - { - "title": "Fast Cars and Superstars - Cristian Marchi Ft Reverend Haus KARAOKE Without Backing Vocals", - "id": "Zw8xGc9W0LY" - }, - { - "title": "Fast Cars and Superstars - Cristian Marchi Ft Reverend Haus KARAOKE With Vocal Guide", - "id": "SekfO_pYlVQ" - }, - { - "title": "Old Phone - Ed Sheeran KARAOKE Without Backing Vocals", - "id": "AyKK0WolMsA" - }, - { - "title": "Old Phone - Ed Sheeran KARAOKE With Vocal Guide", - "id": "t8dzW4xLOVA" - }, - { - "title": "I Will Always Love You - Dolly Parton KARAOKE Without Backing Vocals", - "id": "pX75Oqypobs" - }, - { - "title": "I Will Always Love You - Dolly Parton KARAOKE With Vocal Guide", - "id": "Yi5inzlWdj0" - }, - { - "title": "Walking On Sunshine - Katrina And The Waves KARAOKE Without Backing Vocals", - "id": "eDOLQMmnXa8" - }, - { - "title": "I Wanna Be like You - The Jungle Book KARAOKE Without Backing Vocals", - "id": "vgSDESW05Xo" - }, - { - "title": "I Wanna Be like You - The Jungle Book KARAOKE With Vocal Guide", - "id": "eineHXHmhaA" - }, - { - "title": "Impossible - Christina Aguilera ft Alicia Keys KARAOKE Without Backing Vocals", - "id": "DLClsWTlJUw" - }, - { - "title": "Impossible - Christina Aguilera ft Alicia Keys KARAOKE With Vocal Guide", - "id": "_cbaUXM72-Q" - }, - { - "title": "Wild Thing - The Troggs KARAOKE Without Backing Vocals", - "id": "a0HkCoFLn2Q" - }, - { - "title": "Wild Thing - The Troggs KARAOKE With Vocal Guide", - "id": "YxWWblxQtYg" - }, - { - "title": "Da Do Ron Ron - Crystals KARAOKE", - "id": "2NYW-P_2I0w" - }, - { - "title": "Walking Back To Happiness - Helen Shapiro KARAOKE Without Backing Vocals", - "id": "THUhT8I7eek" - }, - { - "title": "Walking Back To Happiness - Helen Shapiro KARAOKE With Vocal Guide", - "id": "QKdHVGWNB9o" - }, - { - "title": "Sue Me - Audrey Hobert KARAOKE", - "id": "7NYhn4iLgVY" - }, - { - "title": "Itโ€™s Not Unusual - Tom Jones KARAOKE Without Backing Vocals", - "id": "haCOuuHSzxc" - }, - { - "title": "Itโ€™s Not Unusual - Tom Jones KARAOKE With Vocal Guide", - "id": "Pjai-a-7fEQ" - }, - { - "title": "Walking On Sunshine - Katrina And The Waves KARAOKE With Vocal Guide", - "id": "3DC_PGLM4xA" - }, - { - "title": "TV Off - Kendrick Lamar KARAOKE Without Backing Vocals", - "id": "O4EaFg49Lvc" - }, - { - "title": "TV Off - Kendrick Lamar KARAOKE With Vocal Guide (Explicit)", - "id": "LvYJOcrRBXs" - }, - { - "title": "Saturday Night at the Movies - The Drifters KARAOKE Without Backing Vocals", - "id": "ZznfGLFW9jk" - }, - { - "title": "Saturday Night at the Movies - The Drifters KARAOKE With Vocal Guide", - "id": "bWs_IIIjl4I" - }, - { - "title": "Blue Strips - Jessie Murph KARAOKE Without Backing Vocals", - "id": "d7TO-8TEgy8" - }, - { - "title": "Blue Strips - Jessie Murph KARAOKE With Vocal Guide", - "id": "FByFbFycr3U" - }, - { - "title": "River Deep Mountain High - Tina Turner KARAOKE Without Backing Vocals", - "id": "hE-g1MzRpAs" - }, - { - "title": "River Deep Mountain High - Tina Turner KARAOKE With Vocal Guide", - "id": "KFFK2R8jTBI" - }, - { - "title": "Complicated - Avril Lavigne KARAOKE", - "id": "SpoS-Qdih1U" - }, - { - "title": "Underneath Your Clothes - Shakira KARAOKE", - "id": "IDKk6mYu9Ek" - }, - { - "title": "Let's Twist Again - Chubby Checker KARAOKE Without Backing Vocals", - "id": "QfAg1nxh0pg" - }, - { - "title": "Let's Twist Again - Chubby Checker KARAOKE With Vocal Guide", - "id": "HWvWFfr4PGY" - }, - { - "title": "My Boy Lollipop - Millie Small KARAOKE With Vocal Guide", - "id": "D_U-_g_C6aE" - }, - { - "title": "Livinโ€™ la vida loca - Ricky Martin KARAOKE Without Backing Vocals", - "id": "_8eV0yoTzR0" - }, - { - "title": "Livinโ€™ la vida loca - Ricky Martin KARAOKE With Vocal Guide", - "id": "SHiUf626VC0" - }, - { - "title": "Manchild - Sabrina Carpenter KARAOKE", - "id": "Zadjkp5ulfc" - }, - { - "title": "Sapphire - Ed Sheeran KARAOKE", - "id": "XICNGEJ5hn0" - }, - { - "title": "The Tide Is High - Atomic Kitten KARAOKE", - "id": "E7azo-K27TY" - }, - { - "title": "They Say Vision - Res KARAOKE Without Backing Vocals", - "id": "FYnVvTDVSZQ" - }, - { - "title": "They Say Vision - Res KARAOKE With Vocal Guide", - "id": "DUqsbK6rpu4" - }, - { - "title": "Like a Prayer - Mad House KARAOKE", - "id": "GuTb9UPCT2Q" - }, - { - "title": "In My Place - Coldplay KARAOKE", - "id": "GFu1lQ3JbM4" - }, - { - "title": "Down Boy - Holly Valance KARAOKE", - "id": "kOvUp26quHk" - }, - { - "title": "Headphones On - Addison Rae KARAOKE Without Backing Vocals", - "id": "9_Vfrw-L86Q" - }, - { - "title": "Headphones On - Addison Rae KARAOKE With Vocal Guide", - "id": "2RrG7Yh0uN0" - }, - { - "title": "The Beast In Me - Johnny Cash KARAOKE With Vocal Guide", - "id": "dOLQrefkOQg" - }, - { - "title": "The Beast In Me - Johnny Cash KARAOKE", - "id": "gS9RkQDkqUk" - }, - { - "title": "Glad All Over - The Dave Clark Five KARAOKE", - "id": "69baAjga1gw" - }, - { - "title": "Wig Wam Bam - Sweet KARAOKE", - "id": "xO_5jJxvrWU" - }, - { - "title": "Wherever You Will Go - The Calling KARAOKE", - "id": "7T3eBSVE3cI" - }, - { - "title": "Let's Dance - Chris Montez KARAOKE", - "id": "c6AjKXnWmRc" - }, - { - "title": "Shout - Lulu KARAOKE", - "id": "9pGYIAwwUg4" - }, - { - "title": "Shout - Lulu KARAOKE Without Backing Vocals", - "id": "7LtHw4xk7Vo" - }, - { - "title": "Shout - Lulu KARAOKE With Vocal Guide", - "id": "MuBjfY7CO14" - }, - { - "title": "Nice To Meet You - Myles Smith (KARAOKE) With Vocal Guide", - "id": "BPiJ4und9gc" - }, - { - "title": "Revolving Door - Tate McRae Karaoke Version Without Backing Vocals", - "id": "u4UO6EMhzgc" - }, - { - "title": "Revolving Door - Tate McRae Karaoke Version With Vocal Guide", - "id": "0794Okk8Cko" - }, - { - "title": "Spitting Off the Edge Of The World - Yeah Yeah Yeahs KARAOKE Without Backing Vocals", - "id": "F7VxpRTIp3U" - }, - { - "title": "Spitting Off the Edge Of The World - Yeah Yeah Yeahs Karaoke Version With Vocal Guide", - "id": "jWfSfSVWuwI" - }, - { - "title": "Starburster - Fontaines D.C. (KARAOKE) Without Backing Vocals", - "id": "gx2zjK7vbjs" - }, - { - "title": "Starburster - Fontaines D.C. (KARAOKE) With Vocal Guide", - "id": "w48jf2tlbiI" - }, - { - "title": "There She Goes - CYRIL, MOONLGHT, The La's KARAOKE", - "id": "1bPZrJdpfpA" - }, - { - "title": "Clichรฉ - mgk (Machine Gun Kelly) KARAOKE", - "id": "2CMiAMRC4WM" - }, - { - "title": "I Only Want To Be With You - Dusty Springfield KARAOKE With Vocal Guide", - "id": "1UqB9svDw0I" - }, - { - "title": "Night Fever - Bee Gees KARAOKE With Vocal Guide", - "id": "zXJV7--sci0" - }, - { - "title": "Nope Your Too Late I Already Died - Wifiskeleton KARAOKE Without Backing Vocals", - "id": "X2O42mBfMcc" - }, - { - "title": "Bloodline - Alex Warren and Jelly Roll KARAOKE", - "id": "b-HSeDA_Ac4" - }, - { - "title": "Tragedy - Steps (KARAOKE) With Vocal Guide", - "id": "AvRqCeIgkMM" - }, - { - "title": "Chain Reaction - Steps (KARAOKE) With Vocal Guide", - "id": "0GISAhd_2Yg" - }, - { - "title": "Pulling Mussels - Squeeze (KARAOKE) Without Backing Vocals", - "id": "V7zr7KzfMT0" - }, - { - "title": "Pulling Mussels - Squeeze (KARAOKE) With Vocal Guide", - "id": "EJRS8SR1UJo" - }, - { - "title": "Fields of Gold - Sting (KARAOKE) With Vocal Guide", - "id": "Ag0eBM8jbQk" - }, - { - "title": "Donโ€™t Stop Movinโ€™ - S Club 7 (KARAOKE) Without Backing Vocals", - "id": "Wz-jCwvmjN0" - }, - { - "title": "Donโ€™t Stop Movinโ€™ - S Club 7 (KARAOKE) With Vocal Guide", - "id": "AYrVgTq589k" - }, - { - "title": "Have You Ever - S Club 7 From Vocal Star Karaoke With Vocal Guide", - "id": "uYserpbtPTk" - }, - { - "title": "Reach - S Club 7 (KARAOKE) Without Backing Vocals", - "id": "-RvuBejP7Ws" - }, - { - "title": "Reach - S Club 7 (KARAOKE) With Vocal Guide", - "id": "H6pkZV119no" - }, - { - "title": "What Itโ€™s Like To Be Me - Britney Spears (KARAOKE) Without Backing Vocals", - "id": "me7bHT9OAco" - }, - { - "title": "What Itโ€™s Like To Be Me - Britney Spears (KARAOKE) With Vocal Guide", - "id": "drCtojdVgAg" - }, - { - "title": "Lonely - Britney Spears (KARAOKE) With Vocal Guide", - "id": "_W41l-CoB1s" - }, - { - "title": "Lonely - Britney Spears (KARAOKE) Without Backing Vocals", - "id": "k8vwsI55vmM" - }, - { - "title": "Cinderella - Britney Spears (KARAOKE) Without Backing Vocals", - "id": "3uZYrw4XlK4" - }, - { - "title": "Cinderella - Britney Spears (KARAOKE) With Vocal Guide", - "id": "Pg1Ih7Hnlgc" - }, - { - "title": "What I've Got In Mind - Billie Jo Spears (KARAOKE) Without Backing Vocals", - "id": "RFEz-H8v3uE" - }, - { - "title": "What I've Got In Mind - Billie Jo Spears (KARAOKE) With Vocal Guide", - "id": "Tn5EoKUa34o" - }, - { - "title": "Be My Baby - The Ronettes (KARAOKE) With Vocal Guide", - "id": "qiQC4Knkp5E" - }, - { - "title": "Just A Little Girl - Amy Studt (KARAOKE) Without Backing Vocals", - "id": "Cl2k6SQfWFM" - }, - { - "title": "Just A Little Girl - Amy Studt (KARAOKE) With Vocal Guide", - "id": "50nnqauQEk0" - }, - { - "title": "Be My Baby - The Ronettes (KARAOKE) Without Backing Vocals", - "id": "FTxTfZuulwM" - }, - { - "title": "Underneath It All - No Doubt Ft Lady Saw KARAOKE", - "id": "RI7wRbw5HYk" - }, - { - "title": "Nope Your Too Late I Already Died - Wifiskeleton KARAOKE", - "id": "CerVKXKXlLg" - }, - { - "title": "Don't Say You Love Me - Jin KARAOKE", - "id": "y4zQTZKSM8w" - }, - { - "title": "The Glen (Levi Heron Edit) - Beluga Lagoon KARAOKE", - "id": "nYhBrFuw2F4" - }, - { - "title": "(I Can't Get No) Satisfaction - The Rolling Stones KARAOKE", - "id": "Y33wDAKfBgY" - }, - { - "title": "Night Fever - Bee Gees KARAOKE", - "id": "3puJ4x0Qb00" - }, - { - "title": "The Loco-Motion - Little Eva KARAOKE", - "id": "rbeTaL4X0UM" - }, - { - "title": "Lipstick on Your Collar - Connie Francis KARAOKE", - "id": "jW2-TViNOhk" - }, - { - "title": "Hi Ho Silver Lining - Jeff Beck KARAOKE", - "id": "PH4wSC4Iclk" - }, - { - "title": "I Only Want To Be With You - Dusty Springfield KARAOKE", - "id": "kklQKjWzEvA" - }, - { - "title": "Hot Stuff - Donna Summer KARAOKE", - "id": "ftHFhDQqH2g" - }, - { - "title": "Gimme! Gimme! Gimme! - ABBA KARAOKE", - "id": "srR0mjrxcfE" - }, - { - "title": "We Are Family - Sister Sledge KARAOKE", - "id": "KrvfFcWGW-Y" - }, - { - "title": "What Was That - Lorde KARAOKE", - "id": "19RfXry3lWk" - }, - { - "title": "Do Wah Diddy Diddy - Manfred Mann KARAOKE", - "id": "RAAlW7C3cwQ" - }, - { - "title": "Love Me Not - Ravyn Lenae KARAOKE", - "id": "pgvM82G-TIY" - }, - { - "title": "Dizzy - The Wonder Stuff and Vic Reeves KARAOKE", - "id": "mm15ZBD06q0" - }, - { - "title": "Baby Love - The Supremes KARAOKE", - "id": "kGESbI3NbU0" - }, - { - "title": "The Riverboat Song - Ocean Colour Scene KARAOKE", - "id": "22spIWchwqY" - }, - { - "title": "Pearlโ€™s a Singer - Elkie Brooks KARAOKE", - "id": "OKRpguO0YFY" - }, - { - "title": "Keep On Singin' My Song - Christina Aguilera KARAOKE", - "id": "W1_nffC9A6w" - }, - { - "title": "Fast Cars and Superstars - Cristian Marchi Ft Reverend Haus KARAOKE", - "id": "ML-ZZfoNHtE" - }, - { - "title": "Old Phone - Ed Sheeran KARAOKE", - "id": "3-c2-4SBPio" - }, - { - "title": "Steve's Lava Chicken - Jack Black (Minecraft Movie) KARAOKE", - "id": "yP7boYrgCL0" - }, - { - "title": "Steve's Lava Chicken - Jack Black (Minecraft Movie) KARAOKE With Vocal Guide", - "id": "WOoljqkWMDQ" - }, - { - "title": "I Will Always Love You - Dolly Parton KARAOKE", - "id": "NxjF8Pk-fRs" - }, - { - "title": "I Wanna Be like You - The Jungle Book KARAOKE", - "id": "cZrAclLLPQc" - }, - { - "title": "Impossible - Christina Aguilera ft Alicia Keys KARAOKE", - "id": "Kxo19GYnQHY" - }, - { - "title": "Wild Thing - The Troggs KARAOKE", - "id": "KDA-sXP3jV8" - }, - { - "title": "Walking Back To Happiness - Helen Shapiro KARAOKE", - "id": "jqd-BhZSvAk" - }, - { - "title": "Itโ€™s Not Unusual - Tom Jones KARAOKE", - "id": "kv3DFKA3mAs" - }, - { - "title": "Walking On Sunshine - Katrina And The Waves KARAOKE", - "id": "6rAOHlmJdPQ" - }, - { - "title": "TV Off - Kendrick Lamar KARAOKE", - "id": "NZBYNN9Bm-E" - }, - { - "title": "Blue Strips - Jessie Murph KARAOKE", - "id": "wKzTpxUUoGE" - }, - { - "title": "Saturday Night at the Movies - The Drifters KARAOKE", - "id": "KlBPx-R9CiU" - }, - { - "title": "River Deep Mountain High - Tina Turner KARAOKE", - "id": "yTr3zoKNpg0" - }, - { - "title": "My Boy Lollipop - Millie Small KARAOKE", - "id": "-bFkNHhcqv4" - }, - { - "title": "Let's Twist Again - Chubby Checker KARAOKE", - "id": "iGyfipYC9E4" - }, - { - "title": "Livinโ€™ la vida loca - Ricky Martin KARAOKE", - "id": "HwJxO6Y5RaI" - }, - { - "title": "They Say Vision - Res KARAOKE", - "id": "uv-oTNVZ6iY" - }, - { - "title": "Headphones On - Addison Rae Karaoke", - "id": "PhrZLgSNN7c" - }, - { - "title": "Revolving Door - Tate McRae Karaoke Version With Lyrics", - "id": "AElnya2krt4" - }, - { - "title": "Spitting Off the Edge Of The World - Yeah Yeah Yeahs Karaoke Version With Lyrics", - "id": "2FMIiEjukdA" - }, - { - "title": "Nice To Meet You - Myles Smith Karaoke Version With Lyrics", - "id": "4ekv_G--gfE" - }, - { - "title": "Nice To Meet You - Myles Smith (KARAOKE)", - "id": "8n42Cx_Wrmw" - }, - { - "title": "Starburster - Fontaines D.C. (KARAOKE)", - "id": "Y1BB9fMfmFU" - }, - { - "title": "Fields of Gold - Sting (KARAOKE)", - "id": "QntiVyPzC30" - }, - { - "title": "Tragedy - Steps (KARAOKE)", - "id": "S8EUtgcVqdo" - }, - { - "title": "Chain Reaction - Steps (KARAOKE)", - "id": "0vHZJiebaW8" - }, - { - "title": "Pulling Mussels - Squeeze (KARAOKE)", - "id": "cBkNRnma00I" - }, - { - "title": "Donโ€™t Stop Movinโ€™ - S Club 7 (KARAOKE)", - "id": "ggiyUjMBK-k" - }, - { - "title": "Have You Ever - S Club 7 From Vocal Star Karaoke", - "id": "VxPqreh3svA" - }, - { - "title": "Reach - S Club 7 (KARAOKE)", - "id": "SUDF741YK2E" - }, - { - "title": "What Itโ€™s Like To Be Me - Britney Spears (KARAOKE)", - "id": "BTjtN-TKnRk" - }, - { - "title": "Lonely - Britney Spears (KARAOKE)", - "id": "NQSXqksTf9A" - }, - { - "title": "Cinderella - Britney Spears (KARAOKE)", - "id": "dlDWkdYltDk" - }, - { - "title": "What I've Got In Mind - Billie Jo Spears (KARAOKE)", - "id": "62l8fpHFLIA" - }, - { - "title": "Just A Little Girl - Amy Studt (KARAOKE)", - "id": "NgovMJcWUN4" - }, - { - "title": "Be My Baby - The Ronettes (KARAOKE)", - "id": "S6X4_B-6a-0" - }, - { - "title": "Ode to Dennis - Jack Black (KARAOKE)", - "id": "dCjFzEN4Tgk" - }, - { - "title": "Ode to Dennis - Jack Black (KARAOKE) With Vocal Guide", - "id": "LSbTgFxeMws" - }, - { - "title": "Pop Muzik (12 Inch Version)", - "id": "M And Nick Launey (KARAOKE) Without Backing Vocals" - }, - { - "title": "Pop Muzik (12 Inch Version)", - "id": "M And Nick Launey (KARAOKE)" - }, - { - "title": "Pop Muzik (12 Inch Version)", - "id": "M And Nick Launey (KARAOKE) With Vocal Guide" - }, - { - "title": "You Will Be Okay (Stolas' Lullaby) - Sam Haft (KARAOKE) Without Backing Vocals", - "id": "hshYM8iZRO4" - }, - { - "title": "You Will Be Okay (Stolas' Lullaby) - Sam Haft (KARAOKE)", - "id": "pwOXIBHT1Cg" - }, - { - "title": "You Will Be Okay (Stolas' Lullaby) - Sam Haft (KARAOKE) With Vocal Guide", - "id": "A09AevqESLY" - }, - { - "title": "Twilight Zone - Ariana Grande (KARAOKE) Without Backing Vocals", - "id": "ai0sAjXCla8" - }, - { - "title": "Twilight Zone - Ariana Grande (KARAOKE)", - "id": "6f_3nuZf59U" - }, - { - "title": "Twilight Zone - Ariana Grande (KARAOKE) With Vocal Guide", - "id": "2MKXX5sLsVg" - }, - { - "title": "LV Bag - Don Toliver, Speedy ft. J-Hope (KARAOKE) Without Backing Vocals", - "id": "OKIMHM5wnho" - }, - { - "title": "LV Bag - Don Toliver, Speedy ft. J-Hope (KARAOKE)", - "id": "_WL0FDxZ970" - }, - { - "title": "LV Bag - Don Toliver, Speedy ft. J-Hope (KARAOKE With Vocal Guide)", - "id": "IdSMm49gn-M" - }, - { - "title": "I Might Brake, But I Won't - Thrilliam Angels Karaoke Version (Without Backing Vocals)", - "id": "UMkZKMoURbA" - }, - { - "title": "I Might Brake, But I Won't - Thrilliam Angels Karaoke Version", - "id": "BkQ_iz7jydA" - }, - { - "title": "I Might Brake, But I Won't - Thrilliam Angels Karaoke Version (With Vocal Guide)", - "id": "E0WyL2nE9Nc" - }, - { - "title": "Ordinary - Alex Warren Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "e2RrAao0VuQ" - }, - { - "title": "Ordinary - Alex Warren Karaoke Version From Vocal Star Karaoke", - "id": "ysetvPNKGQU" - }, - { - "title": "Ordinary - Alex Warren Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "sS1m8ja8cwM" - }, - { - "title": "Lola - The Kinks Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "sqj0M4xTvIQ" - }, - { - "title": "Lola - The Kinks Karaoke Version From Vocal Star Karaoke", - "id": "dQTSvoixLwg" - }, - { - "title": "Lola - The Kinks Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "HwA834RsIt4" - }, - { - "title": "Azizam - Ed Sheeran Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "r5l6G3znMSY" - }, - { - "title": "Azizam - Ed Sheeran Karaoke Version From Vocal Star Karaoke", - "id": "gLs-iRx6i24" - }, - { - "title": "Azizam - Ed Sheeran Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "56HvDqxbfuo" - }, - { - "title": "Who Are You - Saga Faye Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "rX4V86DqnRA" - }, - { - "title": "Who Are You - Saga Faye Karaoke Version From Vocal Star Karaoke", - "id": "k5G-vR9AwRc" - }, - { - "title": "Who Are You - Saga Faye Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "8GQFDxFmiUo" - }, - { - "title": "Shine - Mondo Cozmo Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "2byKQbA89IE" - }, - { - "title": "Shine - Mondo Cozmo Karaoke Version From Vocal Star Karaoke", - "id": "yZlW6M6SSJU" - }, - { - "title": "Shine - Mondo Cozmo Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "DE4768KJN6o" - }, - { - "title": "The Line - Twenty One Pilots Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "mY8dDW5mp_I" - }, - { - "title": "The Line - Twenty One Pilots Karaoke Version From Vocal Star Karaoke", - "id": "i7MtzhoW-iM" - }, - { - "title": "The Line - Twenty One Pilots Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "_WUQWHWhfQI" - }, - { - "title": "I'm A Little Crazy - Morgan Wallen Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "rnn2ZRp9GeU" - }, - { - "title": "I'm A Little Crazy - Morgan Wallen Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "hKyZGcTSRxw" - }, - { - "title": "Love Hangover - JENNIE and Dominic Fike Karaoke Version Vocal Star Karaoke (Without Backing Vocals)", - "id": "-GF_YJuYGrQ" - }, - { - "title": "Still Bad - Lizzo Karaoke Version From Vocal Star Karaoke Without Backing Vocals (Explicit Lyrics)", - "id": "MOAla6rNT8s" - }, - { - "title": "I'm A Little Crazy - Morgan Wallen Karaoke Version From Vocal Star Karaoke", - "id": "hr8a99KjyAU" - }, - { - "title": "Hostile Government Takeover - AGiftFromTodd and Vinny Marchi Karaoke (Without Backing Vocals)", - "id": "j8KBX3TKWkY" - }, - { - "title": "Love Hangover - JENNIE and Dominic Fike Karaoke Version From Vocal Star Karaoke (Lyric Video)", - "id": "FaY9H9Rlvsg" - }, - { - "title": "Love Hangover - JENNIE and Dominic Fike Karaoke Version From Vocal Star Karaoke", - "id": "h14lyOg7ol0" - }, - { - "title": "Hostile Government Takeover - AGiftFromTodd and Vinny Marchi Karaoke Version (With Vocal Guide)", - "id": "YOf8o0fbiFY" - }, - { - "title": "Still Bad - Lizzo Karaoke Version From Vocal Star Karaoke (Explicit Lyrics)", - "id": "ROIGJ4rYtl8" - }, - { - "title": "Hostile Government Takeover - AGiftFromTodd and Vinny Marchi Karaoke Version From Vocal Star Karaoke", - "id": "oecpTtFod3A" - }, - { - "title": "Still Bad - Lizzo Karaoke Version From Vocal Star Karaoke (With Explicit Vocal Guide)", - "id": "2gTI6z8duJI" - }, - { - "title": "Got That Good (My Bubble Gum) - Rasheeda Karaoke Version Vocal Star Karaoke (Without Backing Vocals)", - "id": "nLTRdp6u92g" - }, - { - "title": "Still Bad - Lizzo Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "mOA4_HT0WUs" - }, - { - "title": "Got That Good (My Bubble Gum) - Rasheeda Karaoke Version From Vocal Star Karaoke", - "id": "k9LtDwQ9HS8" - }, - { - "title": "Still Bad - Lizzo Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "xqC4Z-FL7Rs" - }, - { - "title": "Proud Mary - Tina Turner Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "vuGTy6KgdqE" - }, - { - "title": "Still Bad - Lizzo Karaoke Version From Vocal Star Karaoke", - "id": "FbO8X7FH9B0" - }, - { - "title": "Proud Mary - Tina Turner Karaoke Version From Vocal Star Karaoke", - "id": "2A4GZX3qfP8" - }, - { - "title": "Fly Me To The Moon (Squid Game) - Joo Won Karaoke Version (Without Backing Vocals)", - "id": "qMPLRmr1fTY" - }, - { - "title": "Fly Me To The Moon (Squid Game) - Joo Won Karaoke Version From Vocal Star Karaoke", - "id": "6obX6GQ0aJ0" - }, - { - "title": "Fly Me To The Moon (Squid Game) - Joo Won Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "ED69IaIY1cs" - }, - { - "title": "ExtraL - JENNIE and Doechii Karaoke Version (Without Backing Vocals) Explicit Lyrics", - "id": "bxZcpZrK0RE" - }, - { - "title": "ExtraL - JENNIE and Doechii Karaoke Version From Vocal Star Karaoke (Explicit)", - "id": "kvAj5afX-nw" - }, - { - "title": "ExtraL - JENNIE and Doechii Karaoke Version From Vocal Star Karaoke (With Explicit Vocal Guide)", - "id": "mB9pZaToruk" - }, - { - "title": "Luther", - "id": "Kendrick Lamar, SZA Karaoke Version From Vocal Star Karaoke (With Female Vocal Guide)" - }, - { - "title": "Luther", - "id": "Kendrick Lamar, SZA Karaoke Version From Vocal Star Karaoke (With Male Vocal Guide)" - }, - { - "title": "Luther", - "id": "Kendrick Lamar, SZA Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Luther", - "id": "Kendrick Lamar, SZA Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Luther", - "id": "Kendrick Lamar, SZA Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Please Please Please", - "id": "Sabrina Carpenter ft. Dolly Parton Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Please Please Please", - "id": "Sabrina Carpenter ft. Dolly Parton Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Please Please Please", - "id": "Sabrina Carpenter ft. Dolly Parton Karaoke Version (With Vocal Guide)" - }, - { - "title": "Can I Come Home", - "id": "Highasakite Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Can I Come Home", - "id": "Highasakite Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Can I Come Home", - "id": "Highasakite Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Call Me When You Break Up", - "id": "Selena Gomez, B Blanco, Gracie Abrams Karaoke (Without Backing Vocals)" - }, - { - "title": "Call Me When You Break Up", - "id": "Selena Gomez, Benny Blanco, Gracie Abrams Karaoke Version" - }, - { - "title": "Call Me When You Break Up", - "id": "Selena Gomez, Benny Blanco, Gracie Abrams Karaoke (With Vocal Guide)" - }, - { - "title": "Born Again", - "id": "LISA ft. Doja Cat and RAYE Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Born Again", - "id": "LISA ft. Doja Cat and RAYE Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Born Again", - "id": "LISA ft. Doja Cat and RAYE Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Sports Car", - "id": "Tate McRae Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Sports Car", - "id": "Tate McRae Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Sports Car", - "id": "Tate McRae Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Just In Case", - "id": "Morgan Wallen Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Just In Case", - "id": "Morgan Wallen Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "I Feel Alive", - "id": "Jack Black Minecraft Movie Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "I Feel Alive", - "id": "Jack Black Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "I Feel Alive", - "id": "Jack Black (Minecraft Movie) Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "7/11", - "id": "Beyonce Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "7/11", - "id": "Beyonce Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "7/11", - "id": "Beyonce Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "1 AM", - "id": "Civ Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "1 AM", - "id": "Civ Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "1 AM", - "id": "Civ Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Busy Woman", - "id": "Sabrina Carpenter Karaoke Version (Explicit Version Without Backing Vocals)" - }, - { - "title": "Busy Woman", - "id": "Sabrina Carpenter Karaoke Version From Vocal Star Karaoke (Explicit Version)" - }, - { - "title": "Busy Woman", - "id": "Sabrina Carpenter Karaoke Version From Vocal Star Karaoke (With Explicit Vocal Guide)" - }, - { - "title": "Busy Woman", - "id": "Sabrina Carpenter Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Busy Woman", - "id": "Sabrina Carpenter Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Busy Woman", - "id": "Sabrina Carpenter Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Build Me Up Buttercup", - "id": "The Foundations Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Build Me Up Buttercup", - "id": "The Foundations Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Try a Little Tenderness", - "id": "The Commitments Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Try a Little Tenderness", - "id": "The Commitments Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Try a Little Tenderness", - "id": "The Commitments Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Mustang Sally", - "id": "The Commitments Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Mustang Sally", - "id": "The Commitments Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Mustang Sally", - "id": "The Commitments Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "I Started A Joke", - "id": "Bee Gees Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "I Started A Joke", - "id": "Bee Gees Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "I Started A Joke", - "id": "Bee Gees Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Iโ€™ll Sail This Ship Alone", - "id": "The Beautiful South Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Iโ€™ll Sail This Ship Alone", - "id": "The Beautiful South Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Iโ€™ll Sail This Ship Alone", - "id": "The Beautiful South Karaoke Version By Vocal Star Karaoke (Vocal Guide)" - }, - { - "title": "The Giver", - "id": "Chappell Roan Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Prettiest Eyes", - "id": "The Beautiful South Karaoke Version (Without Backing Vocals) By Vocal Star Karaoke" - }, - { - "title": "Prettiest Eyes", - "id": "The Beautiful South Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Prettiest Eyes", - "id": "The Beautiful South Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "A Little Time", - "id": "The Beautiful South Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "A Little Time", - "id": "The Beautiful South Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "The Long and Winding Road", - "id": "The Beatles Karaoke Version Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "The Long and Winding Road", - "id": "The Beatles Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "The Long and Winding Road", - "id": "The Beatles Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Eight Days A Week", - "id": "The Beatles Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Eight Days A Week", - "id": "The Beatles Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Eight Days A Week", - "id": "The Beatles Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "I Am A Rock", - "id": "Simon & Garfunkel Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "I Am A Rock", - "id": "Simon & Garfunkel Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "I Am A Rock", - "id": "Simon & Garfunkel Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "New Direction", - "id": "S Club 8 Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "New Direction", - "id": "S Club 8 Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "New Direction", - "id": "S Club 8 Karaoke Version From Vocal Star Karaoke (Wtih Vocal Guide)" - }, - { - "title": "Anxiety", - "id": "Doechii Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "The Killing of Georgie", - "id": "Rod Stewart Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "The Killing of Georgie", - "id": "Rod Stewart Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Where Do You Go to My Lovely", - "id": "Peter Sarstedt Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Where Do You Go to My Lovely", - "id": "Peter Sarstedt Karaoke Version (With Vocal Guide)" - }, - { - "title": "Feeling Good", - "id": "Nina Simone Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Feeling Good", - "id": "Nina Simone Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "So Strong", - "id": "Labi Siffre Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Something Inside So Strong", - "id": "Labi Siffre Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Something Inside So Strong", - "id": "Labi Siffre Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Waiting On A Wish", - "id": "Rachel Zegler Disney's Snow White Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "What's It Gonna Be", - "id": "Jessica Simpson Karaoke Version By Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "What's It Gonna Be", - "id": "Jessica Simpson Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "What's It Gonna Be", - "id": "Jessica Simpson Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "There You Were", - "id": "Jessica Simpson Duet Karaoke Version By Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "There You Were", - "id": "Jessica Simpson Duet Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "There You Were", - "id": "Jessica Simpson Duet Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Forever in Your Eyes", - "id": "Jessica Simpson Karaoke Version By Vocal Star Karaoke Without Backing Vocals" - }, - { - "title": "Forever in Your Eyes", - "id": "Jessica Simpson Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Forever in Your Eyes", - "id": "Jessica Simpson Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Baker Street", - "id": "Gerry Rafferty Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Baker Street", - "id": "Gerry Rafferty Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Baker Street", - "id": "Gerry Rafferty Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Iโ€™m Not a Girl Not Yet a Woman", - "id": "Britney Spears Karaoke Version By Vocal Star Without Backing Vocals" - }, - { - "title": "Iโ€™m Not a Girl, Not Yet a Woman", - "id": "Britney Spears Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Iโ€™m Not a Girl, Not Yet a Woman", - "id": "Britney Spears Karaoke Version From Vocal Star (With Vocal Guide)" - }, - { - "title": "Luther", - "id": "Kendrick Lamar Ft SZA Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Hazard", - "id": "Richard Marx Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Hazard", - "id": "Richard Marx Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Hazard", - "id": "Richard Marx Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Addicted to Bass", - "id": "Puretone Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)" - }, - { - "title": "Addicted to Bass", - "id": "Puretone Karaoke Version From Vocal Star Karaoke" - }, - { - "title": "Addicted to Bass", - "id": "Puretone Karaoke Version From Vocal Star Karaoke (With Vocal Guide)" - }, - { - "title": "Baila Casanova - Paulina Rubio - Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "FupIXtMuWVk" - }, - { - "title": "Baila Casanova - Paulina Rubio - Karaoke Version From Vocal Star Karaoke", - "id": "82-CamENInc" - }, - { - "title": "Baila Casanova - Paulina Rubio - Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "RaOqzfEEgU0" - }, - { - "title": "Fire - Paulina Rub - Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "6ZwM4EoZRXI" - }, - { - "title": "Fire - Paulina Rub - Karaoke Version From Vocal Star Karaoke", - "id": "p-5nkICtKM8" - }, - { - "title": "Fire - Paulina Rub - Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "fG4_GPknfA0" - }, - { - "title": "Ours - Sugar Ray - Karaoke Version From Vocal Star Karaoke (Without Backing Vocals)", - "id": "wz-NGgXpZbA" - }, - { - "title": "Ours - Sugar Ray - Karaoke Version From Vocal Star Karaoke", - "id": "M3Hlpu0-4po" - }, - { - "title": "Ours - Sugar Ray - Karaoke Version From Vocal Star Karaoke (With Vocal Guide)", - "id": "X-vVPimvrDo" - }, - { - "title": "When You Told Me You Loved Me Karaoke Version - Jessica Simpson Vocal Star (Without Backing Vocals)", - "id": "CnVGAV0vZFo" - }, - { - "title": "When You Told Me You Loved Me Karaoke Version - Jessica Simpson Vocal Star Karaoke", - "id": "nBjo67LBMis" - }, - { - "title": "When You Told Me You Loved Me Karaoke Version - Jessica Simpson Vocal Star Karaoke With Vocal Guide", - "id": "GCrOyl6qS20" - }, - { - "title": "Written on My Heart Karaoke Version - Plus One From Vocal Star Karaoke (Without Backing Vocals)", - "id": "7FPMwSUO5Dk" - }, - { - "title": "Written on My Heart Karaoke Version - Plus One From Vocal Star Karaoke", - "id": "a7V17l5IuDY" - }, - { - "title": "Written on My Heart Karaoke Version - Plus One From Vocal Star Karaoke (With Vocal Guide)", - "id": "QA1y7E44qR0" - }, - { - "title": "Don't Let Me Get Me Karaoke Version - Pink From Vocal Star Karaoke (Without Backing Vocals)", - "id": "6JpjkQZyGSE" - }, - { - "title": "Don't Let Me Get Me Karaoke Version - Pink From Vocal Star Karaoke", - "id": "eKMTIq81pQ8" - }, - { - "title": "Don't Let Me Get Me Karaoke Version - Pink From Vocal Star Karaoke (With Vocal Guide)", - "id": "8L9yxlrLMvs" - }, - { - "title": "Alex Warren - Ordinary Karaoke Version From Vocal Star Karaoke", - "id": "QgjqJYcF4hY" - }, - { - "title": "Some Might Say Karaoke Version - Oasis From Vocal Star Karaoke (Without Backing Vocals) Instrumental", - "id": "RqR44etZ06Q" - }, - { - "title": "Some Might Say Karaoke Version - Oasis From Vocal Star Karaoke", - "id": "iL-xeDuXcgY" - }, - { - "title": "Some Might Say Karaoke Version - Oasis From Vocal Star Karaoke (With Vocal Guide)", - "id": "Att8Ld4uMXI" - }, - { - "title": "Little by Little Karaoke Version - Oasis From Vocal Star Karaoke", - "id": "bWDOkM6Mcns" - }, - { - "title": "Little by Little Karaoke Version - Oasis From Vocal Star Karaoke (With Vocal Guide)", - "id": "EiLXerKNJkE" - }, - { - "title": "Don't Look Back In Anger Karaoke Version - Oasis From Vocal Star Karaoke", - "id": "1OSMYHbX7z8" - }, - { - "title": "Don't Look Back In Anger Karaoke Version - Oasis From Vocal Star Karaoke (With Vocal Guide)", - "id": "P8ZEC2QiBUo" - }, - { - "title": "Rescue Karaoke Version - Newsboys From Vocal Star Karaoke (Without Backing Vocals)", - "id": "MaoLKgd3F84" - }, - { - "title": "Rescue Karaoke Version - Newsboys From Vocal Star Karaoke", - "id": "fOdo4dYtxB0" - }, - { - "title": "Rescue Karaoke Version - Newsboys From Vocal Star Karaoke (With Vocal Guide)", - "id": "4cwaOHqElz0" - }, - { - "title": "Million Pieces Karaoke", - "id": "Newsboys Karaoke Instrumental (Without Backing Vocals)" - }, - { - "title": "Million Pieces Karaoke", - "id": "Newsboys Karaoke Version" - }, - { - "title": "Million Pieces Karaoke", - "id": "Newsboys Karaoke Version (With Vocal Guide)" - }, - { - "title": "It Is You Karaoke", - "id": "Newsboys Instrumental (Without Backing Vocals)" - }, - { - "title": "It Is You Karaoke", - "id": "Newsboys Karaoke Version" - }, - { - "title": "It Is You Karaoke", - "id": "Newsboys Karaoke Version (With Vocal Guide)" - }, - { - "title": "Pink Pony Club Karaoke", - "id": "Chappell Roan Karaoke Version" - }, - { - "title": "24 Hours From Tulsa Karaoke", - "id": "Gene Pitney Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "24 Hours From Tulsa Karaoke", - "id": "Gene Pitney Karaoke Version" - }, - { - "title": "24 Hours From Tulsa Karaoke", - "id": "Gene Pitney Karaoke Version (With Vocal Guide)" - }, - { - "title": "I Just Can't Help Believin Karaoke", - "id": "Elvis Presley Karaoke Instrumental (Without Backing Vocals)" - }, - { - "title": "I Just Can't Help Believin Karaoke", - "id": "Elvis Presley Karaoke Version" - }, - { - "title": "I Just Can't Help Believin Karaoke", - "id": "Elvis Presley Karaoke Version (With Vocal Guide)" - }, - { - "title": "Jolene Karaoke", - "id": "Dolly Parton Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Jolene Karaoke", - "id": "Dolly Parton Karaoke Version" - }, - { - "title": "Knockin' on Heaven's Door Karaoke", - "id": "Guns N' Roses Karaoke Version (Without Lead Guitar)" - }, - { - "title": "Knockin' on Heaven's Door Karaoke", - "id": "Guns N' Roses Karaoke Version" - }, - { - "title": "Jolene Karaoke", - "id": "Dolly Parton Karaoke Version (With Vocal Guide)" - }, - { - "title": "Knockin' on Heaven's Door Karaoke", - "id": "Guns N' Roses Karaoke Instrumental (Without Backing Vocals)" - }, - { - "title": "Knockin' on Heaven's Door Karaoke", - "id": "Guns N' Roses Karaoke Version (With Vocal Guide)" - }, - { - "title": "Kiss Kiss Karaoke", - "id": "Holly Valance Karaoke Version" - }, - { - "title": "Kiss Kiss Karaoke", - "id": "Holly Valance Karaoke Version (With Vocal Guide)" - }, - { - "title": "Fast Car Karaoke", - "id": "Tracy Chapman Karaoke Version" - }, - { - "title": "Fast Car Karaoke", - "id": "Tracy Chapman Karaoke Version (With Vocal Guide)" - }, - { - "title": "Take Me Home Karaoke", - "id": "Sophie Ellis Bextor Karaoke Version" - }, - { - "title": "Take Me Home Karaoke", - "id": "Sophie Ellis Bextor Karaoke Version (With Vocal Guide)" - }, - { - "title": "Cupid Karaoke", - "id": "Sam Cooke Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Cupid Karaoke", - "id": "Sam Cooke Karaoke Version" - }, - { - "title": "Cupid Karaoke", - "id": "Sam Cooke Karaoke Version (With Vocal Guide)" - }, - { - "title": "Stop Karaoke", - "id": "Sam Brown Karaoke Version" - }, - { - "title": "Stop Karaoke", - "id": "Sam Brown Karaoke Version (With Vocal Guide)" - }, - { - "title": "The Son of Hickory Holler's Tramp Karaoke", - "id": "O.C. Smith Karaoke Version (Without Backing Vocals)" - }, - { - "title": "The Son of Hickory Holler's Tramp Karaoke", - "id": "O.C. Smith Karaoke Version (With Vocal Guide)" - }, - { - "title": "Cherish Karaoke", - "id": "Kool & The Gang Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Cherish Karaoke", - "id": "Kool & The Gang Karaoke Version" - }, - { - "title": "Cherish Karaoke", - "id": "Kool & The Gang Karaoke Version (With Vocal Guide)" - }, - { - "title": "Busy Woman Karaoke", - "id": "Sabrina Carpenter Karaoke Version" - }, - { - "title": "Master Of The House Karaoke", - "id": "Les Misรฉrables Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Master Of The House Karaoke", - "id": "Les Misรฉrables Karaoke Version" - }, - { - "title": "Master Of The House Karaoke", - "id": "Les Misรฉrables Karaoke Version (With Vocal Guide)" - }, - { - "title": "Life Goes On Karaoke", - "id": "LeAnn Rimes Karaoke Version" - }, - { - "title": "Cry Me a River Karaoke", - "id": "Julie London Karaoke Version" - }, - { - "title": "Cry Me a River Karaoke", - "id": "Julie London Karaoke Version (With Vocal Guide)" - }, - { - "title": "Angel of the Morning Karaoke", - "id": "Juice Newton Karaoke Version" - }, - { - "title": "Angel of the Morning Karaoke", - "id": "Juice Newton Karaoke Version (With Vocal Guide)" - }, - { - "title": "Imagine Karaoke", - "id": "John Lennon Karaoke Version" - }, - { - "title": "Imagine Karaoke", - "id": "John Lennon Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Imagine Karaoke", - "id": "John Lennon Karaoke Version (With Vocal Guide)" - }, - { - "title": "The Day the Rains Came Karaoke", - "id": "Jane Morgan Karaoke Version" - }, - { - "title": "The Day the Rains Came Karaoke", - "id": "Jane Morgan Karaoke Version (With Vocal Guide)" - }, - { - "title": "If Tomorrow Never Comes Karaoke", - "id": "Ronan Keating Karaoke Version" - }, - { - "title": "If Tomorrow Never Comes Karaoke", - "id": "Ronan Keating Karaoke Version (With Vocal Guide)" - }, - { - "title": "Don't Know Why Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "Don't Know Why Karaoke", - "id": "Norah Jones Karaoke Version (With Vocal Guide)" - }, - { - "title": "Just A Little Karaoke", - "id": "Liberty X Karaoke Version" - }, - { - "title": "Just A Little Karaoke", - "id": "Liberty X Karaoke Version (With Vocal Guide)" - }, - { - "title": "I Dreamed A Dream Karaoke", - "id": "Les Misรฉrables Karaoke Version" - }, - { - "title": "I Dreamed A Dream Karaoke", - "id": "Les Misรฉrables Karaoke Version (With Vocal Guide)" - }, - { - "title": "Sumpa So (I Swear) Karaoke", - "id": "Quamo Karaoke Version (With Vocal Guide)" - }, - { - "title": "Upang Muli Ay Magmahal Karaoke", - "id": "Roselle Nava Karaoke Version" - }, - { - "title": "Upang Muli Ay Magmahal Karaoke", - "id": "Roselle Nava Karaoke Version (With Vocal Guide)" - }, - { - "title": "On My Own Karaoke", - "id": "Les Misรฉrables Karaoke Version" - }, - { - "title": "On My Own Karaoke", - "id": "Les Misรฉrables Karaoke Version (With Vocal Guide)" - }, - { - "title": "Life Goes On Karaoke", - "id": "LeAnn Rimes Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Life Goes On Karaoke", - "id": "LeAnn Rimes Karaoke Version (With Vocal Guide)" - }, - { - "title": "Something Karaoke", - "id": "Lasgo Karaoke Version" - }, - { - "title": "All That Jazz Karaoke", - "id": "Liza Minnelli Karaoke Instrumental (Without Backing Vocals)" - }, - { - "title": "All That Jazz Karaoke", - "id": "Liza Minnelli Karaoke Version" - }, - { - "title": "All That Jazz Karaoke", - "id": "Liza Minnelli Karaoke Version (With Vocal Guide)" - }, - { - "title": "Something Karaoke", - "id": "Lasgo Karaoke Version (With Vocal Guide)" - }, - { - "title": "Youโ€™re Nobody โ€™til Somebody Loves You Karaoke", - "id": "Dean Martin Karaoke Version" - }, - { - "title": "Youโ€™re Nobody โ€™til Somebody Loves You Karaoke", - "id": "Dean Martin Karaoke Version (With Vocal Guide)" - }, - { - "title": "Volare Karaoke", - "id": "Dean Martin Karaoke Version" - }, - { - "title": "Volare Karaoke", - "id": "Dean Martin Karaoke Version (With Vocal Guide)" - }, - { - "title": "Call Me, Beep Me! Karaoke", - "id": "Christina Milian Karaoke Version" - }, - { - "title": "Call Me, Beep Me! Karaoke", - "id": "Christina Milian Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Call Me, Beep Me! Karaoke", - "id": "Christina Milian Karaoke Version (With Vocal Guide)" - }, - { - "title": "The Rose Karaoke", - "id": "Bette Midler Karaoke Version" - }, - { - "title": "The Rose Karaoke", - "id": "Bette Midler Instrumental (Without Backing Vocals)" - }, - { - "title": "The Rose Karaoke", - "id": "Bette Midler Karaoke Version (With Vocal Guide)" - }, - { - "title": "Half Horse Half Man Karaoke", - "id": "OCT Karaoke Version" - }, - { - "title": "Stuff Like That There Karaoke", - "id": "Kelly Clarkson Karaoke Version" - }, - { - "title": "Stuff Like That There Karaoke", - "id": "Kelly Clarkson Karaoke Version (With Vocal Guide)" - }, - { - "title": "That Ole Devil Called Love Karaoke", - "id": "Alison Moyet Instrumental Version" - }, - { - "title": "That Ole Devil Called Love Karaoke", - "id": "Alison Moyet Karaoke Version (With Vocal Guide)" - }, - { - "title": "The Living Years Karaoke", - "id": "Mike & The Mechanics Karaoke Version (Without Backing Vocal) Instrumental" - }, - { - "title": "The Living Years Karaoke", - "id": "Mike & The Mechanics Karaoke Version" - }, - { - "title": "The Living Years Karaoke", - "id": "Mike & The Mechanics Karaoke Version (With Vocal Guide)" - }, - { - "title": "Baby Come On Over Karaoke", - "id": "Samantha Mumba Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Baby Come On Over Karaoke", - "id": "Samantha Mumba Karaoke Version" - }, - { - "title": "Baby Come On Over Karaoke", - "id": "Samantha Mumba Karaoke Version (With Vocal Guide)" - }, - { - "title": "Talk About It Karaoke", - "id": "Nicole C. Mullen Karaoke Version" - }, - { - "title": "Talk About It Karaoke", - "id": "Nicole C. Mullen Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Talk About It Karaoke", - "id": "Nicole C. Mullen Karaoke Version (With Vocal Guide)" - }, - { - "title": "Take Good Care of My Baby Karaoke", - "id": "Bobby Vee Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Nights In White Satin Karaoke", - "id": "The Moody Blues Karaoke Version" - }, - { - "title": "Nights In White Satin Karaoke", - "id": "The Moody Blues Karaoke Version (With Vocal Guide)" - }, - { - "title": "We Are All Made of Stars Karaoke", - "id": "Moby Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "We Are All Made of Stars Karaoke", - "id": "Moby Karaoke Version" - }, - { - "title": "We Are All Made of Stars Karaoke", - "id": "Moby Karaoke Version (With Vocal Guide)" - }, - { - "title": "Iโ€™d Do Anything for Love (But I Wonโ€™t Do That) Karaoke", - "id": "Meat Loaf Karaoke Version" - }, - { - "title": "Iโ€™d Do Anything for Love (But I Wonโ€™t Do That Karaoke", - "id": "Meat Loaf Karaoke Version (With Vocal Guide)" - }, - { - "title": "Abracadabra Karaoke", - "id": "Lady Gaga Karaoke Version" - }, - { - "title": "You Took The Words Right Out Of My Mouth Karaoke", - "id": "Meat Loaf Karaoke Version, Without Backing Vocals" - }, - { - "title": "You Took The Words Right Out Of My Mouth Karaoke", - "id": "Meat Loaf Karaoke Version" - }, - { - "title": "You Took The Words Right Out Of My Mouth Karaoke", - "id": "Meat Loaf Karaoke Version (With Vocal Guide)" - }, - { - "title": "Killing Me Softly Karaoke", - "id": "Roberta Flack Karaoke Version" - }, - { - "title": "Killing Me Softly Karaoke", - "id": "Roberta Flack Karaoke Version (With Vocal Guide)" - }, - { - "title": "Itโ€™s Impossible Karaoke", - "id": "Perry Como Karaoke Version" - }, - { - "title": "Itโ€™s Impossible Karaoke", - "id": "Perry Como Karaoke Version (With Vocal Guide)" - }, - { - "title": "Hero Karaoke", - "id": "Mariah Carey Karaoke Version" - }, - { - "title": "Hero Karaoke", - "id": "Mariah Carey Karaoke Version (With Vocal Guide)" - }, - { - "title": "Concrete Love Karaoke", - "id": "Julia Fordham Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Concrete Love Karaoke", - "id": "Julia Fordham Karaoke Version" - }, - { - "title": "Concrete Love Karaoke", - "id": "Julia Fordham Karaoke Version (With Vocal Guide)" - }, - { - "title": "The Power Of Love Karaoke", - "id": "Celine Dion Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "The Power Of Love Karaoke", - "id": "Celine Dion Karaoke Version" - }, - { - "title": "The Power Of Love Karaoke", - "id": "Celine Dion Karaoke Version (With Vocal Guide)" - }, - { - "title": "My First My Last My Everything Karaoke", - "id": "Barry White Karaoke Version No Backing Vocals Instrumental" - }, - { - "title": "My First, My Last, My Everything Karaoke", - "id": "Barry White Karaoke Version" - }, - { - "title": "My First, My Last, My Everything Karaoke", - "id": "Barry White Karaoke Version (With Vocal Guide)" - }, - { - "title": "Can't Stay Away From You Karaoke", - "id": "Gloria Estefan Karaoke Version" - }, - { - "title": "Can't Stay Away From You Karaoke", - "id": "Gloria Estefan Karaoke Version (With Vocal Guide)" - }, - { - "title": "Donโ€™t Wanna Lose You Karaoke", - "id": "Gloria Estefan Karaoke Version" - }, - { - "title": "Donโ€™t Wanna Lose You Karaoke", - "id": "Gloria Estefan Karaoke Version (With Vocal Guide)" - }, - { - "title": "Help Me Make It Through the Night Karaoke", - "id": "John Holt Karaoke Version" - }, - { - "title": "Help Me Make It Through the Night Karaoke", - "id": "John Holt Karaoke Version (With Vocal Guide)" - }, - { - "title": "My Sweet Lord Karaoke", - "id": "George Harrison Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "My Sweet Lord Karaoke", - "id": "George Harrison Karaoke Version" - }, - { - "title": "My Sweet Lord Karaoke", - "id": "George Harrison Karaoke Version (With Vocal Guide)" - }, - { - "title": "Anyone of Us (Stupid Mistake) Karaoke", - "id": "Gareth Gates Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Anyone of Us (Stupid Mistake) Karaoke", - "id": "Gareth Gates Karaoke Version" - }, - { - "title": "Anyone of Us (Stupid Mistake) Karaoke", - "id": "Gareth Gates Karaoke Version (With Vocal Guide)" - }, - { - "title": "Suspicious Minds Karaoke", - "id": "Gareth Gates Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Suspicious Minds Karaoke", - "id": "Gareth Gates Karaoke Version" - }, - { - "title": "Suspicious Minds Karaoke", - "id": "Gareth Gates Karaoke Version (With Vocal Guide)" - }, - { - "title": "Ferry Cross The Mersey Karaoke", - "id": "Gerry and the Pacemakers Karaoke Version" - }, - { - "title": "Ferry Cross The Mersey Karaoke", - "id": "Gerry and the Pacemakers Karaoke Version (With Vocal Guide)" - }, - { - "title": "Weather With You Karaoke", - "id": "Crowded House Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Weather With You Karaoke", - "id": "Crowded House Karaoke Version" - }, - { - "title": "Weather With You Karaoke", - "id": "Crowded House Karaoke Version (With Vocal Guide)" - }, - { - "title": "True Love Ways Karaoke", - "id": "Buddy Holly and The Crickets Karaoke Version (With Vocal Guide)" - }, - { - "title": "True Love Ways Karaoke", - "id": "Buddy Holly and The Crickets Karaoke Version" - }, - { - "title": "I'll Never Fall In Love Again Karaoke", - "id": "Bobbie Gentry Karaoke Version (Without Backing Vocals)" - }, - { - "title": "I'll Never Fall In Love Again Karaoke", - "id": "Bobbie Gentry Karaoke Version" - }, - { - "title": "I'll Never Fall In Love Again Karaoke", - "id": "Bobbie Gentry Karaoke Version (With Vocal Guide)" - }, - { - "title": "Show Me Heaven Karaoke", - "id": "Maria McKee Karaoke Version (With Vocal Guide)" - }, - { - "title": "You'll See Karaoke", - "id": "Madonna Karaoke Version" - }, - { - "title": "Dedicated to the One I Love Karaoke", - "id": "The Mamas & the Papas Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Show Me Heaven Karaoke", - "id": "Maria McKee Karaoke Version" - }, - { - "title": "Dream A Little Dream Of Me Karaoke", - "id": "The Mamas & the Papas Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Show Me Heaven Karaoke", - "id": "Maria McKee Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "You'll See Karaoke", - "id": "Madonna Karaoke Version (With Vocal Guide)" - }, - { - "title": "Dedicated to the One I Love Karaoke", - "id": "The Mamas & the Papas Karaoke Version" - }, - { - "title": "Dedicated to the One I Love Karaoke", - "id": "The Mamas & the Papas Karaoke Version (With Vocal Guide)" - }, - { - "title": "Dream A Little Dream Of Me Karaoke", - "id": "The Mamas & the Papas Karaoke Version" - }, - { - "title": "Dream A Little Dream Of Me Karaoke", - "id": "The Mamas & the Papas Karaoke Version (With Vocal Guide)" - }, - { - "title": "Spinning Around Karaoke", - "id": "Kylie Minogue Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Spinning Around Karaoke", - "id": "Kylie Minogue Karaoke Version" - }, - { - "title": "Spinning Around Karaoke", - "id": "Kylie Minogue Karaoke Version (With Vocal Guide)" - }, - { - "title": "In Your Eyes Karaoke", - "id": "Kylie Minogue Karaoke Version" - }, - { - "title": "In Your Eyes Karaoke", - "id": "Kylie Minogue Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "In Your Eyes Karaoke", - "id": "Kylie Minogue Karaoke Version (With Vocal Guide)" - }, - { - "title": "Can't Get You Out of My Head Karaoke", - "id": "Kylie Minogue Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Can't Get You Out of My Head Karaoke", - "id": "Kylie Minogue Karaoke Version" - }, - { - "title": "Can't Get You Out of My Head Karaoke", - "id": "Kylie Minogue Karaoke Version ( With Vocal Guide)" - }, - { - "title": "Dy-Na-Mi-Tee Karaoke", - "id": "Ms. Dynamite Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Dy-Na-Mi-Tee Karaoke", - "id": "Ms. Dynamite Karaoke Version" - }, - { - "title": "Songbird Karaoke", - "id": "Fleetwood Mac Karaoke Version" - }, - { - "title": "Songbird Karaoke", - "id": "Fleetwood Mac Karaoke Version (With Vocal Guide)" - }, - { - "title": "Till I Kissed Her Karaoke", - "id": "Everly Brothers Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Till I Kissed Her Karaoke", - "id": "The Everly Brothers Karaoke Version" - }, - { - "title": "Till I Kissed Her Karaoke", - "id": "The Everly Brothers Karaoke Version (With Vocal Guide)" - }, - { - "title": "Ev'ry Time We Say Goodbye Karaoke", - "id": "Ella Fitzgerald Karaoke Version" - }, - { - "title": "Ev'ry Time We Say Goodbye Karaoke", - "id": "Ella Fitzgerald Karaoke Version (With Vocal Guide)" - }, - { - "title": "What Do You Want To Make Those Eyes At Me For Karaoke", - "id": "Emile Ford & Checkmates (No Backing Vocals)" - }, - { - "title": "What Do You Want To Make Those Eyes At Me For Karaoke", - "id": "Emile Ford & The Checkmates Karaoke Version" - }, - { - "title": "What Do You Want To Make Those Eyes At Me For Karaoke", - "id": "Emile Ford and The Checkmates (With Vocals)" - }, - { - "title": "They Donโ€™t Understand Karaoke", - "id": "Dream Street Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "They Donโ€™t Understand Karaoke", - "id": "Dream Street Karaoke Version" - }, - { - "title": "They Donโ€™t Understand Karaoke", - "id": "Dream Street Karaoke Lyrics (With Vocal Guide)" - }, - { - "title": "All You Want Karaoke", - "id": "Dido Karaoke Instrumental (Without Backing Vocals)" - }, - { - "title": "All You Want Karaoke", - "id": "Dido Karaoke Lyrics" - }, - { - "title": "All You Want Karaoke", - "id": "Dido Karaoke Lyrics (With Vocal Guide)" - }, - { - "title": "Messy Karaoke", - "id": "Lola Young Karaoke Version" - }, - { - "title": "Master and Servant Karaoke With Lyrics", - "id": "Depeche Mode Karaoke Version" - }, - { - "title": "Master and Servant Karaoke", - "id": "Depeche Mode Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Master and Servant Karaoke With Lyrics", - "id": "Depeche Mode Karaoke Version (With Vocal Guide)" - }, - { - "title": "Oh What A Circus Karaoke", - "id": "David Essex Karaoke With Lyrics" - }, - { - "title": "Oh What A Circus Karaoke", - "id": "David Essex Karaoke With Lyrics (With Vocal Guide)" - }, - { - "title": "Thatโ€™s So True Karaoke", - "id": "Gracie Abrams Karaoke Version" - }, - { - "title": "Picture Karaoke", - "id": "Kid Rock ft Sheryl Crow Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Picture Karaoke", - "id": "Kid Rock ft Sheryl Crow Karaoke Version" - }, - { - "title": "Picture Karaoke", - "id": "Kid Rock ft Sheryl Crow Karaoke Version (With Vocal Guide)" - }, - { - "title": "Big Mistake Karaoke", - "id": "Natalie Imbruglia Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Big Mistake Karaoke", - "id": "Natalie Imbruglia Karaoke Version" - }, - { - "title": "Big Mistake Karaoke", - "id": "Natalie Imbruglia Karaoke Version (With Vocal Guide)" - }, - { - "title": "The Best Things In Life Are Free Karaoke", - "id": "Janet Jackson & Luther Vandross (Without Backing Vocals)" - }, - { - "title": "The Best Things In Life Are Free Karaoke", - "id": "Janet Jackson & Luther Vandross Karaoke Version" - }, - { - "title": "The Best Things In Life Are Free Karaoke", - "id": "Janet Jackson & Luther Vandross (With Vocal Guide)" - }, - { - "title": "Hero Karaoke", - "id": "Enrique Iglesias Karaoke Version" - }, - { - "title": "Hero Karaoke", - "id": "Enrique Iglesias Karaoke Version (With Vocal Guide)" - }, - { - "title": "Sacrifice Karaoke", - "id": "Elton John Karaoke Version" - }, - { - "title": "Sacrifice Karaoke", - "id": "Elton John Karaoke Version (With Vocal Guide)" - }, - { - "title": "Butterflies Karaoke", - "id": "Alicia Keys Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Butterflies Karaoke", - "id": "Alicia Keys Karaoke Version" - }, - { - "title": "Butterflies Karaoke", - "id": "Alicia Keys Karaoke Version (With Vocal Guide)" - }, - { - "title": "Sometimes When We Touch Karaoke", - "id": "Dan Hill Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Sometimes When We Touch Karaoke", - "id": "Dan Hill Karaoke Version" - }, - { - "title": "Sometimes When We Touch Karaoke", - "id": "Dan Hill Karaoke Version (With Vocal Guide)" - }, - { - "title": "I Am... I Said (Live Version) Karaoke", - "id": "Neil Diamond Karaoke Version" - }, - { - "title": "I Am... I Said (Live Version) Karaoke", - "id": "Neil Diamond Karaoke Version (With Vocal Guide)" - }, - { - "title": "Hello Again Karaoke", - "id": "Neil Diamond Karaoke Version" - }, - { - "title": "Hello Again Karaoke", - "id": "Neil Diamond Karaoke Version (With Vocal Guide)" - }, - { - "title": "Come Back Karaoke", - "id": "Jessica Garlick Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Come Back Karaoke", - "id": "Jessica Garlick Karaoke Version" - }, - { - "title": "Come Back Karaoke", - "id": "Jessica Garlick Karaoke Version (With Vocal Guide)" - }, - { - "title": "Forever Karaoke", - "id": "Dee Dee (Ian Van Dahl Remix) Karaoke Version Instrumental" - }, - { - "title": "Forever Karaoke", - "id": "Dee Dee (Ian Van Dahl Remix) Karaoke Version (With Vocal Guide)" - }, - { - "title": "I Never Knew Karaoke", - "id": "Deborah Cox Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "I Never Knew Karaoke", - "id": "Deborah Cox Karaoke Version" - }, - { - "title": "I Never Knew Karaoke", - "id": "Deborah Cox Karaoke Version (With Vocal Guide)" - }, - { - "title": "With Or Without You Karaoke", - "id": "U2 Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "With Or Without You Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "With Or Without You Karaoke", - "id": "U2 Karaoke Version (With Vocal Guide)" - }, - { - "title": "Sunday Bloody Sunday Karaoke", - "id": "U2 Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Sunday Bloody Sunday Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Sunday Bloody Sunday Karaoke", - "id": "U2 Karaoke Version (With Vocal Guide)" - }, - { - "title": "I Will Follow Karaoke", - "id": "U2 Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "I Will Follow Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "I Will Follow Karaoke", - "id": "U2 Karaoke Version (With Vocal Guide)" - }, - { - "title": "Gangsters Karaoke", - "id": "The Specials Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Gangsters Karaoke", - "id": "The Specials Karaoke Version" - }, - { - "title": "Gangsters Karaoke", - "id": "The Specials Karaoke Version (With Vocal Guide)" - }, - { - "title": "When Karaoke", - "id": "Shania Twain Karaoke Version" - }, - { - "title": "When Karaoke", - "id": "Shania Twain Karaoke Version (With Vocal Guide)" - }, - { - "title": "Promise Me Karaoke", - "id": "Beverley Craven Karaoke Version" - }, - { - "title": "Promise Me Karaoke", - "id": "Beverley Craven Karaoke Version (With Vocal Guide)" - }, - { - "title": "Daydream Believer Karaoke", - "id": "The Monkees Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Daydream Believer Karaoke", - "id": "The Monkees Karaoke Version" - }, - { - "title": "Daydream Believer Karaoke", - "id": "The Monkees Karaoke Version (With Vocal Guide)" - }, - { - "title": "Before Your Love Karaoke", - "id": "Kelly Clarkson Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Before Your Love Karaoke", - "id": "Kelly Clarkson Karaoke Version" - }, - { - "title": "Before Your Love Karaoke", - "id": "Kelly Clarkson Karaoke Version (With Vocal Guide)" - }, - { - "title": "Unchain My Heart Karaoke", - "id": "Joe Cocker Karaoke Version (With Vocal Guide)" - }, - { - "title": "Unchain My Heart Karaoke", - "id": "Joe Cocker Karaoke Version" - }, - { - "title": "Somethin Else Karaoke", - "id": "Eddie Cochran Karaoke Version" - }, - { - "title": "Somethin Else Karaoke", - "id": "Eddie Cochran Karaoke Version (With Vocal Guide)" - }, - { - "title": "Caught In The Sun Karaoke", - "id": "Course Of Nature Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Caught In The Sun Karaoke", - "id": "Course Of Nature Karaoke Version" - }, - { - "title": "Caught In The Sun Karaoke", - "id": "Course Of Nature Karaoke Version (With Vocal Guide)" - }, - { - "title": "Summertime Karaoke", - "id": "Aaron Carter and Baha Men Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Summertime Karaoke", - "id": "Aaron Carter and Baha Men Karaoke Version" - }, - { - "title": "Summertime Karaoke", - "id": "Aaron Carter and Baha Men Karaoke Version (With Vocal Guide)" - }, - { - "title": "It Must Have Been Love Karaoke", - "id": "Roxette Karaoke Version" - }, - { - "title": "It Must Have Been Love Karaoke", - "id": "Roxette Karaoke Version (With Vocal Guide)" - }, - { - "title": "Drop the Pilot Karaoke", - "id": "Joan Armatrading Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Drop the Pilot Karaoke", - "id": "Joan Armatrading Karaoke Version" - }, - { - "title": "Drop the Pilot Karaoke", - "id": "Joan Armatrading Karaoke Version (With Vocal Guide)" - }, - { - "title": "The Weakness In Me Karaoke", - "id": "Joan Armatrading Karaoke Version (Instrumental)" - }, - { - "title": "The Weakness In Me Karaoke", - "id": "Joan Armatrading Karaoke Version (With Vocal Guide)" - }, - { - "title": "The Winner Takes It All Karaoke", - "id": "Abba Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "The Winner Takes It All Karaoke", - "id": "Abba Karaoke Version" - }, - { - "title": "The Winner Takes It All Karaoke", - "id": "Abba Karaoke Version (With Vocal Guide)" - }, - { - "title": "Angels Karaoke", - "id": "Robbie Williams Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Angels Karaoke", - "id": "Robbie Williams Karaoke Version" - }, - { - "title": "Angels Karaoke", - "id": "Robbie Williams Karaoke Version (With Vocal Guide)" - }, - { - "title": "Waterloo Karaoke", - "id": "Abba Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Waterloo Karaoke", - "id": "Abba Karaoke Version" - }, - { - "title": "Waterloo Karaoke", - "id": "Abba Karaoke Version (With Vocal Guide)" - }, - { - "title": "Mamma Mia Karaoke", - "id": "Abba Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Mamma Mia Karaoke", - "id": "Abba Karaoke Version" - }, - { - "title": "Mamma Mia Karaoke", - "id": "Abba Karaoke Version (With Vocal Guide)" - }, - { - "title": "Words Karaoke", - "id": "Boyzone Karaoke Version" - }, - { - "title": "Words Karaoke", - "id": "Boyzone Karaoke Version (With Vocal Guide)" - }, - { - "title": "Crocodile Rock Karaoke", - "id": "Bob The Builder Karaoke Version (Without Backing Vocals) Instrumental" - }, - { - "title": "Crocodile Rock Karaoke", - "id": "Bob The Builder Karaoke Version" - }, - { - "title": "Crocodile Rock Karaoke", - "id": "Bob The Builder Karaoke Version (With Vocal Guide)" - }, - { - "title": "Only You Karaoke", - "id": "Yazoo Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Only You Karaoke", - "id": "Yazoo Karaoke Version" - }, - { - "title": "Only You Karaoke", - "id": "Yazoo Karaoke Version (With Vocal Guide)" - }, - { - "title": "Situation Karaoke", - "id": "Yazoo Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Situation Karaoke", - "id": "Yazoo Karaoke Version" - }, - { - "title": "Situation Karaoke", - "id": "Yazoo Karaoke Version (With Vocal Guide)" - }, - { - "title": "Sweet Caroline Karaoke", - "id": "Neil Diamond Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Sweet Caroline Karaoke", - "id": "Neil Diamond Karaoke Version" - }, - { - "title": "Sweet Caroline Karaoke", - "id": "Neil Diamond Karaoke Version (With Vocal Guide)" - }, - { - "title": "Lonely This Christmas Karaoke", - "id": "Mud Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Lonely This Christmas Karaoke", - "id": "Mud Karaoke Version" - }, - { - "title": "Lonely This Christmas Karaoke", - "id": "Mud Karaoke Version (With Vocal Guide)" - }, - { - "title": "Merry Christmas, Darling Karaoke", - "id": "Carpenters Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Merry Christmas, Darling Karaoke", - "id": "Carpenters Karaoke Version" - }, - { - "title": "Merry Christmas, Darling Karaoke", - "id": "Carpenters Karaoke Version (With Vocal Guide)" - }, - { - "title": "Mistletoe & Wine Karaoke", - "id": "Cliff Richard Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Mistletoe & Wine Karaoke", - "id": "Cliff Richard Karaoke Version" - }, - { - "title": "Mistletoe & Wine Karaoke", - "id": "Cliff Richard Karaoke Version (With Vocal Guide)" - }, - { - "title": "Auld Lang Syne Karaoke", - "id": "Traditional Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Auld Lang Syne Karaoke", - "id": "Traditional Karaoke Version" - }, - { - "title": "Auld Lang Syne Karaoke", - "id": "Traditional Karaoke Version (With Vocal Guide)" - }, - { - "title": "Walking In The Air Karaoke", - "id": "Aled Jones Karaoke Version" - }, - { - "title": "Walking In The Air Karaoke", - "id": "Aled Jones Karaoke Version (With Vocal Guide)" - }, - { - "title": "(I Canโ€™t Help) Falling in Love With You Karaoke", - "id": "UB40 Karaoke Version (Without Backing Vocals)" - }, - { - "title": "(I Canโ€™t Help) Falling in Love With You Karaoke", - "id": "UB40 Karaoke Version" - }, - { - "title": "(I Canโ€™t Help) Falling in Love With You Karaoke", - "id": "UB40 Karaoke Version (With Vocal Guide)" - }, - { - "title": "Evergreen Karaoke", - "id": "Will Young Karaoke Version (Without Backing Vocals, Instrumental)" - }, - { - "title": "Evergreen Karaoke", - "id": "Will Young Karaoke Version" - }, - { - "title": "Evergreen Karaoke", - "id": "Will Young Karaoke Version (With Vocal Guide)" - }, - { - "title": "(Boogie Woogie) Dancinโ€™ Shoes Karaoke", - "id": "Claudja Barry Karaoke Version" - }, - { - "title": "(Boogie Woogie) Dancinโ€™ Shoes Karaoke", - "id": "Claudja Barry Karaoke Version (With Vocal Guide)" - }, - { - "title": "Bed Of Roses Karaoke", - "id": "Bon Jovi Karaoke Version" - }, - { - "title": "Bed Of Roses Karaoke", - "id": "Bon Jovi Karaoke Version (With Vocal Guide)" - }, - { - "title": "One Way Or Another Karaoke", - "id": "Blondie Karaoke Version (Instrumental, Without Backing Vocals)" - }, - { - "title": "One Way Or Another Karaoke", - "id": "Blondie Karaoke Version" - }, - { - "title": "One Way Or Another Karaoke", - "id": "Blondie Karaoke Version (With Vocal Guide)" - }, - { - "title": "He's Somehow Been A Part Of Me Karaoke", - "id": "Roselle Nava Karaoke Version" - }, - { - "title": "He's Somehow Been A Part Of Me Karaoke", - "id": "Roselle Nava Karaoke Version (With Vocal Guide)" - }, - { - "title": "Iba Tayo Karaoke", - "id": "Roselle Nava Karaoke Version" - }, - { - "title": "Iba Tayo Karaoke", - "id": "Roselle Nava Karaoke Version (With Vocal Guide)" - }, - { - "title": "Uh Huh Karaoke", - "id": "B2K Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Uh Huh Karaoke", - "id": "B2K Karaoke Version" - }, - { - "title": "Uh Huh Karaoke", - "id": "B2K Karaoke Version (With Vocal Guide)" - }, - { - "title": "Love And Affection Karaoke", - "id": "Joan Armatrading Karaoke Version" - }, - { - "title": "Love And Affection Karaoke", - "id": "Joan Armatrading Karaoke Version (With Vocal Guide)" - }, - { - "title": "Itโ€™s The Most Nonsense Time Of The Year Karaoke", - "id": "Sabrina Carpenter Karaoke Version" - }, - { - "title": "Ready For Love Karaoke", - "id": "India.Arie Simpson Karaoke Version" - }, - { - "title": "Ready For Love Karaoke", - "id": "India.Arie Simpson Karaoke Version (With Vocal Guide)" - }, - { - "title": "Eternal Flame Karaoke", - "id": "Atomic Kitten Karaoke Version (With Vocal Guide)" - }, - { - "title": "Eternal Flame Karaoke", - "id": "Atomic Kitten Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Eternal Flame Karaoke", - "id": "Atomic Kitten Karaoke Version" - }, - { - "title": "Sana'y Di Magtagal Karaoke", - "id": "Roselle Nava Karaoke Version" - }, - { - "title": "Sana'y Di Magtagal Karaoke", - "id": "Roselle Nava Karaoke Version (With Vocal Guide)" - }, - { - "title": "I'm Outta Love Karaoke", - "id": "Anastacia Karaoke Version (Without Backing Vocals)" - }, - { - "title": "I'm Outta Love Karaoke", - "id": "Anastacia Karaoke Version" - }, - { - "title": "Marthaโ€™s Harbour Karaoke", - "id": "All About Eve Karaoke Version" - }, - { - "title": "Crying at the Discoteque Karaoke", - "id": "Alcazar Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Crying at the Discoteque Karaoke", - "id": "Alcazar Karaoke Version" - }, - { - "title": "Floorfiller Karaoke", - "id": "A-Teens Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Floorfiller Karaoke", - "id": "A-Teens Karaoke Version" - }, - { - "title": "Foolish Karaoke", - "id": "Ashanti Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Foolish Karaoke", - "id": "Ashanti Karaoke Version (With Backing Vocals)" - }, - { - "title": "Through the Barricades Karaoke", - "id": "Spandau Ballet Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Through the Barricades Karaoke", - "id": "Spandau Ballet Karaoke Version" - }, - { - "title": "Female of the Species Karaoke", - "id": "Space Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Female of the Species Karaoke", - "id": "Space Karaoke Version" - }, - { - "title": "Pacific Coast Party Karaoke", - "id": "Smash Mouth Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Pacific Coast Party Karaoke", - "id": "Smash Mouth Karaoke Version (With Backing Vocals)" - }, - { - "title": "The Way You Look Tonight Karaoke", - "id": "Frank Sinatra Karaoke Version (Without Backing Vocals)" - }, - { - "title": "No More The Fool Karaoke", - "id": "Elkie Brooks Karaoke Version (Without Backing Vocals)" - }, - { - "title": "No More The Fool Karaoke", - "id": "Elkie Brooks Karaoke Version (With Backing Vocals)" - }, - { - "title": "Walk Away Karaoke", - "id": "Christina Aguilera Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Walk Away Karaoke", - "id": "Christina Aguilera Karaoke Version (With Backing Vocals)" - }, - { - "title": "Superstar Karaoke", - "id": "The Carpenters Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Superstar Karaoke", - "id": "The Carpenters Karaoke Version (With Backing Vocals)" - }, - { - "title": "Soar Karaoke", - "id": "Christina Aguilera Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Soar Karaoke", - "id": "Christina Aguilera Karaoke Version (With Backing Vocals)" - }, - { - "title": "At Seventeen Karaoke", - "id": "Janis Ian Karaoke Version" - }, - { - "title": "Only God Knows Why Karaoke", - "id": "Kid Rock Karaoke Version" - }, - { - "title": "No Love Karaoke", - "id": "Kevon Edmonds Karaoke Version" - }, - { - "title": "The Rockafeller Skank Karaoke", - "id": "Fatboy Slim Karaoke Version" - }, - { - "title": "Say It Isn't So Karaoke", - "id": "Bon Jovi Karaoke Version" - }, - { - "title": "My First Night With You Karaoke", - "id": "Mya Karaoke Version" - }, - { - "title": "Isang Tanong, Isang Sagot Karaoke", - "id": "Donna Cruz Karaoke Version" - }, - { - "title": "Most Girls Karaoke", - "id": "Pink Karaoke Version" - }, - { - "title": "Isang Tanong, Isang Sagot Karaoke", - "id": "Donna Cruz Karaoke Version (With Vocals)" - }, - { - "title": "Smooth Karaoke", - "id": "Santana & Rob Thomas Karaoke Version" - }, - { - "title": "Soul Man Karaoke", - "id": "The Blues Brothers Karaoke Version" - }, - { - "title": "This Masquerade Karaoke", - "id": "George Benson Karaoke Version" - }, - { - "title": "Waterfalls Karaoke", - "id": "TLC Karaoke Version" - }, - { - "title": "Maria Maria Karaoke", - "id": "Santana Karaoke Version" - }, - { - "title": "Love Of My Life Karaoke", - "id": "Santana Karaoke Version" - }, - { - "title": "Last Kiss Karaoke", - "id": "Pearl Jam Karaoke Version" - }, - { - "title": "Number One Girl Karaoke", - "id": "Rose Karaoke Version" - }, - { - "title": "All I Want Is You Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Desire Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Elevation Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Even Better Than The Real Thing Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "I Still Haven't Found What I'm Looking For Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "I Will Follow Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Mysterious Ways Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "New Year's Day Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Stuck In A Moment You Can't Get Out Of Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Just Be A Man About It Karaoke", - "id": "Toni Braxton Karaoke Version" - }, - { - "title": "It Feels So Good Karaoke", - "id": "Sonique Karaoke Version" - }, - { - "title": "The Unforgettable Fire Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Walk On Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Where The Streets Have No Name Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Ainโ€™t That a Kick in the Head Karaoke", - "id": "Frank Sinatra Karaoke Version" - }, - { - "title": "Do They Know It's Christmas Karaoke", - "id": "Band Aid Karaoke Version (Without Backing Vocals Instrumental)" - }, - { - "title": "Do They Know It's Christmas Karaoke", - "id": "Band Aid Karaoke Version (With Backing Vocals)" - }, - { - "title": "Wild Horses Karaoke", - "id": "Susan Boyle Karaoke Version" - }, - { - "title": "Back to You Karaoke", - "id": "Bryan Adams Karaoke Version" - }, - { - "title": "Tomorrow Karaoke", - "id": "Annie Karaoke Version" - }, - { - "title": "Tomorrow Karaoke", - "id": "Annie Karaoke Version (With Vocal Guide)" - }, - { - "title": "Somewhere Karaoke", - "id": "West Side Story Karaoke Version" - }, - { - "title": "Somewhere Karaoke", - "id": "West Side Story Karaoke Version (With Vocal Guide)" - }, - { - "title": "Tatlong Mukha Ng Pag-ibig Karaoke", - "id": "Sharon Cuneta Karaoke Version" - }, - { - "title": "Tatlong Mukha Ng Pag-ibig Karaoke", - "id": "Sharon Cuneta Karaoke Version (With Vocal Guide)" - }, - { - "title": "Para Sa Masa Karaoke", - "id": "Eraserheads Karaoke Version" - }, - { - "title": "Para Sa Masa Karaoke", - "id": "Eraserheads Karaoke Version (With Vocals)" - }, - { - "title": "Tainted Love Karaoke", - "id": "Soft Cell Karaoke Version (Without Backing Vocals, Instrumental)" - }, - { - "title": "Tainted Love Karaoke", - "id": "Soft Cell Karaoke Version (With Backing Vocals)" - }, - { - "title": "Smooth Operator Karaoke", - "id": "Sade Karaoke Version" - }, - { - "title": "The Bare Necessities Karaoke", - "id": "The Jungle Book Karaoke Version (Without Backing Vocals)" - }, - { - "title": "Never Had a Dream Come True I Karaoke", - "id": "S Club 7 Karaoke Version (No Backing Vocals, Instrumental)" - }, - { - "title": "Never Had a Dream Come True Karaoke", - "id": "S Club 7 Karaoke Version (With Backing Vocals)" - }, - { - "title": "Please Forgive Me Karaoke", - "id": "Bryan Adams Karaoke Version (With Backing Vocals)" - }, - { - "title": "I'm Holding On Karaoke", - "id": "Shania Twain Karaoke Version" - }, - { - "title": "The Long and Winding Road Karaoke", - "id": "The Beatles Karaoke Version (With Backing Vocals)" - }, - { - "title": "The Beatles - The Long and Winding Road (Without Backing Vocals) Karaoke", - "id": "Karaoke Version" - }, - { - "title": "If You Had My Love Karaoke", - "id": "Jennifer Lopez Karaoke Version" - }, - { - "title": "If I Had $1,000,000 Karaoke", - "id": "Barenaked Ladies Karaoke Version" - }, - { - "title": "Ice Cream Karaoke", - "id": "Sarah Mclachlan Karaoke Version" - }, - { - "title": "Paalam Sa Kahapon Karaoke", - "id": "Lilet Karaoke Version" - }, - { - "title": "Paalam Sa Kahapon Karaoke", - "id": "Lilet Karaoke Version (With Vocals)" - }, - { - "title": "Come On Over Karaoke", - "id": "Christina Aguilera Karaoke Version" - }, - { - "title": "Difficult Kind Karaoke", - "id": "Sheryl Crow Karaoke Version" - }, - { - "title": "Crash And Burn Karaoke", - "id": "Savage Garden Karaoke Version" - }, - { - "title": "Everything You Want Karaoke", - "id": "Vertical Horizon Karaoke Version" - }, - { - "title": "Flowers Karaoke", - "id": "Sweet Female Attitude Karaoke Version" - }, - { - "title": "Everything Is Everything Karaoke", - "id": "Lauryn Hill Karaoke Version" - }, - { - "title": "From The Bottom Of My Broken Heart Karaoke", - "id": "Britney Spears Karaoke Version" - }, - { - "title": "Graduation (Friends Forever) Karaoke", - "id": "Vitamin C Karaoke Version" - }, - { - "title": "Don't Wanna Fall in Love Karaoke", - "id": "Jane Child Karaoke Version" - }, - { - "title": "Dirty White Boy Karaoke", - "id": "Foreigner Karaoke Version" - }, - { - "title": "Lay It On The Line Karaoke", - "id": "Triumph Karaoke Version" - }, - { - "title": "What Could Be Better Than This Karaoke", - "id": "Moana 2 Karaoke Version" - }, - { - "title": "Hinahanap-Hanap Kita Karaoke", - "id": "Rivermaya Karaoke Version" - }, - { - "title": "Hinahanap-Hanap Kita Karaoke", - "id": "Rivermaya Karaoke Version (With Vocals)" - }, - { - "title": "Mahal kita, alam mo ba? Karaoke", - "id": "Rockstar 2 Karaoke Version" - }, - { - "title": "Mahal kita, alam mo ba? Karaoke", - "id": "Rockstar 2 Karaoke Version (With Vocals)" - }, - { - "title": "The Hardest Thing Karaoke", - "id": "98 Degrees Karaoke Version" - }, - { - "title": "(God Must Have Spent) A Little More Time On You Karaoke", - "id": "NSYNC Karaoke Version" - }, - { - "title": "Bug-A-Boo Karaoke", - "id": "Destiny's Child Karaoke Version" - }, - { - "title": "Merry Christmas Karaoke", - "id": "Ed Sheeran & Elton John Karaoke Version" - }, - { - "title": "Getting Jiggy Wit It Karaoke", - "id": "Will Smith Karaoke Version" - }, - { - "title": "Isang Ulit Man Lang Karaoke", - "id": "Lani Misalucha Karaoke Version" - }, - { - "title": "Isang Ulit Man Lang Karaoke", - "id": "Lani Misalucha Karaoke Version (With Vocals)" - }, - { - "title": "He Wasn't Man Enough Karaoke", - "id": "Toni Braxton Karaoke Version" - }, - { - "title": "Feelin' So Good Karaoke", - "id": "Jennifer Lopez Karaoke Version" - }, - { - "title": "Doesn't Really Matter Karaoke", - "id": "Janet Jackson Karaoke Version" - }, - { - "title": "Californication Karaoke", - "id": "Red Hot Chili Peppers Karaoke Version" - }, - { - "title": "Higher Karaoke", - "id": "Creed Karaoke Version" - }, - { - "title": "Broadway Karaoke", - "id": "Goo Goo Dolls Karaoke Version" - }, - { - "title": "I Disappear Karaoke", - "id": "Metallica Karaoke Version" - }, - { - "title": "I Do (Cherish You) Karaoke", - "id": "98 Degrees Karaoke Version" - }, - { - "title": "I Get Lost Karaoke", - "id": "Eric Clapton Karaoke Version" - }, - { - "title": "I Knew I Loved You Karaoke", - "id": "Savage Garden Karaoke Version" - }, - { - "title": "I Need To Know Karaoke", - "id": "Marc Anthony Karaoke Version" - }, - { - "title": "(You Drive Me) Crazy Karaoke", - "id": "Britney Spears Karaoke Version" - }, - { - "title": "I See You Baby Karaoke", - "id": "Groove Armada Karaoke Version" - }, - { - "title": "Ikaw Lang At Ako Karaoke", - "id": "Donna Cruz Karaoke Version" - }, - { - "title": "Ikaw Lang At Ako Karaoke", - "id": "Donna Cruz Karaoke Version (With Vocals)" - }, - { - "title": "Stay Awake Karaoke", - "id": "Mary Poppins Karaoke Version" - }, - { - "title": "Stay Awake Karaoke", - "id": "Mary Poppins Karaoke Version (With Vocals)" - }, - { - "title": "I Love To Laugh Karaoke", - "id": "Mary Poppins Karaoke Version" - }, - { - "title": "I Love To Laugh Karaoke", - "id": "Mary Poppins Karaoke Version (With Vocals)" - }, - { - "title": "Feed The Birds Karaoke", - "id": "Mary Poppins Karaoke Version (With Vocals)" - }, - { - "title": "That Situation Karaoke", - "id": "Lea Salonga Karaoke Version" - }, - { - "title": "That Situation Karaoke", - "id": "Lea Salonga Karaoke Version (With Vocals)" - }, - { - "title": "Angels Would Fall Karaoke", - "id": "Melissa Etheridge Karaoke Version" - }, - { - "title": "All The Small Things Karaoke", - "id": "Blink 182 Karaoke Version" - }, - { - "title": "All Star Karaoke", - "id": "Smash Mouth Karaoke Version" - }, - { - "title": "We Could Be In Love Karaoke", - "id": "Brad Kane and Lea Salonga Karaoke Version (With Vocals)" - }, - { - "title": "The Bad Touch Karaoke", - "id": "Bloodhound Gang Karaoke Version" - }, - { - "title": "Bent Karaoke", - "id": "Matchbox Twenty Karaoke Version" - }, - { - "title": "The Best Of Me Karaoke", - "id": "Bryan Adams Karaoke Version" - }, - { - "title": "Bills, Bills, Bills Karaoke", - "id": "Destiny's Child Karaoke Version" - }, - { - "title": "Breathe Karaoke", - "id": "Faith Hill Karaoke Version" - }, - { - "title": "We Could Be In Love Karaoke", - "id": "Brad Kane and Lea Salonga Karaoke Version" - }, - { - "title": "I Think I'm In Love With You Karaoke", - "id": "Jessica Simpson Karaoke Version" - }, - { - "title": "Kaibigan Karaoke", - "id": "Lea Salonga Karaoke Version" - }, - { - "title": "Kaibigan Karaoke", - "id": "Lea Salonga Karaoke Version (With Vocals)" - }, - { - "title": "I Wanna Little Love Karaoke", - "id": "Lea Salonga Karaoke Version" - }, - { - "title": "I Wanna Little Love Karaoke", - "id": "Lea Salonga Karaoke Version (With Vocals)" - }, - { - "title": "Minsan, Isang Kahapon Karaoke", - "id": "Lea Salonga Karaoke Version" - }, - { - "title": "Minsan, Isang Kahapon Karaoke", - "id": "Lea Salonga Karaoke Version (With Vocals)" - }, - { - "title": "Chim-Chim-Cher-Ee Karaoke", - "id": "Mary Poppins Karaoke Version" - }, - { - "title": "Chim-Chim-Cher-Ee Karaoke", - "id": "Mary Poppins Karaoke Version (With Vocals)" - }, - { - "title": "Spoonful Of Sugar Karaoke", - "id": "Mary Poppins Karaoke Version (With Vocals)" - }, - { - "title": "Let's Go Fly A Kite Karaoke", - "id": "Mary Poppins Karaoke Version (With Vocals)" - }, - { - "title": "Supercalifragilisticexpialidocious Karaoke", - "id": "Mary Poppins Karaoke Version (With Vocals)" - }, - { - "title": "Jolly Holiday Karaoke", - "id": "Mary Poppins Karaoke Version" - }, - { - "title": "Jolly Holiday Karaoke", - "id": "Mary Poppins Karaoke Version (With Vocals)" - }, - { - "title": "Harden My Heart Karaoke", - "id": "Quarterflash Karaoke Version" - }, - { - "title": "Sea Of Love Karaoke", - "id": "The Honeydrippers Karaoke Version" - }, - { - "title": "American Woman Karaoke", - "id": "The Guess Who Karaoke Version" - }, - { - "title": "Feel Your Love Tonight Karaoke", - "id": "Van Halen Karaoke Version" - }, - { - "title": "Runnin On Faith Karaoke", - "id": "Eric Clapton Karaoke Version" - }, - { - "title": "Barracuda Karaoke", - "id": "Heart Karaoke Version" - }, - { - "title": "Hit Me With Your Best Shot Karaoke", - "id": "Pat Benetar Karaoke Version" - }, - { - "title": "Saturday's Are All Right Karaoke", - "id": "Bay City Rollers Karaoke Version" - }, - { - "title": "Lola Karaoke", - "id": "The Kinks Karaoke Version" - }, - { - "title": "Only You Know & I Know Karaoke", - "id": "Eric Clapton Karaoke Version" - }, - { - "title": "Cold Day In Hell (Live) Karaoke", - "id": "Gary Moore Karaoke Version" - }, - { - "title": "I Love The Dead Karaoke", - "id": "Alice Cooper Karaoke Version" - }, - { - "title": "I Knew The Bride (When She Used To Rock And Roll) Karaoke", - "id": "Nick Lowe Karaoke Version" - }, - { - "title": "Something Stupid Karaoke", - "id": "Frank Sinatra Karaoke Version" - }, - { - "title": "I Want You To Want Me Karaoke", - "id": "Cheap Trick Karaoke Version" - }, - { - "title": "Case Of The Ex Karaoke", - "id": "Mya Karaoke Version" - }, - { - "title": "Don't Tell Me Karaoke", - "id": "Madonna Karaoke Version" - }, - { - "title": "Gotta Tell You Karaoke", - "id": "Samantha Mumba Karaoke Version" - }, - { - "title": "He Loves U Not Karaoke", - "id": "Dream Karaoke Version" - }, - { - "title": "If You're Gone Karaoke", - "id": "Matchbox Twenty Karaoke Version" - }, - { - "title": "Incomplete Karaoke", - "id": "Sisqo Karaoke Version" - }, - { - "title": "Walk Me Home Karaoke", - "id": "Mandy Moore Karaoke Version" - }, - { - "title": "Independant Woman Karaoke", - "id": "Destiny's Child Karaoke Version" - }, - { - "title": "Oh Girl Karaoke", - "id": "The Chi-Lites Karaoke Version" - }, - { - "title": "Ain't No Way To Treat A Lady Karaoke", - "id": "Helen Reddy Karaoke Version" - }, - { - "title": "Sooner or Later Karaoke", - "id": "The Grass Roots Karaoke Version" - }, - { - "title": "Saturday Night Karaoke", - "id": "Bay City Rollers Karaoke Version" - }, - { - "title": "Chubby Checker Karaoke", - "id": "Limbo Rock Karaoke Version" - }, - { - "title": "Carolina In My Mind Karaoke", - "id": "James Taylor Karaoke Version" - }, - { - "title": "Alone Again (Naturally) Karaoke", - "id": "Gilbert O'Sullivan Karaoke Version" - }, - { - "title": "Blue Monday Karaoke", - "id": "Fats Domino Karaoke Version" - }, - { - "title": "Who's Sorry Now Karaoke", - "id": "Brenda Lee Karaoke Version" - }, - { - "title": "What's New Pussy Cat Karaoke", - "id": "Tom Jones Karaoke Version" - }, - { - "title": "Do You Know What I Mean Karaoke", - "id": "Lee Michaels Karaoke Version" - }, - { - "title": "When You Wish Upon A Star Karaoke", - "id": "Pinocchio (Disney) Karaoke Version" - }, - { - "title": "When You Wish Upon A Star (with vocals) Karaoke", - "id": "Pinocchio (Disney) Karaoke Version" - }, - { - "title": "Rich Girl Karaoke", - "id": "Daryl Hall and John Oates Karaoke Version" - }, - { - "title": "Sea Cruise Karaoke", - "id": "Frankie Ford Karaoke Version" - }, - { - "title": "Midnight Confessions Karaoke", - "id": "The Grass Roots Karaoke Version" - }, - { - "title": "Kind Of A Drag Karaoke", - "id": "The Buckinghams Karaoke Version" - }, - { - "title": "Love Grows (Where My Rosemary Goes) Karaoke", - "id": "Edison Lighthouse Karaoke Version" - }, - { - "title": "Beauty In Disguise Karaoke", - "id": "John Reed Karaoke Version" - }, - { - "title": "In The Year 2525 Karaoke", - "id": "Zager and Evans Karaoke Version" - }, - { - "title": "I Hear You Knocking Karaoke", - "id": "Dave Edmunds Karaoke Version" - }, - { - "title": "Honesty Karaoke", - "id": "Billy Joel Karaoke Version" - }, - { - "title": "Gloria Karaoke", - "id": "Laura Branigan Karaoke Version" - }, - { - "title": "Laughter In The Rain Karaoke", - "id": "Neil Sedaka Karaoke Version" - }, - { - "title": "Don't Do Me Like That Karaoke", - "id": "Tom Petty Karaoke Version" - }, - { - "title": "Doctor My Eyes Karaoke", - "id": "Jackson Browne Karaoke Version" - }, - { - "title": "Crystal Blue Persuasion Karaoke", - "id": "Tommy James Karaoke Version" - }, - { - "title": "I Put A Spell On You Karaoke", - "id": "Creedance Clearwater Revival Karaoke Version" - }, - { - "title": "Reflections Of My Life Karaoke", - "id": "Marmalade Karaoke Version" - }, - { - "title": "The Joker Karaoke", - "id": "The Steve Miller Band Karaoke Version" - }, - { - "title": "Strange Brew Karaoke", - "id": "Cream Karaoke Version" - }, - { - "title": "Someday My Prince Will Come Karaoke", - "id": "Snow White (Disney) Karaoke Version" - }, - { - "title": "Someday My Prince Will Come (with vocals) Karaoke", - "id": "Snow White (Disney) Karaoke Version" - }, - { - "title": "Mula Noon, Hanggang Ngayon Karaoke", - "id": "Lea Salonga Karaoke Version" - }, - { - "title": "Mula Noon, Hanggang Ngayon (with vocals) Karaoke", - "id": "Lea Salonga Karaoke Version" - }, - { - "title": "Hi Diddle Dee Dee Karaoke", - "id": "Pinocchio (Disney) Karaoke Version" - }, - { - "title": "Hi Diddle Dee Dee (with vocals) Karaoke", - "id": "Pinocchio (Disney) Karaoke Version" - }, - { - "title": "Please Naman Karaoke", - "id": "Lea Salonga Karaoke Version" - }, - { - "title": "Please Naman (with vocals) Karaoke", - "id": "Lea Salonga Karaoke Version" - }, - { - "title": "Sa Ugoy Ng Duyan Karaoke", - "id": "Ice Seguerra Karaoke Version" - }, - { - "title": "Sa Ugoy Ng Duyan (with vocals) Karaoke", - "id": "Ice Seguerra Karaoke Version" - }, - { - "title": "When I Met You Karaoke", - "id": "Apo Hiking Society Karaoke Version" - }, - { - "title": "When I Met You (with vocals) Karaoke", - "id": "Apo Hiking Society Karaoke Version" - }, - { - "title": "Pumapatak Ang Ulan Karaoke", - "id": "Apo Hiking Society Karaoke Version" - }, - { - "title": "Pumapatak Ang Ulan (with vocals) Karaoke", - "id": "Apo Hiking Society Karaoke Version" - }, - { - "title": "Salawikain Karaoke", - "id": "Apo Hiking Society Karaoke Version" - }, - { - "title": "Salawikain (with vocals) Karaoke", - "id": "Apo Hiking Society Karaoke Version" - }, - { - "title": "One Short Day Karaoke", - "id": "Wicked The Musical Karaoke Version" - }, - { - "title": "Hakuna Matata Karaoke", - "id": "The Lion King (Disney) Karaoke Version" - }, - { - "title": "Hakuna Matata (with vocals) Karaoke", - "id": "The Lion King (Disney) Karaoke Version" - }, - { - "title": "Pasulyap Sulyap Karaoke", - "id": "Tootsie Guevarra Karaoke Version" - }, - { - "title": "Pasulyap Sulyap (with vocals) Karaoke", - "id": "Tootsie Guevarra Karaoke Version" - }, - { - "title": "Bare Necessities Karaoke", - "id": "The Jungle Book (Disney) Karaoke Version" - }, - { - "title": "Bare Necessities (with vocals) Karaoke", - "id": "The Jungle Book (Disney) Karaoke Version" - }, - { - "title": "I Won't Say I'm In Love Karaoke", - "id": "Hercule's (Disney) Karaoke Version" - }, - { - "title": "I Won't Say I'm In Love (with vocals) Karaoke", - "id": "Hercule's (Disney) Karaoke Version" - }, - { - "title": "Bulong Ng Damdamin Karaoke", - "id": "Marissa Karaoke Version" - }, - { - "title": "Bulong Ng Damdamin (with vocals) Karaoke", - "id": "Marissa Karaoke Version" - }, - { - "title": "I Just Can't Wait To Be King Karaoke", - "id": "The Lion King (Disney) Karaoke Version" - }, - { - "title": "I Just Can't Wait To Be King (with vocals) Karaoke", - "id": "The Lion King (Disney) Karaoke Version" - }, - { - "title": "If I Didn't Have You Karaoke", - "id": "Monsters Inc. (Disney Pixar) Karaoke Version" - }, - { - "title": "If I Didn't Have You (with vocals) Karaoke", - "id": "Monsters Inc. (Disney Pixar) Karaoke Version" - }, - { - "title": "You've Got A Friend In Me Karaoke", - "id": "Toy Story (Disney Pixar) Karaoke Version" - }, - { - "title": "You've Got A Friend In Me (with vocals) Karaoke", - "id": "Toy Story (Disney Pixar) Karaoke Version" - }, - { - "title": "Winnie The Pooh Karaoke", - "id": "Winnie The Pooh (Disney) Karaoke Version" - }, - { - "title": "Winnie The Pooh (with vocals) Karaoke", - "id": "Winnie The Pooh (Disney) Karaoke Version" - }, - { - "title": "Pasayawa Ko Day Karaoke", - "id": "Ben Zubiri Karaoke Version" - }, - { - "title": "Pasayawa Ko Day (with vocals) Karaoke", - "id": "Ben Zubiri Karaoke Version" - }, - { - "title": "So This Is Love (Duet) Karaoke", - "id": "Cinderella (Disney) Karaoke Version" - }, - { - "title": "So This Is Love (Duet) (with vocals) Karaoke", - "id": "Cinderella (Disney) Karaoke Version" - }, - { - "title": "I Won't Let You Go Again Karaoke", - "id": "Jaya Karaoke Version" - }, - { - "title": "I Won't Let You Go Again (with vocals) Karaoke", - "id": "Jaya Karaoke Version" - }, - { - "title": "Bad Medicine Karaoke", - "id": "Bon Jovi Karaoke Version" - }, - { - "title": "Someday Karaoke", - "id": "Zombie's 3 (Disney) Karaoke Version" - }, - { - "title": "China Grove Karaoke", - "id": "The Doobie Brothers Karaoke Version" - }, - { - "title": "What Child Is This Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "We Wish You A Merry Christmas Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Twelve Days Of Christmas Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Silver Bells Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Silent Night Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "O Little Town Of Bethlehem Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "O Holy Night Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "O Come All Ye Faithful Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Little Drummer Boy Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Joy To The World Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "White Christmas Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Have Yourself A Merry Little Christmas Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Hark! The Herald Angels Sing Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "God Rest Ye Merry Gentlemen Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "We Three Kings Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "The First Noel Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Do You Hear What I Hear Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Deck The Halls Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Away In A Manger Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Ave Maria Karaoke", - "id": "Christmas Carol Karaoke Version" - }, - { - "title": "Isang Tulad Mo Karaoke", - "id": "renz verano Karaoke Version" - }, - { - "title": "Isang Tulad Mo Karaoke", - "id": "renz verano Karaoke Version (With Vocals)" - }, - { - "title": "End Of The Line (Disney) Karaoke", - "id": "Cheetah Sisters Karaoke Version" - }, - { - "title": "End Of The Line Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "Breakthrough Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version" - }, - { - "title": "Breakthrough Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "Girlfriend Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version" - }, - { - "title": "Girlfriend Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "Part of The Heart of The Sky Karaoke", - "id": "Chris Martin (Disney) Karaoke Version" - }, - { - "title": "C'mon Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version" - }, - { - "title": "C'mon Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "Part of The Heart of The Sky (with vocals) Karaoke", - "id": "Chris Martin (Disney) Karaoke Version" - }, - { - "title": "Together We Can Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version" - }, - { - "title": "Together We Can Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "Girl Power Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version" - }, - { - "title": "Girl Power Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "Cinderella Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version" - }, - { - "title": "Cinderella Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "A Dream Is A Wish Your Heart Makes Karaoke", - "id": "Cinderella (Disney) Karaoke Version" - }, - { - "title": "A Dream Is A Wish Your Heart Makes (with vocals) Karaoke", - "id": "Cinderella (Disney) Karaoke Version" - }, - { - "title": "Cheetah Sisters Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version" - }, - { - "title": "Cheetah Sisters Karaoke", - "id": "Cheetah Sisters (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "He's A Tramp Karaoke", - "id": "Lady and The Tramp (Disney) Karaoke Version" - }, - { - "title": "A Whole New World (Pop Version) Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "A Whole New World (Pop Version) Vocals Karaoke", - "id": "Aladdin (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "He's A Tramp (with vocals) Karaoke", - "id": "Lady and The Tramp (Disney) Karaoke Version" - }, - { - "title": "Nothing But Love Karaoke", - "id": "Zombie's 3 (Disney) Karaoke Version" - }, - { - "title": "One Jump Ahead - Reprise Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "One Jump Ahead - Reprise (with vocals) Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "A Whole New World Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "A Whole New World (with vocals) Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "Proud of Your Boy Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "Proud Of Your Boy Karaoke (with vocals)", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "Friend Like Me Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "Friend Like Me (with vocals) Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "One Jump Ahead Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "One Jump Ahead Karaoke (with vocals)", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "Prince Ali Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "Prince Ali Karaoke", - "id": "Aladdin (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "Arabian Nights Karaoke", - "id": "Aladdin (Disney) Karaoke Version" - }, - { - "title": "Arabian Nights Karaoke", - "id": "Aladdin (Disney) Karaoke Version (With Vocals)" - }, - { - "title": "Bakit Sinta Karaoke", - "id": "Paul Sapiera Karaoke Version" - }, - { - "title": "Bakit Sinta Karaoke", - "id": "Paul Sapiera Karaoke Version (With Vocals)" - }, - { - "title": "Put On A Happy Face Karaoke", - "id": "Bye Bye Birdie Karaoke Version" - }, - { - "title": "Anything You Can Do Karaoke", - "id": "Annie Get Your Gun Karaoke Version" - }, - { - "title": "Try To Remember Karaoke", - "id": "The Fantasticks Karaoke Version" - }, - { - "title": "Corner Of The Sky Karaoke", - "id": "Pippin Karaoke Version" - }, - { - "title": "Cabaret Karaoke", - "id": "Cabaret Karaoke Version" - }, - { - "title": "Money Makes The World Go Round Karaoke", - "id": "Cabaret Karaoke Version" - }, - { - "title": "I'm Gonna Wash That Man Right Outa My Hair Karaoke", - "id": "South Pacific Karaoke Version" - }, - { - "title": "Till There Was You Karaoke", - "id": "The Music Man Shirley Jones Karaoke Version" - }, - { - "title": "Thank Heaven For Little Girls Karaoke", - "id": "Gigi The Movie Karaoke Version" - }, - { - "title": "There's No Business Like Show Business Karaoke", - "id": "Annie Get Your Gun Karaoke Version" - }, - { - "title": "If I Were a Rich Man Karaoke", - "id": "Chaim Topol Karaoke Version" - }, - { - "title": "Lumuhod Ka Sa Lupa Karaoke", - "id": "Basil Valdez Karaoke Version" - }, - { - "title": "Lumuhod Ka Sa Lupa Karaoke", - "id": "Basil Valdez Karaoke Version (With Vocals)" - }, - { - "title": "Stella Maris Karaoke", - "id": "Jamie Rivera Karaoke Version" - }, - { - "title": "Stella Maris Karaoke", - "id": "Jamie Rivera Karaoke Version (With Vocals)" - }, - { - "title": "Hilumin Mo, Bayan Ko Karaoke", - "id": "Jamie Rivera Karaoke Version" - }, - { - "title": "Hilumin Mo, Bayan Ko Karaoke", - "id": "Jamie Rivera Karaoke Version (With Vocals)" - }, - { - "title": "Kahanga Hanga Karaoke", - "id": "E. Hontivero SJ. R. Corpuz Karaoke Version" - }, - { - "title": "Kahanga Hanga Karaoke", - "id": "E. Hontivero SJ. R. Corpuz Karaoke Version (With Vocals)" - }, - { - "title": "Reflection (with vocals) Karaoke", - "id": "Mulan (Disney) Karaoke Version" - }, - { - "title": "Reflection Karaoke", - "id": "Mulan (Disney) Karaoke Version" - }, - { - "title": "Colour's Of The Wind Karaoke", - "id": "Pocahontas Karaoke Version" - }, - { - "title": "Colour's of The Wind (with vocals) Karaoke", - "id": "Pocahontas (Disney) Karaoke Version" - }, - { - "title": "Beauty and The Beast (with vocals) Karaoke", - "id": "Beauty and The Beast Karaoke Version" - }, - { - "title": "Beauty and The Beast Karaoke", - "id": "Beauty and The Beast (Disney) Karaoke Version" - }, - { - "title": "Part of Your World (with vocals) Karaoke", - "id": "The Little Mermaid (Disney) Karaoke Version" - }, - { - "title": "Part of Your World Karaoke", - "id": "The Little Mermaid (Disney) Karaoke Version" - }, - { - "title": "Ikaw Na Kaya Karaoke", - "id": "Tootsie Guevara Karaoke Version" - }, - { - "title": "Ikaw Na Kaya Karaoke", - "id": "Tootsie Guevara Karaoke Version (With Vocals)" - }, - { - "title": "Sabihin Mo Na Karaoke", - "id": "Tootsie Guevara Karaoke Version" - }, - { - "title": "Sabihin Mo Na Karaoke", - "id": "Tootsie Guevara Karaoke Version (With Vocals)" - }, - { - "title": "Katulad Ng Sa Akin Karaoke", - "id": "Tootsie Guevara Karaoke Version" - }, - { - "title": "Katulad Ng Sa Akin Karaoke", - "id": "Tootsie Guevara Karaoke Version (With Vocals)" - }, - { - "title": "What Life Is All About Karaoke", - "id": "Carol Banawa Karaoke Version (With Vocals)" - }, - { - "title": "Ode To My Car Karaoke", - "id": "Adam Sandler Karaoke Version" - }, - { - "title": "Sweet Jane Karaoke", - "id": "Lou Reed Karaoke Version" - }, - { - "title": "We're Havin' A Party Karaoke", - "id": "Southside Johnny Karaoke Version" - }, - { - "title": "Just What The Doctor Ordered Karaoke", - "id": "Ted Nugent Karaoke Version" - }, - { - "title": "Just Around The Riverbend (with vocals) Karaoke", - "id": "Pocahontas (Disney) Karaoke Version" - }, - { - "title": "Everything About You Karaoke", - "id": "Ugly Kid Joe Karaoke Version" - }, - { - "title": "Just Around The Riverbend Karaoke", - "id": "Pocahontas (Disney) Karaoke Version" - }, - { - "title": "Is It My Body Karaoke", - "id": "Alice Cooper Karaoke Version" - }, - { - "title": "Look at Little Sister Karaoke", - "id": "Stevie Ray Vaughan Karaoke Version" - }, - { - "title": "Love Stinks Karaoke", - "id": "J. Geils Band Karaoke Version" - }, - { - "title": "Love Somebody Karaoke", - "id": "Morgan Wallen Karaoke Version" - }, - { - "title": "Shaking Karaoke", - "id": "Eddie Money Karaoke Version" - }, - { - "title": "Esperanza Karaoke", - "id": "April Boy Regino Karaoke Version" - }, - { - "title": "Esperanza (with vocals) Karaoke", - "id": "April Boy Regino Karaoke Version" - }, - { - "title": "Dance The Night Away Karaoke", - "id": "Van Halen Karaoke Version" - }, - { - "title": "I'm Finally Me Karaoke", - "id": "Zombie's 3 Karaoke Version" - }, - { - "title": "Goodbye To Romance Karaoke", - "id": "Ozzy Osbourne Karaoke Version" - }, - { - "title": "Fired Up Karaoke", - "id": "Zombie's 3 Karaoke Version" - }, - { - "title": "Closer Karaoke", - "id": "Nine Inch Nails Karaoke Version" - }, - { - "title": "Beer Drinkers & Hell Raisers Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "Hey Bartender Karaoke", - "id": "Blues Brothers Karaoke Version" - }, - { - "title": "Paniwalaan Karaoke", - "id": "Brownman Revival Karaoke Version" - }, - { - "title": "Exceptional Zed Karaoke", - "id": "Zombie's 3 Karaoke Version" - }, - { - "title": "Paniwalaan Karaoke", - "id": "Brownman Revival Karaoke Version (With Vocals)" - }, - { - "title": "Sa Mata Makikita Karaoke", - "id": "Roel Cortez Karaoke Version" - }, - { - "title": "Sa Mata Makikita Karaoke", - "id": "Roel Cortez Karaoke Version (With Vocals)" - }, - { - "title": "Nice 'n' Easy Karaoke", - "id": "Frank Sinatra Karaoke Version" - }, - { - "title": "Come On Out Karaoke", - "id": "Zombie's 3 Karaoke Version" - }, - { - "title": "Into the Night Karaoke", - "id": "Benny Mardones Karaoke Version" - }, - { - "title": "Fantasy Karaoke", - "id": "Mariah Carey Karaoke Version" - }, - { - "title": "Anything For Your Love Karaoke", - "id": "Eric Clapton Karaoke Version" - }, - { - "title": "Sara Smile Karaoke", - "id": "Daryl Hall & John Oates Karaoke Version" - }, - { - "title": "Lights Karaoke", - "id": "Journey Karaoke Version" - }, - { - "title": "Don't Let Me Be Lonely Tonight Karaoke", - "id": "James Taylor Karaoke Version" - }, - { - "title": "Love Hurts Karaoke", - "id": "Nazareth Karaoke Version" - }, - { - "title": "When The Levee Breaks Karaoke", - "id": "Led Zeppelin Karaoke Version" - }, - { - "title": "Fire And Ice Karaoke", - "id": "Pat Benatar Karaoke Version" - }, - { - "title": "Dream A Little Dream Of Me Karaoke", - "id": "The Mama's & The Papa's Karaoke Version" - }, - { - "title": "Vienna Karaoke", - "id": "Billy Joel Karaoke Version" - }, - { - "title": "Can We Still Be Friends Karaoke", - "id": "Todd Rundgren Karaoke Version" - }, - { - "title": "Stuck On You Karaoke", - "id": "Bobby Caldwell Karaoke Version" - }, - { - "title": "At Seventeen Karaoke", - "id": "Janis Ian Karaoke Version" - }, - { - "title": "New York State Of Mind Karaoke", - "id": "Billy Joel Karaoke Version" - }, - { - "title": "Beyond Karaoke", - "id": "Moana 2 Karaoke Version" - }, - { - "title": "Love's What You're Getting For Christmas Karaoke", - "id": "Bobby Sherman Karaoke Version" - }, - { - "title": "I Saw Mommy Kissing Santa Claus Karaoke", - "id": "Bobby Sherman Karaoke Version" - }, - { - "title": "O Christmas Tree Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "O Christmas Tree (with vocals) Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "From All Of Us To All Of You Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "From All Of Us To All Of You (with vocals) Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Deck The Halls Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Deck The Halls (with vocals) Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Jingle Bells Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Jingle Bells (with vocals) Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Santa Clause Is Coming To Town Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Santa Clause Is Coming To Town (with vocals) Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "We Wish You A Merry Christmas Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "We Wish You a Merry Christmas (with vocals) Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Rudolph The Red Nosed Reindeer Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Rudolph The Red Nosed Reindeer (with vocals) Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Twelve Days Of Christmas Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Twelve Days Of Christmas (with vocals) Karaoke", - "id": "Disney Christmas Karaoke Version" - }, - { - "title": "Girl In The Band Karaoke", - "id": "Lizzie McGuire Karaoke Version" - }, - { - "title": "Girl In The Band (with vocals) Karaoke", - "id": "Lizzie McGuire Karaoke Version" - }, - { - "title": "Have A Nice Life Karaoke", - "id": "Lizzie McGuire Karaoke Version" - }, - { - "title": "Have A Nice Life (with vocals) Karaoke", - "id": "Lizzie McGuire Karaoke Version" - }, - { - "title": "Supermodel Karaoke", - "id": "Lizzie McGuire Karaoke Version" - }, - { - "title": "Supermodel (with vocals) Karaoke", - "id": "Lizzie McGuire Karaoke Version" - }, - { - "title": "Darling I Karaoke", - "id": "Tyler The Creator ft Teezo Touchdown Karaoke Version" - }, - { - "title": "Tide Is High (Get The Feeling) (with vocals) Karaoke", - "id": "Disney Lizzie McGuire Karaoke Version" - }, - { - "title": "Tide Is High (Get The Feeling) Karaoke", - "id": "Disney Lizzie McGuire Karaoke Version" - }, - { - "title": "Lizzie McGuire Theme (with vocals) Karaoke", - "id": "Lizzie McGuire Karaoke Version" - }, - { - "title": "Lizzie McGuire Theme Karaoke", - "id": "Disney Lizzie McGuire Karaoke Version" - }, - { - "title": "What Dreams Are Made Of Karaoke", - "id": "Lizzie McGuire Karaoke Version" - }, - { - "title": "What Dreams Are Made Of (with vocals) Karaoke", - "id": "Lizzie McGuire Karaoke Version" - }, - { - "title": "How Can I Tell You Karaoke", - "id": "Wency Cornejo Karaoke Version" - }, - { - "title": "How Can I Tell You (with vocals) Karaoke", - "id": "Wency Cornejo Karaoke Version" - }, - { - "title": "Why Not Karaoke", - "id": "Hilary Duff Karaoke Version" - }, - { - "title": "Why Not (with vocals) Karaoke", - "id": "Hilary Duff Karaoke Version" - }, - { - "title": "Iisa Pa Lamang Karaoke", - "id": "Joey Albert Karaoke Version" - }, - { - "title": "Iisa Pa Lamang (with vocals) Karaoke", - "id": "Joey Albert Karaoke Version" - }, - { - "title": "I Can't Wait (With Vocals) Karaoke", - "id": "Hilary Duff Karaoke Version" - }, - { - "title": "I Can't Wait Karaoke", - "id": "Hilary Duff Karaoke Version" - }, - { - "title": "Grim Grinning Ghosts Karaoke", - "id": "Disney Karaoke Version" - }, - { - "title": "Grim Grinning Ghosts (With Vocals) Karaoke", - "id": "Disney Karaoke Version" - }, - { - "title": "The Bear Band Serenade Karaoke", - "id": "Disney Karaoke Version" - }, - { - "title": "The Bear Band Serenade (With Vocals) Karaoke", - "id": "Disney Karaoke Version" - }, - { - "title": "This Moment In Time Karaoke", - "id": "Engelbert Humperdinck Karaoke Version" - }, - { - "title": "Smoking Gun Karaoke", - "id": "Robert Cray Karaoke Version" - }, - { - "title": "I'm A King Bee - Back Door Man Karaoke", - "id": "Frank Marino Karaoke Version" - }, - { - "title": "Fight For Your Right To Party Karaoke", - "id": "Beastie Boys Karaoke Version" - }, - { - "title": "Don't Think Twice, It's All Right Karaoke", - "id": "Eric Clapton Karaoke Version" - }, - { - "title": "Rock Candy Karaoke", - "id": "Montrose Karaoke Version" - }, - { - "title": "Runaway Karaoke", - "id": "Bon Jovi Karaoke Version" - }, - { - "title": "Ain't Wasting Time No More Karaoke", - "id": "The Allman Brothers Karaoke Version" - }, - { - "title": "A Matter Of Trust Karaoke", - "id": "Billy Joel Karaoke Version" - }, - { - "title": "There's A Great Big Beautiful Tomorrow Karaoke", - "id": "Disney Karaoke Version" - }, - { - "title": "Working For The Weekend Karaoke", - "id": "Loverboy Karaoke Version" - }, - { - "title": "Everybody Has A Laughing Place Karaoke", - "id": "Disney (Theme Park Favourites) Karaoke Version" - }, - { - "title": "Everybody Has A Laughing Place Karaoke", - "id": "Disney (Theme Park Favourites) Karaoke Version (Vocals)" - }, - { - "title": "Remember When Karaoke", - "id": "Disney (Theme Park Favourites) Karaoke Version (With Vocals)" - }, - { - "title": "Remember When Karaoke", - "id": "Disney (Theme Park Favourites) Karaoke Version" - }, - { - "title": "Yo Ho (A Pirate's Life For Me) Karaoke", - "id": "Disney (Theme Park Favourites) Karaoke Version" - }, - { - "title": "Yo Ho (A Pirate's Life For Me) Karaoke", - "id": "Disney (Theme Park Favourites) Karaoke Version (Vocals)" - }, - { - "title": "Heffalumps And Woozles Karaoke", - "id": "Disney (Theme Park Favourites) Karaoke Version (With Vocals)" - }, - { - "title": "Heffalumps And Woozles Karaoke", - "id": "Disney (Theme Park Favourites) Karaoke Version" - }, - { - "title": "There's A Great Big Beautiful Tomorrow Karaoke", - "id": "Disney (Theme Park Favourites) Karaoke Version" - }, - { - "title": "Fire Down Below Karaoke", - "id": "Bob Seger Karaoke Version" - }, - { - "title": "Shake Your Tailfeather Karaoke", - "id": "Ray Charles Karaoke Version" - }, - { - "title": "Rock Me On The Water Karaoke", - "id": "Jackson Browne Karaoke Version" - }, - { - "title": "It's A Small World Karaoke - Disney (Theme Park Favourites) Karaoke Version", - "id": "87oZZ2TJ_v4" - }, - { - "title": "I Saw The Light Karaoke", - "id": "Todd Rundgren Karaoke Version" - }, - { - "title": "It's Still Rock and Roll to Me Karaoke", - "id": "Billy Joel Karaoke Version" - }, - { - "title": "Harmony Karaoke", - "id": "Elton John Karaoke Version" - }, - { - "title": "Suffragette City Karaoke", - "id": "David Bowie Karaoke Version" - }, - { - "title": "One Thing Leads To Another Karaoke", - "id": "Fixx Karaoke Version" - }, - { - "title": "Pump It Up Karaoke", - "id": "Elvis Costello Karaoke Version" - }, - { - "title": "From The Beginning Karaoke", - "id": "Emerson Lake And Palmer Karaoke Version" - }, - { - "title": "Take My Breath Away Karaoke", - "id": "Rex Smith Karaoke Version" - }, - { - "title": "Space Cowboy Karaoke", - "id": "Steve Miller Karaoke Version" - }, - { - "title": "Send Me A Sign Karaoke", - "id": "John Lewis Christmas Advert Karaoke Version" - }, - { - "title": "Alien Invasion Karaoke", - "id": "Zombie's 3 Karaoke Version" - }, - { - "title": "Mahal Kita Walang Iba Karaoke", - "id": "Ogie Alcasid Karaoke Version" - }, - { - "title": "Mahal Kita Walang Iba Karaoke", - "id": "Ogie Alcasid Karaoke Version (With Vocals)" - }, - { - "title": "Sex And Drugs And Rock And Roll Karaoke", - "id": "Ian Dury And The Blockheads Karaoke Version" - }, - { - "title": "Sanay Laging Magkapiling Karaoke", - "id": "April Boys Karaoke Version" - }, - { - "title": "Sanay Laging Magkapiling Karaoke", - "id": "April Boys Karaoke Version (With Vocals)" - }, - { - "title": "Sayang Karaoke", - "id": "Claire Dela Fuente Karaoke Version" - }, - { - "title": "Sayang Karaoke", - "id": "Claire Dela Fuente Karaoke Version (With Vocals)" - }, - { - "title": "Masdan Mo Ang Kapaligiran Karaoke", - "id": "Asin Karaoke Version" - }, - { - "title": "Masdan Mo Ang Kapaligiran Karaoke", - "id": "Asin Karaoke Version (With Vocals)" - }, - { - "title": "Paano Kaya Karaoke", - "id": "Jessa Zaragoza Karaoke Version" - }, - { - "title": "Paano Kaya Karaoke", - "id": "Jessa Zaragoza Karaoke Version (With Vocals)" - }, - { - "title": "Umiiyak Ang Puso Ko Karaoke", - "id": "April Boy Regino Karaoke Version" - }, - { - "title": "Umiiyak Ang Puso Ko Karaoke", - "id": "April Boy Regino Karaoke Version (With Vocals)" - }, - { - "title": "Tamis Ng Unang Halik Karaoke", - "id": "Kristina Paner Karaoke Version" - }, - { - "title": "Tamis Ng Unang Halik Karaoke", - "id": "Kristina Paner Karaoke Version (With Vocals)" - }, - { - "title": "One For My Baby Karaoke", - "id": "Frank Sinatra Karaoke Version" - }, - { - "title": "Trying To Get The Feeling Again Karaoke", - "id": "Barry Manilow Karaoke Version" - }, - { - "title": "Breaking Up Is Hard To Do Karaoke", - "id": "Boston Karaoke Version" - }, - { - "title": "Ain't No Doubt About It Karaoke", - "id": "Zombie's 3 Karaoke Version" - }, - { - "title": "We Own The Night Karaoke", - "id": "Zombie's 2 Karaoke Version" - }, - { - "title": "One Perfect Moment Karaoke", - "id": "Bring It On The Musical Karaoke Version" - }, - { - "title": "A Man I'll Never Be Karaoke", - "id": "Boston Karaoke Version" - }, - { - "title": "Question 67 & 68 Karaoke", - "id": "Chicago Karaoke Version" - }, - { - "title": "Hard To Handle Karaoke", - "id": "The Black Crowes Karaoke Version" - }, - { - "title": "Interstate Love Song Karaoke", - "id": "Stone Temple Pilots Karaoke Version" - }, - { - "title": "Jamie's Cryin' Karaoke", - "id": "Van Halen Karaoke Version" - }, - { - "title": "Like The Way I Do Karaoke", - "id": "Melissa Etheridge Karaoke Version" - }, - { - "title": "We Got This Karaoke", - "id": "Zombie's 2 Karaoke Version" - }, - { - "title": "Kashmir Karaoke", - "id": "Led Zeppelin Karaoke Version" - }, - { - "title": "The New Kid In Town Karaoke", - "id": "Zombie's 2 (Baby Ariel) Karaoke Version" - }, - { - "title": "Someday (Reprise) Karaoke", - "id": "Zombie's 2 Karaoke Version" - }, - { - "title": "Tenth Avenue Freeze-Out Karaoke", - "id": "Bruce Springsteen Karaoke Version" - }, - { - "title": "Lumayo Ka Man Sa Akin Karaoke", - "id": "Rodel Naval Karaoke Version" - }, - { - "title": "Lumayo Ka Man Sa Akin Karaoke", - "id": "Rodel Naval Karaoke Version (With Vocals)" - }, - { - "title": "Kerrigan Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "One For All Karaoke", - "id": "Zombie's 2 Karaoke Version" - }, - { - "title": "Hi-De-Ho Karaoke", - "id": "Blood, Sweat & Tears Karaoke Version" - }, - { - "title": "Family Tradition Karaoke", - "id": "Hank Williams Jr. Karaoke Version" - }, - { - "title": "Unforgettable Karaoke", - "id": "Nat King Cole and Natalie Cole Karaoke Version" - }, - { - "title": "December '63 (Oh What A Night) Karaoke", - "id": "The Dells Karaoke Version" - }, - { - "title": "Love Can Build A Bridge Karaoke", - "id": "The Judds Karaoke Version" - }, - { - "title": "Like The Zombie's Do Karaoke", - "id": "Zombie's 2 Karaoke Version" - }, - { - "title": "Karn Evil 9 Karaoke", - "id": "Emerson, Lake & Palmer Karaoke Version" - }, - { - "title": "Beautiful Loser Karaoke", - "id": "Bob Seger Karaoke Version" - }, - { - "title": "Runnin' With The Devil Karaoke", - "id": "Van Halen Karaoke Version" - }, - { - "title": "Space Truckin' Karaoke", - "id": "Deep Purple Karaoke Version" - }, - { - "title": "Longview Karaoke", - "id": "Green Day Karaoke Version" - }, - { - "title": "Close My Eyes Forever Karaoke", - "id": "Ozzy Osbourne & Lita Ford Karaoke Version" - }, - { - "title": "I'm Winning Karaoke", - "id": "Zombie's 2 Karaoke Version" - }, - { - "title": "Goodbye To You Karaoke", - "id": "Scandal Karaoke Version" - }, - { - "title": "Flesh and Bone Karaoke", - "id": "Zombie's 2 Karaoke Version" - }, - { - "title": "The Kid Is Hot Tonight Karaoke", - "id": "Loverboy Karaoke Version" - }, - { - "title": "Suite Madame Blue Karaoke", - "id": "Styx Karaoke Version" - }, - { - "title": "Train Kept A Rollin Karaoke", - "id": "Aerosmith Karaoke Version" - }, - { - "title": "Dโ€™yer Makโ€™er Karaoke", - "id": "Led Zeppelin Karaoke Version" - }, - { - "title": "Time Karaoke", - "id": "Pink Floyd Karaoke Version" - }, - { - "title": "Badge Karaoke", - "id": "Cream Karaoke Version" - }, - { - "title": "Sunspot Baby Karaoke", - "id": "Bob Seger Karaoke Version" - }, - { - "title": "Spinning Wheel Karaoke", - "id": "Blood, Sweat & Tears Karaoke Version" - }, - { - "title": "Lucy In The Sky With Diamonds Karaoke", - "id": "The Beatles Karaoke Version" - }, - { - "title": "Bye Bye Love Karaoke", - "id": "The Everly Brothers Karaoke Version" - }, - { - "title": "Sugar Sugar Karaoke", - "id": "Magneto Karaoke Version" - }, - { - "title": "Thank God I'm A Country Boy Karaoke", - "id": "John Denver Karaoke Version" - }, - { - "title": "Mountain Music Karaoke", - "id": "Alabama Karaoke Version" - }, - { - "title": "Call To The Wild Karaoke", - "id": "Zombie's 2 Karaoke Version" - }, - { - "title": "Mammas Don't Let Your Babies Karaoke", - "id": "Willie Nelson & Waylon Jennings Karaoke Version" - }, - { - "title": "Gotta Find Where I Belong Karaoke", - "id": "Zombie's 2 Karaoke Version" - }, - { - "title": "You're No Good Karaoke", - "id": "Linda Ronstadt Karaoke Version" - }, - { - "title": "Somewhere Out There Karaoke", - "id": "Linda Ronstadt & James Ingram Karaoke Version" - }, - { - "title": "The Oak Ridge Boys Karaoke", - "id": "Elvira Karaoke Version" - }, - { - "title": "Heartbreak Hotel Karaoke", - "id": "Whitney Houston, Ft Kelly Price, Faith Evans Karaoke Version" - }, - { - "title": "Changes in Latitudes, Changes in Attitudes Karaoke", - "id": "Jimmy Buffett Karaoke Version" - }, - { - "title": "Summer Wind Karaoke", - "id": "Frank Sinatra Karaoke Version" - }, - { - "title": "Disease Karaoke", - "id": "Lady Gaga Karaoke Version" - }, - { - "title": "On The Road Again Karaoke", - "id": "Willie Nelson Karaoke Version" - }, - { - "title": "Forever & Ever Amen Karaoke", - "id": "Randy Travis Karaoke Version" - }, - { - "title": "The Dance Karaoke", - "id": "Garth Brooks Karaoke Version" - }, - { - "title": "Sixteen Tons Karaoke", - "id": "Tennessee Ernie Ford Karaoke Version" - }, - { - "title": "D-I-V-O-R-C-E Karaoke", - "id": "Tammy Wynette Karaoke Version" - }, - { - "title": "To All the Girls I've Loved Before Karaoke", - "id": "Julio Iglesias & Willie Nelson Karaoke Version" - }, - { - "title": "When A Man Loves A Woman Karaoke", - "id": "Michael Bolton Karaoke Version" - }, - { - "title": "I Think I Love You Karaoke", - "id": "The Partridge Family Karaoke Version" - }, - { - "title": "It's Only Make Believe Karaoke", - "id": "Conway Twitty Karaoke Version" - }, - { - "title": "Okie From Muskogee Karaoke", - "id": "Merle Haggard Karaoke Version" - }, - { - "title": "Macho Man Karaoke", - "id": "The Village People Karaoke Version" - }, - { - "title": "For The Good Times Karaoke", - "id": "Ray Price Karaoke Version" - }, - { - "title": "Brandy Karaoke", - "id": "Looking Glass Karaoke Version" - }, - { - "title": "Two of a Kind (Working on a Full House) Karaoke", - "id": "Garth Brooks Karaoke Version" - }, - { - "title": "Me & Bobby McGee Karaoke", - "id": "Janis Joplin Karaoke Version" - }, - { - "title": "Who Threw The Overalls In Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Friends In Low Places Karaoke", - "id": "Garth Brooks Karaoke Version" - }, - { - "title": "Stars Over Texas Karaoke", - "id": "Tracy Lawrence Karaoke Version" - }, - { - "title": "One Boy One Girl Karaoke", - "id": "Collin Raye Karaoke Version" - }, - { - "title": "It Matters To Me Karaoke", - "id": "Faith Hill Karaoke Version" - }, - { - "title": "Believe Me Baby (I Lied) Karaoke", - "id": "Trisha Yearwood Karaoke Version" - }, - { - "title": "When A Man Loves A Woman Karaoke", - "id": "Lee Roy Parnell Karaoke Version" - }, - { - "title": "Heads Carolina Tails California Karaoke", - "id": "Jo Dee Messina Karaoke Version" - }, - { - "title": "Starting Over Again Karaoke", - "id": "Reba McEntire Karaoke Version" - }, - { - "title": "Daddy's Money Karaoke", - "id": "Ricochet Karaoke Version" - }, - { - "title": "Guys Do It All The Time Karaoke", - "id": "Mindy McCready Karaoke Version" - }, - { - "title": "Iyong-Iyo (Ang Puso Ko) Karaoke", - "id": "Big Thing Karaoke Version" - }, - { - "title": "Iyong-Iyo (Ang Puso Ko) Karaoke", - "id": "Big Thing Karaoke Version (With Vocals)" - }, - { - "title": "Sana Man Lang Karaoke", - "id": "Roselle Nava Karaoke Version" - }, - { - "title": "Sana Man Lang Karaoke", - "id": "Roselle Nava Karaoke Version (With Vocals)" - }, - { - "title": "Muli Mong Mahalin Karaoke", - "id": "April Boys Karaoke Version" - }, - { - "title": "Muli Mong Mahalin Karaoke", - "id": "April Boys Karaoke Version (With Vocals)" - }, - { - "title": "Never Ever Say Goodbye Karaoke", - "id": "Nonoy Zuรฑiga Karaoke Version" - }, - { - "title": "Never Ever Say Goodbye Karaoke", - "id": "Nonoy Zuรฑiga Karaoke Version (With Vocals)" - }, - { - "title": "Tipo Kong Lalake Karaoke", - "id": "DJ Alvaro Karaoke Version" - }, - { - "title": "Tipo Kong Lalake Karaoke", - "id": "DJ Alvaro Karaoke Version (With Vocals)" - }, - { - "title": "If You're Not In It For Love Karaoke", - "id": "Shania Twain Karaoke Version" - }, - { - "title": "Sabi Mo Ako Lamang Karaoke", - "id": "Men Oppose Karaoke Version" - }, - { - "title": "Sabi Mo Ako Lamang Karaoke", - "id": "Men Oppose Karaoke Version (With Vocals)" - }, - { - "title": "Keeper Of The Stars Karaoke", - "id": "Tracy Byrd Karaoke Version" - }, - { - "title": "Whistling Gypsy Rover Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Here Comes The Rain Karaoke", - "id": "The Mavericks Karaoke Version" - }, - { - "title": "Sold (The Grundy County Auction Incident) Karaoke", - "id": "John Michael Montgomery Karaoke Version" - }, - { - "title": "Hurt Me Karaoke", - "id": "Leann Rimes Karaoke Version" - }, - { - "title": "My Maria Karaoke", - "id": "Brooks And Dunn Karaoke Version" - }, - { - "title": "Come To Poppa Karaoke", - "id": "Bob Seger Karaoke Version" - }, - { - "title": "Babe Karaoke", - "id": "Styx Karaoke Version" - }, - { - "title": "Whiskey In The Jar Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Baliw Na Puso Karaoke", - "id": "Jessa Zaragoza Karaoke Version (With Vocals)" - }, - { - "title": "Giliw Ko Karaoke", - "id": "Renz Verano Karaoke Version" - }, - { - "title": "Giliw Ko Karaoke", - "id": "Renz Verano Karaoke Version (With Vocals)" - }, - { - "title": "Be My Lady Karaoke", - "id": "Martin Nievera Karaoke Version" - }, - { - "title": "Be My Lady Karaoke", - "id": "Martin Nievera Karaoke Version (With Vocals)" - }, - { - "title": "Sana Ay Mahalin Mo Rin Ako Karaoke", - "id": "April Boys Karaoke Version" - }, - { - "title": "Sana Ay Mahalin Mo Rin Ako Karaoke", - "id": "April Boys Karaoke Version (With Vocals)" - }, - { - "title": "Kasalanan Ba Karaoke", - "id": "Men Oppose Karaoke Version" - }, - { - "title": "Kasalanan Ba Karaoke", - "id": "Men Oppose Karaoke Version (With Vocals)" - }, - { - "title": "When Irish Eyes Are Smiling Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Wearing of the Green Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "The Unicorn Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Too Ra Loo Ra Loo Ra Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Sweet Rosie O'Grady Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Saint Patrick's Day Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Beginnings Karaoke", - "id": "Chicago Karaoke Version" - }, - { - "title": "Sleigh Ride Karaoke", - "id": "Runaway June Karaoke Version" - }, - { - "title": "The Rose Of Tralee Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Peg O' My Heart Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Mahal Ka Sa Akin Karaoke", - "id": "Tootsie Guevara Karaoke Version" - }, - { - "title": "Mahal Ka Sa Akin Karaoke", - "id": "Tootsie Guevara Karaoke Version (With Vocals)" - }, - { - "title": "Ziggy Stardust Karaoke", - "id": "David Bowie Karaoke Version" - }, - { - "title": "My Wild Irish Rose Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Hold On Loosely Karaoke", - "id": "38 Special Karaoke Version" - }, - { - "title": "Stone Free Karaoke", - "id": "Jimi Hendrix Karaoke Version" - }, - { - "title": "Molly Malone Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Satisfied Karaoke", - "id": "Richard Marx Karaoke Version" - }, - { - "title": "Why Can't This Be Love Karaoke", - "id": "Van Halen Karaoke Version" - }, - { - "title": "The Irish Washerwoman Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "I'll Take You Home Again Kathleen Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Macnamara's Band Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Sana Bukas Pa Ang Kahapon Karaoke", - "id": "Angeline Quinto Karaoke Version" - }, - { - "title": "The Kerry Dance Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Magic Man Karaoke", - "id": "Heart Karaoke Version" - }, - { - "title": "Long Cool Woman In A Black Dress Karaoke", - "id": "The Hollies Karaoke Version" - }, - { - "title": "Thick Of It Karaoke", - "id": "KSI ft Trippie Redd Karaoke Version" - }, - { - "title": "Just Canโ€™t Help Feelin Karaoke", - "id": "Jessa Zaragoza Karaoke Version" - }, - { - "title": "Just Can't Help Feelin Karaoke", - "id": "Jessa Zaragoza (With Vocals) Karaoke Version" - }, - { - "title": "Minsan Karaoke", - "id": "Bert Dominic Karaoke Version (With Vocals)" - }, - { - "title": "Harrigan Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Taxi Karaoke", - "id": "Harry Chapin Karaoke Version" - }, - { - "title": "The Wild Rover Karaoke", - "id": "Irish Classics Karaoke Version" - }, - { - "title": "Ibang-Iba Ka Na Karaoke", - "id": "Renz Verano Karaoke Version" - }, - { - "title": "Ibang-Iba Ka Na Karaoke", - "id": "Renz Verano Karaoke Version (With Vocals)" - }, - { - "title": "Di Ko Kayang Tanggapin Karaoke", - "id": "April Boy Regino Karaoke Version" - }, - { - "title": "Sh-Boom Karaoke", - "id": "The Crew Cuts Karaoke Version" - }, - { - "title": "Johnny Angel Karaoke", - "id": "Shelly Faberes Karaoke Version" - }, - { - "title": "Di Ko Kayang Tanggapin Karaoke", - "id": "April Boy Regino Karaoke Version (With Vocals)" - }, - { - "title": "Smoke Gets In Your Eyes Karaoke", - "id": "The Platters Karaoke Version" - }, - { - "title": "Wake Up Little Susie Karaoke", - "id": "The Everly Brothers Karaoke Version" - }, - { - "title": "Locomotion Karaoke", - "id": "Little Eva Karaoke Version" - }, - { - "title": "You And I Karaoke", - "id": "Renz Verano Karaoke Version (With Vocals)" - }, - { - "title": "Can't Take My Eyes Off Of You Karaoke", - "id": "Frankie Valli Karaoke Version" - }, - { - "title": "All I Have To Do Is Dream Karaoke", - "id": "The Everly Brothers Karaoke Version" - }, - { - "title": "Banana Boat Song Karaoke", - "id": "Harry Belafonte Karaoke Version" - }, - { - "title": "The Lion Sleeps Tonight Karaoke", - "id": "The Tokens Karaoke Version" - }, - { - "title": "Teenager In Love Karaoke", - "id": "Dion And The Belmonts Karaoke Version" - }, - { - "title": "Fun Fun Fun Karaoke", - "id": "The Beach Boys Karaoke Version" - }, - { - "title": "Love Potion No.9. Karaoke", - "id": "The Searchers Karaoke Version" - }, - { - "title": "Louie Louie Karaoke", - "id": "The Kingsman Karaoke Version" - }, - { - "title": "Pag-Ibig ko Sa Iyo'Y 'Di Magbabago Karaoke", - "id": "Men Oppose Karaoke Version" - }, - { - "title": "Walang Kapantay Karaoke", - "id": "Cely Bautista Karaoke Version (With Vocals)" - }, - { - "title": "You Made Me Live Again Karaoke", - "id": "Janet Basco Karaoke Version (With Vocals)" - }, - { - "title": "Luha Karaoke", - "id": "Aegis Karaoke Version" - }, - { - "title": "Kahit Sino Karaoke", - "id": "Richard Reynoso Karaoke Version" - }, - { - "title": "Kahit Sino Karaoke", - "id": "Richard Reynoso Karaoke Version" - }, - { - "title": "Secret Agent Man Karaoke", - "id": "Johnny Rivers Karaoke Version" - }, - { - "title": "APT (Duet) Karaoke", - "id": "Rose and Bruno Mars Karaoke Version" - }, - { - "title": "Memories Of Our Dreams Karaoke", - "id": "Eddie Peregrina Karaoke Version" - }, - { - "title": "Na Na Hey Hey Karaoke", - "id": "Steam Karaoke Version" - }, - { - "title": "Memories Of Our Dreams Karaoke", - "id": "Eddie Peregrina (With Vocals) Karaoke Version" - }, - { - "title": "White Rabbitt Karaoke", - "id": "Jefferson Airplane Karaoke Version" - }, - { - "title": "Ipaglalaban Ko Karaoke", - "id": "Freddie Aguilar Karaoke Version (With Vocals)" - }, - { - "title": "Have You Ever Seen The Rain Karaoke", - "id": "Creedence Clearwater Revival Karaoke Version" - }, - { - "title": "Ilang Taon Akong Umasa Karaoke", - "id": "Renz Verano Karaoke Version" - }, - { - "title": "Ipaglalaban Ko Karaoke", - "id": "Freddie Aguilar Karaoke Version" - }, - { - "title": "Gloria Karaoke", - "id": "Van Morrison Karaoke Version" - }, - { - "title": "Ilang Taon Akong Umasa Karaoke", - "id": "Renz Verano Karaoke Version (With Vocals)" - }, - { - "title": "My Boyfriend's Back Karaoke", - "id": "The Angels Karaoke Version" - }, - { - "title": "In The Still Of The Night Karaoke", - "id": "The Five Satins Karaoke Version" - }, - { - "title": "La Bamba Karaoke", - "id": "Ritchie Valens Karaoke Version" - }, - { - "title": "Runaround Sue Karaoke", - "id": "Dion And The Belmonts Karaoke Version" - }, - { - "title": "APT Karaoke", - "id": "Rose and Bruno Mars Karaoke Version" - }, - { - "title": "The Weight Karaoke", - "id": "The Band Karaoke Version" - }, - { - "title": "Midnight Confessions Karaoke", - "id": "The Grass Roots Karaoke Version" - }, - { - "title": "Signs Karaoke", - "id": "Five Man Electrical Band Karaoke Version" - }, - { - "title": "Dream On Karaoke", - "id": "Aerosmith Karaoke Version" - }, - { - "title": "Back in the U.S.S.R. Karaoke", - "id": "The Beatles Karaoke Version" - }, - { - "title": "Ramblin' Man Karaoke", - "id": "The Allman Brothers Karaoke Version" - }, - { - "title": "Walang Ibang Mamahalin Karaoke", - "id": "Renz Verano Karaoke Version" - }, - { - "title": "Walang Ibang Mamahalin Karaoke", - "id": "Renz Verano Karaoke Version (With Vocals)" - }, - { - "title": "Tanging Mamahali'y Ika Karaoke", - "id": "Roselle Nava Karaoke Version" - }, - { - "title": "Moondance Karaoke", - "id": "Van Morrison Karaoke Version" - }, - { - "title": "Garden Party Karaoke", - "id": "Ricky Nelson Karaoke Version" - }, - { - "title": "Stop Dragginโ€™ My Heart Around Karaoke", - "id": "Tom Petty & Stevie Nicks Karaoke Version" - }, - { - "title": "Your Mama Don't Dance Karaoke", - "id": "Loggins and Messina Karaoke Version" - }, - { - "title": "Nobody Karaoke", - "id": "Sylvia Karaoke Version" - }, - { - "title": "Somewhere Out There Karaoke", - "id": "James Ingram and Linda Ronstadt Karaoke Version" - }, - { - "title": "Dreams Karaoke", - "id": "Fleetwood Mac Karaoke Version" - }, - { - "title": "Something To Talk About Karaoke", - "id": "Bonnie Raitt Karaoke Version" - }, - { - "title": "The Rose Karaoke", - "id": "Bette Midler Karaoke Version" - }, - { - "title": "Always Karaoke", - "id": "Atlantic Starr Karaoke Version" - }, - { - "title": "Bust A Move Karaoke", - "id": "Young MC Karaoke (Duet Version)" - }, - { - "title": "Paano Ang Puso Ko Karaoke", - "id": "April Boy Regino Karaoke Version" - }, - { - "title": "Some Kind Of Wonderfull Karaoke", - "id": "Grand Funk Railroad Karaoke Version" - }, - { - "title": "I'll See You In my Dreams Karaoke", - "id": "Pat Boone Karaoke Version" - }, - { - "title": "Margaritaville Karaoke", - "id": "Jimmy Buffett Karaoke Version" - }, - { - "title": "Too Much, Too Little, Too Late Karaoke", - "id": "Johnny Mathis And Deniece Williams Karaoke Version" - }, - { - "title": "One In A Million Karaoke", - "id": "Larry Graham Karaoke Version" - }, - { - "title": "Wanted Dead Or Alive Karaoke", - "id": "Bon Jovi Karaoke Version" - }, - { - "title": "Come To My Window Karaoke", - "id": "Melissa Etheridge Karaoke Version" - }, - { - "title": "Just Once Karaoke", - "id": "James Ingram Karaoke Version" - }, - { - "title": "On The Wings Of Love Karaoke", - "id": "Jeffrey Osbourne Karaoke Version" - }, - { - "title": "At This Moment Karaoke", - "id": "Billy Vera And The Beaters Karaoke Version" - }, - { - "title": "Black Water Karaoke", - "id": "The Doobie Brothers Karaoke Version" - }, - { - "title": "Love Will Keep Us Together Karaoke", - "id": "Captain And Tenille Karaoke Version" - }, - { - "title": "Gintong Araw Karaoke", - "id": "Bing Rodrigo Karaoke Version" - }, - { - "title": "Let Me Be There Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Sigarilyo Karaoke", - "id": "Freddie Aguilar Karaoke Version (With Vocals)" - }, - { - "title": "Keep Your Hands To Yourself Karaoke", - "id": "Georgia Satellites Karaoke Version" - }, - { - "title": "When Will I Be Loved Karaoke", - "id": "Linda Ronstadt Karaoke Version" - }, - { - "title": "You're Sixteen Karaoke", - "id": "Ringo Starr Karaoke Version" - }, - { - "title": "Bust A Move Karaoke", - "id": "Young MC Karaoke Version" - }, - { - "title": "It's Still Rock And Roll To Me Karaoke", - "id": "Billy Joel Karaoke Version" - }, - { - "title": "Silver Springs Karaoke", - "id": "Fleetwood Mac Karaoke Version" - }, - { - "title": "Please Remember Me Karaoke", - "id": "Tim McGraw Karaoke Version" - }, - { - "title": "Leaving On A Jet Plane Karaoke", - "id": "Peter, Paul And Mary Karaoke Version" - }, - { - "title": "Angel Karaoke", - "id": "Sarah McLachlan Karaoke Version" - }, - { - "title": "Blue Bayou Karaoke", - "id": "Linda Ronstadt Karaoke Version" - }, - { - "title": "You're So Vain Karaoke", - "id": "Carly Simon Karaoke Version" - }, - { - "title": "Reunited Karaoke", - "id": "Peaches & Herb Karaoke Version" - }, - { - "title": "I Will Remember You Karaoke", - "id": "Sarah Mclachlan Karaoke Version" - }, - { - "title": "Bottom Of This Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Blue Jean Blues Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "Belle Of The Ball Karaoke", - "id": "Waylon Jennings Karaoke Version" - }, - { - "title": "All At Once Karaoke", - "id": "Bonnie Raitt Karaoke Version" - }, - { - "title": "Miracles Karaoke", - "id": "Pet Shop Boys Karaoke Version" - }, - { - "title": "Believe You Me Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Little Things Mean Alot Karaoke", - "id": "Willie Neslon Karaoke Version" - }, - { - "title": "MacArthur Park Karaoke", - "id": "Waylon Jennings Karaoke Version" - }, - { - "title": "Love Make Me Strong Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "This Will Be (An Everlasting Love) Karaoke", - "id": "Natalie Cole Karaoke Version" - }, - { - "title": "Adia Karaoke", - "id": "Sarah McLachlan Karaoke Version" - }, - { - "title": "Fancy Karaoke", - "id": "Reba McEntire Karaoke Version" - }, - { - "title": "That Don't Impress Me Much Karaoke", - "id": "Shania Twain Karaoke Version" - }, - { - "title": "Turn The Page Karaoke", - "id": "Bob Segar Karaoke Version" - }, - { - "title": "Two Pina Coladas Karaoke", - "id": "Garth Brooks Karaoke Version" - }, - { - "title": "You've Got A Way Karaoke", - "id": "Shania Twain Karaoke Version" - }, - { - "title": "Zoot Suit Riot Karaoke", - "id": "Cherry Poppin Daddies Karaoke Version" - }, - { - "title": "B**ch Karaoke", - "id": "Meredith Brooks Karaoke Version" - }, - { - "title": "I Want To Come Over Karaoke", - "id": "Melissa Etheridge Karaoke Version" - }, - { - "title": "Valentine Karaoke", - "id": "Martina McBride Karaoke Version" - }, - { - "title": "Music Karaoke", - "id": "Madonna Karaoke Version" - }, - { - "title": "You Light Up My Life Karaoke", - "id": "Leann Rimes Karaoke Version" - }, - { - "title": "Blue Karaoke", - "id": "Leann Rimes Karaoke Version" - }, - { - "title": "The Sweetest Thing Karaoke", - "id": "Juice Newton Karaoke Version" - }, - { - "title": "Ain't Much Left Of Me Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Break It To Me Gently Karaoke", - "id": "Juice Newton Karaoke Version" - }, - { - "title": "You Were Meant For Me Karaoke", - "id": "Jewel Karaoke Version" - }, - { - "title": "Foolish Games Karaoke", - "id": "Jewel Karaoke Version" - }, - { - "title": "This Kiss Karaoke", - "id": "Faith Hill Karaoke Version" - }, - { - "title": "Strawberry Wine Karaoke", - "id": "Deana Carter Karaoke Version" - }, - { - "title": "You Oughta Know Karaoke", - "id": "Alanis Morissette Karaoke Version" - }, - { - "title": "Did I Shave My Legs For This Karaoke", - "id": "Deana Carter Karaoke Version" - }, - { - "title": "When You Say Nothing At All Karaoke", - "id": "Alison Krauss Karaoke Version" - }, - { - "title": "The Choking Kind Karaoke", - "id": "Waylon Jennings Karaoke Version" - }, - { - "title": "Kryptonite Karaoke", - "id": "3 Doors Down Karaoke Version" - }, - { - "title": "Livinโ€™ in Desperate Times Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Letโ€™s Talk About Tomorrow Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Laugh Or Cry Karaoke", - "id": "Yvonne Carroll Karaoke Version" - }, - { - "title": "Iโ€™m a Small and Lonely Light Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Days Of Wine And Roses Karaoke", - "id": "Frank Sinatra Karaoke Version" - }, - { - "title": "If You Love Me Karaoke", - "id": "Ronan Keating Karaoke Version" - }, - { - "title": "The Devil Went Down To Georgia Karaoke", - "id": "Charlie Daniels Band Karaoke Version" - }, - { - "title": "I Need Love Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Hands Across The Sea Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Deeper Than A River Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "I Just Threw Out The Love Of My Dreams Karaoke", - "id": "Weezer Karaoke Version" - }, - { - "title": "Exit Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Iโ€™m Bad, Iโ€™m Nationwide Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "Baa Baa Black Sheep Karaoke", - "id": "Nursery Rhymes Karaoke Version" - }, - { - "title": "You and Me Karaoke", - "id": "Descendants 2 Karaoke Version" - }, - { - "title": "Someday Karaoke", - "id": "Zombie's Karaoke Version" - }, - { - "title": "Stand Karaoke", - "id": "Zombie's Karaoke Version" - }, - { - "title": "If We Only Have Love Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Kumusta Ka Karaoke", - "id": "Freddie Aguilar Karaoke Version" - }, - { - "title": "A Little Bit Of Soap Karaoke", - "id": "Yvonne Carroll Karaoke Version" - }, - { - "title": "Drinking Muddy Water Karaoke", - "id": "Yardbirds Karaoke Version" - }, - { - "title": "If I Ever Had To Say Goodbye To You Karaoke", - "id": "Wayne newton Karaoke Version" - }, - { - "title": "Don't Set Me Free Karaoke", - "id": "Ray Charles Karaoke Version" - }, - { - "title": "Got Me Under Pressure Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "Mantra Karaoke", - "id": "Jennie Karaoke Version" - }, - { - "title": "The Charlie Daniels Band Karaoke", - "id": "Long Haired Country Boy Karaoke Version" - }, - { - "title": "I Was Lost, I Was Drifting Karaoke", - "id": "Tony Bennett Karaoke Version" - }, - { - "title": "Vigilante S**t Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Down Came The World Karaoke", - "id": "Waylon Jennings Karaoke Version" - }, - { - "title": "Delaware Karaoke", - "id": "Perry Como Karaoke Version" - }, - { - "title": "Cedartown Georgia Karaoke", - "id": "Waylon Jennings Karaoke Version" - }, - { - "title": "High School Confidential Karaoke", - "id": "Jerry Lee Lewis Karaoke Version" - }, - { - "title": "Make A Move On Me Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "No Other One Karaoke", - "id": "Weezer Karaoke Version" - }, - { - "title": "I Will Remember Karaoke", - "id": "Toto Karaoke Version" - }, - { - "title": "I Ain't Superstitious Karaoke", - "id": "Jeff Beck Karaoke Version" - }, - { - "title": "Gus The Theatre Cat Karaoke", - "id": "Cats (The Musical) Karaoke Version" - }, - { - "title": "Carnival Town Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "Not The Only One Karaoke", - "id": "Bonnie Raitt Karaoke Version" - }, - { - "title": "Love Me Like A Man Karaoke", - "id": "Bonnie Raitt Karaoke Version" - }, - { - "title": "Restless Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "I Want The One I Can't Have Karaoke", - "id": "The Smiths Karaoke Version" - }, - { - "title": "Let It Burn Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Sanctified Woman Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "I'd Be Lyin Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Freedom Song Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Back With A Heart Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Arrested For Driving While Blind Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "Compassionate Man Karaoke", - "id": "Olivia Newton-John Karaoke Version" - }, - { - "title": "You Don't Have To Go Karaoke", - "id": "Jerry Lee Lewis Karaoke Version" - }, - { - "title": "You Karaoke", - "id": "Bonnie Raitt Karaoke Version" - }, - { - "title": "Workin' For A Workin' Man Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Winterwood Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Winter Wonderland Karaoke", - "id": "Peggy Lee Karaoke Version" - }, - { - "title": "Wild World Karaoke", - "id": "Jimmy Cliff Karaoke Version" - }, - { - "title": "What I Did For Love Karaoke", - "id": "Josh Groban Karaoke Version" - }, - { - "title": "What It Takes Karaoke", - "id": "Wynonna Judd Karaoke Version" - }, - { - "title": "Fired Up Karaoke", - "id": "Zombie's Karaoke Version" - }, - { - "title": "Waitin' For The Bus Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "Up In Smoke Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Unfinished Business Karaoke", - "id": "Boy George Karaoke Version" - }, - { - "title": "Uneasy Rider Karaoke", - "id": "The Charlie Daniels Band Karaoke Version" - }, - { - "title": "Think About It Karaoke", - "id": "Yardbirds Karaoke Version" - }, - { - "title": "Under The Bamboo Tree Karaoke", - "id": "Judy Garland Karaoke Version" - }, - { - "title": "TV Dinners Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "The Smallest Man Who Ever Lived Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "It's Too Much Like Lonesome Karaoke", - "id": "Wynn Stewart Karaoke Version" - }, - { - "title": "Toes Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "Toes Karaoke", - "id": "Zac Brown Band Karaoke Version" - }, - { - "title": "The Things I Regret Karaoke", - "id": "Brandi Carlile Karaoke Version" - }, - { - "title": "There Must Be An Angel Karaoke", - "id": "Will Young Karaoke Version" - }, - { - "title": "Them There Eyes Karaoke", - "id": "Peggy Lee Karaoke Version" - }, - { - "title": "The Legend Of Wooley Swamp Karaoke", - "id": "The Charlie Daniels Band Karaoke Version" - }, - { - "title": "Mastermind Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "The Stranger At My Door Karaoke", - "id": "Brandi Carlile Karaoke Version" - }, - { - "title": "The Story Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "The South's Gonna Do It Karaoke", - "id": "The Charlie Daniels Band Karaoke Version" - }, - { - "title": "The Prettiest Thing Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "The Other Side Of Love Karaoke", - "id": "Yazoo Karaoke Version" - }, - { - "title": "The Long Way Home Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "The invitation To The Jellicle Ball Karaoke", - "id": "Cats (The Musical) Karaoke Version" - }, - { - "title": "Marjorie Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "The House With the Whitewashed Gable Karaoke", - "id": "Joe Dolan Karaoke Version" - }, - { - "title": "House of Blue Lights Karaoke", - "id": "Jerry Lee Lewis Karaoke Version" - }, - { - "title": "The House Is Rockin Karaoke", - "id": "Wynonna Judd Karaoke Version" - }, - { - "title": "The Harder They Come Karaoke", - "id": "Jimmy Cliff Karaoke Version" - }, - { - "title": "Illicit Affairs Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "The Hangman's Knee Karaoke", - "id": "Jeff Beck Karaoke Version" - }, - { - "title": "The Guitar Man Karaoke", - "id": "Bread Karaoke Version" - }, - { - "title": "The Folks Who Live On The Hill Karaoke", - "id": "Peggy Lee Karaoke Version" - }, - { - "title": "Holiday Karaoke", - "id": "Weezer Karaoke Version" - }, - { - "title": "That Was Yesterday Karaoke", - "id": "Wynonna Judd Karaoke Version" - }, - { - "title": "Cheap Sunglasses Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "Superman Karaoke", - "id": "Ronan Keating Karaoke Version" - }, - { - "title": "Stranger's Touch Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Still In Saigon Karaoke", - "id": "Charlie Daniels Band Karaoke Version" - }, - { - "title": "Spanish Boots Karaoke", - "id": "Jeff Beck Karaoke Version" - }, - { - "title": "Somewhere Over The Rainbow Karaoke", - "id": "Jerry Lee Lewis Karaoke Version" - }, - { - "title": "Something Will Get Through Karaoke", - "id": "Willie Nelson Karaoke Version" - }, - { - "title": "Solitaire Karaoke", - "id": "Tony Christie Karaoke Version" - }, - { - "title": "So Lonely Karaoke", - "id": "Zapping Trio Karaoke Version" - }, - { - "title": "Smile On Me Karaoke", - "id": "The Yardbirds Karaoke Version" - }, - { - "title": "Small Talk And Pride Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Good Luck Babe Karaoke", - "id": "Chappell Roan Karaoke Version" - }, - { - "title": "Six Ways To Sunday Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "She's In Love With You Karaoke", - "id": "Jason Donovan Karaoke Version" - }, - { - "title": "Shapes Of Things Karaoke", - "id": "Jeff Beck Karaoke Version" - }, - { - "title": "Only You Karaoke", - "id": "Dwight Yoakam Karaoke Version" - }, - { - "title": "Shake Your Magnolia Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Anita You're Dreaming Karaoke", - "id": "Waylon Jennings Karaoke Version" - }, - { - "title": "Samba Reggae Karaoke", - "id": "Jimmy Cliff Karaoke Version" - }, - { - "title": "Sail Into Tomorrow Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Angel From Montgomery Karaoke", - "id": "Bonnie Raitt Karaoke Version" - }, - { - "title": "My Life's Been A Pleasure Karaoke", - "id": "Willie Nelson Karaoke Version" - }, - { - "title": "Delia's Gone Karaoke", - "id": "Waylon Jennings Karaoke Version" - }, - { - "title": "It Don't Matter To Me Karaoke", - "id": "Bread Karaoke Version" - }, - { - "title": "Excuse Me Mr Karaoke", - "id": "No Doubt Karaoke Version" - }, - { - "title": "Sacrifice Karaoke", - "id": "The Drifters Karaoke Version" - }, - { - "title": "Rockin My Life Away Karaoke", - "id": "Jerry Lee Lewis Karaoke Version" - }, - { - "title": "Rusholme Ruffians Karaoke", - "id": "The Smiths Karaoke Version" - }, - { - "title": "Car Games Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Pink Triangle Karaoke", - "id": "Weezer Karaoke Version" - }, - { - "title": "Reggae Night Karaoke", - "id": "Jimmy Cliff Karaoke Version" - }, - { - "title": "Going Down Karaoke", - "id": "Jeff Beck Karaoke Version" - }, - { - "title": "Recovery Karaoke", - "id": "Olivia Newton John Karaoke Version" - }, - { - "title": "Real Real Gone Karaoke", - "id": "Van Morrison Karaoke Version" - }, - { - "title": "Manis Karaoke", - "id": "Zainal Abidin Karaoke Version" - }, - { - "title": "Picture In A Frame Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "More and More Karaoke", - "id": "Joe Dolan Karaoke Version" - }, - { - "title": "Payback's A B**ch Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Doubleback Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "I Believe To My Soul Karaoke", - "id": "Ray Charles Karaoke Version" - }, - { - "title": "Falling Karaoke", - "id": "Olivia Newton-John Karaoke Version" - }, - { - "title": "Araw-Araw Karaoke", - "id": "The Boyfriends Karaoke Version" - }, - { - "title": "Break This Down Karaoke", - "id": "Descendants 3 Karaoke Version" - }, - { - "title": "A Lot Of Good Karaoke", - "id": "Waylon Jennings Karaoke Version" - }, - { - "title": "Be Here To Love Me Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "Don't Let The Good Life Pass You By Karaoke", - "id": "Wayne Newton Karaoke Version" - }, - { - "title": "BAMM - Zombie Block Party Karaoke", - "id": "Zombie's Karaoke Version" - }, - { - "title": "Grizabella The Glamour Cat Karaoke", - "id": "Cats Karaoke Version" - }, - { - "title": "Someday (Ballad) Karaoke", - "id": "Zombie's Karaoke Version" - }, - { - "title": "Popular Karaoke", - "id": "Wicked The Musical Karaoke Version" - }, - { - "title": "BAMM Karaoke", - "id": "Zombie's Karaoke Version" - }, - { - "title": "My Year Karaoke", - "id": "Zombie's Karaoke Version" - }, - { - "title": "Miss Americana and The Heartbreak Prince Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Betty Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Did I Mention Karaoke", - "id": "Descendants Karaoke Version" - }, - { - "title": "Set It Off Karaoke", - "id": "Descendants Karaoke Version" - }, - { - "title": "Game's People Play Karaoke", - "id": "Jimmy Cliff Karaoke Version" - }, - { - "title": "One Kiss Karaoke", - "id": "Descendants Karaoke Version" - }, - { - "title": "Heavy Is The Crown Karaoke", - "id": "Linkin Park Karaoke Version" - }, - { - "title": "My Once Upon A Time Karaoke", - "id": "Descendants Karaoke Version" - }, - { - "title": "Evil Like Me Karaoke", - "id": "Descendants Karaoke Version" - }, - { - "title": "Who's Afraid Of Little Old Me Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Sprinter Karaoke", - "id": "Central Cee and Dave Karaoke Version" - }, - { - "title": "Bad Dreams Karaoke", - "id": "Teddy Swims Karaoke Version" - }, - { - "title": "The Best Of Both Worlds Karaoke", - "id": "Hannah Montana (Miley Cyrus) Karaoke Version" - }, - { - "title": "Dancing In The Flames Karaoke", - "id": "The Weeknd Karaoke Version" - }, - { - "title": "Rotten To The Core Karaoke", - "id": "Descendants Karaoke Version" - }, - { - "title": "So High School Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Birds Of A Feather Karaoke", - "id": "Billie Eilish Karaoke Version" - }, - { - "title": "Hit It Hard Karaoke", - "id": "Descendants 2 Karaoke Version" - }, - { - "title": "Palagi Karaoke", - "id": "TJ Monterde Karaoke Version" - }, - { - "title": "Champagne Problems Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Daydreamer Karaoke", - "id": "Adele Karaoke Version" - }, - { - "title": "Fearless Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Unsigned Under 18 Competition Final 2024 Presented By Vocal Star Karaoke", - "id": "NvETOEwfkJI" - }, - { - "title": "Space Between Karaoke", - "id": "Descendants 2 Karaoke Version" - }, - { - "title": "Proud Mary Karaoke", - "id": "Tina Turner Karaoke Version" - }, - { - "title": "My Tears Ricochet Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Down Bad Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Beauty and The Beast Karaoke", - "id": "Beauty and The Beast Karaoke Version" - }, - { - "title": "It's Going Down Karaoke", - "id": "Descendants 2 Karaoke Version" - }, - { - "title": "Midnight Rain Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Taste Karaoke", - "id": "Sabrina Carpenter Karaoke Version" - }, - { - "title": "Chilling Like A Villain Karaoke", - "id": "Descendants 2 Karaoke Version" - }, - { - "title": "What's My Name Karaoke", - "id": "Descendants 2 Karaoke Version" - }, - { - "title": "Stargazing Karaoke", - "id": "Myles Smith Karaoke Version" - }, - { - "title": "Die With A Smile Karaoke", - "id": "Lady Gaga and Bruno Mars Karaoke Version" - }, - { - "title": "Night Falls Karaoke", - "id": "Descendants 3 Karaoke Version" - }, - { - "title": "From The Islands Karaoke", - "id": "Jason Derulo, Frozy and Tomo Karaoke Version" - }, - { - "title": "I Am Moana Karaoke", - "id": "Moana Karaoke Version" - }, - { - "title": "Lift Me Up Karaoke", - "id": "Rihanna Karaoke Version" - }, - { - "title": "Part Of Your World Karaoke", - "id": "The Little Mermaid Karaoke Version" - }, - { - "title": "All Too Well Karaoke (10 Minute Version)", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Good To Be Bad Karaoke", - "id": "Descendants 3 Karaoke Version" - }, - { - "title": "Queen of Mean Karaoke", - "id": "Descendants 3 Karaoke Version" - }, - { - "title": "Lifetimes Karaoke", - "id": "Katy Perry Karaoke Version" - }, - { - "title": "Robbie Kerr - Love On The Brain", - "id": "Vocal-Star Unsigned Comp Final 2024 Live Bournemouth Pavilion" - }, - { - "title": "James Lovett - Somebody To Love", - "id": "Vocal-Star Unsigned Final Comp 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Ravarna Hunsdon - It's A Man's World", - "id": "Vocal-Star Unsigned Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Nicole Walker - Smash Into You", - "id": "Vocal-Star Unsigned Final Comp 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Kelly Briggs - House Of The Rising Sun", - "id": "Vocal-Star Unsigned Final 2024 Live Bournemouth Pavilion" - }, - { - "title": "Nicole Walker - You Got The Love", - "id": "Vocal-Star Unsigned Final Comp 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Paisley Wright - Love On The Brain", - "id": "Vocal-Star Unsigned Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Myron Jacob - One Voice", - "id": "Vocal-Star Unsigned Final Competition 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Robbie Kerr - I Wanna Dance With Somebody", - "id": "Vocal-Star Unsigned Final 2024 Live Bournemouth Pavilion" - }, - { - "title": "Marina Memousai - All I Ask", - "id": "Vocal-Star Unsigned Final Comp 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Marina Memousai - Lost Without You", - "id": "Vocal-Star Unsigned Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "I'm Just Ken Karaoke", - "id": "Ryan Gosling Barbie Movie Karaoke Version" - }, - { - "title": "Robbie Kerr - Listen", - "id": "Vocal-Star Unsigned Competition Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Myron Jacob - Bui Doi", - "id": "Vocal-Star Unsigned Final Competition 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Paisley Wright - Clown", - "id": "Vocal-Star Unsigned Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Nicole Walker - Listen", - "id": "Vocal-Star Unsigned Final Competition 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Ravarna Hunsdon - All By Myself", - "id": "Vocal-Star Unsigned Final Comp 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Kelly Briggs - I'll Never Love Again", - "id": "Vocal-Star Unsigned Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Holly Dervan - Before He Cheats", - "id": "Vocal-Star Unsigned Final Comp 2024 Live at Bournemouth Pavilion" - }, - { - "title": "James Lovett - Why God Why", - "id": "Vocal-Star Unsigned Final Comp 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Holly Dervan - Make You Feel My Love", - "id": "Vocal-Star Unsigned Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "In My Place Karaoke", - "id": "Coldplay Karaoke Version" - }, - { - "title": "Head and Heart Karaoke", - "id": "Joel Corry x MNEK Karaoke Version" - }, - { - "title": "Guess Karaoke", - "id": "Charli xcx ft Billie Eilish Karaoke Version" - }, - { - "title": "Lost Karaoke", - "id": "Coldplay Karaoke Version" - }, - { - "title": "Do What You Gotta Do Karaoke", - "id": "Descendants 3 Karaoke Version" - }, - { - "title": "Hurts Like Heaven Karaoke", - "id": "Coldplay Karaoke Version" - }, - { - "title": "Blinding Lights Karaoke", - "id": "The Weeknd Karaoke Version" - }, - { - "title": "Steven Yates - Tennessee Whiskey", - "id": "Vocal-Star Unsigned Comp Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Steven Yates - Alone", - "id": "Vocal-Star Unsigned Competition Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Steven Yates - Think Twice", - "id": "Vocal-Star Unsigned Competition Final 2024 Live at Bournemouth Pavilion" - }, - { - "title": "Always Remember Us This Way Karaoke", - "id": "Lady Gaga Karaoke Version" - }, - { - "title": "Both Sides Now Karaoke", - "id": "Joni Mitchell Karaoke Version" - }, - { - "title": "Talk Karaoke", - "id": "Coldplay Karaoke Version" - }, - { - "title": "Speed Of Sound Karaoke", - "id": "Coldplay Karaoke Version" - }, - { - "title": "Angel Of My Dreams Karaoke", - "id": "Jade Karaoke Version" - }, - { - "title": "Lonely Road Karaoke", - "id": "Machine Gun Kelly and Jelly Roll Karaoke Version" - }, - { - "title": "Woman's World Karaoke", - "id": "Katy Perry Karaoke Version" - }, - { - "title": "Giant Karaoke", - "id": "Calvin Harris and Rag 'n' Bone Man Karaoke Version" - }, - { - "title": "How Far I'll Go Karaoke", - "id": "Moana Karaoke Version" - }, - { - "title": "Cold Heart Karaoke", - "id": "Dua Lipa and Elton John Karaoke Version" - }, - { - "title": "Let's Get Loud Karaoke", - "id": "Jennifer Lopez Karaoke Version" - }, - { - "title": "Cuz I Love You Karaoke", - "id": "Lizzo Karaoke Version" - }, - { - "title": "Dance The Night Karaoke", - "id": "Dua Lipa Karaoke Version" - }, - { - "title": "Descendants 4 Karaoke All 10 Tracks in Film Order", - "id": "Decendants 4 Karaoke Version" - }, - { - "title": "August Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Dance Monkey Karaoke", - "id": "Tones and I Karaoke Version" - }, - { - "title": "Get Your Hands Dirty Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "What's My Name Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "Shuffle Of Love Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "Fight Of Our Lives Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "Bad Reputation Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "So This Is Love Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "Perfect Revenge Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "Red Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "Love Ain't It Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "Not Like Us Karaoke", - "id": "Kendrick Lamar Karaoke Version" - }, - { - "title": "Pressure Karaoke", - "id": "Ari Lennox Karaoke Version" - }, - { - "title": "Cruel Summer Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Life Is Sweeter Karaoke", - "id": "Descendants 4 (The Rise Of Red) Karaoke Version" - }, - { - "title": "Vampire Karaoke", - "id": "Olivia Rodrigo Karaoke Version" - }, - { - "title": "Somebody Save Me Karaoke", - "id": "Eminem & Jelly Roll Karaoke Version" - }, - { - "title": "As It Was Karaoke", - "id": "Harry Styles Karaoke Version" - }, - { - "title": "Shallow Karaoke", - "id": "Lady Gaga & Bradley Cooper Karaoke Version" - }, - { - "title": "Someone You Loved Karaoke", - "id": "Lewis Capaldi Karaoke Version" - }, - { - "title": "Green Green Grass Karaoke", - "id": "George Ezra Karaoke Version" - }, - { - "title": "Bad Habits Karaoke", - "id": "Ed Sheeran Karaoke Version" - }, - { - "title": "Levitating Karaoke", - "id": "Dua Lipa Karaoke Version" - }, - { - "title": "Tennessee Whiskey Karaoke", - "id": "Chris Stapleton Karaoke Version" - }, - { - "title": "Three Lions Karaoke", - "id": "Baddiel & Skinner Karaoke Version" - }, - { - "title": "Easy On Me Karaoke", - "id": "Adele Karaoke Version" - }, - { - "title": "Girl All The Bad Guys Want Karaoke", - "id": "Bowling For Soup Karaoke Version" - }, - { - "title": "How Far I'll Go Karaoke", - "id": "Moana (Disney) Karaoke Version" - }, - { - "title": "Waiting For The Thunder Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Forever Karaoke", - "id": "Babymonster Karaoke Version" - }, - { - "title": "Wave Karaoke", - "id": "Asake, Central Cee Karaoke Version" - }, - { - "title": "Smeraldo Garden Marching Band Karaoke", - "id": "Jimin ft Loco Karaoke Version" - }, - { - "title": "Tobey Karaoke", - "id": "Eminem Karaoke Version" - }, - { - "title": "Waka Waka (This Time For Africa) Karaoke", - "id": "Shakira Karaoke Version" - }, - { - "title": "Good Luck Babe Karaoke", - "id": "Sabrina Carpenter Karaoke Version" - }, - { - "title": "Rockstar Karaoke", - "id": "Lisa Karaoke Version" - }, - { - "title": "Come And Get Your Love Karaoke", - "id": "Redbone Karaoke Version" - }, - { - "title": "What Dreams Are Made Of Karaoke", - "id": "Lizzie McGuire (Hilary Duff) Karaoke Version" - }, - { - "title": "The Boy Is Mine Karaoke", - "id": "Ariana Grande Karaoke Version" - }, - { - "title": "Rush Rush Karaoke", - "id": "Paula Abdul Karaoke Version" - }, - { - "title": "Vindaloo Karaoke", - "id": "Fat Les Karaoke Version" - }, - { - "title": "Send Me On My Way Karaoke", - "id": "Rusted Root Karaoke Version" - }, - { - "title": "I Can Do It With A Broken Heart Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Whoomp There It Is Karaoke", - "id": "Tag Team Karaoke Version" - }, - { - "title": "Love Really Hurts Without You Karaoke", - "id": "Billy Ocean Karaoke Version" - }, - { - "title": "Please Please Please Karaoke", - "id": "Sabrina Carpenter Karaoke Version" - }, - { - "title": "Right Here Right Now Karaoke", - "id": "High School Musical 3 Karaoke Version" - }, - { - "title": "Cooties Karaoke", - "id": "Hairspray The Musical Karaoke Version" - }, - { - "title": "You Should Probably Leave Karaoke", - "id": "Chris Stapleton Karaoke Version" - }, - { - "title": "I Can't Help Myself (Sugar Pie Honey Bunch) Karaoke", - "id": "Four Tops Karaoke Version" - }, - { - "title": "Kiss (When The Sun Don't Shine) Karaoke", - "id": "Vengaboys Karaoke Version" - }, - { - "title": "Across The Sea Karaoke", - "id": "Weezer Karaoke Version" - }, - { - "title": "Heart Of Stone Karaoke", - "id": "Six The Musical Karaoke Version" - }, - { - "title": "Only Fools And Horses Theme Karaoke", - "id": "John Sullivan Karaoke Version" - }, - { - "title": "Where Everybody Knows Your Name Karaoke", - "id": "Gary Portnoy Karaoke Version" - }, - { - "title": "Hairspray Karaoke", - "id": "Hairspray The Musical Karaoke Version" - }, - { - "title": "White Horse Karaoke", - "id": "Chris Stapleton Karaoke Version" - }, - { - "title": "Room Karaoke", - "id": "Stell Karaoke Version" - }, - { - "title": "Ex Wives Karaoke", - "id": "Six The Musical Karaoke Version" - }, - { - "title": "Salamin, Salamin Karaoke", - "id": "Bini Karaoke Version" - }, - { - "title": "Six Karaoke", - "id": "Six The Musical Karaoke Version" - }, - { - "title": "Good Time Karaoke", - "id": "Owl City & Carly Rae Jepsen Karaoke Version" - }, - { - "title": "The Bartender And The Thief Karaoke", - "id": "Stereophonics Karaoke Version" - }, - { - "title": "Everyday Karaoke", - "id": "High School Musical 2 Karaoke Version" - }, - { - "title": "Play That Funky Music Karaoke", - "id": "Wild Cherry Karaoke Version" - }, - { - "title": "Good Morning Baltimore Karaoke", - "id": "Hairspray The Musical Karaoke Version" - }, - { - "title": "Mr Blue Sky Karaoke", - "id": "Electric Light Orchestra Karaoke Version" - }, - { - "title": "Let's Get It On Karaoke", - "id": "Marvin Gaye Karaoke Version" - }, - { - "title": "Last Night Karaoke", - "id": "Morgan Wallen Karaoke Version" - }, - { - "title": "Mother Knows Best Karaoke", - "id": "Disney Tangled Karaoke Version" - }, - { - "title": "Mainstream Kid Karaoke", - "id": "Brandi Carlile Karaoke Version" - }, - { - "title": "The Chain Karaoke", - "id": "Fleetwood Mac Karaoke Version" - }, - { - "title": "Watch Me Shine Karaoke", - "id": "Joanna Pacitti Karaoke Version" - }, - { - "title": "Never Too Much Karaoke", - "id": "Luther Vandross Karaoke Version" - }, - { - "title": "It Takes Two Karaoke", - "id": "Hairspray The Musical Karaoke Version" - }, - { - "title": "Perfect Day Karaoke", - "id": "Hoku Karaoke Version" - }, - { - "title": "The Albatross Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Rhythm Is A Dancer Karaoke", - "id": "Snap Karaoke Version" - }, - { - "title": "Houdini Karaoke", - "id": "Eminem Karaoke Version" - }, - { - "title": "Wicked Game Karaoke", - "id": "Chris Isaak Karaoke Version" - }, - { - "title": "Gary's Song Karaoke", - "id": "Spongebob Squarepants Karaoke Version" - }, - { - "title": "Local Boy In The Photograph Karaoke", - "id": "Stereophonics Karaoke Version" - }, - { - "title": "Falling Karaoke", - "id": "NSYNC Karaoke Version" - }, - { - "title": "Kiss Me Karaoke", - "id": "Sixpence None The Richer Karaoke Version" - }, - { - "title": "Before He Cheats Karaoke", - "id": "Carrie Underwood Karaoke Version" - }, - { - "title": "I Had Some Help Karaoke", - "id": "Post Malone (ft. Morgan Wallen) Karaoke Version" - }, - { - "title": "Lunch Karaoke", - "id": "Billie Eilish Karaoke Version" - }, - { - "title": "Bloody Mary Karaoke", - "id": "Lady Gaga Karaoke Version" - }, - { - "title": "But Daddy I Love Him Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "I Like The Way You Kiss Me Karaoke", - "id": "Artemas Karaoke Version" - }, - { - "title": "A Thousand Trees Karaoke", - "id": "Stereophonics Karaoke Version" - }, - { - "title": "Just A Simple Sponge Karaoke", - "id": "Spongebob The Musical Karaoke Version" - }, - { - "title": "You To Me Are Everything Karaoke", - "id": "The Real Thing Karaoke Version" - }, - { - "title": "Too Sweet Karaoke", - "id": "Hozier Karaoke Version" - }, - { - "title": "A Bar Song Karaoke", - "id": "Shaboozey Karaoke Version" - }, - { - "title": "World In Motion Karaoke", - "id": "New Order Karaoke Version" - }, - { - "title": "Go Your Own Way Karaoke", - "id": "Fleetwood Mac Karaoke Version" - }, - { - "title": "For Good Karaoke", - "id": "Wicked The Musical Karaoke Version" - }, - { - "title": "All The Small Things Karaoke", - "id": "Blink 182 Karaoke Version" - }, - { - "title": "Signed, Sealed, Delivered, I'm Yours Karaoke", - "id": "Stevie Wonder Karaoke Version" - }, - { - "title": "Bikini Bottom Day Karaoke", - "id": "Spongebob The Musical Karaoke Version" - }, - { - "title": "Indian Summer Karaoke", - "id": "Stereophonics Karaoke Version" - }, - { - "title": "Three Little Birds Karaoke", - "id": "Bob Marley Karaoke Version" - }, - { - "title": "Southgate You're The One (Footballs Coming Home Again) Karaoke", - "id": "Atomic Kitten Karaoke Version" - }, - { - "title": "Gone Karaoke", - "id": "NSYNC Karaoke Version" - }, - { - "title": "Fabulous Karaoke", - "id": "High School Musical 2 Karaoke Version" - }, - { - "title": "We're On The Ball Karaoke", - "id": "Ant and Dec Karaoke Version" - }, - { - "title": "You and Me Karaoke", - "id": "Take That Karaoke Version" - }, - { - "title": "September Karaoke", - "id": "Earth, Wind and Fire Karaoke Version" - }, - { - "title": "I Wanna Get Lost With You Karaoke", - "id": "Stereophonics Karaoke Version" - }, - { - "title": "We Didn't Start The Fire Karaoke", - "id": "Billy Joel Karaoke Version" - }, - { - "title": "High School Musical Karaoke", - "id": "What I've Been Looking For Karaoke Version" - }, - { - "title": "Sweet Caroline - England Euros Karaoke", - "id": "Neil Diamond Karaoke Version" - }, - { - "title": "Hallelujah I Love Her So Karaoke", - "id": "Ray Charles Karaoke Version" - }, - { - "title": "Make You Mine Karaoke", - "id": "Madison Beer Karaoke Version" - }, - { - "title": "This I Promise You Karaoke", - "id": "NSYNC Karaoke Version" - }, - { - "title": "Been Like This Karaoke", - "id": "Meghan Trainor, T-Pain Karaoke Version" - }, - { - "title": "Forget About Us Karaoke", - "id": "Perrie Edwards Karaoke Version" - }, - { - "title": "Vertigo Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "Start Of Something New Karaoke", - "id": "High School Musical Karaoke Version" - }, - { - "title": "You're Such A Good Looking Woman Karaoke", - "id": "Joe Dolan Karaoke Version" - }, - { - "title": "Espresso Karaoke", - "id": "Sabrina Carpenter Karaoke Version" - }, - { - "title": "Breaking Free Karaoke", - "id": "High School Musical Karaoke Version" - }, - { - "title": "Spiderwebs Karaoke", - "id": "No Doubt Karaoke Version" - }, - { - "title": "Who's Loving You Karaoke", - "id": "The Jackson 5 Karaoke Version" - }, - { - "title": "It's Gonna Be Me Karaoke", - "id": "NSYNC Karaoke Version" - }, - { - "title": "Falling For You Karaoke", - "id": "Weezer Karaoke Version" - }, - { - "title": "Lights and Sounds Karaoke", - "id": "Yellowcard Karaoke Version" - }, - { - "title": "Do I Have To Cry For You Karaoke", - "id": "Nick Carter Karaoke Version" - }, - { - "title": "Better Place Karaoke", - "id": "Trolls Band Together Karaoke Version" - }, - { - "title": "Naughty Karaoke", - "id": "Matilda The Musical Karaoke Version" - }, - { - "title": "Hard To Say I'm Sorry Karaoke", - "id": "Chicago Karaoke Version" - }, - { - "title": "Bye Bye Bye Karaoke", - "id": "NSYNC Karaoke Version" - }, - { - "title": "Built This Way Karaoke", - "id": "Samantha Ronson Karaoke Version" - }, - { - "title": "The Tortured Poets Department Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "All Of You Karaoke", - "id": "Encanto Karaoke Version" - }, - { - "title": "Fortnight Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Free Falling Karaoke", - "id": "James Arthur Karaoke Version" - }, - { - "title": "There Are Worse Things I Could Do Karaoke", - "id": "Grease Karaoke Version" - }, - { - "title": "Illusion Karaoke", - "id": "Dua Lipa Karaoke Version" - }, - { - "title": "What I Like About You Karaoke", - "id": "Lillix Karaoke Version" - }, - { - "title": "True Story Karaoke", - "id": "Ariana Grande Karaoke Version" - }, - { - "title": "Cold As You Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Miserable Lie Karaoke", - "id": "The Smiths Karaoke Version" - }, - { - "title": "I Thank You Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "The Family Madrigal - Encanto", - "id": "Karaoke Song With Lyrics" - }, - { - "title": "Karma Karaoke", - "id": "JoJo Siwa Karaoke Version" - }, - { - "title": "No Angels Karaoke", - "id": "Justin Timberlake Karaoke Version" - }, - { - "title": "One Horse Town Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "Tim McGraw Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Rip Her To Shreds Karaoke", - "id": "Blondie Karaoke Version" - }, - { - "title": "Austin Karaoke", - "id": "Dasha Karaoke Version" - }, - { - "title": "Hold On Karaoke", - "id": "Wilson Phillips Karaoke Version" - }, - { - "title": "Cry Karaoke", - "id": "Benson Boone Karaoke Version" - }, - { - "title": "Don't Forget To Remember Karaoke", - "id": "The Bee Gees Karaoke Version" - }, - { - "title": "The Next Right Thing Karaoke", - "id": "Frozen 2 Karaoke Version" - }, - { - "title": "When I Grow Up Karaoke", - "id": "Matilda The Musical Karaoke Version" - }, - { - "title": "SHEESH Karaoke", - "id": "BabyMonster Karaoke Version" - }, - { - "title": "Train Kept A Rolling Karaoke", - "id": "The Yardbirds Karaoke Version" - }, - { - "title": "Jolene Karaoke", - "id": "Beyonce Karaoke Version" - }, - { - "title": "I'm On Fire Karaoke", - "id": "Jerry Lee Lewis Karaoke Version" - }, - { - "title": "Angel Of Harlem Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "All This Time Karaoke", - "id": "Tiffany Karaoke Version" - }, - { - "title": "Stuck On You Karaoke", - "id": "Lionel Richie Karaoke Version" - }, - { - "title": "Fixing A Broken Heart Karaoke", - "id": "Indecent Obsession Karaoke Version" - }, - { - "title": "Some Hearts Are Diamonds Karaoke", - "id": "Chris Norman Karaoke Version" - }, - { - "title": "My Mind Karaoke", - "id": "Yebba Karaoke Version" - }, - { - "title": "Paubaya Karaoke", - "id": "Moira Dela Torre Karaoke Version" - }, - { - "title": "Punteria Karaoke", - "id": "Shakira and Cardi B Karaoke Version" - }, - { - "title": "Surface Pressure Karaoke", - "id": "Encanto Karaoke Version" - }, - { - "title": "Tell Me Ma Karaoke", - "id": "Sham Rock Karaoke Version" - }, - { - "title": "That's What Friends Are For Karaoke", - "id": "Dionne Warwick Karaoke Version" - }, - { - "title": "Having You Near Me Karaoke", - "id": "Air Supply Karaoke Version" - }, - { - "title": "Murder On The Dancefloor Karaoke", - "id": "Sophie Ellis-Bextor Karaoke Version" - }, - { - "title": "Obsessed Karaoke", - "id": "Olivia Rodrigo Karaoke Version" - }, - { - "title": "Into The Unknown Karaoke", - "id": "Frozen 2 Karaoke Version" - }, - { - "title": "Red Light Spells Danger Karaoke", - "id": "Billy Ocean Karaoke Version" - }, - { - "title": "You Made Me Live Again Karaoke", - "id": "Janet Basco Karaoke Version" - }, - { - "title": "I Remember Everything Karaoke", - "id": "Zach Bryan Karaoke Version" - }, - { - "title": "A World Of Your Own Karaoke", - "id": "Wonka Movie Karaoke Version" - }, - { - "title": "Arcade Karaoke", - "id": "Duncan Laurence Karaoke Version" - }, - { - "title": "Put Your Arms Around Me Karaoke", - "id": "Texas Karaoke Version" - }, - { - "title": "We Can't Be Friends (Wait For Your Love) Karaoke", - "id": "Ariana Grande Karaoke Version" - }, - { - "title": "Lost In The Woods Karaoke", - "id": "Frozen 2 Karaoke Version" - }, - { - "title": "Baby One More Time Karaoke", - "id": "Tenacious D Karaoke Version" - }, - { - "title": "Join The Club Karaoke", - "id": "Nobela Karaoke Version" - }, - { - "title": "Through The Years Karaoke", - "id": "Kenny Rogers Karaoke Version" - }, - { - "title": "Getchoo Karaoke", - "id": "Weezer Karaoke Version" - }, - { - "title": "Going Down On Love Karaoke", - "id": "John Lennon Karaoke Version" - }, - { - "title": "When I Look At You Karaoke", - "id": "Miley Cyrus Karaoke Version" - }, - { - "title": "What Else Can I Do Karaoke", - "id": "Encanto Karaoke Version" - }, - { - "title": "Only You Karaoke", - "id": "The Platters Karaoke Version" - }, - { - "title": "I Do I Do I Do Karaoke", - "id": "Abba Karaoke Version" - }, - { - "title": "Just Another Woman In Love Karaoke", - "id": "Anne Murray Karaoke Version" - }, - { - "title": "A Little Street Where Old Friends Meet Karaoke", - "id": "Tony Bennett Karaoke Version" - }, - { - "title": "Pretty Girls Make Graves Karaoke", - "id": "The Smiths Karaoke Version" - }, - { - "title": "Best Friend Karaoke", - "id": "S Club 7 Karaoke Version" - }, - { - "title": "Domino Dancing Karaoke", - "id": "Pet Shop Boys Karaoke Version" - }, - { - "title": "Love Has No Pride Karaoke", - "id": "Bonnie Raitt Karaoke Version" - }, - { - "title": "Some Things Never Change Karaoke", - "id": "Frozen 2 Karaoke Version" - }, - { - "title": "Dizzy Karaoke", - "id": "Olly Alexander Karaoke Version" - }, - { - "title": "Celebrating Women Karaoke", - "id": "Vocal Star Medley Karaoke Version" - }, - { - "title": "Glendora Karaoke", - "id": "Perry Como Karaoke Version" - }, - { - "title": "SOS Karaoke", - "id": "Abba Karaoke Version" - }, - { - "title": "Italodisco Karaoke", - "id": "The Kolors Karaoke Version" - }, - { - "title": "Too Little Too Late Karaoke", - "id": "JoJo Karaoke Version" - }, - { - "title": "The Way We Were Karaoke", - "id": "Tony Christie Karaoke Version" - }, - { - "title": "That Wonderful Sound Karaoke", - "id": "Tom Jones Karaoke Version" - }, - { - "title": "To Love Somebody Karaoke", - "id": "The Bee Gees Karaoke Version" - }, - { - "title": "Talking Once Again Karaoke", - "id": "ยฅ$, Ye, Ty Dolla $ign (ft North West) Karaoke Version" - }, - { - "title": "Run Away From It All Karaoke", - "id": "Blackberry Smoke Karaoke Version" - }, - { - "title": "I Believe In You And Me Karaoke", - "id": "Whitney Houston Karaoke Version" - }, - { - "title": "Nightingale Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "When You Come Back To Me Karaoke", - "id": "Jason Donovan Karaoke Version" - }, - { - "title": "Kung Sakali Karaoke", - "id": "Michael Pangilinan Karaoke Version" - }, - { - "title": "Show Yourself Karaoke", - "id": "Frozen 2 Karaoke Version" - }, - { - "title": "Ghetto Wisdom Karaoke", - "id": "Bugzy Malone Karaoke Version" - }, - { - "title": "Skyline Pigeon Karaoke", - "id": "Elton John Karaoke Version" - }, - { - "title": "How Can I Tell Her Karaoke", - "id": "Lobo Karaoke Version" - }, - { - "title": "16 Carriages Karaoke", - "id": "Beyonce Karaoke Version" - }, - { - "title": "I'm Not A Loser Karaoke", - "id": "Spongebob The Musical Karaoke Version" - }, - { - "title": "I'll Be Your Man Karaoke", - "id": "Zac Brown Band Karaoke Version" - }, - { - "title": "Beautiful Things Karaoke", - "id": "Benson Boone Karaoke Version" - }, - { - "title": "I Need You Karaoke", - "id": "Joe Dolan Karaoke Version" - }, - { - "title": "SINGERS!!!!! WE NEED THE BEST OUT THERE!! (details in description)", - "id": "aICfAL0-0w8" - }, - { - "title": "River Karaoke", - "id": "Bishop Briggs Karaoke Version" - }, - { - "title": "Sit Down You're Rocking The Boat Karaoke", - "id": "Guys and Dolls Karaoke Version" - }, - { - "title": "It Should Have Been Me Karaoke", - "id": "Yvonne Fair Karaoke Version" - }, - { - "title": "Love Me With All Your Heart Karaoke", - "id": "Engelbert Humperdinck Karaoke Version" - }, - { - "title": "Is This Love Karaoke", - "id": "Ziggy Marley Karaoke Version" - }, - { - "title": "Texas Hold Em Karaoke", - "id": "Beyonce Karaoke Version" - }, - { - "title": "The Name Of The Game Karaoke", - "id": "Abba Karaoke Version" - }, - { - "title": "Let The Music Play Karaoke", - "id": "The Drifters Karaoke Version" - }, - { - "title": "In America Karaoke", - "id": "Charlie Daniels Band Karaoke Version" - }, - { - "title": "Abracadabra Karaoke", - "id": "Wes Nelson ft Craig David Karaoke Version" - }, - { - "title": "A Thousand Miles Karaoke", - "id": "Vanessa Carlton Karaoke Version" - }, - { - "title": "Everlasting Love Karaoke", - "id": "U2 Karaoke Version" - }, - { - "title": "One Love Karaoke", - "id": "Bob Marley Karaoke Version" - }, - { - "title": "The Worst Pies In London Karaoke", - "id": "Sweeney Todd Karaoke Version" - }, - { - "title": "Not My Fault Karaoke", - "id": "Renee Rapp & Megan Thee Stallion Karaoke Version" - }, - { - "title": "The Nearness of You Karaoke", - "id": "Norah Jones Karaoke Version" - }, - { - "title": "Lose Control Karaoke", - "id": "Teddy Swims Karaoke Version" - }, - { - "title": "Ocean Avenue Karaoke", - "id": "Yellowcard Karaoke Version" - }, - { - "title": "End Of The Road Karaoke", - "id": "Jerry Lee Lewis Karaoke Version" - }, - { - "title": "Little Village Karaoke", - "id": "Van Morrison Karaoke Version" - }, - { - "title": "Get Happy Karaoke", - "id": "Judy Garland Karaoke Version" - }, - { - "title": "A long Time Ago Karaoke", - "id": "Waylon Jennings Karaoke Version" - }, - { - "title": "Alibi Karaoke", - "id": "Ella Henderson ft Rudimental Karaoke Version" - }, - { - "title": "Voulez Vous Karaoke", - "id": "Abba Karaoke Version" - }, - { - "title": "Selfish Karaoke", - "id": "Justin Timberlake Karaoke Version" - }, - { - "title": "Wherever Is Your Heart Karaoke", - "id": "Brandi Carlile Karaoke Version" - }, - { - "title": "Love Sneaking Up On You Karaoke", - "id": "Bonnie Raitt Karaoke Version" - }, - { - "title": "Stick Season Karaoke", - "id": "Noah Kahan Karaoke Version" - }, - { - "title": "Without Your Love Karaoke", - "id": "Toto Karaoke Version" - }, - { - "title": "Family Table Karaoke", - "id": "Zac Brown Band Karaoke Version" - }, - { - "title": "Boom Boom Boom Karaoke", - "id": "Vengaboys Karaoke Version" - }, - { - "title": "Baby I'm A Want You Karaoke", - "id": "Bread Karaoke Version" - }, - { - "title": "New Attitude Karaoke", - "id": "Young Diva's Karaoke Version" - }, - { - "title": "Chiquitita Karaoke", - "id": "Abba Karaoke Version" - }, - { - "title": "Don't Look Back Karaoke", - "id": "Wynn Stewart Karaoke Version" - }, - { - "title": "Physical Karaoke", - "id": "Olivia Newton-John Karaoke Version" - }, - { - "title": "No Doubt - Hey You", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Gareth Gates - What My Heart Wants To Say", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Pet Shop Boys - One More Chance", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Ronan Keating - If I Don't Tell You Now", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "ZZ Top - Just Got Paid", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Winnie The Pooh - Theme Song", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Ariana Grande - Yes And?", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Josh Groban - She's Out Of My Life", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Liam Gallagher and John Squire - Just Another Rainbow", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Abba - Fernando", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Norah Jones - Creeping In", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Jesse McCartney - Beautiful Soul", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Idina Menzel - Life Of The Party", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Take That - Reach Out", - "id": "Vocal Star Karaoke Version" - }, - { - "title": "Green Day - American Idiot", - "id": "Vocal Star Karaoke Version Lyrics 4K" - }, - { - "title": "Hugh Grant & Haley Bennett - Way Back Into Love (Music & Lyrics)", - "id": "Vocal Star Karaoke Version Lyrics" - }, - { - "title": "Tony Christie - You've Lost That Loving Feeling", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Jimmy Cliff - I Can See Clearly Now", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Ziggy Marley - Brown Eyed Girl", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Auld Lang Syne", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "OneRepublic - Dear Santa", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Kelly Clarkson - Underneath The Tree", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Elvis Presley - Blue Christmas", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "U2", - "id": "All Because Of You" - }, - { - "title": "Abba - Money, Money, Money", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Jennifer Hudson (Dreamgirls) - Love you I do", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Peggy Lee", - "id": "Big Spender" - }, - { - "title": "Animal: Arjan Vailly Bhupinder Babbal", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Abba - Abba Medley (Mamma Mia, Dancing Queen, Waterloo)", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Hall and Oates - You Make My Dreams", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Sam Ryder - You're Christmas To Me", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "JoJo - Leave (Get Out)", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Taylor Swift - Picture To Burn", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "The Pogues - Fairytale Of New York", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Spongebob The Musical - Hero Is My Middle Name", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Ray Charles - It Had To Be You", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Robbie Williams - She's The One", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Mariah Carey - All I want for Christmas is you", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Wham - Last Christmas", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Taylor Swift - Teardrops on My Guitar", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Jung Kook - Standing next to you", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Disney - (Todrick Hall) - Evolution of Disney", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Jack Harlow - Lovin On Me", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Taylor Swift - Enchanted", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Wish - Chris Pine - This Is The Thanks I Get", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Taylor Swift - Now That We Don't Talk", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Dua Lipa - Houdini", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "This Wish - Ariana DeBose - Wish", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Take That โ€“ This Life", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "She Loves You - The Beatles Karaoke Version", - "id": "Vocal Star Karaoke 4K" - }, - { - "title": "Ellie Butler, The Impossible Dream Karaoke World Championships - World Champion, United Kingdom", - "id": "LeKXNbZwsmw" - }, - { - "title": "Taylor Swift - Is It Over Now?", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Abba - Does Your Mother Know", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Now And Then Karaoke", - "id": "The Beatles Karaoke Version" - }, - { - "title": "Tyla - Water", - "id": "Vocal Star Karaoke" - }, - { - "title": "Martin Garrix, Lloyiso - Real Love", - "id": "Vocal Star Karaoke" - }, - { - "title": "Sum 41 - Landmines", - "id": "Vocal Star Karaoke" - }, - { - "title": "Jorja Smith - Broken Is The Man", - "id": "Vocal Star Karaoke" - }, - { - "title": "Strangers - Kenya Grace", - "id": "Vocal Star Karaoke" - }, - { - "title": "Alan Walker, Dash Berlin & Vikkstar - Better Off (Alone, Pt. III)", - "id": "Vocal Star Karaoke" - }, - { - "title": "BoyWithUke - Migraine", - "id": "Vocal Star Karaoke" - }, - { - "title": "Lovejoy - Normal People Things", - "id": "Vocal Star Karaoke" - }, - { - "title": "U2 - Atomic City", - "id": "Vocal Star Karaoke" - }, - { - "title": "Jack Harlow - Denver", - "id": "Vocal Star Karaoke" - }, - { - "title": "Imagine Dragons - Children Of The Sky (A Starfield Song) (Karaoke Version With Lyrics)", - "id": "8e_RCQL1AzY" - }, - { - "title": "Rod Wave - Call Your Friends (Karaoke Version With Lyrics)", - "id": "Z_Qxrnc0c9A" - }, - { - "title": "Joel Corry - Hey DJ (Karaoke Version With Lyrics)", - "id": "ZXVO3Fa6HYU" - }, - { - "title": "Lipstick - Charlie Puth - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "On My Love - Zara Larsson & David Guetta - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "American Town - Ed Sheeran - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Greedy - Tate McRae - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Winner - Conan Gray - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "ONE MORE TIME - Blink 182 (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Paint The Town Red - Doja Cat - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Mr Right - Mae Stephens & Meghan Trainor - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Bug Like an Angel - Mitski - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Rich Men North Of Richmond - Oliver Anthony - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Essence - Oliver Tree & Super Computer - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "I'm Just Ken - Ryan Gosling - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Demons - Doja Cat - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Gimme Love - Sia - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Teenage Kicks - The Undertones - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Dreadlock Holiday - 10cc - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Easy - Commodores - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Hated\" - YUNGBLUD - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Escapism\" - RAYE & 070 Shake - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Perhaps\" - Guns N' Roses - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Single Soon\" - Selena Gomez - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Get Him Back\" - Olivia Rodrigo - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"My Sweet Lord\" - George Harrison - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Enough Is Enough\" - Post Malone - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Angry\" - The Rolling Stones - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Popular\" - The Weeknd, Playboi Carti, Madonna - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Boyfriend\" - Usher - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Jericho\" - Iniko - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Love U Like That\" - Lauv - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Used To Be Young\" - Miley Cyrus - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Tension\" - Kylie Minogue - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Life Goes On\" - Ed Sheeran - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Sugar Mommy\" - Crash Adams - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Speed Drive\" - Charli XCX - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Be More\" - Stephen Sanchez - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Tangled up in Blue - Bob Dylan - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"Sweet Home Alabama\" - Lynyrd Skynyrd", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "\"Trauma\" - BoyWithUke - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Madison Beer - Spinnin (Karaoke Version)", - "id": "kted2cSx0dU" - }, - { - "title": "James Arthur - Blindside (Karaoke Version)", - "id": "Qgx-cjQppPE" - }, - { - "title": "Neil Young - Only Love Can Break Your Heart (Karaoke Version)", - "id": "Ot6VQMvltTs" - }, - { - "title": "Vocal Star Unsigned 2023 Final - Solo and Under 18s", - "id": "BFQZlH0xaEs" - }, - { - "title": "Calvin Harris, Sam Smith - Desire (Karaoke Version)", - "id": "CxwDyuyB7ak" - }, - { - "title": "Olivia Rodrigo - Bad Idea Right (Karaoke Version)", - "id": "q5Y92rYEJFA" - }, - { - "title": "Post Malone - Mourning (Karaoke Version)", - "id": "Cffp2ARBLF0" - }, - { - "title": "Cian Ducrot - Endless Nights (Karaoke Version)", - "id": "siwEjuXjghQ" - }, - { - "title": "Solomon Burke - Cry to Me (Karaoke Version)", - "id": "iEruIfedKZs" - }, - { - "title": "Mungo Jerry - In the Summertime (Karaoke Version)", - "id": "S1vW7fxwo4o" - }, - { - "title": "Nothing But Thieves - Tomorrow Is Closed (Karaoke Version)", - "id": "Y__JRUxIhf0" - }, - { - "title": "Harry Styles - Daylight (Karaoke Version)", - "id": "275dmsY4ouw" - }, - { - "title": "Jason Aldean - Try that in a Small Town (Karaoke Version)", - "id": "w7PUPWKpqwg" - }, - { - "title": "\"Pink\" - Lizzo - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "\"What Was I Made For\" - Billie Eilish - (Karaoke Version With Lyrics)", - "id": "Vocal Star Karaoke" - }, - { - "title": "Anne-Marie - TRAINWRECK (Karaoke Version)", - "id": "KKx6m3dHSqw" - }, - { - "title": "ZAYN - Love Like This (Karaoke Version)", - "id": "gsEx4IXcsac" - }, - { - "title": "Both Sides, Now Karaoke", - "id": "Joni Mitchell Karaoke Version" - }, - { - "title": "The Stooges - I Wanna Be Your Dog (Full Version In Description)", - "id": "2yr2Zk7SnqE" - }, - { - "title": "The Stooges - I Wanna Be Your Dog (Karaoke Version)", - "id": "wQ7a5Lxjjqo" - }, - { - "title": "Will.i.am, Britney Spears - MIND YOUR BUSINESS (Karaoke Version)", - "id": "_dz1Ld0pK9w" - }, - { - "title": "Oliver Tree - One & Only (Karaoke Version)", - "id": "l9RMPBMfMVU" - }, - { - "title": "Jelly Roll - Need A Favor (Karaoke Version)", - "id": "j7MR5Gr323c" - }, - { - "title": "Rush Karaoke", - "id": "Troye Sivan Karaoke Version" - }, - { - "title": "Luke Combs - Fast Car (Karaoke Version)", - "id": "-ZtWCLftTvg" - }, - { - "title": "Blind Faith - Can't Find My Way Home (Karaoke Version)", - "id": "JY0YXbFA7Y4" - }, - { - "title": "Dionne Warwick - What the World Needs Now Is Love (Karaoke Version)", - "id": "f2i9vrYBTKU" - }, - { - "title": "Dan + Shay - Bigger Houses (Karaoke Version)", - "id": "RmBwHVmOVss" - }, - { - "title": "Linda Lyndell - What a Man (Karaoke Version)", - "id": "7c7n8n-y9I0" - }, - { - "title": "Tom Grennan - How Does It feel (Karaoke Version)", - "id": "YAk91JjMm1E" - }, - { - "title": "Taylor Swift - Cruel Summer (Karaoke Version)", - "id": "0W8c5Lmtbp4" - }, - { - "title": "Rita Ora, Fatboy Slim - Praising You (Karaoke Version)", - "id": "x-N9ZbYY1JU" - }, - { - "title": "David Guetta, Anne-Marie, Coi Leray - Baby Don't Hurt Me (Karaoke Version)", - "id": "DUyV3YL2uag" - }, - { - "title": "Skeeter Davis - The End of the World (Karaoke Version)", - "id": "IotciyzUliw" - }, - { - "title": "Ed Sheeran - Curtains (Karaoke Version)", - "id": "RS4AMb4NCYE" - }, - { - "title": "Taylor Swift - I Can See You (Karaoke Version)", - "id": "w51ocLhOqQo" - }, - { - "title": "Becky Hill, Lewis Thompson - Side Effects (Karaoke Version)", - "id": "MlR7CDRJ8iQ" - }, - { - "title": "Hannah Laing, RoRo - Good Love (Karaoke Version)", - "id": "vnyOjuAHn28" - }, - { - "title": "Anne-Marie, Shania Twain - UNHEALTHY (Karaoke Version)", - "id": "-nDj3R6vcbk" - }, - { - "title": "The Velvet Underground - Sunday Morning (Karaoke Version)", - "id": "qeaK663pEdA" - }, - { - "title": "Oliver Tree - Bounce (Karaoke Version)", - "id": "VbHVc0n3TyM" - }, - { - "title": "Jazzy - Giving Me (Karaoke Version)", - "id": "sYj5gO9nv8Y" - }, - { - "title": "Creedence Clearwater Revival - Down on the Corner (Karaoke Version)", - "id": "m9yqwTLjL4o" - }, - { - "title": "Jason Mraz - Feel Good Too (Karaoke Version)", - "id": "MhCOnXNiPRk" - }, - { - "title": "The Moody Blues - Go Now (Karaoke Version)", - "id": "FbVvenPmtJg" - }, - { - "title": "Tenacious D - Wicked Game (Karaoke Version)", - "id": "NAflndIv9lE" - }, - { - "title": "The Weight Karaoke", - "id": "The Band Karaoke Version" - }, - { - "title": "The Turtle - Happy Together (Karaoke Version)", - "id": "5E9p4Qctwhk" - }, - { - "title": "Switch Disco, Ella Henderson โ€“ REACT (Karaoke Version)", - "id": "X4NqEhktJsw" - }, - { - "title": "Olivia Rodrigo - Vampire (Karaoke Version)", - "id": "DwC6ePG38o8" - }, - { - "title": "Yung Yury & Damn Yury โ€“ TABU (Karaoke Version)", - "id": "0R7IdyiiFso" - }, - { - "title": "The Beach Boys - Wouldn't It Be Nice (Karaoke Version)", - "id": "slHraWKovaA" - }, - { - "title": "NF, Julia Michaels โ€“ GONE (Karaoke Version)", - "id": "eYjilLPUbDU" - }, - { - "title": "Pashanim - Bagchaser Can (Karaoke Version)", - "id": "OZvfoetEAYs" - }, - { - "title": "Joost, Otto Waalkes And Ski Aggu - Friesenjung (Karaoke Version)", - "id": "ZI47nBl5oaE" - }, - { - "title": "Scott McKenzie - San Francisco (Karaoke Version)", - "id": "HVdkLc-YCn4" - }, - { - "title": "Sprinter Karaoke", - "id": "Central Cee, Dave Karaoke Version" - }, - { - "title": "Fontella Bass - Rescue Me", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Apache 207 โ€“ Neunzig (Karaoke Version)", - "id": "KoM4GXiREg0" - }, - { - "title": "Ikke Hรผftgold x Schรผrze x DJ Robin - Bumsbar (Karaoke Version)", - "id": "wkYyy6hiw2Y" - }, - { - "title": "Thirty Seconds to Mars โ€“ Stuck (Karaoke Version)", - "id": "wzwnsLWadFQ" - }, - { - "title": "The Seekers - Never Find Another You (Karaoke Version)", - "id": "v7gTOmxHUdc" - }, - { - "title": "Tokyo Mew Mew - My Sweet Heart (Karaoke Version)", - "id": "hD1kHLYeTfI" - }, - { - "title": "Noa Kirel - Gone (Karaoke Version)", - "id": "SW_615xqYz4" - }, - { - "title": "Princess Tutu - Morning Grace (Main Theme) (Karaoke Version)", - "id": "6IeOPuY6zB0" - }, - { - "title": "Pink - Runaway (Karaoke Version)", - "id": "9vCbZSqqgQk" - }, - { - "title": "The Byrds - Turn Turn Turn (Karaoke Version)", - "id": "y1_nB31wQ3I" - }, - { - "title": "Taylor Swift, Ice Spice - Karma (Karaoke Version)", - "id": "n_dYmeUDMyY" - }, - { - "title": "Simon & Garfunkel - Homeward Bound (Karaoke Version)", - "id": "2CN9BYpJANk" - }, - { - "title": "Foo Fighters โ€“ Rescued (Karaoke Version)", - "id": "vxr-yidfsjs" - }, - { - "title": "The Searchers - Needles And Pins (Karaoke Version)", - "id": "oelCFQZLdqo" - }, - { - "title": "Madison Beer - Home To Another One (Karaoke Version)", - "id": "P2HtKLUimks" - }, - { - "title": "Fifty Fifty - Cupid (Karaoke Version)", - "id": "rFVMIA8p0yI" - }, - { - "title": "The Isley Brothers -This Old Heart Of Mine (Karaoke Version)", - "id": "s8Eaybmt7iM" - }, - { - "title": "Boygenius - Not Strong Enough (Karaoke Version)", - "id": "njPlT8mvcLo" - }, - { - "title": "BJ Thomas - Raindrops Keep Falling On My Head (Karaoke Version)", - "id": "vB5ohcp-030" - }, - { - "title": "Imagine Dragons โ€“ Crushed (Karaoke Version)", - "id": "Z5R5KohgTIQ" - }, - { - "title": "DJ OTZI - Anton Aus Tirol (Karaoke Version)", - "id": "NZX5EDhQ-xI" - }, - { - "title": "Creedence Clearwater Revival - Bad Moon Rising (Karaoke Version)", - "id": "mfCKv3kTVjE" - }, - { - "title": "Conan Gray - Never Ending Song (Karaoke Version)", - "id": "T-mqZTIHLas" - }, - { - "title": "Strandtag - 36 Grad (Karaoke Version)", - "id": "qWaLMJAaemk" - }, - { - "title": "Dua Lipa - Dance The Night Barbie Movie (Karaoke Version)", - "id": "2h77-d5NxuY" - }, - { - "title": "OneRepublic - RUNAWAY (Karaoke Version)", - "id": "rz7ywPQ4ons" - }, - { - "title": "Jonas Brothers - Waffle House (Karaoke Version)", - "id": "JtUDWk3d9ng" - }, - { - "title": "The Weeknd, Future - Double Fantasy (Karaoke Version)", - "id": "HCm12I_rVD0" - }, - { - "title": "Loreen - Tattoo (Karaoke Version)", - "id": "ixY3T-G50-Y" - }, - { - "title": "Kylie Minogue - Padam Padam (Karaoke Version)", - "id": "2QKeAd2kQIE" - }, - { - "title": "Jorja Smith - Little Things (Karaoke Version)", - "id": "sIoc9mKKYtQ" - }, - { - "title": "Jess Glynne - Silly Me (Karaoke Version)", - "id": "t4WGVH9Thc0" - }, - { - "title": "Jason Derulo - Glad U Came (Karaoke Version)", - "id": "oOQDmMwWRD8" - }, - { - "title": "The Archies - Sugar Sugar", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Miley Cyrus - Jaded (Karaoke Version)", - "id": "43fI32kjGzQ" - }, - { - "title": "Harry Styles - Satellite (Karaoke Version)", - "id": "BKg1Sqd9K54" - }, - { - "title": "The McCoys - Hang On Sloopy (Karaoke Version)", - "id": "D5wJvw8CfwQ" - }, - { - "title": "Foo Fighters - Under You (Karaoke Version)", - "id": "Ptn5eolPWh8" - }, - { - "title": "Hozier - Eat Your Young (Karaoke Version)", - "id": "mZwiVjao-RY" - }, - { - "title": "Bring Me The Horizon - LosT (Karaoke Version)", - "id": "yPdzHh-MEPM" - }, - { - "title": "Stevie Wonder - For Once in My Life (Karaoke Version)", - "id": "IM4qlq-ORQo" - }, - { - "title": "Queens Of The Stoneage - Emotive Sickness (Karaoke Version)", - "id": "7J3s6SBabAs" - }, - { - "title": "John Denver - Leaving on a Jet Plane (Karaoke Version)", - "id": "DVLXyUOMM2Q" - }, - { - "title": "Rema, Selena Gomez - Calm Down (Karaoke Version)", - "id": "QqNmWxEY5kM" - }, - { - "title": "Colbie Caillat - Worth It (Karaoke Version)", - "id": "L7FE1EJIQtk" - }, - { - "title": "Tiesto - All Nighter (Karaoke Version)", - "id": "Z7i-B05tWSI" - }, - { - "title": "David Kushner - Daylight (Karaoke Version)", - "id": "tkWGVfhCezQ" - }, - { - "title": "Niall Horan - Meltdown (Karaoke Version)", - "id": "w6RExI8aAok" - }, - { - "title": "Post Malone - Chemical (Karaoke Version)", - "id": "HNdU9r59YrA" - }, - { - "title": "Cafune - Perspective (Karaoke Version)", - "id": "ry0Rk5prxf4" - }, - { - "title": "Labrinth - Never Felt So Alone (Karaoke Version)", - "id": "2Ap9N9DnE_U" - }, - { - "title": "NF - Happy (Karaoke Version)", - "id": "evnyz16UICc" - }, - { - "title": "Jack Black - Peaches (Karaoke Version) The Super Mario Bros. Movie", - "id": "rpjLDKEJ7I8" - }, - { - "title": "Lewis Capaldi - Wish You The Best (Karaoke Version)", - "id": "P52Gi5Bx1UU" - }, - { - "title": "Coi Leray - Players (Karaoke Version)", - "id": "HAYg_1cWXAo" - }, - { - "title": "Morgan Wallen - Thought You Should Know (Karaoke Version)", - "id": "sJ-ZSnYR51s" - }, - { - "title": "Fireman Sam - Opening Theme (Karaoke Version)", - "id": "eMnGU8DGjgc" - }, - { - "title": "Labour Karaoke", - "id": "Paris Paloma Karaoke Version" - }, - { - "title": "Jax Jones & Calum Scott - Whistle (Karaoke Version)", - "id": "jKEcEqUGy6k" - }, - { - "title": "INNA - My Crystal Nails (Karaoke Version)", - "id": "8dZDiSE8vCY" - }, - { - "title": "Lexie Lu - Dance Dance (Karaoke Version)", - "id": "BfdhQC7fRr0" - }, - { - "title": "Mikolas Josef - Boys Don't Cry (Karaoke Version)", - "id": "eE89xXGh1t4" - }, - { - "title": "Calvin Harris, Ellie Goulding - Miracle (Karaoke Version)", - "id": "4GA_RyKPMPY" - }, - { - "title": "The Foundations - Build Me Up Buttercup (Karaoke Version)", - "id": "HbbPLz1Y-Zs" - }, - { - "title": "Fall Out Boy - Hold Me Like A Grudge (Karaoke Version)", - "id": "ISJxHL3y4PU" - }, - { - "title": "Tiesto - Lay Low (Karaoke Version)", - "id": "MRVeP8XTcac" - }, - { - "title": "Oliver Tree, David Guetta - Here We Go Again (Karaoke Version)", - "id": "tnZjhhX4Ves" - }, - { - "title": "Meghan Trainor - Mother (Karaoke Version)", - "id": "iojuwDB8fj4" - }, - { - "title": "Miley Cyrus - River (Karaoke Version)", - "id": "5TIyxX_xAu8" - }, - { - "title": "Ed Sheeran - Eyes Closed (Karaoke Version)", - "id": "zHU_bsQ_V8o" - }, - { - "title": "Roy Orbison - Only the Lonely (Karaoke Version)", - "id": "ySL-J4q-LhA" - }, - { - "title": "Paramore - Running Out Of Time (Karaoke Version)", - "id": "6w373gxAr7s" - }, - { - "title": "Beyoncรฉ - CUFF IT (Karaoke Version)", - "id": "RudbJCX28-c" - }, - { - "title": "Bebe Rexha - Heart Wants What It Wants (Karaoke Version)", - "id": "Cm20xWjVdWA" - }, - { - "title": "Taylor Swift - All Of The Girls You Loved Before (Karaoke Version)", - "id": "KK-Zp7W0vNw" - }, - { - "title": "Central Cee - Me and You (Karaoke Version)", - "id": "uSjdM068Xpg" - }, - { - "title": "The Kinks - Sunny Afternoon", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Why Don't We - Just Friends (Karaoke Version) With Lyrics HD", - "id": "rWpzqupNv7s" - }, - { - "title": "Michelle Branch - Everywhere (Karaoke Version)", - "id": "Km5uwkqShN8" - }, - { - "title": "Kali Uchis - Moonlight (Karaoke Version)", - "id": "PBrthxuKin0" - }, - { - "title": "Mimi Webb - Freezing (Karaoke Version)", - "id": "77c8JlRRBos" - }, - { - "title": "Halsey - Die 4 Me (Karaoke Version)", - "id": "-awefS1AcHk" - }, - { - "title": "Demi Lovato - Still Alive (Karaoke Version)", - "id": "UFUm3uTLANk" - }, - { - "title": "Jonas Brothers - Wings (Karaoke Version)", - "id": "LknCXtdg4BQ" - }, - { - "title": "Linkin Park - Lost (Karaoke Version)", - "id": "n9NchRpGtfM" - }, - { - "title": "Beabadoobee - Glue Song (Karaoke Version)", - "id": "zk-WM-T1oe4" - }, - { - "title": "Carly Rae Jepsen -Surrender My Heart (Karaoke Version)", - "id": "qKOM6vTB2-w" - }, - { - "title": "Taylor Swift - Lavender Haze (Karaoke Version)", - "id": "fMgkIZBhI5c" - }, - { - "title": "The Kinks - Dedicated Follower of Fashion (Karaoke Version)", - "id": "8qNumtBhQjY" - }, - { - "title": "RAYE - Ice Cream Man (Karaoke Version)", - "id": "vlvIC7w66x4" - }, - { - "title": "Anne-Marie - SAD B!TCH (Karaoke Version)", - "id": "RfPRoHu-4jM" - }, - { - "title": "Fall Out Boy - Love From The Other Side (Karaoke Version)", - "id": "mnFHhJy92Oo" - }, - { - "title": "Niall Horan โ€“ Heaven (Karaoke Version)", - "id": "lPFGGlZJY-o" - }, - { - "title": "Zara Larsson - Can't Tame Her (Karaoke Version)", - "id": "rPUGk1oo5Nk" - }, - { - "title": "Rita Ora - You Only Love Me (Karaoke Version)", - "id": "CcQNdSIknao" - }, - { - "title": "Ellie Goulding - Like A Saviour (Karaoke Version)", - "id": "D9FvEB1JfnI" - }, - { - "title": "Sam Smith - I'm Not Here to Make Friends (Karaoke Version)", - "id": "VgDFptnF3Ow" - }, - { - "title": "Trustfall Karaoke", - "id": "Pink Karaoke Version" - }, - { - "title": "The Monkees - I'm a Believer (Karaoke Version)", - "id": "cHvpYb8jSAY" - }, - { - "title": "Roy Orbison - Oh Pretty Woman (Karaoke Version)", - "id": "JUC5LfB01ZQ" - }, - { - "title": "McKenna Grace - Ugly Crier (Karaoke Version)", - "id": "a6-geGWzR3A" - }, - { - "title": "KSI ft. Oliver Tree โ€“ Voices (Karaoke Version)", - "id": "SSY2pV5Lv8o" - }, - { - "title": "The Kid Laroi - Love Again (Karaoke Version)", - "id": "41AR2ePrwuM" - }, - { - "title": "Sam Cooke โ€“ Cupid (Karaoke Version)", - "id": "ScjpdswJfDM" - }, - { - "title": "The Monkees - Last Train To Clarksville (Karaoke Version)", - "id": "5bD0Hx5CMxM" - }, - { - "title": "Van Morrison - Brown Eyed Girl", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Libianca โ€“ People (Karaoke Version)", - "id": "iEpTULZNxaA" - }, - { - "title": "Mรฅneskin. Tom Morello - GOSSIP (Karaoke Version)", - "id": "sUIggZIoV_o" - }, - { - "title": "JVKE - This Is What Heartbreak Feels Like (Karaoke Version)", - "id": "lJqgE1krjQk" - }, - { - "title": "Mimi Webb - Red Flags (Karaoke Version)", - "id": "R4wceMTphf0" - }, - { - "title": "Drake - Jumbotron S**t Poppin (Karaoke Version)", - "id": "NtXsHGi82HQ" - }, - { - "title": "Paramore - The News (Karaoke Version)", - "id": "a-u2xKSrkIo" - }, - { - "title": "Maisie Peters - Not Another Rockstar (Karaoke Version)", - "id": "mQQtQXw8uq0" - }, - { - "title": "Felix Jaehn & Ray Dalton - Call It Love (Karaoke Version)", - "id": "a-TMTf4krl0" - }, - { - "title": "Daniel Seavey - Can We Pretend That We're Good (Karaoke Version)", - "id": "VOdMws5S_ho" - }, - { - "title": "Carly Pearce - What He Didn't Do (Karaoke Version)", - "id": "OSAUdhu5GoI" - }, - { - "title": "Viagra Boys - Punk Rock Loser (Karaoke Version)", - "id": "qde-EM7sgps" - }, - { - "title": "Kim Dracula โ€“ Drown (Karaoke Version)", - "id": "uJwOWf3pqbk" - }, - { - "title": "Dove Cameron - Girl Like Me (Karaoke Version)", - "id": "S5lXKYs0Oqo" - }, - { - "title": "Mike Posner - I'm Not Dead Yet (Karaoke Version)", - "id": "14y460VWX6E" - }, - { - "title": "Sigala, David Guetta, Sam Ryder - Living Without You (Karaoke Version)", - "id": "CVWGxySD0E4" - }, - { - "title": "Oliver Tree - Suitcase Full Of Cash (Karaoke Version)", - "id": "-qOEJgXYwtc" - }, - { - "title": "Flowers Karaoke", - "id": "Miley Cyrus Karaoke Version" - }, - { - "title": "Shania Twain - Giddy Up! (Karaoke Version)", - "id": "Xchqdte1Zw0" - }, - { - "title": "Forester - All I Need (Karaoke Version)", - "id": "QMXm1Oh0_Es" - }, - { - "title": "Jessie Reyez - Mutual Friend (Karaoke Version)", - "id": "3MUke2S9cqg" - }, - { - "title": "Jax Jones, MNEK -Where Did You Go (Karaoke Version)", - "id": "hM5e9yrvJJc" - }, - { - "title": "Glee Cast - Don't Rain On My Parade (Karaoke Version)", - "id": "S5Np_WBbH5E" - }, - { - "title": "Johnny Mathis - Chances Are (Karaoke Version)", - "id": "ZmyuqJocNc0" - }, - { - "title": "Ritchie Valens - Come On, Let's Go (Karaoke Version)", - "id": "3Nqw6DeMW_Y" - }, - { - "title": "The Coasters - Yakety Yak (Karaoke Version)", - "id": "o1qaqOtB5GY" - }, - { - "title": "Ritchie Valens - Donna (Karaoke Version)", - "id": "Gj9bwvHvxNs" - }, - { - "title": "Neil Sedaka - Oh! Carol (Karaoke Version)", - "id": "sApF6IPiMl8" - }, - { - "title": "Bobby Darin - Splish Splash (Karaoke Version)", - "id": "YL-cGSD5kG4" - }, - { - "title": "Machine Gun Kelly, Naomi Wild - Taurus (Karaoke Version)", - "id": "K3_TsIPLNIQ" - }, - { - "title": "SZA - Kill Bill (Karaoke Version)", - "id": "NnUUJsbVV6k" - }, - { - "title": "Sia - We Can Hurt Together (Karaoke Version)", - "id": "jVYy74eSAQw" - }, - { - "title": "Sam Smith, Kim Petras - Unholy (Karaoke Version)", - "id": "Xoa9XYI14Ug" - }, - { - "title": "Tove Lo - Grapefruit (Karaoke Version)", - "id": "qdVhT9VVWg0" - }, - { - "title": "Metallica - Lux aeterna (Karaoke Version)", - "id": "z27uZ-3v5P4" - }, - { - "title": "Thomas Rett, Katy Perry - Where We Started (Karaoke Version)", - "id": "CO1lHdNnKfY" - }, - { - "title": "Madison Beer- Showed Me (How I Fell In Love With You) (Karaoke Version)", - "id": "CiWQoHy4Uo4" - }, - { - "title": "Jessie Murph - If I Died Last Night (Karaoke Version)", - "id": "9vEbMNWVzxM" - }, - { - "title": "Aiden Bissett - Tripping Over Air (Karaoke Version)", - "id": "CEnmSRYInvk" - }, - { - "title": "Nicky Youre, Dazy - Sunroof (Karaoke Version)", - "id": "aclWMe7Z_Yo" - }, - { - "title": "Lewis Capaldi - Pointless (Karaoke Version)", - "id": "bDCZtHalMSA" - }, - { - "title": "Nessa Barret - Tired of California (Karaoke Version)", - "id": "VrVctvDMcMs" - }, - { - "title": "I Need You Karaoke", - "id": "Leann Rimes Karaoke Version" - }, - { - "title": "Muse - Verona (Karaoke Version)", - "id": "9qXAb9ojgWA" - }, - { - "title": "Pink - Never Gonna Not Dance Again (Karaoke Version)", - "id": "A7vQV4lpE3I" - }, - { - "title": "Stormzy - FIREBABE (Karaoke Version)", - "id": "nVfQy-0lbzw" - }, - { - "title": "Chris Brown - Under the Influence (Karaoke Version)", - "id": "NBJRsIQuimw" - }, - { - "title": "Galantis, David Guetta, MNEK - Damn (Youโ€™ve Got Me Saying) (Karaoke Version)", - "id": "4m5WdaWrdHo" - }, - { - "title": "Pharrell Williams & Travis Scott - Down in Atlanta (Karaoke Version)", - "id": "MaEGCkBAhRs" - }, - { - "title": "Drake, 21 Savage - Major Distribution (Karaoke Version)", - "id": "yaRYPVAvJrQ" - }, - { - "title": "The Crests - 16 Candles (Karaoke Version)", - "id": "t9H3NSEXeLw" - }, - { - "title": "Vocal Star Unsigned 2022 Final - Unsigned Singing Competition Final", - "id": "TL5sDLdygRE" - }, - { - "title": "Sabrina Carpenter - Nonsense (Karaoke Version)", - "id": "yC0B91onrYs" - }, - { - "title": "Imagine Dragons - Symphony (Karaoke Version)", - "id": "Kh2My-40fFo" - }, - { - "title": "Ava Max - Weapons (Karaoke Version)", - "id": "yNZPe6P9Qjc" - }, - { - "title": "Tiesto, Tate McRae - 10.35 (Karaoke Version)", - "id": "r5hXP7QJTi0" - }, - { - "title": "Charlie Puth - I Don't Think That I Like Her (Karaoke Version)", - "id": "7o1APbBwXRw" - }, - { - "title": "Harry Styles - Music for a Sushi Restaurant (Karaoke Version)", - "id": "0SEzC9NOgDg" - }, - { - "title": "Alok, Sigala, Ellie Goulding - All By Myself (Karaoke Version)", - "id": "Nv9poU8Vxwo" - }, - { - "title": "Charlie Puth - Loser (Karaoke Version)", - "id": "SHLDQpMIpU0" - }, - { - "title": "Taylor Swift - Bejeweled (Karaoke Version)", - "id": "DB9IxPpxo58" - }, - { - "title": "Oliver Tree, Robin Schultz - Miss You (Karaoke Version)", - "id": "GmcrQWHQKRo" - }, - { - "title": "Made You Look Karaoke", - "id": "Meghan Trainor Karaoke Version" - }, - { - "title": "Lift Me Up Karaoke", - "id": "Rihanna Karaoke Version" - }, - { - "title": "Vocal Star PA Speakers Quick Set Up (PA Speaker / Big Gig, Party Pack, Ultmate)", - "id": "XwwdNYiwp6E" - }, - { - "title": "Steve Lacy - Bad Habit (Karaoke Version)", - "id": "MLky3ks2BCA" - }, - { - "title": "The Future X - This Kind Of Love (Karaoke Version)", - "id": "3UoZ2kpA6Fg" - }, - { - "title": "Paul Anka - Put Your Head on My Shoulder (Karaoke Version)", - "id": "31OBwD9TTgk" - }, - { - "title": "James Arthur - Car's Outside (Karaoke Version)", - "id": "1AtT1Nhvb_8" - }, - { - "title": "Queen - Face It Alone (Karaoke Version)", - "id": "y3XOWpAyp8g" - }, - { - "title": "Patsy Cline -Walkin' After Midnight (Karaoke Version)", - "id": "TD9Xfwk8NlU" - }, - { - "title": "Taylor Swift - Anti Hero (Karaoke Version)", - "id": "m3GmC2Adj_0" - }, - { - "title": "charlieonnafriday- Enough (Karaoke Version)", - "id": "n1bt7sPcKYk" - }, - { - "title": "KSI - Summer Is Over (Karaoke Version)", - "id": "lo5I5ykZcPs" - }, - { - "title": "Jax - Victoriaโ€™s Secret (Karaoke Version)", - "id": "dygMEcyk4z0" - }, - { - "title": "Mรฅneskin - THE LONELIEST (Karaoke Version)", - "id": "PWefESb9rrg" - }, - { - "title": "George Ezra - Dance All Over Me (Karaoke Version)", - "id": "0y4Pi4VljlQ" - }, - { - "title": "Yungblud - Tissues (Karaoke Version)", - "id": "-aMJM41auEs" - }, - { - "title": "Louis Tomlinson - Bigger Than Me (Karaoke Version)", - "id": "2wRJkUZTMb0" - }, - { - "title": "Purple Disco Machine, Sophie and the Giants - In The Dark (Karaoke Version)", - "id": "vclttIikNbc" - }, - { - "title": "Chuck Berry - School Days (Karaoke Version)", - "id": "Nix-Ilv-djI" - }, - { - "title": "Sharks - Imagine Dragons (Karaoke Version)", - "id": "q8jpZzR6rLk" - }, - { - "title": "Doris Day - Quรฉ Serรก, Serรก (Whatever Will Be, Will Be) (Karaoke Version)", - "id": "V8Fwba36Vrs" - }, - { - "title": "LF System - Afraid To Feel (Karaoke Version)", - "id": "T69awMoFeuM" - }, - { - "title": "Sofia Carson - Come Back Home (Karaoke Version)", - "id": "bJNeeTOxa90" - }, - { - "title": "Dove Cameron - Breakfast (Karaoke Version)", - "id": "9CrFgt7kc0s" - }, - { - "title": "Ed Sheeran, Pokรฉmon - Celestial (Karaoke Version)", - "id": "Rick3gdB3IQ" - }, - { - "title": "Lewis Capaldi - Forget Me (Karaoke Version)", - "id": "8SjhQImVEe0" - }, - { - "title": "I Just Want A Lover - Noah Cyrus (Karaoke Version)", - "id": "uPUj62-B37w" - }, - { - "title": "Ava Max - Million Dollar Baby (Karaoke Version)", - "id": "Za4O_LbVV58" - }, - { - "title": "\"How It's Made\" How Vocal Star Make A Karaoke Track", - "id": "CJsIlji1wPs" - }, - { - "title": "Barrett Strong - Money (That's What I Want) (Karaoke Version)", - "id": "tQNME5XhpjM" - }, - { - "title": "The Killers โ€“ Boy (Karaoke Version)", - "id": "qQaZTx8lsOk" - }, - { - "title": "Joel Corry, Becky Hill - HISTORY (Karaoke Version)", - "id": "bUkqU63tigE" - }, - { - "title": "David Guetta, Bebe Rexha - I'm Good (Blue) (Karaoke Version)", - "id": "Muur5gFzk5Q" - }, - { - "title": "Lizzo - 2 Be Loved (Am I Ready) (Karaoke Version)", - "id": "6rb6sk77wQk" - }, - { - "title": "Vocal-Star VS-MT Portable Bluetooth Karaoke Machine With Led Lights Effects & 2 Wireless Microphones", - "id": "Y41ALUD3Dq8" - }, - { - "title": "Sam Ryder - Somebody (Karaoke Version)", - "id": "TID7WIzjQn0" - }, - { - "title": "Sia - Snowman (Karaoke Version)", - "id": "xeXyBnTKrHw" - }, - { - "title": "Camo Columbo - I can't help falling in love (Karaoke Version)", - "id": "NTFux5lUhaA" - }, - { - "title": "Bobby Freeman - Do You Want To Dance (Karaoke Version)", - "id": "FD5GB1zo0a4" - }, - { - "title": "Elton John, Britney Spears - Hold Me Closer (Karaoke Version)", - "id": "nZ_HOWq7QG0" - }, - { - "title": "Red Hot Chili Peppers - These Are The Days (Karaoke Version)", - "id": "GaJlqxGo32Q" - }, - { - "title": "Vocal-Star Karaoke Product Overview September 2022", - "id": "MyL3Vp3uod4" - }, - { - "title": "Drake - Massive (Karaoke Version)", - "id": "9PWuPV39DRE" - }, - { - "title": "HAIM - Summer Girl (Karaoke Version)", - "id": "YKsOugao0K0" - }, - { - "title": "Meghan Trainor, Teddy Swims - Bad For Me (Karaoke Version)", - "id": "1y0RsEzQZ3g" - }, - { - "title": "Bella Poarch - Dolls (Karaoke Version)", - "id": "zTVKItt1wFk" - }, - { - "title": "The Penguins - Earth Angel (Karaoke Version)", - "id": "fOprZ_JlKGo" - }, - { - "title": "Sam Cooke - You Send Me (Karaoke Version)", - "id": "l-1da372IHQ" - }, - { - "title": "Arctic Monkeys - Thereโ€™d Better Be A Mirrorball (Karaoke Version)", - "id": "HkUGoHa8AXI" - }, - { - "title": "Pharrell Williams ft. 21 Savage & Tyler, the Creator - Cash In Cash Out (Karaoke Version)", - "id": "ClrJAodlOpc" - }, - { - "title": "LUM!X MOLOW - Trick Or Treat (Karaoke Version)", - "id": "IVhJjHwDGAY" - }, - { - "title": "The Coasters - Poison Ivy (Karaoke Version)", - "id": "BFX-akKnlYM" - }, - { - "title": "Carly Rae Jepsen - Beach House (Karaoke Version)", - "id": "uByjyXW_368" - }, - { - "title": "Billie Eilish - TV (Karaoke Version)", - "id": "6ywpPFs7SVo" - }, - { - "title": "Luke Comb - The Kind of Love We Make (Karaoke Version)", - "id": "HL3cxSEX-Rg" - }, - { - "title": "5 Seconds Of Summer - BLENDER (Karaoke Version)", - "id": "I-SVpsIKV3s" - }, - { - "title": "Dido - Thank You (Karaoke Version)", - "id": "x8nGD0YFuug" - }, - { - "title": "Billie Eilish - The 30th (Karaoke Version)", - "id": "NT4Y2D5BASU" - }, - { - "title": "Stephen Speaks - Passenger Seat (Karaoke Version)", - "id": "WSnZ8hum8Vs" - }, - { - "title": "David Guetta, Becky Hill, Ella Henderson - Crazy What Love Can Do (Karaoke Version)", - "id": "Nuo7yQlZqoY" - }, - { - "title": "Elvis Presley - Jailhouse Rock (Karaoke Version)", - "id": "_XnqK7gVq5k" - }, - { - "title": "AJR - I Won't (Karaoke Version)", - "id": "dciKCgY35A4" - }, - { - "title": "VS-DSPA Vocal-Star Portable Disco PA Speaker System, Bluetooth, Led Lights & 2 Wireless Mics Review", - "id": "lw-KgRK1uDw" - }, - { - "title": "P180 Vocal-Star Karaoke Machine & PA Speaker With Bluetooth MP3 2 Wireless Microphones 200w Review", - "id": "PIOBT9UTnpE" - }, - { - "title": "VS-275BT Vocal-Star Portable Karaoke Machine - Bluetooth, 2 Mics 60w Speaker Lights Effects Review", - "id": "JRdE93nlam8" - }, - { - "title": "VS-355BT Vocal-Star Portable Bluetooth party 100W speaker with LED ring and full flame light Review", - "id": "UMqQTz-9sY0" - }, - { - "title": "Vocal Star Sound Active DMX LED Par Disco Club DJ Light RGBW Lighting Spotlight Kit+Stand Review", - "id": "3TF9YZF7bJ0" - }, - { - "title": "VS-1200 Vocal-Star Karaoke Machine with Microphones, Bluetooth, Party Songs Review / Overview", - "id": "fPp5N7N-8Dg" - }, - { - "title": "VS-800 Vocal-Star Bluetooth CDG Karaoke Machine With 2 Microphones, Party Songs Review / Overview", - "id": "plN3NU2a9Z0" - }, - { - "title": "VS-600 Vocal-Star Karaoke Machine, Bluetooth Including Party Karaoke Songs & Mics Review / Overview", - "id": "X0i8Kwsn24g" - }, - { - "title": "Elvis Presley - Hound Dog (Karaoke Version)", - "id": "5hgHlB2Fttg" - }, - { - "title": "P120 Vocal Star Portable PA Speaker System with Bluetooth, MP3, 300w 12\" Woofer & 2 VHF Mics Review", - "id": "WNJOcHORUrs" - }, - { - "title": "Russ, Ed Sheeran - Are You Entertained (Karaoke Version)", - "id": "7G-v1a352Tk" - }, - { - "title": "Elvis Presley - Blue Suede Shoes (Karaoke Version)", - "id": "Ed0xKEhefxc" - }, - { - "title": "Lauv - Kids Are Born Stars (Karaoke Version)", - "id": "Bh2KatlscU8" - }, - { - "title": "Demi Lovato - SUBSTANCE (Karaoke Version)", - "id": "ewKvYpykn6w" - }, - { - "title": "Florence + The Machine - Free (Karaoke Version)", - "id": "P79eNHTkY3g" - }, - { - "title": "Doja Cat - Vegas (Karaoke Version)", - "id": "AK_NQNxlmRM" - }, - { - "title": "Tate McRae - Don't come back (Karaoke Version)", - "id": "jPfx-xJ2dX0" - }, - { - "title": "Sabrina Carpenter - Because I Liked A Boy (Karaoke Version)", - "id": "q39Tv0wT_rU" - }, - { - "title": "Coldplay - Biutyful (Karaoke Version)", - "id": "X5GHFx9yjHc" - }, - { - "title": "Mabel - LOL (Karaoke Version)", - "id": "IAvlHWp9BYg" - }, - { - "title": "Blackbear - The Idea (Karaoke Version)", - "id": "nzEWe0-GNf4" - }, - { - "title": "Devon Cole - W.I.T.C.H. (Karaoke Version)", - "id": "C8pZigS0HA0" - }, - { - "title": "Nathan Dawe, Ella Henderson -21 Reasons (Karaoke Version)", - "id": "r5sCqyJzBuc" - }, - { - "title": "Calvin Harris, Justin Timberlake, Halsey, Pharrell - Stay With Me (Karaoke Version)", - "id": "Nn1H8gpOGiI" - }, - { - "title": "OneRepublic - I Ain't Worried (Karaoke Version)", - "id": "_D4rxzdBVd8" - }, - { - "title": "Kygo, Dean Lewis - Lost Without You (Karaoke Version)", - "id": "59-vVvp2h_Y" - }, - { - "title": "Charlie Puth, Junk Kook - Left And Right (Karaoke Version)", - "id": "2oI-QfoZOWE" - }, - { - "title": "Imagine Dragons - I Don't Like Myself (Karaoke Version)", - "id": "svKKReNVsdU" - }, - { - "title": "THE ANXIETY, WILLOW, Tyler Cole - Meet Me At Our Spot (Karaoke Version)", - "id": "FFRwvFNg1QM" - }, - { - "title": "Lizzo - Grrrls (Karaoke Version)", - "id": "YdVnkT6Ixz0" - }, - { - "title": "Ilkay Sencan, INNA - Talk (Karaoke Version)", - "id": "SniBcEAkPlE" - }, - { - "title": "Kate Bush - Running Up That Hill (Karaoke Version)", - "id": "oGyZUXOm9Fg" - }, - { - "title": "Calvin Harris, Dua Lipa, Young Thug - Potion (Karaoke Version)", - "id": "m0bLV3tfTfA" - }, - { - "title": "Nessa Barrett - Die First (Karaoke Version)", - "id": "1ZCgppJD7Vo" - }, - { - "title": "5 Seconds Of Summer - Me, Myself & I (Karaoke Version)", - "id": "pdjHFq5Ro9Q" - }, - { - "title": "Panic! At The Disco - Viva Las Vengeance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xsvXkLY2ul8" - }, - { - "title": "I Love U - The Chainsmokers (Karaoke Version)", - "id": "G1IVe9lTowk" - }, - { - "title": "Joji - Glimpse of Us (Karaoke Version)", - "id": "OYoq7Nt6Ffw" - }, - { - "title": "Demi Lovato - SKIN OF MY TEETH (Karaoke Version)", - "id": "43cz34RIwBE" - }, - { - "title": "Beyoncรฉ - BREAK MY SOUL (Karaoke Version)", - "id": "pkuZgQbPvFM" - }, - { - "title": "Taylor Swift - Carolina (Karaoke Version)", - "id": "m8NzHcFlI7I" - }, - { - "title": "Justin Bieber - Off My Face (Karaoke Version)", - "id": "YYVQa7jdi2E" - }, - { - "title": "Mรฅneskin - If I Can Dream (Karaoke Version)", - "id": "u3sXDSem90U" - }, - { - "title": "Post Malone - Insane (Karaoke Version)", - "id": "2VOTYZMmUkE" - }, - { - "title": "Black Eyed Peas, Shakira, David Guetta - DON'T YOU WORRY (Karaoke Version)", - "id": "21BLQr2OeDk" - }, - { - "title": "Halsey - So Good (Karaoke Version)", - "id": "7pQ1ixMx6DY" - }, - { - "title": "Harry Styles - Matilda (Karaoke Version)", - "id": "oFwgWqHenh0" - }, - { - "title": "Until I Found You Karaoke", - "id": "Stephen Sanchez Karaoke Version" - }, - { - "title": "Panic! At The Disco - House Of Memories (Karaoke Version)", - "id": "P4YySEFwzes" - }, - { - "title": "Muse - Will Of The People (Karaoke Version)", - "id": "6M3da3GpxnM" - }, - { - "title": "Anees - Sun And Moon (Karaoke Version)", - "id": "qZexOHMe2-A" - }, - { - "title": "Ed Sheeran, Lil Baby - 2Step (Karaoke Version)", - "id": "-v58f5tHVzc" - }, - { - "title": "Morgan Wallen - You Proof (Karaoke Version)", - "id": "ewgqPilbkh8" - }, - { - "title": "Oliver Tree - I Hate You (Karaoke Version)", - "id": "euvyGE1aYyY" - }, - { - "title": "Sofia Carson - It's Only Love, Nobody Dies (Karaoke Version)", - "id": "OMWJ-nIt0ZY" - }, - { - "title": "Charlie Puth - That's Hilarious (Karaoke Version)", - "id": "hmagkoVcO7g" - }, - { - "title": "Sam Fender - Getting Started (Karaoke Version)", - "id": "yJzB8J09gRo" - }, - { - "title": "Mรฅneskin - SUPERMODEL (Karaoke Version)", - "id": "zCWhTptHgS4" - }, - { - "title": "Carly Rae Jepsen - Western Wind (Karaoke Version)", - "id": "fCKlBg4zKrg" - }, - { - "title": "Jack Harlow - First Class (Karaoke Version)", - "id": "1s3YJFsDADY" - }, - { - "title": "The Kid LAROI - Thousand Miles (Karaoke Version)", - "id": "LEflumI4LiY" - }, - { - "title": "Lady Gaga - Hold My Hand (Karaoke Version)", - "id": "8VuucJza7IE" - }, - { - "title": "Sam Ryder - Tiny Riot (Karaoke Version)", - "id": "3faeHXT-yCs" - }, - { - "title": "James Arthur, John Franceschi - Lose My Mind (Karaoke Version)", - "id": "kMxCJ2kvqm0" - }, - { - "title": "Harry Styles -Late Night Talking (Karaoke Version)", - "id": "TmOK_aoNtYE" - }, - { - "title": "Labrinth - Formula (Karaoke Version)", - "id": "9rEiHoaO-VY" - }, - { - "title": "Justin Bieber, Don Toliver - Honest (Karaoke Version)", - "id": "w1YgMy2UwXQ" - }, - { - "title": "Charli XCX - Used To Know Me (Karaoke Version)", - "id": "4pokpkXtqZ8" - }, - { - "title": "Gryffin, OneRepublic - You Were Loved (Karaoke Version)", - "id": "dveh2Qz2lns" - }, - { - "title": "Liam Payne - Sunshine (Karaoke Version)", - "id": "GLIXyT7OMoM" - }, - { - "title": "Anderson .Paak - Fire In The Sky (Karaoke Version)", - "id": "kzAJ9rvT25w" - }, - { - "title": "BoyWithUke - Long Drives (Karaoke Version)", - "id": "Ab7s-NkRkxE" - }, - { - "title": "Bastille - Shut Off The Lights (Karaoke Version)", - "id": "Lci6bIsKYoQ" - }, - { - "title": "Camila Cabello, WILLOW - Psychofreak (Karaoke Version)", - "id": "dtjCM_WT1Gg" - }, - { - "title": "Surfaces - Wave Of You (Karaoke Version)", - "id": "NHPnrsbNhJQ" - }, - { - "title": "OneRepublic - Sunshine (Karaoke Version)", - "id": "qAebfnaQN2k" - }, - { - "title": "George Ezra - Green Green Grass (Karaoke Version)", - "id": "diOiHKC5EQE" - }, - { - "title": "Frank Ocean - Lost (Karaoke Version)", - "id": "NssL7ihT7-g" - }, - { - "title": "I Burned LA Down - Noah Cyrus (Karaoke Version)", - "id": "i4nuxUJKN20" - }, - { - "title": "Alesso, Zara Larsson - Words (Karaoke Version)", - "id": "x6UurwqEf6w" - }, - { - "title": "Diplo, Miguel - Don't Forget My Love (Karaoke Version)", - "id": "ZxPNgt0idgc" - }, - { - "title": "5 Seconds Of Summer - COMPLETE MESS (Karaoke Version)", - "id": "DRCOEx9zWwA" - }, - { - "title": "Lizzo - About Damn Time (Karaoke Version)", - "id": "XgWMWtRKF74" - }, - { - "title": "Em Beihold - Numb Little Bug (Karaoke Version)", - "id": "1dHsGE9wDmY" - }, - { - "title": "Dove Cameron - Boyfriend (Karaoke Version)", - "id": "1pDFHlcZkOw" - }, - { - "title": "Cat Burns - Go (Karaoke Version)", - "id": "qt9-Rsnj-2o" - }, - { - "title": "Harry Styles - As It Was (Karaoke Version)", - "id": "jrJGYKlUN7c" - }, - { - "title": "Neighbourhood - Softcore (Karaoke Version)", - "id": "23yKaB494vs" - }, - { - "title": "Wet Leg - Ur Mum (Karaoke Version)", - "id": "4pkVs6Xm0QY" - }, - { - "title": "Minelli - Rampampam (Karaoke Version)", - "id": "wFP7FnpVNcA" - }, - { - "title": "Florence + The Machine - King (Karaoke Version)", - "id": "PVakuMdye_0" - }, - { - "title": "The Chainsmokers - iPad (Karaoke Version)", - "id": "KkhK5lLPbh4" - }, - { - "title": "Mimi Webb - House On Fire (Karaoke Version)", - "id": "9zNJ08H6FY8" - }, - { - "title": "FINNEAS - Naked (Karaoke Version)", - "id": "myuk1dk2j-k" - }, - { - "title": "Tate McRae - Chaotic (Karaoke Version)", - "id": "z4lOrKM8vYI" - }, - { - "title": "Sigala - Melody (Karaoke Version)", - "id": "s5c7ukkhyuc" - }, - { - "title": "Omah Lay, Justin Bieber - Attention (Karaoke Version)", - "id": "_wDJFTmiuMc" - }, - { - "title": "Gayle - Luv starved (Karaoke Version)", - "id": "pU4Ahp0AhlY" - }, - { - "title": "Tate McRae - She's All I Wanna Be (Karaoke Version)", - "id": "swKtowtqwwc" - }, - { - "title": "J Balvin & Ed Sheeran - Forever My Love (Karaoke Version)", - "id": "radvRTZ-gio" - }, - { - "title": "Pinkfong - Baby Shark (Karaoke Version)", - "id": "Yjdxwichq0Q" - }, - { - "title": "Clean Bandit ft. A7S - Everything But You (Karaoke Version)", - "id": "Y-2So2VgHrs" - }, - { - "title": "Change - Paradise (Karaoke Version)", - "id": "Nm4HFBZnNkQ" - }, - { - "title": "Cannons - Hurricane (Karaoke Version)", - "id": "fxhSuvLPTmw" - }, - { - "title": "Rex Orange County - Keep It Up (Karaoke Version)", - "id": "x_SuCFAQi7Q" - }, - { - "title": "Camila Cabello ft. Ed Sheeran - Bam Bam (Karaoke Version)", - "id": "InETcUzM-4M" - }, - { - "title": "Imagine Dragons - Bones (Karaoke Version)", - "id": "JubPDk49d0k" - }, - { - "title": "Muse - WON'T STAND DOWN (Karaoke Version)", - "id": "S49qsv68oLY" - }, - { - "title": "Muni Long - Hrs and Hrs (Karaoke Version)", - "id": "tjC0d2rMmtc" - }, - { - "title": "HAIM - Lost Track (Karaoke Version)", - "id": "DAncw0Lkb5o" - }, - { - "title": "Charli XCX, Rina Sawayama - Beg For You (Karaoke Version)", - "id": "qnQWnlL6aUk" - }, - { - "title": "Aisha Retno - W.H.U.T (Karaoke Version)", - "id": "51APwJU3_Dg" - }, - { - "title": "Kehlani - Little Story (Karaoke Version)", - "id": "DoH3g1pR7pQ" - }, - { - "title": "George Ezra - Anyone For You (Karaoke Version)", - "id": "Kfz1U_5FJ-s" - }, - { - "title": "Bryan Adams - So Happy It Hurts (Karaoke Version)", - "id": "6ERRdg4cVag" - }, - { - "title": "Tai Verdes - LAst dAy oN EaRTh (Karaoke Version)", - "id": "dU3bQUJ3-fA" - }, - { - "title": "Griff X Sigrid - Head On Fire (Karaoke Version)", - "id": "2DH6b7pUXBY" - }, - { - "title": "Elley Duhe - MIDDLE OF THE NIGHT (Karaoke Version)", - "id": "s64zJGdkVPY" - }, - { - "title": "OneRepublic - West Coast (Karaoke Version)", - "id": "m2z1GbQWWq8" - }, - { - "title": "Liam Gallagher - Everything's Electric (Karaoke Version)", - "id": "1nQNdrCZKZ0" - }, - { - "title": "Men At Work - Down Under (Luude Remix) (Karaoke Version)", - "id": "8jcM4visvAk" - }, - { - "title": "Red Hot Chili Peppers - Black Summer (Karaoke Version)", - "id": "mm8zFEmlXL8" - }, - { - "title": "Koffee - Pull Up (Karaoke Version)", - "id": "C7uV-cZmO20" - }, - { - "title": "AURORA - A Temporary High (Karaoke Version)", - "id": "_AkvpUe47r0" - }, - { - "title": "Sorana, David Guetta - redruM (Karaoke Version)", - "id": "BNMd8oh7pfQ" - }, - { - "title": "Whitney Houston - Greatest Love of All (Karaoke Version)", - "id": "16TpszIzL44" - }, - { - "title": "Ed Sheeran, Taylor Swift - The Joker And The Queen (Karaoke Version)", - "id": "XDXMFtjCZzU" - }, - { - "title": "The Chainsmokers - High (Karaoke Version)", - "id": "Hr0SJg7MklI" - }, - { - "title": "Anitta - Boys Don't Cry (Karaoke Version)", - "id": "trEQO51V4i4" - }, - { - "title": "Grimes - Shinigami Eyes (Karaoke Version)", - "id": "Nnn6jkpmZ3Y" - }, - { - "title": "Imagine Dragons, JID - Enemy (Karaoke Version)", - "id": "k6DRvd7d_Wc" - }, - { - "title": "Jonas Blue, Why Don't We - Don't Wake Me Up (Karaoke Version)", - "id": "cPUZUcxp2Vk" - }, - { - "title": "Rex Orange County - Pluto Projector (Karaoke Version)", - "id": "QE6DbrAU1wo" - }, - { - "title": "Charlie Puth - Light Switch (Karaoke Version)", - "id": "00AMPu4hk2g" - }, - { - "title": "Luke Chiang - Shouldn't Be (Karaoke Version)", - "id": "UjZ76OY-27I" - }, - { - "title": "Lauren Spencer-Smith - Fingers Crossed (Karaoke Version)", - "id": "_m8Fbtqni8o" - }, - { - "title": "Chris Brown - Iffy (Karaoke Version)", - "id": "QWz9lWhfxH4" - }, - { - "title": "Tems - Crazy Tings (Karaoke Version)", - "id": "eK7KaOpUMPI" - }, - { - "title": "Years & Years - Night Call (Karaoke Version)", - "id": "W7txpOvCOrs" - }, - { - "title": "Ariana Grande, Kid Cudi - Just Look Up", - "id": "CXxE1MFIYCM" - }, - { - "title": "Doja Cat - Woman (Karaoke Version)", - "id": "qIlHRks8CBo" - }, - { - "title": "Sean Paul, Inna - Up (Karaoke Version)", - "id": "N1PullayS50" - }, - { - "title": "Halsey - People Disappear Here (Karaoke Version)", - "id": "YXhip5gQWlk" - }, - { - "title": "ENCANTO - We Don't Talk About Bruno (Karaoke Version)", - "id": "EWfu6Ux7GSM" - }, - { - "title": "Oliver Tree - Cowboys Don't Cry (Karaoke Version)", - "id": "TitBeKrwqrs" - }, - { - "title": "Lil Nas X - THAT'S WHAT I WANT (Karaoke Version)", - "id": "NOgbAGuyWzw" - }, - { - "title": "Fireboy DML, Ed Sheeran - Peru (Karaoke Version)", - "id": "EiPlbBxZvZ8" - }, - { - "title": "The Weeknd - Sacrifice (Karaoke Version)", - "id": "DA94c4npZ4k" - }, - { - "title": "Adele - Oh My God (Karaoke Version)", - "id": "d3eCDpCpwVE" - }, - { - "title": "Alesso, Katy Perry - When I'm Gone (Karaoke Version)", - "id": "OO3vc3uYX64" - }, - { - "title": "Taylor Swift - All Too Well (Taylor's Version) (Karaoke Version)", - "id": "-mHXPgp9S1c" - }, - { - "title": "Tate McRae - Feel Like S**t (Karaoke Version)", - "id": "XywPv8ZwaFE" - }, - { - "title": "Tiesto, KAROL G - Don't Be Shy (Karaoke Version)", - "id": "u6LtQnh7-UQ" - }, - { - "title": "Juice WRLD. Justin Bieber - Wandered To LA (Karaoke Version)", - "id": "LmvW-nSKypE" - }, - { - "title": "Ramsey - Goodbye (From Arcane, League Of Legends) (Karaoke Version)", - "id": "WVdU1N0IDmU" - }, - { - "title": "Koffee - The Harder They Fall (Karaoke Version)", - "id": "o-KswZxIrsg" - }, - { - "title": "The Walters - I Love You So (Karaoke Version)", - "id": "_8Lja_OuI7g" - }, - { - "title": "Alfie Templeman - 3D Feelings (Karaoke Version)", - "id": "Ot7-eNiCKus" - }, - { - "title": "Gayle - abcdefu (Karaoke Version)", - "id": "BeToRB9UFCw" - }, - { - "title": "Shawn Mendes - It'll Be Okay (Karaoke Version)", - "id": "bsj9A_A6TDM" - }, - { - "title": "Foals - Wake Me Up (Karaoke Version)", - "id": "lUXY3llxxHA" - }, - { - "title": "Maggie Lindemann - She Knows It (Karaoke Version)", - "id": "2qYEtf3X63A" - }, - { - "title": "Sean Paul ft. Sia - Dynamite (Karaoke Version)", - "id": "rz2lsWlErhw" - }, - { - "title": "Billie Eilish - Male Fantasy (Karaoke Version)", - "id": "fzpGoQVn_Kg" - }, - { - "title": "BoyWithUke - Toxic (Karaoke Version)", - "id": "f2vEYb0PgsQ" - }, - { - "title": "Mรฅneskin - Beggin' (Karaoke Version)", - "id": "r58MTIqGgAI" - }, - { - "title": "Little Mix - No (Karaoke Version)", - "id": "FaUTXtOtHds" - }, - { - "title": "The Weeknd - Die For You (Karaoke Version)", - "id": "-oogpZCl9cE" - }, - { - "title": "Jaymes Young - Infinity (Karaoke Version)", - "id": "L-SzSuoYis8" - }, - { - "title": "Tiesto & Ava Max - The Motto (Karaoke Version)", - "id": "zDBwgG0i03M" - }, - { - "title": "Vocal-Star Unsigned 2021 Solo Grand Final", - "id": "yqSSiVMxVt8" - }, - { - "title": "2021 Vocal-Star Unsigned Musical's Final", - "id": "dupKVniolK4" - }, - { - "title": "Vocal-Star Unsigned Under 18's Final", - "id": "mrDaMoQl0qY" - }, - { - "title": "Juice WRLD - Already Dead (Karaoke Version)", - "id": "PTPKkz0mcsM" - }, - { - "title": "Ed Sheeran, Elton John - Merry Christmas (Karaoke Version)", - "id": "GgKIQjYu00E" - }, - { - "title": "Diane Warren, Rita Ora, Sofรญa Reyes, Reik - Seaside (Karaoke Version)", - "id": "B4GePZUURGo" - }, - { - "title": "Clinton Kane - Fix it to Break it (Karaoke Version)", - "id": "5U0YJTbjZjs" - }, - { - "title": "Avril Lavigne - Bite Me (Karaoke Version)", - "id": "VjWm8V54N5Q" - }, - { - "title": "Bruno Mars, Anderson .Paak, Silk Sonic - Smokin Out The Window (Karaoke Version)", - "id": "DKEscV7nEAk" - }, - { - "title": "Post Malone, The Weeknd - One Right Now (Karaoke Version)", - "id": "EgUAa-AEMxY" - }, - { - "title": "Eddie Vedder - Long Way (Karaoke Version)", - "id": "ZXyh_dwW7ZQ" - }, - { - "title": "JEON SOMI - Anymore (Karaoke Version)", - "id": "6Mzm1xf3fm8" - }, - { - "title": "Little Mix - Between Us (Karaoke Version)", - "id": "-s3Khu-OLPs" - }, - { - "title": "Joel Corry, Mabel - I Wish (Karaoke Version)", - "id": "cH0BS0n-xNU" - }, - { - "title": "Vocal-Star VS-P120 Portable PA Speaker, Bluetooth, 2 Wireless Microphones.", - "id": "OhmZNHYpXco" - }, - { - "title": "Swedish House Mafia, The Weeknd - Moth To A Flame (Karaoke Version)", - "id": "5rt0QF3ty8g" - }, - { - "title": "Holly Humberstone - Scarlett (Karaoke Version)", - "id": "ZzzVJWSX55U" - }, - { - "title": "Jesy Nelson ft. Nicki Minaj - Boyz (Karaoke Version)", - "id": "ZbotUUdB9uc" - }, - { - "title": "Mitski - Working For The Knife (Karaoke Version)", - "id": "xzLV8he_Ejw" - }, - { - "title": "Steve Lacy - Dark Red (Karaoke Version)", - "id": "Fj1PzzvaviI" - }, - { - "title": "Sam Smith, Summer Walker - You Will Be Found (Karaoke Version)", - "id": "kA_WeVVJhRc" - }, - { - "title": "J. Cole - Heaven's EP (Karaoke Version)", - "id": "Xn7ILLl4Tsg" - }, - { - "title": "Pitbull, Anthony Watts, DJ White Shadow - I Feel Good (Karaoke Version)", - "id": "7UiOc7T5K2U" - }, - { - "title": "Ari Lennox - Pressure (Karaoke Version)", - "id": "Mnf_fV_aj5g" - }, - { - "title": "Oliver Tree - Life Goes On (Karaoke Version)", - "id": "e5lSKqeH8BQ" - }, - { - "title": "Ed Sheeran - Overpass Graffiti (Karaoke Version)", - "id": "XSD5QbbdxpM" - }, - { - "title": "Mimi Webb - Halfway (Karaoke Version)", - "id": "iqAAljY8Gzw" - }, - { - "title": "James Arthur - SOS (Karaoke Version)", - "id": "9qFliMmra7I" - }, - { - "title": "Santana, Rob Thomas, American Authors - Move (Karaoke Version)", - "id": "iRXFQ_R9TJ4" - }, - { - "title": "FINNEAS - Love Is Pain (Karaoke Version)", - "id": "Ed1n_Q0OEAg" - }, - { - "title": "TWICE - The Feels (Karaoke Version)", - "id": "T4h_zBGHgdk" - }, - { - "title": "Ava Max - Come Home (Karaoke Version)", - "id": "KGF2Ps6cDZs" - }, - { - "title": "Lil Nas X ft. Miley Cyrus - AM I DREAMING (Karaoke Version)", - "id": "Ub98MFVP0eY" - }, - { - "title": "Sam Kim - Love Me Like That (Karaoke Version)", - "id": "fsvxYd0NC1Y" - }, - { - "title": "Ben&Ben - Lifetime (Karaoke Version)", - "id": "Tvdk8y9PdRg" - }, - { - "title": "Becky Hill, Topic - My Heart Goes (La Di Da) (Karaoke Version)", - "id": "_hNXMsPfOzU" - }, - { - "title": "Coldplay, BTS - My Universe (Karaoke Version)", - "id": "NbFIwqffbvQ" - }, - { - "title": "Justin Bieber - Ghost (Karaoke Version)", - "id": "ZbsQGPZj4xA" - }, - { - "title": "Glass Animals- I Don't Wanna Talk (I Just Wanna Dance) (Karaoke Version)", - "id": "PEiRo8yKMK8" - }, - { - "title": "Justin Wellington, Small Jam - Iko Iko (My Bestie) (Karaoke Version)", - "id": "hmroHfz6z_k" - }, - { - "title": "Adele - Easy on Me (Karaoke Version)", - "id": "puL48jN9mf8" - }, - { - "title": "Kylie Minogue, Years & Years - A Second To Midnight (Karaoke Version)", - "id": "gFtEoelpWKM" - }, - { - "title": "Lil Nas X - ONE OF ME (Karaoke Version)", - "id": "fs7nyt4udUg" - }, - { - "title": "Alan Walker, Jamie Miller - Running Out Of Roses (Karaoke Version)", - "id": "8RgQFjDQwiI" - }, - { - "title": "YUNGBLUD - Fleabag (Karaoke Version)", - "id": "6jac9FRCfww" - }, - { - "title": "Walker Hayes, Kesha - Fancy Like (Karaoke Version)", - "id": "RRJJlQW2fRs" - }, - { - "title": "Sueco - Paralyzed (Karaoke Version)", - "id": "wrQ4Tvc8lyw" - }, - { - "title": "Jonas Brothers - Who's In Your Head (Karaoke Version)", - "id": "4TwkrhBNRQE" - }, - { - "title": "Sabrina Carpenter - Skinny Dipping (Karaoke Version)", - "id": "OtbC7Et0zOA" - }, - { - "title": "Olivia Rodrigo - Traitor (Karaoke Version)", - "id": "fhBYwTPI4Ys" - }, - { - "title": "Ed Sheeran - Shivers (Karaoke Version)", - "id": "XtcYc6lfHYM" - }, - { - "title": "Jason Derulo - Acapulco (Karaoke Version)", - "id": "tlGFP_0uCKU" - }, - { - "title": "Charli XCX - Good Ones (Karaoke Version)", - "id": "WPw3yUPTp84" - }, - { - "title": "Shawn Mendes, Tainy - Summer Of Love (Karaoke Version)", - "id": "isKeLZyc70E" - }, - { - "title": "OneRepublic - Someday (Karaoke Version)", - "id": "fFsNQERdEMg" - }, - { - "title": "Jonasu - Black Magic (Karaoke Version)", - "id": "8zjdTWbT1nQ" - }, - { - "title": "Imagine Dragons - Monday (Karaoke Version)", - "id": "xMjuIYrjTwc" - }, - { - "title": "Lorde - Mood Ring (Karaoke Version)", - "id": "YaY3jbxNIpY" - }, - { - "title": "Halsey - I am not a woman, I'm a God (Karaoke Version)", - "id": "XC49u-AWyNY" - }, - { - "title": "Little Mix - Love (Sweet Love) (Karaoke Version)", - "id": "L5jUqpHTwMc" - }, - { - "title": "Riton x Nightcrawlers ft. Mufasa & Hypeman - Friday (Dopamine Re-edit) (Karaoke Version)", - "id": "1CmjyJULV4Y" - }, - { - "title": "Lil Nas X, Jack Harlow - INDUSTRY BABY (Karaoke Version)", - "id": "vXiAGA8iuxg" - }, - { - "title": "ABBA - I Still Have Faith In You (Karaoke Version)", - "id": "QMuFgHaY6oA" - }, - { - "title": "Zara Larsson, Young Thug - Talk About Love (Karaoke Version)", - "id": "0MAJl1ertAk" - }, - { - "title": "Keith Urban - Wild Hearts (Karaoke Version)", - "id": "hwHJ65jJmrw" - }, - { - "title": "Nothing But Thieves - Futureproof (Karaoke Version)", - "id": "fGeqxVRuupw" - }, - { - "title": "Topic, Bebe Rexha - Chain My Heart (Karaoke Version)", - "id": "LIgEzIcyCd8" - }, - { - "title": "James Arthur - Avalanche (Karaoke Version)", - "id": "oRfq-nuDri8" - }, - { - "title": "CHVRCHES - Good Girls (Karaoke Version)", - "id": "f8-WM_9lFlE" - }, - { - "title": "Ed Sheeran - Visiting Hours (Karaoke Version)", - "id": "lroYIZLtj_o" - }, - { - "title": "Olivia Rodrigo - Brutal (Karaoke Version)", - "id": "BX-fWuX2noQ" - }, - { - "title": "Elton John, Dua Lipa - Cold Heart (PNAU Remix) (Karaoke Version)", - "id": "sGPDT40gX68" - }, - { - "title": "Post Malone - Motley Crew (Karaoke Version)", - "id": "gAQVeQEbXDk" - }, - { - "title": "Maisie Peters - Psycho (Karaoke Version)", - "id": "xZ3k940OWA0" - }, - { - "title": "Khalid - New Normal (Karaoke Version)", - "id": "0UA8Hopxu9E" - }, - { - "title": "The Weeknd - Take My Breath (Karaoke Version)", - "id": "hkuNwFzpHeg" - }, - { - "title": "Bruno Mars, Anderson .Paak, Silk Sonic - Skate (Karaoke Version)", - "id": "i1i3p2OAYyE" - }, - { - "title": "Shakira - Don't Wait Up (Karaoke Version)", - "id": "3s1uGAaYXpk" - }, - { - "title": "Justin Bieber - B Young (Karaoke Version)", - "id": "OqWK0GHwDcE" - }, - { - "title": "Billie Eilish - Happier Than Ever (Karaoke Version)", - "id": "8xD20NZgQW8" - }, - { - "title": "Dermot Kennedy - Better Days (Karaoke Version)", - "id": "6pw5u_zuiN0" - }, - { - "title": "Camila Cabello - Don't Go Yet (Karaoke Version)", - "id": "wLmgOfYwl5I" - }, - { - "title": "WILLOW, Travis Barker - t r a n s p a r e n t s o u l (Karaoke Version)", - "id": "gnnPvtAfH4M" - }, - { - "title": "Tesher, Jason Derulo - Jalebi Baby (Karaoke Version)", - "id": "obtNL8YQiKk" - }, - { - "title": "Sam Fender - Seventeen Going Under (Karaoke Version)", - "id": "b4leCvSW_os" - }, - { - "title": "Maroon 5 - Lost (Karaoke Version)", - "id": "dJej7XKWs5Y" - }, - { - "title": "BTS - Permission To Dance (Karaoke Version)", - "id": "PHhk1QZ-jSQ" - }, - { - "title": "Anne-Marie, Little Mix - Kiss My (Uh Oh) (Karaoke Version)", - "id": "9LKThfE4PRM" - }, - { - "title": "Dave, Stormzy - Clash (Karaoke Version)", - "id": "pGHVDxa8k2A" - }, - { - "title": "Anne-Marie - Beautiful (Karaoke Version)", - "id": "UZsuLEzyEOo" - }, - { - "title": "Tones And I - Just A Mess (Karaoke Version)", - "id": "q6FxOJhyMZk" - }, - { - "title": "DJ Keith ft. Janee B - Boy Like You (Karaoke Version)", - "id": "sCt8InMzyZg" - }, - { - "title": "Doja Cat, The Weeknd - You Right (Karaoke Version)", - "id": "saPnhWlh140" - }, - { - "title": "Becky Hill, David Guetta - Remember (Karaoke Version)", - "id": "fReDS1IKk9s" - }, - { - "title": "Sigala, Rita Ora - You For Me (Karaoke Version)", - "id": "IiKh5vN0PJw" - }, - { - "title": "Ava Max - EveryTime I Cry (Karaoke Version)", - "id": "ir2CabLJkes" - }, - { - "title": "The Kid LAROI, Justin Bieber - Stay (Karaoke Version)", - "id": "EDinyOYUraM" - }, - { - "title": "Billie Eilish - NDA (Karaoke Version)", - "id": "mnCdUyzfrDE" - }, - { - "title": "Ofenbach, Lagique - Wasted Love (Karaoke Version)", - "id": "stNhkTmDx9g" - }, - { - "title": "Imagine Dragons - Wrecked (Karaoke Version)", - "id": "pXdIv9ddyok" - }, - { - "title": "Twenty One Pilots - Saturday (Karaoke Version)", - "id": "18DTpWXAPQU" - }, - { - "title": "BTS - Butter (Karaoke Version)", - "id": "s065WYM08A4" - }, - { - "title": "Mรฅneskin - I WANNA BE YOUR SLAVE (Karaoke Version)", - "id": "6Y2oJ2hjeQI" - }, - { - "title": "Wolf Alice - Smile (Karaoke Version)", - "id": "2UbFiYqzwzE" - }, - { - "title": "Griff - Black Hole (Karaoke Version)", - "id": "-qM7ypmB8tc" - }, - { - "title": "The Killers, Bruce Springsteen - Dustland (Karaoke Version)", - "id": "6XVLIHR_L40" - }, - { - "title": "Doja Cat, SZA - Kiss Me More (Karaoke Version)", - "id": "-9LZt_ODeG4" - }, - { - "title": "KSI - Holiday (Karaoke Version)", - "id": "tfNkVeat1Qc" - }, - { - "title": "Marshmello - Shockwave (Karaoke Version)", - "id": "3aq18JLV4qU" - }, - { - "title": "Mabel - Let Them Know (Karaoke Version)", - "id": "jGefP5pHF44" - }, - { - "title": "Lorde - Solar Power (Karaoke Version)", - "id": "c_RilbNOcVQ" - }, - { - "title": "Chvrches - He Said She Said (Karaoke Version)", - "id": "zAReEP63Ovs" - }, - { - "title": "Afrojack & David Guetta - Hero (Karaoke Version)", - "id": "iK-7pS4VY64" - }, - { - "title": "Ed Sheeran - Bad Habits (Karaoke Version)", - "id": "kQZ4d7I4zao" - }, - { - "title": "Calvin Harris ft. Tom Grennan - By Your Side (Karaoke Version)", - "id": "KdkWL86T0YU" - }, - { - "title": "OneRepublic - Run (Karaoke Version)", - "id": "66GDgJW5n2M" - }, - { - "title": "Vance Joy - Missing Piece (Karaoke Version)", - "id": "txhbOQchctk" - }, - { - "title": "Dua Lipa - Love Again (Karaoke Version)", - "id": "V7Jv1XqibXU" - }, - { - "title": "Sigrid - Mirror (Karaoke Version)", - "id": "VN5t2LHsROI" - }, - { - "title": "Thirty Seconds To Mars - Hail To The Victor (Karaoke Version)", - "id": "ercvJQmHwFE" - }, - { - "title": "Hopsin - BE11A CIAO (Karaoke Version)", - "id": "KZitjAt1vAM" - }, - { - "title": "Little Mix, Saweetie - Confetti (Karaoke Version)", - "id": "7soo-vw-MbQ" - }, - { - "title": "J Cole - a m a r i (Karaoke Version)", - "id": "RdL1wySHBGI" - }, - { - "title": "Galantis, David Guetta, Little Mix - Heartbreak Anthem (Karaoke Version)", - "id": "ePgHiAFYSAM" - }, - { - "title": "Billie Eilish - Lost Cause (Karaoke Version)", - "id": "8PRiPBWsW0Q" - }, - { - "title": "Rich Brian, NIKI, & Warren Hue - California (Karaoke Version)", - "id": "0Z6SUzm9BMc" - }, - { - "title": "Marshmello x Jonas Brothers - Leave Before You Love Me (Karaoke Version)", - "id": "Z4zCHj0679M" - }, - { - "title": "Anne-Marie, Niall Horan - Our Song (Karaoke Version)", - "id": "Jx0sK4hXBV8" - }, - { - "title": "Holly Humberstone - The Walls Are Way Too Thin (Karaoke Version)", - "id": "W6EgA9QXhs4" - }, - { - "title": "Lil Nas X - SUN GOES DOWN (Karaoke Version)", - "id": "Lx3WMEUBAc8" - }, - { - "title": "Katy Perry - Electric (Karaoke Version)", - "id": "EwEuvMI9I-w" - }, - { - "title": "Charli XCX, Kim Petras, Jay Park - Unlock It (Karaoke Version)", - "id": "AvtDrc2cPYg" - }, - { - "title": "Dave - Titanium (Karaoke Version)", - "id": "fTJa7s0h-c4" - }, - { - "title": "Girl In Red - Serotonin (Karaoke Version)", - "id": "DBqiMe4nzXQ" - }, - { - "title": "Olivia Rodrigo - good 4 u (Karaoke Version)", - "id": "YFs_0G-ViCY" - }, - { - "title": "Tones And I - Won't Sleep (Karaoke Version)", - "id": "ATz8stLiQa0" - }, - { - "title": "Pink - All I Know So Far (Karaoke Version)", - "id": "vtgqUgK8jE8" - }, - { - "title": "Martin Garrix, Bono & The Edge - We Are The People (Karaoke Version)", - "id": "2JmEzVUbczE" - }, - { - "title": "Tom Grennan - Little Bit of Love (Karaoke Version)", - "id": "9oh2iQvvXPk" - }, - { - "title": "Coldplay - Higher Power (Karaoke Version)", - "id": "in8n5e3K5Yg" - }, - { - "title": "Polo G - RAPSTAR (Karaoke Version)", - "id": "eqm-9FONfUs" - }, - { - "title": "ATB, Topic, A7S - Your Love (9PM) (Karaoke Version)", - "id": "YgB6P1UcYuw" - }, - { - "title": "Maroon 5, Megan Thee Stallion - Beautiful Mistakes (Karaoke Version)", - "id": "C5igde202I4" - }, - { - "title": "Alok, Alida - Love Again (Karaoke Version)", - "id": "NHpT4ZHJpRM" - }, - { - "title": "Julia Michaels - Little Did I Know (Karaoke Version)", - "id": "l8qjNwqOj4Y" - }, - { - "title": "Justin Bieber, Daniel Caesar, Giveon - Peaches (Karaoke Version)", - "id": "pqvh5lOY20Q" - }, - { - "title": "Billie Eilish - Your Power (Karaoke Version)", - "id": "_T3Z9B3sz3k" - }, - { - "title": "Erasure - Sometimes", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Rag'n'Bone, Man, Pink - Anywhere Away From Here (Karaoke Version)", - "id": "4tWHokE0U1o" - }, - { - "title": "Way Too Long - Nathan Dawe, Anne-Marie, MoStack (Karaoke Version)", - "id": "lrKE92pM_A4" - }, - { - "title": "Bebe Rexha - Sabotage (Karaoke Version)", - "id": "vanm1vBRb4c" - }, - { - "title": "Taylor Swift - Mr. Perfectly Fine (Karaoke Version)", - "id": "yS1kaRwLxc8" - }, - { - "title": "Royal Blood - Limbo (Karaoke Version)", - "id": "Hpt9WTSFscE" - }, - { - "title": "Yellow Claw, Sara Fajira - DRXGS (Karaoke Version)", - "id": "vEZ3KZ7zGMU" - }, - { - "title": "Demi Lovato, Ariana Grande - Met Him Last Night (Karaoke Version)", - "id": "SvOOZ53kN7U" - }, - { - "title": "Haim, Taylor Swift - Gasoline (Karaoke Version)", - "id": "VSPna9xdtl0" - }, - { - "title": "Nick Jonas - This Is Heaven (Karaoke Version)", - "id": "XAXskA1mF5k" - }, - { - "title": "Lil Nas X - MONTERO (Call Me By Your Name) (Karaoke Version)", - "id": "X3XlCjzraec" - }, - { - "title": "Rita Ora, Imanbek - Bang Bang (Karaoke Version)", - "id": "AwUprFf3VGs" - }, - { - "title": "Central Cee - Commitment Issues (Karaoke Version)", - "id": "q1WfHBI9kVA" - }, - { - "title": "Demi Lovato - Dancing With The Devil (Karaoke Version)", - "id": "dABgYqfB7EU" - }, - { - "title": "Lost Frequencies - Rise (Karaoke Version)", - "id": "FBmPD3TwjD4" - }, - { - "title": "Taylor Swift, Maren Morris - You All Over Me (Karaoke Version)", - "id": "5PRbESMTA3s" - }, - { - "title": "Twenty One Pilots - Shy Away (Karaoke Version)", - "id": "8qw_ySviFv4" - }, - { - "title": "Imanbek, Sean Paul, Sofรญa Reyes - Dancing On Dangerous (Karaoke Version)", - "id": "YrBh8MqWJ1Y" - }, - { - "title": "ROSร‰ - On The Ground (Karaoke Version)", - "id": "UtffK21bM2U" - }, - { - "title": "Olivia Rodrigo - deja vu (Karaoke Version)", - "id": "KOrbOlIiGfg" - }, - { - "title": "Pink Sweat$ ft. Kehlani - At My Worst (Karaoke Version)", - "id": "UpVx-mEH0bg" - }, - { - "title": "KSI, YUNGBLUD, Polo G - Patience (Karaoke Version)", - "id": "c5WrnyLgvhU" - }, - { - "title": "Joel Corry, RAYE, David Guetta - BED (Karaoke Version)", - "id": "YIIE-9yzMR8" - }, - { - "title": "Becky Hill - Last Time (Karaoke Version)", - "id": "iH3Ah0I3GxQ" - }, - { - "title": "Drake - What's Next (Karaoke Version)", - "id": "1CiGLB6XIMI" - }, - { - "title": "Miley Cyrus - Angels Like You (Karaoke Version)", - "id": "6YAo6PTdjC4" - }, - { - "title": "Imagine Dragons - Follow You (Karaoke Version)", - "id": "YJkrEuk97R8" - }, - { - "title": "Bruno Mars, Anderson .Paak & Silk Sonic - Leave The Door Open (Karaoke Version)", - "id": "1c8M7UwxVU4" - }, - { - "title": "Cardi B - Up (Karaoke Version)", - "id": "rnKq2DLxfjs" - }, - { - "title": "Martin Garrix, Tove Lo - Pressure (Karaoke Version)", - "id": "pmGBJ5Xn1jw" - }, - { - "title": "Ashe & FINNEAS -Till Forever Falls Apart (Karaoke Version)", - "id": "E7GBfRaDqIc" - }, - { - "title": "Jorja Smith - Addicted (Karaoke Version)", - "id": "mOc6H7avK20" - }, - { - "title": "Dan & Shay - Glad You Exist (Karaoke Version)", - "id": "VRCVyj_cbV0" - }, - { - "title": "Noizu - Summer 91 (Looking Back) (Karaoke Version)", - "id": "ywTpMHKwkJY" - }, - { - "title": "Justin Bieber - Hold On (Karaoke Version)", - "id": "0Y2ffcGHEgU" - }, - { - "title": "Rita Ora, David Guetta, Imanbek, Gunna - Big (Karaoke Version)", - "id": "Moys9sjDoNY" - }, - { - "title": "Alan Walker, ISรK - Sorry (Karaoke Version)", - "id": "yLnZYnNc-kk" - }, - { - "title": "Alan Walker Ft. Salem Ilese - Fake A Smile (Karaoke Version)", - "id": "lnlTJ6XNcrg" - }, - { - "title": "Conan Gray - Overdrive (Karaoke Version)", - "id": "HBnLlNyCKKc" - }, - { - "title": "Rag'n'Bone Man - All You Ever Wanted (Karaoke Version)", - "id": "Y-eshjlciOY" - }, - { - "title": "Post Malone - Only Wanna be with you (Karaoke Version)", - "id": "5MfgHnGgiQk" - }, - { - "title": "Lil Tjay, 6LACK - Calling My Phone (Karaoke Version)", - "id": "MDbyUTtrMNQ" - }, - { - "title": "Dua Lipa - We're Good (Karaoke Version)", - "id": "zGVO9UwrHxo" - }, - { - "title": "Lana Del Rey - Chemtrails over the Country Club (Karaoke Version)", - "id": "OaN_evp78VM" - }, - { - "title": "OK Go - I Won't Let You down (Karaoke Version)", - "id": "phBppym10ZE" - }, - { - "title": "CG5 - Good to be Alive (Among Us) (Karaoke Version)", - "id": "izXve70h2Gg" - }, - { - "title": "Pink, Willow Sage Hart - Cover Me In Sunshine (Karaoke Version)", - "id": "Pl0QO4D2Ook" - }, - { - "title": "OVERSTREET - Summertime (Karaoke Version)", - "id": "-nuLUgqeDhc" - }, - { - "title": "JP Cooper - Little Bit Of Love (Karaoke Version)", - "id": "bm1gR-fDnps" - }, - { - "title": "James Arthur - Train Wreck (Karaoke Version)", - "id": "yFb50RMOEvY" - }, - { - "title": "Peach Tree Rascals - Mariposa (Karaoke Version)", - "id": "T47ICZZPANI" - }, - { - "title": "David Guetta , Sia - Floating Through Space (Karaoke Version)", - "id": "FS6933Gks_M" - }, - { - "title": "RAYE, Rudimental - Regardless (Karaoke Version)", - "id": "ajq5-12Kcxk" - }, - { - "title": "Banners - Someone To You (Karaoke Version)", - "id": "NN-fD77aYvc" - }, - { - "title": "Lily Allen - Mr. Blue Sky (Karaoke Version)", - "id": "eAmU8dUwB9c" - }, - { - "title": "Carolesdaughter - Violent (Karaoke Version)", - "id": "sRPUNaH-_qk" - }, - { - "title": "Campsite Dream - Here Comes the Sun (Karaoke Version)", - "id": "mn57gYpXeAI" - }, - { - "title": "Birdy - Surrender (Karaoke Version)", - "id": "32tuTjcKpY4" - }, - { - "title": "Mod Sun, Avril Lavigne - Flames (Karaoke Version)", - "id": "XXhni__fhGc" - }, - { - "title": "Jason DeRulo, Adam Levine - Lifestyle (Karaoke Version)", - "id": "7XBbABTYqZ0" - }, - { - "title": "Mother Mother - Hayloft (Karaoke Version)", - "id": "eHTwXAFhI5A" - }, - { - "title": "Shawn Mendes - Look Up At The Stars (Karaoke Version)", - "id": "MBCXWwfUh94" - }, - { - "title": "Joshua Bassett - Lie Lie Lie (Karaoke Version)", - "id": "fK6eBuPx6_Q" - }, - { - "title": "Shane Codd - Get Out My Head (Karaoke Version)", - "id": "83cgVKa4g28" - }, - { - "title": "The Kid Laroi - WITHOUT YOU (Karaoke Version)", - "id": "CCFcalTZikw" - }, - { - "title": "The Neighbourhood - Stargazing (Karaoke Version)", - "id": "wx3TUSDYEes" - }, - { - "title": "Silk City, Ellie Goulding - New Love (Karaoke Version)", - "id": "TP-7mUDWEvg" - }, - { - "title": "Taylor Swift - it's time to go (Karaoke Version)", - "id": "c9pstYSqbPQ" - }, - { - "title": "Kings Of Leon - The Bandit (Karaoke Version)", - "id": "driVrlKP8x8" - }, - { - "title": "Ed Sheeran - Afterglow (Karaoke Version)", - "id": "_x-CmWp2iEw" - }, - { - "title": "Ava Max - My Head & My Heart (Karaoke Version)", - "id": "qOs-Hb_PkmI" - }, - { - "title": "Anne-Marie, KSI, Digital Farm Animals - Donโ€™t Play (Karaoke Version)", - "id": "r3MOPYsLFCw" - }, - { - "title": "Gwen Stefani - Let Me Reintroduce Myself (Karaoke Version)", - "id": "dt1x106AesA" - }, - { - "title": "David Guetta, MORTEN ft. Lanie Gardner - Dreams (Karaoke Version)", - "id": "xTgzwpm6UZg" - }, - { - "title": "Wilbur Soot - Your New Boyfriend (Karaoke Version)", - "id": "u1prgOoyZhw" - }, - { - "title": "The Weeknd - Save Your Tears (Karaoke Version)", - "id": "cPe-nj87gSs" - }, - { - "title": "Olivia Rodrigo - Drivers License (Karaoke Version)", - "id": "MGwO3iK35NA" - }, - { - "title": "Justin Bieber - Anyone (Karaoke Version)", - "id": "HFjEvZ0v0KY" - }, - { - "title": "Jack Harlow - Tyler Herro! (Karaoke Version)", - "id": "S2yNoF9RU0g" - }, - { - "title": "Justin Bieber, benny blanco - Lonely (Karaoke Version)", - "id": "c1ChPoqcrws" - }, - { - "title": "Eyedress - Jealous (Karaoke Version)", - "id": "x1OJjtQUFxU" - }, - { - "title": "Katy Perry - Not The End Of The World (Karaoke Version)", - "id": "5ZEXswKbwXA" - }, - { - "title": "Jason Derulo, Nuka - Love Not War (The Tampa Beat) (Karaoke Version)", - "id": "wlMNS1zcMS0" - }, - { - "title": "Sia - Courage to Change (Karaoke Version)", - "id": "VFJptyDCEys" - }, - { - "title": "Shawn Mendes, Justin Bieber - Monster (Karaoke Version)", - "id": "AS1Wdf2ezUs" - }, - { - "title": "Tate McRae - r u ok (Karaoke Version)", - "id": "8yvDttjQ48E" - }, - { - "title": "Studio Killers - Jenny (Karaoke Version)", - "id": "QHQEkG79-kE" - }, - { - "title": "Miley Cyrus - Plastic Hearts (Karaoke Version)", - "id": "6-vb271yV5s" - }, - { - "title": "Disclosure, Kelis - Watch Your Step (Karaoke Version)", - "id": "epjvYa5QC28" - }, - { - "title": "Taylor Swift - willow (Karaoke Version)", - "id": "hvYlW6PtKLQ" - }, - { - "title": "Conan Gray - Comfort Crowd (Karaoke Version)", - "id": "GEgO55aKcUc" - }, - { - "title": "Juice WRLD, The Kid LAROI - Reminds Me Of You (Karaoke Version)", - "id": "DAkQxZUDqm0" - }, - { - "title": "Ariana Grande, Doja Cat - motive (Karaoke Version)", - "id": "HCOm-_7WV-s" - }, - { - "title": "Jamiroquai - Virtual Insanity (Salaam Remi Remix) (Karaoke Version)", - "id": "SEigLm9xm_0" - }, - { - "title": "Joji, Diplo - Daylight (Karaoke Version)", - "id": "WYK97jNwJRU" - }, - { - "title": "Jason Mraz - Love Is Still The Answer (Karaoke Version)", - "id": "KnyAyIhGYDg" - }, - { - "title": "Lil Nas X - HOLIDAY (Karaoke Version)", - "id": "NYh2JqkH_fo" - }, - { - "title": "Pop Smoke - What You Know Bout Love (Karaoke Version)", - "id": "hiKF3gSRXa0" - }, - { - "title": "AC/DC - Demon Fire (Karaoke Version)", - "id": "iuT0mwNxAog" - }, - { - "title": "H.E.R - Damage (Karaoke Version)", - "id": "kpmnKdO0ehQ" - }, - { - "title": "Foo Fighters - Shame Shame (Karaoke Version)", - "id": "z5IZ2ZvBiS8" - }, - { - "title": "Katy Perry - Resilient (Karaoke Version)", - "id": "keM1_iMOH7Q" - }, - { - "title": "Harry Styles - Golden (Karaoke Version)", - "id": "kltLh2t3Yzc" - }, - { - "title": "Miley Cyrus, Dua Lipa - Prisoner (Karaoke Version)", - "id": "pZ5ER773NsI" - }, - { - "title": "Tones And I - Fly Away (Karaoke Version)", - "id": "2C_q9uZmRbE" - }, - { - "title": "Machine Gun Kelly, Halsey - Forget me too (Karaoke Version)", - "id": "u6aTfxoHgsQ" - }, - { - "title": "Sarah Menescal - Mercy, Mercy Me (The Ecology) (Karaoke Version)", - "id": "Rlwmg1ghsOg" - }, - { - "title": "Anne-Marie - Problems (Karaoke Version)", - "id": "O92wEuLgrM8" - }, - { - "title": "Lana Del Rey - Let Me Love You Like A Woman Vocal Star Karaoke 4K", - "id": "ISygGw3lwtw" - }, - { - "title": "Billie Eilish - Therefore I Am (Karaoke Version)", - "id": "n4VWclgcIBw" - }, - { - "title": "AC/DC - Shot In The Dark (Karaoke Version)", - "id": "nD13E-XuMm4" - }, - { - "title": "MEDUZA, Dermot Kennedy - Paradise (Karaoke Version)", - "id": "T6qmTsKfh4w" - }, - { - "title": "Marshmello, Imanbek, Usher - Too Much (Karaoke Version)", - "id": "HecmYqdJhHY" - }, - { - "title": "BTS - Dynamite (Karaoke Version)", - "id": "Ais41wELuwM" - }, - { - "title": "Ariana Grande - 34+35 (Karaoke Version)", - "id": "q_SX944IfYk" - }, - { - "title": "YUNGBLUD - Cotton Candy (Karaoke Version)", - "id": "e6Ruu3QYs6o" - }, - { - "title": "Jaden - Cabin Fever (Karaoke Version)", - "id": "HRAtu1K6Vqc" - }, - { - "title": "Little Mix - Sweet Melody (Karaoke Version)", - "id": "Bv0o7pcipVM" - }, - { - "title": "Colbie Caillat - What If (Karaoke Version)", - "id": "TZoVhbBpKZM" - }, - { - "title": "Ariana Grande - Positions (Karaoke Version)", - "id": "PcBLFlAJY7c" - }, - { - "title": "Becky Hill - Space (Karaoke Version)", - "id": "L93_pTKoajM" - }, - { - "title": "Sam Smith - Diamonds (Karaoke Version)", - "id": "E69YrLW57O8" - }, - { - "title": "Harry Styles - Treat People With Kindness (Karaoke Version)", - "id": "YG_eojH-tcQ" - }, - { - "title": "Little Mix - Happiness (Karaoke Version)", - "id": "bAFWIFEytPE" - }, - { - "title": "Ella Henderson, Roger Sanchez - Dream On Me (Karaoke Version)", - "id": "rEG-FcsyHBA" - }, - { - "title": "Lukas Graham ft. G-Eazy - Share That Love (Karaoke Version)", - "id": "WLAaXoKjGh8" - }, - { - "title": "Two Feet - Think I'm Crazy (Karaoke Version)", - "id": "GsFw-XwGoow" - }, - { - "title": "Royal Blood - Trouble's Coming (Karaoke Version)", - "id": "OuYdi9qGIj8" - }, - { - "title": "Ashnikko - Daisy (Karaoke Version)", - "id": "WutUCe0gcR0" - }, - { - "title": "Jax Jones, Au/Ra - i miss u (Karaoke Version)", - "id": "E9kd4bhcD00" - }, - { - "title": "Clean Bandit, Mabel, 24kGoldn - Tick Tock (Karaoke Version)", - "id": "EYGs_A2fDs4" - }, - { - "title": "Claire Rosinkranz - Backyard Boy (Karaoke Version)", - "id": "-fj71BQ9FkI" - }, - { - "title": "Joji - Your Man (Karaoke Version)", - "id": "cQrrZHA-YpM" - }, - { - "title": "The Business Karaoke", - "id": "Tiรซsto Karaoke Version" - }, - { - "title": "24KGoldn ft. Iann Dior - Mood (Karaoke Version)", - "id": "xCHcWhDSD9g" - }, - { - "title": "Shawn Mendes - Wonder (Karaoke Version)", - "id": "NSCVyd3aLeA" - }, - { - "title": "Little Mix - Not a Pop Song (Karaoke Version)", - "id": "12bx9WlDcSo" - }, - { - "title": "Zayn - Better (Karaoke Version)", - "id": "H7PBte6V4D8" - }, - { - "title": "London Grammar - Baby It's You (Karaoke Version)", - "id": "QrHpDCMi5ZI" - }, - { - "title": "Lany - you! (Karaoke Version)", - "id": "_QP4PNEO06U" - }, - { - "title": "Keith Urban, Pink - One Too Many (Karaoke Version)", - "id": "RBhJLGQcoyY" - }, - { - "title": "Ava Max - OMG What's Happening (Karaoke Version)", - "id": "ur7MMUTJmfM" - }, - { - "title": "David Guetta, Sia - Let's Love (Karaoke Version)", - "id": "W0YuDJ_uhys" - }, - { - "title": "Bruce Springsteen - Letter to You (Karaoke Version)", - "id": "6yI4xUAZgj8" - }, - { - "title": "Lady Gaga - 911 (Karaoke Version)", - "id": "6z26P1eTzBM" - }, - { - "title": "Justin Bieber ft. Chance The Rapper - Holy (Karaoke Version)", - "id": "awERYZtzZs0" - }, - { - "title": "Conan Gray - Heather (Karaoke Version)", - "id": "4DP-EAPdoO4" - }, - { - "title": "Katy Perry - Champagne Problems (Karaoke Version)", - "id": "6f2b_XVP7yo" - }, - { - "title": "RAYE - Natalie Don't (Karaoke Version)", - "id": "QGWnXWJ4-C4" - }, - { - "title": "Tate McRae - You Broke Me First (Karaoke Version)", - "id": "SAtYSsjaVJc" - }, - { - "title": "Christina Aguilera - Loyal Brave True (Karaoke Version)", - "id": "haKW1d0Qj4Q" - }, - { - "title": "Marshmello, Demi Lovato - OK Not To Be OK (Karaoke Version)", - "id": "QEBURfw2Q0M" - }, - { - "title": "Sigala, James Arthur - Lasting Lover (Karaoke Version)", - "id": "dauiQzgleCs" - }, - { - "title": "Harry Styles - Falling (Karaoke Version)", - "id": "EKFmv-qOEb8" - }, - { - "title": "Nea - Some Say (Karaoke Version)", - "id": "W1OZyexQKHo" - }, - { - "title": "Dermot Kennedy - Giants (Karaoke Version)", - "id": "lvGZJGm1LXw" - }, - { - "title": "Ellie Goulding - Love I'm Given (Karaoke Version)", - "id": "g7xyVV1Ya44" - }, - { - "title": "Levitating Karaoke", - "id": "Dua Lipa Karaoke Version" - }, - { - "title": "Dua Lipa - Levitating (Karaoke Version)", - "id": "IouJOmXKUp4" - }, - { - "title": "Lauv - Love Somebody (Karaoke Version)", - "id": "HAcHicnFUQk" - }, - { - "title": "James Bay - Chew On My Heart (Karaoke Version)", - "id": "tjUCcmFO83A" - }, - { - "title": "Jason Derulo - Take You Dancing (Karaoke Version)", - "id": "WbRHzd4Qu4Y" - }, - { - "title": "Girl in red - Rue (Karaoke Version)", - "id": "2_UzP10VV38" - }, - { - "title": "Diplo, Noah Cyrus - On Mine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TxnIKAtW43A" - }, - { - "title": "Taylor Swift - The 1 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jYRDJ1cDUTA" - }, - { - "title": "The Weeknd - Snowchild (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kCqlZw4hdMI" - }, - { - "title": "Jorja Smith - By Any Means (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "o-6cb_jE_5A" - }, - { - "title": "Holy Molly - Alcohol (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kr1ypePXCjM" - }, - { - "title": "Miley Cyrus - Midnight Sky (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "E5eGNvwB7Kg" - }, - { - "title": "Taylor Swift, Bon Iver - Exile (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vgPU7lfwXM0" - }, - { - "title": "Zara Larsson - Love Me Land (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yFOAS-8gNA0" - }, - { - "title": "Troye Sivan - Easy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PP-4G29pFe0" - }, - { - "title": "Kylie Minogue - Say Something (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Sb5zOHrre2U" - }, - { - "title": "Glass Animals - Heat Waves (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jV4qfZp5mT4" - }, - { - "title": "Tom Walker - Wait For You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FMlJqjGDOkE" - }, - { - "title": "Ava Max - Who's Laughing Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4sAQKayw0V0" - }, - { - "title": "Billie Eilish - My future (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NYQIa3gOOXY" - }, - { - "title": "Little Mix - Holiday with Lyrics HD Vocal-Star Karaoke 4K", - "id": "cPOGpASjREQ" - }, - { - "title": "Jubel, Neimy - Dancing In The Moonlight with Lyrics HD Vocal-Star Karaoke 4K", - "id": "ZzHSPOKNp2E" - }, - { - "title": "AJ Tracey Ft. Mabel - West Ten (Karaoke Version) 4k", - "id": "WDiIDanm7SU" - }, - { - "title": "Tones And I - Ur So F**king cOol (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2SpLy26J9Mc" - }, - { - "title": "Jonas Blue, MAX - Naked with Lyrics HD Vocal-Star Karaoke 4K", - "id": "MuD4QwwaGQA" - }, - { - "title": "Taylor Swift - Cardigan with Lyrics HD Vocal-Star Karaoke 4k", - "id": "6nQul2CAct8" - }, - { - "title": "Head & Heart Karaoke", - "id": "Joel Corry, MNEK Karaoke Version" - }, - { - "title": "DaBaby, Roddy Ricch - ROCKSTAR with Lyrics HD Vocal-Star Karaoke", - "id": "0v8ft-Ahae0" - }, - { - "title": "INNA - Not My Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B5eXNG0Oe1A" - }, - { - "title": "The 1975 - If You're Too Shy (Let Me Know) (Karaoke Version)", - "id": "fpvOE8BF-Aw" - }, - { - "title": "Katy Perry - Smile with Lyrics HD Vocal-Star Karaoke 4K", - "id": "FDGymdNXQxc" - }, - { - "title": "Daryl Braithwaite - Love Songs (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vrCfGqQorhw" - }, - { - "title": "Beyoncรฉ - BLACK PARADE (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bnEfrlr8pgc" - }, - { - "title": "Taylor Swift ft. Ariana Grande - Afterglow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gS3EnvWRG2I" - }, - { - "title": "Tones And I - Bad Child (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4atIKClhhOo" - }, - { - "title": "Declan McKenna - The Key to Life on Earth (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uc7WjvCs2nU" - }, - { - "title": "Kim Petras - Malibu (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8q7aLsPssaA" - }, - { - "title": "Jessie Reyez - Far Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WdFK6H-5Sno" - }, - { - "title": "Chris Stapleton - Tennessee Whiskey (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BWZESBdAHlI" - }, - { - "title": "Amy Shark - Everybody Rise (Karaoke Version)", - "id": "K24OUZ_58xs" - }, - { - "title": "Lennon Stella, Charlie Puth - Summer Feelings (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nuFG02Wv8b0" - }, - { - "title": "Chloe x Halle - Do It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R4LKthSyMxY" - }, - { - "title": "Brando - Look Into My Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uaxI3DCDFCw" - }, - { - "title": "Jason DeRulo - Savage Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8yvIgH0CvVg" - }, - { - "title": "Kygo, Zara Larsson, Tyga - Like It Is (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NFtxuVVVVcA" - }, - { - "title": "Machine Gun Kelly - Bloody Valentine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "poCMbWWuBQA" - }, - { - "title": "Lauv - Modern Loneliness (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O4RLjaF25pk" - }, - { - "title": "Thomas Rhett, Kane Brown, Ava Max - On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v_Cj2Z8ud4M" - }, - { - "title": "Alan Walker, Ava Max - Alone, Pt. II (Karaoke Version)", - "id": "xkfIZzkOYyA" - }, - { - "title": "AJ Tracey Ft. MoStack - Dinner Guest (Karaoke Version)", - "id": "rS-2QkkQJZU" - }, - { - "title": "Niall Horan - Black And White (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jKCu3AuG9sM" - }, - { - "title": "Calling On Me - Sean Paul, Tove Lo (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3rZ9_wgG5OI" - }, - { - "title": "Jaymes Young - Happiest Year (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UlsX7aJ0icI" - }, - { - "title": "Hayley Williams - Dead Horse (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_z7n_pqZ8P4" - }, - { - "title": "Thomas Rhett - Beer Can't Fix (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bxMOOCeprdQ" - }, - { - "title": "Lady Gaga, BLACKPINK - Sour Candy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hQqCpIpCc1k" - }, - { - "title": "Daรฐi Freyr - Think About Things (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KxK_CcFd9Qw" - }, - { - "title": "Gorgon City, DRAMA - Nobody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c2VAIEgvb8w" - }, - { - "title": "Sia - Together (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yW9UHSVB_hs" - }, - { - "title": "Ellie Goulding - Power (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "K_ZIg_T_zgs" - }, - { - "title": "Topic, A7S - Breaking Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tv98SWB465E" - }, - { - "title": "Surf Mesa, Emilee - ily (i love you baby) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BpIqnPml27w" - }, - { - "title": "Sam Fischer - This City (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BrZiVXAi5DI" - }, - { - "title": "Ava Max - Kings & Queens (Karaoke Version)", - "id": "2qFo0NUKTRo" - }, - { - "title": "Traditional -The Anniversary Waltz (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4L83axrQ0k4" - }, - { - "title": "Megan Thee Stallion - Savage (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9mSUCY17wkU" - }, - { - "title": "Lady Gaga, Ariana Grande - Rain On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yGaLmxUQKCA" - }, - { - "title": "Ariana Grande & Justin Bieber - Stuck with U (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8eK5cM2B_GQ" - }, - { - "title": "Noragami Aragoto Theme - Kyoran Hey Kids! (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BECPYbjHF5U" - }, - { - "title": "Nathan Dawe, Jaykae - Flowers (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G-3De64TPXc" - }, - { - "title": "Naruto Shippuden Theme - Silhouette (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3A_ACTCGWus" - }, - { - "title": "Vera Lynn - We'll Meet Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jpsuHX1teeE" - }, - { - "title": "Pussycat Dolls - React (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6RD2sY6AHP4" - }, - { - "title": "Katy Perry - Never Worn White (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7DL9f5IJ610" - }, - { - "title": "Elderbrook - Numb (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3Emu_Eyrjbs" - }, - { - "title": "Kygo, Sasha Sloan - I'll Wait (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0UIAL5cwJqU" - }, - { - "title": "Marshmello, Halsey - Be Kind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5qnkFo2UBj4" - }, - { - "title": "Jessie Mueller - She Used To Be Mine (From 'Waitress') (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "z8tiICjSyxI" - }, - { - "title": "Juice WRLD - Righteous (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CxYEgvhM3DE" - }, - { - "title": "Finneas - Let's Fall In Love Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "z_BqQkPJxTA" - }, - { - "title": "Sub Urban, REI AMI - Freak (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4Lx5y9b_njw" - }, - { - "title": "Dua Lipa - Hallucinate", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "5 Seconds Of Summer - Wildflower", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Kygo, Zak Abel - Freedom", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Haim - The Steps", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "OneRepublic - Didn't I", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "24kGoldn - City of Angels", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Twenty One Pilots - Level Of Concern", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Hosh & 1979, Jalja - Midnight (Hanging Tree)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Sam Smith, Demi Lovato - I'm Ready", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Niall Horan - Heartbreak Weather", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Strokes - Bad Decisions", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Chainsmokers - Push My Luck", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Killers - Caution", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Camila Cabello - Shameless", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Camila Cabello โ€“ Easy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "k8LVIna_dPA" - }, - { - "title": "PARTYNEXTDOOR, Rihanna - BELIEVE IT (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Sy9U7OwoKFQ" - }, - { - "title": "The Phantoms, Black Violin - Stronger (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Cgv23vFLfaw" - }, - { - "title": "Martin Solveig, Roy Woods - Juliet & Romeo", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Selena Gomez - Boyfriend", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Little Mix - Break Up Song", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dua Lipa - Break My Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Powfu, Beabadoobee - Death Bed", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Arizona Zervas - FML", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ariana Grande - NASA", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ariana Grande - Bloodline", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Drake - Toosie Slide", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Weeknd - In Your Eyes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Declan McKenna - Beautiful Faces", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cookie Kawaii - Vibe", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "NLE Choppa, Roddy Ricch - Walk 'Em Down", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Doja Cat, Gucci Mane - Like That", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Rita Ora - How To Be Lonely", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Surfaces - Sunday Best", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Grlwood - I'm Your Dad", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Hayley Williams - Simmer", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joel Corry - Lonely", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jax Jones, Martin Solveig, RAYE - Tequila", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Doja Cat, Tyga - Juicy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "HRVY - Me Because Of You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "bbno$ & ceo@business.net - Out Of Control", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mabel - Boyfriend (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IxQFH5Mly8Q" - }, - { - "title": "Aitch, AJ Tracey Ft. Tay Keith - Rain", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Celine Dion - Ashes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EERXo4ce16c" - }, - { - "title": "Ellie Goulding, Blackbear - Worry About Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lil Baby, Gunna - Drip Too Hard", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Tiagz - My Heart Went Oops", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Tame Impala - Lost In Yesterday", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "YNW Melly, 9lokknine - 223's", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Eddie Cochran - Three Steps To Heaven", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Buddy Holly - That'll Be The Day", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Roses (Imanbek Remix) - Saint Jhn", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "I Love Me - Demi Lovato (Karaoke Version)", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Tell Laura I Love Her - Ricky Valance", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Blueberry Hill - Fats Domino", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Roddy Ricch - High Fashion", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Jersey Boys - Dawn (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sf4is1ygcWI" - }, - { - "title": "Jersey Boys - Sherry (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "97dSRQ69Jtg" - }, - { - "title": "Jersey Boys - My Eyes Adored You", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Becky Hill, Shift K3Y - Better Off Without You", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "SZA, Justin Timberlake - The Other Side", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Biffy Clyro - Instant History", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Eminem, Ed Sheeran - Those Kinda Nights", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Justin Bieber, Kehlani - Get Me", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Cuz I Love You Karaoke", - "id": "Lizzo Karaoke Version" - }, - { - "title": "Gabby Barrett - I Hope (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sxCGiukvshM" - }, - { - "title": "Celeste - Stop This Flame", - "id": "With Lyrics HD" - }, - { - "title": "Justin Bieber, Post Malone, Clever - Forever", - "id": "With Lyrics HD" - }, - { - "title": "Lady Gaga - Stupid Love", - "id": "With Lyrics HD" - }, - { - "title": "Lil Mosey - Blueberry Faygo", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "The Weeknd - After Hours", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Breland - My Truck", - "id": "With Lyrics HD" - }, - { - "title": "Lauv - Tattoos Together", - "id": "With Lyrics HD" - }, - { - "title": "Khalid, Disclosure - Know Your Worth", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Halsey - You Should Be Sad", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Camila Cabello - First Man", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Justin Bieber, Quavo - Intentions", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Conan Gray โ€“ Maniac", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Dermot Kennedy - Power Over Me", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Sam Smith - To Die For", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Selena Gomez - Vulnerable", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Niall Horan -No Judgement", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Anne-Marie - Birthday", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Billie Eilish - No Time To Die James Bond", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Taylor Swift - Only The Young", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Freya Ridings - Love Is Fire", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Riton, Oliver Heldens, Vula - Turn Me On", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Dua Lipa - Physical (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EI281YYqCkQ" - }, - { - "title": "Camila Cabello, DaBaby - My Oh My", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Maren Morris - The Bones (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "Q2jEWKxn1Bo" - }, - { - "title": "The Weeknd - Heartless (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "aB2nJVip0X0" - }, - { - "title": "Doja Cat - Say So (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DaXgG9flgf0" - }, - { - "title": "Old Dominion - One Man Band (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "hPEXibdB8QM" - }, - { - "title": "Selena Gomez - Dance Again (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "sWI4Nf8zz0M" - }, - { - "title": "Lauv - Changes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p7fJCUcHeDc" - }, - { - "title": "Camelphat, Jem Cooke - Rabbit Hole (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "HtjlHZzT7TE" - }, - { - "title": "Eminem, Juice WRLD - Godzilla (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "k6b8EbOvxqM" - }, - { - "title": "The 1975 - Me & You Together Song (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "fSV6ygqEODc" - }, - { - "title": "PUBLIC - Make You Mine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sfJJWygaK2A" - }, - { - "title": "Selena Gomez - Rare (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6ZsL9yvskEs" - }, - { - "title": "Jonas Brothers - What A Man Gotta Do (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "_5vfNyC4ESc" - }, - { - "title": "Roddy Ricch - The Box (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PIENwmyFgZw" - }, - { - "title": "The Chainsmokers Ft. Amy Shark - The Reaper", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Haim - Now I'm In It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Vtapvbuf1aA" - }, - { - "title": "Future Ft Drake - Life Is Good (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "YGNczS03p6A" - }, - { - "title": "Justin Bieber -Yummy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dlRC2I8qm9Q" - }, - { - "title": "Harry Styles - Adore You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JBKxaao70_w" - }, - { - "title": "Camila Cabello - Living Proof (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "jRe1DRMM2ms" - }, - { - "title": "Louis Tomlinson - Don't Let It Break Your Heart", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Alicia Keys - Time Machine (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "5qX8CcdqnJw" - }, - { - "title": "Bastille, Alessia Cara - Another Place", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "MEDUZA, Becky Hill, Goodboys - Lose Control", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Lauv LANY - Mean It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rTI08KQKYX4" - }, - { - "title": "Katy Perry - Harleys In Hawaii (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "qtUwvBoVm3Y" - }, - { - "title": "Sam Feldt, Rani - Post Malone (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "1msnjxYCwGI" - }, - { - "title": "Charli XCX - White Mercedes (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "DusUhgeaJf4" - }, - { - "title": "Harry Styles - Watermelon Sugar (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "Bnyqyg93v2A" - }, - { - "title": "Auld Lang Syne - Auld Lang Syne (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mhnDp_Jk1ZI" - }, - { - "title": "Morgan Evans - Diamonds (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BYDDe6Z3U84" - }, - { - "title": "Martin Garrix & Dean Lewis - Used To Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q11JuwdoUpE" - }, - { - "title": "The Weeknd - Blinding Lights (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "frXhRlWZJkQ" - }, - { - "title": "Kesha Big Freedia - Raising Hell (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3si0smq3EWw" - }, - { - "title": "Lewis Capaldi - Before You Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3M3amy9C41s" - }, - { - "title": "Stormzy, Ed Sheeran, Burna Boy - Own It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "km8z8RijjR4" - }, - { - "title": "Band Aid 30 - Do They Know It's Christmas 2014 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xhfQC04bL1A" - }, - { - "title": "Chris Brown, Gunna - Heat (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "j6v0hvK9JCk" - }, - { - "title": "Marshmello x YUNGBLUD x blackbear -Tongue Tied (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1W33wCgJj_8" - }, - { - "title": "Iann Dior, Trippie Redd - Gone Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ywm-rjm_rg0" - }, - { - "title": "Lukas Graham - HERE (For Christmas) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tO_r7qmjd0k" - }, - { - "title": "Gorgon City, MK - There For You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ND0edBVi8Io" - }, - { - "title": "Jonas Brothers - Like It's Christmas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wc5_5I0Wqrk" - }, - { - "title": "Tom Walker - Better Half Of Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r248HbjQQTU" - }, - { - "title": "Jax Jones, Ella Henderson - This Is Real (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jE2-Bm-FGeY" - }, - { - "title": "Johnny Cash - Rock And Roll Shoes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Solitary Man", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Rockabilly Blues", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - God's Hands", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - I Talk To Jesus Every Day", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - A Wonderful Time Up There", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Man In White", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Understand Your Men", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - So Doggone Lonesome", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - One Piece At A Time", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - No Need To Worry", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Flesh And Blood", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Ballad Of A Teenage Queen", - "id": "With Lyircs HD Vocal Star Karaoke 4K" - }, - { - "title": "Johnny Cash - In The Jailhouse Now", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Darling Companion", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - San Quentin", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Fulsom Prison Blues", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Don't Take Your Guns To Town", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Cash - Daddy Dang Bass", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cocaine Blues Karaoke", - "id": "Johnny Cash Karaoke Version" - }, - { - "title": "John Legend - Stay With You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "You're The Voice Karaoke", - "id": "John Farnham Karaoke Version" - }, - { - "title": "John Farnham - You Will Never Walk Alone", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - Sunshine On My Shoulders", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - If Ever", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - Wandering Soul", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - For You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - Starwood In Aspen", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - Wild Montana Skies", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - Mr. Bojangles (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MuXZ2VOVMHk" - }, - { - "title": "John Denver - Starry Starry", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - Shangai Freezes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - Follow Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - Blackbird", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joe Dolan - Goodbye Venice", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joe Dolan - Make Me An Island", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joe Cocker - Something", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joe Cocker - Come Together", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joe Cocker - I Who Have Nothing", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joe Cocker - You Can Leave Your Hat On", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimi Hendrix - Purple Haze", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimi Hendrix - Hey Joe", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimmy Cliff - The Lion Sleeps Tonight", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimmy Cliff - You Can Get It If You Really Want", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimmy Cliff - Many Rivers To Cross", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimmy Cliff - Beautiful World Beautiful People", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimi Hendrix - Long Hot Summer Night", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimi Hendrix - Voodoo Child", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimi Hendrix - Like A Rolling Stone", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimi Hendrix - Castles Made Of Sand", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - A Letter To My Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fn89shiKw6w" - }, - { - "title": "Jim Reeves - Crying In My Sleep", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Lonesome Waltz", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - What Would You Do", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Read This Letter", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Roses", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - The World You Left Behind", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - I Know One", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Deep Dark Water", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - I Heard A Heartbreak Last Night", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - I Guess I'm Crazy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - I Missed Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - I Won't Come In While He's There", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Losing Your Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Am I Losing You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - That's When I See The Blues", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Angels Don't Lie", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - How's The World Treating You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - A Fallen Star", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Is It Really Over", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Two Shadows On Your Window", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - When You Are Gone", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Wild Rose", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - You Are My Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - You're Free To Go", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Snow Flake", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Blue Side Of Lonesome", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Blue Boy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Bimbo", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Billy Bayou", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Anna Marie", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "I Don' t See Me In your Eyes Anymore", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Home", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jessica Simpson - I Belong To Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Stand At Your Window", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - I'm Beginning To Forget You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - I Won't Forget You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - For The Good Times", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jet - Rollover DJ", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jet - Look What You've Done", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jessica Simpson - These Boots Are Made For Walking", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Jessica Simpson - Take My Breath Away", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jessica Simpson - I Wanna Love You Forever", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jennifer Lopez Feat Ll Cool J - All I Have (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PKvE-dKaFMI" - }, - { - "title": "Jennifer Hudson And Jennifer Nettles - You Will (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GL8kj9XJiyk" - }, - { - "title": "Jennifer Hudson - One Night Only (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Krvwosu_utA" - }, - { - "title": "Jamie Cullum - What A Difference A Day Made", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jamie Cullum - I Get A Kick Out Of You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jamie Cullum - Singing In The Rain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wbbYPCAwG3Y" - }, - { - "title": "Jamie Cullum - Everlasting Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "James Taylor - That's Why I'm Here (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PDgWYTj5zaw" - }, - { - "title": "Jackson Five - Rockin Robin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CbiKSMHOrpE" - }, - { - "title": "James Morrison - I Won't Let You Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2E8Ex-6NKOA" - }, - { - "title": "Jackson Five - Never Can Say Goodbye (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y0qyBi6xMbA" - }, - { - "title": "Jackson Five - Can You Feel It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kJRPoTjIOXc" - }, - { - "title": "Inxs - Never Tear Us Apart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1qNZzd2049A" - }, - { - "title": "Ian Dury - I Made Mary Cry (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4nwv_ISzEko" - }, - { - "title": "Ian Dury - Crippled With Nerves (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "z8pXRiV0x34" - }, - { - "title": "Human League - Electric Dreams (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "S4DxZuQFpzo" - }, - { - "title": "Huey Lewis And The News - Back In Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-D608zsQpHg" - }, - { - "title": "Hilary Duff - Underneath This Smile (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B3_0ohEgc9Y" - }, - { - "title": "Hilary Duff - The Getaway (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4_EjyABPTPg" - }, - { - "title": "Hilary Duff - Our Lips Are Sealed (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r9VKfVl6kyc" - }, - { - "title": "Hilary Duff - I Am (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0l24xo1CQu0" - }, - { - "title": "Hilary Duff - Girl Can Rock (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IUGEI5ipBXI" - }, - { - "title": "Herman's Hermits - Listen People (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Cl0fgCzRIZo" - }, - { - "title": "Herman's Hermits - End Of The World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kXOT41F6hbI" - }, - { - "title": "Helen Shapiro - You Don't Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RLRLQb-HySE" - }, - { - "title": "Helen Shapiro - Walking Back To Happiness (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hSPjmPlb2OE" - }, - { - "title": "Harold Melvin And The Blue Notes - The Love I Lost (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "DtLHg9y22fw" - }, - { - "title": "Harold Melvin & The Blue Notes - Don't Leave Me This Way (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "_aj5PgAUKg0" - }, - { - "title": "Gwen Stefani ft. Eve - Rich Girl", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Hollaback Girl Karaoke", - "id": "Gwen Stefani Karaoke Version" - }, - { - "title": "Gwen Stefani - Crash", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gwen Stefani - Cool", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gwen Stefani - Early Winter", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gwen Stefani - The Real Thing", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gwen Stefani - Serious", - "id": "with Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gwen Stefani - What Are You Waiting For", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Guys And Dolls - Luck Be A Lady (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZEHNSUt23kg" - }, - { - "title": "Guns And Roses - You Could Be Mine", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Guns And Roses - Welcome To The Jungle", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Guns And Roses - Used To Love Her", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Guns And Roses - Patience", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Guns And Roses - Paradise City", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Guns And Roses - November Rain", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Guns And Roses - Nightrain", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gordon Lightfoot - Summertime Dream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3xgxTzwkF-w" - }, - { - "title": "Gordon Lightfoot - The Wreck of the Edmund Fitzgeral (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "REyqLaLA-cQ" - }, - { - "title": "Gordon Lightfoot - Beautiful (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BfwYgq2BqCA" - }, - { - "title": "Gordon Lightfoot - If You Could Read My Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wYQWvg6RW6U" - }, - { - "title": "Gloria Gaynor - How High The Moon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VYKaZXusOrE" - }, - { - "title": "Gloria Estefan - Hold Me Thrill Me Kiss Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l5x7u6g1Hm4" - }, - { - "title": "Glen Campbell - I Wanna Live (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "o24hl3M6ch8" - }, - { - "title": "Glen Campbell - I Love How You Love Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p6W7OTL1Ta4" - }, - { - "title": "Glen Campbell - Faithless Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HuVD5w8OgvQ" - }, - { - "title": "Glen Campbell - Elusive Butterfly (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "V7KGEq3hFng" - }, - { - "title": "Glen Campbell - By The Time I Get To Phoenix (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wED-VHDeUwM" - }, - { - "title": "Glen Campbell - Where Is The Playground Susie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nqba8d9EWFQ" - }, - { - "title": "Yesterday When I Was Young Karaoke", - "id": "Glen Campbell Karaoke Version" - }, - { - "title": "Glen Campbell - Try A Little Kindness (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "53CUnuSS_e8" - }, - { - "title": "Glen Campbell - If You Go Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fpb3WtqXddg" - }, - { - "title": "Glen Campbell - Dreams of the everyday Housewife (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zeb4lZy4gA8" - }, - { - "title": "Gladys Knight And The Pips - The Way We Were Try To Remember (Karaoke Version) with Lyrics HD", - "id": "Pf19CAAd_U0" - }, - { - "title": "Gladys Knight - End Of The Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jh3ahDas4VI" - }, - { - "title": "Gladys Nights And The Pips - Part Time Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HyOkAidQ4IM" - }, - { - "title": "Girls Aloud - Life Got Cold (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R5wVYmqqXo8" - }, - { - "title": "Girls Aloud - Jump (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4X3MRkkdgLc" - }, - { - "title": "Girls Aloud - I'll Stand By You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9OVQKA-5NFs" - }, - { - "title": "Gerry Rafferty - Stealin Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DxbomHU38vY" - }, - { - "title": "Gerry Rafferty - Make You Break You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M94BbcCVtbc" - }, - { - "title": "Gerry Rafferty - Don't Give Up On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xwe6vqPeDmI" - }, - { - "title": "Gerry Rafferty - Didn't I (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cuCz4ifIdoU" - }, - { - "title": "George Strait - Make Her Fall in Love with Me Song (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "e24AhWiF63k" - }, - { - "title": "George Strait - Where The Sidewalk Ends (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fTPPvAE1yeM" - }, - { - "title": "George Strait - The Fireman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Pe_RuhbAPeg" - }, - { - "title": "George Strait - Love Bug (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1GZyDx014zM" - }, - { - "title": "George Strait - I Just Want To Dance With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tDSBdeX1qHo" - }, - { - "title": "George Strait - I Hate Everything (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "__ug2fZreQQ" - }, - { - "title": "George Strait - Check Yes Or No (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Zed3P4n7w3I" - }, - { - "title": "George Strait - Carrying Your Love With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lv-8MSCp8R0" - }, - { - "title": "George Strait - Blue Clear Sky (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VvOXaTJ3VfQ" - }, - { - "title": "George Strait - All My Exes Live In Texas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m1xo-6Tc9HA" - }, - { - "title": "George Michael - Too Funky (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "seSsHigSuHg" - }, - { - "title": "George Michael - Outside (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lX_ckX_uFbI" - }, - { - "title": "George Michael - Father Figure (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HbV6wIdnSNM" - }, - { - "title": "George Michael - Fast Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B9TDuCdIPpk" - }, - { - "title": "George Michael - Kissing A Fool (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kv_D25U6ylQ" - }, - { - "title": "George Michael - Flawless (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "16q8dw6QYEI" - }, - { - "title": "George Michael - Amazing", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Jones - Wild Irish Rose", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Jones - Hello Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Jones - Somebody Wants Me Out Of The Way", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Jones - He Stopped Loving Her Today", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Harrison - True Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Harrison - Between The Devil And The Deep Blue Sea", - "id": "With Lyrics Vocal-Star 4K" - }, - { - "title": "George Harrison - Any Road", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Harrison - Something", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Benson - Tequila", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Genesis - No Son Of Mine", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Benson - Without A Song", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Genesis - Sussudio", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gene Pitney - I'll Be There", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gene Pitney - Only Love Can Break A Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gene Pitney - I Wanna Love My Life Away", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gene Pitney - I Laughed So Hard I Cried", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gene Pitney - Shady Lady", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gene Pitney - In The Cold Light Of Day", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gene Pitney - Blue Angel", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gavin Degraw - Chariot", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gary Moore - Separate Ways", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gary Moore - I Can't Wait For Tomorrow", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gary Moore - Hold On To Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gary Moore - Falling In Love With You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gary Moore - Still Got The Blues", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Garth Brooks - I've Got A Good Thing Going", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Garth Brooks - For A Minute There", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frankie Valli And The Four Seasons - The Night", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frankie Valli - The Proud One", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frankie Lymon & The Teenagers - Who can explain", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frankie Lymon & the Teenagers - I Want You To Be My Girl", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Frankie Lymon & The Teenagers - I Promise To Remember", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Frank Zappa - Jewish Princess", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frank Sinatra - I Think I'm Gonna Make It All The Way", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Frank Sinatra - Gonna Live Till I Die", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frank Sinatra - You Turned My World Around", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frank Sinatra - This Town", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frank Sinatra - It's Over It's Over It's Over", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frank Sinatra - Here's To The Band", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frank Sinatra - Love Has Been Good To Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Four Seasons - Rhapsody", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Four Seasons - Who Loves You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fleetwood Mac - Tell Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fleetwood Mac - I Don't Want To Know", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fleetwood Mac - Don't Stop", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fine Young Cannibals - Johnny Come Home", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Free Yourself Karaoke", - "id": "Fantasia Karaoke Version" - }, - { - "title": "Frankie Laine - Hey Joe", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frankie Laine - Granada", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fame - Can't Keep It Down", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fall Out Boy - Sugar We're Goin Down", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fame - There She Goes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fall Out Boy - Dance Dance", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fall Out Boy - A Little Less 16 Candles A Little More Touch Me", - "id": "Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Fall Out Boy - This Ain't a Scene, It's An Arms Race", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Faith Hill - Breathe", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Everything But The Girl - Love Is Strange", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Everly Brothers - Dancing In The Street", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Everly Brothers - Let It Be Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Everly Brothers - Ginny Come Lately", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Evanescence - My Immortal", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Evanescence - Going Under", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Evanescence - Everybody's Fool", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Evanescence - Bring Me To Life", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Evanescence - Breathe No More", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eva Cassidy - Walking After Midnight", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eva Cassidy - Wayfaring Stranger", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eva Cassidy - Tennessee Waltz", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eva Cassidy - Songbird", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eva Cassidy - Drowning In The Sea Of Love", - "id": "Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Europe - Superstitious", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Europe - Last Look At Eden", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Europe - New Love In Town", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Europe - Got To Have Faith", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Europe - Hero", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - Donยดt Touch Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - What's Done In The Dark", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - Trust In Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - Tell Mama", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - Stormy Weather", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - If I Can't Have You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - Fool That I Am", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - Don't Cry Baby", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - All I Could Do Was Cry", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - A Sunday Kind Of Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - My Dearest Darling", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eternal - I Am Blessed", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eternal - I Wanna Be The Only One", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eric Clapton - Got You On My Mind", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eric Clapton - Pretending Song", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eric Clapton - River Of Tears", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eric Clapton - I've Got A Rock N Roll Heart", - "id": "Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - Piano Song", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - Stop", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - Star", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - Ship Of Fools", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - Oh l Amour", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - Love To Hate You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - Freedom", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - Chains Of Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - Blue Savannah", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Erasure - A Little Respect", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enya - May It Be", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias & Lionel Richie - To Love A Woman", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Enrique Iglesias - Solo Me Importas Tu", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias - Si Tu Te Vas", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias - Por Amarte", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias - Para Que La Vida", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias - Esperanza", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias - Be With You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias - Adicto", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias - Sad Eyes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias - Hero", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Enrique Iglesias - Escape", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - The Shadow Of Your Smile", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Love Is A Many Splendored Thing", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Engelbert Humperdinck - Too Young", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck A Lovely Way To Spend An Evening I'm So Excited", - "id": "Vocal Star Karaoke HD 4K" - }, - { - "title": "Engelbert Humperdinck - This Is A Night", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - The Little Cafe By The Harbour", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Engelbert Humperdinck - Someone To Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - I Believe", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Strangers In The Night", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - How Slow We Go", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Everything And More", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "I Know That We Have Loved Before Karaoke", - "id": "Engelbert Humperdinck Karaoke Version" - }, - { - "title": "Engelbert Humperdinck - In Love With You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - My Wife The Dancer", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - I'm Holding Your Memory", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Baby Me Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rXfqArASUDU" - }, - { - "title": "Engelbert Humperdinck - If We Only Had Love If You Love Me", - "id": "With Lyrics HD Vocal Star" - }, - { - "title": "Engelbert Humperdinck - Stay With Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - This Guys In Love With You", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Engelbert Humperdinck - It's All In The Game", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - I Wanna Wake Up With You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Can't You See", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - When You Say Nothing At All", - "id": "Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - South Of The Border", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Penny Lane", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Last Of The Romantics", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - I Wish You Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - A Nightingale Sang In Berkeley Square", - "id": "Lyrics HD Vocal Star Karaoke" - }, - { - "title": "Engelbert Humperdinck - Woman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Handbags And Gladrags", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Every Breath You Take", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Eternally", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Am I That Easy To Forget", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - After The Loving", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - You Make My Pants Want To Get Up And Dance", - "id": "Vocal Star Karaoke" - }, - { - "title": "Engelbert Humperdinck - The Long And Winding Road", - "id": "with Lyrics HD Vocal-Star 4K" - }, - { - "title": "Engelbert Humperdinck - Honky Tonk World", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Do You Mind", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Deep In My Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Somebody Like You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "How I Love You Karaoke", - "id": "Engelbert Humperdinck Karaoke Version" - }, - { - "title": "Engelbert Humperdinck - It's Wonderful", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - A Chance To Be A Hero", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Columns Of Grey", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - We'll Meet Again", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - A Man Without Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Emma Bunton - Maybe", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eminem - Stan", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eminem - Lose Yourself", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Emeli Sande - Lonely (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5KpC8tGZSLo" - }, - { - "title": "Emeli Sande - It Hurts", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Embrace - Gravity (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QKTBX4VdrxQ" - }, - { - "title": "Elvis Presley - After Loving You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YKNGt05sku8" - }, - { - "title": "Elvis Presley - You Asked Me To (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8tH7J4jEzfk" - }, - { - "title": "Elvis Presley - Hound Dog (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pjPuOQpY4Jc" - }, - { - "title": "Elvis Presley - One Night With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vq-er9bWriU" - }, - { - "title": "Elvis Presley - Stick Like Glue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Kl8UOGX87bw" - }, - { - "title": "Elvis Presley - Now Or Never (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DzdCdMrfzOk" - }, - { - "title": "Demi Lovato - Heart Attack (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pb4ei4XkPFw" - }, - { - "title": "Elvis Presley - Burning Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yBnbZFrEPdA" - }, - { - "title": "Elvis Presley - You Were Always (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_PaToNQ7Wws" - }, - { - "title": "Elvis Presley - Are You Lonesome Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NFLf3HP7oOs" - }, - { - "title": "Emeli Sande - Heaven", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Elvis Presley - Rock A Hula (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8ZMEQQ8vFrU" - }, - { - "title": "Elvis Presley - Bridge Over Troubled Water (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3R6_X2oUCxw" - }, - { - "title": "Elvis Presley - King Creole (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0DmvfDEUaTM" - }, - { - "title": "Elvis Presley - That's Alright (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "byogvabyD0k" - }, - { - "title": "Elvis Presley - Can't Help Falling In Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VvUMx3O-eDY" - }, - { - "title": "Elvis Presley - Don't Be Cruel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xZBnWZ8YDS0" - }, - { - "title": "Elvis Presley - Hey Big Boss Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q3W3MBBY6XM" - }, - { - "title": "Elvis Presley - Crying In The Chapel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EWMDBMHHUq8" - }, - { - "title": "Elvis Presley - Good Luck Charm (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2QB8dTDO3wM" - }, - { - "title": "Elvis Presley - Ain't That Lovin' You Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q0-sMP-YKrU" - }, - { - "title": "Elvis Presley - Yes I'll Be Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HdisOCy_Kls" - }, - { - "title": "Elvis Presley - I Love You Too Much (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NV_Jvo0RddA" - }, - { - "title": "Elvis Presley - Go Johnny Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vmFIadBLmHg" - }, - { - "title": "Elvis Presley - It's Christmas Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wIvQEQkpZ70" - }, - { - "title": "Elvis Presley - Lil' Sister (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jvKXzPQc2aU" - }, - { - "title": "Elvis Presley - Love Me Tender (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IdcH3_yKjkE" - }, - { - "title": "Elvis Presley - The Field Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ac38rO0FGn8" - }, - { - "title": "Elvis Presley - Let Me Be Your Loverboy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "F-YuRRSOrDY" - }, - { - "title": "Elvis Presley - My Head Is Spinnin' (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1NA_CatLewA" - }, - { - "title": "Elvis Presley - Bossa Nova (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c4KTtXxyFZo" - }, - { - "title": "Elvis Presley - Lovin' To Do (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_kTOcqNFGzI" - }, - { - "title": "Elvis Presley - T.r.o.u.b.l.e (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ffSW3AYMk1s" - }, - { - "title": "Elvis Presley - The Christmas Song Blue Christmas (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "kM4deqm1qEs" - }, - { - "title": "Elvis Presley - Such A Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Zaoamqt6UGM" - }, - { - "title": "Elvis Presley - My Baby Left Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_xpsPaYmVWs" - }, - { - "title": "Elvis Presley - Heartbreak Hotel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lQGfCcY9l4k" - }, - { - "title": "Elvis Presley - Baby You're Wrong If You Think I Don't Need You (Karaoke Version) with Lyrics HD", - "id": "TdXVBFQI1a0" - }, - { - "title": "Elvis Presley - I Got Stung (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vk5UBPdula0" - }, - { - "title": "Elvis Presley - Swing Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "urwAbIXuSQM" - }, - { - "title": "Elvis Presley - Tutti Frutti (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NRckP10vPMI" - }, - { - "title": "Elvis Presley - Hey Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "P8c9jrXX9hs" - }, - { - "title": "Elvis Presley - What I Say (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TJKT0Er1DcQ" - }, - { - "title": "Elvis Presley - Proud Mary (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vqshwLyryEI" - }, - { - "title": "Elvis Presley - C'mon Everybody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "liw7M1ZGSlg" - }, - { - "title": "Elvis Presley - How Would You Like To Be (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fjs853hJJb0" - }, - { - "title": "Elvis Presley - One Broken Heart For Sale (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ivldJjH6N4U" - }, - { - "title": "Elvis Presley - Cousins (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KAzfx6QciZI" - }, - { - "title": "Elvis Presley - We're Coming In Loaded (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "teBHwWm06nw" - }, - { - "title": "Elvis Presley - Meanest Girl In Town (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9GsuZoBcOx4" - }, - { - "title": "Elvis Presley - Ain't That Loving You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MB6SKUatZWg" - }, - { - "title": "Elvis Presley - Spring Fever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hkN-A_E7aOE" - }, - { - "title": "Elvis Presley - Startin' Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l9dqi9FMtto" - }, - { - "title": "Elvis Presley - Shake That Tambourine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XF1Y82XHF68" - }, - { - "title": "Elvis Presley - We're Gonna Move (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s4kJo74OrQ8" - }, - { - "title": "Elvis Presley - Love The Life I Lead (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pT3EkHde3Y4" - }, - { - "title": "Elvis Presley - I Was Born 10000 Years Ago (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gZ5NpBn96HU" - }, - { - "title": "Elvis Presley - Woman Without Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vlrWu322uOw" - }, - { - "title": "Elvis Presley - Animal Instinct with Lyrics HD Vocal-Star Karaoke 4K", - "id": "hRhrxPKDBTw" - }, - { - "title": "Elvis Presley - Shake Rattle & Roll with Lyrics HD Vocal-Star Karaoke 4K", - "id": "R5otf3JzcYg" - }, - { - "title": "Elvis Presley - If You Scratch My Back Then I'll Scratch Yours with Lyrics HD 4K", - "id": "dsN7JfCiWDE" - }, - { - "title": "Elvis Presley - I Love Only One Girl with Lyrics HD Vocal-Star Karaoke 4K", - "id": "GPbtnBgMvvA" - }, - { - "title": "Elvis Presley - I'm Roustabout (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "44eASe8ncFw" - }, - { - "title": "Elvis Presley - I'll Remember You with Lyrics HD Vocal-Star Karaoke 4K", - "id": "FQcVQvsPcd0" - }, - { - "title": "Elvis Presley - Brand New Day with Lyrics HD Vocal-Star Karaoke 4K", - "id": "LpO8WOdmNs4" - }, - { - "title": "Elvis Presley - Blue River with Lyrics HD Vocal-Star Karaoke 4K", - "id": "e9pER8R--50" - }, - { - "title": "Elvis Presley - Padre with Lyrics HD Vocal-Star Karaoke 4K", - "id": "uia90pBGVZc" - }, - { - "title": "Elvis Presley - No Room To Rhumba with Lyrics HD Vocal-Star Karaoke 4K", - "id": "0UWVzzlZ_kU" - }, - { - "title": "Elvis Presley - Blue Suede Shoes with Lyrics HD Vocal-Star Karaoke 4K", - "id": "NdNClBv7tEI" - }, - { - "title": "Elvis Presley - Money Honey with Lyrics HD Vocal-Star Karaoke 4k", - "id": "ZELIBdN_ETk" - }, - { - "title": "Elvis Presley - Love Me with Lyrics HD Vocal-Star Karaoke 4K", - "id": "3FQlB2dNEb8" - }, - { - "title": "Elvis Presley - Long Tall Sally with Lyrics HD Vocal-Star Karaoke 4K", - "id": "tSV4PA3ljv8" - }, - { - "title": "Elvis Presley - Hot Dog with Lyrics HD Vocal-Star Karaoke 4K", - "id": "ABLXcckLU10" - }, - { - "title": "Elvis Presley - Kathleen with Lyrics HD Vocal-Star Karaoke 4K", - "id": "lMth1xshg5s" - }, - { - "title": "Elvis Presley - Gold In The Mountains with Lyrics HD Vocal-Star Karaoke 4K", - "id": "2o7tlB_C5cc" - }, - { - "title": "Elvis Presley - It's Called A Dogs Life with Lyrics HD Vocal-Star Karaoke 4K", - "id": "U7HUji2rRYo" - }, - { - "title": "Elvis Presley - Jailhouse Rock with Lyrics HD Vocal-Star Karaoke 4K", - "id": "pMRwDFbeumk" - }, - { - "title": "Elvis Presley - Ivy League with Lyrics HD Vocal-Star Karaoke 4K", - "id": "XdDKSuiND5o" - }, - { - "title": "Elvis Presley - The Bullfighter Was A Lady with Lyrics HD Vocal-Star Karaoke 4K", - "id": "yEzKF_KaYW8" - }, - { - "title": "Elvis Presley - Whistling Tune with Lyrics HD Vocal-Star Karaoke 4K", - "id": "VqcxF7Kjnq8" - }, - { - "title": "Elvis Presley - El Toro with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Es8aFmkIcxU" - }, - { - "title": "Elvis Presley - You're The Devil In Disguise with Lyrics HD Vocal-Star Karaoke 4K", - "id": "JvG4pmp-A40" - }, - { - "title": "Elvis Presley - Oh I Got Lucky with Lyrics HD Vocal-Star Karaoke 4K", - "id": "rn7xIxAYfeY" - }, - { - "title": "Elvis Presley - Yesterday with Lyrics HD Vocal-Star Karaoke 4K", - "id": "PbW0e-87lJg" - }, - { - "title": "Elvis Presley - Let's Forget About The Stars with Lyrics HD Vocal-Star Karaoke 4K", - "id": "pSmBPZhGY7Y" - }, - { - "title": "Elvis Presley - The Walls Have Ears with Lyrics HD Vocal-Star Karaoke 4K", - "id": "xxwPqhHseiw" - }, - { - "title": "Elvis Presley - Gonna Get Back Home Somehow with Lyrics HD Vocal-Star Karaoke 4K", - "id": "CO2zso1e2T4" - }, - { - "title": "Elvis Presley - Earth Boy with Lyrics HD Vocal-Star Karaoke 4K", - "id": "YzTKpGGpy94" - }, - { - "title": "Elvis Presley - He Is My Everything with Lyrics HD Vocal-Star Karaoke 4K", - "id": "RyHGHzdQETc" - }, - { - "title": "Elvis Presley - Sweet Caroline with Lyrics HD Vocal-Star Karaoke 4K", - "id": "UijDTrK6nzY" - }, - { - "title": "Elvis Presley - Poor Man's Gold with Lyrics HD Vocal-Star Karaoke 4K", - "id": "qGYKeqEYYDA" - }, - { - "title": "Elvis Presley - I'll Be With You Always with Lyrics HD Vocal-Star Karaoke 4K", - "id": "pmUc0skv5Bg" - }, - { - "title": "Elvis Presley - If You'll Give Me All Of Your Love with Lyrics HD Vocal-Star 4K", - "id": "uLBHTI1HTRU" - }, - { - "title": "Cheap Trick - I Want You To Want Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1vbk3Ycdn-A" - }, - { - "title": "Elvis Presley - Let Me Be with Lyrics HD Vocal-Star Karaoke 4K", - "id": "D4mYzTeLwP0" - }, - { - "title": "Elvis Presley - Lawdy Miss Clawdy with Lyrics HD Vocal-Star Karaoke 4K", - "id": "MnlOt0kmqms" - }, - { - "title": "Elvis Presley - Rubberneckin with Lyrics HD Vocal-Star Karaoke 4K", - "id": "bGnUsuGkHME" - }, - { - "title": "Elvis Presley - My Boy with Lyrics HD Vocal-Star Karaoke 4K", - "id": "q8Nj2wBTMfA" - }, - { - "title": "Elvis Presley - Crawfish with Lyrics HD Vocal-Star Karaoke 4K", - "id": "4EY1m2r7qkY" - }, - { - "title": "Elvis Presley - Return To Sender with Lyrics HD Vocal-Star Karaoke 4K", - "id": "HpBbF3ZJLjM" - }, - { - "title": "Elvis Presley - Can't Help Falling In Love With You with Lyrics HD Vocal-Star 4K", - "id": "iWi_4-gdTBI" - }, - { - "title": "Elton John And Bryan Adams - Sad Songs Say So Much (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "22XU2lC9_fE" - }, - { - "title": "Elton John - All The Young Girls Love Alice (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VAR8F_hbgFE" - }, - { - "title": "Elton John & George Michael - Don't Let the Sun Go Down On Me (Karaoke Version) with Lyrics HD", - "id": "DbUbvc-fysQ" - }, - { - "title": "Elton John - Answer In The Sky (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QzeL2DTFGUM" - }, - { - "title": "Elton John - Monkey Suit (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1Kv3o-FX6QY" - }, - { - "title": "Elton John - Sartorial Eloquence (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DrnlH3XX81I" - }, - { - "title": "Elton John - Pinky (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Uhv1lJDNHQU" - }, - { - "title": "Elton John - Social Disease (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vS5dMcri4sg" - }, - { - "title": "Elton John - Mama Can't Buy You Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wADWWqqBkuA" - }, - { - "title": "Elton John - Chloe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "764IM5DgZdo" - }, - { - "title": "Elton John - Written In The Stars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6a_sRuSLWZY" - }, - { - "title": "Elton John - The One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CDw0dKpZNJ4" - }, - { - "title": "Elton John - True Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NGJRdnahKn0" - }, - { - "title": "Elton John - Sorry Seems To Be the Hardest Word (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XysQfEfHjI8" - }, - { - "title": "Elton John - Someone Saved My Life Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cTzStrBR3qc" - }, - { - "title": "Nikita Karaoke", - "id": "Elton John Karaoke Version" - }, - { - "title": "Elton John - Daniel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wnyzo3uq4iE" - }, - { - "title": "Elton John - Believe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q9W-w_CQwuA" - }, - { - "title": "Elton John - All That I'm Allowed (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HPahCw6tKqs" - }, - { - "title": "ELO Electric Light Orchestra - The Lights Go Down (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "IPPNQKUYCqU" - }, - { - "title": "ELO Electric Light Orchestra - Living Thing (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "f21cmzLfJsI" - }, - { - "title": "ELO Electric Light Orchestra - Showdown (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vgg6cLWEtA4" - }, - { - "title": "ELO Electric Light Orchestra - Summer And Lightning (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "aG-yxkmJiow" - }, - { - "title": "ELO Electric Light Orchestra - Four Little Diamonds (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "kHGHgapxxRw" - }, - { - "title": "ELO Electric Light Orchestra - Julie Don't Live Here Karaoke Version with Lyrics Vocal-Star Karaoke", - "id": "fqRkKnvR1G0" - }, - { - "title": "ELO Electric Light Orchestra - Rock And Roll Is King Karaoke Version with Lyrics Vocal-Star Karaoke", - "id": "JfFJOsPVI-E" - }, - { - "title": "ELO Electric Light Orchestra - Telephone line (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5u3NCDbQ74k" - }, - { - "title": "ELO Electric Light Orchestra - Hold On Tight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EqnWZO1Xzqo" - }, - { - "title": "ELO Electric Light Orchestra - Can't Get You Out Of My Head (Karaoke Version) with Lyrics", - "id": "LJnJ0sGGu04" - }, - { - "title": "ELO Electric Light Orchestra - Turn To Stone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gl_E4lNDfnA" - }, - { - "title": "ELO Electric Light Orchestra - Strange Magic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "S1sRNdTOn6U" - }, - { - "title": "ELO Electric Light Orchestra - Roll Over Beethoven (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "3947aW6MhW8" - }, - { - "title": "Elkie Brooks - Pearl's A Singer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aDhaE2sxciM" - }, - { - "title": "Elkie Brooks - No More The Fool (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yMDV4PUbqZ8" - }, - { - "title": "Elkie Brooks - Lilac Wine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-ZZ0J3aWm0A" - }, - { - "title": "Elkie Brooks - Don't Cry Out Loud (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8bEe7NtQNXw" - }, - { - "title": "Elaine Paige - Memory (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nZRqBus5-W0" - }, - { - "title": "Eddy Arnold - Turn The World Around (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7fpwJzP805Q" - }, - { - "title": "Eddy Arnold - I Really Don't Want To Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lAPeOxcihws" - }, - { - "title": "Eddie Fisher - Tell Me Why (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5nF0h_XBsrM" - }, - { - "title": "Eddie Fisher - Cindy Oh Cindy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gUvBmbAO1jo" - }, - { - "title": "Eddie Cochran - Milk Cow Blues (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B2LB8k48v-I" - }, - { - "title": "Eddie Cochran - Something Else (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WQuC9uQQGzY" - }, - { - "title": "Eddie Cochran - Sea Cruise (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uXqv-DfL7fM" - }, - { - "title": "Eddie Cochran - I'm Ready (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vU75mMiVxGk" - }, - { - "title": "Eddie Cochran - Cut Across Shorty (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dItqn5_zNzk" - }, - { - "title": "Echo & The Bunnymen - Lips Like Sugar", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dusty Springfield - How Can I Be Sure", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dusty Springfield - I Will Try Anything", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dusty Springfield - Losing You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Duran Duran - Mediterranea", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dusty Springfield - I Close My Eyes And Count To Ten", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Duran Duran - Sound Of Thunder", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Duran Duran - Friends of Mine", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Duran Duran - The Chauffeur", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Duran Duran - Careless Memories", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Duran Duran - Planet Earth", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Duran Duran - Reach Up For The Sunrise", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dr Hook - If I Said You Had A Beautiful Body", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dr Hook - When She Cries", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dr Hook - Cover Of The Rolling Stone", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dr Hook - Carry Me, Carrie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p16N8eCloR0" - }, - { - "title": "Dr Hook - Better Love Next Time", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Doug Stone - How Do I Get Off The Moon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "erNCtJpAdks" - }, - { - "title": "Doris Day - Please Don't Eat The Daisies (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fHNzX4mS9VM" - }, - { - "title": "Donovan - Sunshine Superman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hAN3gXmxAyc" - }, - { - "title": "Donovan - Season Of The Witch (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TVVpYLJI8yU" - }, - { - "title": "Donovan - Hurdy Gurdy Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WsIIpZTNvfI" - }, - { - "title": "Donovan - Catch The Wind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QTnsyELq-wg" - }, - { - "title": "Donny Osmond - I Can See Clearly Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rFYJJNGwdVg" - }, - { - "title": "Don Williams - Come A Little Closer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TzQo0cluLPY" - }, - { - "title": "Don Williams - You're My Best Friend (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QsQSsPGk45U" - }, - { - "title": "Don Williams - I Sing For Joy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vvgB9lNle5o" - }, - { - "title": "Don McLean - Castles In The Air (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TJUPuW-sMs0" - }, - { - "title": "Dolly Parton - Together You And I", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dolly Parton - Do I Ever Cross Your Mind", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dolly Parton - Mama Say A Prayer", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dolly Parton - Sandy's Song", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dolly Parton - Just Because I'm A Woman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dolly Parton - Applejack", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dolly Parton - Gypsy Joe and Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dolly Parton - In The Ghetto", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dj Sammy - We're In Heaven (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iBjArd8kIV4" - }, - { - "title": "Dixie Chicks - Goodbye Earl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9dDi-9Bryww" - }, - { - "title": "Dido - Thank You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wNxLKE1H_0s" - }, - { - "title": "Dido - My Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-afaI3L2-dE" - }, - { - "title": "Dido - Life For Rent (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6FxA0z5wFz4" - }, - { - "title": "Dido - Hunter (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "e81thgDwAhk" - }, - { - "title": "Dido - Here With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2CpA36rgia4" - }, - { - "title": "Diana Ross & Marvin Gaye - You Are Everything", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Diana Ross - All Of My Life", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Diana Ross - Surrender", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Diana Ross - Touch Me In The Morning", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Destiny's Child - Girl", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Destiny's Child - Lose My Breath", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Depeche Mode - Home", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Depeche Mode - Fly On The Windscreen", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Depeche Mode - Personal Jesus", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Depeche Mode - Strange Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Depeche Mode - See You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Depeche Mode - It's No Good", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Depeche Mode - Enjoy The Silence", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Depeche Mode - Barrel Of A Gun with Lyrics HD Vocal-Star Karaoke 4K", - "id": "IO8kOHqAEd8" - }, - { - "title": "Del Shannon - Nobody's Business (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "X2NlLJnmubU" - }, - { - "title": "Del Shannon - You Don't Know What You Got (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "X24I15DCnP4" - }, - { - "title": "Del Shannon - Why Don't You Tell Him (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UE91R7b5geI" - }, - { - "title": "Del Shannon - The Night Has A Thousand Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_A7Y-GiHPjA" - }, - { - "title": "Del Shannon - Runaway with Lyrics HD Vocal-Star Karaoke 4K", - "id": "qLb4-NVngeI" - }, - { - "title": "Del Shannon - Keep Searching with Lyrics HD Vocal-Star Karaoke 4K", - "id": "meFcf6Vzg-M" - }, - { - "title": "Def Leppard - Little Wing with Lyrics HD Vocal-Star Karaoke 4K", - "id": "b3cYQl7ERAc" - }, - { - "title": "Del Shannon - A Teenager In Love with Lyrics HD Vocal-Star Karaoke 4K", - "id": "duqczMAsKUE" - }, - { - "title": "Deep Purple - You Fool No One with Lyrics HD Vocal-Star Karaoke 4K", - "id": "pngRrCqU05o" - }, - { - "title": "Deep Purple - Highway Star with Lyrics HD Vocal-Star Karaoke 4K", - "id": "KWfS8SGoQTg" - }, - { - "title": "Dean Martin - If You Were The Only Girl In The World (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "f4lrUH1_X5A" - }, - { - "title": "Dean Martin - I've Grown Accustomed To Her Face (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RPepsmG2AMA" - }, - { - "title": "Dean Martin - Magic Is The Moonlight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rtyw_pnD-Hc" - }, - { - "title": "Dean Martin - The Tips Of My Fingers (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RYK_8WHeGtE" - }, - { - "title": "Dean Martin - The Story Of Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tyECx0XuvnY" - }, - { - "title": "Dean Martin - My Woman, My Woman, My Wife (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6AkYHBEyav0" - }, - { - "title": "Dean Martin - They Didn't Believe Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "t82PMb9aJ8I" - }, - { - "title": "Blackbear - Hot Girl Bummer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7nxqIJFAwyg" - }, - { - "title": "Dean Martin - I Can't Help Remembering You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uNwOWDZl8A8" - }, - { - "title": "Dean Martin - My One And Only Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1nbxOuOSRqE" - }, - { - "title": "Dean Martin - Come Back To Sorrento (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YFl8dO1arKM" - }, - { - "title": "Dean Martin - What's Yesterday (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KsMLVXhSAq8" - }, - { - "title": "Dean Martin - Just In Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mQWIxKSRuAE" - }, - { - "title": "Dean Martin - Belle Of Barcelona (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3UXPd14HUh0" - }, - { - "title": "Dean Martin - Peace On Earth Silent Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1Yy6Ey2DvGw" - }, - { - "title": "Dean Martin - You're Nobody Till Somebody Loves You (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "EEfHwEQKDGA" - }, - { - "title": "Dean Martin - When You're Smiling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5gi-RqCpgDI" - }, - { - "title": "Dean Martin - Volare (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vvZ1s90gM0A" - }, - { - "title": "Dean Martin - Stay With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "07v9abM4C_Q" - }, - { - "title": "Dean Martin - Rio Bravo (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fgoc46lsUYs" - }, - { - "title": "Dean Martin - Pennies From Heaven (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ctTbrBgCRkQ" - }, - { - "title": "Dean Martin - Papa Loves Mambo (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JJLLgXhMZvA" - }, - { - "title": "Dean Martin - Little Old Wine Drinker (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2jhat5NvrUg" - }, - { - "title": "Dean Martin - Baby It's Cold Outside (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uH68SrcK5Sc" - }, - { - "title": "Dean Martin - Angel Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ur7wvbwcR2Y" - }, - { - "title": "Dean Martin - All Of Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kGzDR3FkNGE" - }, - { - "title": "David Gray - Babylon with Lyrics HD Vocal-Star Karaoke 4K", - "id": "H11PEV-jNKc" - }, - { - "title": "David Essex - Stardust with Lyrics HD Vocal-Star Karaoke 4K", - "id": "KYTeloSEK_s" - }, - { - "title": "David Essex - Silver Dream Racer Machine with Lyrics HD Vocal-Star Karaoke 4K", - "id": "gxdsO9tZ2vo" - }, - { - "title": "David Essex - Rock On with Lyrics HD Vocal-Star Karaoke 4K", - "id": "T0HD1-q1Sjo" - }, - { - "title": "David Essex - Me And My Girl with Lyrics HD Vocal-Star Karaoke 4K", - "id": "ZeuO8mmMhd8" - }, - { - "title": "David Essex - Imperial Wizzard with Lyrics HD Vocal-Star Karaoke 4K", - "id": "qrsjk3ayhGY" - }, - { - "title": "David Essex - Bright Eyes with Lyrics HD Vocal-Star Karaoke 4K", - "id": "MZ38N07XoBM" - }, - { - "title": "David Cassidy - Ricky's Tune with Lyrics HD Vocal-Star Karaoke 4K", - "id": "eTdqdjsewGs" - }, - { - "title": "David Cassidy - Where Is The Morning with Lyrics HD Vocal-Star Karaoke 4K", - "id": "hSG6n2z6NR0" - }, - { - "title": "David Cassidy - One True Love with Lyrics HD Vocal-Star Karaoke 4K", - "id": "HnInnHi5y3k" - }, - { - "title": "David Bowie - Where Have All The Good Times Gone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1V7Lt6g_92U" - }, - { - "title": "David Bowie - Fame (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2Kp4j90sUOw" - }, - { - "title": "David Bowie - Strangers When We Meet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lFSvUJTpWO0" - }, - { - "title": "David Bowie - New Killer Star (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4DVQDL-CXEM" - }, - { - "title": "David Bowie - Magic Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7JYfjVAMGd0" - }, - { - "title": "David Bowie - Lady Stardust (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PukUdGcVVAA" - }, - { - "title": "David Bowie - Young Americans (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OJrOipK6hAY" - }, - { - "title": "David Bowie - Word On A Wing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L3LNZNPbCfA" - }, - { - "title": "David Bowie - Memory Of A Free Festival (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JXLDMroWgbY" - }, - { - "title": "David Bowie - Uncle Arthur (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gWk7KrGFb1o" - }, - { - "title": "David Bowie - Lady Grinning Soul (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RyIKJrlDRiM" - }, - { - "title": "David Bowie - An Occasional Dream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zSYOiMb-afs" - }, - { - "title": "David Bowie - As The World Falls Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PynqYgUJ7OM" - }, - { - "title": "Calum Scott - Dancing On My Own (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s3txjY-kRqI" - }, - { - "title": "David Bowie - The Man Who Sold The World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0masYMCDwMM" - }, - { - "title": "David Bowie - Oh! You Pretty Things (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "C93gNppsggM" - }, - { - "title": "Dave Clark Five - Any Way You Want It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vfc-cytNMpk" - }, - { - "title": "Dave Clark Five - Sha Na Na Na (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v5nWGmsRCxQ" - }, - { - "title": "Dave Clark Five - Do You Love Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f9PtyG7hiY8" - }, - { - "title": "Dave Clark Five - Catch Us If You Can (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OZxmbfEfU9g" - }, - { - "title": "Dave Clark Five - Can't You See That She's Mine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n0CPYKsCsI0" - }, - { - "title": "Daniel Powter - Love You Lately (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zzjPdiGsiXw" - }, - { - "title": "Daniel Bedingfield - I Gotta Get Through This (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RSiO0m7oARg" - }, - { - "title": "Daniel Bedingfield - Nothing Hurts Like Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gATQ76iD7W4" - }, - { - "title": "Daniel Bedingfield - Never Gonna Leave Your Side (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fKtoR7pt-aA" - }, - { - "title": "Culture Club - It's A Miracle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s4PaoCX1f0w" - }, - { - "title": "Cristal Gayle - When I Dream with Lyrics HD Vocal-Star Karaoke 4K", - "id": "q-H6yHPHbuE" - }, - { - "title": "Craig David - Rendezvous (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bO52dUnMj2g" - }, - { - "title": "Craig David - World Filled With Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "63xeWMhVrsY" - }, - { - "title": "Connie Francis - Three Good Reasons with Lyrics HD Vocal-Star Karaoke 4K", - "id": "ipxmau2nYLw" - }, - { - "title": "Connie Francis - Don't Ever Leave Me with Lyrics HD Vocal-Star Karaoke 4K", - "id": "YMWwNsK_4LM" - }, - { - "title": "Connie Francis - Frankie with Lyrics HD Vocal-Star Karaoke 4K", - "id": "46353McWors" - }, - { - "title": "Connie Francis - Mama with Lyrics HD Vocal-Star Karaoke 4K", - "id": "7sGgSZoxys8" - }, - { - "title": "Connie Francis - My Happiness with Lyrics HD Vocal-Star Karaoke 4K", - "id": "eQThB8xkwK4" - }, - { - "title": "Connie Francis - When The Boys Meet The Girls with Lyrics HD Vocal-Star Karaoke 4K", - "id": "TtOLvDRhjDo" - }, - { - "title": "Connie Francis - Three Coins with Lyrics HD Vocal-Star Karaoke 4K", - "id": "AXCsPY5U8JU" - }, - { - "title": "Connie Francis - Hollywood with Lyrics HD Vocal-Star Karaoke 4K", - "id": "qpdYSuGODd0" - }, - { - "title": "Connie Francis - For Mama with Lyrics HD Vocal-Star Karaoke 4K", - "id": "J3eQFG67S0M" - }, - { - "title": "Connie Francis - Among My Souvenirs with Lyrics HD Vocal-Star Karaoke 4K", - "id": "QkZ1ZolOkDo" - }, - { - "title": "Cliff Richard - Making History", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Connie Francis - Caroline Moon with Lyrics HD Vocal-Star Karaoke 4K", - "id": "4yuzkA_4-v4" - }, - { - "title": "Cliff Richard - Rip It Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - End Of The Show", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Fly Me To The Moon", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Since I Lost You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Why Wasn't I Born Rich", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - A Forever Kind Of Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Baby It's You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - 21st Century Christmas", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - In A Matter Of Moments", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Santa's List", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Blame It On The Bossa Nova", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Hey Mister Dream Maker", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Ocean Deep", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Somewhere Over The Rainbow", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Schoolboy Crush", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Just A Little Bit Too Late", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Constantly Karaoke", - "id": "Cliff Richard Karaoke Version" - }, - { - "title": "Cliff Richard - Fall In Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Wind Me Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - When The Girl In Your Arms", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Visions Karaoke", - "id": "Cliff Richard Karaoke Version" - }, - { - "title": "Cliff Richard - Travelling Light", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Throw Down A Line", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - The Next Time", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - The Minute You Are Gone", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - The Day I Met Marie", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Sing A Song Of Freedom", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "James Blunt - Cold (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J3AmAfiARLo" - }, - { - "title": "Cliff Richard - Power To All Of Our Friends", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billie Eilish - Everything I Wanted - Lyrics HD Vocal-Star Karaoke", - "id": "OGsvO0inYy4" - }, - { - "title": "Cliff Richard - On The Beach", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Nine Times Out Of Ten", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - My Kinda Life", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Miss You Nights", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Lucky Lips", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - It's All In The Game", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - It'll Be Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - In The Country", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - I Could Easily Fall In Love With You", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Cliff Richard - I Am Looking Out The Window", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - The Young Ones", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Goodbye Sam Hello Samantha", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Gee Whiz It's You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Fall In Love With You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Don't Talk To Him", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Do You Wanna Dance", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Devil Woman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cliff Richard - Blue turns to Grey", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "All My Love Karaoke", - "id": "Cliff Richard Karaoke Version" - }, - { - "title": "Cliff Richard - A Girl Like You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Chuck Berry - Back In The USA (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WwzC1qBOA8A" - }, - { - "title": "Chuck Berry - Sweet Little Sixteen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lDf3OMNW5cU" - }, - { - "title": "Chubby Checker - Twistin' USA (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VYvVIz9yInE" - }, - { - "title": "Chubby Checker - Johnny Be Good (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zKga7tYnuRQ" - }, - { - "title": "Christina Aguilera - Welcome (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uwUE_QOdXfQ" - }, - { - "title": "Christina Aguilera - Impossible (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_KBwG6RQzuE" - }, - { - "title": "Christina Aguilera - The Voice Within (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CJ9Mp0Pn9MA" - }, - { - "title": "Christina Aguilera - Carwash (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3zpM9wGs_Sc" - }, - { - "title": "Chris Rea - Till The Morning Sun Shines On My Love And Me (Karaoke Version) with Lyrics HD Vocal-Sta", - "id": "y2DakbcbbbE" - }, - { - "title": "Chris Rea - Josephine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6zX2bADmXqs" - }, - { - "title": "Chris Rea - I Can Hear Your Heartbeat (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "E4bKM91plDo" - }, - { - "title": "Chris Rea - Looking For The Summer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ffHxKMpWPiY" - }, - { - "title": "Chris Rea - Stainby Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lwIBfZ8px4A" - }, - { - "title": "Chris De Burgh - A Womans Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m27-1ZMwKzA" - }, - { - "title": "Chris De Burgh - The Words I Love You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q-dNnCe2UBs" - }, - { - "title": "Chris De Burgh - I Will Be Missing You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Bem473WUhV4" - }, - { - "title": "Cheryl Cole - Live Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LnlZBMq2Tfo" - }, - { - "title": "Cher - Heart Of Stone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8ZprVzI2bmI" - }, - { - "title": "Cheryl Cole - Rain On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Gx3L4L_gTyw" - }, - { - "title": "Cher - Don't Come Cryin' To Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PSFoUboFSmU" - }, - { - "title": "Cher - All Or Nothing & Monologue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VwjKq01jrkE" - }, - { - "title": "Cher - Love On A Rooftop (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Xl-YDMoI0KA" - }, - { - "title": "Cher - Emotional Fire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-mXlBZWCzPc" - }, - { - "title": "Cher - I Still Haven't Found What I'm Looking For (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "e6zd8tmnDts" - }, - { - "title": "Strong Enough Karaoke", - "id": "Cher Karaoke Version" - }, - { - "title": "Cher - Love Can Build A Bridge (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KHHaVr6OIWE" - }, - { - "title": "Cher - Love And Understanding (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1vug9454lvo" - }, - { - "title": "Cher - Just like Jesse James (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CmbSol30k7g" - }, - { - "title": "Cher - Bang Bang (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zImkBsix18U" - }, - { - "title": "Cher - All Or Nothing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bocdq5IG_1E" - }, - { - "title": "Cheeky Girls - Cheeky Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "W26euAWYJbc" - }, - { - "title": "Chas And Dave - Margate (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "V3YtDNJUDao" - }, - { - "title": "Chas And Dave - London Girls (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EJD-86fhOro" - }, - { - "title": "Chas And Dave - Gertcha (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cYUMam9N-lg" - }, - { - "title": "Charlie Rich - Nice N' Easy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wSxkli79FVA" - }, - { - "title": "Charley Pride - Kiss an Angel Good Morning (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rydEY4pneNE" - }, - { - "title": "Charley Pride - Crystal Chandeliers (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dw6fWRV5vD0" - }, - { - "title": "Celine Dion - Surprise Surprise Vocal Star Karaoke with Lyrics 4K", - "id": "d0hcB8r6h9k" - }, - { - "title": "Celine Dion - You and I Vocal Star Karaoke with Lyrics 4K", - "id": "szh_HosE_YA" - }, - { - "title": "Celine Dion - What A Wonderful World Vocal Star Karaoke with Lyrics 4K", - "id": "kVNLnXAUT0E" - }, - { - "title": "Celine Dion - The Prayer vocal Star Karaoke 4K", - "id": "1hWZ8uGPwjM" - }, - { - "title": "Celine Dion - The First Time I Ever Saw Your Face with Lyrics HD Vocal-Star 4K", - "id": "zQJxobaOhv0" - }, - { - "title": "Celine Dion - Tell Him with Lyrics HD Vocal-Star Karaoke 4K", - "id": "qSrMvndiSw8" - }, - { - "title": "Celine Dion - Sleep Tight with Lyrics HD Vocal-Star Karaoke 4K", - "id": "p1UrnMntL4w" - }, - { - "title": "Celine Dion - My Precious One with Lyrics HD Vocal-Star Karaoke 4K", - "id": "feTv_2bC5YI" - }, - { - "title": "Celine Dion - Miracle with Lyrics HD Vocal-Star Karaoke 4K", - "id": "AHIM_W_CvMc" - }, - { - "title": "Celine Dion - In Some Small Way with Lyrics HD Vocal-Star Karaoke 4K", - "id": "-gY4Oa11bGw" - }, - { - "title": "Celine Dion - If I Could with Lyrics HD Vocal-Star Karaoke 4K", - "id": "7GsXrf6wsVQ" - }, - { - "title": "Celine Dion - I am alive with Lyrics HD Vocal-Star Karaoke 4K", - "id": "SdBpIrzJF9E" - }, - { - "title": "Celine Dion - Come To Me with Lyrics HD Vocal-Star Karaoke 4K", - "id": "nunAU8S54kc" - }, - { - "title": "Celine Dion - Brahms Lullaby with Lyrics HD Vocal-Star Karaoke 4K", - "id": "USLdrNIMvW4" - }, - { - "title": "Celine Dion - Beautiful Boy with Lyrics HD Vocal-Star Karaoke 4K", - "id": "da9nE0FFviQ" - }, - { - "title": "Celine Dion - Baby Close Your Eyes with Lyrics HD Vocal-Star Karaoke 4k", - "id": "YaLlaQcKqYY" - }, - { - "title": "A Mother Prayer Karaoke", - "id": "Celine Dion Karaoke Version" - }, - { - "title": "Cat Stevens - Hard Headed Woman with Lyrics HD Vocal-Star Karaoke 4K", - "id": "RrCKkff9MIA" - }, - { - "title": "Cat Stevens - Another Saturday Night with Lyrics HD Vocal-Star Karaoke 4K", - "id": "CT9aEiOrbMk" - }, - { - "title": "DJ Casper - Cha Cha Slide with Lyrics HD Vocal-Star Karaoke 4K", - "id": "tQmR0K0HUlk" - }, - { - "title": "DJ Casper - Oops Upside Your Head with Lyrics HD Vocal-Star Karaoke 4K", - "id": "pfF7LQxDBBc" - }, - { - "title": "Cascada - Everytime We Touch with Lyrics HD Vocal-Star Karaoke 4K", - "id": "PzrLv0eZ3uQ" - }, - { - "title": "Cartoons - Everybody Sing That Song, Doo Dah with Lyrics HD Vocal-Star Karaoke 4K", - "id": "TTW0FBzTdOU" - }, - { - "title": "Carrie Underwood - I Told You So (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "t0pIZHMJ0Js" - }, - { - "title": "Carrie Underwood - Some Hearts (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8H0SAzDz344" - }, - { - "title": "Carpenters - Those Good Old Dreams (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-0t8JcOjMRg" - }, - { - "title": "Carpenters - Mr. Guder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OBGjLkFSY7o" - }, - { - "title": "Carpenters - A Place To Hide (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OuHkuOe0y_c" - }, - { - "title": "Carpenters - Crescent Noon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bpg9fbVPsPE" - }, - { - "title": "Candi Staton - The First Face I Want to See (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fHSxqrJ3CaE" - }, - { - "title": "Candi Staton - He is Coming Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2zCu0zT_pm4" - }, - { - "title": "Busted - Year 3000 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dPuFkbL2w8A" - }, - { - "title": "Buddy Holly - Valley Of Tears with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Mpua_BykuPk" - }, - { - "title": "Buddy Holly - What To Do with Lyrics HD Vocal-Star Karaoke 4K", - "id": "f32pyVQt4VE" - }, - { - "title": "Buddy Holly - That's What They Say with Lyrics HD Vocal-Star Karaoke 4K", - "id": "loakMJYRMLU" - }, - { - "title": "Buddy Holly - Midnight Shift with Lyrics HD Vocal-Star Karaoke 4K", - "id": "L7TMes5BYdU" - }, - { - "title": "Buddy Holly - Wishing with Lyrics HD Vocal-Star Karaoke 4K", - "id": "U3Pcus8Vdjo" - }, - { - "title": "Buddy Holly - Dearest with Lyrics HD Vocal-Star Karaoke 4K", - "id": "8mnlxgZ7jnk" - }, - { - "title": "Buddy Holly - I Am Gonna Set My Foot Down with Lyrics HD Vocal-Star Karaoke 4K", - "id": "bnhl5ni-NQc" - }, - { - "title": "Buddy Holly - Girl On My Mind with Lyrics HD Vocal-Star Karaoke 4K", - "id": "xmZhzOKE0m0" - }, - { - "title": "Buddy Holly - Rock Me Baby with Lyrics HD Vocal-Star Karaoke 4K", - "id": "i7sema-2-D0" - }, - { - "title": "Buddy Holly - You Are So Square But I Don't Care with Lyrics HD Vocal-Star Karaoke 4K", - "id": "QNPnCR6OE5Q" - }, - { - "title": "Buddy Holly - Ting A Ling with Lyrics HD Vocal-Star Karaoke 4K", - "id": "WoR9OaWPGBY" - }, - { - "title": "Buddy Holly - Words Of Love with Lyrics HD Vocal-Star Karaoke 4K", - "id": "3S3TQcYtoQw" - }, - { - "title": "Buddy Holly - True Love Ways with Lyrics HD Vocal-Star Karaoke 4K", - "id": "kP_mr6jkaEU" - }, - { - "title": "Buddy Holly - Think It Over with Lyrics HD Vocal-Star Karaoke 4K", - "id": "qTZOkvlD8TU" - }, - { - "title": "Buddy Holly - That Will Be The Day with Lyrics HD Vocal-Star Karaoke 4K", - "id": "t3bK7YeNRoU" - }, - { - "title": "Buddy Holly - Tell Me How with Lyrics HD Vocal-Star Karaoke 4K", - "id": "aQwh-KoOAaA" - }, - { - "title": "Buddy Holly - Sheila with Lyrics HD Vocal-Star Karaoke 4K", - "id": "rq7eqI5D1Ic" - }, - { - "title": "Buddy Holly - Reminiscing with Lyrics HD Vocal-Star Karaoke 4K", - "id": "atG1eSQ4SPY" - }, - { - "title": "Buddy Holly - Ready Teddy with Lyrics HD Vocal-Star Karaoke 4K", - "id": "mrF5xGoD1SA" - }, - { - "title": "Buddy Holly - Rave On with Lyrics HD Vocal-Star Karaoke 4K", - "id": "NuTQZuSTy8s" - }, - { - "title": "Buddy Holly - Oh Boy with Lyrics HD Vocal-Star Karaoke 4K", - "id": "QE92an2hmGA" - }, - { - "title": "Buddy Holly - Not Fade Away with Lyrics HD Vocal-Star Karaoke 4K", - "id": "3ezDDzry0A0" - }, - { - "title": "Buddy Holly - Maybe Baby with Lyrics HD Vocal-Star Karaoke 4K", - "id": "P0tsPpYbaLA" - }, - { - "title": "Buddy Holly - Love Is Strange with Lyrics HD Vocal-Star Karaoke 4K", - "id": "4yitzaVvwDs" - }, - { - "title": "Buddy Holly - Listen To Me with Lyrics HD Vocal-Star Karaoke 4K", - "id": "rm7hNFMmfDg" - }, - { - "title": "Buddy Holly - Last Night with Lyrics HD Vocal-Star Karaoke 4K", - "id": "uVvWgAtdfy8" - }, - { - "title": "Buddy Holly - It's So Easy with Lyrics HD Vocal-Star Karaoke 4K", - "id": "B6PSRl3rzhU" - }, - { - "title": "Buddy Holly - It Doesn't Matter Anymore with Lyrics HD Vocal-Star Karaoke 4K", - "id": "YMRs8cRSUyU" - }, - { - "title": "Buddy Holly - I'm Gonna Love You Too with Lyrics HD Vocal-Star Karaoke 4K", - "id": "M5G4Ur8oeg4" - }, - { - "title": "Buddy Holly - I Am Looking For Someone with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Kd6JuTsTNgg" - }, - { - "title": "Buddy Holly - Fool's Paradise with Lyrics HD Vocal-Star Karaoke 4K", - "id": "2p_CL9q9UHs" - }, - { - "title": "Buddy Holly - Everyday with Lyrics HD Vocal-Star Karaoke 4K", - "id": "4PdTYRBz-7E" - }, - { - "title": "Buddy Holly - Bo Didley with Lyrics HD Vocal-Star Karaoke 4K", - "id": "eI-fn_st6Vk" - }, - { - "title": "Bucks Fizz - If You Are Right (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WcWYSa4YqTs" - }, - { - "title": "Bryan Ferry - Smoke Gets In Your Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bPccSz0SIQs" - }, - { - "title": "Bryan Ferry - The Times They Are A Changing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bNIaCZU4BaY" - }, - { - "title": "Bryan Ferry - The In Crowd (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CMnIwTzw3ws" - }, - { - "title": "Bryan Ferry - Dance Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AL1YjS8UF_M" - }, - { - "title": "Bryan Adams - A Little Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M9Q4CZlj4CQ" - }, - { - "title": "Have You Ever Really Loved A Woman Karaoke", - "id": "Bryan Adams Karaoke Version" - }, - { - "title": "Bryan Adams - Somebody Karaoke Version with Lyrics HD Vocal-Star Karaoke", - "id": "hJB-0KW0tJY" - }, - { - "title": "Bruno Mars - Count On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1CUdIfZi3Zo" - }, - { - "title": "Bruce Springsteen - Blood Brothers with Lyrics HD Vocal-Star Karaoke 4K", - "id": "YzpIC4F2J5w" - }, - { - "title": "Arizona Zervas - Roxanne (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "30fZVSBPMN8" - }, - { - "title": "Bruce Springsteen - The Ghost Of Tom Joad with Lyrics HD Vocal-Star Karaoke 4K", - "id": "HcziwcjSGp8" - }, - { - "title": "Bruce Springsteen - Drive All Night with Lyrics HD Vocal-Star Karaoke 4K", - "id": "9e38R0e-RXw" - }, - { - "title": "Bruce Springsteen - Racin In The Streets with Lyrics HD Vocal-Star Karaoke 4K", - "id": "k4qqoRYe8Hk" - }, - { - "title": "Bruce Springsteen - Jungleland with Lyrics HD Vocal-Star Karaoke 4K", - "id": "QwRkgiIFvyw" - }, - { - "title": "Bruce Springsteen - Wreck On The Highway with Lyrics HD Vocal-Star Karaoke 4K", - "id": "oDP1ssafc-o" - }, - { - "title": "Bruce Springsteen - Tomorrow Never Knows with Lyrics HD Vocal-Star Karaoke 4K", - "id": "RsHAl0sKs6U" - }, - { - "title": "Bruce Springsteen - Tenth Avenue Freeze Out with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Oxs0uXIiFJU" - }, - { - "title": "Bruce Springsteen - Jesus Was An Only Son with Lyrics HD Vocal-Star Karaoke 4K", - "id": "U9zF6Wyxxrg" - }, - { - "title": "Bruce Springsteen - I Wanna Marry You with Lyrics HD Vocal-Star Karaoke 4K", - "id": "pfJu9Aq-fsc" - }, - { - "title": "Brenda Lee - Why Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke 4K", - "id": "GID-Xkb1lXM" - }, - { - "title": "Brenda Lee - I am Sorry with Lyrics HD Vocal-Star Karaoke 4K", - "id": "KbesQuPNnHY" - }, - { - "title": "Brenda Lee - Fool Number One with Lyrics HD Vocal-Star Karaoke 4K", - "id": "sB265rPs4R0" - }, - { - "title": "Brenda Lee - All Alone I Am with Lyrics HD Vocal-Star Karaoke 4K", - "id": "r7zEkJ_lJK4" - }, - { - "title": "Brenda Lee - Sweet Nothing with Lyrics HD Vocal-Star Karaoke 4K", - "id": "LTufCAca72c" - }, - { - "title": "Brad Paisley - Anything Like Me with Lyrics HD Vocal-Star Karaoke 4K", - "id": "zFpUczgrXYI" - }, - { - "title": "Brad Paisley - You Need A Man Around Here with Lyrics HD Vocal-Star Karaoke 4K", - "id": "L6-kKoyEK14" - }, - { - "title": "Brad Paisley - I'll Take You Back with Lyrics HD Vocal-Star Karaoke 4K", - "id": "fmqP99uQyz0" - }, - { - "title": "Brad Paisley - Easy Money with Lyrics HD Vocal-Star Karaoke 4K", - "id": "DswZWS9Uk8Q" - }, - { - "title": "Brad Paisley - Wrapped Around with Lyrics HD Vocal-Star Karaoke 4K", - "id": "S-6S34Mt6Yo" - }, - { - "title": "Brad Paisley - Who Needs Pictures with Lyrics HD Vocal-Star Karaoke 4K", - "id": "uPPPhQHVfhU" - }, - { - "title": "Brad Paisley - We Danced with Lyrics HD Vocal-Star Karaoke 4K", - "id": "URBHGLG2j3s" - }, - { - "title": "Brad Paisley - Time Well Wasted with Lyrics HD Vocal-Star Karaoke 4K", - "id": "c8un5JIfVuw" - }, - { - "title": "Brad Paisley - Two People Fell In Love with Lyrics HD Vocal-Star Karaoke 4K", - "id": "sFPlTDmlUoA" - }, - { - "title": "Brad Paisley - She's Everything with Lyrics HD Vocal-Star Karaoke 4K", - "id": "1bK34qZwckU" - }, - { - "title": "Brad Paisley - Out In The Parkin Lot with Lyrics HD Vocal-Star Karaoke 4K", - "id": "0bVPKDVRuO4" - }, - { - "title": "Brad Paisley - Mud On The Tires with Lyrics HD Vocal-Star Karaoke 4K", - "id": "QvA49x4Gmc0" - }, - { - "title": "Brad Paisley - Me Neither with Lyrics HD Vocal-Star Karaoke 4K", - "id": "cuUq9Cy9DDk" - }, - { - "title": "Brad Paisley - Little Moments with Lyrics HD Vocal-Star Karaoke 4K", - "id": "b3iQ9Txqy1M" - }, - { - "title": "Brad Paisley - I Wish You'd Stay (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "59HbCbiiprQ" - }, - { - "title": "Brad Paisley - I'm Gonna Miss Her with Lyrics HD Vocal-Star Karaoke 4K", - "id": "WV0QDKSIMck" - }, - { - "title": "Brad Paisley - He Didn't Have To Be (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9z0QaHWGvb0" - }, - { - "title": "Brad Paisley - Celebrity with Lyrics HD Vocal-Star Karaoke 4K", - "id": "j3KdyRp-dSw" - }, - { - "title": "Brad Paisley - Alcohol with Lyrics HD Vocal-Star Karaoke 4K", - "id": "hdvahdS07bw" - }, - { - "title": "Boyzone - You Need Me with Lyrics HD Vocal-Star Karaoke 4K", - "id": "gkzeAGgwylE" - }, - { - "title": "Boy George - Same Thing In Reverse (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Oh2WDr9YJaM" - }, - { - "title": "Boy George - Miss Me Blind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "shcHOE-KRtg" - }, - { - "title": "Bonnie Tyler - Lost In France (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fUkChQl1m2U" - }, - { - "title": "Bonnie Tyler - Have You Ever Seen The Rain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8XGm5gPHcag" - }, - { - "title": "Bobby Vee - Just Keep It Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-wD4PuJMLz4" - }, - { - "title": "Bobby Vee - My Girl - Hey Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "K5o_4wmyhfo" - }, - { - "title": "Bobby Vee - Forever Kind Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BYb9J4jY8Io" - }, - { - "title": "Bobby Vee - Holly Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "D8aPFV0u9IQ" - }, - { - "title": "Bobby Vee - Venus In Blue Jeans (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kUGyOwoyBzc" - }, - { - "title": "Bobby Vee - The Night Has A Thousand Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fVR5iUaAd44" - }, - { - "title": "Bobby Vee - Run To Him (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J1pljMXAmwo" - }, - { - "title": "Bobby Vee - Baby Face (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7Fn4q2SnGjs" - }, - { - "title": "Bobby Darin - The Other Half Of Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DuifEfomqBM" - }, - { - "title": "Bobby Darin - As Long As I'm Singing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vo-ODtNtyQk" - }, - { - "title": "Bobby Darin - If I Were A Carpenter (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8z5wd838dlo" - }, - { - "title": "Bobby Darin - That Lucky Old Sun (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EhLZr0LWje0" - }, - { - "title": "Bobby Darin - Sunday In New York (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8vLqW9Dxtr4" - }, - { - "title": "Bobby Darin - You'll Never Know Karaoke Version with Lyrics HD Vocal-Star Karaoke", - "id": "U99Wr-IZkic" - }, - { - "title": "Bob Marley - Is This Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hx5fptEdYbE" - }, - { - "title": "Bob Marley - Satisfy My Soul (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nfltKdPTm_M" - }, - { - "title": "Bob Dylan - Tangled Up In Blue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "udAwkLjZLKs" - }, - { - "title": "Bruce Springsteen - Hungry Heart with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Cj4-DTFMe24" - }, - { - "title": "Bob Dylan - A Hard Rain It's Going To Fall (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CxYEXDAqJ4A" - }, - { - "title": "Bob Dylan - Forever Young (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ndcsl35Nw90" - }, - { - "title": "Blue - Capture Your Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qVYoEpUsniE" - }, - { - "title": "Blue - Sorry Seems To Be The Hardest Word (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UtQyr1nq__Q" - }, - { - "title": "Blondie - Heart Of Glass with Lyrics HD Vocal-Star Karaoke 4K", - "id": "-DN-I39JeDE" - }, - { - "title": "Black Sabbath - Iron Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f0nZ0AbY93I" - }, - { - "title": "Blondie - Denis with Lyrics HD Vocal-Star Karaoke 4K", - "id": "zWQdNycXw8Y" - }, - { - "title": "Black Sabbath - War Pigs (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "k4RWfbsa850" - }, - { - "title": "Ed Sheeran, Camila Cabello, Cardi B - South of the Border - with Lyrics Vocal-Star", - "id": "l_EwcxBydts" - }, - { - "title": "Lascel Woods - It's All Coming Back To Me - UK Karaoke World Championships 2018", - "id": "RegGbtP4nGQ" - }, - { - "title": "Jenny Ball - The Show Must Go On - UK Karaoke World Championships 2018", - "id": "ApsA2HqchxA" - }, - { - "title": "Black Sabbath - Sweet Leaf (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "37EFKA2sOpk" - }, - { - "title": "Black Lace - Agadoo (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jFbQqpvQbWY" - }, - { - "title": "Black Eyed Peas - My Humps (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w4jkxi5Pmps" - }, - { - "title": "Black Eyed Peas - Pump It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s082npiHRh0" - }, - { - "title": "Black Eyed Peas - Don't Lie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "exJMnPnPKVo" - }, - { - "title": "Black Eyed Peas - Shut Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hFfIMpbmNv4" - }, - { - "title": "Black Eyed Peas - Hey Mama (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hgjagJU6TME" - }, - { - "title": "Bjork - Who Is It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "j3ElJhggy6o" - }, - { - "title": "Billy Ray Cyrus - Country As Can Be (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SwhfzTRcb58" - }, - { - "title": "Billy Joel - Just The Way You Are", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Joel - Rosalinda's Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1GOM8xXd7nk" - }, - { - "title": "Billy Joel - Lullabye", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Travis Scott - Butterfly Effect (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "egDoxLoZJ_Y" - }, - { - "title": "Billy Joel - James With Lyrics HD Vocal-Star Karaoke 4K", - "id": "StVxvTGrHVk" - }, - { - "title": "Billy Joel - Honesty With Lyrics HD Vocal-Star Karaoke 4K", - "id": "qnMTxQIXAMk" - }, - { - "title": "Billy Idol - L. A. Woman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Idol - Flesh for Fantasy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Idol - Mony Mony With Lyrics HD Vocal-Star Karaoke 4K", - "id": "j1CWp4CcVfg" - }, - { - "title": "Billy Fury - Beyond The Shadow Of A Doubt", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Billy Fury - What Do You Think You're Doing Of", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Billy Fury - Am I Blue", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Fury - Nothin' Shakin' But The Leaves On The Trees With Lyrics HD Vocal-Star Karaoke", - "id": "ecsEKh_9HII" - }, - { - "title": "Billy Fury - I'll Never Fall In Love Again With Lyrics HD Vocal-Star Karaoke 4K", - "id": "8I6VK74Nmkk" - }, - { - "title": "Billy Fury - Where Do You Run With Lyrics HD Vocal-Star Karaoke 4K", - "id": "WRC-xOHvItU" - }, - { - "title": "Billy Fury - Our Day Will Come With Lyrics HD Vocal-Star Karaoke 4K", - "id": "BL3S-2smDSQ" - }, - { - "title": "Billy Fury - My Christmas Prayer With Lyrics HD Vocal-Star Karaoke 4K", - "id": "DZFYSPyHVA8" - }, - { - "title": "Billy Fury - You're Having The Last Dance With Me With Lyrics HD Vocal-Star 4K", - "id": "na9OgEIk7jM" - }, - { - "title": "Billy Fury - The Chapel On The Hill With Lyrics HD Vocal-Star Karaoke 4K", - "id": "iQFNt1FzuPk" - }, - { - "title": "Billy Fury - Play It Cool", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Fury - My Advice With Lyrics HD Vocal-Star Karaoke 4K", - "id": "BsU_gZXLsk4" - }, - { - "title": "Billy Fury - Kansas City Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "CMejl70Bvcc" - }, - { - "title": "Billy Fury - I've Got A Horse", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Fury - I'll Show You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Fury - Don't Jump Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "OesnVWnnQYo" - }, - { - "title": "Billy Fury - Bumble Bee Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "-RE5R0B8khw" - }, - { - "title": "Billy Fury - A Million Miles From You Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "9koCgj7Y3uM" - }, - { - "title": "Billy Fury - You're Swell Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "V2BDAK_kVpo" - }, - { - "title": "Billy Fury - Wonderous Place Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "kMvt3b7pJtU" - }, - { - "title": "Billy Fury - Well Alright Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "vAInBf0RULc" - }, - { - "title": "Billy Fury - Venus In Blue Jeans (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f45_c43CgCU" - }, - { - "title": "Billy Fury - Somebody Else's Girl Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "lROYFf7VFvg" - }, - { - "title": "Billy Fury - Running Around Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "vkbJeMLarGA" - }, - { - "title": "Billy Fury - Run To My Loving Arms Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "H21z1TP3Fx4" - }, - { - "title": "Billy Fury - Once Upon A Dream Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "gQrtwMwflis" - }, - { - "title": "Billy Fury - Maybe Tomorrow Karaoke Song With Lyrics HD Vocal-Star Karaoke Version", - "id": "U8qR5hZ8h7M" - }, - { - "title": "Billy Fury - Magic Eyes Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "SBWHxDlK0dU" - }, - { - "title": "Billy Fury - Loving You Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "C99uZXV5UCk" - }, - { - "title": "Billy Fury - Love Or Money Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "xW1zYiT9z9o" - }, - { - "title": "Billy Fury - Like I've Never Been Gone Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "wxLz4BLO19I" - }, - { - "title": "Billy Fury - Let Me Go Lover Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "b1r9u8Yj5kU" - }, - { - "title": "Billy Fury - Last Night Was Made For Love Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "sM3PZF5I5ro" - }, - { - "title": "Billy Fury - It's Only Make Believe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BHjeh_C_z0k" - }, - { - "title": "Billy Fury - In My Room Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "3BoVB9MUVZU" - }, - { - "title": "Billy Fury - I'd Never Find Another You Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "Ci4VnjB9ZRY" - }, - { - "title": "Billy Fury - I Will Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "UKWZsPtlMaQ" - }, - { - "title": "Billy Fury - I Am Lost Without You Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "ECxas60fqyo" - }, - { - "title": "Billy Fury - Heartbeat", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Fury - Halfway To Paradise", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Fury - Forget Him Karaoke Version With Lyrics Vocal-Star", - "id": "gHm26RHUXn4" - }, - { - "title": "Billy Fury - Don't Leave Me This Way", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Fury - Don't Be Cruel Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "6LXh5RNgIps" - }, - { - "title": "Billy Fury - Do You Really Love Me Too Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "mMV-1ACni9I" - }, - { - "title": "Billy Fury - Collette Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "k5cHHuemzjo" - }, - { - "title": "Billy Fury - Candy Kisses Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "K4GYkSMrUhM" - }, - { - "title": "Billy Fury - Because Of Love Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "jZgra80pkMg" - }, - { - "title": "Billy Fury - Be Mine Tonight Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "hf5uFz6jl50" - }, - { - "title": "Billy Fury - All My Hopes Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "rZ-9Qz8H3h0" - }, - { - "title": "Billy Fury - A Thousand Stars Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "OPUbJCzujTk" - }, - { - "title": "Billy Joel - I've Loved These Days Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "BCSyeOVGHNA" - }, - { - "title": "Billy Joel - Movin' Out Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "3jbdEmxlvSo" - }, - { - "title": "Billie Jo Spears โ€“ Which Way You Goin' Billy Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "e9GWtb9KdAs" - }, - { - "title": "Billie Jo Spears - Queen Of The Silver Dollar Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "ZLqZnB8cwEQ" - }, - { - "title": "Bill Medley - I Surrender Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "9L_55as_vNk" - }, - { - "title": "Bill Haley And The Comets - Rock Around The Clock Karaoke Song with Lyrics Vocal-Star Version", - "id": "HSdsOa7hF34" - }, - { - "title": "Bill Haley And The Comets - Rock With Me Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "oX-wj7-B-3Q" - }, - { - "title": "Beyonce - Ave Maria Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "U2OSgTmM6GE" - }, - { - "title": "Beyonce - Speechless Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "_ydseLpirRk" - }, - { - "title": "Beyonce - Irreplaceable Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "WOVpgDwRECE" - }, - { - "title": "Beyonce - Naughty Girl Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "a4FOlW_BE34" - }, - { - "title": "Beyonce - Baby Boy Karaoke Song With Lyrics HD Vocal-Star Karaoke Version", - "id": "MUaKgXMV9BY" - }, - { - "title": "Beyonce feat. Slim Thug - Check On It Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "W-vYcFNMjNg" - }, - { - "title": "Beyonce - Broken Hearted Girl Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "qYIG0VYllGs" - }, - { - "title": "Bette Midler - Raise The Roof Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "U_g1B7jCpso" - }, - { - "title": "Bette Midler - Mr Rockefeller Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "TTrRLNSZujk" - }, - { - "title": "Bette Midler - Let Me Drive Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "vqZC8YO6Fn8" - }, - { - "title": "Bette Midler - My Knight In Black Leather (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gNwZOsGTQ4Y" - }, - { - "title": "Bette Midler - Is It Love Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "KyNFLPK9T4E" - }, - { - "title": "Bette Midler - Cool Yule Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "pEJTzPr9uV8" - }, - { - "title": "Bette Midler - One Monkey Don't Stop No Show Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "BTKBPzSHfPc" - }, - { - "title": "Bette Midler - I Am A Woman Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "01yyEWGvSZo" - }, - { - "title": "Bette Midler - He's A Tramp Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "wJZRj2HLJL4" - }, - { - "title": "Bette Midler - Big Spender Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "oj8_xCpXL3A" - }, - { - "title": "Bette Midler - Fever Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "FGbTnCmtUdc" - }, - { - "title": "Ben E. King - First Taste Of Love Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "-MNizmC84qc" - }, - { - "title": "Belinda Carlisle - Mad About You Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "zvZaxpO2HBA" - }, - { - "title": "Beautiful South - Woman In The Wall Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "Xwy7RJ9MuZ0" - }, - { - "title": "Beautiful South - Let Go With The Flow Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "acHBasbhE08" - }, - { - "title": "Beatles - Help Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "GIVKuuo_ZK4" - }, - { - "title": "BB King and Eric Clapton - Rock Me Baby Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "0DwkFZFX7ms" - }, - { - "title": "BB King - The Thrill Is Gone Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "t22gJYaoF1o" - }, - { - "title": "BB King - Is You Is Or Is You Ain't Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "ihOEgXhfECA" - }, - { - "title": "Bay City Rollers - Be My Baby Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "BGiN2FuI-EQ" - }, - { - "title": "Bay City Rollers - Money Honey Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "iOmBjWPJN74" - }, - { - "title": "Bay City Rollers - The Way I Feel Tonight Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "-NCxjMWitpc" - }, - { - "title": "Bay City Rollers - Remember Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "V8cya4twGzk" - }, - { - "title": "Bay City Rollers - All Of Me Loves All Of You Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "kOi56-JYzgQ" - }, - { - "title": "Bay City Rollers - The Bump Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "imhgvGSdAAE" - }, - { - "title": "Barry Manilow - It's All Behind Us Now Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "PGrOCQVfqS4" - }, - { - "title": "Barry Manilow - Another Life Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "tWU2phbLQaA" - }, - { - "title": "Barry Manilow - You Begin Again Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "YPC7vcSrM3I" - }, - { - "title": "Barry Manilow - When I Wanted You Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "tfofkcDNpB8" - }, - { - "title": "Barry Manilow - If I Can Dream Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "eRZ__PH_27s" - }, - { - "title": "Barry Manilow - Can't Take My Eyes off You Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "wFD41Zv52tI" - }, - { - "title": "Barry Manilow - Bermuda Triangle Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "_-XuZqPUbxg" - }, - { - "title": "Barry Manilow - Sunday Father Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "jiQdoX8iCHs" - }, - { - "title": "Barry Manilow - Losing Touch Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "Dz0IeMY1RpM" - }, - { - "title": "Barbra Streisand - Two People Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "ezApBAS-PrQ" - }, - { - "title": "Barbra Streisand - Here We Are At Last Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "4wp8POcq7ck" - }, - { - "title": "Take That - The Garden (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XfK2PMdTWxM" - }, - { - "title": "The Wanted - Show Me Love (America) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wYqcEZYrPtw" - }, - { - "title": "Pocahontas - Colours Of The Wind Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "SieyeylIhlw" - }, - { - "title": "Barbra Streisand - Somewhere Karaoke Song with Lyrics Vocal-Star Karaoke Version", - "id": "jrZA8b0ICS8" - }, - { - "title": "Barbra Streisand - Make Our Garden Grow Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "W2gcKn3m81s" - }, - { - "title": "Barbra Streisand - Heart Don't Change My Mind Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "dyjuj4BRK3M" - }, - { - "title": "Barbra Streisand - Jubilation (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L6VRGPhrHX0" - }, - { - "title": "Barbra Streisand - Love In The Afternoon Karaoke Song With Lyrics Vocal-Star Karaoke Version", - "id": "mkixUh0TdT4" - }, - { - "title": "Barbra Streisand - Some Good Things Never Last (Karaoke)", - "id": "p-qiscv-WVk" - }, - { - "title": "Barbra Streisand - Love Light (Karaoke)", - "id": "WjCfynDKW7I" - }, - { - "title": "Barbra Streisand - You And Me For Always (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "eLk6KhHNJgQ" - }, - { - "title": "Barbra Streisand - One More Time Around (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cpHq1JngnJI" - }, - { - "title": "Barbra Streisand - Never Give Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U0rCzUs3w9w" - }, - { - "title": "Barbra Streisand - The Best Thing You've Ever Done (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "Cqmj5ylC42I" - }, - { - "title": "Barbra Streisand - On My Way To You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Jkmt0D9Lb5E" - }, - { - "title": "Barbra Streisand - Niagara (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jNY91Uzf0o4" - }, - { - "title": "Barbra Streisand - Don't Believe What You Read (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2VUln0zPDyA" - }, - { - "title": "Barbra Streisand - Emotion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tS-H6HGNwSg" - }, - { - "title": "Barbra Streisand - Superman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2y_S4T1ZqaM" - }, - { - "title": "Barbra Streisand - Time Machine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bQ7foOwbOXo" - }, - { - "title": "Barbra Streisand - The Places You Find Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O-BKSEOrIbA" - }, - { - "title": "Barbra Streisand - When I Dream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JN9uVxLuLjA" - }, - { - "title": "Barbra Streisand - The Way We Were (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R04tQ1kGPCo" - }, - { - "title": "Barbra Streisand - Whose Problem Am I (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CTFbwdSjMR0" - }, - { - "title": "Barbra Streisand - Best I Could (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IkE8khpXOtQ" - }, - { - "title": "Barbra Streisand - Make It Like A Memory (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RMnoSDAuWos" - }, - { - "title": "Barbra Streisand - Love Comes From Unexpected Places (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "-qqYCJfe41Y" - }, - { - "title": "Barbra Streisand - Nice And Easy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7bqoFje5i2E" - }, - { - "title": "Barbra Streisand - The Main Event (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jwbGM_JhLrw" - }, - { - "title": "Barbra Streisand - Avinu Malkeinu (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TQVQ_WeWw8Q" - }, - { - "title": "Barbra Streisand - Queen Bee (Karaoke Version)", - "id": "gMwVy5VXwd4" - }, - { - "title": "Woman In Love Karaoke", - "id": "Barbra Streisand Karaoke Version" - }, - { - "title": "Barbra Streisand - Stoney End (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MX24iWC2dI8" - }, - { - "title": "Barbra Streisand - People (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-vVnk4TdGeY" - }, - { - "title": "Barbra Streisand - My Heart Belongs To Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KtI5hjYZhX0" - }, - { - "title": "Post Malone, Ozzy Osbourne, Travis Scott - Take What You Want - Lyrics HD", - "id": "WkgPOsnJy84" - }, - { - "title": "Barbra Streisand - Evergreen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CX63eRYohlc" - }, - { - "title": "Barbra Streisand - Stranger In A Strange Land (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UyylVX0n9eE" - }, - { - "title": "Bananarama - I Heard A Rumor (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f1jMZwPiOy8" - }, - { - "title": "Bananarama - I Don't Care (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BHEjZSTyp9c" - }, - { - "title": "Baha Men - Move It Like This (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8OWrprt4Vgk" - }, - { - "title": "Bad Company - Can't Get Enough (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "daSFv6uU8OI" - }, - { - "title": "Bad Company - Shooting Star (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bGdvereYt_w" - }, - { - "title": "Bad Company - Movin On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aJPaeCxvxUw" - }, - { - "title": "Bad Company - Rock Steady (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "liiLdsK1um0" - }, - { - "title": "Bad Company - Rock And Roll Fantasy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OO3k9T2Qq0w" - }, - { - "title": "Bad Company - Ready For Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RdfS5OtEHt0" - }, - { - "title": "Bad Company - One Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9oGqyPkoJYA" - }, - { - "title": "Bad Company - Feel Like Making Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y4bYaIH1n98" - }, - { - "title": "Bad Company - Bad Company (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FRDkla6ek8I" - }, - { - "title": "Backstreet Boys - What Makes You Different (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0UK4wpfZVLE" - }, - { - "title": "Bachman Turner Overdrive - Taking Care Of Business (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "iimllQ-huyE" - }, - { - "title": "Bachman Turner Overdrive - Roll On Down The Highway (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "q7bOo2Uc60M" - }, - { - "title": "Bachman Turner Overdrive - Let It Ride (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3FepjWQTeLs" - }, - { - "title": "Bachelors - Ramona (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PtLCuuU5Sl0" - }, - { - "title": "Bachelors - Love Me With All Of Your Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f4CCkV1d9JI" - }, - { - "title": "Bachelors - I Wouldn't Trade You For The World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jlLgfpr5p7I" - }, - { - "title": "Bachelors - Chapel In The Moonlight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KTbEuxNAL7Y" - }, - { - "title": "Babybird - You're Gorgeous (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fyRN_LGpHDk" - }, - { - "title": "Avril Lavigne - Who Knows (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1YpGmDG4HjU" - }, - { - "title": "Avril Lavigne - Take Me Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0j5c0N3pLxQ" - }, - { - "title": "Avril Lavigne - My Happy Ending (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zOzw1rizEQg" - }, - { - "title": "Avril Lavigne - Don't Tell Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Zhz3U44o1y8" - }, - { - "title": "Avril Lavigne - Nobody's Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qbthZXRIIlw" - }, - { - "title": "Atomic Kitten - Someone Like Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nY2DBYQTwvo" - }, - { - "title": "Atomic Kitten - If You Come To Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L1FDOoRPuKw" - }, - { - "title": "Ashlee Simpson - L.O.V.E (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gpRt4oXBfCA" - }, - { - "title": "Ashlee Simpson - Boyfriend (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "19enfVjqaXs" - }, - { - "title": "Ashlee Simpson - La La (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iC0WFfozLxY" - }, - { - "title": "Ashlee Simpson - Surrender (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZgX1rNLudCw" - }, - { - "title": "Ashlee Simpson - Love Makes The World Go Round (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jmowoFcN_pA" - }, - { - "title": "Ashlee Simpson - Giving It All Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WXuFyAhvXYM" - }, - { - "title": "Ashlee Simpson - Autobiography (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sHwAAED_83c" - }, - { - "title": "Dr. Jones Karaoke", - "id": "Aqua Karaoke Version" - }, - { - "title": "Aqua - Cartoon Heroes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Aqua - Candyman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Annie Lennox - Wonderful", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Anne Murray - Hey What About Me", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - You Won't See Me", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - You Needed Me", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - Snowbird", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - Shadows In The Moonlight", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - Love Song", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - Just One Look", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - Just Another Woman In Love (Karaoke Version)", - "id": "di_flv_-qiU" - }, - { - "title": "Anne Murray - I Just Fall In Love Again", - "id": "With Lyrics HD Vocal Star 4K" - }, - { - "title": "Anne Murray - How Great Thou Art", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - He Thinks I Still Care", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - Daydream Believer (KARAOKE)", - "id": "S9tRufUSkt0" - }, - { - "title": "Anne Murray - Danny's Song", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - Broken Hearted Me", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Anne Murray - Bridge Over Troubled Water (KARAOKE)", - "id": "j8piHtVRUhg" - }, - { - "title": "Anne Murray - Another Sleepless Night (KARAOKE)", - "id": "rvbgCXsrxNE" - }, - { - "title": "Andy Williams - It's So Easy (KARAOKE)", - "id": "xY77WZSTs78" - }, - { - "title": "Andy Williams - The Bells Of St. Mary's (KARAOKE)", - "id": "FiJ-aOpnspw" - }, - { - "title": "Andy Williams - O Holy Night (KARAOKE)", - "id": "Fb-cpJbpytA" - }, - { - "title": "Andy Williams - Up Up And Away", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Andy Williams - Happy Heart", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Andy Williams - Tammy", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Andrea Bocelli And Marta Sanchez - Vivo Por Ella (Karaoke Version)", - "id": "T6G-waSTh44" - }, - { - "title": "Anastacia - Love Is A Crime (Karaoke Version)", - "id": "TMZG3G0EJDI" - }, - { - "title": "Anastasia - At The Beginning (Karaoke Version)", - "id": "QUgVFAemITw" - }, - { - "title": "Alison Moyet - All Cried Out (Karaoke Version)", - "id": "RaS7wHcY7wg" - }, - { - "title": "Anastacia - Welcome To My Truth (Karaoke Version)", - "id": "aqxdJAJw2H8" - }, - { - "title": "Anastacia - Sick And Tired (Karaoke Version)", - "id": "v737c8GPTrs" - }, - { - "title": "Anastacia - Left Outside Alone (Karaoke Version)", - "id": "t4ye46v3Eyk" - }, - { - "title": "Anastacia - Heavy On My Heart (Karaoke Version)", - "id": "C45tXbn5VKg" - }, - { - "title": "Amy Winehouse - Stronger Than Me (Karaoke Version)", - "id": "4vkGlH-Pg1E" - }, - { - "title": "Amy Winehouse - You're Wondering Now (Karaoke Version)", - "id": "UfHZ73sYuIM" - }, - { - "title": "Take The Box Karaoke", - "id": "Amy Winehouse Karaoke Version" - }, - { - "title": "Amy Winehouse - Me and Mr Jones (Karaoke Version)", - "id": "iZPjzY3rw0I" - }, - { - "title": "Amy Winehouse - Monkey Man (Karaoke Version)", - "id": "2k6qmo05iD0" - }, - { - "title": "Alison Moyet - Love letters (Karaoke Version)", - "id": "6O0Zon1f9Oo" - }, - { - "title": "Alison Krauss & Union Station - Looking In The Eyes Of Love (Karaoke Version)", - "id": "oNtM-TBfZhA" - }, - { - "title": "Alicia Keys - If I Ain't Got you (Karaoke Version)", - "id": "ItHCoNW84Uc" - }, - { - "title": "Alicia Keys - Why Do I Feel So Sad (Karaoke Version)", - "id": "M0WQjbm1tzw" - }, - { - "title": "Alicia Keys - A Woman's Worth (Karaoke Version)", - "id": "oUfNe9d5TcM" - }, - { - "title": "Alicia Keys - Karma (Karaoke Version)", - "id": "8LOPZronqrI" - }, - { - "title": "Alicia Keys - Diary (Karaoke Version)", - "id": "0tC7a-WQ5Tw" - }, - { - "title": "Alice Cooper - Poison (Dance) (KARAOKE)", - "id": "3PMJwx5xi-E" - }, - { - "title": "Alexandra Burke - Broken Heels", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "The Alan Parsons Project - Eye In The Sky (Karaoke Version)", - "id": "fgRvYwnOxcU" - }, - { - "title": "Alan Jackson - Short Sweet Ride (KARAOKE)", - "id": "gl-rn8Fg8Lg" - }, - { - "title": "Alan Jackson - Walkin' The Floor Over Me (KARAOKE)", - "id": "eozcVny6gvY" - }, - { - "title": "Alan Jackson - Rainy Day In June (KARAOKE)", - "id": "LTWiWvKXpqE" - }, - { - "title": "Alan Jackson - Laid Back 'n Low Key (KARAOKE)", - "id": "jzSS8dQWZfQ" - }, - { - "title": "Alan Jackson - If Love Was A River (KARAOKE)", - "id": "2bfaNxxVOMY" - }, - { - "title": "Alan Jackson - Hole In The Wall (KARAOKE)", - "id": "0cCXVVeS42o" - }, - { - "title": "Alan Jackson - Chattahoochee (KARAOKE)", - "id": "b6AYAFH90b0" - }, - { - "title": "Al Green - You Ought To Be With Me (KARAOKE)", - "id": "tuHu14VbNhY" - }, - { - "title": "Al Green - Love (KARAOKE)", - "id": "Z1lE627Q4ck" - }, - { - "title": "Air Supply - I`ll Be Thinking Of You (KARAOKE)", - "id": "ApGnD7ltf34" - }, - { - "title": "Air Supply - Sweet Dreams (KARAOKE)", - "id": "7ypc8W6_jJQ" - }, - { - "title": "Air Supply - Two Less Lonely People In The World (KARAOKE)", - "id": "DJjgHGIIHxk" - }, - { - "title": "Air Supply - Here I Am (KARAOKE)", - "id": "I0iVDVO7iFM" - }, - { - "title": "Aerosmith - Make It (KARAOKE)", - "id": "R6vL8IzipXk" - }, - { - "title": "Aerosmith - Sick As A Dog (KARAOKE)", - "id": "c-4LWmJu26M" - }, - { - "title": "Aerosmith - Get The Lead Out (KARAOKE)", - "id": "MZW0vmZC2eA" - }, - { - "title": "Aerosmith - Uncle Salty (KARAOKE)", - "id": "md2GV0rSbbA" - }, - { - "title": "Aerosmith - No More No More (KARAOKE)", - "id": "mzduN_UDA8s" - }, - { - "title": "Aerosmith - Seasons Of Wither (KARAOKE)", - "id": "Gw_qfKE64vA" - }, - { - "title": "Aerosmith - Love In An Elevator (KARAOKE)", - "id": "xc-74jq83ok" - }, - { - "title": "Idina Menzel - No Day But Today (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6pIVo60I-Yw" - }, - { - "title": "Adam Faith - The Reason (Karaoke Version)", - "id": "K75Ypk9mhzA" - }, - { - "title": "Adam Faith - Poor Me (Karaoke Version)", - "id": "6QVjkeP3w8M" - }, - { - "title": "Adam Faith - Lonely Pup (Karaoke Version)", - "id": "gOQanp9pWB8" - }, - { - "title": "Adam Faith - It's Alright (Karaoke Version)", - "id": "XIOjKhZRbuw" - }, - { - "title": "Adam Faith - If He Tells You (Karaoke Version)", - "id": "2xS8XWrWDso" - }, - { - "title": "Adam Faith - I Am Singing In The Rain (Karaoke Version)", - "id": "3_GXAvijWAI" - }, - { - "title": "Adam Faith - How About That (Karaoke Version)", - "id": "RDkVsNU1IRw" - }, - { - "title": "Adam Faith - Walking Tall (Karaoke Version)", - "id": "lXeVyNYm-Jo" - }, - { - "title": "Adam Faith - Forget Me Not (Karaoke Version)", - "id": "pUjM0tXJoyo" - }, - { - "title": "Adam Faith - Easy Going Me (Karaoke Version)", - "id": "RkDv9j_RRMk" - }, - { - "title": "Adam Faith - Don't That Beat All (Karaoke Version)", - "id": "6Fm6GsyyPIo" - }, - { - "title": "Adam Faith - What Do You Want (Karaoke Version)", - "id": "x19DosGpfXQ" - }, - { - "title": "Adam Faith - The Time Has Come (Karaoke Version)", - "id": "7Vf0zrxjF0A" - }, - { - "title": "Adam Faith - The First Time (Karaoke Version)", - "id": "BszIvsz83Jk" - }, - { - "title": "AC/DC - Money Talks (Karaoke Version)", - "id": "04-P__xbEQI" - }, - { - "title": "AC/DC - Jailbreak (Karaoke Version)", - "id": "vBLPIu57XZE" - }, - { - "title": "AC/DC - Hells Bells (Karaoke Version)", - "id": "Ce3H4wMnKfE" - }, - { - "title": "AC/DC - For Those About To Rock (Karaoke Version)", - "id": "wyBrF_rkeF8" - }, - { - "title": "AC/DC - Girls Got Rhythm (Karaoke Version)", - "id": "vxnFWYVjQTo" - }, - { - "title": "AC/DC - Dirty Deeds Done Dirt Cheap (Karaoke Version)", - "id": "M-9ZFgIUSnI" - }, - { - "title": "Zedd & Alessia Cara - Stay (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ccu9fBLiUOE" - }, - { - "title": "ZAYN Feat. PARTYNEXTDOOR - Still Got Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "37uV-GP_igk" - }, - { - "title": "Lorde - Green Light (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6V4zufR-E2A" - }, - { - "title": "A-Ha - Train Of Thought (Karaoke Version)", - "id": "d37G9fXsE7U" - }, - { - "title": "Little Mix - No More Sad Songs (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jxAUXnkEPaU" - }, - { - "title": "Sam Hunt - Body Like A Back Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3Us1HpxNH5g" - }, - { - "title": "A-Ha - Living A Boy's Adventure Tale (Karaoke Version)", - "id": "WfuuwoXRArM" - }, - { - "title": "50 Cent - Best Friend (Karaoke Version)", - "id": "imwpz-up-sc" - }, - { - "title": "50 Cent - In Da Club (Karaoke Version)", - "id": "R328NqeRuwA" - }, - { - "title": "50 Cent - 21 Questions (Karaoke Version)", - "id": "B3qYsO0DEzM" - }, - { - "title": "LANY - Good Girls (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8FAHSGOKkDw" - }, - { - "title": "Linkin Park Feat. Kiiara - Heavy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MyWNtcqvGUE" - }, - { - "title": "10cc - Good Morning Judge (Karaoke Version)", - "id": "m6t_oUfTSrU" - }, - { - "title": "Julia Michaels - Issues (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IsuGK-wrzDI" - }, - { - "title": "Harry Styles - Sign Of The Times (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qmKEG2_47IQ" - }, - { - "title": "Ed Sheeran - Hearts Don't Break Around Here (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v332VTK6NGA" - }, - { - "title": "Hey Violet - Break My Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6vlxEGqEkDE" - }, - { - "title": "Ed Sheeran - Perfect (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6cSCBThyGNA" - }, - { - "title": "Coldplay - Hypnotised (KARAOKE)", - "id": "6z7tgg7Uu6s" - }, - { - "title": "Drake - Passionfruit (KARAOKE)", - "id": "jNteBDFISoY" - }, - { - "title": "Ed Sheeran - Galway Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ItlILDxD2Ic" - }, - { - "title": "Clean Bandit Feat. Zara Larsson - Symphony (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n3bk2Dw0X98" - }, - { - "title": "All Time Low - Dirty Laundry (Karaoke Version)", - "id": "I0ti0XNjq8M" - }, - { - "title": "Alex Aiono - Work The Middle (KARAOKE)", - "id": "7OV5dmYb9Qw" - }, - { - "title": "Wilkinson - Afterglow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HisvaWvX_k4" - }, - { - "title": "Taylor Swift feat. The Civil Wars - Safe & Sound (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wQprZKBHYVM" - }, - { - "title": "Sigala - Easy Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qNWcy3hFtME" - }, - { - "title": "Lewis Capaldi - Bruises (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "bc4FxMVRFYY" - }, - { - "title": "Selena Gomez - Come And Get It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RO9hyt4t3bY" - }, - { - "title": "Sia - Alive (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7wbUsThZVqc" - }, - { - "title": "Robbie Williams & Gary Barlow - Shame (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jS0GDDo6VOg" - }, - { - "title": "MGMT - Kids (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PC1DORh1SxI" - }, - { - "title": "McFly feat. Taio Cruz - Shine A Light (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n-bmCLu8g8g" - }, - { - "title": "Loreen - Euphoria (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8lC8NCOr9JY" - }, - { - "title": "Jordin Sparks - Battlefield", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jessie J - Do It Like A Dude", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Amy Winehouse & Tony Bennett - Body And Soul (Karaoke Version)", - "id": "aNIvIqJTiJ4" - }, - { - "title": "Oliver - Food Glorious Food (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xqMAptXBWgk" - }, - { - "title": "Dan Stevens - Evermore (Beauty and the Beast) Karaokewith Lyrics HD Vocal-Star Karaoke Version", - "id": "a31fQCMtI7U" - }, - { - "title": "Walt Disney - Hakuna Matata / Lion King (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "55q84-Uu1io" - }, - { - "title": "Walt Disney - Beauty And The Beast (Lead Vocals) With Lyrics HD Vocal-Star 4K", - "id": "FUMkI-uqOcM" - }, - { - "title": "Aladdin - A Whole New World (KARAOKE)", - "id": "izRsub_dkig" - }, - { - "title": "Pinocchio - When You Wish Upon a Star Karaoke with Lyrics Vocal-Star (With Lead Vocals)", - "id": "8wO6CjIU8Z8" - }, - { - "title": "Mary Poppins - Supercalifragilisticexpialidocious (With Lead Vocals) Karaoke with Lyrics 4K", - "id": "gc_t3FMMBIU" - }, - { - "title": "Mary Poppins - Let's Go Fly A Kite (With Lead Vocals) Karaoke Lyrics HD Vocal-Star 4K", - "id": "5Z3KON4yjg4" - }, - { - "title": "Little Mermaid - Under The Sea (With Lead Vocals) Karaoke with Lyrics HD Vocal-Star 4K", - "id": "i1VF5ru2pmI" - }, - { - "title": "Little Mermaid - Part Of Your World (With Lead Vocals) Karaoke with Lyrics HD Vocal-Star 4K", - "id": "4Lc_S4YqXUM" - }, - { - "title": "Jungle Book - Bare Necessities (With Lead Vocals) Karaoke with Lyrics HD Vocal-Star 4K", - "id": "S7kqSBqyiQA" - }, - { - "title": "Frozen Fever- Making Today a Perfect Day (With Lead Vocals) Karaoke with Lyrics HD 4K", - "id": "nke-cqUJ9Lo" - }, - { - "title": "Frozen - Let It Go (With Lead Vocals) with Lyrics HD Vocal-Star Karaoke 4K", - "id": "MjjhZED4WGo" - }, - { - "title": "Frozen - In Summer (With Lead Vocals) with Lyrics HD Vocal-Star Karaoke 4K", - "id": "TtTpSPJIyV8" - }, - { - "title": "Frozen - For The First Time In Forever (With Lead Vocals) Karaoke with Lyrics HD", - "id": "IUNYtHg-fmY" - }, - { - "title": "Kygo & Selena Gomez - It Ain't Me (KARAOKE)", - "id": "3-HO_RA-C9Y" - }, - { - "title": "Frozen - Fixer Upper (With Lead Vocals) with Lyrics HD Vocal-Star Karaoke 4K", - "id": "itmJmo_75r8" - }, - { - "title": "Frozen - Do You Want To Build A Snowman (With Lead Vocals) (Karaoke Version) with Lyrics HD 4K", - "id": "XZ-wpfSMKZc" - }, - { - "title": "The Chainsmokers & Coldplay - Something Just Like This (KARAOKE)", - "id": "hUJ0_b5hRMM" - }, - { - "title": "Elton John - Can You Feel The Love Tonight (With Lead Vocals) Karaoke with Lyrics HD 4K", - "id": "_c98g_8LEtY" - }, - { - "title": "Lana Del Rey - Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZK-gxm_FZGA" - }, - { - "title": "Cinderella - Bibbidi-Bobbidi-Boo (With Lead vocals) with Lyrics HD Vocal-Star 4K", - "id": "i0bbQQnbVCI" - }, - { - "title": "Calvin Harris Feat. Frank Ocean & Migos - Slide (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zyeCcxImtZQ" - }, - { - "title": "Sia - Helium with Lyrics HD Vocal-Star Karaoke 4K", - "id": "W0IVR5NmI_8" - }, - { - "title": "Ariana Grande & John Legend - Beauty & The Beast (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q8WHSthHRZo" - }, - { - "title": "Amy MacDonald - Dream On Vocal Star Karaoke 4K", - "id": "jYJnX6D-quk" - }, - { - "title": "Take That - Giants with Lyrics HD Vocal-Star Karaoke 4K", - "id": "xpAAQLO027E" - }, - { - "title": "Believer Karaoke", - "id": "Imagine Dragons Karaoke Version" - }, - { - "title": "James Arthur - Safe Inside (KARAOKE)", - "id": "4g7ihqTG1UE" - }, - { - "title": "Train - Play That Song with Lyrics HD Vocal-Star Karaoke 4K", - "id": "RebXF3Bw5Zs" - }, - { - "title": "Maroon 5 Feat. Future - Cold (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "d5ET7NjjBBk" - }, - { - "title": "Rag 'n 'Bone Man - Skin with Lyrics HD Vocal-Star Karaoke 4K", - "id": "D42PKhbOObQ" - }, - { - "title": "Martin Garrix & Dua Lipa - Scared To Be Lonely with Lyrics HD Vocal-Star Karaoke 4K", - "id": "DFV-ajMRC2A" - }, - { - "title": "Anne-Marie - Ciao Adios (KARAOKE)", - "id": "2TlVT1S1sF0" - }, - { - "title": "Stormzy - Big For Your Boots (KARAOKE)", - "id": "DCMYpa9QHSc" - }, - { - "title": "Ed Sheeran - How Would You Feel (KARAOKE)", - "id": "rUGAqhoGjAw" - }, - { - "title": "Katy Perry Feat. Skip Marley - Chained To The Rhythm (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "NeasQOEP1JQ" - }, - { - "title": "Wizard Of Oz - We're Off To See The Wizard (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "myySZpa2yw8" - }, - { - "title": "Wizard Of Oz - Ding Dong The Witch Is Dead (KARAOKE)", - "id": "Kzsf3uIMHkI" - }, - { - "title": "The Wizard And I Karaoke", - "id": "Wicked Karaoke Version" - }, - { - "title": "I'm Not That Girl Karaoke", - "id": "Wicked Karaoke Version" - }, - { - "title": "As Long As You're Mine Karaoke", - "id": "Wicked Karaoke Version" - }, - { - "title": "West Side Story - Tonight with Lyrics HD Vocal-Star Karaoke 4K", - "id": "B9s75PWcdYU" - }, - { - "title": "West Side Story - Maria (KARAOKE)", - "id": "qnsf7T_liso" - }, - { - "title": "Sweeney Todd - Pretty Women with Lyrics HD Vocal-Star Karaoke 4K", - "id": "8Aa4DPLDs1w" - }, - { - "title": "Sweeney Todd - My Friends [For Solo Male] with Lyrics HD Vocal-Star Karaoke 4K", - "id": "pfyFuBA_xOE" - }, - { - "title": "Sweeney Todd - Johanna (KARAOKE)", - "id": "J7nqMix8d24" - }, - { - "title": "Sound Of Music - Edelweiss with Lyrics HD Vocal-Star Karaoke 4K", - "id": "0GWYO2ZyRKk" - }, - { - "title": "Sound Of Music - Sixteen Going On Seventeen with Lyrics HD Vocal-Star Karaoke 4K", - "id": "xALhXFkeJ18" - }, - { - "title": "Sound Of Music - My Favourite Things with Lyrics HD Vocal-Star Karaoke 4K", - "id": "XEd9XmElT7Q" - }, - { - "title": "Sound Of Music - Do-Re-Mi with Lyrics HD Vocal-Star Karaoke 4k", - "id": "sam5yT7VAKw" - }, - { - "title": "Sound Of Music - Climb Every Mountain with Lyrics HD Vocal-Star Karaoke 4K", - "id": "juieDzZPbzA" - }, - { - "title": "Sister Act - I Will Follow Him with Lyrics HD Vocal-Star Karaoke 4K", - "id": "YSm8reNWuBU" - }, - { - "title": "Rocky Horror Picture Show - Sweet Transvestite with Lyrics HD Vocal-Star Karaoke 4K", - "id": "lpLtPlJuSyE" - }, - { - "title": "Rocky Horror Picture Show - Science Fiction Double Feature Karaoke with Lyrics Vocal-Star 4K", - "id": "5WIDv5YqMuY" - }, - { - "title": "Rocky Horror Picture Show - Hot Patootie-Bless My Soul Karaoke with Lyrics HD Vocal-Star 4K", - "id": "mQ1wDZ2J8uQ" - }, - { - "title": "Phantom Of The Opera - All I Ask Of You with Lyrics HD Vocal-Star Karaoke 4K", - "id": "GK6v2BM36oc" - }, - { - "title": "Oliver - Consider Yourself (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_t2gUBTTNqI" - }, - { - "title": "Oliver - As Long As He Needs Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O34YFsjBLVg" - }, - { - "title": "My Fair Lady - Wouldn't It Be Lovely (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JHgjx2KtCUs" - }, - { - "title": "My Fair Lady - On The Street Where You Live (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XHf9CEzDaL4" - }, - { - "title": "My Fair Lady - I Could Have Danced All Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FYkJyaBoqik" - }, - { - "title": "Mary Poppins - Feed The Birds (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hQCkJp04D4o" - }, - { - "title": "Little Shop Of Horrors (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L0YALUFYb4E" - }, - { - "title": "Les Miserables - On My Own (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7hyur4MD3aU" - }, - { - "title": "Les Miserables - Master Of The House (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ajOKZsYPzNc" - }, - { - "title": "Do You Hear The People Sing Karaoke", - "id": "Les Miserables Karaoke Version" - }, - { - "title": "Grease - Sandy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cAg8FqfP3Rw" - }, - { - "title": "Grease - Look At Me, I'm Sandra Dee (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5RAz2Bp87Aw" - }, - { - "title": "Grease - Beauty School Drop Out (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RFJJACR4y3M" - }, - { - "title": "Evita - Don't Cry For Me Argentina [Madonna Version]", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Funny Girls - Rain On My Parade", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dreamgirls - One Night Only [Jennifer Hudson Version]", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Shania Twain - Life's About To Get Good (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "a8futUcbia8" - }, - { - "title": "Blues Brothers - Gimme Some Lovin' (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ztHaRQVUQJs" - }, - { - "title": "Aladdin - Friend Like Me", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Blues Brothers - Everybody Needs Somebody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LQZelXoVeM0" - }, - { - "title": "Annie - Tomorrow", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Annie - It's The Hard Knock Life", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Harry Connick Jr - Goodnight My Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G_VAwpDbyYU" - }, - { - "title": "The Killers - The Man", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Tony Christie - I Did What I Did For Maria (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "76EwX1cXcm4" - }, - { - "title": "Ed Sheeran - What Do I Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sf6Amu2g78E" - }, - { - "title": "Tom Jones - I Who Have Nothing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BdQEUCmjnLM" - }, - { - "title": "Sam Harris - Bridge Over Troubled Water (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CpJOD4Ix_EA" - }, - { - "title": "Tom Jones - Green Green Grass Of Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "N222pbOsyzA" - }, - { - "title": "Sam Harris - Over The Rainbow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6ufNFJhtkZw" - }, - { - "title": "Perry Como - Magic Moments (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xyqjxbTuak4" - }, - { - "title": "Bruno Mars - That's What I Like (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hNgjSnLfEsU" - }, - { - "title": "Katy Perry Feat. Nicki Minaj - Swish Swish (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QQ_gpbb5csw" - }, - { - "title": "Paul Anka - You Are My Destiny (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Sqp3XHebUcM" - }, - { - "title": "Perry Como - As Time Goes By (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wNfdbUPCp6I" - }, - { - "title": "Paul Anka - Diana (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bUR7a2wXT7I" - }, - { - "title": "Paul Anka - Put Your Head On My Shoulder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dqlJ7mbJfqM" - }, - { - "title": "Paul Anka - Puppy Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NDAICW1oZ4k" - }, - { - "title": "Paul Anka - Lonely Boy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Gb6vk1kgjAc" - }, - { - "title": "Remember You're Mine Karaoke", - "id": "Pat Boone Karaoke Version" - }, - { - "title": "Pat Boone - Love Letters In The Sand (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fzGmTmEtDAw" - }, - { - "title": "Pat Boone - I'll Be Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0hD9mK5Zlys" - }, - { - "title": "Pat Boone - Don't Forbid Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kzPO5oeXN9k" - }, - { - "title": "Pat Boone - April Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XQdkn4kd-bM" - }, - { - "title": "Nat King Cole - Mona Lisa (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_0kZ2iB-c2w" - }, - { - "title": "Sigala Feat. Ella Eyre - Came Here For Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fnV1SdoxP-c" - }, - { - "title": "Michael Buble - Some Kind Of Wonderful (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x8LBi_kCvBw" - }, - { - "title": "Michael Buble - Feeling Good (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oC0DffIuwdQ" - }, - { - "title": "Michael Buble - Cry Me A River (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yrHbElR9cZY" - }, - { - "title": "Rita Ora - Your Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UKlFDUAlNkU" - }, - { - "title": "Little Mix - Power (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5-BMHQcgYDY" - }, - { - "title": "Liam Gallagher - Wall Of Glass (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HfSKXZ65tXE" - }, - { - "title": "David Guetta Feat. Justin Bieber - 2U (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OTXVdFFfsn0" - }, - { - "title": "Take That - New Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G9I2Tlg1xWQ" - }, - { - "title": "Matt Monro - Walk Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O295zdAyP4k" - }, - { - "title": "Matt Monro - The Impossible Dream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XYGhJLe87n8" - }, - { - "title": "Somewhere Karaoke", - "id": "Matt Monro Karaoke Version" - }, - { - "title": "Harry Styles - Sweet Creature (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rV5AojQgMgQ" - }, - { - "title": "Now Or Never - Halsey (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HgqFX0RlgSk" - }, - { - "title": "Josh Groban - Remember When It Rained (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UwuJTBL2fHk" - }, - { - "title": "Josh Groban - Never Let Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R7kVA1QuoE4" - }, - { - "title": "Josh Groban - Let Me Fall (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5nmPi5w4nqs" - }, - { - "title": "Josh Groban - To Where You Are (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zAax5QiE-Jg" - }, - { - "title": "Jim Reeves - You're The Only Good Thing", - "id": "With Lyrics HD Vocal Star 4K" - }, - { - "title": "French Montana Feat Swae Lee - Unforgettable", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - Welcome To My World", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - I Love You Because", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jim Reeves - He'll Have To Go", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - There Goes My Everything", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Quando Quando Quando", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Feels Karaoke", - "id": "Calvin Harris Ft. Pharrell Williams, Katy Perry, Big Sean Karaoke Version" - }, - { - "title": "DJ Khaled Feat. Justin Bieber & Others - I'm The One (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "PP8Zc7o1W9U" - }, - { - "title": "Dickie Valentine - Mr Sandman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "DJ Khaled Feat. Rihanna & Bryson Tiller - Wild Thoughts (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "QxDTBBbo9oA" - }, - { - "title": "Des O'Connor - One, Two, Three O'Leary (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8oWKsNmIIRE" - }, - { - "title": "Tiesto, Mabel - God Is A Dancer - with Lyrics HD Vocal-Star Karaoke", - "id": "u9bBsumpB8U" - }, - { - "title": "Beauty And The Beast - Belle (with lead vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FPuFlJvguOM" - }, - { - "title": "Trolls - True Colours (With Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kMBuHMyoC3w" - }, - { - "title": "Trolls - True Colours (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gn9gdNrH0po" - }, - { - "title": "Trolls - Can't Stop The Feeling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-InSWKNPZuI" - }, - { - "title": "Des O'Connor - I Pretend (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mnS7_4xyxoA" - }, - { - "title": "Mary Poppins - A Spoonful Of Sugar (With Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HohajvOQd4E" - }, - { - "title": "Trolls - Can't Stop The Feeling (With Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "04dajszHsf8" - }, - { - "title": "Des O'Connor - Careless Hands (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "srie-dTNGu0" - }, - { - "title": "Olly Murs & Louisa Johnson - Unpredictable (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DjBeEpU1C3Y" - }, - { - "title": "Dean Martin - Ain't That A Kick In The Head (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5fwqdxNhe3Y" - }, - { - "title": "Moana - You're Welcome (With Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xtG5L7BRG_A" - }, - { - "title": "Bobby Darin - Things (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Dv0n9x51Jjo" - }, - { - "title": "Andy Williams - On The Street Where You Live", - "id": "With Lyrics HD Vocal Star Karaoke" - }, - { - "title": "Andy Williams - Can't Get Used To Losing You", - "id": "With Lyrics HD Vocal Star Karaoke" - }, - { - "title": "Snow White - Whistle While You Work (with Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "lXgUjTqWIFE" - }, - { - "title": "Trolls - Get Back Up Again (With Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wkijziL7WHM" - }, - { - "title": "Snow White - Heigh Ho (with Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bAOL9f9mfAA" - }, - { - "title": "Sleeping Beauty - Once Upon A Dream (with lead vocals) (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "16O_CWnB3Gw" - }, - { - "title": "Toy Story - You've Got A Friend In Me (With Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "NoNp0ELKc8Q" - }, - { - "title": "Shrek 2 - Accidentally In Love (with lead vocals) (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "uH33Yu2gWJc" - }, - { - "title": "Tangled - When Will My Life Begin (With Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TgLnZKHUVfw" - }, - { - "title": "Tangled - I See The Light (With Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "K04Aet-__6M" - }, - { - "title": "Pocahontas - Colours Of The Wind (Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mMDllsu_pSw" - }, - { - "title": "Shrek - I'm A Believer (with Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4fOz_y7kNuQ" - }, - { - "title": "Mulan - Reflection (With Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "t0sO0D_mknU" - }, - { - "title": "The Lion King - Circle Of Life (with vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "umiqSGK6OlM" - }, - { - "title": "Beauty And The Beast - Be Our Guest (vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oz96HXDBDy8" - }, - { - "title": "Jungle Book - I Wanna Be Like You (with vocals)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Lion King - I Just Can't Wait To Be King (with vocals) (Karaoke Version) with Lyrics Vocal-Star", - "id": "7QBDzhUrGkk" - }, - { - "title": "Enchanted - That's How You Know", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cinderella - A Dream Is A Wish Your Heart Makes (with lead vocals) (Karaoke Version) with Lyrics HD", - "id": "mbFxxDPFCo8" - }, - { - "title": "Trolls - Get Back Up Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_iOL56W-Db8" - }, - { - "title": "Toy Story - You've Got A Friend In Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hCCjwMZAgf8" - }, - { - "title": "Tangled - When Will My Life Begin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gQWk4fcpu7g" - }, - { - "title": "Snow White - Whistle While You Work (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mj7tUCqoOlg" - }, - { - "title": "Tangled - I See The Light (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "g03J6J9p8OI" - }, - { - "title": "Mulan - Reflection (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NK9oB85ejhM" - }, - { - "title": "Mary Poppins - A Spoonful Of Sugar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dkUdOYn3w64" - }, - { - "title": "Snow White - Heigh Ho (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "flS-LmJgcoA" - }, - { - "title": "Sleeping Beauty - Once Upon A Dream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ofe4jXs5yG4" - }, - { - "title": "Shrek 2 - Accidentally In Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1RGarvDe6e8" - }, - { - "title": "Shrek - I'm A Believer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DsfWkNJZNZU" - }, - { - "title": "Moana - How Far I'll Go - (With Lead Vocals) With Lyrics HD Vocal-Star Karaoke 4K", - "id": "NlbdQ9lizV4" - }, - { - "title": "Beauty And The Beast - Belle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-qXkyKyUJ_k" - }, - { - "title": "The Lion King - Circle Of Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x8zWaAOjgTs" - }, - { - "title": "The Lion King - I Just Can't Wait To Be King (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ShutWPpt5WQ" - }, - { - "title": "Enchanted - That's How You Know", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cinderella - A Dream Is A Wish Your Heart Makes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2sQ2l6lLtnE" - }, - { - "title": "Jungle Book - I Wanna Be Like You (KARAOKE)", - "id": "HQxpOIvSVrk" - }, - { - "title": "Beauty And The Beast - Be Our Guest (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hd7CbjSlRBs" - }, - { - "title": "Moana - You're Welcome (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BgNdTy2WsSE" - }, - { - "title": "Stooshe - Slip (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wT9vT2N7GSQ" - }, - { - "title": "Jigsaw - Sky High (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gFhgFw1znvw" - }, - { - "title": "Example - Kickstarts", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Westlife - Safe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qfvnxZjNts8" - }, - { - "title": "Selena Gomez & The Scene - Slow Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WC-23Nrbt6A" - }, - { - "title": "Pink - Sober (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xYHDVvgnLi8" - }, - { - "title": "Dan + Shay, Justin Bieber - 10,000 Hours - Lyrics HD Vocal-Star Karaoke", - "id": "3Zg9tgARbP8" - }, - { - "title": "The Sugababes - Wear My Kiss (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OI0fCkn8fXw" - }, - { - "title": "Girls Aloud - Something New (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wcuXQfxqO48" - }, - { - "title": "Zara Larsson - I Would Like (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dTiYX6iQ0yw" - }, - { - "title": "The Weeknd Feat. Daft Punk - I Feel It Coming (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UW3f39e5Bq8" - }, - { - "title": "Demi Lovato - Skyscraper (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TujptU0jSV0" - }, - { - "title": "The Chainsmokers - Paris (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UXC5Nf11irM" - }, - { - "title": "Rae Sremmurd Feat. Gucci Maine - Black Beatles (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Oy99DDnf6HY" - }, - { - "title": "Starley - Call On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ntbHOiSAaxA" - }, - { - "title": "Robin Schulz & David Guetta Feat. Cheat Codes - Shed A Light (Karaoke Version) with Lyrics HD", - "id": "QUefui9Ufpg" - }, - { - "title": "Ryan Gosling & Emma Stone - City Of Stars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9BIh5-W4A8Y" - }, - { - "title": "Migos Feat. Lil Uzi Vert - Bad And Boujee (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zkd5kGB2I28" - }, - { - "title": "Louis Tomlinson & Steve Aoki - Just Hold On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7wF8ApF0NbA" - }, - { - "title": "Little Mix Feat. Charlie Puth - Oops (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jIkoLtMjVd0" - }, - { - "title": "Little Mix - Touch (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G8VOSxFy5tg" - }, - { - "title": "Jax Jones Feat. Raye - You Don't Know Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y31TVN5Xzu8" - }, - { - "title": "Dua Lipa - Be The One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Uqzi1QoXQhs" - }, - { - "title": "Bruno Mars - 24K Magic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NRSbgXzWIlI" - }, - { - "title": "Alessia Cara (Moana) - How Far I'll Go", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Zaalima - Raees (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ljqquvs2qos" - }, - { - "title": "Anarkali - Yeh Zindagi Usiki Hai (Karaoke Version)", - "id": "zgSNuJjkzt8" - }, - { - "title": "Yeh Zindagi Ke Mele - Mela (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WR8208zHQuM" - }, - { - "title": "Yeh Sama Sama Hai Ye Pyar Ka - Jab Jab Phool Khile (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "OHzOC-IC3TE" - }, - { - "title": "Yeh Mera Dil Yaar Ka Diwana - Don (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LxjSXhVbp7o" - }, - { - "title": "Yeh Hai Bombay Meri Jaan - C.I.D (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JSp224nUryo" - }, - { - "title": "Yeh Galiyan Yeh Chaubara - Prem Rog (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vUt4fvIvWOI" - }, - { - "title": "Yeh Dooriyan - Love Aaj Kal (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ws-xeJJYLwI" - }, - { - "title": "Yeh Dosti - Sholay (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B7_YGMGkxSQ" - }, - { - "title": "Yaar Naa Miley โ€“ Kick (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kBoSJoeC1tY" - }, - { - "title": "Yahoo Chahe Koi Mujhe Junglee Kahen - Junglee (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jKEwX4s8jsk" - }, - { - "title": "Why This Kolaveri di โ€“ Dhanush (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PsyiTlhmf4o" - }, - { - "title": "Ude Jab Jab Zulfein Teri - Naya Daur (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KGW3wSjm9FE" - }, - { - "title": "Tumhi Mere Mandir - Khandan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OWWnuzzz2tk" - }, - { - "title": "Tum Se Hi - Jab We Met (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MmrmIlhpxxQ" - }, - { - "title": "Aashiqui 2 - Tum Hi Ho (Karaoke Version)", - "id": "s3vcfAwf7F4" - }, - { - "title": "Tujhe Dekha To - Dilwale Dulhania Le Jayenge (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GAFW9pB6KiY" - }, - { - "title": "Tu Mera Jaanu Hai - Hero (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4BLfe_elwEg" - }, - { - "title": "Tu Meri - Bang Bang (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zdxDOZtvku4" - }, - { - "title": "Tu Hi Tu Har Jagah Karaoke", - "id": "Kick Karaoke Version" - }, - { - "title": "Tu Hi Toh Hai โ€“ Holiday (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ly0vS0539ec" - }, - { - "title": "Tu Ganga Ki Mauj - Baiju Bawra (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XEPeIJWjdx8" - }, - { - "title": "Andaaz - Tod Diya Dil Mera Tune (Karaoke Version)", - "id": "oZTZdpIrLF0" - }, - { - "title": "Tip Tip Barsa Paani - Mohra (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ON9IOA8rZrE" - }, - { - "title": "Tere Mast Mast Do Nain โ€“ Dabangg (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tpxPXRMPA2s" - }, - { - "title": "Tere Liye - Veer-Zaara (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Bf24FguLqAU" - }, - { - "title": "Tere Bina Zindagi Se Koi - Dil VIl Pyar Vyar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IBnCRKyUOvU" - }, - { - "title": "Tere Bina - Guru (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LR-ES0zIzNM" - }, - { - "title": "Tera Mera Pyar Amar - Asli Naqli Hum (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kMCOPR9dpLc" - }, - { - "title": "Taarif Karoon Kya Uski - Kashmir Ki Kali (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zHwjDJLGxr8" - }, - { - "title": "Sun Sahiba Sun - Ram Teri Ganga Maili (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q9ZZdQ18ty8" - }, - { - "title": "Sun Ja Dil Ki Dastan - Jaal (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JNXHsNjjkAQ" - }, - { - "title": "SubhanAllah - Yeh Jawaani Hai Deewani (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ufePoQAbvBU" - }, - { - "title": "Shukran Allah โ€“ Kurbaan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uICjF_P8ejE" - }, - { - "title": "Saree Ke Fall Sa โ€“ RajKumar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Cq62W6gUMaU" - }, - { - "title": "Sanam Re - Sanam Re (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SuGbTfYwxzg" - }, - { - "title": "Samjhawan - Humpty Sharma Ki Dulhania (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n2lRe2XlV7w" - }, - { - "title": "O Saathi Re - Muqaddar Ka Sikandar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KBz0pOTp404" - }, - { - "title": "Roop Tera Mastana โ€“ Aradhana (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fXVM64vXXwY" - }, - { - "title": "Aah - Raja Ki Aayegi Baraat (Karaoke Version)", - "id": "XnP0dGbMz_U" - }, - { - "title": "Pyar Kiya To Darna Kya - Mughal-e-Azam (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r7STp-_qdWs" - }, - { - "title": "Pyar Hua Iqrar Hua - Shree 420 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "e_w8ePr9YY0" - }, - { - "title": "Piya Tu Ab To Aaja โ€“ Caravan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AsztyLTJFAw" - }, - { - "title": "Pyar Deewana Hota - Kishore Kumar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IkvQipHyZO8" - }, - { - "title": "Pehli Nazar Mein โ€“ Race (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dcXtgDP_aPQ" - }, - { - "title": "Pehla Nasha - Jo Jeeta Wohi Sikandar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y0uLFO1Y2Fs" - }, - { - "title": "Pee Loon - Once Upon A Time In Munbai (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MWGayR8oJkU" - }, - { - "title": "Pardesi Pardesi - Raja Hindustani (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "k6l2NJUw2U0" - }, - { - "title": "Om Shaanti Om โ€“ Karz (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1WS1umjtenE" - }, - { - "title": "Pani Da Rang - Vicky Donor (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r6SMIECJfUI" - }, - { - "title": "O Re Chori โ€“ Lagaan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "D-WoIy9LKZk" - }, - { - "title": "O Meri Mehbooba - Dharam Veer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rOLGs39w4Xo" - }, - { - "title": "O Haseena Zulfon Wali - Teesri Manzil (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wsJ0hYdpOGQ" - }, - { - "title": "O Mere Dil Ke Chain โ€“ Sanam (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YgzAYfdiOV4" - }, - { - "title": "Nachde Ne Saare - Baar Baar Dekho (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q38oB8U8UI0" - }, - { - "title": "Munni Badnaam - Dabangg (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hqW35J3XjWs" - }, - { - "title": "Mujhe Neend Na Aaye โ€“ Dil (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "otMJtt7VdP0" - }, - { - "title": "Mitwa - Kabhi Alvida Naa Kehna (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZSvv3Ug2nqY" - }, - { - "title": "Mere Naseeb Mein โ€“ Naseeb (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GgnTy8fKOw4" - }, - { - "title": "Mere Haath โ€“ Fanaa (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kI6pKUM_juI" - }, - { - "title": "Mere Dil Ke Chain - Mere Jeevan Saathi (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DWD5UrJQExU" - }, - { - "title": "Mera Naam Chin Chin Chu - Howrah Bridge (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fyb6Sv3JP-Q" - }, - { - "title": "Manwa Laage - Happy New Year (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1AiaAnheihs" - }, - { - "title": "Mauja Hi Mauja - Jab We Met (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "12QGikakRpI" - }, - { - "title": "2 States Karaoke", - "id": "Mast Magan Karaoke Version" - }, - { - "title": "Man Dole Mera Tan Dole โ€“ Nagin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QcIx_78KDdI" - }, - { - "title": "Anand - Maine Tere Liye Hi Saat Rang (Karaoke Version)", - "id": "YuYaeTOP0yc" - }, - { - "title": "Main Na Bhoolunga - Roti Kapada Aur Makaan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4EcrQXob8kA" - }, - { - "title": "Maar Dala โ€“ Devdas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y5z7fYB9Hwc" - }, - { - "title": "Maa - Taare Zameen Par (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jPTWyPJJ3Z0" - }, - { - "title": "Kya Khoob Lagti Ho - Dharmatma (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YmbJ-jUxJKs" - }, - { - "title": "Kuch Kuch Hota Hai Karaoke", - "id": "Kuch Kuch Hota Hai Karaoke Version" - }, - { - "title": "Khuda Jaane - Bachna Ae Haseeno (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bLrvafH0Ews" - }, - { - "title": "Khoya Khoya Chand - Kala Bazar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c2c4X2T1_7w" - }, - { - "title": "Kehna Hi Kya - Bombay (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QGo3g7_9AZk" - }, - { - "title": "Kate Nahin Kat Te - Mr India (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qgkpiZtGCT0" - }, - { - "title": "Kar Gayi Chull - Kapoor & Sons (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8FxWWJbQf-8" - }, - { - "title": "Kal Ho Naa Ho - Kal Ho Naa Ho (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Yc-7_XgNRGg" - }, - { - "title": "Kajra Re - Bunty Aur Babli (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_mFsnMIajck" - }, - { - "title": "Kaise Mujhe Tum Mil Gayi - Ghajini (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x50danCGw-w" - }, - { - "title": "Kabira - Yeh Jawaani Hai deewani (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AvcoAb4-tw4" - }, - { - "title": "Kabhi Kabhi Mere Dil Mein - Kabhi Kabhie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Egry2-WXulY" - }, - { - "title": "Jumma Chumma De De โ€“ Hum (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8rMtkHuve9E" - }, - { - "title": "Jawani Janeman - Namak Halaal (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TZCF9MVIgqw" - }, - { - "title": "Jane Woh Kaise Log The โ€“ Pyaasa (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NKFnDrKiAxU" - }, - { - "title": "Aap Ki Kasam - Jai Jai Shiv Shankar (Karaoke Version)", - "id": "VwXVPxYMIvk" - }, - { - "title": "Jag Ghoomeya โ€“ Sultan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JNm0lZYVsic" - }, - { - "title": "Jaadu Teri Nazar - Darr (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XKyGGOL5jJk" - }, - { - "title": "In Ankhon Ki Masti - Umrao Jaan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hCrr5jaWy0w" - }, - { - "title": "I Love You โ€“ Bodyguard (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pnPRRUNuzLk" - }, - { - "title": "Amar Akbar Anthony - Humko Tumse Ho Gaya Hai Pyar (Karaoke Version)", - "id": "W-8hSfN7YCM" - }, - { - "title": "Kudrat - Humein Tumse Pyar Kitna (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LhWY8US4g6E" - }, - { - "title": "Hum Tum Ek Kamre Mein Band Ho โ€“ Bobby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2QlsxOqysyc" - }, - { - "title": "Hum Bane Tum Bane - Ek Duje Ke Liye (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "967YQVcqufE" - }, - { - "title": "Honthon Mein Aisi Baat - Jewel Thief (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "o3COg7_wnfw" - }, - { - "title": "Hawa Mein Udta Jaye โ€“ Barsaat (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kBKJxWkkDXo" - }, - { - "title": "High Heels - Yo Yo Honey Singh (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "T0CxJft9T_w" - }, - { - "title": "Chhod Do Aanchal Zamana Kya Kahega โ€“ Beta (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zE6vsfD9T0Q" - }, - { - "title": "Guzarish - Ghajini (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GQ-AqH4FsoM" - }, - { - "title": "Goonja Sa Hai Koi Iktara - Wake Up Sid (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bDf-6jyK__s" - }, - { - "title": "Gerua โ€“ Dilwale (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TleJqCZ1SR8" - }, - { - "title": "Galliyan - Ek Villain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Pc9G-5K8Fnw" - }, - { - "title": "1942: A Love Story - Ek Ladki Ko Dekha To (Karaoke Version)", - "id": "ADzzH-zuLQ0" - }, - { - "title": "Ek Do Teen โ€“ Tezaab (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EOZ6exLebbw" - }, - { - "title": "Aasha - Eena Meena Deeka (Karaoke Version)", - "id": "nRjogoMIfoc" - }, - { - "title": "Dum Maro Dum - Hare Rama Hare Krishna (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "thqUtsZStQ8" - }, - { - "title": "Dum Dum Diga Diga โ€“ Chhalia (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gu2GoJ5fxWs" - }, - { - "title": "Julie - Dil Kya Kare Jab Kisee Se, Kisi Ko Pyar Ho Jaye (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "MUkpIm998uA" - }, - { - "title": "Dil Deewana - Maine Pyar Kiya (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "slcvHC2XWfk" - }, - { - "title": "Didi Tera Devar Deewana - Hum Aapke Hain Koun (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5hJcGaLEd_I" - }, - { - "title": "Dhunki - Mere Brother Ki Dulhan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "460W9TPFAwo" - }, - { - "title": "Aashiqui - Dheere Dheere Se (Karaoke Version)", - "id": "zpnlpQp5dQM" - }, - { - "title": "Dhak Dhak Karne Laga โ€“ Beta (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "inDUvVdKP9k" - }, - { - "title": "Dekha Hai Pehli Baar - Saajan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qeDwts2pXZ0" - }, - { - "title": "Dekha Ek Khwab โ€“ Silsila (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AneeYHsInZc" - }, - { - "title": "Dekha Ek Khwab Toh โ€“ Silsila (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gYIcVXKGmcE" - }, - { - "title": "Deewangi Deewangi - Om Shanti Om (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_42mgZlSHg0" - }, - { - "title": "Deewana Leke Aaya Hai - Mere Jeevan Saathi (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PS_XAhVZ0B0" - }, - { - "title": "Choli Ke Peeche - Khal Nayak (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zvMDYOMv7uQ" - }, - { - "title": "Chura Liya Hai Tumne Jo Dil Ko - Yaadon Ki Baaraat (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "pTevYLJZT4U" - }, - { - "title": "Chhod Do Aanchal Zamana Kya Kahega - Paying Guest (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "GGENz4wo3UQ" - }, - { - "title": "Chittiyaan Kalaiyaan - Roy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ue3-radlvaM" - }, - { - "title": "Chaudhvin Ka Chand Ho - Chaudhvin Ka Chand (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hCrBIF8eMjs" - }, - { - "title": "Chand Sifarish - Fanaa (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UC7GwCburRQ" - }, - { - "title": "Chammak Challo Karaoke", - "id": "Ra One Karaoke Version" - }, - { - "title": "Chalte Chalte - Pakeezah (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RxfPewYZIrY" - }, - { - "title": "Chaiyya Chaiyya - Dil Se (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MDACaD7-EWg" - }, - { - "title": "Bole Chudiyan - Kabhi Khushi Kabhie Gham (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xNYz5WpczPI" - }, - { - "title": "Bol Radha Bol โ€“ Sangam (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xaYdNSJgaOg" - }, - { - "title": "3 Idiots - Behti Hawa Sa Tha Woh (Karaoke Version)", - "id": "Fo-2fTHZK3c" - }, - { - "title": "Beedi - Omkara (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EJXXPeIeiEU" - }, - { - "title": "Balam Pichkari - Yeh Jawaani Hai Deewani (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CMlTENetO1c" - }, - { - "title": "Bahon Ke Darmiyan - Khamoshi (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ivbs14BdLT4" - }, - { - "title": "Baharon Phool Barsao - Suraj (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qrdOqWBTuvs" - }, - { - "title": "Baby Ko Bass Pasand Hai โ€“ Sultan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OeEXN6OE6CA" - }, - { - "title": "Aayega Aanewala โ€“ Mahal (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9kpRcinNzHg" - }, - { - "title": "Babuji Dheere Chalna - Aar Paar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_kO5bFP6F5s" - }, - { - "title": "Anmol Ghadi - Awaaz De Kahan Hai (Karaoke Version)", - "id": "G38z0hmgB3s" - }, - { - "title": "Awaara Hoon - Awaara (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7QwcKVfqTe8" - }, - { - "title": "Ankhiyan Milake โ€“ Rattan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4-lGh5NIJIU" - }, - { - "title": "Ajeeb Dastan Hai Yeh - Dil Apna Aur Preet Parai (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dVkmnBLhQ24" - }, - { - "title": "Agar Tum Mil Jao โ€“ Zeher (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Vh8zMoM1G5U" - }, - { - "title": "Afsana Likh Rahi Hoon โ€“ Dard (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "H_x_ZOnpgvc" - }, - { - "title": "Aap Jaisa Koi โ€“ Qurbani (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jAHwdcSqwz4" - }, - { - "title": "Aaja Tujhko Pukare Mera Pyar - Neel Kamal (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "t863aipku9w" - }, - { - "title": "Aaja Sanam - Chori Chori (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NdcyioFjkgU" - }, - { - "title": "Aaja Re Pardesi - Madhumati (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "a8ZRgH2m5sI" - }, - { - "title": "Aaj Phir Jeene Ki Tamanna - Guide (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "375IoOQpIag" - }, - { - "title": "Aaj Dil Shayrana โ€“ Holiday (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fE4xrspFZiU" - }, - { - "title": "The Weeknd Feat. Daft Punk - Starboy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hZVk4fnnkso" - }, - { - "title": "The Vamps & Matoma - All Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wdpAPx--KUM" - }, - { - "title": "ZAYN & Taylor Swift - I Don't Wanna Live Forever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sOvwwozv-p4" - }, - { - "title": "Maroon 5 Feat. Kendrick Lamar - Don't Wanna Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dBU8aYCPuYo" - }, - { - "title": "Robbie Williams - Love My Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CRZcoItOZis" - }, - { - "title": "Louisa Johnson - So Good (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hCtgE_5BgTc" - }, - { - "title": "Rag'n'Bone Man - Human (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rvschAq-8G8" - }, - { - "title": "Olly Murs - Years & Years (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sIItubMcA_4" - }, - { - "title": "Little Mix - Shout Out To My Ex (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rP8L_7pH0_w" - }, - { - "title": "Ed Sheeran - Castle On The Hill (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DXAlsg7nS0Q" - }, - { - "title": "Jonas Blue Feat. RAYE - By Your Side", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "James Arthur - Say You Won't Let Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "utytyD6TNz8" - }, - { - "title": "Charli XCX Feat. Lil Yachty - After The Afterparty (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "JCdbY0A3iLE" - }, - { - "title": "JP Cooper - September Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DnQBDwLv_ks" - }, - { - "title": "Bruno Mars - Versace On The Floor (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PXfNwFwp6Ms" - }, - { - "title": "Hailee Steinfeld, Grey Feat. Zedd - Starving (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xwJyxUg68TQ" - }, - { - "title": "Ed Sheeran - Shape Of You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "i-5MCyqDwYQ" - }, - { - "title": "Clean Bandit Feat. Sean Paul & Anne-Marie - Rockabye (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "kWiaim1TZn0" - }, - { - "title": "Ali Gatie - Moonlight (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "cfq6xwzxDjI" - }, - { - "title": "Panic! At The Disco - Into The Unknown with Lead Vocals (Frozen 2 Karaoke Version)", - "id": "_Tffwi7z-ZQ" - }, - { - "title": "Fun - Some Nights", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cher Lloyd - Swagger Jagger (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pSY-pMPvWAA" - }, - { - "title": "Ed Sheeran - Small Bump (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HvSHu2QhZX4" - }, - { - "title": "Gym Class Heroes Feat. Adam Levine - Stereo Hearts (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "jv5kgLDMWAY" - }, - { - "title": "Glee Cast - Take A Bow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1KGNS0ccdQ0" - }, - { - "title": "Florence & The Machine - Shake It Out", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Paramore - Still Into You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zKH9nqacu-A" - }, - { - "title": "Calvin Harris ft. Florence Welch - Sweet Nothing (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "tAc9XQmIGWM" - }, - { - "title": "Lawson - Standing In The Dark (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CHU3MqCYIHE" - }, - { - "title": "JLS - Take A Chance On Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Zedd feat. Hayley Williams - Stay The Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PWVAuPp6ed0" - }, - { - "title": "Paloma Faith - Stone Cold Sober (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M9nbtY7rovU" - }, - { - "title": "Example - Say Nothing", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - Take It All", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Alexandra Burke - The Silence", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Katy Perry - Teenage Dream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WyyN94g1iPQ" - }, - { - "title": "Olly Murs - Thinking Of Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qLzlqVJDO00" - }, - { - "title": "JLS - The Club Is Alive", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gorgon City feat. Zak Abel - Unmissable (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LgVHff8hlV8" - }, - { - "title": "Joe McElderry - The Climb", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Taylor Swift - The Story Of Us (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tX63kTpnsN4" - }, - { - "title": "Black Eyed Peas - The Time (Dirty Bit) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DKsnxkn8iUU" - }, - { - "title": "Cover Drive - Twilight with Lyrics HD Vocal-Star Karaoke 4K", - "id": "KyNw__8ZgG4" - }, - { - "title": "Snow Patrol - This Isn't Everything You Are (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xVYm_uAts38" - }, - { - "title": "Matt Cardle - Run For Your Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7_GyMIS742k" - }, - { - "title": "Enrique Iglesias Feat. Ludacris - Tonight", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Paloma Faith - Upside Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JfGyKtXH7x0" - }, - { - "title": "Katy Perry - Waking Up In Vegas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fte0OsajsLo" - }, - { - "title": "Adele - Turning Tables", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Katy Perry - Walking On Air (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "u7DCc7F8psY" - }, - { - "title": "Paloma Faith - Trouble With My Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "C8oPEy2UG_E" - }, - { - "title": "Alex Clare - Too Close", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Duffy - Well Well Well (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wyDqF_J5JBg" - }, - { - "title": "Selena Gomez & The Scene - Who Says (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fNRhL3gwWKQ" - }, - { - "title": "Rudimental feat. Ella Eyre - Waiting All Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Rf_8oTUHm7k" - }, - { - "title": "Little Mix - Wings (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GAKK0SMZcZc" - }, - { - "title": "Jessie J - Who's Laughing Now", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Disclosure Feat. Aluna George - White Noise (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hWqhDZlgJyA" - }, - { - "title": "Charlene Soraia - Wherever You Will Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Je0HrriLSBg" - }, - { - "title": "The Wanted - Warzone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pv2W4k5LxQk" - }, - { - "title": "Lawson - When She Was Mine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AftXkFmbGRM" - }, - { - "title": "Lana Del Rey - Young & Beautiful (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rjKVTtLAZh8" - }, - { - "title": "Katy Perry - Wide Awake (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CdJyiv2B2_I" - }, - { - "title": "James Blunt - Wiseman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VYdZU250ueE" - }, - { - "title": "James Arthur - You're Nobody Til Somebody Loves You (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "NAQHI1Depnc" - }, - { - "title": "Cher Lloyd - With Ur Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9qIqJG_dZXc" - }, - { - "title": "Amelia Lily - You Bring Me Joy (Karaoke Version)", - "id": "mIyhHak0UmM" - }, - { - "title": "Robbie Williams - You Know Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "usgLdBIjKO0" - }, - { - "title": "Loveable Rogues - What A Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qFa4_ccNHBo" - }, - { - "title": "AC/DC - You Shook Me All Night Long (Karaoke Version)", - "id": "R5VVEo0PtHg" - }, - { - "title": "Imagine Dragons - It's Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lOk6c2IqN9k" - }, - { - "title": "Foxes - Youth", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ed Sheeran - Give Me Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fgkk6emVmQA" - }, - { - "title": "Tulisa - Young (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q_CXssDz4C8" - }, - { - "title": "Chris Brown - Don't Wake Me Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TeECa70Ykek" - }, - { - "title": "Jason Derulo - Don't Wanna Go Home", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kylie Minogue - Get Outta My Way (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p7p0kAVFcIg" - }, - { - "title": "Panic! At The Disco - Into The Unknown Karaoke Frozen 2 - Lyrics HD Vocal-Star", - "id": "9MbGCY9pAjc" - }, - { - "title": "Ash - Girl From Mars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CidQdtffCfc" - }, - { - "title": "Alexis Jordan - Happiness", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Elyar Fox - Do It All Over Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "legGe7FdEEo" - }, - { - "title": "The Script - For The First Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tMwgzd_nGVs" - }, - { - "title": "Alex Day - Forever Yours", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Pink - F**kin' Perfect (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ue9L6Sm8oZc" - }, - { - "title": "Ed Sheeran - Drunk (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v65ZthBN3bo" - }, - { - "title": "Coldplay - Charlie Brown with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Fp8iXW-7MFg" - }, - { - "title": "Zedd Feat. Foxes - Clarity (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gatG1996URo" - }, - { - "title": "Coldplay - Every Teardrop Is A Waterfall with Lyrics HD Vocal-Star Karaoke 4K", - "id": "UVHflH4633w" - }, - { - "title": "The Saturdays - Ego (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Jhn_Af6_TTI" - }, - { - "title": "Cascada - Evacuate The Dance Floor with Lyrics HD Vocal-Star Karaoke 4K", - "id": "3eAd8j2VAdY" - }, - { - "title": "The Coral - Dreaming Of You with Lyrics HD Vocal-Star Karaoke 4K", - "id": "i-7Cg2H2-w0" - }, - { - "title": "The Korgis - Everybody's Got To Learn Sometime (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DYe3R6FyWFg" - }, - { - "title": "Imagine Dragons - Demons (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kS2udi5yZZ0" - }, - { - "title": "JLS - Eyes Wide Shut", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Coldplay - Christmas Lights", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cee Lo Green - Cry Baby with Lyrics HD Vocal-Star Karaoke 4K", - "id": "6YSJNaWZV7Q" - }, - { - "title": "Brandon Flowers - Crossfire with Lyrics HD Vocal-Star Karaoke 4K", - "id": "PV5460cDVxA" - }, - { - "title": "Fleetwood Mac - Everywhere", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Rolling Stones - Doom & Gloom (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NgiwNyHlHUQ" - }, - { - "title": "Kesha - Die Young (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xSw-xGGN10Q" - }, - { - "title": "Dua Lipa - Don't Start Now (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "c55VVU0RiHc" - }, - { - "title": "Florence & The Machine - Dog Days Are Over", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Will Young - Come On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zo2rSMUQTFo" - }, - { - "title": "Little Mix - Change Your Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VdcR5xxlp4E" - }, - { - "title": "Robbie Williams - Different (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pZsF7UEQOgo" - }, - { - "title": "Foxes - Glorious", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Newman - Cheating", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Sigma Feat. Ella Henderson - Glitterball (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4zeatvgSJbo" - }, - { - "title": "Charli XCX - Famous (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JJucgA7BFu4" - }, - { - "title": "The 1975 - Chocolate (Karaoke Version)", - "id": "o4XGM2qfk0c" - }, - { - "title": "John Newman - Come and Get It", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Chipmunk Feat. Chris Brown - Champion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "whd1OX2KpIc" - }, - { - "title": "Taylor Swift - Begin Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mL1Q2_Anavs" - }, - { - "title": "Paolo Nutini - Candy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3L5FXzHp-Yk" - }, - { - "title": "Train - 50 Ways To Say Goodbye (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RZB-F5jtqFQ" - }, - { - "title": "Example - Changed The Way You Kiss Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Alyssa Reid Ft. Jump Smokers - Alone Again (Karaoke Version)", - "id": "W6J8YIunOPU" - }, - { - "title": "Beyonce - Best Thing I Never Had (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9vTjbaoV-SY" - }, - { - "title": "Skrillex & Diplo ft Justin Bieber - Where Are รœ Now (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "cmuv0Ea0rAc" - }, - { - "title": "Lana Del Rey - Blue Jeans (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jtx_0gCxVg4" - }, - { - "title": "Olly Murs - Busy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ubODVZ4cvSs" - }, - { - "title": "Rihanna - California King Bed (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IsTEWbHoElM" - }, - { - "title": "Pink - Blow Me (One Last Kiss) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PwYFbeZq7Po" - }, - { - "title": "Justice Collective - He Ain't Heavy He's My Brother (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "mZ7IT-zImOo" - }, - { - "title": "Silento - Watch Me (Whip Nae Nae) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4yMRfcn2NH8" - }, - { - "title": "Cheryl Cole - Call My Name (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6jnLvDJ5CHg" - }, - { - "title": "Sam Feldt ft. Kimberley Anne - Show me Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "g7kQmuANUnY" - }, - { - "title": "Olly Murs - Beautiful To Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Aa-efkXPuUY" - }, - { - "title": "Taylor Swift - Back To December (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4L5gNwHcY1A" - }, - { - "title": "Bastille - Flaws", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - Send My Love (To Your New Lover)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ariana Grande - Side To Side ft. Nicki Minaj (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MnsgLaA2AhA" - }, - { - "title": "La La La Karaoke", - "id": "Naughty Boy Ft. Sam Smith Karaoke Version" - }, - { - "title": "Melissa Steel Feat. Popcaan - Kisses For Breakfast (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "hfS0HvLGQB4" - }, - { - "title": "Fall Out Boy - My Songs Know What You Did In The Dark", - "id": "Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Bars & Melody - Hopeful (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U6rGvLJ_ET4" - }, - { - "title": "Zara Larsson - Ain't My Fault (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "h5SJ90hN_tI" - }, - { - "title": "Ghost Musical - With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Og_A-cBRGeg" - }, - { - "title": "Lady Gaga - Perfect Illusion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EpzFN6Qs36k" - }, - { - "title": "Birdy - Skinny Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Wvnz3JAFmxA" - }, - { - "title": "Ylvis - The Fox (What Does The Fox Say) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IuTD1x8XIpw" - }, - { - "title": "Bastille - Send Them Off! (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3SPTFm91Sig" - }, - { - "title": "Eyes Conveyed - Jacob & Goliath (Karaoke Version with Lyrics)", - "id": "DT4Xdz2lefo" - }, - { - "title": "Chainsmokers feat. Daya - Don't Let Me Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "002QcbPcGYY" - }, - { - "title": "Rudimental ft. Ed Sheeran - Lay It All On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lfHTaRnCNCI" - }, - { - "title": "Pink - Just Like Fire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7kLCiDHQQek" - }, - { - "title": "Drake - Hotline Bling", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Disclosure ft. Lorde - Magnets (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MierbksROvY" - }, - { - "title": "Demi Lovato - Cool For the Summer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cRXw8mXY7Ts" - }, - { - "title": "The Pierces - Kings (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_kx6YT7jRgQ" - }, - { - "title": "Parra for Cuva ft. Anna Naklab - Wicked Games (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dKLBEgZTkiM" - }, - { - "title": "R City Feat. Adam Levine - Locked Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MJiMZ0V9S1U" - }, - { - "title": "Taylor Swift - Welcome to New York (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "i5-YAjwYCZ0" - }, - { - "title": "Pixie Lott - Caravan Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zqyJMq1JrF8" - }, - { - "title": "Kiesza - Giant In My Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiesza - What Is Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Bring Me The Horizon - Drown with Lyrics HD Vocal-Star Karaoke 4K", - "id": "aHM-a8XzqUA" - }, - { - "title": "Years & Years - Desire", - "id": "Karaoke song with Lyrics Vocal-Star Karaoke" - }, - { - "title": "Paolo Nutini - Ten Out Of Ten (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bBTHC8x5xvQ" - }, - { - "title": "Professor Green ft. Tori Kelly - Lullaby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bdjjjGGA7IY" - }, - { - "title": "Oliver Heldens Ft. KStewart - Last All Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5VhqQ9ubQ_E" - }, - { - "title": "Shift K3Y - I Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KeUGWBAEc-U" - }, - { - "title": "Rizzle Kicks - Tell Her (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vEfGyVNvpI4" - }, - { - "title": "Lilly Wood & The Prick and Robin Schulz - Prayer In C (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "_gcnc2Libtk" - }, - { - "title": "George Ezra - Listen To The Man", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Will.I.Am ft. Cody Wise - It's My Birthday (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nGgukMoZPME" - }, - { - "title": "Zedd ft. Matthew Koma & Miriam Bryant - Find You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RF4kNOC4ThE" - }, - { - "title": "Twin Atlantic - Heart and Soul (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "k4nuTVWcYNo" - }, - { - "title": "Twenty One Pilots - Stressed Out (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iJ2XkSMWxFI" - }, - { - "title": "Circa Waves - T-Shirt Weather (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y0BWT2fIlLI" - }, - { - "title": "Bethan Leadley - Safe Lined", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Good Kisser Karaoke", - "id": "Usher Karaoke Version" - }, - { - "title": "Wilkinson ft Talay Riley - Dirty Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HokBVrIDK4Y" - }, - { - "title": "Troye Sivan - Happy Little Pill (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Jlljo7_615Q" - }, - { - "title": "Tove Lo Ft. Hippie Sabotage - Habits (Stay High) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wIx8TyDhn3E" - }, - { - "title": "Tove Lo - Talking Body (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6X1VwglLcQI" - }, - { - "title": "Avril Lavigne - Hot (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yn16t2w27Yk" - }, - { - "title": "Tom Odell - Concrete (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sKCrXpedMwE" - }, - { - "title": "Tinie Tempah Feat. Zara Larsson - Girls Like (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rSJprEi3UMU" - }, - { - "title": "Tiesto - Red Lights (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KMfGLD8XyQE" - }, - { - "title": "The Ting Tings - Only Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xVUK-_Rbmis" - }, - { - "title": "Tiesto ft. Matthew Koma - Wasted (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "seX-33ARmwQ" - }, - { - "title": "The Weeknd - The Hills (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RxYsa9r1wsU" - }, - { - "title": "Tom Odell - Long Way Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uLYeqQuIVPo" - }, - { - "title": "Tough Love - So Freakin' Tight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vTmOAOWFIy4" - }, - { - "title": "The Veronicas - You Ruin Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LuPkExYzwcg" - }, - { - "title": "The Stranglers - Golden Brown (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gesCU2mYXb4" - }, - { - "title": "The Pierces - The Devil Is A Lonely Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jU5Y7m9FxZs" - }, - { - "title": "Rumble Strips - Girls & Boys In Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HSUq5XaI1iI" - }, - { - "title": "The Vamps feat. Demi Lovato - Somebody To You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cO4mpcZZIvk" - }, - { - "title": "The Lemonheads - Mrs Robinson (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5JtpbM2W504" - }, - { - "title": "The Saturdays - Not Giving Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hrkQqKWtR4E" - }, - { - "title": "Magician Ft. Years & Years - Sunlight", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Mathis - Stop Look Listen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TfsbL2-EiKg" - }, - { - "title": "Johnny Mathis - The Most Beautiful Girl In The World (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "nkjtplmRySQ" - }, - { - "title": "Johnny Tillotson - Poetry In Motion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2uXKD_ZGvFM" - }, - { - "title": "Believe Karaoke", - "id": "Josh Groban Karaoke Version" - }, - { - "title": "Josh Groban - Alla Luce Del Sole (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mULtyp0cL9c" - }, - { - "title": "Journey - After All These Years (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TemRWyMTdqA" - }, - { - "title": "Julio Iglesias - Moonlight Lady (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UA3NKMxH8kA" - }, - { - "title": "Justin Bieber - U Smile (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "atbPmEcFhzU" - }, - { - "title": "Kaiser Chiefs - Every Day I Love You Less (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mspuYAWWJQk" - }, - { - "title": "Katie Melua - Call Off The Search (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vXimK0cJC3A" - }, - { - "title": "Kanye West - All Fall Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yrWTR4j_cN8" - }, - { - "title": "Kanye West ft. Jamie Foxx - Gold Digger (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kdOkkmdyWGA" - }, - { - "title": "Keane - A Bad Dream", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Keane - Atlantic", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Keane - Bend And Break", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Keane - Fly To Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Keane - Can't Stop Now", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Keane - I Should Have Cheated", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Keane - Somewhere Only We Know", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kelly Clarkson - Behind These Hazel Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ino8gFTozro" - }, - { - "title": "Kelly Clarkson - Gone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yfOvoBuMf1g" - }, - { - "title": "Kelly Clarkson - Beautiful Disaster (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U01ltafXLlE" - }, - { - "title": "Kelly Clarkson - Where Is Your Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6n_-O4kiezI" - }, - { - "title": "Kenny Chesney - Better as a Memory", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kenny Chesney - Young", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kenny Chesney - She Thinks My Tractor's Sexy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kenny Chesney - Something Sexy About The Rain", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kenny Chesney - Keg In The Closet Live", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kenny Rogers - Buried Treasure (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "e3Qud8xz5xw" - }, - { - "title": "Kenny Rogers - Crazy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fcz6LKKKZxY" - }, - { - "title": "Kenny Rogers - Don't Fall In Love With A Dreamer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hTKHlwbghX8" - }, - { - "title": "Kenny Rogers - Every Time Two Fools Collide (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rK_14UohtoY" - }, - { - "title": "Kenny Rogers - I Am The Greatest (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AHY9yXmA7uw" - }, - { - "title": "Kenny Rogers - I Can't Unlove You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "shwdiizG0Po" - }, - { - "title": "Kenny Rogers - Morning Desire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wsge9TX7xbg" - }, - { - "title": "Kenny Rogers - The Wind Beneath My Wings (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OEfqgOJt5gY" - }, - { - "title": "Kenny Rogers - Sweet Music Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fLvaIiSfTOE" - }, - { - "title": "Kenny Rogers - Buy Me A Rose (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wSJOmbP5MKs" - }, - { - "title": "Kenny Rogers - I Just Dropped In (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "58hF_J6PJlY" - }, - { - "title": "Kenny Rogers - Until Forever's Gone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1tm5DG85ItQ" - }, - { - "title": "Kenny Rogers - When A Man Loves A Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oWOermMZ6jQ" - }, - { - "title": "Kiki Dee - I've Got The Music In Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kings Of Leon - Closer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M-c7Bb6ol7c" - }, - { - "title": "Kiss - Calling Dr. Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Christine Sixteen", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Detroit Rock City", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - God Of Thunder", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Hard Luck Woman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - I Love It Loud", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Lick It Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Psycho Circus", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Love Gun", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Rock And Roll All Night", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Rocket Ride", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Shout It Out Loud", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiss - Tears Are Falling", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Selena Gomez - Look At Her Now (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "d6x6MhMIKDo" - }, - { - "title": "Kt Tunstall - Maybe It's A Good Thing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Lko0x4e5szk" - }, - { - "title": "Kt Tunstall - Everything Has Its Shape (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "30Hf_aHY8vg" - }, - { - "title": "Kylie Minogue - Breathe", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kylie Minogue - Love At The First Time", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kylie Minogue - Chocolate", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kylie Minogue - Slow", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lady Antebellum - Our Kind Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3wMQVjM_Jus" - }, - { - "title": "Lady Antebellum - Just A Kiss (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LZ5agBhoh4c" - }, - { - "title": "Leann Rimes - Share My Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sVVJD4VjIs8" - }, - { - "title": "Lee Ann Womack - The Fool (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "edpQ04pv-ko" - }, - { - "title": "Lenny Kravitz - California (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SqJtWNVLPU0" - }, - { - "title": "Lenny Kravitz - Believe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KZeceiNzWqk" - }, - { - "title": "Lenny Kravitz - Calling All Angels (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O5RP9viE6kM" - }, - { - "title": "Lionel Richie - Love Will Find A Way (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_Lpi4Efwb6E" - }, - { - "title": "Lenny Kravitz - Lady (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xZomrNuZtOg" - }, - { - "title": "Lonestar - Take Me Out To The Ballgame (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JKzmar-_SPk" - }, - { - "title": "Lordi - Hard Rock Hallelujah (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1Eduxe0RvQc" - }, - { - "title": "Luther Vandross - Buy Me A Rose (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6CRuywPLECQ" - }, - { - "title": "Luther Vandross - Don't Want To Be A Fool (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5ud13zTmKTM" - }, - { - "title": "Luther Vandross - Give Me The Reason (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Myxgu7hYjys" - }, - { - "title": "Luther Vandross - If I Didn't Know Better (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IhBflvPN42U" - }, - { - "title": "Luther Vandross - Never Let Me Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OkTTusCJyKs" - }, - { - "title": "Luther Vandross - Power of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cF8-_MhY_MQ" - }, - { - "title": "Luther Vandross - Since I lost My Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sLwfQyJTdzA" - }, - { - "title": "Luther Vandross - So Amazing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IF0erU5k4Jo" - }, - { - "title": "Luther Vandross - Your Secret Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xVM-B1YYm3g" - }, - { - "title": "Luther Vandross - She Is A Super Lady (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "07xy3UXr1JY" - }, - { - "title": "Luther Vandross - I'll Let You Slide (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GSG4EJ_M7Qo" - }, - { - "title": "Lynyrd Skynyrd - Free Bird", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lynyrd Skynyrd - Call Me The Breeze", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lynyrd Skynyrd - Don't Ask Me No Questions", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lynyrd Skynyrd - Gimme Three Steps", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lynyrd Skynyrd - I Ain't The One", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lynyrd Skynyrd - Saturday Night Special", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lynyrd Skynyrd - Simpleman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lynyrd Skynyrd - Swamp Music", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lynyrd Skynyrd - Sweet Home Alabama (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xvZl3sC2bLY" - }, - { - "title": "Macy Gray - Finally Made Me Happy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v3KKl-er-u0" - }, - { - "title": "Madness - Lola", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Manic Street Preachers - 30 Year War", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Manic Street Preachers - Builder Of Routines", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Manic Street Preachers - Running Out Of Fantasy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Manic Street Preachers - 3 Ways To See Despair", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mariah Carey - I Wish You Knew", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mariah Carey - Mine Again", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mariah Carey - Stay the Night", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lead The Way Karaoke", - "id": "Mariah Carey Karaoke Version" - }, - { - "title": "Mariah Carey - Fly Like A Bird", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mariah Carey - Shake It Off", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mariah Carey - We Belong Together", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mariah Carey - Alone In Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mariah Carey - And You Don't Remember", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mariah Carey - There's Got To Be Away", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Marilyn Manson - Sweet Dreams (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-4J3PTvziDM" - }, - { - "title": "Marilyn Monroe - Diamonds Are A Girls Best Friend (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "NBAbkGE2cSc" - }, - { - "title": "Marilyn Monroe - I Wanna Be Loved By You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "I3NTzlffp_k" - }, - { - "title": "Marilyn Monroe - Some Like It Hot (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0tU8jdFrsss" - }, - { - "title": "Marilyn Monroe - Every Baby Needs A Da Da Daddy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jjZYebZ-_J0" - }, - { - "title": "Marilyn Monroe - I'm Through With Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JIn3Ir36M0o" - }, - { - "title": "Marilyn Monroe - When Love Goes Wrong (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WQBKKGZB8-0" - }, - { - "title": "Maroon 5 - Misery (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KMvpvIRGJDQ" - }, - { - "title": "Marty Wilde - Bad Boy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OEORfrhDMjA" - }, - { - "title": "Marty Wilde - Donna (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jFpOqheUnbY" - }, - { - "title": "Marty Wilde - Endless Sleep (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l3J_dVCpOGo" - }, - { - "title": "Marvin Gaye - Too Busy Thinking About My Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-ilOJhLXbNM" - }, - { - "title": "Marvin Gaye - Distant Lover (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0nUe_YZ2hDc" - }, - { - "title": "Marvin Gaye - You Are All I Need To Get By (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CCt90h-QN14" - }, - { - "title": "Marvin Gaye - Chained (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bco4uIFSakY" - }, - { - "title": "Mary J. Blige - Reflections (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YCd9Uhr4P14" - }, - { - "title": "Matchbox - Somewhere Over The Rainbow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "julxQ6mgIpk" - }, - { - "title": "Matchbox Twenty - Rest Stop (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mvvTO31eSGg" - }, - { - "title": "Matt Monro - If I Never Sing A Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GU2druZbb3A" - }, - { - "title": "Matt Monro - If There Ever Is A Next Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZqhynxWGw34" - }, - { - "title": "Matt Monro - I Love The Little Things (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "E2cesMo9nEo" - }, - { - "title": "Matt Monro - Once In Every Long And Lonely While (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-wdGIx504f0" - }, - { - "title": "Matt Monro - Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tVJyLwJMwks" - }, - { - "title": "Before You Go Karaoke", - "id": "Matt Monro Karaoke Version" - }, - { - "title": "The Mavericks - From Hell To Paradise (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "369-KBuMxEU" - }, - { - "title": "Maxi Priest - Some Guys Have All The Luck (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cgKczomE9H8" - }, - { - "title": "McFly - Five Colours In Her Hair (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QX-9cT1vLT0" - }, - { - "title": "Meat Loaf - Couldn't Have Said No Better", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Like A Rose", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Faster Than The Speed Of Night", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Forever Young", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Heaven Can Wait", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Hot Summer Nights", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - I'd Lie For You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Objects In The Rear View Mirror", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Life Is A Lemon And I Want My Money Back", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Meat Loaf - Midnight At The Lost And Found", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Modern Girl", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Not a Dry Eye In The House", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Read 'em And Weep", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Rock And Roll Dreams Come Through", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Testify", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Two Out Of Three Ain't No Bad", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Bad For Good", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "MeatLoaf - You Took The Words Right Out Of My Mouth", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Meat Loaf - Amnesty Is Granted", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - Cry To Heaven", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meat Loaf - If It Ain't Broke Break It", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mel C - I Turn To You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5Ex4bq9ptHo" - }, - { - "title": "Michael Ball - Don't Rain On My Parade (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qtU6Z7Ntugg" - }, - { - "title": "Michael Ball - The Winner Takes It All (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p-kdrqSNTmU" - }, - { - "title": "Michael Buble - Lost (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kAiPpZTjVps" - }, - { - "title": "Michael Buble - Always On My Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FoE3SuKvcEI" - }, - { - "title": "Michael Buble - A Foggy Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kOqYM5TCn9c" - }, - { - "title": "Michael Buble - Call Me Irresponsible (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0IjThELNKBQ" - }, - { - "title": "Michael Buble - Can't Help Falling In Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8l6tPJxRmGE" - }, - { - "title": "Michael Buble - Come Fly With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gwCU7yMr6xM" - }, - { - "title": "Michael Buble - Everything (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6DISV_dZGw8" - }, - { - "title": "Michael Buble - How Can You Mend A Broken Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xxqAmTMPOOs" - }, - { - "title": "Michael Buble - Me And Mrs. Jones (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "whyU3GgBayk" - }, - { - "title": "Michael Buble - Moondance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v3erENqEUhU" - }, - { - "title": "Michael Buble - Nice n Easy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XC68B6GsfV4" - }, - { - "title": "Michael Buble - Save The Last Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "glqXQ5-uIIk" - }, - { - "title": "Michael Buble - Try A Little Tenderness (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vYsdZDTjHMM" - }, - { - "title": "Michael Buble - You And I (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oRe0KTZ264Q" - }, - { - "title": "Michael Buble - You'll Never Find Another Love Like Mine (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "sBRsQiwzwA4" - }, - { - "title": "Michael Buble - I've Got The World On A String (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "H8gfiLy_O40" - }, - { - "title": "Michael Jackson - Ease Down The Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OTNjHceYfx8" - }, - { - "title": "Michael Jackson - Working Day And Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pVIp963n2Uo" - }, - { - "title": "Michael Jackson - Wanna Be Startin Something (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Tcd9Sw8yH3I" - }, - { - "title": "Michael Jackson - Black Or White (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "E6L-bZahFXg" - }, - { - "title": "Michael Jackson - We've Got A Good Thing Going (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZFWpk7VBjzA" - }, - { - "title": "Michael Jackson - Hold Back The Tears (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jPMKh6SA6Hk" - }, - { - "title": "Human Nature Karaoke", - "id": "Michael Jackson Karaoke Version" - }, - { - "title": "Michelle Mc Manus - All This Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l1dtViTF_og" - }, - { - "title": "Mick Jagger - Hard Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mFepOE7sOW8" - }, - { - "title": "Mika - I See You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5f9FJ-Z3scA" - }, - { - "title": "Mika - One Foot Boy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tjX7g7Xsf6o" - }, - { - "title": "Mike + The Mechanics - All I Need Is A Miracle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_ugmAzklvYc" - }, - { - "title": "Mike + The Mechanics - Living Years (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w95C0eVUEf8" - }, - { - "title": "Mike + The Mechanics - Nobody's Perfect (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hpBwkjCFsEU" - }, - { - "title": "Mike + The Mechanics - Silent Running (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NOuizeOXVOs" - }, - { - "title": "Miley Cyrus - Can't Be Tamed (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Sn1tDbvZdWw" - }, - { - "title": "Miranda Cosgrove - Oh Oh (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RT2AZs-P1ls" - }, - { - "title": "Millie Small - My Boy Lollipop (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6vxNUFlHuYU" - }, - { - "title": "Miranda Lambert - Hurts To Think (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9nxGbu70RTg" - }, - { - "title": "Monkees - Valleri (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2DZlSorV4Ww" - }, - { - "title": "Morrissey - Glamorous Glue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dILcBxuUcgQ" - }, - { - "title": "Nat King Cole - Let True Love Begin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "N2FRhXU7KgU" - }, - { - "title": "Nat King Cole - You're My Everything (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KLKdDRGZNyY" - }, - { - "title": "Nat King Cole - That Sunday That Summer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2CFarf7fqQ4" - }, - { - "title": "Nat King Cole - If Love Ain't There (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "46Ok2Wcfi8w" - }, - { - "title": "Ne-Yo - Sexy Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aO6YFZmoPdg" - }, - { - "title": "Ne-Yo - When You're Mad (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dGzBplAnU5A" - }, - { - "title": "Miss Independent Karaoke", - "id": "Ne-Yo Karaoke Version" - }, - { - "title": "Neil Diamond - Acapulco (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xjp0U0MIP9Y" - }, - { - "title": "Neil Diamond - Amazed And Confused (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fKh2p33PgKs" - }, - { - "title": "Neil Diamond - And The Grass Won't Pay No Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lNiPyRvfDhw" - }, - { - "title": "Neil Diamond - Brooklyn Roads (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "a2NUUrWvKXc" - }, - { - "title": "Coming To America Karaoke", - "id": "Neil Diamond Karaoke Version" - }, - { - "title": "Neil Diamond - Desiree (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "07GcRgsz2pI" - }, - { - "title": "Neil Diamond - Free Man In Paris (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1Y8LWzV7LNI" - }, - { - "title": "Neil Diamond - Girl, You'll Be A Woman Soon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7LtT8G7TyvE" - }, - { - "title": "Neil Diamond - Glory Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mfhw3m---80" - }, - { - "title": "Neil Diamond - I Am A Said (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "htZlMExjink" - }, - { - "title": "Neil Diamond - Hey Louise (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yhGWImwxC_I" - }, - { - "title": "Neil Diamond - A Mission Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zsaRhb48Py8" - }, - { - "title": "Neil Diamond - Kentucky Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JKL-JgsCnRs" - }, - { - "title": "Neil Diamond - Angel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rsxDgYwzS1A" - }, - { - "title": "Neil Diamond - Memphis Flyer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9UiIgm8ShYs" - }, - { - "title": "Neil Diamond - Star Flight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "khvta7bzrf8" - }, - { - "title": "Neil Diamond - Stones (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mOd_yf6Mq0E" - }, - { - "title": "Neil Diamond - If You Know What I Mean (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8sxWJLTnnxI" - }, - { - "title": "Neil Diamond - Crunchy Granola Suite (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6v2Ex5G6-2I" - }, - { - "title": "Neil Diamond - Soolaimon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y7IhX1Fpudo" - }, - { - "title": "Neil Diamond - Brooklyn On A Saturday Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NcVfjLc2FIg" - }, - { - "title": "Neil Diamond - Dancing In The Street (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "87mWU1ABjho" - }, - { - "title": "Neil Diamond - Done Too Soon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "owTxDIPTs7w" - }, - { - "title": "Neil Diamond - God Only Knows (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oZmFYeJMEH4" - }, - { - "title": "Neil Diamond - Home Is a Wounded Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J6beRDm66H0" - }, - { - "title": "Neil Diamond - It's A Trip Go For The Moon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CXM7PYC_x98" - }, - { - "title": "Neil Diamond - Surviving The Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3f2hp3WadqY" - }, - { - "title": "Neil Diamond - Let It Be Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U_Muz6tPjao" - }, - { - "title": "Neil Diamond - Yes I Will Lady Magdalene (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "liqVJScMApM" - }, - { - "title": "Neil Diamond - You Got Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zeM5GQ7zKEc" - }, - { - "title": "Neil Diamond - The Boat That I Row (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iCRPgYbWQ7U" - }, - { - "title": "Neil Diamond - Save The Last Dance For Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n-kXXcqN9fM" - }, - { - "title": "Neil Diamond - Pretty Amazing Grace (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0_DOnb3bO_I" - }, - { - "title": "Neil Diamond - America (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fx-qG2abFaI" - }, - { - "title": "Neil Diamond - Beautiful Noise (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3k8LkGpVFHo" - }, - { - "title": "Neil Diamond - Canta Libre (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CCwAugHv6rQ" - }, - { - "title": "Neil Diamond - Coldwater Morning (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "izIZNuzpuJg" - }, - { - "title": "Neil Diamond - Delirious Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OiLjZSJ5eHY" - }, - { - "title": "Neil Diamond - Someone Who Believes In You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ds1N4N394Ko" - }, - { - "title": "Neil Diamond - All I Really Need Is You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6aQUBiuBPfo" - }, - { - "title": "Neil Diamond - Thank The Lord For The Night Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NHi_9PTHPgU" - }, - { - "title": "Neil Diamond - Hooked On The Memory Of You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WJlgvf6a49I" - }, - { - "title": "Neil Diamond - Morning Has Broken (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zbIZn9vIbsA" - }, - { - "title": "Neil Diamond - Joy To The World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lPCV8zkSsNQ" - }, - { - "title": "Neil Diamond - Elijah's Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2eLzBTW6Ruc" - }, - { - "title": "Neil Diamond - Sleep With Me Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XcunmuJOW2w" - }, - { - "title": "Neil Diamond - Hell Yeah (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hCynUUDJA3g" - }, - { - "title": "Neil Diamond - This Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "N0DkrctkbI8" - }, - { - "title": "Neil Diamond - Midnight Dream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eiS2nLf-cgM" - }, - { - "title": "Neil Diamond - Brooklyn Roads (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "k3QID6nvYvg" - }, - { - "title": "Neil Diamond - Melody Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "C92afZ_BjT4" - }, - { - "title": "Neil Diamond - You've Got Your Troubles (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GPLh7X8rCNU" - }, - { - "title": "Neil Diamond - The Freedom Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ny6M0gdmoIk" - }, - { - "title": "Neil Young - Harvest Moon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MIyneQFY5O0" - }, - { - "title": "Neil Young - Cinnamon Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n61XJM49l4M" - }, - { - "title": "Nelly Furtado - I am Like A Bird (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5WLXpS2g1a0" - }, - { - "title": "Nelly Furtado - Say It Right (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M7YXN0HQvkA" - }, - { - "title": "New Kids On The Block - Summertime (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UgWLJyTsps4" - }, - { - "title": "Newton Faulkner - Gone In The Morning (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DMTmw24XzVY" - }, - { - "title": "Nick Lowe - Breaking Glass (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pusMfQp11jc" - }, - { - "title": "Nick Lowe - I Knew The Bride (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "66yOmooz5Hc" - }, - { - "title": "Nina Simone - Feeling Good (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vpoBvocpuno" - }, - { - "title": "Nina Simone - My Baby Just Cares For Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n-1tPNdg34k" - }, - { - "title": "Norah Jones - Thinking About You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HO4yOV9oGgw" - }, - { - "title": "Norah Jones - What I Am To You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q5UkqXgPGN4" - }, - { - "title": "Norah Jones - Sunrise (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oZ3IrOhqRBE" - }, - { - "title": "Norah Jones - Those Sweet Words (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "H1NJeXyqPb0" - }, - { - "title": "Oasis - Rockin' Chair (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "V609EFuKxds" - }, - { - "title": "Ocean Colour Scene - Magic Carpet Days (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FwcPUFCqdNU" - }, - { - "title": "Olivia Newton-John And Elo - Xanadu (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kpEqN_02isg" - }, - { - "title": "Olivia Newton-John - Physical (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uglPo0AeAj8" - }, - { - "title": "OneRepublic - Stop & Stare (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "34KEa4zeiAQ" - }, - { - "title": "Crazy Train Karaoke", - "id": "Ozzy Osbourne Karaoke Version" - }, - { - "title": "Ozzy Osbourne - Mama I'm Coming Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7OKPUtfjWBE" - }, - { - "title": "Ozzy Osbourne - Bark At The Moon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "71NE5zYHPLg" - }, - { - "title": "Ozzy Osbourne - Sato (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m_jKL84_zcQ" - }, - { - "title": "Ozzy Osbourne - Perry Mason (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RB75Bbj8nWw" - }, - { - "title": "Paris Hilton - Nothing In This World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-dIVDkrd5c8" - }, - { - "title": "Patsy Cline - I Fall To Pieces (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rWEJAVRBT5I" - }, - { - "title": "Patsy Cline - Come On In (And Make Yourself At Home) (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "sWe0J7jAR7E" - }, - { - "title": "Paul Anka - Jump (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QctBVBhaTq4" - }, - { - "title": "Paul Anka - Smells Like Teen Spirit (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "E61ce_TKi3w" - }, - { - "title": "Paul Anka - Time After Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rZskws85NBo" - }, - { - "title": "Paul Anka - Do I Love You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pH330YYpr9M" - }, - { - "title": "Paul Mccartney - Ebony and Ivory (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v7ZNLnPZa1M" - }, - { - "title": "Paul Mccartney - Twenty Flight Rock (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kyX3V6KoYmY" - }, - { - "title": "Paul Mccartney - All Things Must Pass (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3RavH19i2L0" - }, - { - "title": "Maybe I'm Amazed Karaoke", - "id": "Paul Mccartney Karaoke Version" - }, - { - "title": "Peabo Bryson - Can You Stop The Rain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ofXOC9qlvJE" - }, - { - "title": "Peabo Bryson - Feel The Fire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HVMTmnCK3VA" - }, - { - "title": "Peabo Bryson - Show And Tell (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BUCcT-Mz0Qo" - }, - { - "title": "Perry Como - Father Of Girls (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U9D8SIKE4Fk" - }, - { - "title": "Pet Shop Boys - Always On My Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OEkx-Jvj8RA" - }, - { - "title": "Petula Clark - Colour Of My World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xx8lDJHv_EY" - }, - { - "title": "Phil Collins - Can't Stop Loving You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DbVt3rTKTzU" - }, - { - "title": "Phil Collins - Everything That I Am (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p-vSK7tZLOI" - }, - { - "title": "Phil Collins - Like China (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GZcYCLdI7YQ" - }, - { - "title": "Pink - Stupid Girls (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pvgdBcXtObk" - }, - { - "title": "Pink - Please Don't Leave Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VbDJTHpEzTg" - }, - { - "title": "Pink - Funhouse (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pl1RIN-OkdU" - }, - { - "title": "Pink - Trouble (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CDpuPiTtmpY" - }, - { - "title": "Poison - Talk Dirty To Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4vvOoph7ptg" - }, - { - "title": "The Pussycat Dolls - Wait a Minute (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fRVM64R8wpw" - }, - { - "title": "Queen - Fat Bottomed Girls (Karaoke Version)", - "id": "SVG7rTIuXkE" - }, - { - "title": "Queen - It's A Hard Life (Karaoke Version)", - "id": "GWFDKT7j8Z0" - }, - { - "title": "Queen - Jealousy (Karaoke Version)", - "id": "MaQAG7zEaJ4" - }, - { - "title": "Queen - Pain Is So Close To Pleasure (Karaoke Version)", - "id": "jsq7TmTPDv4" - }, - { - "title": "Queen - Now I'm Here (Karaoke Version)", - "id": "ld0xarkyXYM" - }, - { - "title": "Queen - Big Spender (Karaoke Version)", - "id": "WENiw05fgBI" - }, - { - "title": "Queen - Tie Your Mother Down (Karaoke Version)", - "id": "ofGb2qiSCGA" - }, - { - "title": "Randy Crawford - You Might Need Somebody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8DCpZ_DuLM0" - }, - { - "title": "Randy Crawford - Time For Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FMWcsnWr23Q" - }, - { - "title": "My Wish Karaoke", - "id": "Rascal Flatts Karaoke Version" - }, - { - "title": "Rascal Flatts - Summer Young (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IM7H-LPBmkQ" - }, - { - "title": "Ray Charles - I Got A Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L3W8hlrhcVA" - }, - { - "title": "Ray Charles - Let's Go Get Stoned (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pXZrpAPFyLw" - }, - { - "title": "Ray Charles - I Can't Stop Loving You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IVtqqmVhbE8" - }, - { - "title": "Reba Mcentire - Whoever's In New England (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "A2R2FMoo318" - }, - { - "title": "Reba Mcentire - How Blue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SfSJg6znbHM" - }, - { - "title": "Rihanna - We Ride (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lm_dlnsKae0" - }, - { - "title": "Ritchie Valens - Come On Let's Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jQX7TSaTNLc" - }, - { - "title": "Ricky Martin - Spanish Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cH254YTTjEg" - }, - { - "title": "Ricky Nelson - My Babe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pTqeCBcilVw" - }, - { - "title": "Ricky Nelson - That's All She Wrote (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IwnKGtsiIdA" - }, - { - "title": "Ringo Starr - Weight Of The World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WaxjgRWHRAk" - }, - { - "title": "Robbie Williams - A Place To Crash (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0-YB8-cxRI4" - }, - { - "title": "Robbie Williams - Love Somebody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NN_eRPsXVwc" - }, - { - "title": "Robbie Williams - Come Undone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wMJVn91R9UA" - }, - { - "title": "Robbie Williams - Eternity (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hDWyosV4NGU" - }, - { - "title": "Robbie Williams - Handsome Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6b5HXUQzt9w" - }, - { - "title": "Robbie Williams - Hot Fudge (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KBpRlOI7uBM" - }, - { - "title": "Robbie Williams - How Peculiar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jZLxqClz9z8" - }, - { - "title": "Robbie Williams - Lovelight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pE5JtznTeuo" - }, - { - "title": "Robbie Williams - Get A Little High (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "S3P2WOpfAc4" - }, - { - "title": "Robbie Williams - Viva Life On Mars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gcXbgKCbYFU" - }, - { - "title": "Roberta Flack - Where Is The Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kuyaFL6nUXU" - }, - { - "title": "Robson and Jerome - I Believe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XP5NKuUW96c" - }, - { - "title": "Rod Stewart - Baby Jane (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Gdd2UgxZH1g" - }, - { - "title": "Rod Stewart - Downtown Train (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "T9k_PmLvA68" - }, - { - "title": "Rod Stewart - Every Beat Of My Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "85K-19Xo8Ro" - }, - { - "title": "Rod Stewart - Faith Of The Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fblO5w0Hy80" - }, - { - "title": "Rod Stewart - Have I Told You Lately (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sjtOm0abmL4" - }, - { - "title": "Rod Stewart - I was only Joking (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ci9k913nExw" - }, - { - "title": "Coldplay - Orphans (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4bFPGdKK_v4" - }, - { - "title": "Rod Stewart - In A Broken Dream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3UvNCyyywR0" - }, - { - "title": "Halsey - Clementine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HaimP-H3Cz0" - }, - { - "title": "Rod Stewart - Just Like A Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tZm8_JZDaPU" - }, - { - "title": "Rod Stewart - Let The Day Begin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "83H6qRZJ-VA" - }, - { - "title": "Rod Stewart - Love Train (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yI2ls71iFaE" - }, - { - "title": "Rod Stewart - She Makes Me Happy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DBN9RicM9uU" - }, - { - "title": "Rod Stewart - Beautiful Morning (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3YWrZbGntMM" - }, - { - "title": "Rod Stewart - Can't Stop Me Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_CaplbaC6mE" - }, - { - "title": "Rod Stewart - Finest Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-pqDmAfGgng" - }, - { - "title": "Rod Stewart - Sexual Religion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wDPUW40potQ" - }, - { - "title": "Rod Stewart - Tom Traubert's Blues (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m9GCpCmaerA" - }, - { - "title": "Rod Stewart - Brighton Beach (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-VJME-ZIFzs" - }, - { - "title": "Rod Stewart - Scarred And Scared (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "A7PEBN31qR0" - }, - { - "title": "Rod Stewart Ft. Dolly Parton - Baby It's Cold Outside (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "gLmPbDahE34" - }, - { - "title": "Rod Stewart With Jennifer Hudson - Let It Be Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0VTKXI7Dq2g" - }, - { - "title": "Roger Miller - Little Toy Trains (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OAeBloix4N0" - }, - { - "title": "Rolling Stones - Heaven (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1dI1IFMCvCg" - }, - { - "title": "Wild Horses Karaoke", - "id": "The Rolling Stones Karaoke Version" - }, - { - "title": "The Rolling Stones - Paint It Black (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ETqe8SgkmOk" - }, - { - "title": "Roxy Music - The Price Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MlLPRajczQI" - }, - { - "title": "California Blue Karaoke", - "id": "Roy Orbison Karaoke Version" - }, - { - "title": "Roy Orbison - Crawling Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GmmcgAPUTKM" - }, - { - "title": "Roy Orbison - Indian Wedding (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1MTZo328KOk" - }, - { - "title": "Roy Orbison - Lana (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TorZxPPzPlU" - }, - { - "title": "Roy Orbison - She is A Mystery To Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "z6uvo04MtlU" - }, - { - "title": "Roy Orbison - Let's Make a Memory (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aMaYeSi4cxo" - }, - { - "title": "Roy Orbison - Heartbreak Radio (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dxsi_hscx_w" - }, - { - "title": "Roy Orbison - Go Go Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pcKE11iew6I" - }, - { - "title": "Roy Orbison - Born To Be Loved By You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dds-9ynAvEI" - }, - { - "title": "Roy Orbison - Dream You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uini69hFFvQ" - }, - { - "title": "Roy Orbison - The Comedians (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J_cDym-127M" - }, - { - "title": "Roy Orbison - Uptown (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aywGUmiTY5E" - }, - { - "title": "Roy Orbison - Candy Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tQPsiTI00uQ" - }, - { - "title": "Roy Orbison - Dream Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hUDBLmeMWhU" - }, - { - "title": "Roy Orbison - Claudette (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_0rvoneuYSc" - }, - { - "title": "Roy Orbison - Mean Woman Blues (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "onnAMEBZxS8" - }, - { - "title": "Roy Orbison - Ooby Dooby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0Weu9UQt8DA" - }, - { - "title": "Roy Orbison - You're My Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DMbrdthlQpg" - }, - { - "title": "Roy Orbison - Windsurfer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QW4b6O-nxtQ" - }, - { - "title": "Roy Orbison - There'll Be No Teardrops Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9N0Ne434Xp8" - }, - { - "title": "Roy Orbison - What About Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_gVxGQexApc" - }, - { - "title": "Roy Orbison - Flowers (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Mt81ApA_t_8" - }, - { - "title": "Roy Orbison - Rockhouse (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "offDyv3Io6A" - }, - { - "title": "Roy Orbison - So Young (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gjuXp-D6Nwo" - }, - { - "title": "Roy Orbison - A Mansion On The Hill (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pO1tM8j1Wj8" - }, - { - "title": "Roy Orbison - Sleepy Hollow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "08YWWDR7wUE" - }, - { - "title": "Roy Orbison - In The Real World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BIJv-9cG2hI" - }, - { - "title": "Roy Orbison - Indian Summer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3UNEvXlYm8M" - }, - { - "title": "S Club 7 - Bring It All Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PN8GzEeY6uo" - }, - { - "title": "S Club 7 - Have You Ever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ORGZvYIE4c0" - }, - { - "title": "Sam Cooke - Bring It On Home To Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QMv0DFY9BM0" - }, - { - "title": "Sam Cooke - That's It I Quit I'm Movin' On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "--rOG6AB9TA" - }, - { - "title": "Scouting For Girls - Life's Too Short (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1gQOp_7DfBA" - }, - { - "title": "Seal - Kiss From A Rose (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fRyp1pAsisw" - }, - { - "title": "Seal - Free (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AkcRlF6V4sg" - }, - { - "title": "Selena Gomez - Tell Me Something I Don't Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PoN9AYxd1TQ" - }, - { - "title": "Shakin' Stevens - A Love Worth Waiting For (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yTHREQFCiHM" - }, - { - "title": "Shakin' Stevens - Cry Just A Little Bit (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LMCxS2-pfr4" - }, - { - "title": "Shakin' Stevens - Green Door (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PAnVdW2WFCc" - }, - { - "title": "Shakin' Stevens - Fire Down Below (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x8XxhfmYWnU" - }, - { - "title": "Shakin' Stevens - Somewhere In The Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gPFM02fNOZU" - }, - { - "title": "Shakira - Ready For The Good Times (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tvj2zWguXLg" - }, - { - "title": "Shakira - Rules (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oo6jEen9KUI" - }, - { - "title": "Shakira - The One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "16UnAYRy2W0" - }, - { - "title": "Shakira - Gypsy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aeePMb02huw" - }, - { - "title": "Shania Twain - Any Man Of Mine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J874mTlqDIE" - }, - { - "title": "Shania Twain - Honey I'm Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qwDzTZVkSBk" - }, - { - "title": "Shania Twain - Don't be Stupid (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "txf9GG3VZV0" - }, - { - "title": "Shania Twain - Ka Ching (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YoF68VjrAb8" - }, - { - "title": "Shania Twain - Party For Two (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PLCNHVBvdVM" - }, - { - "title": "Shania Twain - What A Way To Wanna Be (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WiURXtPTG0k" - }, - { - "title": "Shania Twain - Black Eyes Blue Tears (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-YETQ4V94VA" - }, - { - "title": "Shinedown - Burning Bright (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WYB5HTdgOgY" - }, - { - "title": "Shirley Bassey - The Living Tree (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Uf9lerAQzPs" - }, - { - "title": "Shirley Bassey - I Am What I Am (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JQlnK95quKE" - }, - { - "title": "Shirley Bassey - When You Smile (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HSB5V9Bj0nQ" - }, - { - "title": "Shirley Bassey - Sweet Dreams (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1JniC0jWqAg" - }, - { - "title": "Shirley Bassey - Get The Party Started (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iW4BVIxFVL4" - }, - { - "title": "Showaddywaddy - Dancin' Party (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fPSTfR6CUK4" - }, - { - "title": "Showaddywaddy - Hey Rock And Roll (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tSoVzMtU6YQ" - }, - { - "title": "Showaddywaddy - A Night At Daddy Gees (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "o78fis5HVEM" - }, - { - "title": "Simple Minds - Someone Somewhere In Summertime (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sf_t3PFuQhs" - }, - { - "title": "Simply Red - Something Got Me Started (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gIwed93P0po" - }, - { - "title": "Simply Red - A New Flame (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YK3uYLC_qrw" - }, - { - "title": "Simply Red - A Song For You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "szbbz9ttBm4" - }, - { - "title": "Simply Red - Come To My Aid (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6bLUhrX64os" - }, - { - "title": "Simply Red - Infidelity (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gfKkGDZHZIA" - }, - { - "title": "Simply Red - It's Only Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HnK7Hz5Qgic" - }, - { - "title": "Simply Red - Remembering The First Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7hp_s5S-y8M" - }, - { - "title": "Simply Red - The Right Thing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YBxIVpiPjoY" - }, - { - "title": "Simply Red - Thrill me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xz0qFIxJNRQ" - }, - { - "title": "Slade - My Oh My (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9LZwm_oRyyE" - }, - { - "title": "Sly And The Family Stone - Dance To The Music (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M5ElwE220CY" - }, - { - "title": "Sly And The Family Stone - Everyday People (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Kl4lWip-yZY" - }, - { - "title": "Sly And The Family Stone - Family Affair (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "55ep8kMwQXo" - }, - { - "title": "Sly And The Family Stone - You Can Make It If You Try (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "BpKOhDGEzDc" - }, - { - "title": "Smokey Robinson - Going To A Go Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Tc5--BIPvrM" - }, - { - "title": "Smokey Robinson - Just To See Her (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YJdanSFyqn0" - }, - { - "title": "Smokey Robinson - I Second That Emotion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uQ9M2i7iZYw" - }, - { - "title": "Drop It Like It's Hot Karaoke", - "id": "Snoop Dog Karaoke Version" - }, - { - "title": "Soft Cell - It's A Mugs Game (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1kwCjV7zjzI" - }, - { - "title": "Soft Cell - Down In The Subway (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-M1lRblB85Y" - }, - { - "title": "Sophie Ellis-Bextor - Get Over You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "g2P9iONgFsE" - }, - { - "title": "Spencer Davis Group - Gimme Some Lovin' (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "__RqRHzhVXg" - }, - { - "title": "Spice Girls - 2 Become 1 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "A4MzWkfxMZo" - }, - { - "title": "Spice Girls - Goodbye (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ON95kjxRntg" - }, - { - "title": "Starlight Express - Light At The End Of The Tunnel (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "CZqHlJArk9o" - }, - { - "title": "Status Quo - Mean Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m02uP7IjrN0" - }, - { - "title": "Status Quo - Wild Side Of Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-oy1VgGfD0U" - }, - { - "title": "Steps - After The Love Has Gone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WjW1IU9sn9A" - }, - { - "title": "Steps - Better Best Forgotten (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zq0InkKpnJY" - }, - { - "title": "Steps - Better The Devil You Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l1XXjA6P8gM" - }, - { - "title": "Steps - Deeper Shade Of Blue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R-g8r1F5LrE" - }, - { - "title": "Steps - Heartbeat (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EnKEb_anAWw" - }, - { - "title": "Steps - Here and Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NqPEUpSvMbo" - }, - { - "title": "Steps - I Know Him So Well (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zkZ4ipnV_cU" - }, - { - "title": "Steps - Last Thing On My Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Cqzfepy1yCw" - }, - { - "title": "Steve Harley & Cockney Rebel - Here Comes The Sun (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "D8A7LrgdNM0" - }, - { - "title": "Stevie Wonder - Don't You Worry Bout A Thing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6_oO_XjtvGU" - }, - { - "title": "Stevie Wonder - Blowing In The Wind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fn4qqGZxVeM" - }, - { - "title": "Mr. Roboto Karaoke", - "id": "Styx Karaoke Version" - }, - { - "title": "Sting - It's Probably Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uSsYP4kAWzE" - }, - { - "title": "Styx - Don't Let It End (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r97y73B8un8" - }, - { - "title": "Sting - Shape Of My Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MYs31-XPsTY" - }, - { - "title": "Styx - Too Much Time On My Hands (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fk4ZqpMwsuc" - }, - { - "title": "Styx - The Best Of Times (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KzQg3V4AqD4" - }, - { - "title": "Sting - Fields Of Gold (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "INmOFr4Y5lM" - }, - { - "title": "Styx - Lady (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "h9OvKJW73iE" - }, - { - "title": "The Sugababes - Freak Like Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HfJuZnR9rOQ" - }, - { - "title": "Supertramp - From Now On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hArxWyXNA_Y" - }, - { - "title": "Suzi Quatro - Singing With Angels (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RySU1mI2D1g" - }, - { - "title": "Susan Maughan - Bobby's Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tTaR9Gac-Mk" - }, - { - "title": "Sweet - Love Is Like Oxygen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "50E3qZsEOUY" - }, - { - "title": "Sweet - Fox On The Run (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "65B760-lm7w" - }, - { - "title": "Sweet - Funny Funny (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UPqKIpzmfm4" - }, - { - "title": "Sweet - Hellraiser (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YStrRDBI5e4" - }, - { - "title": "Sweet - Litlle Willy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FKvIkwv50t8" - }, - { - "title": "Tammy Wynette - Bedtime Story (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SIPG1P767qw" - }, - { - "title": "Taylor Swift - Forever And Always (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lvUdodJYA0g" - }, - { - "title": "Switchfoot - Meant to live (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bCtk1mA9Cbg" - }, - { - "title": "Untouchable Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Taylor Swift - Come In With The Rain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pMri-Rja3ac" - }, - { - "title": "Taylor Swift - White Horse (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GtwpmBrSbs8" - }, - { - "title": "Taylor Swift - The Other Side Of The Door (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jQOK46q8m-Y" - }, - { - "title": "Taylor Swift - Today Was A Fairytale (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "13xysuers1w" - }, - { - "title": "Taylor Swift - Mickey (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U_UV3yrtJfM" - }, - { - "title": "Tears For Fears - Memories Fade (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9WigwS2KrLI" - }, - { - "title": "Taylor Swift - Speak Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ji0U-5BinIc" - }, - { - "title": "The All-American Rejects - Gives You Hell (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-EEZ_WpJWuI" - }, - { - "title": "The Beach Boys - Kokomo", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Beatles - A Hard Day's Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JXruwxxXbKM" - }, - { - "title": "The Beatles - A Taste Of Honey (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wf052XHT-B8" - }, - { - "title": "The Beatles - All I've Got To Do (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Bha9Zf-GATg" - }, - { - "title": "The Beatles - All My Loving (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y3wn5Eyw0Pk" - }, - { - "title": "The Beatles - Anna (Go To Him) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YfVjsaHKHho" - }, - { - "title": "The Beatles - And I Love Her (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HClkRYsboMU" - }, - { - "title": "The Beatles - Any Time At All (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "atN8ieEGuhw" - }, - { - "title": "The Beatles - Boys (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Gu39DDVox4U" - }, - { - "title": "The Beatles - Chains (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U0evRJLXUzo" - }, - { - "title": "The Beatles - Devil In Her Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WL3u2mnhdQE" - }, - { - "title": "The Beatles - Don't Bother Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "D4NPzAkCjg0" - }, - { - "title": "The Beatles - Hold Me Tight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qL5wwH0tLRE" - }, - { - "title": "The Beatles - I Should Have Known Better (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "udsYu_61wyE" - }, - { - "title": "The Beatles - If I Fell (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w8w5ykjZy5k" - }, - { - "title": "The Beatles - I Will Be Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IbHPDoRGO5k" - }, - { - "title": "The Beatles - I Will Cry Instead (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sxrp2QjvjUg" - }, - { - "title": "The Beatles - I Will Follow The Sun (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yPPgIoxjAKQ" - }, - { - "title": "The Beatles - I Am A Loser (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qT82sDE6KDw" - }, - { - "title": "The Beatles - It Won't Be Long (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fedX6OmWmEE" - }, - { - "title": "The Beatles - It's Only Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "icFCqs2Fa-0" - }, - { - "title": "The Beatles - The Long And Winding Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ydGTvXhnxZ0" - }, - { - "title": "The Beatles - Leave My Kitten Alone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "alrzynMyt0U" - }, - { - "title": "The Beatles - While My Guitar Gently Weeps (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ybeXxOnSZNE" - }, - { - "title": "The Beatles - Sweet Little Sixteen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "j8HYhFfI81M" - }, - { - "title": "The Beatles - I Saw Here Standing There (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LFCbH_0rb_4" - }, - { - "title": "The Beatles - Something (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EtAT7RsxK1s" - }, - { - "title": "The Beatles - Ticket To Ride (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4CJakLCmzRg" - }, - { - "title": "The Beatles - Yer Blues (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U8yh4S0T0bQ" - }, - { - "title": "This Masquerade Karaoke", - "id": "The Carpenters Karaoke Version" - }, - { - "title": "The Carpenters - You're The One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sGD4fnewGR8" - }, - { - "title": "The Carpenters - All Of My Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LDqs-d1kr6E" - }, - { - "title": "The Carpenters - Ordinary Fool (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qs4knTiJIx0" - }, - { - "title": "The Carpenters - Maybe It's You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gv7HYiwks20" - }, - { - "title": "The Carpenters - Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fw-c9I_Tkf4" - }, - { - "title": "The Corrs - So Young (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GHpkThd1FOQ" - }, - { - "title": "The Corrs - Buachaill On Eirne with Lyrics HD Vocal-Star Karaoke 4K", - "id": "ZVlWcBTHOpg" - }, - { - "title": "The Corrs - No Frontiers with Lyrics HD Vocal-Star Karaoke 4K", - "id": "u8D898xJQUM" - }, - { - "title": "The Cure - Let's Go To Bed (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iOCEloNdtzM" - }, - { - "title": "The Cure - Killing An Arab (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "48TkCLY5pYI" - }, - { - "title": "The Cure - The Walk (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Pq-rOW0La0k" - }, - { - "title": "The Cure - A Night Like This (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YgHmdJRJYIM" - }, - { - "title": "The Cure - A Strange Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "k44sWxQ-3HU" - }, - { - "title": "The Cure - All I Want (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L37_fvvFOi4" - }, - { - "title": "The Cure - Jumping Someone Else's Train (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ogmtmsjmr-g" - }, - { - "title": "The Cure - Saturday Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CbNBRyQx7Ps" - }, - { - "title": "The Doors - The Changeling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ac1XQ1fAiGQ" - }, - { - "title": "The Doors - Gloria (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AOcnoCb6tuo" - }, - { - "title": "The Drifters - True Love True Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Drifters - Dance With Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Drifters - Like Sister And Brother", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dermot Kennedy - Outnumbered (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "zxE8yV6ZKBE" - }, - { - "title": "The Drifters - I Will Take You Where The Music Is Playing", - "id": "With Lyrics HD 4K" - }, - { - "title": "The Drifters - I Count The Tears", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Drifters - Memories Are Made of This", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Drifters - Nobody But Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Drifters - Please Stay", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Everly Brothers - Problems", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Everly Brothers - Like Strangers", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Fray - Over My Head", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Go Gos - Our Lips Are Sealed", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Go Gos - Head Over Heels", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Isley Brothers - Summer Breeze (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QaKgp3EjAv4" - }, - { - "title": "The Isley Brothers - Everybody's Gonna Rock And Roll (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "aEKX6bakTLY" - }, - { - "title": "The Isley Brothers - It's Your Thing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n5FZ5OItcDQ" - }, - { - "title": "Jackson Five - Shake Your Body Down To The Ground (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "RmyY84LBHPo" - }, - { - "title": "The Jam - Man In The Corner Shop (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aDBq1nQeAPQ" - }, - { - "title": "The Jam - Pretty Green (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1E1pXnY4jLw" - }, - { - "title": "The Kinks - Till The End Of The Days", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Kinks - Better Things", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Kinks - Living On A Thin Line", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Mamas & The Papas - Dancing In The Street", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Mamas And The Papas - Creeque Alley", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Mamas And The Papas - I Saw Her Again", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Mavericks - Ain't Found Nobody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3zALAyuL9UE" - }, - { - "title": "The Mavericks - The Losing Side Of Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1KBxuY5iQUg" - }, - { - "title": "The Mavericks - Things I Cannot Change (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KjjhQ3GkFmY" - }, - { - "title": "The Mavericks - All Night Long (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ONV0891RnFo" - }, - { - "title": "The Osmonds - Down By The Lazy River (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RqbkFSkY3QQ" - }, - { - "title": "The Osmonds - Crazy Horses (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2E-4f5ghKfA" - }, - { - "title": "The Osmonds - The Proud One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "daCzYa7yPwI" - }, - { - "title": "The Osmonds - Remember Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n3U6xWscfWc" - }, - { - "title": "The Osmonds - Are You Up There - I Believe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Drd5zr7e-iY" - }, - { - "title": "The Osmonds - Can't Get There Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6bUyBN0pxzo" - }, - { - "title": "The Osmonds - Osmond's Medley (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R9eJa7s7Z_E" - }, - { - "title": "The Osmonds - Yo Yo (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IZOK2dKfBSk" - }, - { - "title": "The Pogues - Bugger off (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LXHpdDcgklI" - }, - { - "title": "The Pogues - Dirty Old Town (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vjFaO7kM6P0" - }, - { - "title": "The Pogues - Fiesta (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VBwNpwTorqc" - }, - { - "title": "The Police - Englishman In New York (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EX83WJWyCCU" - }, - { - "title": "The Police - Every Little Thing She Does Is Magic (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "b-TfRae5kAg" - }, - { - "title": "The Pretenders - Back On The Chain Gang (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AwRkihAZLm4" - }, - { - "title": "The Pretenders - Middle Of The Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wBDmKm8FUtk" - }, - { - "title": "The Pretenders - Brass In Pocket (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3A8pa0p9Nfw" - }, - { - "title": "The Proclaimers - I Would Walk 500 Miles (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lccyLCEpR9w" - }, - { - "title": "The Pretenders - Show Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QjxF33afrtg" - }, - { - "title": "The Pretenders - If There Was A Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "t4CfCierWNw" - }, - { - "title": "The Pretenders - Stop Your Sobbing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UX_riJxc740" - }, - { - "title": "The Proclaimers - Life With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "F2pbU_g_Jz0" - }, - { - "title": "Buttons Karaoke", - "id": "The Pussycat Dolls Karaoke Version" - }, - { - "title": "The Rolling Stones - Around And Around (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zIzgSoCCM80" - }, - { - "title": "The Rolling Stones - Just My Imagination (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RvTmfHBby6k" - }, - { - "title": "The Rolling Stones - The Singer Not The Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gMlcAa54hT8" - }, - { - "title": "The Rolling Stones - Not Fade Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TTVTsil2oJc" - }, - { - "title": "The Rolling Stones - All Down The Line (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WF70fXugACg" - }, - { - "title": "The Rolling Stones - Live With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jf4zaEcL-Ig" - }, - { - "title": "The Smiths - Meat Is Murder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2hXEwgAC0Ig" - }, - { - "title": "The Smiths - Ask (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U1LPXEQW_Qs" - }, - { - "title": "The Smiths - That Joke Isn't Funny Anymore (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rgeGjEn-FFA" - }, - { - "title": "The Smiths - Last Night I Dreamt That Somebody Loved Me (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "_yZ9g_XBGxs" - }, - { - "title": "The Smiths - Reel Around The Fountain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "015v9i4QTN0" - }, - { - "title": "The Smiths - I Want The One I Can't Have (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pTiPGPqLK7A" - }, - { - "title": "The Smiths - Still Ill (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fvzZi62TQFo" - }, - { - "title": "The Streets - Fit But You Know It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1lYrBzfSjUk" - }, - { - "title": "The Sugababes - Crash And Burn (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-TT5GfaVw40" - }, - { - "title": "The Supremes - It's All Your Fault (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Seray47T_gw" - }, - { - "title": "The Temptations - Don't Leave Me This Way (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lyVSthmq4UA" - }, - { - "title": "The Supremes - Ask Any Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2v_ndfIdqHE" - }, - { - "title": "The Travelling Wilburys - Last Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "e1gX-PVXhzc" - }, - { - "title": "The Who - Pure And Easy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kTeU3S5xZpQ" - }, - { - "title": "The Who - Shakin' All Over (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wiWNF-9laQM" - }, - { - "title": "The Turtles - Elenore (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "D0uk2GSKazs" - }, - { - "title": "The Who - The Seeker (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "enwIuMHVGyk" - }, - { - "title": "The Who - Bargain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VbMNsdlEyC4" - }, - { - "title": "The Who - Picture Of Lily (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HJ0LcRw41qM" - }, - { - "title": "Thin Lizzy - Angel Of Death (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PD-ENwiWI4w" - }, - { - "title": "Thin Lizzy - Jailbreak (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mhFdBX4kbyY" - }, - { - "title": "The Wurzels - Blackbird (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pmDnPbLFIxQ" - }, - { - "title": "Tina Turner - Hero (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Xez2iHRebh8" - }, - { - "title": "Tina Turner - Tail Feather (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HqeCwV1aIjE" - }, - { - "title": "Tina Turner - River Deep (Mountain High) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qpXUDx10L9g" - }, - { - "title": "Tina Turner - Whatever You Want (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c1o1mLmtFZw" - }, - { - "title": "Tina Turner - Land Of 1,000 Dances (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PqONLG_U01k" - }, - { - "title": "Tina Turner - Steamy Windows (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fQS-51VJl1g" - }, - { - "title": "Toby Keith - I Love This Bar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "u7r4GaLv1q4" - }, - { - "title": "Toby Keith - As Good As I Once Was (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U_xrDRt9AM4" - }, - { - "title": "Selena Gomez - Lose You To Love Me - Lyrics HD Vocal-Star Karaoke", - "id": "Rnq8x6jji60" - }, - { - "title": "Tom Jones - She's A Witch Queen Of New Orleans (Karaoke Version)", - "id": "KuYsJxJ0yvY" - }, - { - "title": "Tom Jones - Linda Lou (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rJexnkG-ygk" - }, - { - "title": "Tom Jones - Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7rYhykmw-m4" - }, - { - "title": "Tom Jones - Ain't No Grave (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aEnYZloGALU" - }, - { - "title": "Tom Jones - Take Me Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SOrhihl0GNc" - }, - { - "title": "Tom Jones - Old Fashioned Strut (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kQSm6uNGeDY" - }, - { - "title": "Tom Jones - Hanging Up My Heart For You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tTrWjZYwkQo" - }, - { - "title": "Tom Jones - Ain't That A Lot Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1nEdl79oxv8" - }, - { - "title": "Tom Jones - Burning Hell (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TKXEbZybhZY" - }, - { - "title": "Tom Jones - Tower Of Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8Oq9MjKB4Ew" - }, - { - "title": "Tom Jones - What Good Am I (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lsac7TSzWx4" - }, - { - "title": "Tom Jones - Black Betty (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y5Wq_B83bPk" - }, - { - "title": "Tom Jones - Take My Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AASBndWfHXs" - }, - { - "title": "Tom Odell - Grow Old With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EZsZUfnh73I" - }, - { - "title": "Tony Bennett - I Was Lost I Was Drifting", - "id": "Karaoke Songs with Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Tony Bennett - Country Girl", - "id": "Karaoke Songs with Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Tony Bennett - It's Like Reaching For The Moon", - "id": "Karaoke Songs with Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Tony Bennett - When Do The Bells Ring For Me", - "id": "Karaoke Songs with Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Tony Bennett - Pamela Brown", - "id": "Karaoke Songs with Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Tony Bennett - Winter Wonderland", - "id": "Karaoke Songs with Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Toni Braxton - Unbreak My Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zVS741EvoPA" - }, - { - "title": "Toni Braxton - Please (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x46DX7zVVEU" - }, - { - "title": "Tracy Chapman - Baby Can I Hold You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1UAjXoB8JWc" - }, - { - "title": "Train - Hey Soul Sister (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cUskLlr1pVA" - }, - { - "title": "Train - If It's Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6MP8eN5nXxo" - }, - { - "title": "UB40 - I Got You Babe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bDOyttsup44" - }, - { - "title": "UB40 - Kingston Town (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "88mkUPYNVFw" - }, - { - "title": "UB40 - Impossible Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AzJJHiMaEnQ" - }, - { - "title": "UB40 - Johnny Too Bad (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fbcuOna-aXk" - }, - { - "title": "UB40 - Live In Ahoy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KLE0kMUOXuU" - }, - { - "title": "UB40 - Sweet Cherrie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L8KCw2VVrG0" - }, - { - "title": "UB40 - I'll Be There (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ugRCrGcv8yE" - }, - { - "title": "Bad Girl Karaoke", - "id": "Usher Karaoke Version" - }, - { - "title": "Usher - Burn (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c9bJyYkDvIE" - }, - { - "title": "Usher - Can You Help Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LfNFL4jyseA" - }, - { - "title": "Usher - Confessions Part 2 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "efmiXd0VWlI" - }, - { - "title": "Usher - I will (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PwoQq8rLmqs" - }, - { - "title": "Usher - Caught Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CiBWpK_9B5c" - }, - { - "title": "Vanessa Hudgens - Never Underestimate A Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Uq1iQyUdyVw" - }, - { - "title": "Vanessa Hudgens - Say Ok (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "T1Yemp7je7s" - }, - { - "title": "Vengaboys - Going to Ibiza (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hp5kQRIK0XU" - }, - { - "title": "Village People - Can't Stop The Music (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bsJcvmAlvA8" - }, - { - "title": "Vince Gill - Victim Of Life's Circumstances (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DbXvdYksItM" - }, - { - "title": "Vince Gill - I Never Knew Lonely (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vu1okSFiFnM" - }, - { - "title": "Westlife - Hey Whatever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "S62xM8taduc" - }, - { - "title": "Westlife - My Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4-gjRI5MzGs" - }, - { - "title": "Westlife - Unbreakable (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dFkB8_2AohM" - }, - { - "title": "Westlife - Uptown Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TEv4_1ZWU_U" - }, - { - "title": "Westlife - The Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kNkUN2OgrxQ" - }, - { - "title": "Westlife - You Don't Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nspaP3rOWkY" - }, - { - "title": "Wet Wet Wet - Angel Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ax_LXK_TDbw" - }, - { - "title": "Wet Wet Wet - Goodnight Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lJgHTQb4xl4" - }, - { - "title": "Wet Wet Wet - I Swear (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "df8coJbhnb8" - }, - { - "title": "Wet Wet Wet - Julia Says (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VzEEEMi8NLs" - }, - { - "title": "Whitesnake - Is This Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "--lpa8D_9lQ" - }, - { - "title": "Whitesnake - Lie Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mdPfPRnEjLk" - }, - { - "title": "Whitesnake - Too Many Tears (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U7426r951Pw" - }, - { - "title": "Count On Me Karaoke", - "id": "Whitney Houston Karaoke Version" - }, - { - "title": "Whitney Houston - If I Told You That (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "inrZgjaGNWE" - }, - { - "title": "Will Young - Anything Is Possible (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gAb_2SmJPz8" - }, - { - "title": "Will Young - Beyond The Sea (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nrhOoLCghMY" - }, - { - "title": "Will Young - Free (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "__kzsvl7jzc" - }, - { - "title": "Jeremih ft. YG - Don't Tell 'Em (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Jl-7E5_fIkg" - }, - { - "title": "Willie Nelson - Always On My Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HFbTHEOJZ6g" - }, - { - "title": "Willie Nelson - You Remain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tSHGxzFEsuY" - }, - { - "title": "Justin Timberlake - Can't Stop The Feeling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Wg_rlzb3hYA" - }, - { - "title": "Willie Nelson - Mammas Don't Let Your Babies Grow Up To Be Cowboys (Karaoke) HD Vocal-Star Karaoke", - "id": "fArE4XuIwHA" - }, - { - "title": "Kelly Clarkson - Invincible (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oXrSVrgfv50" - }, - { - "title": "Kings of Leon - Temple (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "A0yk02FI4qo" - }, - { - "title": "Kendrick Lamar - King Kunta (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TepbpUTI8o4" - }, - { - "title": "Kiesza - Hideaway", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kiesza - Sound Of A Woman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Klingande - Jubel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kwo-u5hjTy4" - }, - { - "title": "Kodaline - All I Want (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ccotuDSbcfU" - }, - { - "title": "London Grammar - Strong (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "u7rsat9emUk" - }, - { - "title": "Lupe Fiasco ft. Ed Sheeran - Old School (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eBFcO9uOPRA" - }, - { - "title": "Kodaline - Brand New Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1Hw_n4CYNHs" - }, - { - "title": "Macklemore & Ryan Lewis ft Schoolboy Q - White Walls (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "oyRaWTTEUsc" - }, - { - "title": "Lukas Graham - Mama Said (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RPaLaAacYjg" - }, - { - "title": "Magic - Rude", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kodaline - The One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cNx2jhdaakU" - }, - { - "title": "Major Lazer Feat. Justin Bieber and Mร˜ - Cold Water (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "vBH2J-wdiIQ" - }, - { - "title": "Mark Ronson Feat. Mystikal - Feel Right (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "N_kMKgjMaZ4" - }, - { - "title": "Heroes (Mans Zelmerlow)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Major Lazer Ft. Nyla & Fuse ODG - Light It Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "a3s0d4VFp88" - }, - { - "title": "Martin Garrix Feat. Usher - Don't Look Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y85Q_vMPAYI" - }, - { - "title": "Matrix and Futurebound Feat. Max Marshall - Control (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "UVjeb_TvrNY" - }, - { - "title": "Mausi - My Friend Has A Swimming Pool (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0-AYFixt224" - }, - { - "title": "NEEDTOBREATHE - Wasteland (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_TvVYoCEB3I" - }, - { - "title": "Nathan Sykes - Kiss Me Quick (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "e-ppAh5qc2w" - }, - { - "title": "Luis Fonsi & Daddy Yankee Feat. Justin Bieber - Despacito (Karaoke Version) with Lyrics HD", - "id": "xRq6Xj6yTsM" - }, - { - "title": "Michael Calfan - Treasured Soul (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NTb10nWAedo" - }, - { - "title": "Neon Jungle - Braveheart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oBjdvM6vUQA" - }, - { - "title": "Nicole Scherzinger - Your Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RQ6OYhBrQ9M" - }, - { - "title": "Oliver Heldens & Becky Hill - Gecko (Overdrive) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y2YQKyc6cRQ" - }, - { - "title": "I Lived Karaoke", - "id": "OneRepublic Karaoke Version" - }, - { - "title": "Paolo Nutini - Scream (Funk My Life Up) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tCkTo9TTM4Q" - }, - { - "title": "Pink - Are We All We Are (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RuYbUfbuwqo" - }, - { - "title": "Sia - Cheap Thrills (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eLjs0g2JlYQ" - }, - { - "title": "Pitbull - Celebrate (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VSm3wXeayIQ" - }, - { - "title": "Sigala - Sweet Lovin' (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OS22ACuQhME" - }, - { - "title": "Sigma Feat. Take That - Cry (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5FfTUEqnDnI" - }, - { - "title": "Snakehips Ft. Tinashe & Chance The Rapper - All My Friends (Karaoke Version) With Lyrics Vocal-Star", - "id": "hDz0B7294Z8" - }, - { - "title": "Tegan & Sara ft. The Lonely Island - Everything Is Awesome (Karaoke Version) with Lyrics Vocal-Star", - "id": "ga89C1_WZZg" - }, - { - "title": "The Vamps Feat. Shawn Mendes - Oh Cecilia (Breaking My Heart) (Karaoke Version) with Lyrics HD", - "id": "gZvPeVicA34" - }, - { - "title": "The Chainsmokers - #Selfie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YBYutnrjnQQ" - }, - { - "title": "Colbie Caillat - All Of You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "gYujkbGMZLE" - }, - { - "title": "Harry Styles - Lights Up (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "y89nU0usAJY" - }, - { - "title": "DJ Regard - Ride It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mcPhbZnbBCs" - }, - { - "title": "Shawn Mendes - Stitches (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wZ837DR_PY4" - }, - { - "title": "The Beloved - Sweet Harmony (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RMNoNwc6KZc" - }, - { - "title": "Shawn Mendes - Treat You Better (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dlTMwkQqOMc" - }, - { - "title": "Route 94 & Jess Glynne - My Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LUhh30UBl60" - }, - { - "title": "The Vamps - Wake Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0vjveYVficA" - }, - { - "title": "The Vamps - Can We Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JTHny9pDcGw" - }, - { - "title": "Saint Raymond - Fall At Your Feet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bcz8Rx9SSb0" - }, - { - "title": "Stevie McCrorie - Lost Stars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-dNu5hw1k8c" - }, - { - "title": "Sigma Feat. Paloma Faith - Changing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "by0jXEtmPOs" - }, - { - "title": "Sigma - Nobody To Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jhnswMYchEg" - }, - { - "title": "Rihanna - Jump (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AMGqqUzkeQE" - }, - { - "title": "Sia - Big Girls Cry (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mhpFQmcQA8o" - }, - { - "title": "Sia - You're Never Fully Dressed Without A Smile (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9JHaWyC-qtI" - }, - { - "title": "Touch - Shift K3Y (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BNymqXKrKis" - }, - { - "title": "Shakira & Rihanna - Can't Remember To Forget You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9ZpGBLenfDs" - }, - { - "title": "Second City - I wanna Feel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "68HUtV4LxHo" - }, - { - "title": "Rixton - Me and my broken heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IcJ9p51A8K8" - }, - { - "title": "Amy Winehouse - Between The Cheats (Karaoke Version)", - "id": "pcVzqi6iyes" - }, - { - "title": "Altered Images - Happy Birthday (Karaoke Version)", - "id": "nWcHfdGJvME" - }, - { - "title": "Rihanna - B**ch Better Have My Money (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sUcNmIxO_i4" - }, - { - "title": "Redfoo - New Thang (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FkrfS4CLkCA" - }, - { - "title": "Real Estate - Talking Backwards (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1ogtRgA8uH8" - }, - { - "title": "Rae Morris - Under the shadows (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "k9WwwobLZ6E" - }, - { - "title": "Pixie Lott - Nasty (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r1ne_A7JrS8" - }, - { - "title": "Pitbull Feat. Kesha - Timber (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w-1tDmbmzDc" - }, - { - "title": "Pitbull & GRL - Wild Wild Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BlrlSHZJE78" - }, - { - "title": "Monaco - What Do You Want From Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6db-w1yo0SM" - }, - { - "title": "Peace - Money (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Pm-vsVE-SnQ" - }, - { - "title": "Paloma Faith - Beauty Remains (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Lm7eqyjyVJ8" - }, - { - "title": "MNEK & Zara Larsson - Never Forget You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_-_MjJ8KdlQ" - }, - { - "title": "Nicki Minaj - Pills N Potions (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bHU2MBoCXug" - }, - { - "title": "Nina Nesbitt - Don't Stop (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pCmI33jJiPY" - }, - { - "title": "MKTO - Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Vp9eAxCY2-0" - }, - { - "title": "Nick Jonas - Chains (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pvDya2HIxHc" - }, - { - "title": "Neon Jungle - Louder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2kVu6ljvLpw" - }, - { - "title": "Neon Jungle - Welcome To The Jungle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2wRDrVTqhtw" - }, - { - "title": "Natalie La Rose ft. Jeremih - Somebody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0xm6-ceoEkU" - }, - { - "title": "Mike Posner - I Took A Pill In Ibiza (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sxp8a9o_ZPQ" - }, - { - "title": "MK Route 94 ft. Alana - Always (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Z5yDfxnzlnU" - }, - { - "title": "Alexis Jordan - Good Girl", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Lily Allen - Air Balloon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PYjWlEazvaY" - }, - { - "title": "Little Mix - Word Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iNvkfaNabzw" - }, - { - "title": "Lily Allen - Our Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dLcwbqijk8M" - }, - { - "title": "Little Big Town - Girl Crush (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5OTqQy2CiNE" - }, - { - "title": "Lethal Bizzle Feat. JME & Tempa T - Rari Workout (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Vwzx6JUI_1c" - }, - { - "title": "Leona Lewis - Fire Under My Feet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "E4esET-mPIY" - }, - { - "title": "Lawson - Roads (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RTVrYurjROo" - }, - { - "title": "Maroon 5 - Maps (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZL9F2JxKmBM" - }, - { - "title": "Alexandra Burke - Hallelujah", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Kylie Minogue - Into The Blue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M1nkz0VpevQ" - }, - { - "title": "Lorde - Team (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Cvtjr1cOoIQ" - }, - { - "title": "Little Mix - Little Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q9EVfiWJsg8" - }, - { - "title": "Stole The Show (Kygo ft. Parson James) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YjidLKWrJQY" - }, - { - "title": "Lily Allen - Sheezus (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nvuQYsAxNLA" - }, - { - "title": "Lethal Bizzle ft. Cherri Voncelle - The Drop (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5X0dbRjtk6c" - }, - { - "title": "Lethal Bizzle ft. Diztortion - Fester Skank (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ly-GuJvs-Dg" - }, - { - "title": "Lana Del Rey - West Coast (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "flrlDhTeyTo" - }, - { - "title": "Lady GaGa & R. Kelly - Do What U Want (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GfDbWPKKH8E" - }, - { - "title": "Kungs vs Cookin' On 3 Burners - This Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5sjlTWtPcBg" - }, - { - "title": "Labrinth - Jealous (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yvkZz5HCYGA" - }, - { - "title": "Kove ft. Melissa Steel - Way We Are (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HarStdJznks" - }, - { - "title": "Kodaline - Honest (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XDnL844RIws" - }, - { - "title": "Katy Perry - This is how we do (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ptWXFah2Tjg" - }, - { - "title": "Karen Harding - Say Something (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Z5123BnVrHs" - }, - { - "title": "Kasabian - Eez-eh", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kanye West Feat Paul McCartney - Only One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-ylRx5-Od44" - }, - { - "title": "Jason Derulo - Stupid Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jess Glynne - Right Here", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Katy Perry - Unconditionally (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "apqB8Jv09iI" - }, - { - "title": "Justin Timberlake - Not A Bad Thing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U7HvyqSyjfc" - }, - { - "title": "Jason Derulo ft. Snoop Dogg - Wiggle", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joshua Radin - Beautiful Day", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Johnny Rivers - Memphis Tennessee (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IL6fj24T-Q8" - }, - { - "title": "Jennifer Lopez - First Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m9NuV3qwp-o" - }, - { - "title": "Jessie J - Thunder", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jay Z - Jungle Re-Mix (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mTv37KjqYRg" - }, - { - "title": "Jason DeRulo - Trumpets", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "James Newton Howard - The Hanging Tree (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZBnu16jhTfg" - }, - { - "title": "John Martin - Anywhere For You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jessie Ware - Champagne Kisses", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jessie Ware - You & I (Forever)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "James Arthur - Recovery (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jn5C0IGb4h8" - }, - { - "title": "Enrique Iglesias & Pitbull - I'm A Freak", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Drake Feat. Rihanna & Popcaan - Too Good", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Holding On (Disclosure ft. Gregory Porter) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Qi7L3K0Xc_o" - }, - { - "title": "Fergie - M.I.L.F. $", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Echosmith - Cool Kids", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "DNCE - Cake By The Ocean (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0eqOcWnKVq0" - }, - { - "title": "Drake Feat. Wizkid & Kyla - One Dance", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Coldplay - Adventure of a Lifetime", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Demi Lovato - Neon Lights (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YkX52szlvNw" - }, - { - "title": "99 Souls Feat. Destiny's Child - The Girl Is Mine", - "id": "With Lyrics Vocal-Star Karaoke 4K" - }, - { - "title": "Clean Bandit ft. Stylo G - Come Over (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l1EE9w8L4aw" - }, - { - "title": "Clean Bandit Feat. Louisa Johnson - Tears (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RnYXmo_hiag" - }, - { - "title": "David Guetta Feat. Sia & Fetty Wap - Bang My Head Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Yp4u6OdvZ8k" - }, - { - "title": "Chris Brown Feat. Tyga - Ayo (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "66Vto4qTnrk" - }, - { - "title": "Clean Bandit ft. Jess Glynne - Real Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6N1vgMnykEk" - }, - { - "title": "Elyar Fox - A Billion Girls (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CdVVzEmDfCA" - }, - { - "title": "Fifth Harmony Feat. Ty Dolla $ign - Work From Home", - "id": "With Lyrics Vocal-Star Karaoke 4K" - }, - { - "title": "Ed Sheeran - One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nkytnoJl29g" - }, - { - "title": "Florence & The Machine - Ship To Wreck", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "David Guetta Feat. Skylar Grey - Shot Me Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7RQ54EmAI6g" - }, - { - "title": "Echosmith - Bright", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ella Henderson - Mirror Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dBsQ4BmcLjY" - }, - { - "title": "Ella Eyre - If I go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cR1vE65nGkw" - }, - { - "title": "Eminem ft. Rihanna - Monster", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fall Out Boy - Centuries", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Duke Dumont - Ocean Drive (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CbXlkZLgmEA" - }, - { - "title": "Fall Out Boy - Uma Thurman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fifth Harmony - Bo$$", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fifth Harmony - Sledgehammer", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Duke Dumont - Won't Look Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "T3E5cBHpNnE" - }, - { - "title": "David Correy - The World Is Ours with Lyrics HD Vocal-Star Karaoke 4K", - "id": "YyRVkcHVk_Y" - }, - { - "title": "Flo Rida - How I Feel", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "DJ Cassidy Feat. Robin Thicke & Jessie J - Calling All Hearts (Karaoke Version) with Lyrics Karaoke", - "id": "IZuMS4AsqbY" - }, - { - "title": "Chase & Status - Alive (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6Dp_NYJCDPo" - }, - { - "title": "DJ Fresh VS TC Ft. Little Nikki - Make U Bounce (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y_DNOtzBSlg" - }, - { - "title": "DJ Fresh VS Jay Fay Feat. Ms Dynamite - Dibby Dibby Sound (Karaoke Version) with Lyrics HD Karaoke", - "id": "h4Q2T852LJE" - }, - { - "title": "Calvin Harris Feat. Rihanna - This Is What You Came For (Karaoke Version) with Lyrics HD Karaoke", - "id": "wp8PW5MlckI" - }, - { - "title": "Galantis - Runaway (U & I)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Florrie - Too Young to Remember", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Foxes - Holding Onto Heaven", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Freddie Dickson - Speculate", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Badder Than Bad Feat. Fuse ODG - Million Pound Girl", - "id": "With Lyrics Vocal-Star Karaoke 4K" - }, - { - "title": "Deorro & Chris Brown - Five More Hours (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1BkCx0AuWHM" - }, - { - "title": "Calvin Harris - Summer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SJkt_D5Qyz4" - }, - { - "title": "Dappy - Beautiful Me with Lyrics HD Vocal-Star Karaoke 4K", - "id": "AILipieF77U" - }, - { - "title": "David Guetta Feat. Sam Martin - Dangerous (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xGZFkBfnMF8" - }, - { - "title": "David Guetta & Showtek Feat. Vassy - Bad (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OW17P2ZQme8" - }, - { - "title": "Gorgon City ft. Laura Walsh - Here For You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "h_bGRv0TTIA" - }, - { - "title": "Circa Waves - Fossil (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DCDZNoZmL-E" - }, - { - "title": "Galantis - No Money", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Chris Malinchak - If U Got It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QDz7jfloM8A" - }, - { - "title": "Group Love - Let Me In (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ftA_IST9VCY" - }, - { - "title": "Charli XCX - Break The Rules (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xXl9KtoGN-A" - }, - { - "title": "Charli XCX - Boom Clap (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zsNuCfBb-L8" - }, - { - "title": "Calvin Harris Feat. John Newman - Blame (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-l0N3_5abZk" - }, - { - "title": "Hardwell ft Matthew Koma - Dare You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XgsJA0H75Tk" - }, - { - "title": "Bruno Mars - Gorilla (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6vztWnH3k8w" - }, - { - "title": "Gorgon City Feat. MNEK - Ready For Your Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nJYoPV7bVJ4" - }, - { - "title": "Broken Bells - After the Disco with Lyrics HD Vocal-Star Karaoke 4K", - "id": "OixgDQ7pAGc" - }, - { - "title": "Britney Spears - Perfume with Lyrics HD Vocal-Star Karaoke 4K", - "id": "677SjJwtcvA" - }, - { - "title": "GRL - Ugly Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ipc2ktl2MX0" - }, - { - "title": "Breach Feat. Andreya Triana - Everything You Never Had (Karaoke Version) with Lyrics Karaoke", - "id": "vO3aND2_kLA" - }, - { - "title": "Haim - Don't Save Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qQbphm6EvtI" - }, - { - "title": "Iggy Azalea Feat. Charli XCX - Fancy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bNp8sh0irec" - }, - { - "title": "Hozier - Someone New (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FZujst6MO7I" - }, - { - "title": "Hudson Taylor - Just a Thought (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Nbjtg2wgV-Q" - }, - { - "title": "Boy & Bear - End Of The Line (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rNbkXYTK9ws" - }, - { - "title": "Beyonce - Hold Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Blonde ft. Alex Newell - All Cried Out with Lyrics HD Vocal-Star Karaoke 4K", - "id": "SV8lKUmFiM4" - }, - { - "title": "Ben Haenow ft. Kelly Clarkson - Second Hand Heart", - "id": "With Lyrics Vocal-Star Karaoke" - }, - { - "title": "Blonde Feat. Melissa Steel - I Loved You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tdWBJi7ZG_Y" - }, - { - "title": "Birdy - Tee Shirt (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6o0D5y26aqg" - }, - { - "title": "Birdy - Wings (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5lAhpZBStQs" - }, - { - "title": "Bipolar Sunshine - Where Did the Love Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0CIr4VhTZ_E" - }, - { - "title": "Ben Howard - Keep Your Head Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Imagine Dragons - Shots (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y6TUp1-9ggk" - }, - { - "title": "Iggy Azalea ft. Jennifer Hudson - Trouble (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sfN2KHAG1kA" - }, - { - "title": "Indiana - Solo Dancing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ybz29j6ryr4" - }, - { - "title": "Bastille - Of The Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "THL35JOvwuQ" - }, - { - "title": "Becky Hill - Caution To The Wind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uTCWwiZOyPg" - }, - { - "title": "Bastille - Bad Blood (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eU0kxQ8SSBQ" - }, - { - "title": "Sun Is Shining - Axwell & Ingrosso (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KTFkknrhPug" - }, - { - "title": "Inna - Cola Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "snf5nZCVeKg" - }, - { - "title": "Avicii - Addicted To You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J00tcU3BYII" - }, - { - "title": "Avril Lavigne - Hello Kitty (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QbjPtz58ZuE" - }, - { - "title": "Inna - In Your Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QcE8XDB2X5k" - }, - { - "title": "Avicii - The Nights (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_wcCzdEtIxw" - }, - { - "title": "Jake Bugg - Simple as this (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TxxCI5I53zM" - }, - { - "title": "Jack Johnson - Angel (Holiday) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sgwCO34uGAQ" - }, - { - "title": "Jack Savoretti - Tie Me Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6uEAnEjNSTE" - }, - { - "title": "Avicii - Waiting for love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TtL3UI7A800" - }, - { - "title": "Ariana Grande Feat. Zedd - Break Free (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5BJkBSSqaeE" - }, - { - "title": "Ariana Grande ft. Iggy Azaela - Problem (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5NQVI-1X4R8" - }, - { - "title": "Arctic Monkeys - Snap Out Of It", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Becky G - Shower (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-ir6mMlV8VM" - }, - { - "title": "Ariana Grande - One Last Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XiZMmtID7Hk" - }, - { - "title": "Andy Grammer - Honey I'm Good", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Aneta Sablik - The One", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Aloe Blacc - The Man (Karaoke Version)", - "id": "hZIE7EJZmjY" - }, - { - "title": "American Authors - Best Day of My Life (Karaoke Version)", - "id": "WIDGluX2IwY" - }, - { - "title": "Afrojack Ft. Spree Wilson - The Spark", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Alan Walker - Faded", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Adam Lambert - Ghost Town (Karaoke Version)", - "id": "4H1c_5f4HQA" - }, - { - "title": "Alex Adair - Make me feel better", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Alesso vs. OneRepublic - If I Lose Myself", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "5 seconds of summer - Amnesia", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Alesso Ft. Roy English - Cool", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "5 Seconds Of Summer - Don't Stop", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "5 Seconds Of Summer - Good Girls", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "5 Seconds Of Summer - She Looks So Perfect", - "id": "Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Rihanna - Towards The Sun (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "elkckRVsBBQ" - }, - { - "title": "Robin Schulz Ft. Jasmine Thompson - Sun Goes Down (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "s0vS3is_l4o" - }, - { - "title": "LuvBug - Revive (Say Something) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5-HG4gVqI5U" - }, - { - "title": "Mumford & Sons - Believe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PiqmzzlDMaM" - }, - { - "title": "Mike Mago & Dragonette - Outlines (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WL6Z6TQpXD4" - }, - { - "title": "Zedd ft. Selena Gomez - I Want You To Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CI0Z8R6wCmI" - }, - { - "title": "Jonas Blue - Fast Car ft. Dakota", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fifth Harmony - Worth It", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "ZAYN - PILLOWTALK (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OrBJS41ga5c" - }, - { - "title": "Jack Savoretti - Catapult (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "unY39l9xJSc" - }, - { - "title": "The 1975 - The Sound (Karaoke Version)", - "id": "Aop6DgI_lZc" - }, - { - "title": "Rihanna Ft Drake - Work (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Kv_4XD43-ZI" - }, - { - "title": "Lukas Graham - 7 Years (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "i3WPjxoDxhM" - }, - { - "title": "Carly Rae Jepsen - Boy Problems (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rDa2JzUOIhA" - }, - { - "title": "Coldplay - Hymn For The Weekend", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Meghan Trainor - Better When I'm Dancing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fu3uL68SxYk" - }, - { - "title": "Seal - Every Time I'm With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TJL86UelH20" - }, - { - "title": "Meghan Trainor - No (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "azDklxl2flo" - }, - { - "title": "Charlie Puth - One Call Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pmcy9q9skHc" - }, - { - "title": "Taylor Swift - Out Of The Woods (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-wRay4hauhU" - }, - { - "title": "Zara Larsson - Lush Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EpOGMos3mzg" - }, - { - "title": "One Direction - History (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6QcFlyvNGEI" - }, - { - "title": "Olly Murs - Stevie Knows (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CXBDZbpRXCs" - }, - { - "title": "Little Mix - Secret Love Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y5YeG86aacc" - }, - { - "title": "Little Mix - Love Me Like You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jnn_SbreZ_w" - }, - { - "title": "Kelly Clarkson - Piece by Piece (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4pilJ6mN600" - }, - { - "title": "Jess Glynne - Take Me Home", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ellie Goulding - On My Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y10nkwXiyBg" - }, - { - "title": "One Direction - If I Could Fly (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QuP0hSfOQ8g" - }, - { - "title": "Olly Murs - Kiss Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kA1Z4TDl8NU" - }, - { - "title": "Nathan Sykes - Over And Over Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5gHk0M4WSg0" - }, - { - "title": "Leona Lewis - Thunder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VRhct_X6qXI" - }, - { - "title": "Justin Bieber - Sorry (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "S_RfKsuGl7E" - }, - { - "title": "Jamie Lawson - Wasn't Expecting That", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fleur East - Sax", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - Water Under The Bridge", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - When We Were Young", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Taylor Swift - Bad Blood (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fYOFTo2GHtc" - }, - { - "title": "Years & Years - Eyes Shut", - "id": "Karaoke Songs with Lyrics Vocal-Star Karaoke" - }, - { - "title": "Sam Smith - Writing's On The Wall (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AvVQ58Ig3EE" - }, - { - "title": "One Direction - Perfect (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QWPq_IdX930" - }, - { - "title": "Justin Bieber - Love Yourself (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2E14b2CkwRI" - }, - { - "title": "Ellie Goulding - Army (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "V3D314Y3YDU" - }, - { - "title": "Adele - Million Years Ago", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - Love In The Dark", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - I Miss You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - All I Ask", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - Hello (Karaoke Version)", - "id": "IhdC8GyGsIA" - }, - { - "title": "John Newman - Love Me Again", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Aladdin - One Jump Ahead", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Walk The Moon - Shut Up and Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xJFs50HHuto" - }, - { - "title": "Justin Bieber - What Do You Mean (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "soNf8e1eHt4" - }, - { - "title": "Swedish House Mafia - Don't You Worry Child ft. John Martin (Karaoke Version) with Lyrics Vocal-Star", - "id": "xNUhZIjTn60" - }, - { - "title": "Sam Smith - I'm Not The Only One(Karaoke Version) with Lyrics HD Vocal-S tar Karaoke", - "id": "UG2x8cJ5UVM" - }, - { - "title": "The Weeknd - Can't Feel My Face (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LfbQSlW4xTI" - }, - { - "title": "Rudimental - Feel The Love ft. John Newman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5jh32JdoPVo" - }, - { - "title": "Tinie Tempah - Pass Out (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w8AAM_CCbWE" - }, - { - "title": "Vance Joy - Riptide (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BFREmDKJdEc" - }, - { - "title": "Skrillex & Diplo ft Justin Bieber - Where Are รœ Now (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "HxCPXbF8SrA" - }, - { - "title": "Eminem - Love The Way You Lie ft. Rihanna", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mr. Probz - Waves (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pans2L1_AN0" - }, - { - "title": "LMFAO - Sexy and I Know It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7DfLSnqsifI" - }, - { - "title": "Imagine Dragons - Radioactive(Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ScDzm3bkN-w" - }, - { - "title": "Bastille - Pompeii (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JoBWBFD8djo" - }, - { - "title": "Clean Bandit - Rather Be ft. Jess Glynne (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yMt9UO0L4as" - }, - { - "title": "Kooks - Naรฏve", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fratellis - Whistle For The Choir", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "David Guetta Feat. Kelly Rowland - When Love Takes Over with Lyrics HD Vocal-Star 4K", - "id": "N7LxSyFge2s" - }, - { - "title": "MIKA - We Are Golden (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zOeP8UuBCCU" - }, - { - "title": "Natasha Bedingfield - These Words (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x_MSfXN40r4" - }, - { - "title": "The Pussycat Dolls - Stickwitu (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PLYL3J4pgb8" - }, - { - "title": "Kylie Minogue - Spinning Around (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Zv2d1VO-fzE" - }, - { - "title": "The View - Same Jeans (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_pjHb0s_YUk" - }, - { - "title": "Kelly Clarkson - My Life Would Suck Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c7HBqC7ZmO0" - }, - { - "title": "Sophie Ellis-Bextor - Murder On The Dancefloor (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vlBKIlXduyg" - }, - { - "title": "Pixie Lott - Mama Do (uh oh, uh oh) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rj5uOMquYkU" - }, - { - "title": "Liberty X - Just A Little (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wk1LRaTtqAM" - }, - { - "title": "La Roux - In For The Kill (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2ca9PPFXM4Y" - }, - { - "title": "Ronan Keating - If Tomorrow Never Comes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bePT2B-JBJ8" - }, - { - "title": "The Sugababes - Hole In The Head (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fjo8Iwfsl5w" - }, - { - "title": "Charlotte Church - Crazy Chick (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QNfOABmnNVU" - }, - { - "title": "Saturdays - Forever Is Over (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iVfdEbjqLMs" - }, - { - "title": "Corrs - Breathless with Lyrics HD Vocal-Star Karaoke 4K", - "id": "UR55ZlnH000" - }, - { - "title": "Razorlight - America (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HpgadRjspNo" - }, - { - "title": "Infernal - From Paris To Berlin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_X8GNeqKsQ4" - }, - { - "title": "Justin Timberlake - Rock Your Body (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GHHLZTkHlRA" - }, - { - "title": "S Club 7 - Don't Stop Movin' (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w3UQi4wGzE4" - }, - { - "title": "Sam Sparro - Black and Gold (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7dmXK2eL3a0" - }, - { - "title": "Will Young - Evergreen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sxnHPd2iTNY" - }, - { - "title": "Radiohead - Creep (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nT6gfMTem-U" - }, - { - "title": "Diana Ross - When You Tell Me That You Love Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Charles & Eddie - Would I Lie To You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jeC9QFz4VCY" - }, - { - "title": "Haddaway - What Is Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7puSFJz3KX0" - }, - { - "title": "Spin Doctors - Two Princes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vnxYlQdK-N8" - }, - { - "title": "Mr. Big - To Be With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jbXt6zEgUvk" - }, - { - "title": "Iggy Pop - The Passenger (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fW5BwcDs7UQ" - }, - { - "title": "The La's - There She Goes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_tkk5cNGP5w" - }, - { - "title": "U2 - Sweetest Thing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vFffoVqQd4o" - }, - { - "title": "Inner Circle - Sweat (A La La Long) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fyamcopZ6sA" - }, - { - "title": "Zoe - Sunshine On A Rainy Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4pq04T_atJM" - }, - { - "title": "Stereo MC's - Step It Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MoGSmKOye58" - }, - { - "title": "Lisa Loeb & Nine Stories - Stay (I Missed You) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2NzwJLmXey4" - }, - { - "title": "Simply Red - Stars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "13qU1rsxJr4" - }, - { - "title": "Tasmin Archer - Sleeping Satellite (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yDNJLeFS-T0" - }, - { - "title": "Robin S - Show Me Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "P5R3hU3hKkE" - }, - { - "title": "R.E.M. - Shiny Happy People (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bPTTt7lFfGM" - }, - { - "title": "N-Trance - Set You Free (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WHDiuPKsDI0" - }, - { - "title": "Corrs - Runaway with Lyrics HD Vocal-Star Karaoke 4K", - "id": "1L1iUwTw7_Q" - }, - { - "title": "Billy Joel - The River Of Dreams", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Take That - Pray (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mymrxpMlwmg" - }, - { - "title": "Boyzone - Picture Of You with Lyrics HD Vocal-Star Karaoke 4K", - "id": "OQe-x2Sfoo0" - }, - { - "title": "Mike + The Mechanics - Over My Shoulder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yEBMxem9Epw" - }, - { - "title": "M People - One Night In Heaven", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Steps - One For Sorrow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LZL9QJjwVRY" - }, - { - "title": "Extreme - More Than Words", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Hanson - MMMBop (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "o7qgLKM4Hc0" - }, - { - "title": "Robbie Williams - Millennium (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Tf-TLfBje2c" - }, - { - "title": "Spice Girls - Mama (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O6SL19Ssm8w" - }, - { - "title": "The Verve - Lucky Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9QyT4CDyil8" - }, - { - "title": "Freddie Mercury - Living On My Own", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adamski - Killer (Karaoke Version)", - "id": "N-JS-RclisQ" - }, - { - "title": "James - Laid (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "u-7yHbwm8Bg" - }, - { - "title": "Jon Secada - Just Another Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aSHi9n6CN5o" - }, - { - "title": "Joshua Kadison - Jessie", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Sheryl Crow - If It Makes You Happy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CrVIsBHq474" - }, - { - "title": "Meat Loaf - I'd Do Anything For Love (But I Won't Do That)", - "id": "With Lyrics Vocal-Star 4K" - }, - { - "title": "Eternal - I Wanna Be The Only One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bmow7c0oBk4" - }, - { - "title": "Whitney Houston - I Have Nothing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jGekZKwFnfA" - }, - { - "title": "Genesis - I Can't Dance", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Richard Marx - Hazard (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "96FIPuwSoX4" - }, - { - "title": "Alanis Morissette - Hand In My Pocket", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Dodgy - Good Enough (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Qg5UwDvRuDk" - }, - { - "title": "Blur - Girls & Boys (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w34DS8CDYQg" - }, - { - "title": "Oleta Adams - Get Here (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eNH1bhs0Xrg" - }, - { - "title": "Coolio Feat. L.V. - Gangsta's Paradise with Lyrics HD Vocal-Star Karaoke 4K", - "id": "WF6dAzDXl48" - }, - { - "title": "The Cure - Friday I'm In Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G97QVVRHvr4" - }, - { - "title": "Simply Red - Fairground (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AgtkHk6tTas" - }, - { - "title": "Sheryl Crow - Everyday Is A Winding Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "24ilKJgiCVo" - }, - { - "title": "Jennifer Paige - Crush (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oxn7CXs_GyQ" - }, - { - "title": "Jimmy Nail - Crocodile Shoes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Take That - Could It Be Magic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GOGdkEP_2bY" - }, - { - "title": "The Yardbirds - Train Kept A Rolling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lIZ_FHHsJe4" - }, - { - "title": "Z Z Top - Pearl Necklace (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nelq4T1PPpE" - }, - { - "title": "Z Z Top - Tush (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aO9tdEISAJY" - }, - { - "title": "La Grange Karaoke", - "id": "ZZ Top Karaoke Version" - }, - { - "title": "Eric Clapton - Got To Get Better", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eddie Murphy Feat Snoop Dogg - Redlight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ww7nh2BPwBU" - }, - { - "title": "Kenny Rogersย  - Goodbye Marie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Xk1F0Je1io0" - }, - { - "title": "Lighthouse Family - Happy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ujQ3-qAsjDQ" - }, - { - "title": "Engelbert Humperdinck - If I Could Love You More", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Roy Orbison - Crying (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TGg4eiC4RZ0" - }, - { - "title": "Alma - Chasing Highs (Karaoke Version)", - "id": "O1wPA-BLgw4" - }, - { - "title": "Amber Mark - Lose My Cool (Karaoke Version)", - "id": "Dfnco4mgAtY" - }, - { - "title": "Charlie Puth - Attention (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YAR9CZoVZD4" - }, - { - "title": "Cheat Codes Feat. Demi Lovato - No Promises (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iXl943C6iOc" - }, - { - "title": "Ed Sheeran - Nancy Mulligan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YFxWC6ab4kg" - }, - { - "title": "Ed Sheeran - Eraser (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CGE12f1bgoQ" - }, - { - "title": "Ed Sheeran - Happier (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LdOAyGj-_4Q" - }, - { - "title": "JP Cooper - Passport Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8mHQBBJlljo" - }, - { - "title": "Jason Derulo Feat. Nicki Minaj - Swalla", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Jennifer Hudson - Remember Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JRXm5FB6Vqk" - }, - { - "title": "Kasabian - You're In Love With A Psycho", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kendrick Lamar - Humble (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7JPUH8ibo44" - }, - { - "title": "Lady Gaga - The Cure (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cX1wWJ--iko" - }, - { - "title": "Louisa Johnson - Best Behaviour (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PgVjongAPO0" - }, - { - "title": "Martin Jensen - Solo Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8x3tmkLbIQ8" - }, - { - "title": "Shawn Mendes - There's Nothing Holding Me Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7XSk6-VqZM8" - }, - { - "title": "Stargate Feat. Pink & Sia - Waterfall (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SxeYXyI99E4" - }, - { - "title": "Steps - Scared Of The Dark (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QXVats8ruag" - }, - { - "title": "Enna Sona Arijit Singh (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dxubj46ykXc" - }, - { - "title": "The Lion King - Can You Feel The Love Tonight (With Lead Vocals) (Karaoke Version) with Lyrics HD", - "id": "owViq7p_AGg" - }, - { - "title": "The Lion King - Can You Feel The Love Tonight (Backing Track) (Karaoke Version) with Lyrics", - "id": "Kok77hGX8tY" - }, - { - "title": "Englebert Humperdink - Love Will Set You Free", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fergie - Big Girls Don't Cry", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Glasvegas - Daddy's Gone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uXa7imkUj1M" - }, - { - "title": "Guns N Roses - Knockin' On Heaven's Door", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Hoosiers - Goodbye Mr A (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O5GAtbkDMWc" - }, - { - "title": "James Blunt - 1973 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sQjk61mqZ7E" - }, - { - "title": "JLS - Do You Feel What I Feel", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lady Gaga - Judas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m0uCcLf4Z-4" - }, - { - "title": "Joshua Radin - I'd Rather Be With You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lady Gaga - Marry The Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "47LTBoYeaXc" - }, - { - "title": "Lana Del Rey - Born To Die (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "i4es7j-ATcg" - }, - { - "title": "James Blunt - High (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l7dxtuH_E5o" - }, - { - "title": "Kenny Loggins - Danger Zone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fy0fhqm_K-s" - }, - { - "title": "Pixie Lott - Cry Me Out (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eeJXxyLl1aI" - }, - { - "title": "Leona Lewis - Footprints In The Sand (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SjGGajSqy5w" - }, - { - "title": "Neil Sedaka - Laughter In The Rain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "poKsRjnwZzc" - }, - { - "title": "Leah McFall - I Will Survive (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "msmXauZt1tc" - }, - { - "title": "Little Boots - Remedy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yq0VQI0q8zo" - }, - { - "title": "Maroon 5 - Goodnight Goodnight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Kv9qF-3W1HU" - }, - { - "title": "Mika - Big Girl (You Are Beautiful) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SReThIL3HkY" - }, - { - "title": "Matthew Wilder - Break My Stride (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "W5Ufcz7ydEM" - }, - { - "title": "Mika - Happy Ending", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Scouting For Girls - Elvis Ain't Dead (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oosbaYXxKuM" - }, - { - "title": "Olly Murs - Heart On My Sleeve (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wmv8EejvTCk" - }, - { - "title": "Scissor Sisters - Fire With Fire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ctbGMkAHN4A" - }, - { - "title": "Scouting For Girls - I Wish I Was James Bond (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_RNQgr9uKoc" - }, - { - "title": "The Beatles - Blackbird (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "64A2q9OT8rQ" - }, - { - "title": "The Sugababes - Denial (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9qFIXtRPZHk" - }, - { - "title": "The Carpenters - Can't Smile Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PFGgl2wAFiA" - }, - { - "title": "The Beatles - Day Tripper (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s_RDNrAM8N8" - }, - { - "title": "The Beatles - Penny Lane (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eS9aleq4wb8" - }, - { - "title": "Tom Petty & The Heartbreakers - Free Fallin' (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MuxnFyXg_Bg" - }, - { - "title": "The Wanted - Gold Forever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3G1fVw501NI" - }, - { - "title": "Four Seasons - Walk Like A Man", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Union J - Carry You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v0jhvEFwGSg" - }, - { - "title": "Alan Jackson - Small Town Southern Man", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Lana Del Rey Feat. The Weeknd - Lust For Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0wKBxRpXm9k" - }, - { - "title": "Katy Perry feat. Migos - Bon Appetit (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vT5n2Zjv578" - }, - { - "title": "Fall Out Boy - Young & Menace", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "LANY - The Breakup (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oNfG0Bcm17c" - }, - { - "title": "Liam Payne Feat. Quavo - Strip That Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3-boDsOGAvo" - }, - { - "title": "Maggie Lindemann - Pretty Girl", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Verve - Bitter Sweet Symphony (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hfNJ3-0kmUE" - }, - { - "title": "Texas - Black Eyed Boy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rFzeZZAahA0" - }, - { - "title": "Big Mountain - Baby, I love your way (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DxHa5vTCyx0" - }, - { - "title": "Niall Horan - Slow Hands (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kQBusVVX5u4" - }, - { - "title": "Boyzone - Baby Can I Hold You with Lyrics HD Vocal-Star Karaoke 4K", - "id": "V8g5issiTuI" - }, - { - "title": "Take That - Babe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UOYsi2_Zh4w" - }, - { - "title": "Lonestar - Amazed (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J2kVwaJm1qc" - }, - { - "title": "Paramore - Hard Times (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PDdf-5oXtwU" - }, - { - "title": "Alan Walker Ft. Gavin James - Tired (Karaoke Version)", - "id": "-7HKhL74y8o" - }, - { - "title": "Beyonce - Die With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hOT-_TQ4tB4" - }, - { - "title": "Supergrass - Alright (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AC6__0ud9t0" - }, - { - "title": "Donny Osmond - Young Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LCMGV28MjMM" - }, - { - "title": "Bluebells - Young At Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ou7uBpe6ado" - }, - { - "title": "Wonderful Life Karaoke", - "id": "Black Karaoke Version" - }, - { - "title": "Paul Young - Wherever I Lay My Hat (That's My Home) (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "afZo4xD7bxs" - }, - { - "title": "Pet Shop Boys - West End Girls (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qCan9NguN_0" - }, - { - "title": "Ultravox - Vienna (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jkXmOAYiuGo" - }, - { - "title": "Phil Collins - Two Hearts (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2uftQz77B5w" - }, - { - "title": "Shakin' Stevens - This Ole House (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8t2zmOkFGNg" - }, - { - "title": "ABC - The Look Of Love (Karaoke Version)", - "id": "BjI-M8ktgFI" - }, - { - "title": "Heaven 17 - Temptation (Duet) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4bnV2aDjXGU" - }, - { - "title": "Huey Lewis And The News - Stuck With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6oKIbkpv-U0" - }, - { - "title": "Michael Jackson - Smooth Criminal (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GaQJkh9VkeU" - }, - { - "title": "Whitney Houston - Saving All My Love For You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zlNYW_7XzKE" - }, - { - "title": "Simply Red - Money's Too Tight (To Mention) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qkO1R7W9AvQ" - }, - { - "title": "Bucks Fizz - Making Your Mind Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oXjQyC5nkXg" - }, - { - "title": "Depeche Mode - Just Can't Get Enough with Lyrics HD Vocal-Star Karaoke 4K", - "id": "aI-1uvaVpu8" - }, - { - "title": "John Lennon - Jealous Guy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lionel Richie - Hello (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CfbmyMeop84" - }, - { - "title": "Jam - Going Underground (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IKBsWZSZaKE" - }, - { - "title": "Kelly Marie - Feels Like I'm In Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Tears For Fears - Everybody Wants To Rule The World (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "IIeGckWwdG4" - }, - { - "title": "Men At Work - Down Under (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-rXraRGtu1U" - }, - { - "title": "The Police - Don't Stand So Close To Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TlcC6HaUVB0" - }, - { - "title": "Communards - Don't Leave Me This Way with Lyrics HD Vocal-Star Karaoke 4K", - "id": "11RL16bLEdE" - }, - { - "title": "Pretenders - Don't Get Me Wrong (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AVzzIfO3pu4" - }, - { - "title": "Culture Club - Do You Really Want To Hurt Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0SSoHdMZcgw" - }, - { - "title": "George Michael - Careless Whisper (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sDXT3lESYUs" - }, - { - "title": "Kim Carnes - Bette Davis Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XnHcdxbBhEI" - }, - { - "title": "Blondie - Atomic with Lyrics HD Vocal-Star Karaoke 4K", - "id": "RGDDW7kuwEc" - }, - { - "title": "David Bowie - Ashes To Ashes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "asD8TITvra4" - }, - { - "title": "Lionel Richie - All Night Long (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9yRmeqQzspk" - }, - { - "title": "Phil Collins - Against All Odds (Take A Look At Me Now) (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "Iaj3LgvpAIk" - }, - { - "title": "Jam - A Town Called Malice (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-FGVLCRNEbM" - }, - { - "title": "Nena - 99 Red Balloons (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1ageh1qQ8Hw" - }, - { - "title": "Cutting Crew - (I Just) Died In Your Arms with Lyrics HD Vocal-Star Karaoke 4K", - "id": "YnqiNbkIMRw" - }, - { - "title": "Sam Cooke - Twistin' The Night Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uwE4_ngR3NM" - }, - { - "title": "The Walker Brothers - The Sun Ain't Gonna Shine Anymore (Karaoke Version) Lyrics Vocal-Star Karaoke", - "id": "A5BSaZeVMXo" - }, - { - "title": "Lovin' Spoonful - Summer In The City (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3f9UUho839o" - }, - { - "title": "Archies - Sugar Sugar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x78Aa6eMWII" - }, - { - "title": "Leo Sayer - You Make Me Feel Like Dancing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lLqDgu3tH24" - }, - { - "title": "Baccara - Yes Sir I Can Boogie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q5Z_XkgRgaQ" - }, - { - "title": "Sweet - Wig Wam Bam (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "N5SQIPViXFo" - }, - { - "title": "Leo Sayer - When I Need You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZXuEToQT-BE" - }, - { - "title": "Queen - We Are The Champions (Karaoke Version)", - "id": "U50XD4dFkNQ" - }, - { - "title": "Carpenters - Top Of The World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ehkgEnP0BPw" - }, - { - "title": "David Bowie - The Jean Genie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oeTA8_Uy6Hc" - }, - { - "title": "ABBA - Thank You For The Music", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Blondie - Sunday Girl with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Al1vJjarKkI" - }, - { - "title": "David Bowie - Starman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SS8fAA4TOI0" - }, - { - "title": "Jason Mraz - Unlonely (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "eJbxOboi80o" - }, - { - "title": "Shaed -Trampoline (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ya8IIy_74-I" - }, - { - "title": "Norman Greenbaum - Spirit In The Sky (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8ychavYVgeU" - }, - { - "title": "Hot Chocolate - So You Win Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dc7vH2e1c-4" - }, - { - "title": "10cc - Rubber Bullets (Karaoke Version)", - "id": "_4TGyV-9rsk" - }, - { - "title": "Status Quo - Rockin' All Over The World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6LoXYfQpMPY" - }, - { - "title": "George McCrae - Rock Your Baby", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Donny Osmond - Puppy Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SRePJv7quiw" - }, - { - "title": "Alvin Stardust - My Coo Ca Choo (Karaoke Version)", - "id": "yI_1feV7eRk" - }, - { - "title": "Steve Harleyย &ย Cockney Rebel - Make Me Smile (Come Up And See Me) (Karaoke Version)", - "id": "MjnkQg6LVEs" - }, - { - "title": "Roxy Music - Love Is The Drug (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UwVT1X4B7aU" - }, - { - "title": "Bryan Ferry - Let's Stick Together (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IxOrfD_JdsE" - }, - { - "title": "Tony Orlandoย &ย Dawn - Knock Three Times (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BFQf3OKYSLA" - }, - { - "title": "New Seekers - I'd Like To Teach The World To Sing(Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ey_ScGnDods" - }, - { - "title": "Rod Stewart - I Don't Want To Talk About It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DTQjKsMgvlU" - }, - { - "title": "Boomtown Rats - I Don't Like Mondays (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UvKBD2KpbEM" - }, - { - "title": "T. Rex - Hot Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pIi3M4jPvjg" - }, - { - "title": "David Essex - Gonna Make You A Star with Lyrics HD Vocal-Star Karaoke 4K", - "id": "mQGhbxsYkC8" - }, - { - "title": "Benny Hill - Ernie", - "id": "With Lyrics Vocal-Star Karaoke 4K" - }, - { - "title": "Status Quo - Down Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nBszuN_RwlA" - }, - { - "title": "David Cassidy - Daydreamer with Lyrics HD Vocal-Star Karaoke 4K", - "id": "pB4ArcDFYkg" - }, - { - "title": "Roxy Music - Dance Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fq34KDxiUeA" - }, - { - "title": "Slade - Cum On Feel The Noize (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G4-Hzuj9vQg" - }, - { - "title": "Nick Lowe - Cruel To Be Kind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rANzwEVm35M" - }, - { - "title": "Real Thing - Can't Get By Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "T3xPCAer-s4" - }, - { - "title": "The Rolling Stones - Brown Sugar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Z59An1AIm7Y" - }, - { - "title": "Gerry Rafferty - Baker Street (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FMcOXUx6wU0" - }, - { - "title": "Pink Floyd - Another Brick In The Wall (Part 2) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OUM_ELidnVQ" - }, - { - "title": "T. Rex - 20th Century Boy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HyJTyFKBTPk" - }, - { - "title": "Connie Francis - Where The Boys Are with Lyrics HD Vocal-Star Karaoke 4K", - "id": "EQ0Ux15f6K0" - }, - { - "title": "Supremes - Where Did Our Love Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "--lFe-1WInM" - }, - { - "title": "The Animals - We Gotta Get Out Of This Place (Karaoke Version)", - "id": "0rXmwbrYoPE" - }, - { - "title": "Smokey Robinsonย &ย The Miracles - The Tracks Of My Tears (Karaoke Version) with Lyrics HD Karaoke", - "id": "-EjLUK0qVfg" - }, - { - "title": "Searchers - Sweets For My Sweet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KVqQ3T_6fzY" - }, - { - "title": "Kinks - Sunny Afternoon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5DTZRJe_twQ" - }, - { - "title": "Zombies - She's Not There with Lyrics HD Vocal-Star Karaoke 4K", - "id": "rdWMUkH8J3E" - }, - { - "title": "Cascades - Rhythm Of The Rain with Lyrics HD Vocal-Star Karaoke 4K", - "id": "J3LreujrjSI" - }, - { - "title": "Fontella Bass - Rescue Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qVCLaKCkRdQ" - }, - { - "title": "Roy Orbison - Only The Lonely (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "do_hXR_QWlA" - }, - { - "title": "Moody Blues - Nights In White Satin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ty3PshcAC_Q" - }, - { - "title": "The Who - My Generation (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0oI7bYn3ENc" - }, - { - "title": "Mrs Robinson Karaoke", - "id": "Simon & Garfunkel Karaoke Version" - }, - { - "title": "Mamasย &ย The Papas - Monday Monday", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Donovan - Mellow Yellow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3OaK-pi1fbY" - }, - { - "title": "The Shangri-Las - Leader Of The Pack (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5w4189cFz38" - }, - { - "title": "The Rolling Stones - Jumpin' Jack Flash (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_DELYVePO94" - }, - { - "title": "Roy Orbison - It's Over (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c7ARTRxF_aE" - }, - { - "title": "Sonny And Cher - I Got You Babe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "T-q1x89UVkI" - }, - { - "title": "Animals - The House Of The Rising Sun (Karaoke Version)", - "id": "VdI3eFnIcn8" - }, - { - "title": "The Rolling Stones - Honky Tonk Women (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c9UOg6qNDTE" - }, - { - "title": "Hollies - He Ain't Heavy, He's My Brother (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KRP8dj8qJPw" - }, - { - "title": "The Rolling Stones - Get Off Of My Cloud (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ok-FRjyec3I" - }, - { - "title": "Beach Boys - Fun, Fun, Fun", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Move - Flowers In The Rain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xvMWXYtE-hM" - }, - { - "title": "Love Affair - Everlasting Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q6XAGXPfEfc" - }, - { - "title": "Beatles - Eight Days A Week (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1Obehnm860I" - }, - { - "title": "Petula Clark - Downtown (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q-mYiBFLJYE" - }, - { - "title": "Sam Cooke - Cupid (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "98J3zHxxJy0" - }, - { - "title": "The Drifters - Come On Over To My Place", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dixie Cups - Chapel Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dIFCi4rHu28" - }, - { - "title": "Beatles - Can't Buy Me Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-4FDMV39vHg" - }, - { - "title": "Mamasย &ย The Papas - California Dreamin'", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Neil Sedaka - Breaking Up Is Hard To Do (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yyrH7TVLsXw" - }, - { - "title": "Susan Maughan - Bobby's Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "liDBOq-5gMQ" - }, - { - "title": "Los Bravos - Black Is Black (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XFP5lGGXvyw" - }, - { - "title": "Four Seasons - Big Girls Don't Cry", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Small Faces - All Or Nothing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "X5m5K7zlUfM" - }, - { - "title": "Cilla Black - Alfie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "03QQ5LAmUFc" - }, - { - "title": "Beatles - A Hard Day's Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1PhNjM8ysiQ" - }, - { - "title": "Manfred Mann - 5-4-3-2-1", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Years & Years - Shine", - "id": "Karaoke Songs with Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "The Weeknd - Earned It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l7qi9kjQEBw" - }, - { - "title": "Wiz Khalifa ft. Charlie Puth - See You Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jn6UuXqLfW8" - }, - { - "title": "Tinie Tempah Ft. Jess Glynne - Not Letting Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rZoWdIuQ4oM" - }, - { - "title": "Taylor Swift - Wildest Dreams (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RprFrhOA6e8" - }, - { - "title": "Stereophonics - C'est La Vie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "a99E6-x-HCc" - }, - { - "title": "Sia - Chandelier (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TJVmqtm1f80" - }, - { - "title": "Sam Smith ft. John Legend - Lay Me Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EgtbPVM684Q" - }, - { - "title": "Rod Stewart - Love Is (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LO2MjcPvMOY" - }, - { - "title": "Rita Ora Feat. Chris Brown - Body On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JhzodQkjU54" - }, - { - "title": "Rita Ora - Poison (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EOMV9KrVkpE" - }, - { - "title": "Rachel Platten - Fight Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "14R0uaJjOXw" - }, - { - "title": "One Direction - Drag Me Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tzQW2BtiJpM" - }, - { - "title": "OMI (Felix Jaehn Remix) - Cheerleader (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6eJoxiPySwI" - }, - { - "title": "Meghan Trainor ft. John Legend - Like I'm Gonna Lose You (Karaoke Version) with Lyrics HD Karaoke", - "id": "YdSlv2Y0yS8" - }, - { - "title": "Major Lazer (feat. Mร˜) & DJ Snake - Lean On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mOJ4Wcm7L-g" - }, - { - "title": "LunchMoney Lewis - Bills (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SBVu7m4QHzU" - }, - { - "title": "Lost Frequencies - Are You With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vQdmmZ2kDSQ" - }, - { - "title": "Little Mix - Black Magic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6AlAVC6NVKg" - }, - { - "title": "Lana Del Rey - High By The Beach (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "b68c564ciIs" - }, - { - "title": "Kygo ft. Conrad Sewell - Firestone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_Q6NX-Akq4c" - }, - { - "title": "Joe Stone Feat. Montell Jordan -The Party", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Jessie J - Flashlight", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jess Glynne - Don't Be So Hard On Yourself", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jess Glynne - Hold My Hand", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jason Derulo - Want To Want Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Foxes - Body Talk", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fetty Wap - Trap Queen", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Felix Jaehn ft. Jasmine Thompson - Ainโ€™t Nobody", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ed Sheeran - Photograph (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_fu6Cp26bNs" - }, - { - "title": "Carly Rae Jepsen - I Really Like You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y4spwWLwlLw" - }, - { - "title": "Disclosure Feat. Sam Smith - Omen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HB707wHVqsQ" - }, - { - "title": "The Script - No Good In Goodbye (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SNm7O3GpTCM" - }, - { - "title": "Charlie Puth ft. Meghan Trainor - Marvin Gaye (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3JT9IltqQtg" - }, - { - "title": "David Guetta ft. Emeli Sande - What I Did For Love with Lyrics Vocal-Star Karaoke 4K", - "id": "5RnwB9qV5VY" - }, - { - "title": "Usher - I Don't Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ffoNkGntNk8" - }, - { - "title": "Frankie Goes to Hollywood - Power Of Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Calvin Harris & Disciples - How Deep Is Your Love (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "hUYwABzfkSQ" - }, - { - "title": "Years & Years - King", - "id": "Karaoke Song with Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Cliff Richard - Mistletoe And Wine", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Wretch 32 - 6 Words (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9QdQ-SK927M" - }, - { - "title": "Taylor Swift - Style (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tMMiec_Vv0k" - }, - { - "title": "Selena Gomez - The Heart Wants What It Wants (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x1x0cUkbf_4" - }, - { - "title": "Queen - Thank God It's Christmas (Karaoke Version)", - "id": "4fXfWp276m4" - }, - { - "title": "David Essex - A Winter's Tale with Lyrics HD Vocal-Star Karaoke 4K", - "id": "dbPbvnbHetk" - }, - { - "title": "MUD - Lonely This Christmas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "e8Sj-ajJWHc" - }, - { - "title": "Michael Bublรฉ - Cold December Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nO33IqsEFpQ" - }, - { - "title": "Perry Como & The Fontana Sisters - It's Beginning to Look a Lot Like Christmas (Karaoke Version)", - "id": "gWEBNIZfjSU" - }, - { - "title": "Sia - Elastic Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_UbZf73S7d0" - }, - { - "title": "Perry Como - Winter Wonderland (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UyjlTFmtkSg" - }, - { - "title": "Gene Autry - Rudolph The Red Nosed Reindeer", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frank Sinatra - Have Yourself A Merry Little Christmas", - "id": "With Lyrics HD Karaoke 4K" - }, - { - "title": "Eartha Kitt - Santa Baby", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Take That - Let in the sun (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3QRjH7mDsdI" - }, - { - "title": "Sigma Feat. Labrinth - Higher (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6ya_zjFaxAQ" - }, - { - "title": "Paloma Faith - Ready For The Good Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "urJEsTnKCgU" - }, - { - "title": "Ne-Yo - Coming With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "80b2Ra-Jyvg" - }, - { - "title": "Olly Murs Feat. Demi Lovato - Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qTd-gq8Ruoo" - }, - { - "title": "Elton John - Step Into Christmas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QVf_8gcAPTc" - }, - { - "title": "Andy Williams - It's The Most Wonderful Time of the Year", - "id": "Vocal Star Karaoke HD" - }, - { - "title": "Bing Crosby - White Christmas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZDH5MOe2uqE" - }, - { - "title": "Sam Smith - Like I Can (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ag7Dk1yzUII" - }, - { - "title": "Jona Lewie - Stop The Cavalry (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YYhTevi0Tus" - }, - { - "title": "Rihanna & Kanye West & Paul McCartney - FourFiveSeconds (Karaoke Version) with Lyrics HD Karaoke", - "id": "g3caEdVscvo" - }, - { - "title": "Chris Rea - Driving Home For Christmas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BfXjRNwcccY" - }, - { - "title": "Nick Jonas - Jealous (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MHRB0OTsgQQ" - }, - { - "title": "Perry Como - Frosty The Snowman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yaLAiIlWpWM" - }, - { - "title": "KWAYE - Little Ones (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VEwkjetFyRQ" - }, - { - "title": "Jonas Blue ft. William Singe - Mama", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Brenda Lee - Rockin' Around The Christmas Tree with Lyrics HD Vocal-Star Karaoke 4K", - "id": "mBLZhvJVXTE" - }, - { - "title": "One Direction - Fireproof (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IPXI1s5ho5E" - }, - { - "title": "Dean Martin - Let It Snow! Let It Snow! Let It Snow! (Karaoke Version) with Lyrics HD Karaoke", - "id": "KYlNGeX_kKk" - }, - { - "title": "Meghan Trainor - Dear Future Husband (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZeS63pF5Hmc" - }, - { - "title": "Kygo & Ellie Goulding - First Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y0ADX844T7o" - }, - { - "title": "McFly - Love Is Easy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eCchGvEtjBA" - }, - { - "title": "Mark Ronson Feat. Bruno Mars - Uptown Funk (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7MKliMVwqUY" - }, - { - "title": "Maroon 5 - Sugar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s-IQseeGSyA" - }, - { - "title": "McBusted - Air Guitar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cc_v-O6ZnyM" - }, - { - "title": "Marlon Roudette - When The Beat Drops Out (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7xhzeMw6s84" - }, - { - "title": "Miley Cyrus - Malibu (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PLAkujGBn6c" - }, - { - "title": "Selena Gomez - Bad Liar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ijs5he4f67I" - }, - { - "title": "Madonna - Living For Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Chainsmokers ft. Halsey - Closer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bReWFH5VHXU" - }, - { - "title": "Sigrid - Don't Kill My Vibe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L-Q1K70mho4" - }, - { - "title": "Kelly Clarkson - Heartbeat Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3fFPFAKn97Y" - }, - { - "title": "Jamie T - Rabbit Hole", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jessie J - Masterpiece", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Avril Lavigne - Keep Holding On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-hgCvpvIe1E" - }, - { - "title": "Boyzone - Love You Anyway with Lyrics HD Vocal-Star Karaoke 4K", - "id": "KWqEiE2qSKs" - }, - { - "title": "Charlie Brown - On My Way with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Pg8IlpsOLb8" - }, - { - "title": "James Bay - Let It Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "P6xeBtl3CQo" - }, - { - "title": "Florence & The Machine - Rabbit Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Diana Vickers - Once", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "First Aid Kit - My Silver Lining", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Goldfrapp - Rocket", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Hozier - Take Me To Church (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m3SCEHwaCqQ" - }, - { - "title": "James Bay - Hold Back The River (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OBb2CUJBap4" - }, - { - "title": "Katy Perry - Part Of Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9ylewvAVzjw" - }, - { - "title": "Guns n Roses - Live & Let Die", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Leona Lewis - Happy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HjWNRSvuvwA" - }, - { - "title": "La Roux - I'm Not Your Toy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vxkYhXOmmTY" - }, - { - "title": "Maroon 5 - One More Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dk_Q1ZS10LY" - }, - { - "title": "Gwen Stefani - Baby Don't Lie", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gorgon City Feat. Jennifer Hudson - Go All Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DA2PP_kzUiI" - }, - { - "title": "Miley Cyrus - See You Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2hrT4MdTrFY" - }, - { - "title": "Giorgio Moroder Feat. Kylie Minogue - Right Here, Right Now (Karaoke Version) with Lyrics Karaoke", - "id": "Y7rAyCGRZvI" - }, - { - "title": "Frozen Fever- Making Today a Perfect Day", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "G.R.L. - Lighthouse", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fergie - L.A Love (La La)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fall Out Boy - Immortals", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ellie Goulding - Love Me Like You Do (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cLf2lZA3C74" - }, - { - "title": "Ed Sheeran feat. Rudimental - Bloodstream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rbHGOHn4I1U" - }, - { - "title": "Ella Henderson - Yours (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "90WFn6774zI" - }, - { - "title": "DJ Fresh Feat. Ella Eyre - Gravity (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "06ScYFeYnRI" - }, - { - "title": "Cheryl - Only Human (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XaVe83SGqVQ" - }, - { - "title": "Charli XCX Feat. Rita Ora - Doing It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M0lWX70pRwg" - }, - { - "title": "Soundgarden - Black Hole Sun (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eEgap-mUPFQ" - }, - { - "title": "Imagine Dragons - I Bet My Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8Sz0D8p4tBM" - }, - { - "title": "Patsy Gallant - From New York To LA (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EeA_-X4-ZOE" - }, - { - "title": "Noisettes - Never Forget You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JqeOaF0lRe0" - }, - { - "title": "Noisettes - Wild Young Hearts (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7Apj3qxfgT4" - }, - { - "title": "Shirley Bassey - Goldfinger (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GRlD57pTijY" - }, - { - "title": "Jake Bugg - Lightning Bolt (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J59e-dIcLGE" - }, - { - "title": "Lawson - Learn To Love Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CJWspeCa2to" - }, - { - "title": "Alesha Dixon - Breathe Slow (Karaoke Version)", - "id": "pe-I7l-I9n8" - }, - { - "title": "Ed Sheeran - Lego House (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kTS0HgJ-gvQ" - }, - { - "title": "Green Day - Know Your Enemy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GnkJxV4ufnI" - }, - { - "title": "Katy Perry - Last Friday Night (T.G.I.F) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qqYqcBc9rzY" - }, - { - "title": "Lawson Feat. BOB - Broken Hearted (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dj6PvbgBwkg" - }, - { - "title": "Leon Jackson - Don't Call This Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "H9_WjUy1WE8" - }, - { - "title": "Lily Allen - 22 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TnxqfLejJCo" - }, - { - "title": "Mumford & Sons - I Will Wait (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NZNUiG35f0I" - }, - { - "title": "Motorhead - Ace of Spades (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nsbf6UY6X4o" - }, - { - "title": "Pixie Lott - Kiss The Stars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yd_lLjXZvlQ" - }, - { - "title": "Alessia Cara (Moana) - How Far I'll Go (Karaoke Version)", - "id": "jQFCh_p1usI" - }, - { - "title": "Royal Blood - Little Monster (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kR1sEDFPEgo" - }, - { - "title": "Sugababes - Change", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Beyonce - Sweet Dreams", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Will Young - Changes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Will Young - Jealousy (Karaoke Version) With Lyrics HD Vocal-Star Karaoke 4K", - "id": "50HkVkI25c8" - }, - { - "title": "Halsey - Graveyard (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_WI9zdEEAGY" - }, - { - "title": "Black Eyed Peas - Boom Boom Pow", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Black Eyed Peas - Just Can't Get Enough", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Black Eyed Peas - Meet Me Halfway", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Britney Spears - Born To Make You Happy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Boyzone - Every Day I Love You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Boyzone - Isn't It A Wonder", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Boyzone - Love Me For A Reason", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Britney Spears - Don't Let Me Be The Last To Know", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Britney Spears - I'm A Slave 4 U", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Britney Spears - Everytime", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Britney Spears - I Love Rock 'n' Roll", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Britney Spears - I'm Not A Girl Not Yet A Woman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Britney Spears - Piece Of Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Britney Spears - Womanizer", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Avicii & Rita Ora - Lonely Together", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Demi Lovato - You Don't Do It For Me Anymore", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ed Sheeran - Bibia Be Ye Ye", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fifth Harmony - He Like That", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Linkin Park - Talking To Myself", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fifth Harmony - Angel", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Justin Bieber & Bloodpop - Friends", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Khalid - Location (Karaoke Version) with Lyrics HD Vocal-Star Karaoke 4K", - "id": "EYSElfHE37w" - }, - { - "title": "Maroon 5 Feat. SZA - What Lovers Do", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kelly Clarkson - Love So Soft", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Paloma Faith - Crybaby", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Miley Cyrus - Younger Now", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Nick Jonas Feat. Mike Posner & Anne-Marie - Remember I Told You", - "id": "with Lyrics HD" - }, - { - "title": "Sam Smith - Too Good At Goodbyes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Rachel Platten - Broken Glass", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Taylor Swift - Ready For It", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "U2 - You're The Best Thing About Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Why Don't We - These Girls", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Rudimental Feat. James Arthur - Sun Comes Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Pink - Whatever You Want (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "2L_tHV1_9vY" - }, - { - "title": "Pink - Beautiful Trauma (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IGBaXL_G9oM" - }, - { - "title": "Niall Horan - Too Much To Ask (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Io1SMOs9wSM" - }, - { - "title": "Post Malone Feat. 21 Savage - Rockstar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fzDBNsfr-B0" - }, - { - "title": "Ryan Adams - Back In Your Head (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EjIhDhRbY9w" - }, - { - "title": "Sam Smith - Pray (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fz9TznTvxpY" - }, - { - "title": "Sia - Rainbow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qmffo0Sv7wQ" - }, - { - "title": "Willie Nelson - City Of New Orleans (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q4tWmM_UATs" - }, - { - "title": "The Trammps - Disco Inferno (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nF_hT2QmZnk" - }, - { - "title": "Taylor Swift - You Belong With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x-L4u4VeaOw" - }, - { - "title": "Tavares - Heaven Must Be Missing An Angel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0ilN00xgd3s" - }, - { - "title": "Tavares - Don't Take Away The Music (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3vItgpZFPzM" - }, - { - "title": "Tavares - More Than A Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hhwuuP1CePY" - }, - { - "title": "Stereophonics - Mr Writer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v1dlPXF2HVI" - }, - { - "title": "Sister Sledge - Lost In Music (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9mrOa8ynsbQ" - }, - { - "title": "Sister Sledge - He's The Greatest Dancer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BD7li8LYA3s" - }, - { - "title": "Sheryl Crow - The First Cut Is The Deepest (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "944JzDS21i4" - }, - { - "title": "Shania Twain - You're Still The One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NCwHGwOaCF0" - }, - { - "title": "Shania Twain - From This Moment On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Zd6SN2rEhzQ" - }, - { - "title": "Shalamar - I Can Make You Feel Good (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s-ZchrXSuBk" - }, - { - "title": "Shalamar - A Night To Remember (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pqSUqlPfhqA" - }, - { - "title": "Rod Stewart - Da Ya Think I'm Sexy? (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gLRocv5zh0k" - }, - { - "title": "Razorlight - In The Morning (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OdqeuQHgUAw" - }, - { - "title": "Pink - Raise Your Glass (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bjMJP9WRR38" - }, - { - "title": "Pink - Try (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jmO4Khs36g4" - }, - { - "title": "Pet Shop Boys - It's A Sin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3OL4GzslfdI" - }, - { - "title": "OneRepublic - Love Runs Out (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CtAgGRrCrUI" - }, - { - "title": "One Direction - Steal My Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EyBbXPF3Dww" - }, - { - "title": "Olivia Newton-John - Banks Of The Ohio (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RnIAUk8E1yM" - }, - { - "title": "Neil Diamond - Cracklin' Rosie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3eC3PaS5PEY" - }, - { - "title": "Neil Diamond - Forever In Blue Jeans (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QpEwZr2BB0Y" - }, - { - "title": "Meghan Trainor - All About That Bass (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eNYioaRQv1k" - }, - { - "title": "Mcfadden And Whitehead - Ain't No Stopping Us Now (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "kHCdgn243no" - }, - { - "title": "Matt Monro - Born Free (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Pm5gG5sZV-w" - }, - { - "title": "Marty Robbins - Big Iron (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RZzDYcto6jg" - }, - { - "title": "Maroon 5 - Payphone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_VLIpMX8sXI" - }, - { - "title": "Maroon 5 - She Will Be Loved (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kisBt0S_qrc" - }, - { - "title": "Maroon 5 - Animals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CwrIhptT-Nc" - }, - { - "title": "Marie Osmond - Paper Roses (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_K3bMOwF-k8" - }, - { - "title": "Lenny Kravitz - American Woman(Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Z2jkkjphEHI" - }, - { - "title": "Mama Cass - Dream A Little Dream Of Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WsDxmUG7CgU" - }, - { - "title": "Kool And The Gang - Celebration (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MHq-dL0bQqQ" - }, - { - "title": "Kim Wilde - If I Can't Have You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Nj1GqT__QmM" - }, - { - "title": "Kenny Rogers - The Gambler (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Iyl-wKg_l18" - }, - { - "title": "Kenny Rogers - Lucille (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MBtVIJZu8DM" - }, - { - "title": "Johnny Cash - A Boy Named Sue", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Legend - You And I", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Legend - Ordinary People", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Denver - Annie's Song", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joe Cocker - You Are So Beautiful", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jimi Hendrix - All Along The Watchtower", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jessie J - Bang Bang", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Janis Joplin - Me And Bobby Mcgee (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kquevv9ySJs" - }, - { - "title": "Hues Corporation - Rock The Boat (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RyVBZrK5uL4" - }, - { - "title": "Heatwave - Boogie Nights (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oY2UJeL-LgM" - }, - { - "title": "Harry Connick Jr - It Had To Be You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M2NdCYZR20k" - }, - { - "title": "Hank Williams - Your Cheatin' Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x8gYUr1WbGI" - }, - { - "title": "Gloria Gaynor - Never Can Say Goodbye (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iqw76lQbunc" - }, - { - "title": "George Ezra - Blame It On Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Ezra - Budapest", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gene Pitney - Twenty Four Hours From Tulsa", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gene Pitney Something's Gotten Hold Of My Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Etta James - I'd Rather Go Blind", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - Spanish Eyes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Engelbert Humperdinck - The Last Waltz", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ella Henderson - Glow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3zJ2GFUZyao" - }, - { - "title": "Eddy Grant - Electric Avenue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4OiEY993jV4" - }, - { - "title": "Ed Sheeran - Don't (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Vv_mn9fOWOg" - }, - { - "title": "Dusty Springfield - You Don't Have To Say You Love Me", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Dr Hook - Storms Never Last", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dr Hook - Sylvia's Mother", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dolly Parton - Stairway To Heaven", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dr Hook - A Little Bit More", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dolly Parton - Here You Come Again", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dionne Warwick - Walk On By (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "281Zt82vJ1g" - }, - { - "title": "David Bowie - Let's Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hs-k8SLDsoc" - }, - { - "title": "David Bowie - Space Oddity (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wfTtbrO1MoQ" - }, - { - "title": "Daniel O'donnell - Danny Boy with Lyrics HD Vocal-Star Karaoke 4K", - "id": "YssyM0hNF6w" - }, - { - "title": "Cilla Black - Anyone Who Had A Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fmUfYpubVTk" - }, - { - "title": "Chic - Dance Dance Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "921S8Kf2TTc" - }, - { - "title": "Chic - Everybody Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8ndi5P9WO2U" - }, - { - "title": "Cher - If I Could Turn Back Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zyyn9wrorj0" - }, - { - "title": "Cher - Walking In Memphis (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RHGCNjCIwIU" - }, - { - "title": "Charlie Rich - Behind Closed Doors (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "j_SlUcoQ7wc" - }, - { - "title": "Celine Dion - Because You Loved Me with Lyrics HD Vocal-Star Karaoke 4K", - "id": "3XYh-FdWCq8" - }, - { - "title": "Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "25-8MRL4K8E" - }, - { - "title": "Bobby Darin - Beyond The Sea (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "v8ukt9tcMxY" - }, - { - "title": "Blink 182 - The Rock Show with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Z0b4SrE-dE4" - }, - { - "title": "Billy Swan - I Can Help (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y5n82mI-3_o" - }, - { - "title": "Billie Jo Spears - 57 Chevrolet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "353L8aCVvGg" - }, - { - "title": "Belinda Carlisle - Heaven Is A Place On Earth", - "id": "Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Anita Ward - Ring My Bell", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Alanis Morissette - Ironic", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Taylor Swift - Shake It Off (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bgsrz04gd-c" - }, - { - "title": "Weezer - Say It Ain't So (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r9ZkP-s9880" - }, - { - "title": "The Verve - Sonnet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l5df4jITh8c" - }, - { - "title": "Travis - Driftwood (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tL-32IvccLg" - }, - { - "title": "Tenacious D - Wonderboy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "atTLnWpbVVY" - }, - { - "title": "Take That - Never Forget (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xwvCcZDp8tE" - }, - { - "title": "Tenacious D - Tribute (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UzLDj_jxM0I" - }, - { - "title": "Stereophonics - Handbags And Gladrags (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "apzt-Y8E5PI" - }, - { - "title": "Snow Patrol - Spitting Games (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7iuc1SEkyrc" - }, - { - "title": "The Script - Superheroes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9tqE5s2DuIA" - }, - { - "title": "Pulp - Common People (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Zi-AHGGwFu8" - }, - { - "title": "No Doubt - Don't Speak (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p9yeqojy7Js" - }, - { - "title": "Nirvana - Smells Like Teen Spirit (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xg2SFGQqy34" - }, - { - "title": "Nicole Kidman & Ewan Mcgregor (Moulin Rouge) - Come What May (Karaoke Version) with Lyrics HD", - "id": "eBgFY0aokjc" - }, - { - "title": "Moulin Rouge - One Day I'll Fly Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gj1W5GpW24Q" - }, - { - "title": "Moulin Rouge - Your Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "19lTFvZf2uQ" - }, - { - "title": "Elephant Love Medley Karaoke", - "id": "Moulin Rouge Karaoke Version" - }, - { - "title": "Marvin Gaye - What's Going On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q9h2OxtrwIY" - }, - { - "title": "James Taylor - You've Got A Friend (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HvGCzFz8MWg" - }, - { - "title": "Kenny Rogers & Dolly Parton - Islands In The Stream (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "vYWWONVFj3M" - }, - { - "title": "Frozen - In Summer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "g8PJiyllzQc" - }, - { - "title": "Elvis Presley - All Shook Up with Lyrics HD Vocal-Star Karaoke 4K", - "id": "bPtEcxttAeE" - }, - { - "title": "Faith Hill - There You'll Be (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HqWTx99wyPw" - }, - { - "title": "Darkness - Christmas Time (Don't Let The Bells End) (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "ekIOu1B8lJk" - }, - { - "title": "Daniel Merriweather - Red with Lyrics HD Vocal-Star Karaoke 4K", - "id": "BcL84KgYqMY" - }, - { - "title": "Christina Perri - Human (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FiB_a4jCr4E" - }, - { - "title": "Bob Dylan - Like A Rolling Stone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RbziPU_CbIY" - }, - { - "title": "Cheryl Cole Feat. Tinie Tempah - Crazy Stupid Love (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "n_y6e88sfes" - }, - { - "title": "10cc - I'm Not In Love (Karaoke Version)", - "id": "Y_B2GP-KS34" - }, - { - "title": "The Beatles - I Saw Her Standing There (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U4LMTplMsDU" - }, - { - "title": "Ella Henderson - Ghost (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TIKElC1l6Ts" - }, - { - "title": "Ed Sheeran - Thinking Out Loud (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xmdSqRFr8tc" - }, - { - "title": "Sandi Thom - I Wish I Was A Punk Rocker (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZIGOK7Wjduk" - }, - { - "title": "Wet Wet Wet - Sweet Little Mystery (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YhtwxfahLYs" - }, - { - "title": "Kooks - She Moves In Her Own Way", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Texas - I Don't Want A Lover (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-4TileZ8KRM" - }, - { - "title": "Girls Aloud - Sound Of The Underground (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GtIPlTQlBG8" - }, - { - "title": "Toni Basil - Mickey (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZWDgS4AAIrU" - }, - { - "title": "Mcfly - Obviously (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ipQWFHJbWyU" - }, - { - "title": "La Roux Bulletproof (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zZr5WWaevag" - }, - { - "title": "Scissor Sisters - Filthy Gorgeous (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "u8FD-Uj2n7g" - }, - { - "title": "Girls Aloud - Love Machine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6gZPsg8tkgs" - }, - { - "title": "Busted - Crashed The Wedding (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qKCQ7Bqstqg" - }, - { - "title": "Kaiser Chiefs - I Predict A Riot (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2KL9AcVvjbQ" - }, - { - "title": "Nickelback - How You Remind Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FgZjZTAGAK4" - }, - { - "title": "Blur - Song 2 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J-ecn4adjdk" - }, - { - "title": "Girls Aloud - Something Kinda Ooooh (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oiuQtiF9q-0" - }, - { - "title": "Duran Duran - Girls On Film", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Sara Bareilles - Love Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1e-sKNtzpeo" - }, - { - "title": "Sean Kingston - Beautiful Girls (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AGDD2sdflAc" - }, - { - "title": "Maroon 5 - Makes Me Wonder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TBwOx0ZxB7c" - }, - { - "title": "The Killers - Read My Mind", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gossip - Standing In The Way Of Control (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KIaQD3wGokw" - }, - { - "title": "Mariah Carey - Hero", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Madonna - Crazy For You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Katie Melua - Closest Thing To Crazy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bSHhAlaA3BY" - }, - { - "title": "Celine Dion - It's All Coming Back To Me with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Y8fJ-rpijtk" - }, - { - "title": "Yvonne Elliman - If I Can't Have You Jo (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kYY6_dCDkO0" - }, - { - "title": "Kylie Minogue - On A Night Like This (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1TuCAhUUIs0" - }, - { - "title": "Doris Day - Que Sera Sera (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x62Gh0ddNTY" - }, - { - "title": "Peggy Lee - Fever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fH0KCB5OtvI" - }, - { - "title": "Cher - The Shoop Shoop Song (It's In His Kiss) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "77m3m6qpD28" - }, - { - "title": "Shakira Ft. Wyclef Jean - Hips Don't Lie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zAEh_o11UA8" - }, - { - "title": "Natasha Bedingfield - Unwritten (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oq1XlcCln8U" - }, - { - "title": "Kelly Llorenna - This Time I Know It's For Real", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Pussycat Dolls - I Don't Need A Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jMTxtxv1EGU" - }, - { - "title": "Bonnie Tyler - Holding Out For A Hero (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qDyh9mbr5sc" - }, - { - "title": "Sinitta - So Macho (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xm5SEfrJyzg" - }, - { - "title": "Madonna - Into The Groove", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jamelia - Superstar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GX0KVizHZy8" - }, - { - "title": "Shakira - Whenever, Wherever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MgZbF3YT2kE" - }, - { - "title": "Gwen Stefani Ft. Akon - The Sweet Escape", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Leona Lewis - Better In Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ghbqaj8JMoQ" - }, - { - "title": "Kelly Rowland - Train On A Track (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nkXhO0KxZEg" - }, - { - "title": "Jennifer Lopez - Ain't It Funny (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L2ZdfITpgMk" - }, - { - "title": "Christina Milian - Dip It Low (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lJ4AFNbW3dc" - }, - { - "title": "Kate Nash - Foundations (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y4TRIbbxRR0" - }, - { - "title": "Lily Allen - The Fear (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HJx7XxwfHNo" - }, - { - "title": "The Ting Tings - That's Not My Name (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FdIAwS3pRkg" - }, - { - "title": "Monty Python - Always Look On The Bright Side Of Life (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "UHwrV9K8qZU" - }, - { - "title": "Vic Reeves & The Wonder Stuff - Dizzy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KQlWQZsYlhI" - }, - { - "title": "Lesley Gore - It's My Party (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JUUSwgRSXyA" - }, - { - "title": "Eurythmics and Aretha Franklin - Sisters Are Doing It For Themselves (Karaoke) Vocal Star Karaoke", - "id": "TzBaMBC0YVY" - }, - { - "title": "Duran Duran - Rio", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Travolta & Olivia Newton John - You're The One That I Want (Grease) (Karaoke Version) Lyrics", - "id": "LRNpxIFAFE0" - }, - { - "title": "Jackson Five - I Want You Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nc7G9kzAAbo" - }, - { - "title": "Boyz II Men - End Of The Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "amkrPchIbn4" - }, - { - "title": "The Pogues - A Rainy Night In Soho (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "I7J-dQVNqu8" - }, - { - "title": "Gabrielle - Dreams", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Aswad - Shine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KGTUZGX0PCM" - }, - { - "title": "Divinyls - I Touch Myself (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AiztMISp5Vo" - }, - { - "title": "The Black Crowes - Hard To Handle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KfS782PquhM" - }, - { - "title": "Shaggy - Oh Carolina (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AlbCptPlE0M" - }, - { - "title": "Maria McKee - Show Me Heaven", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "M People - Moving On Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ace Of Base - All That She Wants (Karaoke Version)", - "id": "T7l21dOrnR4" - }, - { - "title": "Duran Duran - Ordinary World", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Shania Twain - Man! I Feel Like A Woman! (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q_uxu2VWdfM" - }, - { - "title": "Republica - Ready To Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8JmL4mzHK6c" - }, - { - "title": "R.E.M - Losing My Religion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dNXJ2KGrHto" - }, - { - "title": "Madonna - Beautiful Stranger", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lenny Kravitz - Are You Gonna Go My Way (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Qo0zIfa97yQ" - }, - { - "title": "The Farm - All Together Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Qp-sO0bV2cE" - }, - { - "title": "The Stone Roses - Love Spreads (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w8eYRdRxgz0" - }, - { - "title": "James - Sit Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BpsbF5Glt_I" - }, - { - "title": "Gigolo Aunts - Where I Find My Heaven (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TMF5diRgw_g" - }, - { - "title": "Lightning Seeds - The Life Of Riley (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PSMQ69gTB4U" - }, - { - "title": "New Radicals - You Get What You Give (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ux4LiAoiwcw" - }, - { - "title": "Pulp - Disco 2000 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p7snlZAQ2zI" - }, - { - "title": "Chumbawamba - Tubthumping (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9oqVM9vR75c" - }, - { - "title": "Blur - Parklife (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "X2I3NFwLghI" - }, - { - "title": "Vengaboys - We Like To Party (The Vengabus) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MK7cjY0kAdc" - }, - { - "title": "The Outhere Brothers - Boom Boom Boom (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "scXAAw1Oyt8" - }, - { - "title": "Eiffel 65 - Blue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vu7A7U-PlO8" - }, - { - "title": "D Ream - Things Can Only Get Better with Lyrics HD Vocal-Star Karaoke 4K", - "id": "lMMJ-aDLUDQ" - }, - { - "title": "2 Unlimited - No Limit (Karaoke Version)", - "id": "-DNwFUps9Nc" - }, - { - "title": "Corona - The Rhythm Of The Night with Lyrics HD Vocal-Star Karaoke 4K", - "id": "g9BC4setIZI" - }, - { - "title": "Bobby Brown - Two Can Play That Game (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_XYOnvca6vY" - }, - { - "title": "Blur - Country House (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y8c92h8oOHs" - }, - { - "title": "Spice Girls - Stop (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6p4-9l0aNCo" - }, - { - "title": "Shabba Ranks - Mr Loverman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Pqnjjm60fa4" - }, - { - "title": "R Kelly - I Believe I Can Fly (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kE5BZi0GKlU" - }, - { - "title": "Madonna - Vogue", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lady Antebellum - What If I Never Get Over You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3PiAQq9p0G8" - }, - { - "title": "Jeremy Zucker - Comethru (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rixoDzs7-n0" - }, - { - "title": "Y2K bbno$ - Lalala (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q3967mIOTi4" - }, - { - "title": "Travis Scott - Highest In The Room (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lefHkxQ4kbA" - }, - { - "title": "Maroon 5 - Memories (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YY0-V2Yeiwc" - }, - { - "title": "Lizzo - Good As Hell (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qnXYQ-pnGfo" - }, - { - "title": "AJ Tracey - Ladbroke Grove (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "p8ZJxC2SAbE" - }, - { - "title": "Calvin Harris Feat. Haim - Pray To God (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ebCBXsbDvEo" - }, - { - "title": "Calvin Harris Feat. Ellie Goulding - Outside (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6ONTYQkgaCU" - }, - { - "title": "Ben Haenow - Something I Need", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Bakermat - Teach Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jb-XxQ-uWgo" - }, - { - "title": "Bars & Melody - Keep Smiling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B9ORpx378mw" - }, - { - "title": "Ariana Grande Feat. The Weeknd - Love Me Harder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "b_o5eYoADBk" - }, - { - "title": "Alesso Ft. Tove Lo - Heroes", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Queen - The Show Must Go On (Karaoke Version)", - "id": "yoHpfEFSC-E" - }, - { - "title": "Queen - One Vision (Karaoke Version)", - "id": "u2PWQugZM4I" - }, - { - "title": "Queen - I Want To Break Free (Karaoke Version)", - "id": "GJ700aylca4" - }, - { - "title": "Queen - Crazy Little Thing Called Love (Karaoke Version)", - "id": "zRhbmB7mpbU" - }, - { - "title": "Neil Diamond - Mr Bojangles (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "ya3ywsrGkcg" - }, - { - "title": "Neil Diamond - Hello Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZfH4sPWXrtU" - }, - { - "title": "Madness - Our House", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Paul McCartney - Wonderful Christmas Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DtavgBozkzQ" - }, - { - "title": "Madness - It Must Be Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Madness - House of Fun", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Madness - Driving In My Car", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Leona Lewis - Run (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "87HL2fuz1fg" - }, - { - "title": "Lady Gaga - You and I (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gJ_NNnGiqgA" - }, - { - "title": "Kinks - Waterloo Sunset", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Killers - When You Were Young", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Killers - Somebody Told Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "James Brown - It's A Man's Man's Man's World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xnSdwABSGLA" - }, - { - "title": "James Brown - Sex Machine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G1c1PRjUKHQ" - }, - { - "title": "James Brown - I Got You (I Feel Good) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HAHTKkIvFl4" - }, - { - "title": "Green Day - Good Riddance (Time of Your Life) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fBwMS5QuNQI" - }, - { - "title": "Green Day - Boulevard of Broken Dreams (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RsKcHTCwLM0" - }, - { - "title": "Green Day - Basket Case (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1qvEpnf06SQ" - }, - { - "title": "Gerry And The Pacemakers - Ferry 'cross the Mersey (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "7kR9Tfe9gdo" - }, - { - "title": "Gerry And The Pacemakers - I Like It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "W4ijQ9mm1W8" - }, - { - "title": "Beautiful South - Perfect 10 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ykz8hAKXg1s" - }, - { - "title": "Beautiful South - Song For Whoever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-mJhdynh1uw" - }, - { - "title": "Beautiful South - Rotterdam (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2u8r6uZyG1U" - }, - { - "title": "Beautiful South - A Little Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bGcqNNw-QKk" - }, - { - "title": "Eric Clapton - Wonderful Tonight", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Eric Clapton - I Shot the Sheriff", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Elton John - Sacrifice (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jdKMJvXcwg0" - }, - { - "title": "Elton John - Rocket Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-ixiLJan-KM" - }, - { - "title": "Dusty Springfield - I Only Want To Be With You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Drifters - Saturday Night At the Movies", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Drifters - Under the Boardwalk", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Drifters - Up On the Roof", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dire Straits - Sultans of Swing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BZlrTE7k8dY" - }, - { - "title": "Dire Straits - Walk of Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iBC9rocHanE" - }, - { - "title": "Diana Ross - I'm Coming Out", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Diana Ross - Chain Reaction", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Diana Ross - Ain't No Mountain High Enough", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Commodores - Easy with Lyrics HD Vocal-Star Karaoke 4K", - "id": "ykH_keaSo7Y" - }, - { - "title": "Oasis - Live Forever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LbSIVg0j2nY" - }, - { - "title": "Kate Bush - Wuthering Heights (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y40RLeiPXGY" - }, - { - "title": "Defying Gravity (Single Performer) Karaoke", - "id": "Wicked Karaoke Version" - }, - { - "title": "Frozen - For The First Time In Forever", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frank Sinatra - Strangers In The Night", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "John Lennon & Yoko Ono - Happy Xmas (War Is Over)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Commitments - Try A Little Tenderness with Lyrics HD Vocal-Star Karaoke 4K", - "id": "_cK6I-O9MFI" - }, - { - "title": "The Beatles - Come Together (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GOpOxzFERYM" - }, - { - "title": "Barbra Streisand - All I Ask Of You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IuoqCwq4Mdk" - }, - { - "title": "Barbra Streisand - memory (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sV-LCxX0n0E" - }, - { - "title": "Andy Williams - Moon River", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Britney Spears - Baby One More Time with Lyrics HD Vocal-Star Karaoke 4K", - "id": "1rcMtL62YUo" - }, - { - "title": "Queen - Somebody To Love (Karaoke Version)", - "id": "SQaq6kuQTHU" - }, - { - "title": "Texas - Say What You Want (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rC8Gnh0WPcU" - }, - { - "title": "Oasis - The importance Of Being Idle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Mk2k24LHlKA" - }, - { - "title": "Oasis - Half The World Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qgDpuW0hGtY" - }, - { - "title": "The Beatles - All You Need Is Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wfe5t5qnnAI" - }, - { - "title": "Rihanna - Don't Stop The Music (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_852uI4VDRE" - }, - { - "title": "Beyonce and Shakira - Beautiful Liar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R8FtblOYOO8" - }, - { - "title": "Cliff Richard - Congratulations", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Alicia Keys - Fallin' (Karaoke Version)", - "id": "uMqmrCupAx8" - }, - { - "title": "Rihanna - Take A Bow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HjR4u3T473E" - }, - { - "title": "Chris Rea - The Road To Hell (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EToO6JAy0rw" - }, - { - "title": "Celine Dion - Think Twice with Lyrics HD Vocal-Star Karaoke 4K", - "id": "94Xsw3DxiW4" - }, - { - "title": "Celine Dion - Power of Love with Lyrics HD Vocal-Star Karaoke 4K", - "id": "ZjJpexCSv5k" - }, - { - "title": "The Monkees - I'm a Believer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1yJCi9yX-k0" - }, - { - "title": "Michael Jackson - You Are Not Alone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3BSuCPhABS4" - }, - { - "title": "Oasis - She's Electric (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "q13p4UDZokw" - }, - { - "title": "Britney Spears - Sometimes with Lyrics HD Vocal-Star Karaoke 4K", - "id": "RhEdNMBpYbc" - }, - { - "title": "Boyzone - Words with Lyrics HD Vocal-Star Karaoke 4K", - "id": "7HqabTr-y1Q" - }, - { - "title": "Meat Loaf & Cher - Dead Ringer For Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Robert Palmer - Addicted To Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fdn-Tu3QbSg" - }, - { - "title": "Katy Perry Ft. Juicy J - Dark Horse (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8R0QW1nJ034" - }, - { - "title": "Katy Perry - Birthday (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6xTxG0q3DaY" - }, - { - "title": "Beyonce feat Jay Z - Drunk In Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J5Qq6tn5G9U" - }, - { - "title": "Ed Sheeran - Sing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_hCC7xREDh0" - }, - { - "title": "Beyonce - XO", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Beyonce - Me, Myself and I", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Black Eyed Peas - Don't Phunk With My Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "C3BWjH9M7VQ" - }, - { - "title": "Celine Dion - All By Myself with Lyrics HD Vocal-Star Karaoke 4K", - "id": "hjNXgdoWIoY" - }, - { - "title": "Britney Spears - Oops!... I Did It Again with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Qxlj-GaV33A" - }, - { - "title": "Kylie Minogue - Can't Get You Out Of My Head (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Alv3EBNGPko" - }, - { - "title": "Britney Spears - Toxic with Lyrics HD Vocal-Star Karaoke 4K", - "id": "qIqdZKAJMNM" - }, - { - "title": "Four Seasons - December '63 (Oh, What A Night)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Carpenters - Yesterday Once More (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "u5WVSJNVs2Q" - }, - { - "title": "Carpenters - Superstar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IUHkFSg4ASc" - }, - { - "title": "Bachman Turner Overdrive - You Ain't Seen Nothin' Yet (Karaoke Version) with Lyrics HD Karaoke", - "id": "d1mrvPDxYvw" - }, - { - "title": "Barbra Streisand & Neil diamond - You Don't Bring Me Flowers (Karaoke Version) with Lyrics Karaoke", - "id": "mfeLAE8dc3s" - }, - { - "title": "Elvis Presley - Viva Las Vegas with Lyrics HD Vocal-Star Karaoke 4K", - "id": "myfbSn90beA" - }, - { - "title": "Andy Williams - Music To Watch Girls By", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Buddy Holly - Heartbeat with Lyrics HD Vocal-Star Karaoke 4K", - "id": "T3ize7wzb4k" - }, - { - "title": "Bryan Adams - When You're Gone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lYNDpKLScmk" - }, - { - "title": "Bryan Adams - Please Forgive Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6Xr6qAMUYiE" - }, - { - "title": "There's A Hole In My Bucket - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3yX-XgTF1Yw" - }, - { - "title": "Bon Jovi - Bed of Roses (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3BvPlLvXAyI" - }, - { - "title": "Bonnie Tyler - It's A Heartache (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_WDbpZr2E3I" - }, - { - "title": "Bon Jovi - It's My Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mvlB5tF30F4" - }, - { - "title": "Bon Jovi - Always (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OfaVFhFRGB4" - }, - { - "title": "Bee Gees - You Should Be Dancing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IvjD02vDkEs" - }, - { - "title": "Bee Gees - How Deep Is Your Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oMjWWkwAUG8" - }, - { - "title": "Beach Boys - California Girls", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Barry White - Just the Way You Are (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VUNx3riozh0" - }, - { - "title": "Bay City Rollers - I Only Want To Be With You", - "id": "Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Barry Manilow - Can't Smile Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LOfSEuvojBI" - }, - { - "title": "Bananarama - Robert de Niro's Waiting (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bGX6m8q4JZA" - }, - { - "title": "Bananarama - Cruel Summer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "u91JUoVWXQc" - }, - { - "title": "Backstreet Boys - Shape of My Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dnobFkiWDnc" - }, - { - "title": "Backstreet Boys - As Long As You Love Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0S-vyRvfgZY" - }, - { - "title": "Avril Lavigne - Sk8er Boi (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DNxHFKGTkpg" - }, - { - "title": "Avril Lavigne - I'm With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HGCZsWmDFpc" - }, - { - "title": "Avril Lavigne - Complicated (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Y5NeSmqhzbw" - }, - { - "title": "Anastacia - I'm Outta Love (Karaoke Version)", - "id": "yatOeX5Hx-I" - }, - { - "title": "Al Green - Tired of Being Alone", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "The Baha Men - Who Let The Dogs Out (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JFONq6seIl0" - }, - { - "title": "Aerosmith - Crazy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Alphabeat - Fascination (Karaoke Version)", - "id": "G9stTlTPI3k" - }, - { - "title": "ABBA - Take A Chance On Me", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "ABBA - Super Trouper", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "ABBA - I Have A Dream", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Travie McCoy Ft. Bruno Mars - Billionaire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LRkWGpLq61A" - }, - { - "title": "The Script feat. Will.I.Am - Hall Of Fame (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "t4Ha9d6ewQE" - }, - { - "title": "Taylor Swift - Love Story (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3vAtthQEeaw" - }, - { - "title": "Taylor Swift - 22 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FVRL1Bvzf0k" - }, - { - "title": "Take That & Lulu - Relight My Fire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fYZig0aSSoU" - }, - { - "title": "Take That - The Greatest Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y_r9S-AdbbE" - }, - { - "title": "Take That - The Flood (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2RP3QN7Ay9c" - }, - { - "title": "Take That - Patience (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pV7KEM-ngXE" - }, - { - "title": "Taio Cruz - Dynamite (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M5I4PJpC6Wg" - }, - { - "title": "Susan Boyle - Wild Horses (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WiP8Y9kQdis" - }, - { - "title": "Stooshe - Black Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "clq-To9RyeM" - }, - { - "title": "Stevie Wonder - Superstition (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XxR3RUNldJA" - }, - { - "title": "Stevie Wonder - Isn't She Lovely (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oCu2pcgFi28" - }, - { - "title": "Stevie Wonder - I Just Called To Say I Love You (Karaoke Version) with Lyrics HDVocal-Star Karaoke", - "id": "IJHP54Hq6Ag" - }, - { - "title": "Steps - Tragedy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U6Ha_UVPa7g" - }, - { - "title": "Starship - We Built This City (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aWz0uPI4-7Q" - }, - { - "title": "Spandau Ballet - True (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cgIMqMgYdqk" - }, - { - "title": "Sound Of Music - Sound Of Music (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U79-rGHfSjs" - }, - { - "title": "Snow Patrol - Chasing Cars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BkJbZtld4t0" - }, - { - "title": "Sinead O'Connor - Nothing Compares To You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bVs-99FdGKM" - }, - { - "title": "Simply Red - If You Don't Know Me By Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qy-hEjlY3_4" - }, - { - "title": "Simon & Garfunkel - Bridge Over Troubled Water (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2XwEmyui7-0" - }, - { - "title": "Shirley Bassey - Big Spender (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B0yEv1MW7Ec" - }, - { - "title": "Shakira - Underneath Your Clothes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "k3Ljq6ObQaU" - }, - { - "title": "Selena Gomez - Love You Like A Love Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rirekNGAcAw" - }, - { - "title": "The Script - Break Even (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5Cs63IpqA2s" - }, - { - "title": "Scouting For Girls - This Ain't A Love Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BW6Sl9mq0WU" - }, - { - "title": "Scouting For Girls - She's So Lovely (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3GrR0slGLJs" - }, - { - "title": "The Saturdays - What About Us (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0WQPHXRLVuA" - }, - { - "title": "Sandie Shaw - Puppet On A String (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LTb2leYD-10" - }, - { - "title": "Sam Bailey - Skyscraper (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Phms9LzkOX4" - }, - { - "title": "S Club 7 - Reach (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "F3S0W1YZ41k" - }, - { - "title": "Ruby Murray - Softly Softly (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TUE7VQYMfW0" - }, - { - "title": "Roxette - Listen To Your Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "D0DgEGME7dI" - }, - { - "title": "Ronan Keating - When You Say Nothing At All (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3ua25xrmS_A" - }, - { - "title": "Robin Thicke FT. T.I. & Pharrell - Blurred Lines (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "7SkVdNK3qP4" - }, - { - "title": "Robbie Williams - She's The one (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kNOD0tMog9c" - }, - { - "title": "Robbie Williams - Go Gentle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5b-78fbkfOU" - }, - { - "title": "Robbie Williams - Feel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iX5Rn6zl_vs" - }, - { - "title": "Rizzle Kicks - Mama Do The Hump (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XjcRRe9se5w" - }, - { - "title": "Rihanna ft Mikky Ekko - Stay (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QUAGnGV8FUE" - }, - { - "title": "Rihanna - What Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8WyYEdcAEo0" - }, - { - "title": "Rihanna - We Found Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RRC9ucTr0RA" - }, - { - "title": "The Righteous Brothers - You've Lost That Loving Feeling (Karaoke Version) with Lyrics HD Karaoke", - "id": "Ipo6t7tj__c" - }, - { - "title": "Right Said Fred - Deeply Dippy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zG7tkUkBHuQ" - }, - { - "title": "Ricky Martin - Livin La Vida Loca (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QnIYYJ0DoSY" - }, - { - "title": "Richard Ashcroft - Song For The Lovers (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7U2cxNVvlzA" - }, - { - "title": "R.E.M - It's The End Of The World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x3nzD9VIe1w" - }, - { - "title": "Red Hot Chili Peppers - Under The Bridge (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rL81vHcMsXA" - }, - { - "title": "Rebecca Ferguson - Nothing's Real But Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_HReII_WVfc" - }, - { - "title": "Queen - We Will Rock You (Karaoke Version)", - "id": "9LU8x_h8N6U" - }, - { - "title": "Queen - Don't Stop Me Now (Karaoke Version)", - "id": "Wzv_7b8ggb4" - }, - { - "title": "Queen - Bohemian Rhapsody (Karaoke Version)", - "id": "UsKqQdaz2Xw" - }, - { - "title": "Prince - Purple Rain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zXzOrEioBqA" - }, - { - "title": "The Pretenders - Stand By You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AlZ8EfiY5h8" - }, - { - "title": "Plain White T's - Hey There Delilah (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Sgkg3B-DUQk" - }, - { - "title": "Pixie Lott - All About Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TpbRzM0vk10" - }, - { - "title": "Pink - Who Knew (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iMejmOaCKBM" - }, - { - "title": "Pink Ft. Lily Allen - True Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FZsePzoVcd4" - }, - { - "title": "Pink - So What (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U6kWu5XSfIQ" - }, - { - "title": "Phil Collins - You Can't Hurry Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-Lrc148H3c8" - }, - { - "title": "Phil Collins - Easy Lover (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oeRF6aM169o" - }, - { - "title": "Pharrel Williams - Happy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hu9FoemZr9I" - }, - { - "title": "Phantom Of The Opera - Music Of The Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PNkOIW8k3bI" - }, - { - "title": "Go West Karaoke", - "id": "Pet Shop Boys Karaoke Version" - }, - { - "title": "Percy Sledge - When A Man loves A Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YljeYGiTHEE" - }, - { - "title": "Passenger - Let Her Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L3JGEd-OHM0" - }, - { - "title": "Paloma Faith - Picking Up The Pieces (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xQbLQyWmtNs" - }, - { - "title": "Otis Redding - Sitting On The Dock Of The Bay (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "woKiuTkAJbA" - }, - { - "title": "OneRepublic- Counting Stars", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "One Direction - You & I (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jMj9lQGAz_M" - }, - { - "title": "One Direction - What Makes You Beautiful (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CVmHY3bA78U" - }, - { - "title": "One Direction - Up All Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xmtisV_eBvs" - }, - { - "title": "One Direction - The Story Of My Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3OB0x9fPpeo" - }, - { - "title": "One Direction - One Way Or Another (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RHG5k7tNhEg" - }, - { - "title": "One Direction - One Thing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SU0NaKM0l84" - }, - { - "title": "One Direction - Live While We're Young (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s_WggUcNkq4" - }, - { - "title": "One Direction - Little Things (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cNBrylJXG5c" - }, - { - "title": "One Direction - Kiss You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xyjQb0T8syE" - }, - { - "title": "One Direction - Gotta Be You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s4WSmSuxOwo" - }, - { - "title": "One Direction - I Wish (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5Dab05RIXp4" - }, - { - "title": "One Direction - Diana (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AEU-xY0_4Vk" - }, - { - "title": "One Direction - Best Song Ever (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5jmdj0xhv0c" - }, - { - "title": "Olly Murs - Please Don't Let Me Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BSLiSaqd_ew" - }, - { - "title": "Olly Murs - Heart Skips A beat (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RhCYzfdZiEI" - }, - { - "title": "Olly Murs - Dear Darling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gLaOXzGEWe8" - }, - { - "title": "Olly Murs - Dance With Me Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "S-EhBEsXP4o" - }, - { - "title": "Noel Gallaghers High Flying Birds - AKA...What A Life (Karaoke Version) with Lyrics HD Karaoke", - "id": "yXZ08ocvfT4" - }, - { - "title": "Nicole Scherzinger - Boomerang (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VIgcIQoz1Rc" - }, - { - "title": "Nicki Minaj - Starships (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wZfX2YNaslk" - }, - { - "title": "Nickelback - Rockstar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zQGVgJ7ulD0" - }, - { - "title": "Mud - Tiger Feet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ca5ifZtX5Mc" - }, - { - "title": "The Mindbenders - A Groovy Kind Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "urur-VG2D2c" - }, - { - "title": "Miley Cyrus - Wrecking Ball (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QgoU-2BXrfM" - }, - { - "title": "Miley Cyrus - Adore You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LWUToBWjXSY" - }, - { - "title": "Michael Jackson - Man In The Mirror (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JdRnRgZoKMg" - }, - { - "title": "Michael Jackson - Thriller (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8uOvNb8ZT9U" - }, - { - "title": "Michael Buble - Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tP8cJKdn8bc" - }, - { - "title": "Michael Buble - Haven't Met You Yet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wyn2YWyZ-hc" - }, - { - "title": "Meat Loaf - Paradise By The Dashboard Light (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fyl9P67K2-g" - }, - { - "title": "The Mavericks - Dance The Night Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6B8relKmNJg" - }, - { - "title": "Matt Cardle - When We Collide (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NWhEjO6w2RA" - }, - { - "title": "Marty Robbins - Devil Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NWv4yc2gU7I" - }, - { - "title": "Mariah Carey - Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KQMhHOKYKDs" - }, - { - "title": "Mark Ronson Ft. Amy Winehouse - Valerie (Karaoke Version)", - "id": "8CTL4a2BCvE" - }, - { - "title": "Marcus Collins - Seven Nation Army (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c2LfZbtfJ-M" - }, - { - "title": "Madonna - Papa Don't Preach (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rUGab47-bek" - }, - { - "title": "Madonna - Like A Virgin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VMi6ARJMi3s" - }, - { - "title": "Madonna - Hung Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8c2KcXscPDU" - }, - { - "title": "The Lumineers - Ho Hey (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xcAERDyXBGo" - }, - { - "title": "Lulu - Shout (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mI1yB3iy7Qs" - }, - { - "title": "Louis Armstrong - What A Wonderful World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5SyEEq2lWwg" - }, - { - "title": "Los Lobos - La Bamba (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5fIEOLL4mtU" - }, - { - "title": "Little Mix - Move (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UssEv4d9jJk" - }, - { - "title": "Little Mix - DNA (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dDWG7Heivl8" - }, - { - "title": "Lily Allen - Somewhere Only We Know (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n93wF4x47D8" - }, - { - "title": "Les Miserables - I Dreamed A Dream (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TSI4Z4kesDo" - }, - { - "title": "Leona Lewis - One More Sleep (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NCh7psA8D10" - }, - { - "title": "Leona Lewis - Bleeding Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CNfLsMG5xEU" - }, - { - "title": "Lawson - Juliet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "t8Z-mnzPREY" - }, - { - "title": "Lady Gaga - The Edge Of Glory (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "V6xylrpvhmI" - }, - { - "title": "Lady Gaga - Paparazzi (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cDhX4wlswIU" - }, - { - "title": "Lady Gaga - Bad Romance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YxF1apQfUxU" - }, - { - "title": "Lady Antebellum - Need You Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MlGK8otBK_E" - }, - { - "title": "Labrinth And Emeli Sande - Beneath Your Beautiful (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "irngx-GhQx4" - }, - { - "title": "Kylie Minogue And Jason Donovan - Especially For You (Karaoke Version) with Lyrics Karaoke", - "id": "oaPIjTMS2F0" - }, - { - "title": "Kylie Minogue - All the Lovers (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "atP5slsm51U" - }, - { - "title": "The Kinks - All Day And All Of The Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lvx6wTc2ZME" - }, - { - "title": "Kings Of Leon - Use Somebody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VJlU6L8SBco" - }, - { - "title": "The Killers - Human (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r3sKoSsoMAE" - }, - { - "title": "Kid Rock - All Summer Long (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2Owhzn9fe3M" - }, - { - "title": "Kelly Clarkson - Stronger (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DPFyVEcVzic" - }, - { - "title": "Katy Perry - The One That Got Away (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nDPqXJzf5ng" - }, - { - "title": "Kelly Clarkson - Because Of You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "P7dMCCubUEs" - }, - { - "title": "Katy Perry - Roar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ig9TiFC3e6A" - }, - { - "title": "Katy Perry - Hot N Cold Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c6RHqsmIR2w" - }, - { - "title": "Justin Timberlake - Cry Me A River (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f2bQ9YGzTpc" - }, - { - "title": "Justin Bieber - Boyfriend (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PzJxh8TKQ8c" - }, - { - "title": "ABBA - Honey Honey (Karaoke Version)", - "id": "-gOFPqqJyxA" - }, - { - "title": "John Lennon - Imagine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8c7cfokaaog" - }, - { - "title": "Joe Cocker & Jennifer Warnes - Up Where We Belong (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "K-6bWO9FMik" - }, - { - "title": "Joe Cocker - With A Little Help From My Friends (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TF35LO0T2Yc" - }, - { - "title": "JLS - Everybody In Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_dzskAqnmkg" - }, - { - "title": "JLS - Beat Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xWJQsNqFSZs" - }, - { - "title": "Jet - Are You Gonna Be My Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZDIzGg7hbI0" - }, - { - "title": "Jessie J - It's My Party (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YMsu5Kp-K7U" - }, - { - "title": "Jerry Lee Lewis - Great Balls Of Fire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ae-e_EONnBs" - }, - { - "title": "Jason Mraz - I Won't Give Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0BSGELYTuHA" - }, - { - "title": "Janet Jackson - Every Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BZ4WwclvOlE" - }, - { - "title": "James Morrison - You Give Me Something (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UQGq8mW0f_4" - }, - { - "title": "James Blunt - Goodbye My Lover (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "94L_ke4i1Ug" - }, - { - "title": "James Blunt - Bonfire Hearts (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TAlWLdDzKWI" - }, - { - "title": "James Arthur - Impossible (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WNwPwVE2bgk" - }, - { - "title": "Jackson 5 - Blame It On The Boogie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2qt-6Ir3Xc0" - }, - { - "title": "Irene Cara - Flashdance (what a feeling) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7_NT4VvPkSg" - }, - { - "title": "High School Musical - We're All in This Together (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yYd36iDNMMY" - }, - { - "title": "Grease - We Go Together (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QmSptRiCuzo" - }, - { - "title": "Grease - Hopelessly Devoted To You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FC4dnRNrZ5A" - }, - { - "title": "Gloria Gaynor - I Am What I Am (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "d_-UYw6xNVE" - }, - { - "title": "Glee cast - Lean On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iXxPtDACHjs" - }, - { - "title": "Girls Aloud - The Promise (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FeZLNq1lII4" - }, - { - "title": "Girls Aloud - Can't Speak French (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Gk8ivWfEjvM" - }, - { - "title": "Gerry & The Pacemakers - You'll Never Walk Alone (Karaoke Version) with Lyrics HD Vocal Star Karaoke", - "id": "Oiuc05SU-bI" - }, - { - "title": "Geri Haliwell - It's Raining Men (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UJCQkvx_Thw" - }, - { - "title": "George Michael - Faith (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5pzfITUc53g" - }, - { - "title": "Gary Barlow - Let Me Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U3xST_3B_90" - }, - { - "title": "Gabrielle Aplin - The Power Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Gr7NG5CbSio" - }, - { - "title": "Gabrielle - Out Of Reach (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EoGmDiMB_0A" - }, - { - "title": "Fun ft. Janelle Monae - We are Young (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "08sZpVDaZxo" - }, - { - "title": "Frank Sinatra - My Way (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ksEuHeOUfM4" - }, - { - "title": "Frank Sinatra - Fly Me To The Moon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hiBzYc-zFec" - }, - { - "title": "Frank Sinatra - Come Fly With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5h4B2HXQgTQ" - }, - { - "title": "Florence and The Machine - You Got The Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CGz12udsEYw" - }, - { - "title": "Flo Rida - Whistle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0--8Xme_k-Y" - }, - { - "title": "Flo Rida - Good Feeling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_Q_x5ElNM0U" - }, - { - "title": "Five - Everybody Get Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n_wsouQNfkE" - }, - { - "title": "The Feeling - Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XacCzVYPBvI" - }, - { - "title": "Fairground Attraction - Perfect (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ze0GSRj9ZQM" - }, - { - "title": "Eva Cassidy - Over The Rainbow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "C9TaFTJAJVI" - }, - { - "title": "The Eurythmics - Must Be Talking To An Angel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Cr_i-dVeWV4" - }, - { - "title": "Estelle FT. Kanye West - American Boy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YkAfdksnhO0" - }, - { - "title": "Etta James - At Last (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QzxWqAFUsTI" - }, - { - "title": "Eric Clapton - Tears In Heaven Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8YUpjwLhEzM" - }, - { - "title": "Jamiroquai - Space Cowboy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Aq0LT1blGeQ" - }, - { - "title": "Emeli Sande - Read All About It (part lll) Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eX7o9mHso9w" - }, - { - "title": "Elvis Presley - Can't Help Falling In Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HLqbflsckds" - }, - { - "title": "Elvis Presley - You Were Always On My Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L3gIwugo9J8" - }, - { - "title": "Dj Jazzy Jeff And The Fresh Prince - Summertime (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "16mt8kPNdQU" - }, - { - "title": "Los Del Rio - Macarena (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M5-m0ssskyE" - }, - { - "title": "Normani - Motivation (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HySWFSWTPqY" - }, - { - "title": "Lou Bega - Mambo No. 5 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1gVzrHKb_98" - }, - { - "title": "Human League - Tell Me When (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "N_nUudd_1_0" - }, - { - "title": "Dance Monkey Karaoke", - "id": "Tones And I Karaoke Version" - }, - { - "title": "UB40 - I Can't Help Falling In Love With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yREGme77ZfI" - }, - { - "title": "Whigfield - Saturday Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4czLj14ABsQ" - }, - { - "title": "Tom Jones - You Can Leave Your Hat On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y1MGnJoT-Bk" - }, - { - "title": "Vanessa Williams - Save The Best For Last (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Kr_-7Rojj74" - }, - { - "title": "East 17 And Gabrielle - If You Ever", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Chaka Demus And Pliers - Tease Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "z6bxh3739Fw" - }, - { - "title": "Gina G - Ooh Aahโ€ฆJust A Little Bit (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UrR1Jpdy_uA" - }, - { - "title": "Gabrielle - Walk On By", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dj Jazzy Jeff And The Fresh Prince - The Fresh Prince Of Bel Air (Karaoke Version) with Lyrics HD", - "id": "YsBDoS6-IBs" - }, - { - "title": "Vanilla Ice - Ice Ice Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4hrVMrRlJFM" - }, - { - "title": "Peter Cetera - Glory Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2tyb4j-M2YM" - }, - { - "title": "Tracy Chapman - Fast Car (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CpOKlkIhwe0" - }, - { - "title": "Aswad - Don't Turn Around (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gIM6cWjGeS4" - }, - { - "title": "Prince And The Revolution - Raspberry Beret (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7UuE22F01g0" - }, - { - "title": "Pointer Sisters - Jump (For My Love) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3bf03uo9_bo" - }, - { - "title": "Belinda Carlisle - Circle In The Sand", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Billy Joel - Tell Her About It", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "King - Love And Pride (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1pU-_veXOaw" - }, - { - "title": "Frankie Goes To Hollywood - Two Tribes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Go West - We Close Our Eyes", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Huey Lewis And The News - The Power Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n6bAziMo2PQ" - }, - { - "title": "A-Ha - The Sun Always Shines On T.V. (Karaoke Version)", - "id": "Acl2ZrIBotc" - }, - { - "title": "Duran Duran - Hungry Like The Wolf", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "INXS - Need You Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karao", - "id": "apo2u7mzYgU" - }, - { - "title": "Feargal Sharkey - A Good Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Pat Benatar - Love Is A Battlefield (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f8vIVhxk3Ak" - }, - { - "title": "Laura Branigan - Gloria (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6dgBo5snJSI" - }, - { - "title": "John Parr - St. Elmos Fire (Man In Motion)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "J. Geils Band - Centerfold (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nzlfSraIxdA" - }, - { - "title": "Glenn Frey - The Heat Is On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IneuvfVRrOA" - }, - { - "title": "Billy Idol - White Wedding", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Bruce Springsteen - Born In The U.S.A with Lyrics HD Vocal-Star Karaoke 4K", - "id": "L6GLqZhP44g" - }, - { - "title": "Kiss - Crazy Crazy Nights", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dire Straits - Money For Nothing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5zvgPYV51UI" - }, - { - "title": "Joan Jett And The Blackhearts - I Love Rock And Roll (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "Cawj5j4kgZo" - }, - { - "title": "Natalie Cole - Miss You Like Crazy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f86-TPuchTs" - }, - { - "title": "Phyllis Nelson - Move Closer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YqvzLcIHzLM" - }, - { - "title": "Aretha Franklin And George Michael - I Knew You Were Waiting (For Me) (Karaoke Version) with Lyrics", - "id": "40uDrQ1eZB4" - }, - { - "title": "Communards - Don't Leave Me This Way with Lyrics HD Vocal-Star Karaoke 4K", - "id": "X-1qd0rDvvo" - }, - { - "title": "Eddy Grant - I Don't Wanna Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kAVxEB1aBPs" - }, - { - "title": "Labi Siffre - Something Inside So Strong (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NBV6MSK2EUs" - }, - { - "title": "Musical Youth - Pass The Dutchie (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JGC6iTltAgQ" - }, - { - "title": "Diana Ross - Upside Down", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Melle Mel And Grandmaster Flash - White Lines (Don't Do It) (Karaoke Version) with Lyrics HD", - "id": "OmE87raTnWk" - }, - { - "title": "Kc And The Sunshine Band - Give It Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Barbara Dickson - I Know Him So Well (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Gu2UStqLoww" - }, - { - "title": "Tina Turner - What's Love Got To Do With It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vt1V2kdzqgg" - }, - { - "title": "Richard Marx - Right Here Waiting (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yqwlzUQ2G_c" - }, - { - "title": "T'Pau - China In Your Hand (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kPHBtKzVaqU" - }, - { - "title": "John Waite - Missing You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WiFse1-Pe-I" - }, - { - "title": "Sheena Easton - For Your Eyes Only (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9S84pti4qyQ" - }, - { - "title": "Bruce Springsteen - Dancing In The Dark with Lyrics HD Vocal-Star Karaoke 4K", - "id": "sMpFJBA30Ic" - }, - { - "title": "Madness - Baggy Trousers", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Housemartins - Happy Hour (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8krWAPN71Lk" - }, - { - "title": "Kim Wilde - Kids In America (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8OI_Ap9RlDA" - }, - { - "title": "Adam & The Ants - Stand And Deliver (Karaoke Version)", - "id": "-_vx3YqsZZ4" - }, - { - "title": "Eurythmics - Thorn In My Side", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Duran Duran - Is There Something I Should Know", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Phil Collins - In The Air Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yV2xjFxr-6I" - }, - { - "title": "Kenny Loggins - Footloose (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l0HUA7wFdPY" - }, - { - "title": "Wham - Club Tropicana (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rfZvQAwR-M4" - }, - { - "title": "UB40 - Red Red Wine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "K7Dn0FSXdqI" - }, - { - "title": "Sam Smith - Stay With Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ulCvbWza4vw" - }, - { - "title": "Sam Smith - Money On My Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jiKYprQaL4U" - }, - { - "title": "Paolo Nutini - Let Me Down Easy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M_rihGwu9_0" - }, - { - "title": "Paloma Faith - Can't Rely On You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aMU_7NgM194" - }, - { - "title": "Olly Murs - Hand On Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TQxLouvwZp4" - }, - { - "title": "Michael Jackson Ft. Justin Timberlake - Love Never Felt So Good (Karaoke Version) with Lyrics HD", - "id": "Nwh0H8AHRsI" - }, - { - "title": "Little Mix - Salute (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tmigyUZCsZg" - }, - { - "title": "Lily Allen - Hard Out Here (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iP2RZCsimJc" - }, - { - "title": "Lady Gaga - Guy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "e30m2YrpFrk" - }, - { - "title": "Kylie Minogue - I Was Gonna Cancel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rnnnEkA_6To" - }, - { - "title": "Justin Bieber - Heartbreaker (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-n69_RyOxzM" - }, - { - "title": "John Newman - Losing Sleep", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Idina Menzel - Let It Go (Frozen) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7as_8NgJCWU" - }, - { - "title": "Ellie Goulding - Goodness Gracious (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VD1Mvo7uTkk" - }, - { - "title": "Coldplay - Magic", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Coldplay - A Sky Full Of Stars", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Avicii - Hey Brother (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YsqQXPPMydU" - }, - { - "title": "A Great Big World & Christina Aguilera - Say Something (Karaoke Version)", - "id": "JPCNMAtOu3w" - }, - { - "title": "Leona Lewis - A Moment Like This (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "W8QofWUKkCc" - }, - { - "title": "Justin Timberlake - Sexy Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r-H-rrTqcNM" - }, - { - "title": "Green Day - Wake Me Up When September Ends (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EkZxtY0n9Fg" - }, - { - "title": "Snoop Dogg Ft. Charlie Wilson & Justin Timberlake - Signs (Karaoke Version) with Lyrics HD", - "id": "_6_q80UCnb4" - }, - { - "title": "No Doubt - It's My Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Rp5z0H5kK-U" - }, - { - "title": "Ne-Yo - So Sick (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EXWsmLFV3ek" - }, - { - "title": "Mika - Grace Kelly (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZdPNULMC9kU" - }, - { - "title": "Jack Johnson - Better Together (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NHXo5Z6dIso" - }, - { - "title": "Razorlight - Somewhere Else (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fA8n8ehYPLQ" - }, - { - "title": "The Darkness - I Believe In A Thing Called Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bKnrdshQ2P4" - }, - { - "title": "Orson - No Tomorrow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-tbXUloZ96E" - }, - { - "title": "Kaiser Chiefs - Ruby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UhwGEXsiFNY" - }, - { - "title": "Kasabian - Shoot The Runner", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Fratellis - Chelsea Dagger", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Arctic Monkeys - I Bet You Look Good On The Dancefloor", - "id": "With Lyrics HD Vocal-Star" - }, - { - "title": "Franz Ferdinand - Take Me Out", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Pink - God Is A Dj (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-wqWvkEpZeg" - }, - { - "title": "Meck Ft. Leo Sayer - Thunder In My Heart Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TNnQcXy4XS4" - }, - { - "title": "Leann Rimes - Can't Fight The Moonlight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9s4exsQSQ40" - }, - { - "title": "Janet Jackson - Just A Little While (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "b-5-p3Z9RlE" - }, - { - "title": "Hearsay - Pure And Simple (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HviiMyGyx4A" - }, - { - "title": "Daniel Powter - Bad Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hm5jgmy4nmU" - }, - { - "title": "Spiller Ft. Sophie Ellis-Bexter - Groovejet (If This Aint Love) (Karaoke Version) with Lyrics HD", - "id": "oer1ebMRWbE" - }, - { - "title": "Nelly - Hot In Here (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "X-RfkVzqKIc" - }, - { - "title": "Joss Stone - Fell In Love With A Boy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hq54mR2p7so" - }, - { - "title": "Kelis - Milkshake", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gabrielle - Rise", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Destinys Child - Independent Women (Part 1)", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Blue - All Rise with Lyrics HD Vocal-Star Karaoke 4K", - "id": "pyx18OQTd1k" - }, - { - "title": "All Saints - Pure Shores (Karaoke Version)", - "id": "sjWXRnNgjfs" - }, - { - "title": "Michael Andrews Ft. Gary Jules - Mad World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "beWRAaqyuFw" - }, - { - "title": "Holly Valance - Kiss Kiss (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HCOECV4i8RU" - }, - { - "title": "The Sugababes - Push The Button (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sVycusiC-ng" - }, - { - "title": "Steps - Chain Reaction (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3uDm94leRaE" - }, - { - "title": "Ronan Keating - Life Is A Rollercoaster (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jd9i06ECs98" - }, - { - "title": "Ricky Martin - She Bangs (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OJbLSXRqtIA" - }, - { - "title": "Robbie WIlliams - Rock DJ (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "i21F6gnEb3E" - }, - { - "title": "Pussycat Dolls Ft. Busta Rhymes - Don't Cha (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_XKsYoA6-I4" - }, - { - "title": "Outkast - Hey Ya (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kYA9wboEujU" - }, - { - "title": "Lily Allen - Smile (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SwJEjkP1Mmo" - }, - { - "title": "Kanye West Ft. Lupe Fiasco - Touch The Sky (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6NWdsSBV6yo" - }, - { - "title": "Alphabeat - 10,000 Nights (Karaoke Version)", - "id": "OzlxXizHSB4" - }, - { - "title": "Alesha Dixon - The Boy Does Nothing", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Christina Aguilera - Candyman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "e9nyA2B3HKc" - }, - { - "title": "Nelly Furtado - Maneater (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RtHFDi94CY8" - }, - { - "title": "The Sugababes - About You Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8YDuMKdPCGk" - }, - { - "title": "Drifters - Kissin In The Back Row Of The Movies", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Sweet - Blockbuster (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DFrVFzr0kDM" - }, - { - "title": "Rose Royce - Wishing On A Star (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4T_EkKWKov8" - }, - { - "title": "Lynn Anderson - Rose Garden (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "It42b7m6kFQ" - }, - { - "title": "Tina Charles - I Love To Love (But My Baby Loves To Dance) (Karaoke Version) with Lyrics HD", - "id": "-Y9rIt-pC5c" - }, - { - "title": "Dawn & Tony Orlando - Tie A Yellow Ribbon Round The Ole Oak Tree (Karaoke Version) with Lyrics HD", - "id": "yb0Vg2P51Xo" - }, - { - "title": "Eric Carmen - All By Myself", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Boney M - Rivers Of Babylon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wOCntK3C3ws" - }, - { - "title": "Roberta Flack - Killing Me Softly With His Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FVHDEKQFcTw" - }, - { - "title": "John Paul Young - Love Is In The Air (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6ZWTJF0y0Vs" - }, - { - "title": "Jackie Wilson - I Get The Sweetest Feeling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "a505wGnxn6Q" - }, - { - "title": "Gladys Knight And The Pips - Midnight Train To Georgia (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "sd4YfaNgEQc" - }, - { - "title": "Diana Ross - I'm Still Waiting", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Stylistics - Can't Give You Anything (But My Love) (Karaoke Version) Lyrics Vocal-Star Karaoke", - "id": "ngK3sCTSyEg" - }, - { - "title": "Freda Payne - Band Of Gold", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Barry White - Can't Get Enough Of Your Love Babe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DBO7vfCztUI" - }, - { - "title": "Hot Chocolate - Every 1's A Winner (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yhgkEv87Jj0" - }, - { - "title": "Rose Royce - Car Wash (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_UPtjDcuGmU" - }, - { - "title": "The Three Degrees - When Will I See You Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "liYSlT2wgkc" - }, - { - "title": "Donna Summer - Hot Stuff (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "W71T_pK-YGA" - }, - { - "title": "Earth, Wind And Fire Ft. The Emotions - Boogie Wonderland", - "id": "Lyrics HD Vocal Star Karaoke" - }, - { - "title": "O'Jays - Love Train (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KXwK9Oy0zQk" - }, - { - "title": "The Nolans - I'm In The Mood For Dancing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ho2upHbaN5o" - }, - { - "title": "Doobie Brothers - Long Train Runnin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bhnCufuaSuE" - }, - { - "title": "David Bowie - Changes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JLSbEobPyP4" - }, - { - "title": "Derek And The Dominos - Layla", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dean Martin - Ain't That A Kick In The Head with Lyrics HD Vocal-Star Karaoke 4K", - "id": "lMOzwKgwd_s" - }, - { - "title": "Rainbow - Since You Been Gone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ztu85531lrU" - }, - { - "title": "Boston - More Than A Feeling (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dNU6Hx8M8u0" - }, - { - "title": "Black Sabbath - Paranoid (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vPpCiVQqHG4" - }, - { - "title": "The Undertones - Teenage Kicks (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9T_RV_NVYhY" - }, - { - "title": "Buzzcocks - Ever Fallen In Love (With Someone You Shouldnโ€™t've) (Karaoke Version) with Lyrics HD", - "id": "O4WR53_ISgw" - }, - { - "title": "Alice Cooper - School's Out", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Bill Withers - Lovely Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UCSiWR1baCM" - }, - { - "title": "Smokie - Living Next Door To Alice (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KrUVkd9_5uQ" - }, - { - "title": "Boney M - Daddy Cool (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m6rOiQqUJ5Y" - }, - { - "title": "Chic - Le Freak (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LS6sO7tyoSs" - }, - { - "title": "Tony Christie - Avenues And Alleyways (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cjvPBe0HAy0" - }, - { - "title": "Toto - Hold The Line (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "x6wRhxTY9tE" - }, - { - "title": "Thin Lizzy - Whiskey In The Jar (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "F2AMSBD-CUk" - }, - { - "title": "Squeeze - Cool For Cats (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Kq-rZOrGu58" - }, - { - "title": "Rod Stewart - You're In My Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ks3Lgu_2n6k" - }, - { - "title": "John Denver - Take Me Home, Country Roads", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "10cc - Dreadlock Holiday (Karaoke Version)", - "id": "8aDCQOZBIx8" - }, - { - "title": "Stealers Wheel - Stuck In The Middle With You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "c9fBHyzTuD8" - }, - { - "title": "Status Quo - Whatever You Want (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zJ89yuOhTVg" - }, - { - "title": "The Temptations - Get Ready (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p3CjXdaf5BA" - }, - { - "title": "Bobby Darin - Multiplication (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dqCaACQHI1k" - }, - { - "title": "Tommy Jones And The Shondells (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SvbHYBWKeBA" - }, - { - "title": "Bobby Vee - Take Good Care Of My Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gJ6SsDc6_W0" - }, - { - "title": "Maurice Williams And The Zodiacs - Stay (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J9rj8qKc_3Y" - }, - { - "title": "Bobby Vinton - Mr Lonely (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "X0Ucqjx-TYo" - }, - { - "title": "Dobie Gray - The In Crowd (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zyOeIHumOxY" - }, - { - "title": "The Drifters - Some Kind Of Wonderful (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "d-F6IMWoKsk" - }, - { - "title": "Otis Redding - Love Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hVZ24CTmzYc" - }, - { - "title": "Cliff Richard And The Shadows - Bachelor Boy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Roger Miller - King Of The Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_m-QxIk-Zxs" - }, - { - "title": "Chuck Berry - No Particular Place To Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5zPd5FxdUqc" - }, - { - "title": "The Rolling Stones - Sympathy For The Devil (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "W3qkO8FMqeU" - }, - { - "title": "Four Tops - It's The Same Old Song", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Sam Cooke - Wonderful World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bG4d3560-7E" - }, - { - "title": "Nat King Cole - Let There Be Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OGzm_OKopRA" - }, - { - "title": "Dion And The Belmonts - The Wanderer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0JsP_Olj__k" - }, - { - "title": "Otis Redding - These Arms Of Mine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Co7gxDmToYU" - }, - { - "title": "Neil Sedaka - Happy Birthday Sweet Sixteen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fap5Gcto_Hs" - }, - { - "title": "The Searchers - Needles And Pins (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CZCUymyjKfc" - }, - { - "title": "Stevie Wonder - Uptight (Everything's Alright) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7oT0KL-TuXg" - }, - { - "title": "Ray Charles - Hit The Road Jack (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sQameInIquc" - }, - { - "title": "Tony Bennett - I Left My Heart In San Francisco", - "id": "Karaoke Songs with Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Bobby Vinton - Blue Velvet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R9Zs0PfZP90" - }, - { - "title": "Jimmy Ruffin - What Becomes Of The Broken Hearted", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "George Baker Selection - Little Green Bag", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Glen Campbell - Wichita Lineman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4E67AeiTD8g" - }, - { - "title": "Ricky Nelson - Hello Mary Lou (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VHZXbMQk1xg" - }, - { - "title": "Luke Bryan - Knockin' Boots (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3pHjBpmi-wY" - }, - { - "title": "James Brown & The Famous Flames - Papa's Got A Brand New Bag (Karaoke Version) with Lyrics HD", - "id": "SOLakJ1__80" - }, - { - "title": "The Monkees - Daydream Believer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ky9n8r2Ksbo" - }, - { - "title": "Johnny Kidd And The Pirates - Shakin' All Over (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bHzlTrxwHR0" - }, - { - "title": "Herman's Hermits - I'm Into Something Good (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WchA5D5tF_Q" - }, - { - "title": "Chuck Berry - You Never Can Tell (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vsMk9Ge6Y_8" - }, - { - "title": "Creedence Clearwater Revival - Bad Moon Rising (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oxSDM0-b4ns" - }, - { - "title": "The Shirelles - Will You Still Love Me Tomorrow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VZzonCkmSBU" - }, - { - "title": "The Union Gap Ft. Gary Puckett - Young Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "97AbDuyqRHQ" - }, - { - "title": "Crystals - Da Doo Ron Ron with Lyrics HD Vocal-Star Karaoke 4K", - "id": "o1G_yeAcaHg" - }, - { - "title": "Marvin Gaye & Kim Weston - It Takes Two (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cEOSByb0BW8" - }, - { - "title": "Martha And The Vandellas - Jimmy Mack (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5DsiFqDL-vs" - }, - { - "title": "Erma Franklin - Take A Little Piece Of My Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Tammy Wynette - Stand By Your Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jzxmWMS7PE4" - }, - { - "title": "Mary Wells - My Guy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JzNoABhlAhI" - }, - { - "title": "Etta James - I Just Want To Make Love To You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Four Tops - Reach Out I'll Be There", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Manfred Mann - Do Wah Diddy", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Isley Brothers - This Old Heart Of Mine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tlXZePPbflM" - }, - { - "title": "Sam & Dave - Soul Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J1Nk9N4kxxM" - }, - { - "title": "Martha And The Vandellas - Dancing In The Street (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TEfAfbyjm1s" - }, - { - "title": "Spencer Davis Group - Keep On Running (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ad-ljdl4oGo" - }, - { - "title": "Chubby Checker - Let's Twist Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DStGyTKXVt4" - }, - { - "title": "Will Smith - Men In Black (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TDzqLdR4WOw" - }, - { - "title": "The Wheels On The Bus - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4pmgY-9V3U0" - }, - { - "title": "The Grand Old Duke Of York - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "trmFJo0iKbA" - }, - { - "title": "The Farmer's In His Den - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "P-hJSyaUO0A" - }, - { - "title": "The Animals Went In Two By Two - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xc0vhAFr7bQ" - }, - { - "title": "Ten In The Bed - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GpBcvIYXl5g" - }, - { - "title": "Kids Classic - The Alphabet Song (Karaoke Version)", - "id": "EgHOznvgibQ" - }, - { - "title": "Ten Green Bottles - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "loAtVgJB4rE" - }, - { - "title": "Teddy Bears Picnic - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ugt2kKtljI8" - }, - { - "title": "Steps - 5, 6, 7, 8 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_AmapEMxtAU" - }, - { - "title": "Scissor Sisters - I Don't Feel Like Dancing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IuXHKCLetkA" - }, - { - "title": "Scooby Doo - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZKleSTuTDAA" - }, - { - "title": "The Saturdays - Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PS8tZiyskOU" - }, - { - "title": "Row Row Row Your Boat - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jZ97Dt2tPBM" - }, - { - "title": "Postman Pat - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wZlcQ6xscwU" - }, - { - "title": "Polly Put The Kettle On - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "viqUPtYd8Ks" - }, - { - "title": "Pixie Lott - Boys And Girls (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YgI0mZ8FL4M" - }, - { - "title": "Pinocchio - When You Wish Upon A Star (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OW8OzQXtnWQ" - }, - { - "title": "Phil Collins - Son Of Man (Tarzan) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DoColK4iXkk" - }, - { - "title": "Peter, Paul & Mary - Puff The Magic Dragon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DbPxlkS6joA" - }, - { - "title": "Peter Pan - Never Smile At A Crocodile (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zk7bC1Dv434" - }, - { - "title": "One Potato, Two Potato - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PZ7P_aK3tfU" - }, - { - "title": "One Finger, One Thumb - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EU6GquYlXpI" - }, - { - "title": "Old Macdonald - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7IivAeQScYM" - }, - { - "title": "Ne-Yo - Closer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jo2ty36_Sk8" - }, - { - "title": "Michael Jackson - Rockin' Robin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Zx0Ab9FFMeM" - }, - { - "title": "McFly - All About You - (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UfgipN48HXQ" - }, - { - "title": "Mary Poppins - Supercalifragilisticexpialidocious (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "pwG1DrAY7H4" - }, - { - "title": "Mary Poppins - Let's Go Fly A Kite (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UHX5zZjy0iw" - }, - { - "title": "London Bridge - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UFCL21WgIWA" - }, - { - "title": "Mary Had A Little Lamb - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XweCA95vcIc" - }, - { - "title": "Little Mermaid - Under The Sea (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "g7uf3nMXhco" - }, - { - "title": "Little Mermaid - Part Of Your World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4peArpuRlfA" - }, - { - "title": "Les Miserables - Bring Him Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cZ7NILOw-gI" - }, - { - "title": "Las Ketchup - The Ketchup Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6ZqYJWJrAMM" - }, - { - "title": "Lady Gaga - Just Dance (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8vMijZF-Anw" - }, - { - "title": "Kylie Minogue - The Loco-Motion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WZu-YRa6PIk" - }, - { - "title": "Jungle Book - Colonel Hathi's March", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jungle Book - Bare Necessities", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Joseph & The Amazing Technicolor Dreamcoat - Any Dream Will Do", - "id": "Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Jelly On A Plate - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p24BSbmVxAA" - }, - { - "title": "I'm A Little Teapot - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4FiyuzqIAh0" - }, - { - "title": "If You're Happy And You Know It - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "h1Q_wIt3SwM" - }, - { - "title": "Hokey Cokey - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "i_ZZxxEhKMs" - }, - { - "title": "High School Musical - Start Of Something New (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zidAPbC9tUY" - }, - { - "title": "High School Musical - Breaking Free (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "D3qoSj1FNrk" - }, - { - "title": "Head, Shoulders, Knees And Toes - Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-zFavEmCW9s" - }, - { - "title": "Hairspray - You Can't Stop The Beat", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Hairspray - You're Timeless To Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Going To The Zoo", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Gabriella Cilmi - Sweet About Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frozen - Fixer Upper", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Frozen - Do You Want To Build A Snowman", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Fifth Dimension (Hair) Aquarius & Let The Sunshine", - "id": "With Lyrics HD Vocal-Star 4K" - }, - { - "title": "Fast Foot Rockers - The Fast Food Song", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cinderella Bibbidi Bobbidi Boo(Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MdbQT2y8pKk" - }, - { - "title": "Chitty Chitty Bang Bang (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ojlCxuKwRy0" - }, - { - "title": "Chicago - Mr Cellophane (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "d53GfIEco2U" - }, - { - "title": "The Cartoons - Witch Doctor with Lyrics HD Vocal-Star Karaoke 4K", - "id": "KbWZi-0glRg" - }, - { - "title": "Busted - Thunderbirds Are Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iAfQPrrHu2E" - }, - { - "title": "Boris Pickett - Monster Mash (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hZLzlDw_tI8" - }, - { - "title": "Bombalurina - Itsy Bitsy Teeny Weeny Yellow polka Dot bikini (Karaoke Version) with Lyrics HD", - "id": "S79Q9b26esY" - }, - { - "title": "Bob The Builder - Mambo No. 5 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gunsPpRiBpQ" - }, - { - "title": "Bob The Builder - Can We Fix It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lM9hB6t5B7Y" - }, - { - "title": "Black Lace - I Am The Music Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rYvh9UK_APM" - }, - { - "title": "Black Lace - Do The Conga (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aYPSDaj11sk" - }, - { - "title": "Beside The Seaside - Kids Classic", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "B.I.N.G.O. Kids Classic (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bXEfl8Ay2Wc" - }, - { - "title": "Arrow - Hot Hot Hot (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZTYxYcr0PJU" - }, - { - "title": "Aristocats - Everybody Wants To Be A Cat (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rrJ1E04HQg0" - }, - { - "title": "The Woolpackers - Hillbilly Rock (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ae8aaE2WItI" - }, - { - "title": "Will Young - Leave Right Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NNkIQdI_uMs" - }, - { - "title": "Whitney Houston - One Moment In Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7LrcbNOIPCU" - }, - { - "title": "Whitney Houston - I Wanna Dance With Somebody (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "phuGTnFe02U" - }, - { - "title": "Wham - Wake Me Up Before You Go Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Kxxg6iHy1iI" - }, - { - "title": "Westlife - If I Let You Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_6Yv7cvWkfI" - }, - { - "title": "Westlife - Flying Without Wings (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6HfhVwyKPjo" - }, - { - "title": "The Wanted - We Own The Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vauCKyFctTU" - }, - { - "title": "The Wanted - Walks Like Rihanna (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "K1gJkQeftVw" - }, - { - "title": "The Verve - The Drugs Don't Work (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "deI0OXmmNZk" - }, - { - "title": "Union J - Beautiful Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wWuT5PDvSmY" - }, - { - "title": "U2 - With Or Without You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TkeI9pk8NuI" - }, - { - "title": "T. Rex - Get It On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bO2MkbdXxS0" - }, - { - "title": "Train - Drops Of Jupiter (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XJfv4SzCN04" - }, - { - "title": "Toploader - Dancing In The Moonlight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J9tzOmwXetU" - }, - { - "title": "Tom Jones And The Stereophonics - Mama Told Me Not To Come (Karaoke Version) with Lyrics HD", - "id": "VMluYL49sTI" - }, - { - "title": "Tom Jones - Sex Bomb (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YKXcXkfUU2g" - }, - { - "title": "Timbaland ft OneRepublic - Apologize (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5IohkoJK9XU" - }, - { - "title": "Taylor Swift Ft Ed Sheeran - Everything Has Changed (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "BMvhfOD4QVs" - }, - { - "title": "Lauren Daigle - You Say (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qG03uMGd-5U" - }, - { - "title": "Maddie Poppe - Going Going Gone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q_gimsY4s9Q" - }, - { - "title": "Muse - Something Human (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "l8G592sqYIQ" - }, - { - "title": "Magic! - Kiss Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L6nRsMbZv6s" - }, - { - "title": "Rudy Mancuso - Mama (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GEwrbhyou8I" - }, - { - "title": "The Vamps - Just My Type (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "-Om0PdJ9iLw" - }, - { - "title": "Tom Grennan- Barbed Wire (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "dUV071YF39E" - }, - { - "title": "Florence + The Machine - Hunger (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "R2tG--Y9_CU" - }, - { - "title": "Post Malone - Better Now (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "ykrX34OwDg0" - }, - { - "title": "Tessa Violet - Crush (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "waArrtiG7BY" - }, - { - "title": "Ariana Grande - Breathin (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "GqzU0pZcFgs" - }, - { - "title": "8 Letters - Why Don't We (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oVyeYl2hCDc" - }, - { - "title": "Marshmello Ft. Bastille - Happier (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "me0YaSkTDfk" - }, - { - "title": "Ella Mai - Boo'd Up (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "_0DaI1PZT7I" - }, - { - "title": "Bring Me The Horizon - Mantra (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "PaBiEy6PQ6E" - }, - { - "title": "Mumford & Sons - Guiding Light (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "f4EiQqij18o" - }, - { - "title": "Lukas Graham - Love Someone (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "4ou2H6YEJeo" - }, - { - "title": "OneRepublic - Connection (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "lu80XuLCxT0" - }, - { - "title": "Silk City, Dua Lipa ft. Diplo, Mark Ronson - Electricity (Karaoke Version) Lyrics HD Vocal-Star", - "id": "0E4uOxqPZg0" - }, - { - "title": "LSD Ft. Sia, Diplo & Labrinth - Thunderclouds (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "QOTQb-haR1c" - }, - { - "title": "Dean Lewis - Be Alright (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "uMNno45_SJw" - }, - { - "title": "David Guetta ft. Anne-Marie - Don't Leave Me Alone (Karaoke Version) Lyrics HD Vocal-Star", - "id": "3sY9l-S8SJY" - }, - { - "title": "Cecilia Krull - My Life Is Going On (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "l6-w-_vPC4c" - }, - { - "title": "The 1975 - TOOTIMETOOTIMETOOTIME (Karaoke Version) Lyrics HD", - "id": "bc-VrDaRn_Y" - }, - { - "title": "Calvin Harris & Sam Smith - Promises (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "fP2rxr2AvDs" - }, - { - "title": "Cardi B ft. Kehlani - Ring (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "6jr1ogEvrcc" - }, - { - "title": "Boys Karaoke", - "id": "Lizzo Karaoke Version" - }, - { - "title": "Twenty One Pilots - My Blood (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "RsBQxh-3Y1w" - }, - { - "title": "Travis Scott - SICKO MODE (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "dsv2FxqT6i8" - }, - { - "title": "Florence & The Machine - Patricia (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "598NfsnoyxE" - }, - { - "title": "AJR - Role Models", - "id": "Vocal Star Karaoke Version - Lyrics 4K" - }, - { - "title": "Rita Ora - Let You Love Me (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "1NHh6hg8q_g" - }, - { - "title": "Dave Ft.Fredo - Funky Friday (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "9uQ_G6dMigg" - }, - { - "title": "Lany - If You See Her (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "r0AxTl3XHC8" - }, - { - "title": "Rudy Mancuso - Lento (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "i819WBwawag" - }, - { - "title": "Little Mix & Nicki Minaj - Woman Like Me (Karaoke Version) Lyrics HD Vocal-Star", - "id": "Wjg7z8sxZnI" - }, - { - "title": "Lady Gaga & Bradley Cooper - Shallow (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "SBOB_7I4Mgk" - }, - { - "title": "Halsey - Without Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "krBPuJ__8Uo" - }, - { - "title": "Sigala, Ella Eyre & Meghan Trainor - Just Got Paid(Karaoke Version) Lyrics HD Vocal-Star", - "id": "0vkBuyzTIRY" - }, - { - "title": "Bazzi & Camila Cabello - Beautiful (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "I0-uJPfl18M" - }, - { - "title": "Lady GaGa - Always Remember Us This Way (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "VqR9haheUMo" - }, - { - "title": "Lady GaGa - Is That Alright (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "pSHhKuJAgOU" - }, - { - "title": "Dynoro & Gigi Dโ€™Agostino - In My Mind (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "2gl2iFFWyfE" - }, - { - "title": "Jess Glynne - Thursday (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "zeLm0fBJWLQ" - }, - { - "title": "Imagine Dragons - Bad Liar (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "ZOtjMSh2CNQ" - }, - { - "title": "Morgan Evans & Kelsea Ballerini - Dance With Me (Karaoke) Lyrics HD Vocal-Star Karaoke", - "id": "Hs5XbyfPl_o" - }, - { - "title": "Joji - Slow Dancing In The Dark (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "gAr2LXfHm3A" - }, - { - "title": "The Chainsmokers ft. Kelsea Ballerini - This Feeling (Karaoke Version) Lyrics HD Vocal-Star", - "id": "wVL61R8AzBg" - }, - { - "title": "Ariana Grande - Better Off (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "WDJsHkNJFlE" - }, - { - "title": "Post Malone, Swae Lee - Sunflower (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "kdfavQn9pBA" - }, - { - "title": "Little Mix - Joan Of Arc (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "2tmrpgoeNxs" - }, - { - "title": "Zara Larsson - Ruin My Life (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "-uRR9ZiszK4" - }, - { - "title": "Imagine Dragons - Zero (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "tI24oxST5I8" - }, - { - "title": "The Chainsmokers Ft. Emily Warren - Side Effects (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "wz-qQL-ITBs" - }, - { - "title": "Pink - A Million Dreams (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "kYVFmqC1Z-g" - }, - { - "title": "Bring Me The Horizon - Wonderful Life (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "l0HlqUoSOQ4" - }, - { - "title": "Ariana Grande - Thank U Next (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "GxwK36rBAk4" - }, - { - "title": "1999 Charli XCX Troye Sivan (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "94H4ytC245o" - }, - { - "title": "Khalid - Saturday Nights (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "vAIgV1PdYVY" - }, - { - "title": "Freya Ridings - Lost Without You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "4he_fndIRHY" - }, - { - "title": "George Ezra - Hold My Girl (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "mgKDt3GEUV0" - }, - { - "title": "Jonas Blue ft. Liam Payne & Lennon Stella - Polaroid (Karaoke Version) Lyrics HD Vocal-Star", - "id": "Fr2PLAEepCA" - }, - { - "title": "Cardi B - Money (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L-_nvjW3SmE" - }, - { - "title": "Billie Eilish - When The Party's Over (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "O59kXJKH4N0" - }, - { - "title": "Jason Mraz feat. Meghan Trainor - More Than Friends (Karaoke Version) Lyrics HD Vocal-Star", - "id": "XeQvyxyDqm8" - }, - { - "title": "Olly Murs Ft. Snoop Dogg - Moves (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "iF8_PLQsG8w" - }, - { - "title": "Ellie Goulding, Diplo, Swae Lee - Close To Me (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "JMGE--zOWYM" - }, - { - "title": "6ix9ine ft. Lil Baby - TIC TOC (Karaoke Version) HD Vocal-Star Karaoke", - "id": "RxC2NhWqNMk" - }, - { - "title": "Mariah Carey - All I Want For Christmas Is You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zoRChdimhGA" - }, - { - "title": "The Pogues - The Fairytale Of New York (Karaoke Version)", - "id": "WBBKJJvhUXI" - }, - { - "title": "Ava Max - Sweet But Psycho (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "eo5jdARbGFk" - }, - { - "title": "James Arthur - Empty Space (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "iKNiTBAiJZg" - }, - { - "title": "Mark Ronson Ft. Miley Cyrus - Nothing Breaks Like A Heart (Karaoke Version) Lyrics HD", - "id": "wwBcBD7ttig" - }, - { - "title": "Alan Walker Ft. Sophia Somajo - Diamond Heart (Karaoke Version) HD Lyrics", - "id": "4_41_YBJoXI" - }, - { - "title": "Sigrid - Sucker Punch (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "4z2BpSBmJOc" - }, - { - "title": "Rita Ora - Only Want You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "ScKOOkPsnzk" - }, - { - "title": "Billie Eilish - Come Out and Play (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "5DR3UBxYsYk" - }, - { - "title": "NF - If You Want Love (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "AaaWdNk9bYI" - }, - { - "title": "Lil Peep - Cry Alone (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "xFkoEPYyhgc" - }, - { - "title": "Anne Marie - Perfect To Me (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "tUSnaSfKT9I" - }, - { - "title": "Billie Eilish - Bellyache (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "npYKJ4zq1PQ" - }, - { - "title": "The 1975 - Sincerity Is Scary (Karaoke Version) HD Vocal-Star Karaoke", - "id": "m0WoWJZN1Ek" - }, - { - "title": "Benny Blanco & Calvin Harris - I Found You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "OQC1rKbDoMQ" - }, - { - "title": "Nicki Minaj ft. Lil Wayne - Good Form (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "g6f1x31mC4E" - }, - { - "title": "Sam Smith - Fire On Fire (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "7X3hgEvyADA" - }, - { - "title": "Jax Jones, Years & Years - Play (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "X_r-_IJ1CkQ" - }, - { - "title": "Zayne feat. Nicki Minaj - No Candle No Light- Lyrics HD Vocal-Star Karaoke", - "id": "U1-G8zrC520" - }, - { - "title": "Lovelytheband - Broken (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "BWnlEFMD7V4" - }, - { - "title": "Post Malone - Wow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-LffMS8oiD4" - }, - { - "title": "Mr. Probz - Praying To A God (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "4CgbPV9dW1g" - }, - { - "title": "Kian - Waiting (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1mDBmPc5pgM" - }, - { - "title": "Gabrielle Aplin - My Mistake (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "4bIKppD2ZaM" - }, - { - "title": "Gesaffelstein ft. The Weeknd - Lost In The Fire - Lyrics HD Vocal-Star Karaoke", - "id": "FytUvwzoRxk" - }, - { - "title": "Ariana Grande - 7 Rings (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "xceqpq2wjGg" - }, - { - "title": "Sam Smith, Normani - Dancing With A Stranger - Lyrics HD Vocal-Star Karaoke", - "id": "7bF6cRuaW10" - }, - { - "title": "Carly Rae Jepson - Party For One - With Lyrics HD Vocal-Star Karaoke", - "id": "YKNR4ogf4qM" - }, - { - "title": "HRVY - I Don't Think About You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "5a3xDwOLyC8" - }, - { - "title": "Mark Morton - ft. Chester Bennington - Cross Off - Lyrics HD Vocal-Star", - "id": "R7P3YmOr7pc" - }, - { - "title": "Seeb, Bastille - Grip (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vMHZLyzAGdc" - }, - { - "title": "The Chainsmokers ft. Winona Oak - Hope - Lyrics HD Vocal-Star Karaoke", - "id": "OnjWYaJvZc0" - }, - { - "title": "Calvin Harris, Rag'n'Bone Man - Giant (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "aunCr_ACBMU" - }, - { - "title": "Meek Mill ft. Drake - Going Bad (Karaoke Version) - Lyrics HD Vocal-Star Karaoke", - "id": "TNDfkWZLyso" - }, - { - "title": "Dan & Shay - Tequila (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fAFih7QTiuQ" - }, - { - "title": "Ocean Alley - Confidence (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "EUo2W04Uh68" - }, - { - "title": "Dominic Fike - 3 Nights (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "r89T7RtOieA" - }, - { - "title": "Dean Lewis - 7 Minutes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XrJPhB9nFWU" - }, - { - "title": "Ariana Grande - Break Up With Your Girlfriend, I'm Bored (Karaoke Version) Lyrics HD", - "id": "kQe01Ksm900" - }, - { - "title": "Joe Dolce - Shaddap You Face (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "tIi5l6alPHQ" - }, - { - "title": "Westlife - Hello My Love (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "p8qn7IFzIWk" - }, - { - "title": "Little Mix ft. Ty Dolla $ign - Think About Us (Karaoke Version) HD Vocal-Star Karaoke", - "id": "zai4Z-YO9Ys" - }, - { - "title": "5 Seconds Of Summer & Julia Michaels - Lie To Me - Vocal-Star Karaoke", - "id": "emZP2P7fqOg" - }, - { - "title": "Ariana Grande - Needy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0La8iMFMBG0" - }, - { - "title": "Lauren Daigle - You Say (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IvqxCBgyPXg" - }, - { - "title": "Ruth B - Slow Fade (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "53ycof8QCdE" - }, - { - "title": "Mabel - Don't Call Me Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ukjG_lCjXR4" - }, - { - "title": "Anxiety - Julia Michaels Ft. Selena Gomez (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fWfgMh1D-f4" - }, - { - "title": "Who Do You love - The Chainsmokers Ft. 5 Seconds Of Summer (Karaoke Version)", - "id": "Rbb-vI7XCwc" - }, - { - "title": "Tori Kelly - Change Your Mind (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NGshV01snnU" - }, - { - "title": "Kehlani ft. Ty Dolla $ign - Nights Like This (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MD3pGpM5aHM" - }, - { - "title": "NSG - Options (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UkKlErrxP1I" - }, - { - "title": "Pink - Walk Me Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cqe6ifFAicQ" - }, - { - "title": "Lewis Capaldi - Someone You Loved (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Af9Jho-QeXQ" - }, - { - "title": "Khalid, Disclosure - Talk (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1hHqp8NQVU0" - }, - { - "title": "Jonas Brothers - Sucker (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s3gEPgO7fD8" - }, - { - "title": "YUNGBLUD, Halsey - ft. Travis Barker - 11 Minutes (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "FC83y0nGYsM" - }, - { - "title": "The Sweet - Peppermint Twist (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B9G9hGY-EBE" - }, - { - "title": "Tom Walker - Just You And I (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "anR7kKRlnnc" - }, - { - "title": "Ariana Grande - Bad Idea (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PQzT90BfjEU" - }, - { - "title": "James Bay Ft. Julia Michaels - Peer Pressure (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mat8b-pSsjM" - }, - { - "title": "Sigrid - Don't Feel Like Crying (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AxdYdnzijko" - }, - { - "title": "Taylor Swift - I Forgot That You Existed (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6aiddl1ne0I" - }, - { - "title": "Banners - Got It In You (Acoustic) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uxoUr6QohmE" - }, - { - "title": "Billie Eilish - I Wish You Were Gay (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NFdDTimHEeI" - }, - { - "title": "Lauv & Troye Sivan - I'm so Tired (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kQ177XyhUKE" - }, - { - "title": "Ava Max - So Am I (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IRgd8hQTH2c" - }, - { - "title": "Billie Eilish - Bad Guy (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "FU_jInXvCfQ" - }, - { - "title": "Tame Impala - Patience (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "OJZDLwQhzKI" - }, - { - "title": "Maggie Rogers - Light On (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "BmgITgDpEXM" - }, - { - "title": "Russ - Aint Goin Back (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "hz-o3IJC1rM" - }, - { - "title": "Luis Fonsi - Sola (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kUM1mibq-wI" - }, - { - "title": "Marshmello Feat. CHVRCHES - Here With Me (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "SSvsXsMJWBc" - }, - { - "title": "Pink - Hustle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fH-kKdtQGpw" - }, - { - "title": "Lil Nas X ft. Billy Ray Cyrus - Old Town Road [REMIX] - Lyrics HD Vocal-Star Karaoke", - "id": "SZZ6a2cJp_U" - }, - { - "title": "Taylor Swift feat. Brendon Urie of Panic! At The Disco - ME! (Karaoke Version) with Lyrics HD", - "id": "5QJQfVN02e4" - }, - { - "title": "Stormzy - Vossi Bop (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "pI9EeRkbATU" - }, - { - "title": "Meduza ft. Goodboys - Piece Of Your Heart - with Lyrics HD Vocal-Star Karaoke", - "id": "c3oVEbbfZmk" - }, - { - "title": "Mariah Carey - A No No (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "s0KqRmDP7Rs" - }, - { - "title": "Panic! At The Disco - Dancing's Not A Crime - Lyrics HD Vocal-Star Karaoke", - "id": "vr9hPk3aXOY" - }, - { - "title": "Jonas Brothers - Cool (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "5TS20IETEs0" - }, - { - "title": "Dean Lewis - Stay Awake (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "1UMu1agDkWc" - }, - { - "title": "Shawn Mendes - If I Can't Have You - Lyrics HD Vocal-Star Karaoke", - "id": "ndt9lV5WIzo" - }, - { - "title": "Lewis Capaldi - Hold Me While You Wait - Lyrics HD Vocal-Star Karaoke", - "id": "CV5y1CSCK1o" - }, - { - "title": "Ed Sheeran & Justin Bieber - I Don't Care - with Lyrics HD Vocal-Star Karaoke", - "id": "Uah7ifQZKlY" - }, - { - "title": "Zara Larsson - Don't Worry Bout Me - Lyrics HD Vocal-Star Karaoke", - "id": "ow068zmo_Pw" - }, - { - "title": "Ellie Goulding - Sixteen (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "eP2kMDClMwQ" - }, - { - "title": "Jennifer Lopez Ft. French Montana - Medicine - Lyrics HD Vocal-Star Karaoke", - "id": "Stavfbl4JwE" - }, - { - "title": "Lil Dicky - Earth (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vd-5uAvrol8" - }, - { - "title": "EARFQUAKE Karaoke", - "id": "Tyler, The Creator Karaoke Version" - }, - { - "title": "James Arthur - Falling Like The Stars - Lyrics HD Vocal-Star Karaoke", - "id": "TLxfYtWH1-4" - }, - { - "title": "Ciara - Thinkin Bout You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "0Y6tWZ4gUl0" - }, - { - "title": "Billie Eilish - 8 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eJnqUr0ZUiI" - }, - { - "title": "Elton John - Your Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "h_2-H_XX81k" - }, - { - "title": "Elton John - Don't Let The Sun Down On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lUnX9HI5h_Q" - }, - { - "title": "Elton John - Something About The Way You Look Tonight (Karaoke Version) with Lyrics Karaoke", - "id": "1g9e549CKPs" - }, - { - "title": "Ellie Goulding - Starry Eyed (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "W2vjLfYCSm4" - }, - { - "title": "Ellie Goulding - How Long Will I Love You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3p5fDIQEZq4" - }, - { - "title": "Ellie Goulding - Burn (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TvvybUFpfe0" - }, - { - "title": "Eliza Doolittle - Big When I Was Little (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "D_lw10NeuzY" - }, - { - "title": "Ed Sheeran - I See Fire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kgTFIL2g-go" - }, - { - "title": "Duffy - Warwick Avenue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jDlp3Ul6wWM" - }, - { - "title": "Dolly Parton - D.I.V.O.R.C.E (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RApJOFCd9BM" - }, - { - "title": "Dizzee Rascal FT. Robbie Williams - Goin' Crazy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dL0bidBl9qg" - }, - { - "title": "DJ Otzi - Hey Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O9Lc0DpGRqc" - }, - { - "title": "Dionne Warwick - I Say A Little Prayer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "V1hpvSJHUSA" - }, - { - "title": "Diana Ross and Lionel Richie- Endless Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "s8d5ZoLi1tE" - }, - { - "title": "Destiny's Child - Survivor (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ebSo8wT_MDg" - }, - { - "title": "David Guetta FT. Sia - Titanium (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dc5JRevOzF8" - }, - { - "title": "David Bowie - Life On Mars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zggrqPIRMyk" - }, - { - "title": "Daniel Bedingfield - If You're Not The One (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eT4LvsT0-7Q" - }, - { - "title": "Cyndi Lauper - Girls Just Wanna Have Fun (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cl81mffKBUM" - }, - { - "title": "Cyndi Lauper - Time After Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iw1HfiMG9KI" - }, - { - "title": "The Corrs - What Can I Do (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fwmGlCNfSnc" - }, - { - "title": "Corinne Bailey Rae - Put Your Records On (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uR4H-FNn1xc" - }, - { - "title": "Coldplay - Princess Of China (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-j8AdpVTI-A" - }, - { - "title": "Coldplay - Paradise (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dfJkV17YSy4" - }, - { - "title": "Cliff Richard - Summer Holiday (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "23NjlfILPr8" - }, - { - "title": "Cliff Richard - Living Doll (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "K5z_FrQ3AO0" - }, - { - "title": "The Clash - Should I Stay Or Should I Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zhgC1Dmyep4" - }, - { - "title": "Christina Perri - Jar Of Hearts (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YrlgXtyOZME" - }, - { - "title": "Christina Perri - A Thousand Years (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YQNgz2hp3hk" - }, - { - "title": "Christina Aguilera - Fighter (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0HU5kOCQgmc" - }, - { - "title": "Chicago - All That Jazz (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KOoTXgTY6FU" - }, - { - "title": "Cheryl Cole - Parachute (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "z4df3-2625E" - }, - { - "title": "Cher - It's In His Kiss (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RmYYPBWu7Xw" - }, - { - "title": "Chaka Khan - I'm Every Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VNGMoiPWOfU" - }, - { - "title": "Cats - Memory (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ykzckuSxhEA" - }, - { - "title": "Cars - Drive (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m3Umt6c1oLM" - }, - { - "title": "Carl Douglas - Kung Fu Fighting (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hamNCCYRaBA" - }, - { - "title": "Calvin Harris FT. Ellie Goulding - I Need Your Love (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "X8FBLhGZeOM" - }, - { - "title": "Burt Bacharach - I'll Never Fall In Love Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yat1zndGqck" - }, - { - "title": "Buddy Holly - Peggy Sue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5-nS9iItqy4" - }, - { - "title": "Bryan Adams - Run To You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-PmkTz50JFs" - }, - { - "title": "Bruno Mars - The Lazy Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YVPlyDPszVc" - }, - { - "title": "Bruno Mars - Marry You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TLqE5XJ1b1s" - }, - { - "title": "Bruno Mars - Locked Out Of Heaven (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5KcuVnWI_wg" - }, - { - "title": "Britney Spears - Lucky (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IKvor4si-9c" - }, - { - "title": "Boyzone - No Matter What (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Z6aem9LhaZE" - }, - { - "title": "Boyzone - Father and Son (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "co44En10ipM" - }, - { - "title": "Bon Jovi - You Give Love A Bad Name (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "smpZUM3zzns" - }, - { - "title": "Bon Jovi - Living On A Prayer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TgFQrq2nTvM" - }, - { - "title": "Bon Jovi - Blaze Of Glory (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZLjO8lC78ls" - }, - { - "title": "Bobby Darin - Dream Lover (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cMVk12cZCIk" - }, - { - "title": "Blondie - The Tide Is High (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3RJsW4X3qz8" - }, - { - "title": "Blondie - Call Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yEGw7Ffzjmg" - }, - { - "title": "Billy Ray Cyrus - Achy Breaky Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NtTZgrmd8ZQ" - }, - { - "title": "Billy Ocean - When The Going Gets Tough (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "493_7bX1e3I" - }, - { - "title": "Bill Withers - Ain't No Sunshine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y2OaXWJDb5U" - }, - { - "title": "Biffy Clyro - Many Of Horror (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yP5PlFojZ_s" - }, - { - "title": "Beyonce - Listen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SEOl0EaoygY" - }, - { - "title": "Bette Midler - Wind Beneath My Wings", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Beverly Craven - Promise me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Berlin - Take My Breath Away", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ben E King - Stand By Me (Karaoke) With Lyrics HD Vocal-Star Karaoke", - "id": "gb7mJlD-ci4" - }, - { - "title": "The Beatles -Let It Be", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Bangles - Eternal Flame", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Bananarama - Venus", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Baddiel & Skinner - Three Lions On A Shirt", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Backstreet Boys - Everybody", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "B52's - Love Shack", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "B.O.B FT. Bruno Mars - Nothing On You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Avril Lavigne - Girlfriend", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Avicii - Wake Me Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Athlete - Wires", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Atomic Kitten - Whole Again", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Aretha Franklin - Respect", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ant and Dec - Lets Get Ready To Rumble", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Andy Williams - Can't Take My Eyes Off You", - "id": "With Lyrics HD Vocal Star Karaoke" - }, - { - "title": "Amy Winehouse - Love Is A Losing Game", - "id": "With Lyrics HD Vocal Star Karaoke" - }, - { - "title": "Amy Macdonald - Mr Rock & Roll", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Alicia Keys - Empire State Of Mind Pt II Broken Down", - "id": "Lyrics HD Vocal Star Karaoke" - }, - { - "title": "Alexandra Burke Ft. Flo Rida - Bad Boys", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Aerosmith - Angel", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Al Green - Let's Stay Together", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - Someone Like You", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - Rumour Has It", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - Make You Feel My Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "ABBA - Waterloo", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "ABBA - Gimme Gimme Gimme", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "4 Non Blondes - What's Up", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Tom Jones - It's Not Unusual", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Why Don't We - Don't Change (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "Q1CRBL_GCn8" - }, - { - "title": "5 Seconds Of Summer - Youngblood (Karaoke Version) Lyrics HD Vocal-Star", - "id": "VyViOicUtuA" - }, - { - "title": "In The Bleak Midwinter (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UpQei3oYmIg" - }, - { - "title": "Hark The Herald Angels Sing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O1klmhsEypA" - }, - { - "title": "I Saw Three Ships (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wMHqGoUxTBg" - }, - { - "title": "I Don't Belong In This Club (Why Don't We & Macklemore (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "uo159qYbDmo" - }, - { - "title": "God Rest Ye Merry Gentlemen (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "C1lIucUoN1k" - }, - { - "title": "Good King Wenceslas (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wiAxv-sLp88" - }, - { - "title": "Away In A Manger (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "T9_9HI1fARw" - }, - { - "title": "Angels We Have Heard On High (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_7QpVwnYDm0" - }, - { - "title": "Oh Come All Ye Faithful (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "192dhBU3ERY" - }, - { - "title": "O Little Town Of Bethlehem (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WLkYA8YMQYI" - }, - { - "title": "The Kinks - You Really Got Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Nicole Scherzinger - On The Rocks", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Matt Monro - From Russia with Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lee Kernaghan - Backroad Nation - With Lyrics HD Vocal-Star Karaoke", - "id": "PacEp8Dh34E" - }, - { - "title": "All I Am - Jess Glynne (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "lGY1cGG0w6g" - }, - { - "title": "Avicii ft. Aloe Blac - SOS (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "uSkdC9j9LNc" - }, - { - "title": "Bay City Rollers - Bye, Bye, Baby", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Beyonce Ft. Jay Z - Crazy in Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iJRWzWLd5B8" - }, - { - "title": "The Beatles - Twist And Shout (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8ib3gFtLDqA" - }, - { - "title": "Elvis Presley - The Wonder Of You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "68t3v_4O-3Y" - }, - { - "title": "Johnny Cash - Ring Of Fire (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "64QRVDJIVuE" - }, - { - "title": "Nancy Sinatra - These Boots Are Made For Walking (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8DPuPDYb6tI" - }, - { - "title": "Dean Martin - Memories Are Made of This (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xHnNvkWMyqk" - }, - { - "title": "Perry Como - Catch A Falling Star (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_os9iMXjJJI" - }, - { - "title": "The Beach Boys - Surfin' Usa (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f1ajqtDBApU" - }, - { - "title": "Dua Lipa - Swan Song (Karaoke Version)", - "id": "NB-qp_QCkA0" - }, - { - "title": "Dolly Parton - Jolene (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZExBLEMv4QU" - }, - { - "title": "Right Said Fred - I'm Too Sexy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7JuGvHAUjhQ" - }, - { - "title": "Showaddywaddy - Under The Moon Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZmkjfGbLCmg" - }, - { - "title": "Beach Boys - Wouldn't It Be Nice (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IfKuqD7CXGM" - }, - { - "title": "You Spin Me Round Karaoke", - "id": "Dead Or Alive Karaoke Version" - }, - { - "title": "The Temptations - My Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lqsmD8zKqBU" - }, - { - "title": "Nat King Cole - When I Fall In Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2_yCVAiwmv0" - }, - { - "title": "Lorde - Yellow Flicker Beat (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OCOUjcbaTIA" - }, - { - "title": "Bruno Mars - Grenade (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KxoHzlsyHcM" - }, - { - "title": "The Supremes - Baby Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ALjeOjU-U0k" - }, - { - "title": "Bangles - Manic Monday (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-3HnU-R2NVA" - }, - { - "title": "Elvis Presley - In The Ghetto (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yus56lUK8qs" - }, - { - "title": "Hank Williams - Hey Good Lookin` (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VllHVkhlsbM" - }, - { - "title": "The Proclaimers - I'm Gonna Be (500 Miles) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dvOUDX7xTjM" - }, - { - "title": "Lion King Walt Disney - Hakuna Matata (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_re16ocMNqE" - }, - { - "title": "Steppenwolf - Born to be wild (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jxEu3jDXEMA" - }, - { - "title": "The Ronettes - Be My Baby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "otnkjlYjmMw" - }, - { - "title": "I Dreamed A Dream Karaoke", - "id": "Susan Boyle Karaoke Version" - }, - { - "title": "Spice Girls - Wanna Be (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GUnftrFsiAA" - }, - { - "title": "Roy Orbison - Pretty Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "en_YdQYPO2g" - }, - { - "title": "Village People - In The Navy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FrHdIU4KJL0" - }, - { - "title": "The Beatles - Get Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oSQfDgWSrtA" - }, - { - "title": "Jeff Beck - Hi Ho Silver Lining (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ms3OfpSN0zQ" - }, - { - "title": "Soft Cell - Tainted Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SM2UO2X5IqE" - }, - { - "title": "Dolly Parton - 9 to 5 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9Cm63_ax2ew" - }, - { - "title": "The Troggs - Wild Thing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_nybV8CCY0k" - }, - { - "title": "Bangles - Walk Like An Egyptian (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "acDEupSZfiA" - }, - { - "title": "The Beatles - Michelle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aprgPBMWa7A" - }, - { - "title": "Shawn Mendes - Something Big (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w0-VsDYT7Js" - }, - { - "title": "Kylie Minogue - I Should Be So Lucky (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WlbkXGHzGIU" - }, - { - "title": "Pink feat. Cash Cash - Can We Pretend - Lyrics HD Vocal-Star Karaoke", - "id": "OvY_b8cn_Wk" - }, - { - "title": "Jonas Blue ft. Theresa Rex - What I Like About You (Karaoke Version) with Lyrics HD", - "id": "uesRk1ksNUs" - }, - { - "title": "Halsey - Nightmare (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QxIjfRexFN4" - }, - { - "title": "Bastille - Those Nights (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8hoPjcb9Tdk" - }, - { - "title": "Jax Jones & Martin Solveig Present Europa, ft. Madison Beer - All Day & Night (Karaoke Version)", - "id": "T8sWGdWXc_s" - }, - { - "title": "Naomi Scott - Speechless (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MI4jtYsFmwE" - }, - { - "title": "Katy Perry - Never Really Over (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oCbHNzJ-ibA" - }, - { - "title": "Miley Cyrus - Mother's Daughter (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kOOQquRQO3A" - }, - { - "title": "Woke Up Late Ft. Hailee Steinfeld Starring Liza Koshy (Drax Project (Karaoke Version) with Lyrics HD", - "id": "DxMOQqCBZBQ" - }, - { - "title": "Taylor Swift - You Need to Calm Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZIh2ODdzWWU" - }, - { - "title": "Blanco Brown & Lainey Wilson - The Git Up (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Wb6U4GiwvmY" - }, - { - "title": "Little Mix - Bounce Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w7UEAEpwmJU" - }, - { - "title": "Mark Ronson ft. Camila Cabello - Find U Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cXz4q5brV3I" - }, - { - "title": "5 Seconds Of Summer - Easier (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-fFdJnm2Q_A" - }, - { - "title": "Mabel - Mad Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1QGjkUrO0S0" - }, - { - "title": "Zara Larsson - All The Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Fen_PuLFYmc" - }, - { - "title": "Alan Walker, K-391, Emelie Hollow - Lily (Karaoke Version)", - "id": "TXeaclfeu1E" - }, - { - "title": "Kygo, Chelsea Cutler - Not Ok (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cLatvMYePNk" - }, - { - "title": "Au_Ra -Dance In The Dark (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cE4Ao0F2Qhg" - }, - { - "title": "Michael Kiwanuka - Cold Little Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BL5E_Q9Uhic" - }, - { - "title": "Panic! At The Disco - GirlsGirlsBoys (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ia0jp0GZbCg" - }, - { - "title": "Freya Ridings - Castles (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1eW1Q_qYPhg" - }, - { - "title": "Ed Sheeran with Chris Stapleton Bruno Mars - BLOW (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "w07b1t_R3qI" - }, - { - "title": "Ed Sheeran Ft. Khalid - Beautiful People (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TeDeUtValvk" - }, - { - "title": "Pink ft. Wrabel - 90 Days (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9ZglxpYdXnA" - }, - { - "title": "Sigala, Becky Hill - Wish You Well (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nCKMzOMe0Gc" - }, - { - "title": "Billie Eilish - Party Favor (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BeY9swwAIuY" - }, - { - "title": "Lil Nas X - Panini (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mgUIQ-uoc_w" - }, - { - "title": "Shawn Mendes & Camila Cabello - Senorita (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3NeM1PUp51s" - }, - { - "title": "Billie Eilish - Watch (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HoxKw88mCXQ" - }, - { - "title": "Post Malone - Circles (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m43YI7jzRL8" - }, - { - "title": "OneRepublic - Somebody To Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "neud-x9pbsQ" - }, - { - "title": "5 Seconds Of Summer - Teeth (Karaoke Version)", - "id": "NBkE599Sr7k" - }, - { - "title": "Beach Bunny - Prom Queen (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "Jamv-473cLY" - }, - { - "title": "Lauv, Anne Marie - F--k I'm Lonely (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yDRagk-Q7v8" - }, - { - "title": "Camila Cabello - Liar (Karaoke Version) with Lyrics HD", - "id": "g66gFqBaGyE" - }, - { - "title": "The Contours - Do You Love Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B0DSO046CRA" - }, - { - "title": "The Carpenters - We've Only Just Begun (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4A31djfCZv8" - }, - { - "title": "The Who - Pinball Wizard (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iGOttaBfsNA" - }, - { - "title": "Sister Sledge - We Are Family (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZQ2yx3R_3AE" - }, - { - "title": "The Rembrandts - I'll Be There For You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "U_iMqrSBOzs" - }, - { - "title": "Elvis Costello And The Attractions - Oliver's Army (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "Akf-L8cUKWg" - }, - { - "title": "Frank Sinatra - That's Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jJqO_nds6ac" - }, - { - "title": "The Script - The Man Who Can't Be Moved (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OG-ImWdi3TQ" - }, - { - "title": "Elton John - I'm Still Standing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pYypTaMAVhY" - }, - { - "title": "Katy Perry - I Kissed a Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2bPql_0pebQ" - }, - { - "title": "Patsy Cline - Crazy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "r40_RzMX04w" - }, - { - "title": "Robbie Williams - Candy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yphfnmuJyLs" - }, - { - "title": "Take It Easy Karaoke", - "id": "The Eagles Karaoke Version" - }, - { - "title": "Dusty Springfield - Son Of A Preacher Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kvBQ73hn3rE" - }, - { - "title": "Blondie - One Way Or Another (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GO7jxGpAZzw" - }, - { - "title": "Rednex - Cotton Eye Joe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EKmj7j6lxeg" - }, - { - "title": "Atomic Kitten - Eternal Flame", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Chris De Burgh - Lady In Red", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Taylor Swift - Blank Space", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Righteous Brothers - Unchained Melody", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Nat King Cole - The Christmas Song", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Kings Of Leon - Sex On Fire", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Justin Timberlake - Mirrors", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "ABBA - Mamma Mia", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Pink - Get The Party Started", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Olly Murs Ft Flo Rida - Troublemaker", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Bob Seger - Old Time Rock 'n Roll", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Rick Astley - Never Gonna Give You Up", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Van Morrison - Brown Eyed Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SVdjV3o2cVc" - }, - { - "title": "Aretha Franklin - You Make Me Feel Like A Natural Woman (Karaoke Version) with Lyrics HD Karaoke", - "id": "zJQpgAgUFoA" - }, - { - "title": "Glen Campbell - Rhinestone Cowboy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OV1ySSdBpJs" - }, - { - "title": "Grease - Grease Lightning (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "lScgd76Agdc" - }, - { - "title": "Foundations - Build Me Up Buttercup (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fcM-p2i1dtI" - }, - { - "title": "The Beatles - Yesterday (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "u8eNWf9I1Hc" - }, - { - "title": "Carly Simon - Nobody Does It Better (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "alh7Ga0W7CA" - }, - { - "title": "Engelbert Humperdinck - Please Release Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "b8iu44UwlSI" - }, - { - "title": "Mungo Jerry - In The Summertime (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6u3WHvRB820" - }, - { - "title": "James Blunt - You're Beautifull (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4fFSgsRs_ns" - }, - { - "title": "Cyndi Lauper - True Colors (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O7hWKQ-9vBM" - }, - { - "title": "The Supremes - Stop! In The Name Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pp3QX1-Rmbw" - }, - { - "title": "Michael Buble - It's a Beautiful Day (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0qsxrZyZ7XE" - }, - { - "title": "The Calling - Wherever You Will Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L8uMbFjg2x4" - }, - { - "title": "Neil Diamond - Sweet Caroline (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QKi54XUxUB8" - }, - { - "title": "Bruce Springsteen - Santa Claus Is Comin' To Town with Lyrics Vocal-Star Karaoke 4K", - "id": "RET_fQRApyo" - }, - { - "title": "The Fugees - Killing Me Softly (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nKngjxMTbLo" - }, - { - "title": "Five - If Ya Gettin Down (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EcnLqZHf7ms" - }, - { - "title": "Carly Rae Jepsen - Call Me Maybe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DfnAKU6kIr8" - }, - { - "title": "Kesha - Tik Tok (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TMNjSOOFzs4" - }, - { - "title": "Bruno Mars - When I Was Your Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "w0nudgXpF-g" - }, - { - "title": "Plan B - She Said (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Mu9IDrQ6Qt4" - }, - { - "title": "Emeli Sande - My Kind Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MbRrd_CMu70" - }, - { - "title": "Wham - I'm Your Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nFyQbvzpcXs" - }, - { - "title": "Frank Sinatra - New York New York (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KKgMU2vtI0w" - }, - { - "title": "Bobby Darin - Mack the Knife (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "F6A4PANvCWE" - }, - { - "title": "Aqua - Barbie Girl (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8mXEQG5eL_4" - }, - { - "title": "Katrina And The Waves - Walking On Sunshine (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3QABUuIHT0w" - }, - { - "title": "One Direction - Night Changes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ONXKPnXp8cs" - }, - { - "title": "Grease - Summer Nights (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jqInxsCseL0" - }, - { - "title": "Maroon 5 ft Christina Aguilera - Moves Like Jagger (Karaoke Version) with Lyrics Vocal-Star Karaoke", - "id": "cyQQIJmgpsk" - }, - { - "title": "Barry Manilow - Mandy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gWNeWZ3fEJs" - }, - { - "title": "Dean Martin - Everybody Loves Somebody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "N_-KVGbvgCY" - }, - { - "title": "Elton John - Crocodile Rock (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nsbRpNqvvdk" - }, - { - "title": "Buggles - Video Killed The Radio Star (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "W7Z7w37RYpo" - }, - { - "title": "Whitney Houston - I Will Always Love You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zhoQ0-gY7dw" - }, - { - "title": "Eric Carmen - Hungry Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "J1CDwYXvlCo" - }, - { - "title": "Jackson 5 - ABC (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Rmz6zrpdYCE" - }, - { - "title": "Taylor Swift - We Are Never Ever Getting back Together (Karaoke Version) with Lyrics Karaoke", - "id": "18Y66sAFWEw" - }, - { - "title": "John Fogerty - Rockin All Over The World (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "h1O-SXibsmo" - }, - { - "title": "Jessie J Ft B.O.B - Price Tag (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WJTUihKFF2g" - }, - { - "title": "Emeli Sande - Next To Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "5kVvo9vdhSs" - }, - { - "title": "Beyoncรฉ - Single Ladies (Put A Ring On It) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pAHRdGmxFiE" - }, - { - "title": "Elvis Presley - Suspicious Minds (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2laEgQhO8cA" - }, - { - "title": "Emeli Sande - Clown (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "McvkhLpAQlM" - }, - { - "title": "Elton John - Can You Feel The Love Tonight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CryhVfrWF0s" - }, - { - "title": "A-Ha - Take On Me (Karaoke Version)", - "id": "QxD_3-kPHY0" - }, - { - "title": "Take That - Everything Changes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qNPrVMNxKN8" - }, - { - "title": "Meghan Trainor - Lips Are Movin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LREiDu-zhfw" - }, - { - "title": "Tom Jones - Delilah (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "X74BjfdCC9I" - }, - { - "title": "Blue - One Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MeX_O8y5dIY" - }, - { - "title": "Shakin' Stevens - Merry Christmas Everyone", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Village People - YMCA (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "h8MFtGsgpeo" - }, - { - "title": "Dean Martin - That's Amore (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Rz_0EmBOWBI" - }, - { - "title": "Anastacia - One Day In Your Life", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Bee Gees - Night Fever", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Rolling Stones - (I Can't Get No) Satisfaction", - "id": "With Lyrics Vocal-Star Karaoke" - }, - { - "title": "Human League - Don't You Want Me", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Amy Grant - Big Yellow Taxi", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Commodores - Three Times A Lady", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Take That - Shine", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Five - Keep On Moving", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Summer Of 69 Karaoke", - "id": "Bryan Adams Karaoke Version" - }, - { - "title": "Tom Jones - She's A Lady", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Killers - Mr Brightside", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Taylor Swift - Call It What You Want (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Nog9F6un644" - }, - { - "title": "Taylor Swift - Gorgeous (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Vrt6CaKWliE" - }, - { - "title": "Sia - Santa's Coming For Us (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "H4STcJMXAAs" - }, - { - "title": "Selena Gomez - Wolves (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "03JRDgcbda0" - }, - { - "title": "Rita Ora - Anywhere (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FYr9a9NDkfs" - }, - { - "title": "Niall Horan - Flicker (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kj7dvcWjRnw" - }, - { - "title": "Backstreet Boys - I Want It That Way (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QZMmdjAhtZs" - }, - { - "title": "Beach Boys - Good Vibrations", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Justin Bieber - Baby", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Marvin Gaye - I Heard it Through the Grape Vine", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Gorillaz - Feel Good Inc", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Rocky Horror Show - Time Warp", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Oasis - Stop Crying Your Heart Out", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Tiffany - I Think We're Alone Now", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dido - White Flag", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Coldplay - The Scientist (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4iDMP-nnJvs" - }, - { - "title": "Slade - Merry Xmas Everybody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R5bur8t08fM" - }, - { - "title": "PSY - Gangnam Style", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Adele - Chasing Pavements", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Lorde - Royals", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Rita Ora - R.I.P", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Oasis - Wonderwall", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Lou Reed - Walk On The Wild Side", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Kylie Minogue - Better The Devil You Know", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Taylor Swift - I Knew You Were Trouble", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Beyonce - Halo", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Robbie Williams - Angels", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Rasmus - In The Shadows (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "867E7xH2DBc" - }, - { - "title": "Tony Christie - (Is This The Way To) Amarillo", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Christina Aguilera - Genie In A Bottle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "odfN81WRnns" - }, - { - "title": "Dancing Queen Karaoke", - "id": "ABBA Karaoke Version" - }, - { - "title": "Miley Cyrus - The Climb (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Dm1ZtgBe1lg" - }, - { - "title": "Spandau Ballet - Gold (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Xrg_YRWrHo8" - }, - { - "title": "Union J - You Got It All (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8VlmqAB80QQ" - }, - { - "title": "Katy Perry - Firework (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EcZ4uLYRkcc" - }, - { - "title": "Diamonds Karaoke", - "id": "Rihanna Karaoke Version" - }, - { - "title": "Black Eyed Peas - Where Is The Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3AW-ruxjtOc" - }, - { - "title": "Duffy - Mercy Karaoke Version", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cee Lo Green - Forget You", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Band Aid - Do They know it's Christmas", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "U2 - Beautiful Day", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "The Police - Every Breath You Take", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Barry Manilow - Copacabana", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Walt Disney - Beauty And The Beast (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hiarc9sU2DE" - }, - { - "title": "Rita Ora - I Will Never Let You Down", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Amy Winehouse - Rehab", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Wet Wet Wet - Love Is All Around", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Jason Mraz - I'm Yours", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Starship - Nothing's Gonna Stop Us Now", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Chicago - If You Leave Me Now", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Ellie Goulding - Beating Heart", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Aladdin - A Whole New World", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Peter Andre - Mysterious Girl", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Roxette - It Must Have Been Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Cheryl Cole - Fight For This Love", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Natalie Imbruglia - Torn", - "id": "With Lyrics HD Vocal-Star Karaoke- 4K" - }, - { - "title": "Adele - Set Fire To The Rain", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Wham! - Last Christmas", - "id": "With Lyrics HD" - }, - { - "title": "Alicia Keys - Girl On Fire", - "id": "With Lyrics HD Vocal-Star Karaoke- 4K" - }, - { - "title": "Survivor - Eye Of The Tiger", - "id": "With Lyrics HD Vocal-Star Karaoke- 4K" - }, - { - "title": "Aladdin - Arabian Nights", - "id": "With Lyrics HD Vocal-Star Karaoke- 4K" - }, - { - "title": "Daft Punk - Get Lucky", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Take That - A Million Love Songs", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Rihanna - Only Girl In The World", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Nico & Vinz - Am I Wrong", - "id": "With Lyrics HD" - }, - { - "title": "Jessie J - Domino", - "id": "With Lyrics HD" - }, - { - "title": "Amy Winehouse - Back To Black", - "id": "With Lyrics HD Vocal-Star Karaoke- 4k" - }, - { - "title": "Take That - Back For Good", - "id": "With Lyrics HD Vocal-Star Karaoke- 4k" - }, - { - "title": "Candi Staton - Young Hearts Run Free", - "id": "With Lyrics HD Vocal-Star- 4k" - }, - { - "title": "Bruno Mars - Just the Way You Are", - "id": "With Lyrics HD Vocal-Star Karaoke- 4k" - }, - { - "title": "The Corrs - Dreams (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "bCvyLf_0omY" - }, - { - "title": "Frankie Goes To Hollywood - Relax", - "id": "With Lyrics HD Vocal-Star Karaoke- 4k" - }, - { - "title": "Blondie - Maria", - "id": "With Lyrics HD Vocal-Star Karaoke- 4k" - }, - { - "title": "Chesney Hawkes - The One And Only", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Cher - Believe", - "id": "With Lyrics HD" - }, - { - "title": "Christina Aguilera - Beautiful", - "id": "With Lyrics HD Vocal-Star Karaoke- 4K" - }, - { - "title": "Savage Garden - Truly Madly Deeply", - "id": "With Lyrics HD Vocal-Star Karaoke- 4K" - }, - { - "title": "Take That - Rule The World", - "id": "With Lyrics HD Vocal-Star Karaoke- 4K" - }, - { - "title": "The Pogues feat. Kirsty MacColl - Fairytale of New York (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "ivzziRDGr1E" - }, - { - "title": "Tina Turner - Simply The Best", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Adele - Rolling In The Deep", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "The Commitments - Mustang Sally", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Katy Perry ft. Snoop Dogg - California Gurls", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Madonna - Material Girl", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Bryan Adams - Everything I Do I Do It For You", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Travis - Why Does It Always Rain On Me", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Little Mix - Turn Your Face", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "The Cranberries - Linger (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "7X_y_bG0pIM" - }, - { - "title": "Frank Sinatra - The Lady Is A Tramp", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Dexys Midnight Runners - Come On Eileen", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Gotye - Somebody That I Used To Know", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Carpenters - Close To You", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Westlife - Swear It Again (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "C4fmo1ERyXk" - }, - { - "title": "Lady Gaga - Poker Face", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Hot Chocolate - You Sexy Thing", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "East 17 - Stay Another Day", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Gnarls Barkley - Crazy (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "BdbaI0JehwA" - }, - { - "title": "LMFAO - Party Rock Anthem", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "LeAnn Rimes - How Do I Live", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Macy Gray - I Try (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "IwkzTi8zc90" - }, - { - "title": "Journey - Don't Stop Believin", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Olly Murs - Wrapped Up (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "FdrCIMFKS1k" - }, - { - "title": "Barry White - You're The First The Last My Everything", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Simply Red - Holding Back The Years", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Mariah Carey - All I Want For Christmas Is You (Karaoke Version)", - "id": "KvJM76XRzcQ" - }, - { - "title": "Billy Joel - Uptown Girl", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "All 4 One - I Swear (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "yFZYEQopKHI" - }, - { - "title": "James Morrison & Nelly Furtado - Broken Strings", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Lady Gaga - Born This Way", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Tom Odell - Real Love (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "qOiNNqTWr9Q" - }, - { - "title": "Beyoncรฉ - If I Were A Boy", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Elton John & Kiki Dee - Don't Go Breaking My Heart", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Ed Sheeran - The A Team", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Gabrielle Aplin - Please Don't Say You Love Me", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Celine Dion - My Heart Will Go On", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Cliff Richard - We Don't Talk Anymore", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Pink ft. Nate Ruess - Just give me a Reason", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Coldplay - Yellow (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "ilPWd-ReJDM" - }, - { - "title": "Neil diamond - Something Blue", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Robbie Williams - Let Me Entertain You", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Alanis Morissette โ€“ Head Over Feet", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Patrick Swayze - She's Like The Wind", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "The Beatles - Hey Jude (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "_EOrgZ3icMQ" - }, - { - "title": "Wizzard - I Wish It Could Be Christmas Everyday", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "U2 - One (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "StqhIfACfjs" - }, - { - "title": "Alannah Myles - Black Velvet", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Coldplay - Viva La Vida", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Thin Lizzy - The Boys Are Back In Town", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Oasis - Don't Look Back In Anger", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Westlife - You Raise Me Up", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Adele - Skyfall", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Rihanna - Umbrella", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "ABBA - The Winner Takes it All", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Take That - These Days", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Bee Gees - Stayin' Alive", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Billy Idol - Rebel Yell", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Michael Jackson - Billie Jean", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Bob Marley - No Woman No Cry", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Gloria Gaynor - I Will Survive", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Black Eyed Peas - I Gotta Feeling", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Michael Jackson - The Way You Make Me Feel", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Aerosmith - I Don't Wanna Miss A Thing", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Eurythmics - Sweet Dreams (Are Made Of This)", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Coldplay - Fix You", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "ABBA - Knowing Me, Knowing You", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Cranberries - Zombie", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Irene Cara - Fame", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Chuck Berry - Johnny B. Goode", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Foreigner - I Want To Know What Love Is", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Bill Medley & Jennifer Warnes - The Time Of My Life", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "John Legend - All Of Me", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Stereophonics - Dakota", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Free - All Right Now", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Rod Stewart - Maggie May", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "The Pointer Sisters - I'm So Excited", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Europe - The Final Countdown", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "All Saints - Never Ever", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Queen - Radio Ga Ga", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Snow Patrol - Run", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Guns N' Roses - Sweet Child O' Mine", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Paloma Faith - Only Love Can Hurt Like This", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Prince - 1999", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Don McLean - American Pie", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Meat Loaf - Bat Out Of Hell", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Madonna - Like A Prayer", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Uncanny X Men - 50 Years (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "g8SrFv6NCkw" - }, - { - "title": "Think About You - Delta Goodrem (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "aYX7FYvZY-0" - }, - { - "title": "Swanee - If I Were A Carpenter (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "BpbhoOax_Rs" - }, - { - "title": "Stop Me From Falling - Kylie Minogue (Karaoke Version) Lyrics HD Vocal-Star", - "id": "LW41oj90Y_o" - }, - { - "title": "Andrew Swift - Sound The Alarm (Karaoke Version) Lyrics HD Vocal-Star", - "id": "R_ou9bDo_t4" - }, - { - "title": "Shawn Mendes ย - Lost In Japan (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "EtQNuAyrV4g" - }, - { - "title": "Shawn Mendes ย - In My Blood (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "xDWrY5N9CgI" - }, - { - "title": "Richard Clapton - I Am An Island", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Richard Clapton - Deep water (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "BDh039F7n4E" - }, - { - "title": "The Radiators - Coming Home (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "Nn8hcdCb3EQ" - }, - { - "title": "Party Boys He's Gonna Step On You Again", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "One Kiss - Calvin Harris & Dua Lipa", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Neil Diamond โ€“ Mr Bojangles (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YuzsgMjE7cE" - }, - { - "title": "Miracle - Chvrches (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "L42lYHEIPsM" - }, - { - "title": "Mavericks โ€“ All You Ever Do Is Bring Me Down", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Little River Band - Curiosity Killed The Cat", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Let Me - Zayn (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qRE3kOSbNx0" - }, - { - "title": "Khalid & Normani - Love Lies (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "DkzRBdjjwDM" - }, - { - "title": "John Paul Young - I Hate The Music", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "James Blunt - Same Mistake (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "q4ST1T3xb7E" - }, - { - "title": "James Blunt - Carry You Home (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "DsznpvcxnE8" - }, - { - "title": "James Reyne - Motors Too fast (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "p_K3L15vAU4" - }, - { - "title": "INXS - The Loved One (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "oL9oaxVh6a4" - }, - { - "title": "Ian Moss - Telephone Booth (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "7MfxO01vmgY" - }, - { - "title": "Amy Shark - I Said Hi (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "H7nc_RzWhRo" - }, - { - "title": "Hurt Somebody - Noah Kahan & Julia Michaels", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Greatest Showman - This Is Me Kesha", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Greatest Showman - Never enough", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Greatest Showman - Tightrope (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "ZJMjPnLM0VE" - }, - { - "title": "Greatest Showman - From now on (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M3pDtfCSpp0" - }, - { - "title": "Futon Couch - Missy Higgins (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8wyFuZtqUgY" - }, - { - "title": "Will Young - Losing Myself (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NooBCLXzdMI" - }, - { - "title": "Westlife - Lighthouse (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rHGVwx617Vo" - }, - { - "title": "The Vamps Ft. Martin Jensen - Middle Of The Night (Karaoke Version) with Lyrics HD Vocal-Star Karaok", - "id": "Sfdh9lmqt_s" - }, - { - "title": "The Wanted - Lightning (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1R0SIPtJyII" - }, - { - "title": "The Strokes - Last Nite (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G3-J_uEfJqc" - }, - { - "title": "The Four Seasons - Rag Doll", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Dragon - Speak No Evil (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G1QIA5zx7zI" - }, - { - "title": "DJ Khaled Ft. Demi Lovato - I Believe (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DVON_ge0sZk" - }, - { - "title": "Done For Me - Charlie Puth & Kehlani (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "55jZjDzuUII" - }, - { - "title": "Calum Scott - What I Miss Most (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yHn059LEyZ4" - }, - { - "title": "David Guetta & Sia - Flames (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0Y1G2W6_-HY" - }, - { - "title": "Calum Scott - Come Back Home (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yVqb6hXglCM" - }, - { - "title": "Cry Pretty - Carrie Underwood (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WZSPNWW8cZw" - }, - { - "title": "Boom Crash Opera - Onion Skin (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dUd7zA4E1NE" - }, - { - "title": "Ariana Grande - No Tears Left To Cry (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xMdua6oq-hc" - }, - { - "title": "Billy Crash Craddock - One last Kiss (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kPsoFjL3w5M" - }, - { - "title": "The Angels - Let The Night Roll On (Karaoke Version)", - "id": "GTB_6WdTX3c" - }, - { - "title": "Paloma Faith - Guilty (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fwHfUpgoEvA" - }, - { - "title": "Sรฉrgio Mendes feat. Black Eyed Peas - Mas que nada", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Womack & Womack - Teardrops (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xFpaCFxLci4" - }, - { - "title": "Oasis - Let There Be Love (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "zqn2M94XN9U" - }, - { - "title": "Oasis - Go Let It Out (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pneNUzsS2ik" - }, - { - "title": "Oasis - Stand By Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "o-DcAGpTOWI" - }, - { - "title": "Michael Jackson - Rock With You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "VN-2Ck0hA0s" - }, - { - "title": "Oasis - Songbird (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nAvA3Rof1_g" - }, - { - "title": "Oasis - Little By Little (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uCjh6wXD8RM" - }, - { - "title": "Stop Karaoke", - "id": "Sam Brown Karaoke Version" - }, - { - "title": "Billie Eilish - I Love You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "b-B5cbttyTo" - }, - { - "title": "Twenty One Pilots - The Hype (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IsqvJPGZBBM" - }, - { - "title": "Ed Sheeran Ft. Eminem & 50 Cent - Remember The Name (Karaoke Version)", - "id": "Z4stFnLomco" - }, - { - "title": "Kygo, Whitney Houston, - Higher Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0u-ZyO6Oa30" - }, - { - "title": "Katy Perry - Small Talk (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_dBFMyG6XWo" - }, - { - "title": "Lizzo - Truth Hurts (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R3Sb2D46S54" - }, - { - "title": "Marshmello & Kane Brown - One Thing Right (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SUCeaJRN9wU" - }, - { - "title": "Post Malone Feat. Young Thug - Goodbyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B6dk0ud7h9A" - }, - { - "title": "Taylor Swift - The Archer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "km7YNInqBeA" - }, - { - "title": "Sam Smith - How Do You Sleep (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "akoty0sWqLE" - }, - { - "title": "Ed Sheeran with Travis Scott - Antisocial (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "awmObsc9aYE" - }, - { - "title": "Lil Tecca - Ransom (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "roCQqHA09T4" - }, - { - "title": "Ellie Goulding & Juice WRLD - Hate Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FrGutnMiNaI" - }, - { - "title": "Jason DeRulo - If I'm Lucky Part 1 (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LtlZdKRZHRg" - }, - { - "title": "James Arthur - Naked (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m_KdVTKYMmY" - }, - { - "title": "Rick Price - River Of Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xStCpV6Tpuw" - }, - { - "title": "Adam Faith - We Are In Love (Karaoke Version)", - "id": "k0t1JJ34aQU" - }, - { - "title": "Michael Jackson - Beat It (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "0rqoBQkUd50" - }, - { - "title": "Marshmello Feat. Khalid - Silence (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HMdmhJBhmwc" - }, - { - "title": "Maroon 5 Feat. Julia Michaels - Help Me Out (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_AJzwHyfBUs" - }, - { - "title": "Louis Tomlinson - Miss You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "dEfTYpdUl_c" - }, - { - "title": "Amy Winehouse & Ghostface Killah - You Know I'm No Good", - "id": "Lyrics HD Karaoke 4K" - }, - { - "title": "Andra Day - Rise Up", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Amy Winehouse - Will You Still Love Me Tomorrow", - "id": "With Lyrics HD Vocal Star 4K" - }, - { - "title": "Amy Winehouse - Tears Dry On Their Own", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Amy Winehouse - F**k Me Pumps", - "id": "With Lyrics HD Vocal Star Karaoke 4K" - }, - { - "title": "Alt-J - Deadcrush (Karaoke Version)", - "id": "MnDPusMLnDo" - }, - { - "title": "Zedd & Liam Payne - Get Low (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yj_VhLuQmE4" - }, - { - "title": "Wizard Of Oz - We're Off To See The Wizard (Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "bB6ssT7raAc" - }, - { - "title": "Will Smith - Men In Black (With Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_GMZSbSpQdk" - }, - { - "title": "The Script - Rain (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xc68aFELNkA" - }, - { - "title": "The Chainsmokers - Honest (Karaoke Version) Lyrics HD Vocal-Star Karaoke 4K", - "id": "ZMCdDl367-s" - }, - { - "title": "The Beatles - Nowhere Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "XTskvJtb84w" - }, - { - "title": "Taylor Swift - Look What You Made Me Do (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yxV0wjrxl10" - }, - { - "title": "Taylor Swift - London Boy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NONpga_RDoE" - }, - { - "title": "Take That - Up All Night (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "kA7w4P4jjsk" - }, - { - "title": "Sia Feat. Labrinth - To Be Human (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tUAuy4MBdKU" - }, - { - "title": "Selena Gomez Feat. Gucci Mane - Fetish (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "p3WSMg_sE1Y" - }, - { - "title": "Scouting For Girls - Love How It Hurts (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AK-b1xV3h6k" - }, - { - "title": "Rag'n'Bone Man - As You Are (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LbzuL-pW7ns" - }, - { - "title": "Plan B - In The Name Of Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "RErdo1tt9WY" - }, - { - "title": "Pink - What About Us (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wOnCA5Xob-4" - }, - { - "title": "Paloma Faith - New York (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Q4R5fiNIqyI" - }, - { - "title": "OneRepublic - Truth To Power", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Mumford & Sons - Winter Winds (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LtNEouFRjuw" - }, - { - "title": "Meghan Trainor - Me Too (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vb4v0jJhXOM" - }, - { - "title": "Lady Gaga Feat. Beyonce - Telephone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1IYSSjUKQ-0" - }, - { - "title": "Jennifer Lopez Feat. Gente de Zona - Ni Tรบ Ni Yo (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0eZBliOwaUo" - }, - { - "title": "James Arthur - Can I Be Him", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Imagine Dragons - Thunder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "GDQJlAOSa7k" - }, - { - "title": "Harry Styles - Two Ghosts (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xNuTLwkEU90" - }, - { - "title": "Haim - Want You Back", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Haim - Little Of Your Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WrP3ixQHXmE" - }, - { - "title": "Hailee Steinfeld - Most Girls", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "George Ezra - Don't Matter Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ur17rKSN2TA" - }, - { - "title": "Fine Young Cannibals - Suspicious Minds (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KLmvMQxpKVE" - }, - { - "title": "Fall Out Boy - Champion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "B64HdIWT_HI" - }, - { - "title": "Elkie Brooks - Love Ain't Something You Can Get For Free (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "yuAY384AaCA" - }, - { - "title": "Elbow - One Day Like This (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ibchUmFOFNo" - }, - { - "title": "Ed Sheeran - Dive (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OnwXT-R__JA" - }, - { - "title": "Dua Lipa Feat. Miguel - Lost In Your Light (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Ss_cksbhi-E" - }, - { - "title": "Dua Lipa - New Rules (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aP_Mt30rLqI" - }, - { - "title": "Drake - Signs (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9nGolfyZQbA" - }, - { - "title": "Demi Lovato & Stefflon Don ft. Jax Jones - Instruction (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "uRoC92uiz10" - }, - { - "title": "David Bowie - Rebel Rebel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0a_NmzBFObc" - }, - { - "title": "David Bowie - Sorrow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "b98aGsVWTpQ" - }, - { - "title": "David Bowie - Heroes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f6iBLfvSL6U" - }, - { - "title": "David Bowie - Fashion (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "u2R-yOnX3Is" - }, - { - "title": "Charli XCX - Boys (Karaoke Version) with Lyrics HD Vocal-Star Karaoke 4K", - "id": "NXuikfz7_R0" - }, - { - "title": "Cara Delevingne - I Feel Everything With Lyrics HD Vocal-Star Karaoke 4K", - "id": "WrO2W5u-bJE" - }, - { - "title": "Camila Cabello Feat. Young Thug - Havana", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Camila Cabello - Crying In The Club", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Bruno Mars - Treasure (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "uRf_GF5jYBM" - }, - { - "title": "Britney Spears - Overprotected (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cwJe_lBJGB0" - }, - { - "title": "Bastille - Glory (Karaoke Version) with Lyrics HD Vocal-Star Karaoke 4K", - "id": "Fk-zimGj51o" - }, - { - "title": "Arcade Fire - Everything Now", - "id": "With Lyrics HD Vocal-Star Karaoke 4K" - }, - { - "title": "Abba - Dancing Queen (With Lead Vocals) (Karaoke Version)", - "id": "OyBLe7FVD40" - }, - { - "title": "Wizard Of Oz - Over The Rainbow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Jqzj2lvK4nA" - }, - { - "title": "Vance Joy โ€“ Lay It On Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_tjgaB1sY0U" - }, - { - "title": "Vance Joy โ€“ Fire & The Flood (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "flln6wZAsPU" - }, - { - "title": "The Addams Family - Theme Song (With Lead Vocals) (Karaoke Version)", - "id": "mgCT8YySles" - }, - { - "title": "The Addams Family - Theme Song (Karaoke Version)", - "id": "8kbqVvWaoiQ" - }, - { - "title": "Tegan & Sara ft.The Lonely Island - Everything Is Awesome (lead vocals) (Karaoke Version) Lyrics HD", - "id": "6zHexZ4qrSY" - }, - { - "title": "Teenage Mutant Ninja Turtles Theme Song (lead vocals) (Karaoke Version) & Lyrics HD Vocal-Star", - "id": "ED3FlucABGQ" - }, - { - "title": "Teenage Mutant Ninja Turtles Theme Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3nkMryH8WPs" - }, - { - "title": "Taylor Swift - Shake It Off with lead vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9EaYhgspZRY" - }, - { - "title": "Spongebob Squarepants - The Best Day Ever (Lead) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7MeefJQSP38" - }, - { - "title": "The Best Day Ever Karaoke", - "id": "Spongebob Squarepants Karaoke Version" - }, - { - "title": "Sing - Under Pressure (Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "V8g063GBmJM" - }, - { - "title": "Sing - Under Pressure (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LPklF_6LvcU" - }, - { - "title": "Sing - I'm Still Standing (Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CLoiXgew7zo" - }, - { - "title": "Sing - I'm Still Standing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vtEE66xhWzw" - }, - { - "title": "Sing - Baby Got Back (Lead Vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YXM0tDp3rxo" - }, - { - "title": "Sing - Baby Got Back (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Msf4Yy1sxIM" - }, - { - "title": "Sesame Street - Sunny Days lead vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9IbI8p9T5Xc" - }, - { - "title": "Ral Donner โ€“ I Wish This Night Will Never End (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_pAwkrMwG0M" - }, - { - "title": "Sesame Street - Sunny Days (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "QgTiduCfP4E" - }, - { - "title": "Pitch Perfect - Cups (with lead vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Si_M1eCx22I" - }, - { - "title": "Pitch Perfect - Cups (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PM__Jeszy08" - }, - { - "title": "Pharrell Williams - Happy With Lead Vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_MwBUhdKag4" - }, - { - "title": "Paul Kelly - Firewood and Candles (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "UDR5t0zd_c0" - }, - { - "title": "Over The Rainbow - Wizard Of Oz (lead vocals) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3YIpUvkcWXE" - }, - { - "title": "Oliver - Food Glorious Food with lead vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gHfLzFieBQo" - }, - { - "title": "Oliver - Consider Yourself With Lead Vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "f_qQoujwhvU" - }, - { - "title": "Morgan Evans โ€“ Kiss Somebody (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZorhC7tpUPI" - }, - { - "title": "Minions - Happy Together With Lead Vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vmQkU1Oj2S4" - }, - { - "title": "Minions - Happy Together (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "X66ucELsf_A" - }, - { - "title": "Macklemore & Skylar Grey โ€“ Glorious (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "V8aMahJCKg0" - }, - { - "title": "Good Old Days Karaoke", - "id": "Macklemore & Kesha Karaoke Version" - }, - { - "title": "Lionel Richie - Hello With Lead Vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n6UpFi74rpo" - }, - { - "title": "Lady Gaga - Poker Face With Lead Vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dG9FhJbl3vs" - }, - { - "title": "Happy Feet - Boogie Wonderland with lead vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JwxwgXIJjXM" - }, - { - "title": "Happy Feet - Boogie Wonderland (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ee2kwvWilvY" - }, - { - "title": "Guy Sebastian & Lupe Fiasco - Battle Scars (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xfGinmfOVds" - }, - { - "title": "Ghostbusters - Ghostbusters Theme Song with lead vocals (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "rDUW_rif4io" - }, - { - "title": "Ghostbusters - Ghostbusters Theme Song (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "27H4iZnFwrs" - }, - { - "title": "Frank Sinatra - My Way With Lead Vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "WYmkROfB6AY" - }, - { - "title": "Finding Dory - Unforgettable with lead vocals(Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "cwnvYgzysQ4" - }, - { - "title": "Finding Dory - Unforgettable (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bA5Zbrz2Y2k" - }, - { - "title": "Elton John - Tiny Dancer (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "_WBVRtMgRqc" - }, - { - "title": "Elton John - Song For Guy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aYW1kiqsDi8" - }, - { - "title": "Elton John - Saturday Night's Alright For Fighting (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "djCKs65r39c" - }, - { - "title": "Elton John - I Want Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sNm5q5-i_mM" - }, - { - "title": "Elton John - Goodbye Yellow Brick Road (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OopkNglVkKA" - }, - { - "title": "Elton John - Electricity (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DmP5LApBSeU" - }, - { - "title": "Elton John - Blue Eyes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eauVJJh7jL0" - }, - { - "title": "Elton John - Are You Ready For Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vuWY7ZkTmm0" - }, - { - "title": "David Bowie & Queen - Under Pressure (Karaoke Version)", - "id": "Oin8VMhzaBY" - }, - { - "title": "Modern Love Karaoke", - "id": "David Bowie Karaoke Version" - }, - { - "title": "David Bowie - Dancing In The Street (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SO22TMAW02Q" - }, - { - "title": "China Girl Karaoke", - "id": "David Bowie Karaoke Version" - }, - { - "title": "David Bowie - Absolute Beginners (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2i8X_W2nT-4" - }, - { - "title": "Dan Sultan โ€“ The Same Man (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9TSh36cuSkY" - }, - { - "title": "Chitty Chitty Bang Bang - Chitty Chitty Bang Bang vocals (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "imeMkiIeM2c" - }, - { - "title": "Charlie & The Chocolate Factory - Oompa Loompa with vocals (Karaoke Version) Lyrics HD Vocal-Star", - "id": "UImJXKsI3cg" - }, - { - "title": "Willy Wonka & The Chocolate Factory - Pure Imagination with Lyrics HD Vocal-Star 4K", - "id": "oSx0Rn9i4bE" - }, - { - "title": "Charlie & The Chocolate Factory - Oompa Loompa (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9FRQVIw_Vyg" - }, - { - "title": "Beatles Boss Baby - Blackbird with lead vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vy-JWy6hB88" - }, - { - "title": "Beatles Boss Baby - Blackbird (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Dq4tFoxJZBs" - }, - { - "title": "Billy Joel - Just The Way You Are inc lead vocals (Karaoke Version) & Lyrics HD Vocal-Star Karaoke", - "id": "TT5dYqC99bY" - }, - { - "title": "B52's - Meet the Flintstones with lead vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FOCWroFgSLo" - }, - { - "title": "B52's - Meet the Flintstones (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "o6Vg10LyvVs" - }, - { - "title": "Bananarama - Venus With Lead Vocals (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gKmRMiFlnvc" - }, - { - "title": "An American Tail - Somewhere Out There (With Lead Vocals) (Karaoke Version)", - "id": "IXYt96k_OvY" - }, - { - "title": "An American Tail - Somewhere Out There (Karaoke Version)", - "id": "jaezochSS-c" - }, - { - "title": "Alesso Ft. Tove Lo - Heroes (With Lead Vocals) (Karaoke Version)", - "id": "9G_ahylfEZA" - }, - { - "title": "ZAYN Feat. Sia - Dusk Till Dawn (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "m5PDQDe7r2U" - }, - { - "title": "Logic & Rag'n'Bone Man - Broken People", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Little Mix Feat. Sean Paul - Hair (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "fqOlAzlIqIc" - }, - { - "title": "Little Mix - Cannonball (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dz6ftJNdxgw" - }, - { - "title": "Lana Del Rey - White Mustang (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "drR5h5pVesQ" - }, - { - "title": "Lady Gaga - Applause (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nXtpGfEPGSw" - }, - { - "title": "Kylie Minogue - Wow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JUWXbHLJ6o4" - }, - { - "title": "Kylie Minogue - Wouldn't Change A Thing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gqtYFISq18U" - }, - { - "title": "Kylie Minogue - Tears On My Pillow (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1I_6esyVlMw" - }, - { - "title": "Kylie Minogue - Step Back In Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BzWmDcrks-M" - }, - { - "title": "Kylie Minogue - Never Too Late (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "R4saGoTX_Uk" - }, - { - "title": "Kylie Minogue - Love At First Sight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MjB3bZfqfk8" - }, - { - "title": "Kylie Minogue - In Your Eyes (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "bYi_2HV-Uwo" - }, - { - "title": "Kylie Minogue - Give Me Just A Little More Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9Mye9SFjOek" - }, - { - "title": "Kylie Minogue - Confide In Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gvlm17K-514" - }, - { - "title": "Kygo Feat. OneRepublic - Stranger Things (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "66ib5VnmV0A" - }, - { - "title": "Khalid - Young Dumb & Broke (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "P-0xtmH0B4U" - }, - { - "title": "Keane - This Is The Last Time (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DYJn4pXcYH0" - }, - { - "title": "Keane - Is It Any Wonder (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "CwNNlhe6HIs" - }, - { - "title": "Keane - Everybody's Changing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "iSlhlieHPr8" - }, - { - "title": "Jessie Ware - Alone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IalKra1lzOc" - }, - { - "title": "Jessie J - Not My Ex (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "rnTuSigClZ8" - }, - { - "title": "Imagine Dragons - Whatever It Takes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "IjUdFfJeVj8" - }, - { - "title": "Harry Styles - Kiwi (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "bbIGiFIFFr8" - }, - { - "title": "Hailee Steinfeld, Alesso Ft. Florida Georgia Line & watt - Let Me Go (Karaoke Version)", - "id": "HRlszn9Kklg" - }, - { - "title": "Hailee Steinfeld, Alesso Ft. Florida Georgia Line & watt - Let Me Go (Karaoke Version)", - "id": "BZSlSHgxgJI" - }, - { - "title": "Gabbie Hanna - Out Loud (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sEQUGZp7zbY" - }, - { - "title": "Fall Out Boy - Hold Me Tight Or Don't (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "xnkz2WIdQvQ" - }, - { - "title": "Eminem - Without Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8n65u_3o7uk" - }, - { - "title": "Eminem Feat. Beyonce - Walk On Water (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ROTC-JAEyOg" - }, - { - "title": "Eminem - The Way I Am (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vyGgWPmdHlw" - }, - { - "title": "Eminem - The Real Slim Shady (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-hvB3qInp58" - }, - { - "title": "Eminem - Just Lose It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qX513-7zoMU" - }, - { - "title": "Eminem - Cleanin' Out My Closet (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "hdL8WC-hQDg" - }, - { - "title": "Elbow - Golden Slumbers (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3jPUrjmvV3A" - }, - { - "title": "Ed Sheeran & Beyonce - Perfect (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "QZrZS40dg9E" - }, - { - "title": "Ed Sheeran - You Need Me I Don't Need You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZSv1Ty7-O3w" - }, - { - "title": "David Bowie - Where Are We Now (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "S9OFGGt6cOY" - }, - { - "title": "David Bowie - Blackstar (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "w76R35Wd-7Q" - }, - { - "title": "Craig David - Heartline (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zbuN5Re4xRo" - }, - { - "title": "CNCO Feat. Little Mix - Reggaeton Lento (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "OFUcbQzI4sQ" - }, - { - "title": "Clean Bandit Feat. Julia Michaels - I Miss You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3xSuoaKYtRw" - }, - { - "title": "Charlie Puth - How Long (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SWhzBB4DWp8" - }, - { - "title": "Carly Rae Jepsen - Higher (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "IPrTjDqs77E" - }, - { - "title": "Camelphat & Elderbrook - Cola (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "QgDt2v2ebwY" - }, - { - "title": "Calvin Harris Feat. Kehlani & Lil Yachty - Faking It (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "KG69nuX9gYY" - }, - { - "title": "Calum Scott - You Are The Reason (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "AJm1nu_RdBM" - }, - { - "title": "Blues Brothers - Shake Your Tail Feather (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0fo3YyFCT08" - }, - { - "title": "Black Eyed Peas - Let's Get It Started (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TWtHLqz6p6E" - }, - { - "title": "Beyonce Feat. Jay-Z - Deja Vu (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "owWYza1i3VI" - }, - { - "title": "Alesso & Anitta - Is That For Me (Karaoke Version)", - "id": "LJX7wmemLPU" - }, - { - "title": "Alan Walker, Noah Cyrus, Digital Farm Animals Ft. Juliander - All Falls Down (Karaoke Version)", - "id": "VYjoZ8uB5a8" - }, - { - "title": "AFSHeeN, Rebecca Ferguson - Uncrazy (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "YQzy7znN_4Q" - }, - { - "title": "Pink - Whatever You Want (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "otyNE92Iftw" - }, - { - "title": "Troye Sivan - My My My (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "n5TmbXC0dTA" - }, - { - "title": "Tom Walker - Leave A Light On (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "baphTqbT2EI" - }, - { - "title": "The Script - Arms Open (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "X7P218RSSQM" - }, - { - "title": "Taylor Swift - This Is Why We Can't Have Nice Things", - "id": "Lyrics HD Vocal-Star" - }, - { - "title": "Taylor Swift So It Goes (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "SYhBb94r9PY" - }, - { - "title": "Taylor Swift - Ready for it (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "PRq4O-yWZh0" - }, - { - "title": "Taylor Swift - New Years Day (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "vJJN1m60yA4" - }, - { - "title": "Taylor Swift - King of My Heart (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "l6Rz3-Fmz_4" - }, - { - "title": "Taylor Swift - I Did something Bad", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Taylor Swift - Getaway Car (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "8GR0GLWa2mU" - }, - { - "title": "Robbie Williams - Something Beautiful", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Robbie Williams - Rudebox (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "ASt4J_pyKxo" - }, - { - "title": "Robbie Williams - Old Before I Die (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "JCi1SC8aUFY" - }, - { - "title": "Robbie Williams - No Regrets (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "UTQ6KqdGhiM" - }, - { - "title": "Robbie Williams - Bodies (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "f1BHbPLkATU" - }, - { - "title": "Rihanna - Unfaithful (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HBxFW8wJFwE" - }, - { - "title": "Rihanna - SOS (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HUlQkTWSEC4" - }, - { - "title": "Rihanna - Shut Up And Drive (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "WI70ZzzsCAI" - }, - { - "title": "Rihanna - Russian Roulette (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "FmTbgskDp74" - }, - { - "title": "Rihanna - Rude Boy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "zsTDTJPmIGo" - }, - { - "title": "Real Life Send Me An Angel (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eKGsih49214" - }, - { - "title": "Queen - You're My Best Friend (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "DmQYR51dvA4" - }, - { - "title": "Queen - Killer Queen (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "jL01LkVPdGE" - }, - { - "title": "Queen - Innuendo (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "WeILnl5Jr7c" - }, - { - "title": "Queen - I Want It All (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "SQlIx456140" - }, - { - "title": "Queen - Heaven For Everyone (Karaoke Version) With Lyrics HD Vocal-Star Karaoke", - "id": "0_V64PvQWj8" - }, - { - "title": "Queen - Another One Bites The Dust (Karaoke Version) With Lyrics HD Vocal-Star", - "id": "24pBn1m3IAk" - }, - { - "title": "Queen - A Kind Of Magic (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "NLMgovYFoKQ" - }, - { - "title": "Pink - You Get My Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aewShCi5hQM" - }, - { - "title": "Pink - Wild Hearts Canโ€™t Be Broken (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "UUJo308DVK0" - }, - { - "title": "Pink - Where We Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6U5DWlD-ofM" - }, - { - "title": "Pink - Secrets (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dlINGFmWueU" - }, - { - "title": "Taylor Swift - End Game (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "kcmJ7mtffEA" - }, - { - "title": "Taylor Swift - Dress (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6v9GWfXrACI" - }, - { - "title": "Don't Blame Me Karaoke", - "id": "Taylor Swift Karaoke Version" - }, - { - "title": "Taylor Swift - Delicate (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "rLHleLq3Nvs" - }, - { - "title": "Taylor Swift - Dancing With Our Hands Tied", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Steve Aoki, Lauren Jauregui - All Night", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Stereophonics - Maybe Tomorrow", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Stereophonics - Just Looking (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "ylVq2HrfjaE" - }, - { - "title": "Stereophonics - Indian Summer (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "EIaHaprYDaY" - }, - { - "title": "Stereophonics - Have A Nice Day", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Sam Smith - One Last Song (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "bHs7T7rko1U" - }, - { - "title": "Rod Stewart - You Wear It Well", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Rod Stewart - This Old Heart Of Mine (Is Weak For You)", - "id": "With Lyrics HD Vocal-Star" - }, - { - "title": "Rod Stewart - The First Cut Is The Deepest", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Rod Stewart - Sailing (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "yzPBaN3l41w" - }, - { - "title": "Rod Stewart - Rhythm Of My Heart", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Rod Stewart - Hot Legs (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "o0MpMMHTQcA" - }, - { - "title": "Robbie Williams & Kylie Minogue - Kids", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Robbie Williams - Tripping (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "k5MHz0CAR0o" - }, - { - "title": "Robbie Williams - Supreme (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "YmUsxeMjlpw" - }, - { - "title": "Pink - Just Like A Pill (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "Dzb9GMCGEWM" - }, - { - "title": "Pink - I Am Here (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "wDeSpuuJgy8" - }, - { - "title": "Pink - For Now (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4izCWqNnrec" - }, - { - "title": "Pink - Family Portrait (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "oet0ks-nMRc" - }, - { - "title": "Pink - Don't Let Me Get Me (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "Uyze5L6A5I0" - }, - { - "title": "Pink - Barbies (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "2UPI3KYzDkY" - }, - { - "title": "Pink - But We Lost It (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "d9dC1Ui0weU" - }, - { - "title": "Pink - Better Life (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NRlMJ8zqBwQ" - }, - { - "title": "Oasis - The Hindu Times (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "eaGPgIGLzMs" - }, - { - "title": "Morgan Evans - I Do (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "y2RpLWdtxos" - }, - { - "title": "Migos & Marshmello - Danger (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "DoK37YAy-KQ" - }, - { - "title": "Michael Jackson - You Rock My World", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Michael Jackson - They Don't Care About Us", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Michael Jackson - Stranger In Moscow", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Michael Jackson - She's Out Of My Life With Lyrics HD Vocal-Star Karaoke", - "id": "42rV18A-B7E" - }, - { - "title": "Michael Jackson - Remember The Time (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "_Vmc6DtXQ0Q" - }, - { - "title": "Michael Jackson - Off The Wall (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "VOagVEIGKpo" - }, - { - "title": "Michael Jackson - Leave Me Alone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0yd5MfxBRnM" - }, - { - "title": "Michael Jackson - I Just Can't Stop Loving You", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Michael Jackson - Heal The World (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "W5X4NeBC4I4" - }, - { - "title": "Michael Jackson - Give In To Me (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "VtvCVKz7Ej8" - }, - { - "title": "Michael Jackson - Earth Song (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "OPatmHOJFBg" - }, - { - "title": "Michael Jackson - Don't Stop Till You Get Enough", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Michael Jackson - Blood On The Dance Floor", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Michael Jackson - Bad (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ATBd8X_JMyg" - }, - { - "title": "Meant To Be - Bebe Rexha & Florida Georgia Line", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Martin Garrix & David Guetta Ft. Jamie Scott & Romy Dya - So Far Away Lyrics HD", - "id": "pN4mg855_bY" - }, - { - "title": "Little Mix Feat. Missy Elliott - How Ya Doin'", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Liam Payne, Rita Ora - For You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "8U93i6s1_8I" - }, - { - "title": "Kylie Minogue - Red Blooded Woman (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "2wBAmfupoGQ" - }, - { - "title": "Kylie Minogue - I Believe In You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "0bkDu4qRsvg" - }, - { - "title": "Kendrick Lamar & SZA - All The Stars", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Jason Derulo Ft French Montana - Tip Toe", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "HRVY - Personal (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "-uoQXtisY40" - }, - { - "title": "G-Easy & Halsey - Him & I (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "vwObUhTF8gY" - }, - { - "title": "Keith Urban - Female (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "HNrOnecBwNM" - }, - { - "title": "Eminem Ft. Ed Sheeran - River (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "KZrrnkmjCr4" - }, - { - "title": "Dirty Sexy Money - David Guetta & Afrojack Ft. Charli XCX", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Demi Lovato - Tell Me You Love Me (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "u1wzS5BF74M" - }, - { - "title": "Sheppard -Coming Home (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "zeHP7LcUuE8" - }, - { - "title": "Carly Rae Jepsen - Cut To The Feeling (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "8qo57xK-Vyc" - }, - { - "title": "Post Malone - Candy Paint (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "Urh7HWfTntI" - }, - { - "title": "Camila Cabello - Never Be The Same (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "DTX5_OZjgtw" - }, - { - "title": "Camila Cabello - Real Friends (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "hF6wZaL_1oo" - }, - { - "title": "Calvin Harris Feat. Jessie Reyez - Hard To Love", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Bruno Mars & Cardi B - Finesse (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "g9KfTbhaNGs" - }, - { - "title": "Black Eyed Peas - Rock that Body (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "FPYiToGJUVA" - }, - { - "title": "Baby Ariel - Aww (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1Wsq2fs6fbQ" - }, - { - "title": "Rihanna - Where Have You Been (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "_J75uNGoMZI" - }, - { - "title": "Rihanna - S & M (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "8bABeXeD7to" - }, - { - "title": "Rihanna - Pon De Replay (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "tncNMtmmvfk" - }, - { - "title": "Rihanna - Disturbia (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AogQq1nkPVU" - }, - { - "title": "Olivia Newton-John Take Me Home, Country Roads (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4H9GJQ6eb44" - }, - { - "title": "Numb Hayden James & GRAACE (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "TpG2-y0yGDE" - }, - { - "title": "No Excuses - Meghan Trainor (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "7CYOIMA4GWo" - }, - { - "title": "Mine - Bazzi (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "VwgofmqH8pc" - }, - { - "title": "Keith Urban - Parallel Line (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DBtzF3-fVi8" - }, - { - "title": "Kenny Rogers Coward Of The County (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O_wE-4gmE2Y" - }, - { - "title": "Katchi - Ofenbach & Nick Waterhouse", - "id": "Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "James Reyne Fall Of Rome (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "E3yg2-ybqIk" - }, - { - "title": "Jo Jo Zep & The Falcons Shape I'm In", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Johnny Burnette Little Boy Sad", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "IDGAF Dua Lipa (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3um5LbWJ6T8" - }, - { - "title": "Hoodoo Gurus The Right Time (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "CmhehFGQzvM" - }, - { - "title": "Hank Williams I'm So Lonely, I Could Cry", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Harry Nilsson Everybody's Talkin' (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "GiVvypnIfbA" - }, - { - "title": "Graham Bonnet Warm Ride (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "i3gF0oQIz_A" - }, - { - "title": "Gangajang Hundreds Of Languages (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "JyrfHbilTnM" - }, - { - "title": "Friends - Marshmello & Anne Marie", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Flash and The Pan Hey St Peter", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Dancing Kylie Minogue (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DrOipYfWoYw" - }, - { - "title": "Creedence Clearwater Lodi (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "ZpifQluZBOI" - }, - { - "title": "Blues Brothers - Sweet Home Chicago", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Australian Crawl Things Don't Seem", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Black Sorrows The Crack Up (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "fjZ4RfB4tvo" - }, - { - "title": "Billy Crash Craddock Boom Boom Baby", - "id": "With Lyrics HD Vocal-Star Karaoke" - }, - { - "title": "Australian Crawl Errol (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZIVJP1OsokE" - }, - { - "title": "Alan Jackson Where Were You (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "u2kON1mhxRg" - }, - { - "title": "Adam Faith - Baby Take A Bow (Karaoke Version)", - "id": "-K7WV_WZFT0" - }, - { - "title": "Adam Faith - As You Like (Karaoke Version)", - "id": "EgfbwBeRZ3E" - }, - { - "title": "Adam Faith - A Message To Martha (Kentucky Bluebird) (Karaoke Version)", - "id": "d08DiKKZ6tI" - }, - { - "title": "Adam & The Ants - Prince charming (Karaoke Version)", - "id": "S30dg3DJsEk" - }, - { - "title": "Adam & The Ants - Kings Of The Wild Frontier (Karaoke Version)", - "id": "PFxyRc3QKt4" - }, - { - "title": "AC/DC - Whole Lotta Rosie (Karaoke Version)", - "id": "I7DnKo84Dfo" - }, - { - "title": "AC/DC - Who Made Who (Karaoke Version)", - "id": "5Phil6AKqwA" - }, - { - "title": "Thunderstruck Karaoke", - "id": "AC/DC Karaoke Version" - }, - { - "title": "AC/DC - Shoot To Thrill (Karaoke Version)", - "id": "BalLllVxIlA" - }, - { - "title": "AC/DC - Guns For Hire (Karaoke Version)", - "id": "ZDFFPQF0fAM" - }, - { - "title": "Green Day - Father Of All (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "LmyHIltJPPw" - }, - { - "title": "Zed, Maren Morris & Grey - The Middle (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "YVElfKn4DYI" - }, - { - "title": "Years & Years - If You're Over Me (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZzPvb5mihRs" - }, - { - "title": "William Shakespeare Canโ€™t Stop Myself From Loving You (Karaoke Version) with Lyrics HD", - "id": "J5cYhxN5Pk0" - }, - { - "title": "We're Going Home Vance Joy (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "mTEeXPHZQqo" - }, - { - "title": "Wa Wa Nee - Stimulation (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0Y2UYumEBWQ" - }, - { - "title": "Tinashe Ft. Offset - No Drama (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "AIxcCrI2djM" - }, - { - "title": "Tim McGraw Just To See You Smile (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "3jjkQv9dTs0" - }, - { - "title": "This Is Me Kesha (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "1zNoeo8Oo6c" - }, - { - "title": "Thirsty Merc - The Hard Way (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "tl4rFHnSc9s" - }, - { - "title": "These Days Rudimental & Jess Glynne (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "pS5n-VvZ_9Y" - }, - { - "title": "The Radiators - 17 (I Wish I Was) (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4qvsrtBGyO0" - }, - { - "title": "The Greatest Show - Zac Efron & Zendaya (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Mdgo8CV6e8c" - }, - { - "title": "The Black Sorrows - Never Let Me Go (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Rkyl74V58ag" - }, - { - "title": "Ted Mulry - Falling In Love Again (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "NbB7Ad4ZUnA" - }, - { - "title": "Take Cover Jordie Ireland (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "BX24fpKvmp8" - }, - { - "title": "Swanee - If I Were A Carpenter (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "P6T9ujHMi0k" - }, - { - "title": "Swanee - Lady What's Your Name (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4QGgvoUS0Ww" - }, - { - "title": "Supermarket Flowers - Ed Sheeran (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "E29kGOhl_Rk" - }, - { - "title": "Strangers - Sigrid (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "qag13JnZmE0" - }, - { - "title": "Spectrum - I'll Be Gone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "jD3t3ZSFTeE" - }, - { - "title": "Simple Florida - Georgia Line (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "MPbg11BLPOc" - }, - { - "title": "Sigrid - High Five (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "e4Uljl73KkY" - }, - { - "title": "Sigala Feat. Paloma Faith - Lullaby (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "N-gajZf44G0" - }, - { - "title": "Sick Boy Chainsmokers (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "Jon6RGZS_q8" - }, - { - "title": "Shaun Cassidy - That is Rock 'N' Roll (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "9DC9W0m0XDQ" - }, - { - "title": "Screaming Jets C'mon (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZfeLptO5WSc" - }, - { - "title": "Say Something Justin Timberlake & Chris Stapleton (Karaoke Version) with Lyrics HD Vocal-Star", - "id": "i_2fr6r5wBQ" - }, - { - "title": "Rose Tattoo - We Can't Be Beaten (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "dOzh2HM45vI" - }, - { - "title": "Robert Palmer โ€“ Bad Case Of Loving You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DXBDlGVeA6I" - }, - { - "title": "Rita Ora - Proud (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DOz4tbtzzm0" - }, - { - "title": "Rise Jonas Blue & Jack & Jack (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nnmODCLmz2g" - }, - { - "title": "Rick Price - Walk Away Renee (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "4tAYcnOLbM4" - }, - { - "title": "Rewrite The Stars - Zac Efron & Zendaya (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FYOHhbH9xvs" - }, - { - "title": "Ramz - Barking (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EYU0yh_FK50" - }, - { - "title": "Post Malone Feat. Ty Dolla $ign - Psycho (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "vOrv8OdP9qY" - }, - { - "title": "Portugal The Man - Feel It Still (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ggjGeMACDWM" - }, - { - "title": "Paul Norton - Stuck On You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "SiI_lZrjw-g" - }, - { - "title": "Panic! At The Disco - High Hopes (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "G7IHtv650Lk" - }, - { - "title": "Paloma Faith - Make Your Own Kind Of Music (Karaoke Version) with Lyrics HD Vocal-Star Karaok", - "id": "RgewpDE7H0o" - }, - { - "title": "Noah Cyrus Ft. Mร˜ - We Are (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "i_HwXFdwn84" - }, - { - "title": "Nick Barker and The Reptiles - Make Me Smile (Karaoke Version) with Lyrics HD Vocal-Star Kara", - "id": "H4o0XXY0GGs" - }, - { - "title": "Imagine Dragons Natural (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "V04qUM2QtPk" - }, - { - "title": "Natural - Imagine Dragons (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "EoZvuMA46bc" - }, - { - "title": "Mondo Rock - State of the Heart (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "FmFZSn3ZoRI" - }, - { - "title": "Meghan Trainor - No Excuses (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "0Bg_hSQjIVA" - }, - { - "title": "Loud Luxury Feat. Brando - Body (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "6x7tY65qSu0" - }, - { - "title": "Khalid & Normani - Love Lies (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "ZzmUTK1gLIo" - }, - { - "title": "Jennifer Lopez - US (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "nyOC_vq5PNM" - }, - { - "title": "James Arthur - You Deserve Better (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "Cdn8NsetcQA" - }, - { - "title": "Incubus - No Fun (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sZ-m8xLKdf0" - }, - { - "title": "Halsey - Bad At Love (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "gw14UMPbj9U" - }, - { - "title": "Hailee Steinfeld & BloodPop - Capital Letters (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "JP9xnKo_Z9Y" - }, - { - "title": "George Ezra - Paradise (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "KIT5VMoX5Tw" - }, - { - "title": "Drake - God's Plan (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "sm7y0Yzng_w" - }, - { - "title": "Diplo Ft. Mร˜ - Get It Right (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "aPwGMCZiuvI" - }, - { - "title": "Clark Griswold Hilltop Hoods (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "M06Mjc43VyY" - }, - { - "title": "Cheat Codes & Little Mix - Only You (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "DtMGLltuU5I" - }, - { - "title": "Born to Be Yours Kygo & Imagine Dragons (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "xYyVK4WgFME" - }, - { - "title": "Bebe Rexha - I'm A Mess (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "O7Mpk9TpHOI" - }, - { - "title": "Bastille - Quarter Past Midnight (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "71BuA5qABwc" - }, - { - "title": "Banx & Ranx Feat. Ella Eyre - Answerphone (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "eSBpMxqhMvI" - }, - { - "title": "Ariana Grande - God Is A Woman (Karaoke Version) with Lyrics HD Vocal-Star Karaoke", - "id": "S8lCY5tu8U0" - }, - { - "title": "The Angels - Backstreet Pickup (Karaoke Version)", - "id": "NB6R6CBFayA" - }, - { - "title": "Amy Shark & Mark Hoppus โ€“ Psycho (Karaoke Version)", - "id": "i6ZYFEwX_FY" - }, - { - "title": "Amy Shark - All Loved Up (Karaoke Version)", - "id": "ypTWCNMzEsA" - }, - { - "title": "Alessia Cara - Growing Pains (Karaoke Version) With Lyrics HD Vocal-Star", - "id": "_HKG6n2jdkM" - }, - { - "title": "Thirty Seconds To Mars - Rescue Me", - "id": "Vocal Star Karaoke Version - Lyrics" - }, - { - "title": "Calvin Harris & Sam Smith - Promises Karaoke Version with Lyrics HD Vocal-Star Karaoke", - "id": "Ng8a0OGyPNg" - }, - { - "title": "Ariana Grande - Breathin Karaoke Version with Lyrics HD Vocal-Star Karaoke", - "id": "u_MuwvxHoOo" - }, - { - "title": "Cher - Gimme Gimme Version Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "WVf8mhDBKNw" - }, - { - "title": "Cher โ€“ Fernando (Solo) Karaoke Version with Lyrics HD Vocal-Star Karaoke", - "id": "r7i8tnHSHBA" - }, - { - "title": "Cher โ€“ Fernando (Duet) Karaoke Version with Lyrics HD Vocal-Star Karaoke", - "id": "zypDGo34RnY" - }, - { - "title": "Goanna โ€“ Razors Edge (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "bbaHd9b3TdY" - }, - { - "title": "DJ Khaled & Justin Bieber - No Brainer (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "iFyUiTYkNcA" - }, - { - "title": "Leave A Light On - Tom Walker (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "YT35FEur434" - }, - { - "title": "Keith Urban & Shy Carter - My Wave (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "GXwrxoWG1ok" - }, - { - "title": "Jess Glynne - All I Am (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "xz_2Rcrm86g" - }, - { - "title": "Morgan Evans - Young Again (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "uY3UvU3bpfk" - }, - { - "title": "The McClymonts - Like We Used To (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "BJ_ebLkGdvM" - }, - { - "title": "Smokie - Do to Me (From The Year 1979) (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "B10OFMRPw9c" - }, - { - "title": "Selena Gomez - Back To You (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "MHRGsTvlJeE" - }, - { - "title": "Rubens & Sarah - Never Ever (Duet) (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "kneFxyDQMoE" - }, - { - "title": "Elton John - Guess That's Why They Call It the Blues (Karaoke Version) Karaoke with Lyrics HD", - "id": "u3CCuci2fPk" - }, - { - "title": "Elton John - Candle In the Wind (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "N24vDGX1vKU" - }, - { - "title": "Zombie - Bad Wolves (Karaoke Version) Lyrics HD Vocal-Star Karaoke", - "id": "8EXc7O3oCjY" - }, - { - "title": "Jessica Mauboy - We Got Love (Karaoke Version) Karaoke with Lyrics HD", - "id": "GTfZt3QTMow" - }, - { - "title": "Lady Gaga (A Star Is Born) - Why Did You Do That (Karaoke Version)", - "id": "Ozaj5XLlSQ8" - }, - { - "title": "Lady Gaga (A Star Is Born) - Look What I Found Karaoke with Lyrics HD", - "id": "Fr61w8j3QRw" - }, - { - "title": "Lady Gaga (A Star Is born) - I'll Never Love Again (Karaoke Version) Karaoke with Lyrics HD", - "id": "ZxBvHiUACMY" - }, - { - "title": "Lady Gaga (A Star Is Born) - Before I Cry (Karaoke Version) Karaoke with Lyrics HD", - "id": "Z_ILOKwgjjA" - }, - { - "title": "Lady Gaga (A Star Is Born) - Heal Me (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "CANW04OFsbM" - }, - { - "title": "Lady Gaga (A Star Is Born) - Hair Body Face (Karaoke Version) Karaoke with Lyrics HD", - "id": "CPVU7jYQhXU" - }, - { - "title": "Lady Gaga & Bradley Cooper (A Star Is Born) - I Don't Know What Love Is Karaoke Version", - "id": "HqnvBHVCI4U" - }, - { - "title": "Lady Gaga & Bradley Cooper (A Star Is Born) (Karaoke Version) - Diggin' My Grave with Lyrics HD", - "id": "_tHUQVyJJxo" - }, - { - "title": "Bradley Cooper (A Star Is Born) - Maybe It's Time (Karaoke Version) with Lyrics HD", - "id": "q0jhPJCauEg" - }, - { - "title": "Bradley Cooper (A Star Is Born) - Black Eyes (Karaoke Version) Karaoke with Lyrics HD", - "id": "BEoHeGqDBBY" - }, - { - "title": "Bradley Cooper (A Star Is Born) - Alibi (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "FhezT6MkVyo" - }, - { - "title": "Zedd & Elley Duhe - Happy Now (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "ibrC2xg-3Sg" - }, - { - "title": "Taylor Swift - Getaway Car (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "0lV_0b-uCKg" - }, - { - "title": "Ava Max - Torn (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "F6tVNqH70cg" - }, - { - "title": "Miley Cyrus - Slide Away (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "phdhzyw17XM" - }, - { - "title": "Ariana Grande with Social House - Boyfriend (Karaoke Version) Karaoke with Lyrics HD Vocal-Star", - "id": "fMi-DRy15W8" - }, - { - "title": "Lana Del Rey - Looking For America (Karaoke Version)Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "7RedfSYS4h0" - }, - { - "title": "Jonas Brothers - Only Human (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "NJypNDWAWMg" - }, - { - "title": "Ed Sheeran ft. Skrillex - Way To Break My Heart (Karaoke Version) Karaoke with Lyrics HD Vocal-Star", - "id": "iCGMjlLzQBo" - }, - { - "title": "Ali Gatie - It's You (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "rcggfkyR3LE" - }, - { - "title": "Ed Sheeran ft. Stormzy - Take Me Back To London (Karaoke Version) Karaoke with Lyrics HD Vocal-Star", - "id": "1NoP2kqtVY0" - }, - { - "title": "Taylor Swift - The Man (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "P-Cs-Zc5vMk" - }, - { - "title": "Taylor Swift - Lover (Karaoke Version) Karaoke with Lyrics HD Vocal-Star Karaoke", - "id": "gaa5gKpFYEQ" - }, - { - "title": "George Ezra - Shotgun Karaoke Version", - "id": "E_n2tCz78Kw" - }, - { - "title": "A Million Dreams - The Greatest Showman Karaoke Version", - "id": "xPOnBVkU_yA" - }, - { - "title": "Vicki Becks - Somethings Got A Hold On Me - UK KWC Final 15th September 2018", - "id": "yZAApBmp8Pk" - }, - { - "title": "Tempest Bailey - Just One Dance - UK KWC Final 15th September 2018", - "id": "oeOctC9TrwU" - }, - { - "title": "Steven Yates Wanted Dead Or Alive - UK KWC Final 15th September 2018", - "id": "G5lhfZRfQi4" - }, - { - "title": "Laura Whittingham Somebody To Love - UK KWC Final 15th September 2018", - "id": "L4vtUtx2yCc" - }, - { - "title": "Laura Hicks With You - UK KWC Final 15th September 2018", - "id": "0i920sJovvY" - }, - { - "title": "Conor Mclain Trouble - UK KWC Final 15th September 2018", - "id": "rsx0MIcw2I0" - }, - { - "title": "Bella Up The Mountain - UK KWC Final 15th September 2018", - "id": "GQN3I62waQI" - }, - { - "title": "Jenny Ball Never Enough - UK KWC Final 15th September 2018", - "id": "0EMUDTBSrY4" - }, - { - "title": "Samantha Atkinson Purple Rain - UK KWC Final 15th September 2018", - "id": "NvKJiysm31Y" - }, - { - "title": "Lascel Wood - Its All Coming Back To Me - UK KWC Final 15th September Bournemouth", - "id": "LBgl4GvifY4" - }, - { - "title": "Lascel Wood This Is Me - UK KWC Final 15th September 2018", - "id": "214APoyp7uQ" - }, - { - "title": "Darren Spence - Dakota - KWC World Final Stockholm 2014", - "id": "SwU4RRcPgXo" - }, - { - "title": "Vocal-Star VS-P120 Portable Speaker PA Unit With Bluetooth & 2 VHF Wireless Microphones Overview", - "id": "8Sray_AxOKs" - }, - { - "title": "Vocal-Star Song Quality Preview", - "id": "dorW6OpU1zE" - } - ] -} \ No newline at end of file diff --git a/karaoke_downloader/cli.py b/karaoke_downloader/cli.py index 151a240..9df4723 100644 --- a/karaoke_downloader/cli.py +++ b/karaoke_downloader/cli.py @@ -110,6 +110,17 @@ Examples: action="store_true", help="Show page-by-page progress when downloading channel video lists (slower but more detailed)", ) + parser.add_argument( + "--parallel-channels", + action="store_true", + help="Enable parallel channel scanning for faster channel processing (scans multiple channels simultaneously)", + ) + parser.add_argument( + "--channel-workers", + type=int, + default=3, + help="Number of parallel channel scanning workers (default: 3, max: 10)", + ) parser.add_argument( "--songlist-only", action="store_true", @@ -183,7 +194,7 @@ Examples: parser.add_argument( "--parallel", action="store_true", - help="Enable parallel downloads for improved speed", + help="Enable parallel downloads for improved speed (3-5x faster for large batches)", ) parser.add_argument( "--workers", @@ -209,6 +220,11 @@ Examples: print("โŒ Error: --workers must be between 1 and 10") sys.exit(1) + # Validate channel workers argument + if args.channel_workers < 1 or args.channel_workers > 10: + print("โŒ Error: --channel-workers must be between 1 and 10") + sys.exit(1) + yt_dlp_path = Path("downloader/yt-dlp.exe") if not yt_dlp_path.exists(): print("โŒ Error: yt-dlp.exe not found in downloader/ directory") @@ -391,6 +407,8 @@ Examples: fuzzy_threshold=args.fuzzy_threshold, force_download=args.force, show_pagination=args.show_pagination, + parallel_channels=args.parallel_channels, + max_channel_workers=args.channel_workers, ) elif args.latest_per_channel: # Use provided file or default to data/channels.txt diff --git a/karaoke_downloader/download_planner.py b/karaoke_downloader/download_planner.py index 9124fb9..e39c953 100644 --- a/karaoke_downloader/download_planner.py +++ b/karaoke_downloader/download_planner.py @@ -3,10 +3,13 @@ Download plan building utilities. Handles pre-scanning channels and building download plans. """ +import concurrent.futures +import hashlib import json +import sys from datetime import datetime from pathlib import Path -from typing import List, Dict, Any +from typing import Any, Dict, List, Optional, Tuple from karaoke_downloader.cache_manager import ( delete_plan_cache, @@ -16,12 +19,13 @@ from karaoke_downloader.cache_manager import ( ) from karaoke_downloader.fuzzy_matcher import ( create_song_key, - extract_artist_title, + create_video_key, get_similarity_function, is_exact_match, is_fuzzy_match, normalize_title, ) +from karaoke_downloader.id3_utils import extract_artist_title from karaoke_downloader.youtube_utils import get_channel_info # Constants @@ -29,6 +33,7 @@ DEFAULT_FILENAME_LENGTH_LIMIT = 100 DEFAULT_ARTIST_LENGTH_LIMIT = 30 DEFAULT_TITLE_LENGTH_LIMIT = 60 DEFAULT_FUZZY_THRESHOLD = 85 +DEFAULT_DISPLAY_LIMIT = 10 def generate_unmatched_report(unmatched: List[Dict[str, Any]], report_path: str = None) -> str: @@ -74,6 +79,111 @@ def generate_unmatched_report(unmatched: List[Dict[str, Any]], report_path: str return str(report_file) +def _scan_channel_for_matches( + channel_url, + channel_name, + channel_id, + song_keys, + song_lookup, + fuzzy_match, + fuzzy_threshold, + show_pagination, + yt_dlp_path, + tracker, +): + """ + Scan a single channel for matches (used in parallel processing). + + Args: + channel_url: URL of the channel to scan + channel_name: Name of the channel + channel_id: ID of the channel + song_keys: Set of song keys to match against + song_lookup: Dictionary mapping song keys to song data + fuzzy_match: Whether to use fuzzy matching + fuzzy_threshold: Threshold for fuzzy matching + show_pagination: Whether to show pagination progress + yt_dlp_path: Path to yt-dlp executable + tracker: Tracking manager instance + + Returns: + List of video matches found in this channel + """ + print(f"\n๐Ÿšฆ Scanning channel: {channel_name} ({channel_url})") + + # Get channel info if not provided + if not channel_name or not channel_id: + channel_name, channel_id = get_channel_info(channel_url) + + # Fetch video list from channel + available_videos = tracker.get_channel_video_list( + channel_url, yt_dlp_path=str(yt_dlp_path), force_refresh=False, show_pagination=show_pagination + ) + + print(f" ๐Ÿ“Š Channel has {len(available_videos)} videos to scan") + + video_matches = [] + + # Pre-process video titles for efficient matching + if fuzzy_match: + # For fuzzy matching, create normalized video keys + for video in available_videos: + v_artist, v_title = extract_artist_title(video["title"]) + video_key = create_song_key(v_artist, v_title) + + # Find best match among remaining songs + best_match = None + best_score = 0 + for song_key in song_keys: + if song_key in song_lookup: # Only check unmatched songs + score = get_similarity_function()(song_key, video_key) + if score >= fuzzy_threshold and score > best_score: + best_score = score + best_match = song_key + + if best_match: + song = song_lookup[best_match] + video_matches.append( + { + "artist": song["artist"], + "title": song["title"], + "channel_name": channel_name, + "channel_url": channel_url, + "video_id": video["id"], + "video_title": video["title"], + "match_score": best_score, + } + ) + # Remove matched song from future consideration + del song_lookup[best_match] + song_keys.remove(best_match) + else: + # For exact matching, use direct key comparison + for video in available_videos: + v_artist, v_title = extract_artist_title(video["title"]) + video_key = create_song_key(v_artist, v_title) + + if video_key in song_keys: + song = song_lookup[video_key] + video_matches.append( + { + "artist": song["artist"], + "title": song["title"], + "channel_name": channel_name, + "channel_url": channel_url, + "video_id": video["id"], + "video_title": video["title"], + "match_score": 100, + } + ) + # Remove matched song from future consideration + del song_lookup[video_key] + song_keys.remove(video_key) + + print(f" โœ… Found {len(video_matches)} matches in {channel_name}") + return video_matches + + def build_download_plan( channel_urls, undownloaded, @@ -82,6 +192,8 @@ def build_download_plan( fuzzy_match=False, fuzzy_threshold=DEFAULT_FUZZY_THRESHOLD, show_pagination=False, + parallel_channels=False, + max_channel_workers=3, ): """ For each song in undownloaded, scan all channels for a match. @@ -102,85 +214,198 @@ def build_download_plan( song_keys.add(key) song_lookup[key] = song - for i, channel_url in enumerate(channel_urls, 1): - print(f"\n๐Ÿšฆ Starting channel {i}/{len(channel_urls)}: {channel_url}") - print(f" ๐Ÿ” Getting channel info...") - channel_name, channel_id = get_channel_info(channel_url) - print(f" โœ… Channel info: {channel_name} (ID: {channel_id})") - print(f" ๐Ÿ” Fetching video list from channel...") - available_videos = tracker.get_channel_video_list( - channel_url, yt_dlp_path=str(yt_dlp_path), force_refresh=False, show_pagination=show_pagination - ) - print( - f" ๐Ÿ“Š Channel has {len(available_videos)} videos to scan against {len(undownloaded)} songlist songs" - ) - matches_this_channel = 0 - video_matches = [] # Initialize video_matches for this channel + if parallel_channels: + print(f"๐Ÿš€ Running parallel channel scanning with {max_channel_workers} workers.") + + # Create a thread-safe copy of song data for parallel processing + import threading + song_keys_lock = threading.Lock() + song_lookup_lock = threading.Lock() + + def scan_channel_safe(channel_url): + """Thread-safe channel scanning function.""" + print(f"\n๐Ÿšฆ Scanning channel: {channel_url}") + + # Get channel info + channel_name, channel_id = get_channel_info(channel_url) + print(f" โœ… Channel info: {channel_name} (ID: {channel_id})") + + # Fetch video list from channel + available_videos = tracker.get_channel_video_list( + channel_url, yt_dlp_path=str(yt_dlp_path), force_refresh=False, show_pagination=show_pagination + ) + print(f" ๐Ÿ“Š Channel has {len(available_videos)} videos to scan") + + video_matches = [] + + # Pre-process video titles for efficient matching + if fuzzy_match: + # For fuzzy matching, create normalized video keys + for video in available_videos: + v_artist, v_title = extract_artist_title(video["title"]) + video_key = create_song_key(v_artist, v_title) - # Pre-process video titles for efficient matching - if fuzzy_match: - # For fuzzy matching, create normalized video keys - for video in available_videos: - v_artist, v_title = extract_artist_title(video["title"]) - video_key = create_song_key(v_artist, v_title) + # Find best match among remaining songs (thread-safe) + best_match = None + best_score = 0 + with song_keys_lock: + available_song_keys = list(song_keys) # Copy for iteration + + for song_key in available_song_keys: + with song_lookup_lock: + if song_key in song_lookup: # Only check unmatched songs + score = get_similarity_function()(song_key, video_key) + if score >= fuzzy_threshold and score > best_score: + best_score = score + best_match = song_key - # Find best match among remaining songs - best_match = None - best_score = 0 - for song_key in song_keys: - if song_key in song_lookup: # Only check unmatched songs - score = get_similarity_function()(song_key, video_key) - if score >= fuzzy_threshold and score > best_score: - best_score = score - best_match = song_key + if best_match: + with song_lookup_lock: + if best_match in song_lookup: # Double-check it's still available + song = song_lookup[best_match] + video_matches.append( + { + "artist": song["artist"], + "title": song["title"], + "channel_name": channel_name, + "channel_url": channel_url, + "video_id": video["id"], + "video_title": video["title"], + "match_score": best_score, + } + ) + # Remove matched song from future consideration + del song_lookup[best_match] + with song_keys_lock: + song_keys.discard(best_match) + else: + # For exact matching, use direct key comparison + for video in available_videos: + v_artist, v_title = extract_artist_title(video["title"]) + video_key = create_song_key(v_artist, v_title) - if best_match: - song = song_lookup[best_match] - video_matches.append( - { - "artist": song["artist"], - "title": song["title"], - "channel_name": channel_name, - "channel_url": channel_url, - "video_id": video["id"], - "video_title": video["title"], - "match_score": best_score, - } - ) - # Remove matched song from future consideration - del song_lookup[best_match] - song_keys.remove(best_match) - matches_this_channel += 1 - else: - # For exact matching, use direct key comparison - for video in available_videos: - v_artist, v_title = extract_artist_title(video["title"]) - video_key = create_song_key(v_artist, v_title) + with song_lookup_lock: + if video_key in song_keys and video_key in song_lookup: + song = song_lookup[video_key] + video_matches.append( + { + "artist": song["artist"], + "title": song["title"], + "channel_name": channel_name, + "channel_url": channel_url, + "video_id": video["id"], + "video_title": video["title"], + "match_score": 100, + } + ) + # Remove matched song from future consideration + del song_lookup[video_key] + with song_keys_lock: + song_keys.discard(video_key) + + print(f" โœ… Found {len(video_matches)} matches in {channel_name}") + return video_matches + + # Execute parallel channel scanning + with concurrent.futures.ThreadPoolExecutor(max_workers=max_channel_workers) as executor: + # Submit all channel scanning tasks + future_to_channel = { + executor.submit(scan_channel_safe, channel_url): channel_url + for channel_url in channel_urls + } + + # Process results as they complete + for future in concurrent.futures.as_completed(future_to_channel): + channel_url = future_to_channel[future] + try: + video_matches = future.result() + plan.extend(video_matches) + channel_name, _ = get_channel_info(channel_url) + channel_match_counts[channel_name] = len(video_matches) + except Exception as e: + print(f"โš ๏ธ Error processing channel {channel_url}: {e}") + channel_name, _ = get_channel_info(channel_url) + channel_match_counts[channel_name] = 0 + else: + for i, channel_url in enumerate(channel_urls, 1): + print(f"\n๐Ÿšฆ Starting channel {i}/{len(channel_urls)}: {channel_url}") + print(f" ๐Ÿ” Getting channel info...") + channel_name, channel_id = get_channel_info(channel_url) + print(f" โœ… Channel info: {channel_name} (ID: {channel_id})") + print(f" ๐Ÿ” Fetching video list from channel...") + available_videos = tracker.get_channel_video_list( + channel_url, yt_dlp_path=str(yt_dlp_path), force_refresh=False, show_pagination=show_pagination + ) + print( + f" ๐Ÿ“Š Channel has {len(available_videos)} videos to scan against {len(undownloaded)} songlist songs" + ) + matches_this_channel = 0 + video_matches = [] # Initialize video_matches for this channel - if video_key in song_keys: - song = song_lookup[video_key] - video_matches.append( - { - "artist": song["artist"], - "title": song["title"], - "channel_name": channel_name, - "channel_url": channel_url, - "video_id": video["id"], - "video_title": video["title"], - "match_score": 100, - } - ) - # Remove matched song from future consideration - del song_lookup[video_key] - song_keys.remove(video_key) - matches_this_channel += 1 + # Pre-process video titles for efficient matching + if fuzzy_match: + # For fuzzy matching, create normalized video keys + for video in available_videos: + v_artist, v_title = extract_artist_title(video["title"]) + video_key = create_song_key(v_artist, v_title) - # Add matches to plan - plan.extend(video_matches) + # Find best match among remaining songs + best_match = None + best_score = 0 + for song_key in song_keys: + if song_key in song_lookup: # Only check unmatched songs + score = get_similarity_function()(song_key, video_key) + if score >= fuzzy_threshold and score > best_score: + best_score = score + best_match = song_key - # Print match count once per channel - channel_match_counts[channel_name] = matches_this_channel - print(f" โ†’ Found {matches_this_channel} songlist matches in this channel.") + if best_match: + song = song_lookup[best_match] + video_matches.append( + { + "artist": song["artist"], + "title": song["title"], + "channel_name": channel_name, + "channel_url": channel_url, + "video_id": video["id"], + "video_title": video["title"], + "match_score": best_score, + } + ) + # Remove matched song from future consideration + del song_lookup[best_match] + song_keys.remove(best_match) + matches_this_channel += 1 + else: + # For exact matching, use direct key comparison + for video in available_videos: + v_artist, v_title = extract_artist_title(video["title"]) + video_key = create_song_key(v_artist, v_title) + + if video_key in song_keys: + song = song_lookup[video_key] + video_matches.append( + { + "artist": song["artist"], + "title": song["title"], + "channel_name": channel_name, + "channel_url": channel_url, + "video_id": video["id"], + "video_title": video["title"], + "match_score": 100, + } + ) + # Remove matched song from future consideration + del song_lookup[video_key] + song_keys.remove(video_key) + matches_this_channel += 1 + + # Add matches to plan + plan.extend(video_matches) + + # Print match count once per channel + channel_match_counts[channel_name] = matches_this_channel + print(f" โ†’ Found {matches_this_channel} songlist matches in this channel.") # Remaining unmatched songs unmatched = list(song_lookup.values()) diff --git a/karaoke_downloader/downloader.py b/karaoke_downloader/downloader.py index da40936..f732ace 100644 --- a/karaoke_downloader/downloader.py +++ b/karaoke_downloader/downloader.py @@ -317,6 +317,8 @@ class KaraokeDownloader: fuzzy_threshold=DEFAULT_FUZZY_THRESHOLD, force_download=False, show_pagination=False, + parallel_channels=False, + max_channel_workers=3, ): """ Download songs from the songlist across multiple channels. @@ -510,6 +512,8 @@ class KaraokeDownloader: fuzzy_match=fuzzy_match, fuzzy_threshold=fuzzy_threshold, show_pagination=show_pagination, + parallel_channels=parallel_channels, + max_channel_workers=max_channel_workers, ) save_plan_cache(cache_file, download_plan, unmatched) print(f"๐Ÿ’พ Download plan cached to: {cache_file}") diff --git a/karaoke_downloader/tracking_manager.py b/karaoke_downloader/tracking_manager.py index eec9181..be3c56f 100644 --- a/karaoke_downloader/tracking_manager.py +++ b/karaoke_downloader/tracking_manager.py @@ -359,9 +359,18 @@ class TrackingManager: corrupted = False # Check if any video IDs look like titles instead of proper YouTube IDs - for video in cached_videos[:10]: # Check first 10 videos + for video in cached_videos[:20]: # Check first 20 videos video_id = video.get("id", "") - if video_id and (len(video_id) > 20 or " " in video_id or "Lyrics" in video_id): + # More comprehensive validation - YouTube IDs should be 11 characters and contain only alphanumeric, hyphens, and underscores + if video_id and ( + len(video_id) != 11 or + not video_id.replace('-', '').replace('_', '').isalnum() or + " " in video_id or + "Lyrics" in video_id or + "KARAOKE" in video_id.upper() or + "Vocal" in video_id or + "Guide" in video_id + ): print(f" โš ๏ธ Detected corrupted video ID in cache: '{video_id}'") corrupted = True break @@ -389,7 +398,7 @@ class TrackingManager: all_videos = [] page = 1 - videos_per_page = 50 # YouTube typically shows 50 videos per page + videos_per_page = 200 # YouTube/yt-dlp supports up to 200 videos per page, reducing API calls and errors while True: print(f" ๐Ÿ“„ Fetching page {page}...") @@ -408,9 +417,26 @@ class TrackingManager: ] try: - result = subprocess.run(cmd, capture_output=True, text=True, check=True, timeout=60) + # Increased timeout to 180 seconds for larger pages (200 videos) + result = subprocess.run(cmd, capture_output=True, text=True, check=True, timeout=180) lines = result.stdout.strip().splitlines() + # Save raw output for debugging (for each page) + raw_output_file = self._get_channel_cache_file(channel_id).parent / f"{channel_id}_raw_output_page{page}.txt" + try: + with open(raw_output_file, 'w', encoding='utf-8') as f: + f.write(f"# Raw yt-dlp output for {channel_id} - Page {page}\n") + f.write(f"# Channel URL: {channel_url}\n") + f.write(f"# Command: {' '.join(cmd)}\n") + f.write(f"# Timestamp: {datetime.now().isoformat()}\n") + f.write(f"# Total lines: {len(lines)}\n") + f.write("#" * 80 + "\n\n") + for i, line in enumerate(lines, 1): + f.write(f"{i:6d}: {line}\n") + print(f" ๐Ÿ’พ Saved raw output to: {raw_output_file.name}") + except Exception as e: + print(f" โš ๏ธ Could not save raw output: {e}") + if not lines: print(f" โœ… No more videos found on page {page}") break @@ -421,17 +447,38 @@ class TrackingManager: invalid_count = 0 for line in lines: - parts = line.split("|") - if len(parts) >= 2: - title, video_id = parts[0].strip(), parts[1].strip() - - # Validate that video_id looks like a proper YouTube ID - if video_id and (len(video_id) <= 20 and " " not in video_id and "Lyrics" not in video_id): - page_videos.append({"title": title, "id": video_id}) - else: - invalid_count += 1 - if invalid_count <= 3: # Show first 3 invalid IDs per page - print(f" โš ๏ธ Invalid ID: '{video_id}' for '{title}'") + if not line.strip(): + continue + + # More robust parsing that handles titles with | characters + # Extract video ID directly from the URL that yt-dlp provides + + # Find the URL and extract video ID from it + url_match = re.search(r'https://www\.youtube\.com/watch\?v=([a-zA-Z0-9_-]{11})', line) + if not url_match: + continue + + # Extract video ID directly from the URL + video_id = url_match.group(1) + + # Extract title (everything before the video ID in the line) + title = line[:line.find(video_id)].rstrip('|').strip() + + # Validate video ID + if video_id and ( + len(video_id) == 11 and + video_id.replace('-', '').replace('_', '').isalnum() and + " " not in video_id and + "Lyrics" not in video_id and + "KARAOKE" not in video_id.upper() and + "Vocal" not in video_id and + "Guide" not in video_id + ): + page_videos.append({"title": title, "id": video_id}) + else: + invalid_count += 1 + if invalid_count <= 3: # Show first 3 invalid IDs per page + print(f" โš ๏ธ Invalid ID: '{video_id}' for '{title[:50]}...'") if invalid_count > 3: print(f" โš ๏ธ ... and {invalid_count - 3} more invalid IDs on this page") @@ -447,8 +494,8 @@ class TrackingManager: page += 1 # Safety check to prevent infinite loops - if page > 200: # Max 200 pages (10,000 videos) - print(f" โš ๏ธ Reached maximum page limit (200 pages), stopping") + if page > 50: # Max 50 pages (10,000 videos with 200 per page) + print(f" โš ๏ธ Reached maximum page limit (50 pages), stopping") break except subprocess.TimeoutExpired: @@ -457,6 +504,9 @@ class TrackingManager: except subprocess.CalledProcessError as e: print(f" โŒ Error fetching page {page}: {e}") break + except KeyboardInterrupt: + print(f" โน๏ธ User interrupted, stopping at page {page}") + break if not all_videos: print(f" โŒ No valid videos found") @@ -520,6 +570,22 @@ class TrackingManager: result = subprocess.run(cmd, capture_output=True, text=True, check=True, timeout=300) lines = result.stdout.strip().splitlines() + # Save raw output for debugging + raw_output_file = self._get_channel_cache_file(channel_id).parent / f"{channel_id}_raw_output.txt" + try: + with open(raw_output_file, 'w', encoding='utf-8') as f: + f.write(f"# Raw yt-dlp output for {channel_id}\n") + f.write(f"# Channel URL: {channel_url}\n") + f.write(f"# Command: {' '.join(cmd)}\n") + f.write(f"# Timestamp: {datetime.now().isoformat()}\n") + f.write(f"# Total lines: {len(lines)}\n") + f.write("#" * 80 + "\n\n") + for i, line in enumerate(lines, 1): + f.write(f"{i:6d}: {line}\n") + print(f" ๐Ÿ’พ Saved raw output to: {raw_output_file.name}") + except Exception as e: + print(f" โš ๏ธ Could not save raw output: {e}") + print(f" ๐Ÿ“„ Raw output lines: {len(lines)}") print(f" ๐Ÿ“Š Download completed successfully!") @@ -540,19 +606,42 @@ class TrackingManager: if i % 1000 == 0 and i > 0: # Progress indicator every 1000 lines print(f" ๐Ÿ“Š Processing line {i}/{len(lines)}... ({i/len(lines)*100:.1f}%)") - parts = line.split("|") - if len(parts) >= 2: - title, video_id = parts[0].strip(), parts[1].strip() - - # Validate that video_id looks like a proper YouTube ID - if video_id and (len(video_id) <= 20 and " " not in video_id and "Lyrics" not in video_id): - videos.append({"title": title, "id": video_id}) - else: - invalid_count += 1 - if invalid_count <= 5: # Only show first 5 invalid IDs - print(f" โš ๏ธ Skipping invalid video ID: '{video_id}' for title: '{title}'") - elif invalid_count == 6: - print(f" โš ๏ธ ... and {len(lines) - i - 1} more invalid IDs") + # More robust parsing that handles titles with | characters + # Extract video ID directly from the URL that yt-dlp provides + + # Find the URL and extract video ID from it + url_match = re.search(r'https://www\.youtube\.com/watch\?v=([a-zA-Z0-9_-]{11})', line) + if not url_match: + invalid_count += 1 + if invalid_count <= 5: + print(f" โš ๏ธ Skipping line with no URL: '{line[:100]}...'") + elif invalid_count == 6: + print(f" โš ๏ธ ... and {len(lines) - i - 1} more invalid lines") + continue + + # Extract video ID directly from the URL + video_id = url_match.group(1) + + # Extract title (everything before the video ID in the line) + title = line[:line.find(video_id)].rstrip('|').strip() + + # Validate video ID + if video_id and ( + len(video_id) == 11 and + video_id.replace('-', '').replace('_', '').isalnum() and + " " not in video_id and + "Lyrics" not in video_id and + "KARAOKE" not in video_id.upper() and + "Vocal" not in video_id and + "Guide" not in video_id + ): + videos.append({"title": title, "id": video_id}) + else: + invalid_count += 1 + if invalid_count <= 5: # Only show first 5 invalid IDs + print(f" โš ๏ธ Skipping invalid video ID: '{video_id}' for title: '{title[:50]}...'") + elif invalid_count == 6: + print(f" โš ๏ธ ... and {len(lines) - i - 1} more invalid IDs") if not videos: print(f" โŒ No valid videos found after parsing")