commit fe576965b78f94d576d211a428d04739090d0f08 Author: mbrucedogs Date: Wed Jul 23 22:02:30 2025 -0500 Signed-off-by: mbrucedogs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7b3d03b --- /dev/null +++ b/.gitignore @@ -0,0 +1,91 @@ +# Downloaded karaoke videos and media files +downloads/ +*.mp4 +*.mp3 +*.webm +*.mkv +*.avi +*.mov +*.wmv +*.flv + +# Log files +logs/ +*.log + +# Tracking and cache files +karaoke_tracking.json +karaoke_tracking.json.backup +songlist_tracking.json +*.cache + +# yt-dlp temporary files +*.info.json +*.meta +*.description +*.thumbnail +*.annotations +*.comments +*.srt +*.vtt + +# Python cache and build files +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual environments +venv/ +env/ +ENV/ +env.bak/ +venv.bak/ + +# IDE and editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store +Thumbs.db + +# Temporary files +*.tmp +*.temp +*.bak +*.backup + +# Configuration files with sensitive data (optional - uncomment if needed) +# config.json + +# Test files +test_*.py +*_test.py +.pytest_cache/ + +# Coverage reports +htmlcov/ +.coverage +.coverage.* +coverage.xml +*.cover +.hypothesis/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..788daf3 --- /dev/null +++ b/README.md @@ -0,0 +1,248 @@ +# ๐ŸŽค Karaoke Playlist Downloader + +A Python-based Windows command-line tool that wraps `yt-dlp.exe` to batch-download karaoke videos from YouTube playlists. + +## โœจ Features + +- ๐Ÿš€ **Fast Batch Downloads**: Download entire YouTube playlists with a single command +- ๐Ÿ“ **Organized Storage**: Each playlist gets its own folder with proper naming +- ๐Ÿ”„ **Smart Skipping**: Avoid re-downloading videos you already have +- ๐Ÿ“ **Comprehensive Logging**: Detailed logs for each playlist download +- ๐ŸŽต **Multiple Formats**: Download as MP4 video or extract MP3 audio +- ๐Ÿ“Š **Progress Tracking**: Real-time progress updates and error handling + +## ๐Ÿ“‹ Requirements + +- **Windows** (tested on Windows 10/11) +- **Python 3.7+** (included in the project) +- **yt-dlp.exe** (included in `downloader/` folder) + +## ๐Ÿš€ Quick Start + +### 1. Download a Single Playlist + +```bash +python download_karaoke.py https://www.youtube.com/playlist?list=YOUR_PLAYLIST_ID +``` + +### 2. Download Multiple Playlists + +Create a `playlists.txt` file with your playlist URLs (one per line): + +```txt +https://www.youtube.com/playlist?list=PLAYLIST1_ID +https://www.youtube.com/playlist?list=PLAYLIST2_ID +https://www.youtube.com/playlist?list=PLAYLIST3_ID +``` + +Then run: + +```bash +python download_karaoke.py --file playlists.txt +``` + +## ๐Ÿ“ Project Structure + +``` +KaroakeVideoDownloader/ +โ”œโ”€โ”€ download_karaoke.py # Main script +โ”œโ”€โ”€ tracking_manager.py # Advanced tracking system +โ”œโ”€โ”€ manage_tracking.py # Tracking management utility +โ”œโ”€โ”€ update_resolution.py # Resolution configuration utility +โ”œโ”€โ”€ config.json # Configuration file +โ”œโ”€โ”€ yt-dlp.exe # Downloader binary (in downloader/) +โ”œโ”€โ”€ playlists.txt # Sample playlist list +โ”œโ”€โ”€ downloads/ # All video output +โ”‚ โ””โ”€โ”€ [playlist_name]/ # Folders per playlist +โ”œโ”€โ”€ logs/ +โ”‚ โ””โ”€โ”€ [playlist_name].log # Download logs +โ””โ”€โ”€ karaoke_tracking.json # Advanced tracking database +``` + +## ๐ŸŽฏ Usage Examples + +### Basic Usage + +```bash +# Download a single playlist (720p MP4) +python download_karaoke.py https://www.youtube.com/playlist?list=PLxxxxxxxx + +# Download with specific resolution +python download_karaoke.py --resolution 1080p https://www.youtube.com/playlist?list=PLxxxxxxxx + +# Download from file +python download_karaoke.py --file playlists.txt + +# Show download status and statistics +python download_karaoke.py --status + +# Generate playlist report +python download_karaoke.py --report PLAYLIST_ID + +# Clean up orphaned tracking entries +python download_karaoke.py --cleanup + +# Show help +python download_karaoke.py --help +``` + +### Tracking Management + +```bash +# Show overall statistics +python manage_tracking.py --stats + +# List all playlists +python manage_tracking.py --list-playlists + +# Show playlist details +python manage_tracking.py --playlist PLAYLIST_ID + +# Show failed songs +python manage_tracking.py --failed + +# Show partial downloads +python manage_tracking.py --partial + +# Clean up orphaned entries +python manage_tracking.py --cleanup + +# Export database backup +python manage_tracking.py --export backup.json +``` + +### Resolution Management + +```bash +# Show current resolution setting +python update_resolution.py --show + +# Update to 1080p resolution +python update_resolution.py --resolution 1080p + +# Update to 720p resolution (default) +python update_resolution.py --resolution 720p +``` + +### Advanced Features + +The tool automatically: +- โœ… Creates organized folder structure +- โœ… Skips already downloaded videos +- โœ… Logs all activities +- โœ… Handles errors gracefully +- โœ… Shows real-time progress +- โœ… Extracts metadata and thumbnails +- โœ… Downloads subtitles when available + +## ๐Ÿ“Š Output Format + +### Video Files +- **Format**: MP4 (720p by default, configurable) +- **Resolution**: 720p (upgradeable to 1080p, 1440p, 2160p) +- **Naming**: Original YouTube video title +- **Location**: `downloads/[playlist_name]/` + +### Additional Files +- **Metadata**: JSON files with video info +- **Thumbnails**: Video thumbnails +- **Subtitles**: English SRT files (if available) +- **Logs**: Detailed download logs + +## ๐Ÿ”ง Configuration + +### Customizing Download Options + +The script uses optimized yt-dlp settings for karaoke videos: + +- **Format**: 720p MP4 by default (configurable via `config.json` or `--resolution`) +- **Resolution Options**: 480p, 720p, 1080p, 1440p, 2160p +- **Audio**: MP3 extraction as fallback +- **Metadata**: Full metadata embedding +- **Subtitles**: English SRT format +- **Error Handling**: Graceful error recovery + +### Resolution Configuration + +You can easily change the video resolution: + +1. **Command Line**: Use `--resolution` flag + ```bash + python download_karaoke.py --resolution 1080p https://www.youtube.com/playlist?list=XYZ + ``` + +2. **Config File**: Edit `config.json` or use the utility + ```bash + python update_resolution.py --resolution 1080p + ``` + +3. **Supported Resolutions**: 480p, 720p, 1080p, 1440p, 2160p + +### File Locations + +- **Downloads**: `downloads/` folder +- **Logs**: `logs/` folder +- **Tracking**: `downloaded_videos.json` + +## ๐Ÿ› Troubleshooting + +### Common Issues + +1. **yt-dlp.exe not found** + - Ensure `yt-dlp.exe` is in the `downloader/` folder + - Download from [yt-dlp releases](https://github.com/yt-dlp/yt-dlp/releases) + +2. **Permission errors** + - Run as administrator if needed + - Check folder write permissions + +3. **Network issues** + - Check internet connection + - Try again later (YouTube rate limiting) + +4. **Playlist not found** + - Verify playlist URL is correct + - Ensure playlist is public + +### Log Files + +Check the log files in `logs/` for detailed error information: + +```bash +# View latest log +type logs\playlist_name.log +``` + +## ๐Ÿ”„ Updating + +### Update yt-dlp + +Download the latest `yt-dlp.exe` from [GitHub releases](https://github.com/yt-dlp/yt-dlp/releases) and replace the file in `downloader/`. + +### Update Script + +The Python script is self-contained and doesn't require additional dependencies. + +## ๐Ÿ“ License + +This project is open source. Feel free to modify and distribute. + +## ๐Ÿค Contributing + +1. Fork the repository +2. Create a feature branch +3. Make your changes +4. Test thoroughly +5. Submit a pull request + +## ๐Ÿ†˜ Support + +For issues and questions: +1. Check the troubleshooting section +2. Review log files for errors +3. Ensure all requirements are met +4. Try with a simple playlist first + +--- + +**Happy Karaoke! ๐ŸŽต** \ No newline at end of file diff --git a/channel_cache.json b/channel_cache.json new file mode 100644 index 0000000..29a53ee --- /dev/null +++ b/channel_cache.json @@ -0,0 +1,29972 @@ +{ + "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": 24, + "last_updated": "2025-07-23T20:17:15.426193" + } +} \ No newline at end of file diff --git a/channels.txt b/channels.txt new file mode 100644 index 0000000..f7ef4a0 --- /dev/null +++ b/channels.txt @@ -0,0 +1,2 @@ +https://www.youtube.com/@SingKingKaraoke/videos +https://www.youtube.com/@karafun/videos \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..3377e0d --- /dev/null +++ b/config.json @@ -0,0 +1,34 @@ +{ + "download_settings": { + "format": "best[height<=720][ext=mp4]/best[height<=720]/best[ext=mp4]/best", + "preferred_resolution": "720p", + "audio_format": "mp3", + "audio_quality": "0", + "subtitle_language": "en", + "subtitle_format": "srt", + "write_metadata": false, + "write_thumbnail": false, + "write_description": false, + "write_annotations": false, + "write_comments": false, + "write_subtitles": false, + "embed_metadata": false, + "add_metadata": false, + "continue_downloads": true, + "no_overwrites": true, + "ignore_errors": true, + "no_warnings": false + }, + "folder_structure": { + "downloads_dir": "downloads", + "logs_dir": "logs", + "tracking_file": "downloaded_videos.json" + }, + "logging": { + "level": "INFO", + "format": "%(asctime)s - %(levelname)s - %(message)s", + "include_console": true, + "include_file": true + }, + "yt_dlp_path": "downloader/yt-dlp.exe" +} \ No newline at end of file diff --git a/docs/PRD.md b/docs/PRD.md new file mode 100644 index 0000000..d1fea3d --- /dev/null +++ b/docs/PRD.md @@ -0,0 +1,74 @@ + +# ๐ŸŽค Karaoke Playlist Downloader โ€“ PRD (v1.0) + +## โœ… Overview +A Python-based Windows command-line tool that wraps `yt-dlp.exe` to batch-download karaoke videos from YouTube playlists. + +--- + +## ๐Ÿ“Œ Goals +- Quickly download full YouTube playlists containing karaoke videos. +- Organize downloads by playlist. +- Avoid re-downloading the same videos. + +--- + +## ๐Ÿง‘โ€๐Ÿ’ป Target Users +- Tech-savvy users, developers, or power users familiar with command-line tools. +- Use case: Karaoke DJs, home karaoke setups, offline playlist prep. + +--- + +## โš™๏ธ Platform & Stack +- **Platform:** Windows +- **Interface:** Command-line tool (CLI) +- **Tech Stack:** Python + yt-dlp.exe + +--- + +## ๐Ÿ“ฅ Input +- Accepts YouTube playlist URLs via command line. +- Optional: Accept a text file containing multiple playlist URLs (one per line). + +### ๐Ÿ”น Example Usage +```bash +python download_karaoke.py https://www.youtube.com/playlist?list=XYZ +python download_karaoke.py --file playlists.txt +``` + +--- + +## ๐Ÿ“ค Output +- Downloads videos as **MP4** using `yt-dlp.exe`. +- Each playlist gets its own folder: `downloads//` +- Filenames are preserved as per the original YouTube video title. + +--- + +## ๐Ÿ› ๏ธ Features +- โœ… Skips already downloaded videos (uses video ID log). +- โœ… Logs each download to `logs/.log`. +- โœ… Shows progress and errors in the terminal. +- โœ… Lightweight and fast to execute. + +--- + +## ๐Ÿ“ Folder Structure (Suggested) +``` +karaoke_downloader/ +โ”œโ”€โ”€ download_karaoke.py # main script +โ”œโ”€โ”€ yt-dlp.exe # downloader binary +โ”œโ”€โ”€ playlists.txt # optional playlist list +โ”œโ”€โ”€ downloads/ # all video output +โ”‚ โ””โ”€โ”€ [playlist_name]/ # folders per playlist +โ””โ”€โ”€ logs/ + โ””โ”€โ”€ [playlist_name].log # download log +``` + +--- + +## ๐Ÿš€ Future Enhancements (Optional) +- [ ] `--audio` flag to extract MP3 only. +- [ ] Smart filename cleanup (`[Karaoke]` tag). +- [ ] Graceful skip of unavailable/private videos. +- [ ] Retry logic for failed downloads. diff --git a/docs/songList.json b/docs/songList.json new file mode 100644 index 0000000..2c7d7c9 --- /dev/null +++ b/docs/songList.json @@ -0,0 +1,4022 @@ +[ + { + "title": "2025 - US Top Songs", + "songs": [ + { + "position": 1, + "artist": "Justin Bieber", + "title": "DAISIES" + }, + { + "position": 2, + "artist": "HUNTR/X, EJAE, AUDREY NUNA, REI AMI, KPop Demon Hunters Cast", + "title": "Golden" + }, + { + "position": 3, + "artist": "Saja Boys, Andrew Choi, Neckwav, Danny Chung, KEVIN WOO, samUIL Lee, KPop Demon Hunters Cast", + "title": "Your Idol" + }, + { + "position": 4, + "artist": "Justin Bieber", + "title": "YUKON" + }, + { + "position": 5, + "artist": "HUNTR/X, EJAE, AUDREY NUNA, REI AMI, KPop Demon Hunters Cast", + "title": "How Itโ€™s Done" + }, + { + "position": 6, + "artist": "sombr", + "title": "back to friends" + }, + { + "position": 7, + "artist": "Justin Bieber", + "title": "GO BABY" + }, + { + "position": 8, + "artist": "Saja Boys, Andrew Choi, Neckwav, Danny Chung, KEVIN WOO, samUIL Lee, KPop Demon Hunters Cast", + "title": "Soda Pop" + }, + { + "position": 9, + "artist": "Drake", + "title": "What Did I Miss?" + }, + { + "position": 10, + "artist": "Justin Bieber", + "title": "ALL I CAN TAKE" + }, + { + "position": 11, + "artist": "Alex Warren", + "title": "Ordinary" + }, + { + "position": 12, + "artist": "Ravyn Lenae", + "title": "Love Me Not" + }, + { + "position": 13, + "artist": "HUNTR/X, EJAE, AUDREY NUNA, REI AMI, KPop Demon Hunters Cast", + "title": "What It Sounds Like" + }, + { + "position": 14, + "artist": "Morgan Wallen, Tate McRae", + "title": "What I Want (feat. Tate McRae)" + }, + { + "position": 15, + "artist": "Justin Bieber", + "title": "THINGS YOU DO" + }, + { + "position": 16, + "artist": "Rumi, Jinu, EJAE, Andrew Choi, KPop Demon Hunters Cast", + "title": "Free" + }, + { + "position": 17, + "artist": "BLACKPINK", + "title": "JUMP" + }, + { + "position": 18, + "artist": "HUNTR/X, EJAE, AUDREY NUNA, REI AMI, KPop Demon Hunters Cast", + "title": "Takedown" + }, + { + "position": 19, + "artist": "Sabrina Carpenter", + "title": "Manchild" + }, + { + "position": 20, + "artist": "Justin Bieber", + "title": "WALKING AWAY" + }, + { + "position": 21, + "artist": "Justin Bieber", + "title": "BUTTERFLIES" + }, + { + "position": 22, + "artist": "Justin Bieber, Gunna", + "title": "WAY IT IS" + }, + { + "position": 23, + "artist": "sombr", + "title": "undressed" + }, + { + "position": 24, + "artist": "Fleetwood Mac", + "title": "Dreams - 2004 Remaster" + }, + { + "position": 25, + "artist": "Morgan Wallen", + "title": "Just In Case" + }, + { + "position": 26, + "artist": "Travis Scott, Don Toliver", + "title": "CHAMPAIN & VACAY" + }, + { + "position": 27, + "artist": "Travis Scott", + "title": "KICK OUT" + }, + { + "position": 28, + "artist": "Morgan Wallen", + "title": "I Got Better" + }, + { + "position": 29, + "artist": "The Goo Goo Dolls", + "title": "Iris" + }, + { + "position": 30, + "artist": "The Marรญas", + "title": "No One Noticed" + }, + { + "position": 31, + "artist": "Chappell Roan", + "title": "Pink Pony Club" + }, + { + "position": 32, + "artist": "Billie Eilish", + "title": "BIRDS OF A FEATHER" + }, + { + "position": 33, + "artist": "Justin Bieber, Dijon", + "title": "DEVOTION" + }, + { + "position": 34, + "artist": "Post Malone, Morgan Wallen", + "title": "I Had Some Help (Feat. Morgan Wallen)" + }, + { + "position": 35, + "artist": "Tate McRae, F1 The Album", + "title": "Just Keep Watching (From F1ยฎ The Movie)" + }, + { + "position": 36, + "artist": "Shaboozey", + "title": "A Bar Song (Tipsy)" + }, + { + "position": 37, + "artist": "Morgan Wallen", + "title": "I'm The Problem" + }, + { + "position": 38, + "artist": "Travis Scott", + "title": "DUMBO" + }, + { + "position": 39, + "artist": "Kendrick Lamar, SZA", + "title": "luther (with sza)" + }, + { + "position": 40, + "artist": "Benson Boone", + "title": "Mystical Magical" + }, + { + "position": 41, + "artist": "Justin Bieber", + "title": "FIRST PLACE" + }, + { + "position": 42, + "artist": "Benson Boone", + "title": "Beautiful Things" + }, + { + "position": 43, + "artist": "Drake", + "title": "NOKIA" + }, + { + "position": 44, + "artist": "Hozier", + "title": "Too Sweet" + }, + { + "position": 45, + "artist": "Gigi Perez", + "title": "Sailor Song" + }, + { + "position": 46, + "artist": "Lady Gaga, Bruno Mars", + "title": "Die With A Smile" + }, + { + "position": 47, + "artist": "Justin Bieber, Sexyy Red", + "title": "SWEET SPOT" + }, + { + "position": 48, + "artist": "Teddy Swims", + "title": "Lose Control" + }, + { + "position": 49, + "artist": "Riley Green", + "title": "Worst Way" + }, + { + "position": 50, + "artist": "Zach Bryan, Kacey Musgraves", + "title": "I Remember Everything (feat. Kacey Musgraves)" + }, + { + "position": 51, + "artist": "Radiohead", + "title": "Creep" + }, + { + "position": 52, + "artist": "wifiskeleton, i wanna be a jack-o-lantern", + "title": "Nope your too late i already died" + }, + { + "position": 53, + "artist": "Coldplay", + "title": "Sparks" + }, + { + "position": 54, + "artist": "The Weeknd, Playboi Carti", + "title": "Timeless (feat Playboi Carti)" + }, + { + "position": 55, + "artist": "Arctic Monkeys", + "title": "505" + }, + { + "position": 56, + "artist": "Morgan Wallen", + "title": "20 Cigarettes" + }, + { + "position": 57, + "artist": "Zach Top", + "title": "I Never Lie" + }, + { + "position": 58, + "artist": "BigXthaPlug, Bailey Zimmerman", + "title": "All The Way (feat. Bailey Zimmerman)" + }, + { + "position": 59, + "artist": "Zach Bryan", + "title": "Something in the Orange" + }, + { + "position": 60, + "artist": "Tyler, The Creator, Kali Uchis", + "title": "See You Again (feat. Kali Uchis)" + }, + { + "position": 61, + "artist": "Black Eyed Peas", + "title": "Rock That Body" + }, + { + "position": 62, + "artist": "Clipse, Kendrick Lamar, Pusha T, Malice", + "title": "Chains & Whips" + }, + { + "position": 63, + "artist": "Jessie Murph", + "title": "Blue Strips" + }, + { + "position": 64, + "artist": "Sabrina Carpenter", + "title": "Espresso" + }, + { + "position": 65, + "artist": "Travis Scott, Sheck Wes, Don Toliver", + "title": "2000 EXCURSION" + }, + { + "position": 66, + "artist": "Morgan Wallen", + "title": "Love Somebody" + }, + { + "position": 67, + "artist": "TWICE", + "title": "TAKEDOWN (JEONGYEON, JIHYO, CHAEYOUNG) (from the Netflix film KPop Demon Hunters)" + }, + { + "position": 68, + "artist": "Lil Tecca", + "title": "Dark Thoughts" + }, + { + "position": 69, + "artist": "Chappell Roan", + "title": "Good Luck, Babe!" + }, + { + "position": 70, + "artist": "Justin Bieber, Cash Cobain, Eddie Benjamin", + "title": "SWAG" + }, + { + "position": 71, + "artist": "Justin Bieber", + "title": "GLORY VOICE MEMO" + }, + { + "position": 72, + "artist": "Disco Lines, Tinashe", + "title": "No Broke Boys" + }, + { + "position": 73, + "artist": "Justin Bieber, Druski", + "title": "SOULFUL" + }, + { + "position": 74, + "artist": "Justin Bieber, Lil B", + "title": "DADZ LOVE" + }, + { + "position": 75, + "artist": "KATSEYE", + "title": "Gabriela" + }, + { + "position": 76, + "artist": "Bad Bunny", + "title": "DtMF" + }, + { + "position": 77, + "artist": "Travis Scott, Playboi Carti, Future", + "title": "WHERE WAS YOU" + }, + { + "position": 78, + "artist": "Kendrick Lamar, SZA", + "title": "All The Stars (with SZA) - From Black Panther: The Album" + }, + { + "position": 79, + "artist": "The Killers", + "title": "Mr. Brightside" + }, + { + "position": 80, + "artist": "Gracie Abrams", + "title": "Thatโ€™s So True" + }, + { + "position": 81, + "artist": "Charli xcx", + "title": "party 4 u" + }, + { + "position": 82, + "artist": "Justin Bieber", + "title": "405" + }, + { + "position": 83, + "artist": "Chris Stapleton", + "title": "You Should Probably Leave" + }, + { + "position": 84, + "artist": "Tate McRae", + "title": "Sports car" + }, + { + "position": 85, + "artist": "Radiohead", + "title": "Let Down" + }, + { + "position": 86, + "artist": "The Neighbourhood", + "title": "Sweater Weather" + }, + { + "position": 87, + "artist": "Luke Combs", + "title": "Where the Wild Things Are" + }, + { + "position": 88, + "artist": "Fleetwood Mac", + "title": "The Chain - 2004 Remaster" + }, + { + "position": 89, + "artist": "Zach Bryan", + "title": "Pink Skies" + }, + { + "position": 90, + "artist": "TWICE", + "title": "Strategy (from the Netflix film KPop Demon Hunters)" + }, + { + "position": 91, + "artist": "Justin Bieber", + "title": "TOO LONG" + }, + { + "position": 92, + "artist": "Fuerza Regida", + "title": "TU SANCHO" + }, + { + "position": 93, + "artist": "Kendrick Lamar, Lefty Gunplay", + "title": "tv off (feat. lefty gunplay)" + }, + { + "position": 94, + "artist": "Morgan Wallen, ERNEST", + "title": "Cowgirls" + }, + { + "position": 95, + "artist": "Waka Flocka Flame, Roscoe Dash, Wale", + "title": "No Hands (feat. Roscoe Dash & Wale)" + }, + { + "position": 96, + "artist": "Leon Thomas", + "title": "MUTT" + }, + { + "position": 97, + "artist": "ROSร‰, Bruno Mars", + "title": "APT." + }, + { + "position": 98, + "artist": "Kendrick Lamar", + "title": "Not Like Us" + }, + { + "position": 99, + "artist": "Koe Wetzel, Jessie Murph", + "title": "High Road (feat. Jessie Murph)" + }, + { + "position": 100, + "artist": "d4vd", + "title": "Feel It" + }, + { + "position": 101, + "artist": "Chris Stapleton", + "title": "Tennessee Whiskey" + }, + { + "position": 102, + "artist": "Travis Scott, GloRilla", + "title": "SHYNE" + }, + { + "position": 103, + "artist": "Sam Barber, Avery Anna", + "title": "Indigo (feat. Avery Anna)" + }, + { + "position": 104, + "artist": "Alex Warren, Jelly Roll", + "title": "Bloodline (with Jelly Roll)" + }, + { + "position": 105, + "artist": "Cage The Elephant", + "title": "Cigarette Daydreams" + }, + { + "position": 106, + "artist": "Billie Eilish", + "title": "WILDFLOWER" + }, + { + "position": 107, + "artist": "Clipse, Tyler, The Creator, Pusha T, Malice", + "title": "P.O.V." + }, + { + "position": 108, + "artist": "Hozier", + "title": "Take Me to Church" + }, + { + "position": 109, + "artist": "Morgan Wallen", + "title": "Last Night" + }, + { + "position": 110, + "artist": "BabyChiefDoit", + "title": "WENT WEST" + }, + { + "position": 111, + "artist": "Don Toliver", + "title": "No Pole" + }, + { + "position": 112, + "artist": "Ella Langley", + "title": "weren't for the wind" + }, + { + "position": 113, + "artist": "Morgan Wallen", + "title": "Whiskey Glasses" + }, + { + "position": 114, + "artist": "Treaty Oak Revival", + "title": "Missed Call" + }, + { + "position": 115, + "artist": "PinkPantheress", + "title": "Illegal" + }, + { + "position": 116, + "artist": "The Red Clay Strays", + "title": "Wondering Why" + }, + { + "position": 117, + "artist": "Clipse, Pusha T, Malice", + "title": "So Be It" + }, + { + "position": 118, + "artist": "Eric Church", + "title": "Springsteen" + }, + { + "position": 119, + "artist": "Tate McRae", + "title": "greedy" + }, + { + "position": 120, + "artist": "Fuerza Regida", + "title": "Marlboro Rojo" + }, + { + "position": 121, + "artist": "Tucker Wetmore", + "title": "Wind Up Missinโ€™ You" + }, + { + "position": 122, + "artist": "Sabrina Carpenter", + "title": "Taste" + }, + { + "position": 123, + "artist": "SoFaygo", + "title": "MM3" + }, + { + "position": 124, + "artist": "Coldplay", + "title": "Yellow" + }, + { + "position": 125, + "artist": "Hudson Westbrook", + "title": "House Again" + }, + { + "position": 126, + "artist": "Megan Moroney", + "title": "6 Months Later" + }, + { + "position": 127, + "artist": "Justin Bieber, Druski", + "title": "STANDING ON BUSINESS" + }, + { + "position": 128, + "artist": "Journey", + "title": "Don't Stop Believin' (2022 Remaster)" + }, + { + "position": 129, + "artist": "Bailey Zimmerman", + "title": "Rock and A Hard Place" + }, + { + "position": 130, + "artist": "Deftones", + "title": "my mind is a mountain" + }, + { + "position": 131, + "artist": "Bad Bunny", + "title": "NUEVAYoL" + }, + { + "position": 132, + "artist": "Morgan Wallen, Post Malone", + "title": "I Ain't Comin' Back (feat. Post Malone)" + }, + { + "position": 133, + "artist": "Justin Bieber, Druski", + "title": "THERAPY SESSION" + }, + { + "position": 134, + "artist": "GIVฤ’ON", + "title": "I CAN TELL" + }, + { + "position": 135, + "artist": "Bad Bunny", + "title": "BAILE INoLVIDABLE" + }, + { + "position": 136, + "artist": "Jimin", + "title": "Who" + }, + { + "position": 137, + "artist": "Lil Wayne, Drake", + "title": "She Will" + }, + { + "position": 138, + "artist": "Neton Vega, Peso Pluma", + "title": "Morena" + }, + { + "position": 139, + "artist": "The Doobie Brothers", + "title": "Listen to the Music" + }, + { + "position": 140, + "artist": "Bryson Tiller", + "title": "Don't" + }, + { + "position": 141, + "artist": "Dasha", + "title": "Austin (Boots Stop Workin')" + }, + { + "position": 142, + "artist": "Zach Bryan", + "title": "River Washed Hair" + }, + { + "position": 143, + "artist": "Morgan Wallen", + "title": "TN" + }, + { + "position": 144, + "artist": "Noah Kahan", + "title": "Stick Season" + }, + { + "position": 145, + "artist": "Lola Young", + "title": "Messy" + }, + { + "position": 146, + "artist": "Chrystal, NOTION", + "title": "The Days - NOTION Remix" + }, + { + "position": 147, + "artist": "Justin Bieber", + "title": "ZUMA HOUSE" + }, + { + "position": 148, + "artist": "Lorde", + "title": "Ribs" + }, + { + "position": 149, + "artist": "Drake", + "title": "Headlines" + }, + { + "position": 150, + "artist": "Coldplay", + "title": "Viva La Vida" + }, + { + "position": 151, + "artist": "Laufey", + "title": "From The Start" + }, + { + "position": 152, + "artist": "Vance Joy", + "title": "Riptide" + }, + { + "position": 153, + "artist": "Jimmy Eat World", + "title": "The Middle" + }, + { + "position": 154, + "artist": "Lil Wayne, Drake, Future", + "title": "Love Me" + }, + { + "position": 155, + "artist": "Morgan Wallen", + "title": "7 Summers" + }, + { + "position": 156, + "artist": "Bad Bunny", + "title": "EoO" + }, + { + "position": 157, + "artist": "Luke Combs", + "title": "Ain't No Love In Oklahoma (From Twisters: The Album)" + }, + { + "position": 158, + "artist": "Linkin Park", + "title": "In the End" + }, + { + "position": 159, + "artist": "KATSEYE", + "title": "Gnarly" + }, + { + "position": 160, + "artist": "Sublime", + "title": "Santeria" + }, + { + "position": 161, + "artist": "Lord Huron", + "title": "The Night We Met" + }, + { + "position": 162, + "artist": "Mac Miller, Empire Of The Sun", + "title": "The Spins" + }, + { + "position": 163, + "artist": "Los Dareyes De La Sierra", + "title": "Frecuencia" + }, + { + "position": 164, + "artist": "Sabrina Carpenter", + "title": "Please Please Please" + }, + { + "position": 165, + "artist": "Zach Bryan", + "title": "Heading South" + }, + { + "position": 166, + "artist": "Ty Myers", + "title": "Thought It Was Love" + }, + { + "position": 167, + "artist": "Conan Gray", + "title": "Vodka Cranberry" + }, + { + "position": 168, + "artist": "Wiz Khalifa, Empire Of The Sun", + "title": "The Thrill" + }, + { + "position": 169, + "artist": "Travis Scott, SoFaygo", + "title": "CONTEST" + }, + { + "position": 170, + "artist": "Clipse, Pusha T, Malice", + "title": "Ace Trumpets" + }, + { + "position": 171, + "artist": "Brooks & Dunn", + "title": "Neon Moon" + }, + { + "position": 172, + "artist": "Morgan Wallen", + "title": "Chasin' You" + }, + { + "position": 173, + "artist": "Benson Boone", + "title": "Slow It Down" + }, + { + "position": 174, + "artist": "Don Toliver, Sheck Wes", + "title": "VELOUR" + }, + { + "position": 175, + "artist": "Luke Combs", + "title": "When It Rains It Pours" + }, + { + "position": 176, + "artist": "The Kid LAROI", + "title": "NIGHTS LIKE THIS" + }, + { + "position": 177, + "artist": "TOTO", + "title": "Africa" + }, + { + "position": 178, + "artist": "Frank Ocean", + "title": "Pink + White" + }, + { + "position": 179, + "artist": "Myles Smith", + "title": "Stargazing" + }, + { + "position": 180, + "artist": "Daryl Hall & John Oates", + "title": "Rich Girl" + }, + { + "position": 181, + "artist": "Creed", + "title": "One Last Breath" + }, + { + "position": 182, + "artist": "Taylor Swift", + "title": "Cruel Summer" + }, + { + "position": 183, + "artist": "Three Days Grace", + "title": "I Hate Everything About You" + }, + { + "position": 184, + "artist": "Red Hot Chili Peppers", + "title": "Scar Tissue" + }, + { + "position": 185, + "artist": "Alemรกn, Neton Vega", + "title": "Te Querรญa Ver" + }, + { + "position": 186, + "artist": "Darius Rucker", + "title": "Wagon Wheel" + }, + { + "position": 187, + "artist": "Kesha", + "title": "TiK ToK" + }, + { + "position": 188, + "artist": "The Weeknd, JENNIE, Lily-Rose Depp", + "title": "One Of The Girls (with JENNIE, Lily Rose Depp)" + }, + { + "position": 189, + "artist": "Chappell Roan", + "title": "HOT TO GO!" + }, + { + "position": 190, + "artist": "Steve Lacy", + "title": "Bad Habit" + }, + { + "position": 191, + "artist": "Morgan Wallen", + "title": "Superman" + }, + { + "position": 192, + "artist": "Don Toliver", + "title": "NO COMMENTS" + }, + { + "position": 193, + "artist": "Earth, Wind & Fire", + "title": "September" + }, + { + "position": 194, + "artist": "Don Toliver, Doja Cat, F1 The Album", + "title": "Lose My Mind (feat. Doja Cat) [From F1ยฎ The Movie]" + }, + { + "position": 195, + "artist": "Imogen Heap", + "title": "Headlock" + }, + { + "position": 196, + "artist": "d4vd", + "title": "Romantic Homicide" + }, + { + "position": 197, + "artist": "Black Sabbath", + "title": "Paranoid - 2012 - Remaster" + }, + { + "position": 198, + "artist": "The Chainsmokers, Coldplay", + "title": "Something Just Like This" + }, + { + "position": 199, + "artist": "Lil Tecca", + "title": "OWA OWA" + }, + { + "position": 200, + "artist": "Old Dominion", + "title": "One Man Band" + } + ] + }, + { + "title": "2024 - US Top Songs", + "songs": [ + { + "position": 1, + "artist": "Sabrina Carpenter", + "title": "Taste" + }, + { + "position": 2, + "artist": "Lady Gaga, Bruno Mars", + "title": "Die With A Smile" + }, + { + "position": 3, + "artist": "Sabrina Carpenter", + "title": "Please Please Please" + }, + { + "position": 4, + "artist": "Jimin", + "title": "Who" + }, + { + "position": 5, + "artist": "Sabrina Carpenter", + "title": "Espresso" + }, + { + "position": 6, + "artist": "Chappell Roan", + "title": "Good Luck, Babe!" + }, + { + "position": 7, + "artist": "Billie Eilish", + "title": "BIRDS OF A FEATHER" + }, + { + "position": 8, + "artist": "Sabrina Carpenter", + "title": "Bed Chem" + }, + { + "position": 9, + "artist": "Post Malone, Morgan Wallen", + "title": "I Had Some Help (Feat. Morgan Wallen)" + }, + { + "position": 10, + "artist": "Shaboozey", + "title": "A Bar Song (Tipsy)" + }, + { + "position": 11, + "artist": "Sabrina Carpenter", + "title": "Good Graces" + }, + { + "position": 12, + "artist": "Chappell Roan", + "title": "HOT TO GO!" + }, + { + "position": 13, + "artist": "Kendrick Lamar", + "title": "Not Like Us" + }, + { + "position": 14, + "artist": "Tommy Richman", + "title": "MILLION DOLLAR BABY" + }, + { + "position": 15, + "artist": "Sabrina Carpenter", + "title": "Juno" + }, + { + "position": 16, + "artist": "Chappell Roan", + "title": "Pink Pony Club" + }, + { + "position": 17, + "artist": "Sabrina Carpenter", + "title": "Sharpest Tool" + }, + { + "position": 18, + "artist": "Hozier", + "title": "Too Sweet" + }, + { + "position": 19, + "artist": "Sabrina Carpenter", + "title": "Coincidence" + }, + { + "position": 20, + "artist": "Zach Bryan, Kacey Musgraves", + "title": "I Remember Everything (feat. Kacey Musgraves)" + }, + { + "position": 21, + "artist": "Benson Boone", + "title": "Beautiful Things" + }, + { + "position": 22, + "artist": "Teddy Swims", + "title": "Lose Control" + }, + { + "position": 23, + "artist": "Zach Bryan", + "title": "Pink Skies" + }, + { + "position": 24, + "artist": "Hanumankind, Kalmi", + "title": "Big Dawgs" + }, + { + "position": 25, + "artist": "Noah Kahan", + "title": "Stick Season" + }, + { + "position": 26, + "artist": "Luke Combs", + "title": "Ain't No Love In Oklahoma (From Twisters: The Album)" + }, + { + "position": 27, + "artist": "Chappell Roan", + "title": "Red Wine Supernova" + }, + { + "position": 28, + "artist": "Sabrina Carpenter", + "title": "Slim Pickins" + }, + { + "position": 29, + "artist": "The Kid LAROI", + "title": "NIGHTS LIKE THIS" + }, + { + "position": 30, + "artist": "Charli xcx, Billie Eilish", + "title": "Guess featuring billie eilish" + }, + { + "position": 31, + "artist": "Zach Bryan", + "title": "Something in the Orange" + }, + { + "position": 32, + "artist": "Zach Bryan", + "title": "28" + }, + { + "position": 33, + "artist": "Gigi Perez", + "title": "Sailor Song" + }, + { + "position": 34, + "artist": "Morgan Wallen, ERNEST", + "title": "Cowgirls" + }, + { + "position": 35, + "artist": "Dasha", + "title": "Austin (Boots Stop Workin')" + }, + { + "position": 36, + "artist": "Morgan Wallen", + "title": "Lies Lies Lies" + }, + { + "position": 37, + "artist": "Gracie Abrams", + "title": "I Love You, I'm Sorry" + }, + { + "position": 38, + "artist": "Charli xcx", + "title": "Apple" + }, + { + "position": 39, + "artist": "Tyler, The Creator, Kali Uchis", + "title": "See You Again (feat. Kali Uchis)" + }, + { + "position": 40, + "artist": "Sabrina Carpenter", + "title": "Donโ€™t Smile" + }, + { + "position": 41, + "artist": "Billie Eilish", + "title": "WILDFLOWER" + }, + { + "position": 42, + "artist": "Sabrina Carpenter", + "title": "Dumb & Poetic" + }, + { + "position": 43, + "artist": "Benson Boone", + "title": "Slow It Down" + }, + { + "position": 44, + "artist": "Morgan Wallen", + "title": "Last Night" + }, + { + "position": 45, + "artist": "Zach Bryan", + "title": "Heading South" + }, + { + "position": 46, + "artist": "The Neighbourhood", + "title": "Sweater Weather" + }, + { + "position": 47, + "artist": "Chappell Roan", + "title": "Casual" + }, + { + "position": 48, + "artist": "KAROL G", + "title": "Si Antes Te Hubiera Conocido" + }, + { + "position": 49, + "artist": "Future, Metro Boomin, Kendrick Lamar", + "title": "Like That" + }, + { + "position": 50, + "artist": "Zach Bryan", + "title": "Sun to Me" + }, + { + "position": 51, + "artist": "Gunna", + "title": "one of wun" + }, + { + "position": 52, + "artist": "Frank Ocean", + "title": "Pink + White" + }, + { + "position": 53, + "artist": "Sabrina Carpenter", + "title": "Lie To Girls" + }, + { + "position": 54, + "artist": "Post Malone, Luke Combs", + "title": "Guy For That (Feat. Luke Combs)" + }, + { + "position": 55, + "artist": "Michael Marcagi", + "title": "Scared To Start" + }, + { + "position": 56, + "artist": "Charli xcx", + "title": "360" + }, + { + "position": 57, + "artist": "Morgan Wallen", + "title": "Thinkinโ€™ Bout Me" + }, + { + "position": 58, + "artist": "Myles Smith", + "title": "Stargazing" + }, + { + "position": 59, + "artist": "Jordan Adetunji", + "title": "KEHLANI" + }, + { + "position": 60, + "artist": "Taylor Swift", + "title": "Cruel Summer" + }, + { + "position": 61, + "artist": "Taylor Swift", + "title": "I Can Do It With a Broken Heart" + }, + { + "position": 62, + "artist": "Daryl Hall & John Oates", + "title": "Rich Girl" + }, + { + "position": 63, + "artist": "Djo", + "title": "End of Beginning" + }, + { + "position": 64, + "artist": "Billie Eilish", + "title": "LUNCH" + }, + { + "position": 65, + "artist": "Morgan Wallen", + "title": "You Proof" + }, + { + "position": 66, + "artist": "BigXthaPlug", + "title": "Mmhmm" + }, + { + "position": 67, + "artist": "Ariana Grande", + "title": "we can't be friends (wait for your love)" + }, + { + "position": 68, + "artist": "Chappell Roan", + "title": "Femininomenon" + }, + { + "position": 69, + "artist": "SZA", + "title": "Saturn" + }, + { + "position": 70, + "artist": "PinkPantheress", + "title": "Pain" + }, + { + "position": 71, + "artist": "Clairo", + "title": "Juna" + }, + { + "position": 72, + "artist": "Tucker Wetmore", + "title": "Wind Up Missinโ€™ You" + }, + { + "position": 73, + "artist": "Peso Pluma, Neton Vega", + "title": "LA PATRULLA" + }, + { + "position": 74, + "artist": "Taylor Swift, Post Malone", + "title": "Fortnight (feat. Post Malone)" + }, + { + "position": 75, + "artist": "Zach Bryan", + "title": "Oklahoma Smokeshow" + }, + { + "position": 76, + "artist": "*NSYNC", + "title": "Bye Bye Bye" + }, + { + "position": 77, + "artist": "Surf Curse", + "title": "Disco" + }, + { + "position": 78, + "artist": "Luke Combs", + "title": "When It Rains It Pours" + }, + { + "position": 79, + "artist": "Arctic Monkeys", + "title": "505" + }, + { + "position": 80, + "artist": "Mitski", + "title": "My Love Mine All Mine" + }, + { + "position": 81, + "artist": "Travis Scott, Playboi Carti", + "title": "FE!N (feat. Playboi Carti)" + }, + { + "position": 82, + "artist": "Fleetwood Mac", + "title": "Dreams - 2004 Remaster" + }, + { + "position": 83, + "artist": "LE SSERAFIM", + "title": "CRAZY" + }, + { + "position": 84, + "artist": "TV Girl", + "title": "Lovers Rock" + }, + { + "position": 85, + "artist": "Sabrina Carpenter", + "title": "Nonsense" + }, + { + "position": 86, + "artist": "Van Morrison", + "title": "Brown Eyed Girl" + }, + { + "position": 87, + "artist": "Richy Mitch & The Coal Miners", + "title": "Evergreen" + }, + { + "position": 88, + "artist": "Addison Rae", + "title": "Diet Pepsi" + }, + { + "position": 89, + "artist": "Miguel", + "title": "Sure Thing" + }, + { + "position": 90, + "artist": "Sabrina Carpenter", + "title": "Feather" + }, + { + "position": 91, + "artist": "Future, Metro Boomin, Travis Scott, Playboi Carti", + "title": "Type Shit" + }, + { + "position": 92, + "artist": "Diplo, Morgan Wallen", + "title": "Heartless (feat. Morgan Wallen)" + }, + { + "position": 93, + "artist": "Luke Combs", + "title": "She Got the Best of Me" + }, + { + "position": 94, + "artist": "Gracie Abrams", + "title": "Close To You" + }, + { + "position": 95, + "artist": "Drake, Young Thug, 21 Savage", + "title": "It's Up (feat. Young Thug & 21 Savage)" + }, + { + "position": 96, + "artist": "Hotel Ugly", + "title": "Shut up My Moms Calling" + }, + { + "position": 97, + "artist": "Drake", + "title": "No Face" + }, + { + "position": 98, + "artist": "GloRilla", + "title": "Yeah Glo!" + }, + { + "position": 99, + "artist": "Chappell Roan", + "title": "My Kink Is Karma" + }, + { + "position": 100, + "artist": "SZA", + "title": "Kill Bill" + }, + { + "position": 101, + "artist": "Billie Eilish", + "title": "CHIHIRO" + }, + { + "position": 102, + "artist": "Offset, Metro Boomin", + "title": "Ric Flair Drip (with Metro Boomin)" + }, + { + "position": 103, + "artist": "Chris Stapleton", + "title": "You Should Probably Leave" + }, + { + "position": 104, + "artist": "Journey", + "title": "Don't Stop Believin' (2022 Remaster)" + }, + { + "position": 105, + "artist": "Hozier", + "title": "Take Me to Church" + }, + { + "position": 106, + "artist": "The Killers", + "title": "Mr. Brightside" + }, + { + "position": 107, + "artist": "GloRilla", + "title": "TGIF" + }, + { + "position": 108, + "artist": "Fuerza Regida", + "title": "NEL" + }, + { + "position": 109, + "artist": "The Marรญas", + "title": "No One Noticed" + }, + { + "position": 110, + "artist": "Artemas", + "title": "i like the way you kiss me" + }, + { + "position": 111, + "artist": "The Goo Goo Dolls", + "title": "Iris" + }, + { + "position": 112, + "artist": "Megan Thee Stallion, Yuki Chiba", + "title": "Mamushi (feat. Yuki Chiba)" + }, + { + "position": 113, + "artist": "TV Girl", + "title": "Not Allowed" + }, + { + "position": 114, + "artist": "Mac Miller, Empire Of The Sun", + "title": "The Spins" + }, + { + "position": 115, + "artist": "Bryson Tiller", + "title": "Don't" + }, + { + "position": 116, + "artist": "Post Malone, Blake Shelton", + "title": "Pour Me A Drink (Feat. Blake Shelton)" + }, + { + "position": 117, + "artist": "Luis R Conriquez, Neton Vega", + "title": "Si No Quieres No" + }, + { + "position": 118, + "artist": "Earth, Wind & Fire", + "title": "September" + }, + { + "position": 119, + "artist": "Zach Bryan", + "title": "Burn, Burn, Burn" + }, + { + "position": 120, + "artist": "Josh Meloy", + "title": "Porch Light" + }, + { + "position": 121, + "artist": "Frank Ocean", + "title": "Thinkin Bout You" + }, + { + "position": 122, + "artist": "Koe Wetzel, Jessie Murph", + "title": "High Road (feat. Jessie Murph)" + }, + { + "position": 123, + "artist": "Morgan Wallen", + "title": "Wasted On You" + }, + { + "position": 124, + "artist": "Cage The Elephant", + "title": "Cigarette Daydreams" + }, + { + "position": 125, + "artist": "Eminem", + "title": "Houdini" + }, + { + "position": 126, + "artist": "Zach Bryan", + "title": "Nine Ball" + }, + { + "position": 127, + "artist": "Post Malone, Tim McGraw", + "title": "Wrong Ones (Feat. Tim McGraw)" + }, + { + "position": 128, + "artist": "Steve Lacy", + "title": "Dark Red" + }, + { + "position": 129, + "artist": "Gunna", + "title": "fukumean" + }, + { + "position": 130, + "artist": "Zach Bryan, The War And Treaty", + "title": "Hey Driver (feat. The War and Treaty)" + }, + { + "position": 131, + "artist": "The Cranberries", + "title": "Linger" + }, + { + "position": 132, + "artist": "Luke Combs", + "title": "Where the Wild Things Are" + }, + { + "position": 133, + "artist": "Luke Combs", + "title": "Beautiful Crazy" + }, + { + "position": 134, + "artist": "Drake", + "title": "Circadian Rhythm" + }, + { + "position": 135, + "artist": "The Weeknd, JENNIE, Lily-Rose Depp", + "title": "One Of The Girls (with JENNIE, Lily Rose Depp)" + }, + { + "position": 136, + "artist": "A$AP Rocky", + "title": "Tailor Swif" + }, + { + "position": 137, + "artist": "Dominic Fike", + "title": "misses" + }, + { + "position": 138, + "artist": "Kendrick Lamar, SZA", + "title": "All The Stars (with SZA) - From Black Panther: The Album" + }, + { + "position": 139, + "artist": "Creedence Clearwater Revival", + "title": "Fortunate Son" + }, + { + "position": 140, + "artist": "Post Malone, Swae Lee", + "title": "Sunflower - Spider-Man: Into the Spider-Verse" + }, + { + "position": 141, + "artist": "SZA", + "title": "Good Days" + }, + { + "position": 142, + "artist": "Marshmello, Kane Brown", + "title": "Miles On It" + }, + { + "position": 143, + "artist": "AC/DC", + "title": "You Shook Me All Night Long" + }, + { + "position": 144, + "artist": "Arctic Monkeys", + "title": "I Wanna Be Yours" + }, + { + "position": 145, + "artist": "Lil Durk, Morgan Wallen", + "title": "Broadway Girls (feat. Morgan Wallen)" + }, + { + "position": 146, + "artist": "FloyyMenor, Cris MJ", + "title": "Gata Only" + }, + { + "position": 147, + "artist": "Ella Langley, Riley Green", + "title": "you look like you love me (feat. Riley Green)" + }, + { + "position": 148, + "artist": "Taylor Swift", + "title": "august" + }, + { + "position": 149, + "artist": "J. Cole", + "title": "No Role Modelz" + }, + { + "position": 150, + "artist": "Tommy Richman", + "title": "DEVIL IS A LIE" + }, + { + "position": 151, + "artist": "SZA", + "title": "Broken Clocks" + }, + { + "position": 152, + "artist": "Morgan Wallen", + "title": "Whiskey Glasses" + }, + { + "position": 153, + "artist": "Chris Stapleton", + "title": "Tennessee Whiskey" + }, + { + "position": 154, + "artist": "d4vd", + "title": "Romantic Homicide" + }, + { + "position": 155, + "artist": "The Kid LAROI", + "title": "BABY I'M BACK" + }, + { + "position": 156, + "artist": "Lord Huron", + "title": "The Night We Met" + }, + { + "position": 157, + "artist": "Cigarettes After Sex", + "title": "Apocalypse" + }, + { + "position": 158, + "artist": "Zach Bryan", + "title": "Motorcycle Drive By" + }, + { + "position": 159, + "artist": "Hozier", + "title": "Work Song" + }, + { + "position": 160, + "artist": "SZA", + "title": "Snooze" + }, + { + "position": 161, + "artist": "TV Girl", + "title": "Cigarettes out the Window" + }, + { + "position": 162, + "artist": "Bryson Tiller", + "title": "Whatever She Wants" + }, + { + "position": 163, + "artist": "Frank Ocean", + "title": "Ivy" + }, + { + "position": 164, + "artist": "Tate McRae", + "title": "greedy" + }, + { + "position": 165, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1" + }, + { + "position": 166, + "artist": "Radiohead", + "title": "Creep" + }, + { + "position": 167, + "artist": "Kanye West", + "title": "Heartless" + }, + { + "position": 168, + "artist": "Mark Ambor", + "title": "Belong Together" + }, + { + "position": 169, + "artist": "Steve Lacy", + "title": "Bad Habit" + }, + { + "position": 170, + "artist": "Future, Drake, Tems", + "title": "WAIT FOR U (feat. Drake & Tems)" + }, + { + "position": 171, + "artist": "Tate McRae", + "title": "exes" + }, + { + "position": 172, + "artist": "Laufey", + "title": "From The Start" + }, + { + "position": 173, + "artist": "The Walters", + "title": "I Love You So" + }, + { + "position": 174, + "artist": "Tyler Childers", + "title": "All Your'n" + }, + { + "position": 175, + "artist": "Jessie Murph, Jelly Roll", + "title": "Wild Ones (feat. Jelly Roll)" + }, + { + "position": 176, + "artist": "Noah Kahan", + "title": "Youโ€™re Gonna Go Far" + }, + { + "position": 177, + "artist": "Luke Combs", + "title": "Beer Never Broke My Heart" + }, + { + "position": 178, + "artist": "Coldplay", + "title": "Yellow" + }, + { + "position": 179, + "artist": "Noah Kahan, Post Malone", + "title": "Dial Drunk (with Post Malone)" + }, + { + "position": 180, + "artist": "Kendrick Lamar, Jay Rock", + "title": "Money Trees" + }, + { + "position": 181, + "artist": "Luke Combs", + "title": "The Kind of Love We Make" + }, + { + "position": 182, + "artist": "The Red Clay Strays", + "title": "Wondering Why" + }, + { + "position": 183, + "artist": "Kendrick Lamar", + "title": "HUMBLE." + }, + { + "position": 184, + "artist": "Post Malone, Jelly Roll", + "title": "Losers (Feat. Jelly Roll)" + }, + { + "position": 185, + "artist": "XXXTENTACION", + "title": "Revenge" + }, + { + "position": 186, + "artist": "Natasha Bedingfield", + "title": "Unwritten" + }, + { + "position": 187, + "artist": "Foo Fighters", + "title": "Everlong" + }, + { + "position": 188, + "artist": "Tory Lanez", + "title": "The Color Violet" + }, + { + "position": 189, + "artist": "Zach Bryan, The Lumineers", + "title": "Spotless (feat. The Lumineers)" + }, + { + "position": 190, + "artist": "Sleepy Hallow", + "title": "2055" + }, + { + "position": 191, + "artist": "USHER, Lil Jon, Ludacris", + "title": "Yeah! (feat. Lil Jon & Ludacris)" + }, + { + "position": 192, + "artist": "Peso Pluma, Tito Double P", + "title": "LOS CUADROS" + }, + { + "position": 193, + "artist": "Creedence Clearwater Revival", + "title": "Have You Ever Seen The Rain" + }, + { + "position": 194, + "artist": "Tyler Childers", + "title": "Feathered Indians" + }, + { + "position": 195, + "artist": "Steve Lacy", + "title": "Some" + }, + { + "position": 196, + "artist": "Nickelback", + "title": "How You Remind Me" + }, + { + "position": 197, + "artist": "Marvin Gaye, Tammi Terrell", + "title": "Ain't No Mountain High Enough" + }, + { + "position": 198, + "artist": "Morgan Wallen", + "title": "Chasin' You" + }, + { + "position": 199, + "artist": "The Outfield", + "title": "Your Love" + }, + { + "position": 200, + "artist": "Frank Ocean", + "title": "White Ferrari" + } + ] + }, + { + "title": "2023 - US Top Songs", + "songs": [ + { + "position": 1, + "artist": "Doja Cat", + "title": "Paint The Town Red" + }, + { + "position": 2, + "artist": "Zach Bryan, Kacey Musgraves", + "title": "I Remember Everything (feat. Kacey Musgraves)" + }, + { + "position": 3, + "artist": "Gunna", + "title": "fukumean" + }, + { + "position": 4, + "artist": "Taylor Swift", + "title": "Cruel Summer" + }, + { + "position": 5, + "artist": "Morgan Wallen", + "title": "Last Night" + }, + { + "position": 6, + "artist": "Oliver Anthony Music", + "title": "Rich Men North of Richmond" + }, + { + "position": 7, + "artist": "Zach Bryan, The War And Treaty", + "title": "Hey Driver (feat. The War and Treaty)" + }, + { + "position": 8, + "artist": "Travis Scott", + "title": "I KNOW ?" + }, + { + "position": 9, + "artist": "Olivia Rodrigo", + "title": "vampire" + }, + { + "position": 10, + "artist": "Travis Scott, Drake", + "title": "MELTDOWN (feat. Drake)" + }, + { + "position": 11, + "artist": "Zach Bryan", + "title": "Something in the Orange" + }, + { + "position": 12, + "artist": "Nicki Minaj, Ice Spice, Aqua", + "title": "Barbie World (with Aqua) [From Barbie The Album]" + }, + { + "position": 13, + "artist": "Luke Combs", + "title": "Fast Car" + }, + { + "position": 14, + "artist": "Olivia Rodrigo", + "title": "bad idea right?" + }, + { + "position": 15, + "artist": "Zach Bryan", + "title": "Tourniquet" + }, + { + "position": 16, + "artist": "KAROL G, Peso Pluma", + "title": "QLONA" + }, + { + "position": 17, + "artist": "Billie Eilish", + "title": "What Was I Made For? [From The Motion Picture Barbie]" + }, + { + "position": 18, + "artist": "Dua Lipa", + "title": "Dance The Night - From Barbie The Album" + }, + { + "position": 19, + "artist": "Zach Bryan, The Lumineers", + "title": "Spotless (feat. The Lumineers)" + }, + { + "position": 20, + "artist": "Jung Kook, Latto", + "title": "Seven (feat. Latto)" + }, + { + "position": 21, + "artist": "SZA", + "title": "Kill Bill" + }, + { + "position": 22, + "artist": "Zach Bryan", + "title": "East Side of Sorrow" + }, + { + "position": 23, + "artist": "SZA", + "title": "Snooze" + }, + { + "position": 24, + "artist": "Tyler, The Creator, Kali Uchis", + "title": "See You Again (feat. Kali Uchis)" + }, + { + "position": 25, + "artist": "Miley Cyrus", + "title": "Used To Be Young" + }, + { + "position": 26, + "artist": "Eslabon Armado, Peso Pluma", + "title": "Ella Baila Sola" + }, + { + "position": 27, + "artist": "Morgan Wallen", + "title": "You Proof" + }, + { + "position": 28, + "artist": "Travis Scott, Playboi Carti", + "title": "FE!N (feat. Playboi Carti)" + }, + { + "position": 29, + "artist": "Travis Scott, SZA, Future", + "title": "TELEKINESIS (feat. SZA & Future)" + }, + { + "position": 30, + "artist": "Bailey Zimmerman", + "title": "Religiously" + }, + { + "position": 31, + "artist": "Peso Pluma, Gabito Ballesteros, Junior H", + "title": "LADY GAGA" + }, + { + "position": 32, + "artist": "Doja Cat", + "title": "Demons" + }, + { + "position": 33, + "artist": "J. Cole", + "title": "No Role Modelz" + }, + { + "position": 34, + "artist": "Zach Bryan", + "title": "Fear and Friday's" + }, + { + "position": 35, + "artist": "Morgan Wallen", + "title": "Wasted On You" + }, + { + "position": 36, + "artist": "Zach Bryan", + "title": "Heading South" + }, + { + "position": 37, + "artist": "Nicki Minaj", + "title": "Last Time I Saw You" + }, + { + "position": 38, + "artist": "Taylor Swift", + "title": "august" + }, + { + "position": 39, + "artist": "Drake, 21 Savage", + "title": "Jimmy Cooks (feat. 21 Savage)" + }, + { + "position": 40, + "artist": "Myke Towers", + "title": "LALA" + }, + { + "position": 41, + "artist": "Zach Bryan", + "title": "Ticking" + }, + { + "position": 42, + "artist": "Frank Ocean", + "title": "Pink + White" + }, + { + "position": 43, + "artist": "Taylor Swift", + "title": "Anti-Hero" + }, + { + "position": 44, + "artist": "Morgan Wallen", + "title": "Thinkinโ€™ Bout Me" + }, + { + "position": 45, + "artist": "Kali Uchis", + "title": "Moonlight" + }, + { + "position": 46, + "artist": "Zach Bryan", + "title": "Overtime" + }, + { + "position": 47, + "artist": "Yng Lvcas, Peso Pluma", + "title": "La Bebe - Remix" + }, + { + "position": 48, + "artist": "Selena Gomez", + "title": "Single Soon" + }, + { + "position": 49, + "artist": "Jimmy Buffett", + "title": "Margaritaville" + }, + { + "position": 50, + "artist": "Zach Bryan", + "title": "Summertime's Close" + }, + { + "position": 51, + "artist": "Zach Bryan", + "title": "Sun to Me" + }, + { + "position": 52, + "artist": "PinkPantheress, Ice Spice", + "title": "Boy's a liar Pt. 2" + }, + { + "position": 53, + "artist": "NewJeans", + "title": "Super Shy" + }, + { + "position": 54, + "artist": "Drake", + "title": "Search & Rescue" + }, + { + "position": 55, + "artist": "Taylor Swift", + "title": "Style" + }, + { + "position": 56, + "artist": "Zach Bryan", + "title": "Smaller Acts" + }, + { + "position": 57, + "artist": "Taylor Swift", + "title": "Karma" + }, + { + "position": 58, + "artist": "The Neighbourhood", + "title": "Sweater Weather" + }, + { + "position": 59, + "artist": "Harry Styles", + "title": "As It Was" + }, + { + "position": 60, + "artist": "Zach Bryan, Maggie Rogers", + "title": "Dawns (feat. Maggie Rogers)" + }, + { + "position": 61, + "artist": "Laufey", + "title": "From The Start" + }, + { + "position": 62, + "artist": "Bad Bunny", + "title": "WHERE SHE GOES" + }, + { + "position": 63, + "artist": "David Kushner", + "title": "Daylight" + }, + { + "position": 64, + "artist": "Fuerza Regida", + "title": "SABOR FRESA" + }, + { + "position": 65, + "artist": "Kendrick Lamar, Jay Rock", + "title": "Money Trees" + }, + { + "position": 66, + "artist": "Zach Bryan, Sierra Ferrell", + "title": "Holy Roller (feat. Sierra Ferrell)" + }, + { + "position": 67, + "artist": "KAROL G", + "title": "MI EX TENรA RAZร“N" + }, + { + "position": 68, + "artist": "The Weeknd", + "title": "Die For You" + }, + { + "position": 69, + "artist": "Ice Spice", + "title": "Deli" + }, + { + "position": 70, + "artist": "Noah Kahan, Post Malone", + "title": "Dial Drunk (with Post Malone)" + }, + { + "position": 71, + "artist": "Noah Kahan", + "title": "Stick Season" + }, + { + "position": 72, + "artist": "Miley Cyrus", + "title": "Flowers" + }, + { + "position": 73, + "artist": "Taylor Swift", + "title": "Blank Space" + }, + { + "position": 74, + "artist": "Metro Boomin, The Weeknd, 21 Savage", + "title": "Creepin' (with The Weeknd & 21 Savage)" + }, + { + "position": 75, + "artist": "Zach Bryan", + "title": "El Dorado" + }, + { + "position": 76, + "artist": "Hotel Ugly", + "title": "Shut up My Moms Calling" + }, + { + "position": 77, + "artist": "Kanye West", + "title": "Heartless" + }, + { + "position": 78, + "artist": "Miguel", + "title": "Sure Thing" + }, + { + "position": 79, + "artist": "Lil Durk, J. Cole", + "title": "All My Life (feat. J. Cole)" + }, + { + "position": 80, + "artist": "Grupo Frontera, Bad Bunny", + "title": "un x100to" + }, + { + "position": 81, + "artist": "Taylor Swift", + "title": "cardigan" + }, + { + "position": 82, + "artist": "Steve Lacy", + "title": "Dark Red" + }, + { + "position": 83, + "artist": "Post Malone, Swae Lee", + "title": "Sunflower - Spider-Man: Into the Spider-Verse" + }, + { + "position": 84, + "artist": "Junior H, Peso Pluma", + "title": "El Azul" + }, + { + "position": 85, + "artist": "d4vd", + "title": "Romantic Homicide" + }, + { + "position": 86, + "artist": "Peso Pluma, Grupo Frontera", + "title": "TULUM" + }, + { + "position": 87, + "artist": "Drake, 21 Savage", + "title": "Rich Flex" + }, + { + "position": 88, + "artist": "Brent Faiyaz", + "title": "Clouded" + }, + { + "position": 89, + "artist": "Kanye West, Dwele", + "title": "Flashing Lights" + }, + { + "position": 90, + "artist": "Morgan Wallen", + "title": "Whiskey Glasses" + }, + { + "position": 91, + "artist": "Fuerza Regida", + "title": "TQM" + }, + { + "position": 92, + "artist": "Tory Lanez", + "title": "The Color Violet" + }, + { + "position": 93, + "artist": "Post Malone", + "title": "Chemical" + }, + { + "position": 94, + "artist": "Taylor Swift", + "title": "Donโ€™t Blame Me" + }, + { + "position": 95, + "artist": "Rema, Selena Gomez", + "title": "Calm Down (with Selena Gomez)" + }, + { + "position": 96, + "artist": "Travis Scott, Bad Bunny, The Weeknd", + "title": "K-POP" + }, + { + "position": 97, + "artist": "Charli xcx", + "title": "Speed Drive (From Barbie The Album)" + }, + { + "position": 98, + "artist": "Peso Pluma, Jasiel Nuรฑez", + "title": "LAGUNAS" + }, + { + "position": 99, + "artist": "Zach Bryan", + "title": "Oklahoma Smokeshow" + }, + { + "position": 100, + "artist": "Zach Bryan", + "title": "Jake's Piano - Long Island" + }, + { + "position": 101, + "artist": "Travis Scott", + "title": "MY EYES" + }, + { + "position": 102, + "artist": "Fleetwood Mac", + "title": "Dreams - 2004 Remaster" + }, + { + "position": 103, + "artist": "TV Girl", + "title": "Lovers Rock" + }, + { + "position": 104, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1" + }, + { + "position": 105, + "artist": "Steve Lacy", + "title": "Bad Habit" + }, + { + "position": 106, + "artist": "Luke Combs", + "title": "The Kind of Love We Make" + }, + { + "position": 107, + "artist": "Sabrina Carpenter", + "title": "Nonsense" + }, + { + "position": 108, + "artist": "Young Nudy, 21 Savage", + "title": "Peaches & Eggplants (feat. 21 Savage)" + }, + { + "position": 109, + "artist": "Zach Bryan", + "title": "Tradesman" + }, + { + "position": 110, + "artist": "Metro Boomin, Future, Chris Brown", + "title": "Superhero (Heroes & Villains) [with Future & Chris Brown]" + }, + { + "position": 111, + "artist": "Tyler Childers", + "title": "In Your Love" + }, + { + "position": 112, + "artist": "Future, Drake, Tems", + "title": "WAIT FOR U (feat. Drake & Tems)" + }, + { + "position": 113, + "artist": "Calle 24, Chino Pacas, Fuerza Regida", + "title": "Que Onda" + }, + { + "position": 114, + "artist": "Bailey Zimmerman", + "title": "Rock and A Hard Place" + }, + { + "position": 115, + "artist": "Taylor Swift", + "title": "I Can See You (Taylorโ€™s Version) (From The Vault)" + }, + { + "position": 116, + "artist": "Morgan Wallen, ERNEST", + "title": "Cowgirls" + }, + { + "position": 117, + "artist": "Travis Scott, Rob49, 21 Savage", + "title": "TOPIA TWINS (feat. Rob49 & 21 Savage)" + }, + { + "position": 118, + "artist": "Tyler Childers", + "title": "Feathered Indians" + }, + { + "position": 119, + "artist": "FIFTY FIFTY", + "title": "Cupid - Twin Version" + }, + { + "position": 120, + "artist": "21 Savage, Metro Boomin", + "title": "Glock In My Lap" + }, + { + "position": 121, + "artist": "Baby Keem, Kendrick Lamar", + "title": "family ties (with Kendrick Lamar)" + }, + { + "position": 122, + "artist": "Steve Lacy", + "title": "Infrunami" + }, + { + "position": 123, + "artist": "Metro Boomin, Travis Scott, Young Thug", + "title": "Trance (with Travis Scott & Young Thug)" + }, + { + "position": 124, + "artist": "Tyler Childers", + "title": "All Your'n" + }, + { + "position": 125, + "artist": "Drake", + "title": "Passionfruit" + }, + { + "position": 126, + "artist": "Morgan Wallen", + "title": "Thought You Should Know" + }, + { + "position": 127, + "artist": "Chris Stapleton", + "title": "Tennessee Whiskey" + }, + { + "position": 128, + "artist": "Morgan Wallen", + "title": "Chasin' You" + }, + { + "position": 129, + "artist": "The Weeknd, Playboi Carti, Madonna", + "title": "Popular (with Playboi Carti & Madonna) - From The Idol Vol. 1 (Music from the HBO Original Series)" + }, + { + "position": 130, + "artist": "Arctic Monkeys", + "title": "505" + }, + { + "position": 131, + "artist": "Zach Bryan", + "title": "Burn, Burn, Burn" + }, + { + "position": 132, + "artist": "Chris Stapleton", + "title": "You Should Probably Leave" + }, + { + "position": 133, + "artist": "Kanye West", + "title": "I Wonder" + }, + { + "position": 134, + "artist": "Odetari, 9lives", + "title": "I LOVE YOU HOE (w/ 9lives)" + }, + { + "position": 135, + "artist": "Arctic Monkeys", + "title": "I Wanna Be Yours" + }, + { + "position": 136, + "artist": "That Mexican OT, Paul Wall, DRODi", + "title": "Johnny Dang (with Paul Wall & DRODi)" + }, + { + "position": 137, + "artist": "PARTYNEXTDOOR", + "title": "Break from Toronto" + }, + { + "position": 138, + "artist": "Metro Boomin, Future, Don Toliver", + "title": "Too Many Nights (feat. Don Toliver & with Future)" + }, + { + "position": 139, + "artist": "Zach Bryan", + "title": "Revival" + }, + { + "position": 140, + "artist": "The Weeknd, Lana Del Rey", + "title": "Stargirl Interlude" + }, + { + "position": 141, + "artist": "Zach Bryan", + "title": "Oklahoman Son" + }, + { + "position": 142, + "artist": "Carรญn Leรณn", + "title": "Primera Cita" + }, + { + "position": 143, + "artist": "Tears For Fears", + "title": "Everybody Wants To Rule The World" + }, + { + "position": 144, + "artist": "Bizarrap, Peso Pluma", + "title": "Peso Pluma: Bzrp Music Sessions, Vol. 55" + }, + { + "position": 145, + "artist": "HARDY", + "title": "TRUCK BED" + }, + { + "position": 146, + "artist": "JVKE", + "title": "golden hour" + }, + { + "position": 147, + "artist": "J. Cole", + "title": "Wet Dreamz" + }, + { + "position": 148, + "artist": "Dave, Central Cee", + "title": "Sprinter" + }, + { + "position": 149, + "artist": "Cigarettes After Sex", + "title": "Apocalypse" + }, + { + "position": 150, + "artist": "Zach Bryan", + "title": "Fear and Friday's (Poem)" + }, + { + "position": 151, + "artist": "Alan Jackson, Jimmy Buffett", + "title": "It's Five O'Clock Somewhere" + }, + { + "position": 152, + "artist": "Drake, 21 Savage", + "title": "Spin Bout U" + }, + { + "position": 153, + "artist": "Foo Fighters", + "title": "Everlong" + }, + { + "position": 154, + "artist": "juju<3", + "title": "Wasted Summers" + }, + { + "position": 155, + "artist": "Feid, Young Miko", + "title": "CLASSY 101" + }, + { + "position": 156, + "artist": "Lil Wayne, Drake, Future", + "title": "Love Me" + }, + { + "position": 157, + "artist": "Peso Pluma", + "title": "Por Las Noches" + }, + { + "position": 158, + "artist": "Lil Uzi Vert", + "title": "20 Min" + }, + { + "position": 159, + "artist": "Taylor Swift", + "title": "Lover" + }, + { + "position": 160, + "artist": "Luke Combs", + "title": "When It Rains It Pours" + }, + { + "position": 161, + "artist": "Lord Huron", + "title": "The Night We Met" + }, + { + "position": 162, + "artist": "Peso Pluma", + "title": "BYE" + }, + { + "position": 163, + "artist": "OneRepublic", + "title": "I Ain't Worried" + }, + { + "position": 164, + "artist": "Jimin", + "title": "Like Crazy" + }, + { + "position": 165, + "artist": "Jordan Davis, Luke Bryan", + "title": "Buy Dirt" + }, + { + "position": 166, + "artist": "KAROL G", + "title": "AMARGURA" + }, + { + "position": 167, + "artist": "Glass Animals", + "title": "Heat Waves" + }, + { + "position": 168, + "artist": "Beach House", + "title": "Space Song" + }, + { + "position": 169, + "artist": "KAROL G", + "title": "S91" + }, + { + "position": 170, + "artist": "Lil Uzi Vert", + "title": "Just Wanna Rock" + }, + { + "position": 171, + "artist": "The Killers", + "title": "Mr. Brightside" + }, + { + "position": 172, + "artist": "Baby Keem", + "title": "ORANGE SODA" + }, + { + "position": 173, + "artist": "Radiohead", + "title": "Creep" + }, + { + "position": 174, + "artist": "Bryson Tiller", + "title": "Don't" + }, + { + "position": 175, + "artist": "Lil Baby", + "title": "Freestyle" + }, + { + "position": 176, + "artist": "Lil Uzi Vert", + "title": "Flooded The Face" + }, + { + "position": 177, + "artist": "Peso Pluma, Junior H", + "title": "LUNA" + }, + { + "position": 178, + "artist": "Miley Cyrus", + "title": "Party In The U.S.A." + }, + { + "position": 179, + "artist": "Kendrick Lamar, Zacari", + "title": "LOVE. FEAT. ZACARI." + }, + { + "position": 180, + "artist": "Chino Pacas", + "title": "El Gordo Trae El Mando" + }, + { + "position": 181, + "artist": "Jordan Davis", + "title": "Next Thing You Know" + }, + { + "position": 182, + "artist": "Faye Webster", + "title": "I Know You" + }, + { + "position": 183, + "artist": "Bruno Mars", + "title": "Locked out of Heaven" + }, + { + "position": 184, + "artist": "Drake, Wizkid, Kyla", + "title": "One Dance" + }, + { + "position": 185, + "artist": "Peso Pluma", + "title": "RUBICON" + }, + { + "position": 186, + "artist": "Mac Miller, Empire Of The Sun", + "title": "The Spins" + }, + { + "position": 187, + "artist": "NLE Choppa", + "title": "SLUT ME OUT" + }, + { + "position": 188, + "artist": "Megan Moroney", + "title": "Tennessee Orange" + }, + { + "position": 189, + "artist": "J. Cole", + "title": "Work Out" + }, + { + "position": 190, + "artist": "TV Girl", + "title": "Not Allowed" + }, + { + "position": 191, + "artist": "Morgan Wallen", + "title": "Ainโ€™t That Some" + }, + { + "position": 192, + "artist": "The Weeknd, Daft Punk", + "title": "Starboy" + }, + { + "position": 193, + "artist": "SZA", + "title": "Good Days" + }, + { + "position": 194, + "artist": "Offset, Metro Boomin", + "title": "Ric Flair Drip (with Metro Boomin)" + }, + { + "position": 195, + "artist": "Taylor Swift", + "title": "Lavender Haze" + }, + { + "position": 196, + "artist": "Bad Bunny, Chencho Corleone", + "title": "Me Porto Bonito" + }, + { + "position": 197, + "artist": "Taylor Swift", + "title": "Getaway Car" + }, + { + "position": 198, + "artist": "Travis Scott", + "title": "HYAENA" + }, + { + "position": 199, + "artist": "Marvin Gaye, Tammi Terrell", + "title": "Ain't No Mountain High Enough" + }, + { + "position": 200, + "artist": "Sexyy Red", + "title": "SkeeYee" + } + ] + }, + { + "title": "2022 - US Top Songs", + "songs": [ + { + "position": 1, + "artist": "Steve Lacy", + "title": "Bad Habit" + }, + { + "position": 2, + "artist": "Bad Bunny, Chencho Corleone", + "title": "Me Porto Bonito" + }, + { + "position": 3, + "artist": "Harry Styles", + "title": "As It Was" + }, + { + "position": 4, + "artist": "Nicki Minaj", + "title": "Super Freaky Girl" + }, + { + "position": 5, + "artist": "Bad Bunny", + "title": "Titรญ Me Preguntรณ" + }, + { + "position": 6, + "artist": "Drake, 21 Savage", + "title": "Jimmy Cooks (feat. 21 Savage)" + }, + { + "position": 7, + "artist": "Post Malone, Doja Cat", + "title": "I Like You (A Happier Song) (with Doja Cat)" + }, + { + "position": 8, + "artist": "Joji", + "title": "Glimpse of Us" + }, + { + "position": 9, + "artist": "Kate Bush", + "title": "Running Up That Hill (A Deal With God)" + }, + { + "position": 10, + "artist": "Bad Bunny", + "title": "Efecto" + }, + { + "position": 11, + "artist": "OneRepublic", + "title": "I Ain't Worried" + }, + { + "position": 12, + "artist": "Morgan Wallen", + "title": "You Proof" + }, + { + "position": 13, + "artist": "DJ Khaled, Drake, Lil Baby", + "title": "STAYING ALIVE (feat. Drake & Lil Baby)" + }, + { + "position": 14, + "artist": "Harry Styles", + "title": "Late Night Talking" + }, + { + "position": 15, + "artist": "Elton John, Britney Spears", + "title": "Hold Me Closer" + }, + { + "position": 16, + "artist": "Glass Animals", + "title": "Heat Waves" + }, + { + "position": 17, + "artist": "Doja Cat", + "title": "Vegas (From the Original Motion Picture Soundtrack ELVIS)" + }, + { + "position": 18, + "artist": "Future, Drake, Tems", + "title": "WAIT FOR U (feat. Drake & Tems)" + }, + { + "position": 19, + "artist": "Yung Gravy", + "title": "Betty (Get Money)" + }, + { + "position": 20, + "artist": "BLACKPINK", + "title": "Pink Venom" + }, + { + "position": 21, + "artist": "Bad Bunny", + "title": "Moscow Mule" + }, + { + "position": 22, + "artist": "Lizzo", + "title": "About Damn Time" + }, + { + "position": 23, + "artist": "JVKE", + "title": "golden hour" + }, + { + "position": 24, + "artist": "Nicky Youre, hey daisy", + "title": "Sunroof" + }, + { + "position": 25, + "artist": "The Weeknd", + "title": "Die For You" + }, + { + "position": 26, + "artist": "The Neighbourhood", + "title": "Sweater Weather" + }, + { + "position": 27, + "artist": "Steve Lacy", + "title": "Dark Red" + }, + { + "position": 28, + "artist": "Nardo Wick", + "title": "Dah Dah DahDah" + }, + { + "position": 29, + "artist": "DJ Khaled, Future, SZA", + "title": "BEAUTIFUL (feat. Future & SZA)" + }, + { + "position": 30, + "artist": "Lil Tjay", + "title": "Beat the Odds" + }, + { + "position": 31, + "artist": "Zach Bryan", + "title": "Something in the Orange" + }, + { + "position": 32, + "artist": "DJ Khaled, Rick Ross, Lil Wayne, JAY-Z, John Legend, Fridayy", + "title": "GOD DID (feat. Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy)" + }, + { + "position": 33, + "artist": "Luke Combs", + "title": "The Kind of Love We Make" + }, + { + "position": 34, + "artist": "Jack Harlow", + "title": "First Class" + }, + { + "position": 35, + "artist": "Bad Bunny, Bomba Estรฉreo", + "title": "Ojitos Lindos" + }, + { + "position": 36, + "artist": "DJ Khaled, Future, Lil Baby", + "title": "BIG TIME (feat. Future & Lil Baby)" + }, + { + "position": 37, + "artist": "J. Cole", + "title": "No Role Modelz" + }, + { + "position": 38, + "artist": "Arctic Monkeys", + "title": "505" + }, + { + "position": 39, + "artist": "Bailey Zimmerman", + "title": "Rock and A Hard Place" + }, + { + "position": 40, + "artist": "Ghost", + "title": "Mary On A Cross" + }, + { + "position": 41, + "artist": "Bizarrap, Quevedo", + "title": "Quevedo: Bzrp Music Sessions, Vol. 52" + }, + { + "position": 42, + "artist": "Bad Bunny, Rauw Alejandro", + "title": "Party" + }, + { + "position": 43, + "artist": "Beyoncรฉ", + "title": "BREAK MY SOUL" + }, + { + "position": 44, + "artist": "Stephen Sanchez", + "title": "Until I Found You" + }, + { + "position": 45, + "artist": "d4vd", + "title": "Romantic Homicide" + }, + { + "position": 46, + "artist": "Bad Bunny", + "title": "Despuรฉs de la Playa" + }, + { + "position": 47, + "artist": "The Kid LAROI, Justin Bieber", + "title": "STAY (with Justin Bieber)" + }, + { + "position": 48, + "artist": "KAROL G", + "title": "PROVENZA" + }, + { + "position": 49, + "artist": "Morgan Wallen", + "title": "Wasted On You" + }, + { + "position": 50, + "artist": "Kanye West", + "title": "Heartless" + }, + { + "position": 51, + "artist": "Joji", + "title": "YUKON (INTERLUDE)" + }, + { + "position": 52, + "artist": "DJ Khaled, Juice WRLD", + "title": "Juice WRLD DID (feat. Juice WRLD)" + }, + { + "position": 53, + "artist": "Steve Lacy", + "title": "Static" + }, + { + "position": 54, + "artist": "Cole Swindell", + "title": "She Had Me At Heads Carolina" + }, + { + "position": 55, + "artist": "Drake, 21 Savage, Project Pat", + "title": "Knife Talk (with 21 Savage ft. Project Pat)" + }, + { + "position": 56, + "artist": "Bad Bunny, JHAYCO", + "title": "Tarot" + }, + { + "position": 57, + "artist": "KAROL G, Maldy", + "title": "GATรšBELA" + }, + { + "position": 58, + "artist": "ROSALรA", + "title": "DESPECHร" + }, + { + "position": 59, + "artist": "Bad Bunny", + "title": "Neverita" + }, + { + "position": 60, + "artist": "Chris Brown", + "title": "Under The Influence" + }, + { + "position": 61, + "artist": "Baby Keem", + "title": "HONEST" + }, + { + "position": 62, + "artist": "David Guetta, Bebe Rexha", + "title": "I'm Good (Blue)" + }, + { + "position": 63, + "artist": "Kanye West", + "title": "Bound 2" + }, + { + "position": 64, + "artist": "Bad Bunny, Tony Dize", + "title": "La Corriente" + }, + { + "position": 65, + "artist": "Baby Keem, Kendrick Lamar", + "title": "family ties (with Kendrick Lamar)" + }, + { + "position": 66, + "artist": "Charlie Puth, Jung Kook, BTS", + "title": "Left and Right (Feat. Jung Kook of BTS)" + }, + { + "position": 67, + "artist": "Tears For Fears", + "title": "Everybody Wants To Rule The World" + }, + { + "position": 68, + "artist": "Justin Bieber", + "title": "Ghost" + }, + { + "position": 69, + "artist": "Drake, Lil Baby", + "title": "Wants and Needs (feat. Lil Baby)" + }, + { + "position": 70, + "artist": "Morgan Wallen", + "title": "Whiskey Glasses" + }, + { + "position": 71, + "artist": "Future", + "title": "PUFFIN ON ZOOTIEZ" + }, + { + "position": 72, + "artist": "Beyoncรฉ", + "title": "ALIEN SUPERSTAR" + }, + { + "position": 73, + "artist": "Doja Cat", + "title": "Woman" + }, + { + "position": 74, + "artist": "The Killers", + "title": "Mr. Brightside" + }, + { + "position": 75, + "artist": "The Weeknd, Lana Del Rey", + "title": "Stargirl Interlude" + }, + { + "position": 76, + "artist": "DJ Khaled, Kanye West, Eminem", + "title": "USE THIS GOSPEL (feat. Kanye West & Eminem) - REMIX" + }, + { + "position": 77, + "artist": "Elton John, Dua Lipa, PNAU", + "title": "Cold Heart - PNAU Remix" + }, + { + "position": 78, + "artist": "Kendrick Lamar, Jay Rock", + "title": "Money Trees" + }, + { + "position": 79, + "artist": "Tyler, The Creator, Kali Uchis", + "title": "See You Again (feat. Kali Uchis)" + }, + { + "position": 80, + "artist": "The Walters", + "title": "I Love You So" + }, + { + "position": 81, + "artist": "The Weeknd, Daft Punk", + "title": "Starboy" + }, + { + "position": 82, + "artist": "Cigarettes After Sex", + "title": "Apocalypse" + }, + { + "position": 83, + "artist": "The Weeknd", + "title": "Blinding Lights" + }, + { + "position": 84, + "artist": "Rosa Linn", + "title": "SNAP" + }, + { + "position": 85, + "artist": "Joji", + "title": "SLOW DANCING IN THE DARK" + }, + { + "position": 86, + "artist": "The Weeknd", + "title": "The Hills" + }, + { + "position": 87, + "artist": "Childish Gambino", + "title": "Me and Your Mama" + }, + { + "position": 88, + "artist": "Taylor Swift", + "title": "august" + }, + { + "position": 89, + "artist": "J. Cole", + "title": "Wet Dreamz" + }, + { + "position": 90, + "artist": "Olivia Rodrigo", + "title": "good 4 u" + }, + { + "position": 91, + "artist": "Olivia Rodrigo", + "title": "traitor" + }, + { + "position": 92, + "artist": "DJ Khaled, Don Toliver, Travis Scott", + "title": "LET'S PRAY (feat. Don Toliver & Travis Scott)" + }, + { + "position": 93, + "artist": "Bad Bunny", + "title": "Un Ratito" + }, + { + "position": 94, + "artist": "JID, Kenny Mason", + "title": "Dance Now (feat. Kenny Mason)" + }, + { + "position": 95, + "artist": "Jax", + "title": "Victoria's Secret" + }, + { + "position": 96, + "artist": "The Weeknd, Gesaffelstein", + "title": "I Was Never There" + }, + { + "position": 97, + "artist": "J Balvin, Bad Bunny", + "title": "LA CANCIร“N" + }, + { + "position": 98, + "artist": "Lil Nas X, Jack Harlow", + "title": "INDUSTRY BABY (feat. Jack Harlow)" + }, + { + "position": 99, + "artist": "Noah Kahan", + "title": "Stick Season" + }, + { + "position": 100, + "artist": "NAV, Lil Baby, Travis Scott", + "title": "Never Sleep (with Lil Baby feat. Travis Scott)" + }, + { + "position": 101, + "artist": "The Weeknd", + "title": "Call Out My Name" + }, + { + "position": 102, + "artist": "Kanye West, Dwele", + "title": "Flashing Lights" + }, + { + "position": 103, + "artist": "Manuel Turizo", + "title": "La Bachata" + }, + { + "position": 104, + "artist": "Olivia Rodrigo", + "title": "deja vu" + }, + { + "position": 105, + "artist": "Metallica", + "title": "Master of Puppets (Remastered)" + }, + { + "position": 106, + "artist": "Mac Miller, Empire Of The Sun", + "title": "The Spins" + }, + { + "position": 107, + "artist": "Lil Uzi Vert", + "title": "20 Min" + }, + { + "position": 108, + "artist": "Billie Eilish", + "title": "Happier Than Ever" + }, + { + "position": 109, + "artist": "Rema, Selena Gomez", + "title": "Calm Down (with Selena Gomez)" + }, + { + "position": 110, + "artist": "AJR", + "title": "World's Smallest Violin" + }, + { + "position": 111, + "artist": "Lil Baby, Gunna", + "title": "Drip Too Hard (Lil Baby & Gunna)" + }, + { + "position": 112, + "artist": "Post Malone, Swae Lee", + "title": "Sunflower - Spider-Man: Into the Spider-Verse" + }, + { + "position": 113, + "artist": "Pierce The Veil, Kellin Quinn", + "title": "King For A Day" + }, + { + "position": 114, + "artist": "JID, 21 Savage, Baby Tate", + "title": "Surround Sound (feat. 21 Savage & Baby Tate)" + }, + { + "position": 115, + "artist": "Marshmello, Khalid", + "title": "Numb" + }, + { + "position": 116, + "artist": "Ed Sheeran", + "title": "Shivers" + }, + { + "position": 117, + "artist": "Pharrell Williams, 21 Savage, Tyler, The Creator", + "title": "Cash In Cash Out" + }, + { + "position": 118, + "artist": "DJ Khaled, Lil Durk, 21 Savage, Roddy Ricch", + "title": "KEEP GOING (feat. Lil Durk, 21 Savage & Roddy Ricch)" + }, + { + "position": 119, + "artist": "Lil Baby", + "title": "Freestyle" + }, + { + "position": 120, + "artist": "Bailey Zimmerman", + "title": "Where It Ends" + }, + { + "position": 121, + "artist": "Frank Ocean", + "title": "Novacane" + }, + { + "position": 122, + "artist": "TWICE", + "title": "Talk that Talk" + }, + { + "position": 123, + "artist": "Lil Baby, Drake", + "title": "Yes Indeed" + }, + { + "position": 124, + "artist": "Tyler Hubbard", + "title": "5 Foot 9" + }, + { + "position": 125, + "artist": "Post Malone", + "title": "Circles" + }, + { + "position": 126, + "artist": "DJ Khaled, Quavo, Takeoff", + "title": "PARTY (feat. Quavo & Takeoff)" + }, + { + "position": 127, + "artist": "Drake", + "title": "Sticky" + }, + { + "position": 128, + "artist": "Harry Styles", + "title": "Music For a Sushi Restaurant" + }, + { + "position": 129, + "artist": "DJ Khaled, Nardo Wick, Kodak Black", + "title": "IT AIN'T SAFE (feat. Nardo Wick & Kodak Black)" + }, + { + "position": 130, + "artist": "Armani White", + "title": "BILLIE EILISH." + }, + { + "position": 131, + "artist": "Harry Styles", + "title": "Matilda" + }, + { + "position": 132, + "artist": "Frank Ocean", + "title": "Lost" + }, + { + "position": 133, + "artist": "XXXTENTACION", + "title": "Revenge" + }, + { + "position": 134, + "artist": "Childish Gambino", + "title": "Redbone" + }, + { + "position": 135, + "artist": "Harry Styles", + "title": "Watermelon Sugar" + }, + { + "position": 136, + "artist": "The Weeknd", + "title": "Save Your Tears" + }, + { + "position": 137, + "artist": "JAY-Z, Kanye West", + "title": "Ni**as In Paris" + }, + { + "position": 138, + "artist": "Imagine Dragons", + "title": "Bones" + }, + { + "position": 139, + "artist": "Brent Faiyaz", + "title": "ALL MINE" + }, + { + "position": 140, + "artist": "Kendrick Lamar", + "title": "N95" + }, + { + "position": 141, + "artist": "Doja Cat, SZA", + "title": "Kiss Me More (feat. SZA)" + }, + { + "position": 142, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1" + }, + { + "position": 143, + "artist": "Beyoncรฉ", + "title": "CUFF IT" + }, + { + "position": 144, + "artist": "Dua Lipa, DaBaby", + "title": "Levitating (feat. DaBaby)" + }, + { + "position": 145, + "artist": "Latto", + "title": "Big Energy" + }, + { + "position": 146, + "artist": "Bailey Zimmerman", + "title": "Fall In Love" + }, + { + "position": 147, + "artist": "Beach House", + "title": "Space Song" + }, + { + "position": 148, + "artist": "ERNEST, Morgan Wallen", + "title": "Flower Shops (feat. Morgan Wallen)" + }, + { + "position": 149, + "artist": "Yot Club", + "title": "YKWIM?" + }, + { + "position": 150, + "artist": "Kodak Black", + "title": "Super Gremlin" + }, + { + "position": 151, + "artist": "Taylor Swift", + "title": "Donโ€™t Blame Me" + }, + { + "position": 152, + "artist": "Camila Cabello, Ed Sheeran", + "title": "Bam Bam (feat. Ed Sheeran)" + }, + { + "position": 153, + "artist": "Harry Styles", + "title": "Daylight" + }, + { + "position": 154, + "artist": "Fleetwood Mac", + "title": "Dreams - 2004 Remaster" + }, + { + "position": 155, + "artist": "Dove Cameron", + "title": "Boyfriend" + }, + { + "position": 156, + "artist": "Chris Stapleton", + "title": "Tennessee Whiskey" + }, + { + "position": 157, + "artist": "Beach Weather", + "title": "Sex, Drugs, Etc." + }, + { + "position": 158, + "artist": "Bad Bunny", + "title": "Yo No Soy Celoso" + }, + { + "position": 159, + "artist": "Juice WRLD", + "title": "Lucid Dreams" + }, + { + "position": 160, + "artist": "Kid Cudi, MGMT, Ratatat", + "title": "Pursuit Of Happiness (Nightmare)" + }, + { + "position": 161, + "artist": "JID", + "title": "Raydar" + }, + { + "position": 162, + "artist": "Central Cee", + "title": "Doja" + }, + { + "position": 163, + "artist": "Morgan Wallen", + "title": "Thought You Should Know" + }, + { + "position": 164, + "artist": "Becky G, KAROL G", + "title": "MAMIII" + }, + { + "position": 165, + "artist": "Chief Keef", + "title": "Love Sosa" + }, + { + "position": 166, + "artist": "Offset, Moneybagg Yo", + "title": "CODE (feat. Moneybagg Yo)" + }, + { + "position": 167, + "artist": "Surf Curse", + "title": "Freaks" + }, + { + "position": 168, + "artist": "benny blanco, BTS, Snoop Dogg", + "title": "Bad Decisions (with BTS & Snoop Dogg)" + }, + { + "position": 169, + "artist": "Imagine Dragons, JID, Arcane, League of Legends", + "title": "Enemy (with JID) - from the series Arcane League of Legends" + }, + { + "position": 170, + "artist": "Doja Cat", + "title": "Need to Know" + }, + { + "position": 171, + "artist": "Bad Bunny, Tainy", + "title": "Callaita" + }, + { + "position": 172, + "artist": "WILLOW", + "title": "Wait a Minute!" + }, + { + "position": 173, + "artist": "Mr.Kitty", + "title": "After Dark" + }, + { + "position": 174, + "artist": "Morgan Wallen", + "title": "More Than My Hometown" + }, + { + "position": 175, + "artist": "Bad Bunny, JHAYCO", + "title": "DรKITI" + }, + { + "position": 176, + "artist": "Morgan Wallen", + "title": "Sand In My Boots" + }, + { + "position": 177, + "artist": "Ruth B.", + "title": "Dandelions" + }, + { + "position": 178, + "artist": "Lil Durk, Morgan Wallen", + "title": "Broadway Girls (feat. Morgan Wallen)" + }, + { + "position": 179, + "artist": "Quavo, Takeoff", + "title": "HOTEL LOBBY (Unc & Phew)" + }, + { + "position": 180, + "artist": "Demi Lovato", + "title": "29" + }, + { + "position": 181, + "artist": "Playboi Carti", + "title": "Sky" + }, + { + "position": 182, + "artist": "Tyler, The Creator", + "title": "NEW MAGIC WAND" + }, + { + "position": 183, + "artist": "Frank Ocean", + "title": "Pink + White" + }, + { + "position": 184, + "artist": "DJ Khaled, Drake", + "title": "NO SECRET (feat. Drake)" + }, + { + "position": 185, + "artist": "$uicideboy$", + "title": "...And to Those I Love, Thanks for Sticking Around" + }, + { + "position": 186, + "artist": "Bad Bunny", + "title": "Un Coco" + }, + { + "position": 187, + "artist": "Jordan Davis, Luke Bryan", + "title": "Buy Dirt" + }, + { + "position": 188, + "artist": "Olivia Rodrigo", + "title": "drivers license" + }, + { + "position": 189, + "artist": "Harry Styles", + "title": "Satellite" + }, + { + "position": 190, + "artist": "Lil Nas X", + "title": "THATS WHAT I WANT" + }, + { + "position": 191, + "artist": "Foo Fighters", + "title": "Everlong" + }, + { + "position": 192, + "artist": "Coldplay", + "title": "Sparks" + }, + { + "position": 193, + "artist": "$uicideboy$", + "title": "Antarctica" + }, + { + "position": 194, + "artist": "The Neighbourhood", + "title": "Daddy Issues" + }, + { + "position": 195, + "artist": "Lord Huron", + "title": "The Night We Met" + }, + { + "position": 196, + "artist": "Taylor Swift", + "title": "Cruel Summer" + }, + { + "position": 197, + "artist": "Nirvana", + "title": "Smells Like Teen Spirit" + }, + { + "position": 198, + "artist": "Journey", + "title": "Don't Stop Believin' (2022 Remaster)" + }, + { + "position": 199, + "artist": "Jelly Roll", + "title": "Son Of A Sinner" + }, + { + "position": 200, + "artist": "Morgan Wallen", + "title": "Cover Me Up" + } + ] + } +] \ No newline at end of file diff --git a/download_karaoke.bat b/download_karaoke.bat new file mode 100644 index 0000000..e3480ae --- /dev/null +++ b/download_karaoke.bat @@ -0,0 +1,34 @@ +@echo off +REM Karaoke Playlist Downloader - Windows Batch File +REM This file makes it easy to run the karaoke downloader on Windows + +echo. +echo ======================================== +echo Karaoke Playlist Downloader +echo ======================================== +echo. + +REM Check if Python is available +python --version >nul 2>&1 +if errorlevel 1 ( + echo ERROR: Python is not installed or not in PATH + echo Please install Python 3.7+ from https://python.org + pause + exit /b 1 +) + +REM Check if yt-dlp.exe exists +if not exist "downloader\yt-dlp.exe" ( + echo ERROR: yt-dlp.exe not found in downloader\ directory + echo Please ensure yt-dlp.exe is present in the downloader\ folder + pause + exit /b 1 +) + +REM Run the downloader with all arguments passed through +python download_karaoke.py %* + +REM Pause to show results +echo. +echo Press any key to exit... +pause >nul \ No newline at end of file diff --git a/download_karaoke.py b/download_karaoke.py new file mode 100644 index 0000000..6438e29 --- /dev/null +++ b/download_karaoke.py @@ -0,0 +1,986 @@ +#!/usr/bin/env python3 +""" +Karaoke Playlist Downloader +A Python-based Windows command-line tool that wraps yt-dlp.exe to batch-download karaoke videos from YouTube playlists. +""" + +import os +import sys +import argparse +import subprocess +import json +import re +from pathlib import Path +from urllib.parse import urlparse, parse_qs +import logging +from datetime import datetime +from tracking_manager import TrackingManager, SongStatus, FormatType + +# Try to import mutagen for ID3 tagging +try: + from mutagen.mp4 import MP4, MP4Tags + MUTAGEN_AVAILABLE = True +except ImportError: + MUTAGEN_AVAILABLE = False + print("โš ๏ธ mutagen not available - ID3 tagging will be disabled") + print(" Install with: pip install mutagen") + + +class KaraokeDownloader: + def __init__(self): + self.yt_dlp_path = Path("downloader/yt-dlp.exe") + self.downloads_dir = Path("downloads") + self.logs_dir = Path("logs") + + # Create necessary directories + self.downloads_dir.mkdir(exist_ok=True) + self.logs_dir.mkdir(exist_ok=True) + + # Initialize tracking manager + self.tracker = TrackingManager() + + # Load configuration + self.config = self._load_config() + + # Songlist tracking file + self.songlist_tracking_file = Path("songlist_tracking.json") + self.songlist_tracking = self._load_songlist_tracking() + + def _get_channel_info(self, channel_url): + """Extract channel information from URL.""" + # Fallback: extract channel info from URL (faster and more reliable) + if '@' in channel_url: + # Handle @username format + channel_name = channel_url.split('@')[1].split('/')[0] + channel_id = f"@{channel_name}" + else: + # Handle other formats + channel_name = "unknown_channel" + channel_id = "unknown_channel" + + # Clean the channel name for use as directory name + channel_name = re.sub(r'[<>:"/\\|?*]', '_', channel_name) + return channel_name, channel_id + + def _get_playlist_info(self, playlist_url): + """Extract playlist information from URL (backward compatibility).""" + return self._get_channel_info(playlist_url) + + def _load_config(self): + """Load configuration from config.json file.""" + config_file = Path("config.json") + if config_file.exists(): + try: + with open(config_file, 'r', encoding='utf-8') as f: + return json.load(f) + except (json.JSONDecodeError, FileNotFoundError) as e: + print(f"Warning: Could not load config.json: {e}") + + # Return default configuration + return { + "download_settings": { + "format": "best[height<=720][ext=mp4]/best[height<=720]/best[ext=mp4]/best", + "preferred_resolution": "720p", + "audio_format": "mp3", + "audio_quality": "0", + "subtitle_language": "en", + "subtitle_format": "srt", + "write_metadata": False, + "write_thumbnail": False, + "write_description": False, + "write_annotations": False, + "write_comments": False, + "write_subtitles": False, + "embed_metadata": False, + "add_metadata": False, + "continue_downloads": True, + "no_overwrites": True, + "ignore_errors": True, + "no_warnings": False + }, + "folder_structure": { + "downloads_dir": "downloads", + "logs_dir": "logs", + "tracking_file": "karaoke_tracking.json" + }, + "logging": { + "level": "INFO", + "format": "%(asctime)s - %(levelname)s - %(message)s", + "include_console": True, + "include_file": True + }, + "yt_dlp_path": "downloader/yt-dlp.exe" + } + + def _load_songlist(self): + """Load songlist from docs/songList.json file.""" + songlist_file = Path("docs/songList.json") + if not songlist_file.exists(): + print("โš ๏ธ Songlist file not found: docs/songList.json") + return [] + + try: + with open(songlist_file, 'r', encoding='utf-8') as f: + data = json.load(f) + + # Extract all songs from all categories + all_songs = [] + for category in data: + if "songs" in category: + for song in category["songs"]: + if "artist" in song and "title" in song: + all_songs.append({ + "artist": song["artist"].strip(), + "title": song["title"].strip(), + "position": song.get("position", 0) + }) + + print(f"๐Ÿ“‹ Loaded {len(all_songs)} songs from songlist") + return all_songs + + except (json.JSONDecodeError, FileNotFoundError) as e: + print(f"โš ๏ธ Could not load songlist: {e}") + return [] + + def _load_songlist_tracking(self): + """Load songlist tracking data.""" + if not self.songlist_tracking_file.exists(): + return {} + + try: + with open(self.songlist_tracking_file, 'r', encoding='utf-8') as f: + return json.load(f) + except (json.JSONDecodeError, FileNotFoundError) as e: + print(f"โš ๏ธ Could not load songlist tracking: {e}") + return {} + + def _save_songlist_tracking(self): + """Save songlist tracking data.""" + try: + with open(self.songlist_tracking_file, 'w', encoding='utf-8') as f: + json.dump(self.songlist_tracking, f, indent=2, ensure_ascii=False) + except Exception as e: + print(f"โš ๏ธ Could not save songlist tracking: {e}") + + def _is_songlist_song_downloaded(self, artist, title): + """Check if a songlist song has been downloaded from any channel.""" + key = f"{artist.lower()}_{self._normalize_title(title)}" + return key in self.songlist_tracking + + def _mark_songlist_song_downloaded(self, artist, title, channel_name, file_path): + """Mark a songlist song as downloaded.""" + key = f"{artist.lower()}_{self._normalize_title(title)}" + self.songlist_tracking[key] = { + "artist": artist, + "title": title, + "channel": channel_name, + "file_path": str(file_path), + "downloaded_at": datetime.now().isoformat() + } + self._save_songlist_tracking() + + def _normalize_title(self, title): + """Normalize title for comparison (remove karaoke suffixes, etc.).""" + # Remove common karaoke suffixes + normalized = title.replace("(Karaoke Version)", "").replace("(Karaoke)", "").strip() + # Remove extra spaces and convert to lowercase for comparison + return " ".join(normalized.split()).lower() + + def _find_songlist_matches(self, cached_videos, songlist, songlist_only=False): + """Find videos that match songs in the songlist.""" + matches = [] + songlist_lookup = {} + unique_matches = set() + already_downloaded = 0 + new_downloads = 0 + + # Create lookup for songlist songs (normalized) + for song in songlist: + normalized_title = self._normalize_title(song["title"]) + key = f"{song['artist'].lower()}_{normalized_title}" + songlist_lookup[key] = song + + print(f"๐Ÿ” Searching for {len(songlist)} songlist songs in {len(cached_videos)} cached videos...") + + for video in cached_videos: + # Extract artist and title from video title + artist, title = self._extract_artist_title(video['title']) + normalized_title = self._normalize_title(title) + key = f"{artist.lower()}_{normalized_title}" + + if key in songlist_lookup: + songlist_song = songlist_lookup[key] + + # Check if already downloaded from any channel + if self._is_songlist_song_downloaded(artist, title): + already_downloaded += 1 + print(f"โญ๏ธ Already downloaded: {artist} - {title}") + continue + + matches.append({ + 'video': video, + 'songlist_song': songlist_song, + 'priority_score': songlist_song.get('position', 9999) # Lower position = higher priority + }) + unique_matches.add(key) + new_downloads += 1 + print(f"๐ŸŽฏ Found match: {artist} - {title} (position {songlist_song.get('position', 'N/A')})") + + print(f"๐ŸŽฏ Matching Results:") + print(f" โ€ข Total matches found: {len(matches) + already_downloaded}") + print(f" โ€ข Unique songs matched: {len(unique_matches) + already_downloaded}") + print(f" โ€ข Already downloaded: {already_downloaded}") + print(f" โ€ข New downloads available: {new_downloads}") + print(f" โ€ข Duplicate matches: {len(matches) - len(unique_matches)}") + + return matches + + def _get_playlist_name(self, playlist_url): + """Extract playlist name from URL (backward compatibility).""" + return self._get_playlist_info(playlist_url)[0] + + def _setup_logging(self, playlist_name): + """Setup logging for the current playlist.""" + log_file = self.logs_dir / f"{playlist_name}.log" + + # Configure logging + logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler(log_file), + logging.StreamHandler(sys.stdout) + ] + ) + + return logging.getLogger(__name__) + + def _get_channel_videos(self, channel_url): + """Get list of videos from a channel.""" + try: + cmd = [ + str(self.yt_dlp_path), + "--flat-playlist", + "--print", "id,title,duration,upload_date", + channel_url + ] + + result = subprocess.run(cmd, capture_output=True, text=True, timeout=120) + if result.returncode == 0 and result.stdout.strip(): + videos = [] + lines = result.stdout.strip().split('\n') + for i in range(0, len(lines), 4): + if i + 3 < len(lines): + video_id = lines[i].strip() + title = lines[i + 1].strip() + duration = lines[i + 2].strip() + upload_date = lines[i + 3].strip() + try: + duration_int = int(duration) if duration != 'NA' else None + except ValueError: + duration_int = None + + videos.append({ + 'video_id': video_id, + 'title': title, + 'duration': duration_int, + 'upload_date': upload_date + }) + return videos + except (subprocess.TimeoutExpired, subprocess.CalledProcessError) as e: + print(f"Error getting channel videos: {e}") + + return [] + + def _get_playlist_songs(self, playlist_url): + """Get list of songs in a playlist (backward compatibility).""" + return self._get_channel_videos(playlist_url) + + def _extract_artist_title(self, video_title): + """Extract artist and title from karaoke video title.""" + # Remove common karaoke suffixes + title = video_title.replace("(Karaoke Version)", "").replace("(Karaoke)", "").strip() + + # Look for common patterns + if " - " in title: + # Format: "Artist - Song Title" + parts = title.split(" - ", 1) + if len(parts) == 2: + artist = parts[0].strip() + song_title = parts[1].strip() + + # Handle special cases + if artist == "d4vd, Hyunjin": + return "d4vd, Hyunjin", song_title + elif artist == "Adrianne Lenker": + return "Adrianne Lenker", song_title + else: + return artist, song_title + + # Handle special cases without clear artist - title pattern + if "Nothing Beats A Jet2 Holiday" in title: + return "Jet2", "Nothing Beats A Jet2 Holiday" + elif "Spin The Wheel" in title: + return "SingKingKaraoke", "Spin The Wheel - Your Song Requests" + + # If no clear pattern, assume the whole title is the song name + return "Unknown Artist", title + + def _add_id3_tags(self, file_path, video_title, channel_name): + """Add ID3 tags to the downloaded MP4 file.""" + if not MUTAGEN_AVAILABLE: + print("โš ๏ธ mutagen not available - skipping ID3 tagging") + return + + try: + artist, title = self._extract_artist_title(video_title) + + # Load the MP4 file + mp4 = MP4(str(file_path)) + + # Add metadata tags + mp4['\xa9nam'] = title # Title + mp4['\xa9ART'] = artist # Artist + mp4['\xa9alb'] = f"{channel_name} Karaoke" # Album + mp4['\xa9gen'] = "Karaoke" # Genre + mp4['\xa9day'] = str(datetime.now().year) # Year + + # Save the metadata + mp4.save() + + print(f"๐Ÿ“ Added ID3 tags: Artist='{artist}', Title='{title}'") + + except Exception as e: + print(f"โš ๏ธ Could not add ID3 tags: {e}") + + def _cleanup_extra_files(self, mp4_file_path): + """Remove extra files (info.json, meta) that yt-dlp creates alongside MP4 files.""" + try: + # Get the base path without extension + base_path = mp4_file_path.with_suffix('') + + # Files to remove + extra_files = [ + base_path.with_suffix('.info.json'), + base_path.with_suffix('.meta') + ] + + removed_count = 0 + for extra_file in extra_files: + if extra_file.exists(): + extra_file.unlink() + removed_count += 1 + print(f"๐Ÿงน Removed extra file: {extra_file.name}") + + if removed_count > 0: + print(f"๐Ÿงน Cleaned up {removed_count} extra file(s)") + + except Exception as e: + print(f"โš ๏ธ Could not clean up extra files: {e}") + + def download_channel_videos(self, channel_url, force_refresh=False): + """Download all videos from a YouTube channel.""" + print(f"๐ŸŽค Starting download for channel: {channel_url}") + + # Get channel info + print("๐Ÿ” Extracting channel information...") + channel_name, channel_id = self._get_channel_info(channel_url) + print(f"๐Ÿ“บ Channel name: {channel_name}") + print(f"๐Ÿ†” Channel ID: {channel_id}") + + # Setup logging + print("๐Ÿ“ Setting up logging...") + logger = self._setup_logging(channel_name) + logger.info(f"Starting download for channel: {channel_url}") + + # Add channel to tracking + print("๐Ÿ“‹ Adding channel to tracking system...") + self.tracker.add_playlist(channel_id, channel_name, channel_url) + + # Check cache first (unless force refresh is requested) + print("๐Ÿ’พ Checking channel cache...") + current_videos = None + if not force_refresh: + current_videos = self.tracker.get_cached_channel_videos(channel_id) + if current_videos: + print(f"๐Ÿ“‹ Using cached channel data: {len(current_videos)} videos") + else: + print("๐Ÿ“‹ Cache miss or expired, fetching fresh channel data...") + + # Fetch fresh data if needed + if not current_videos: + print("๐Ÿ“‹ Fetching channel videos from YouTube...") + current_videos = self._get_channel_videos(channel_url) + print(f"๐ŸŽต Found {len(current_videos)} videos in channel") + + # Cache the results + if current_videos: + print("๐Ÿ’พ Caching channel data for future use...") + self.tracker.cache_channel_videos(channel_id, current_videos) + print(f"๐Ÿ’พ Cached channel data for future use") + else: + print(f"๐ŸŽต Using {len(current_videos)} cached videos") + + # Sync channel with tracking + print("๐Ÿ”„ Syncing channel with tracking system...") + sync_result = self.tracker.sync_playlist(channel_id, current_videos) + print(f"๐Ÿ”„ Sync result: {sync_result['added']} new, {sync_result['removed']} removed, {sync_result['total']} total") + + # Create channel-specific downloads directory + print("๐Ÿ“ Creating downloads directory...") + downloads_dir = self.downloads_dir / channel_name + downloads_dir.mkdir(parents=True, exist_ok=True) + print(f"๐Ÿ“ Downloads will be saved to: {downloads_dir}") + + # Load songlist for prioritization (if enabled) + songlist = [] + if hasattr(self, 'use_songlist_priority') and self.use_songlist_priority: + print("๐Ÿ“‹ Loading songlist for prioritization...") + songlist = self._load_songlist() + + # Show songlist statistics + unique_songs = len(set(f"{song['artist']}_{song['title']}" for song in songlist)) + print(f"๐Ÿ“Š Songlist Statistics:") + print(f" โ€ข Total songs in list: {len(songlist)}") + print(f" โ€ข Unique songs: {unique_songs}") + print(f" โ€ข Duplicates in list: {len(songlist) - unique_songs}") + else: + print("๐Ÿ“‹ Songlist prioritization disabled") + + # Get videos that need downloading + print("๐Ÿ” Checking which videos need to be downloaded...") + videos_to_download = [] + found_existing = 0 + + # Get list of existing MP4 files once (more efficient) + existing_files = set() + for file_path in downloads_dir.glob(f"*.mp4"): + if file_path.is_file(): + existing_files.add(file_path.stem) + + # Also check root downloads directory + for file_path in self.downloads_dir.glob(f"*.mp4"): + if file_path.is_file(): + existing_files.add(file_path.stem) + + print(f"๐Ÿ“ Found {len(existing_files)} existing MP4 files in directories") + + # Separate videos into songlist matches and others + songlist_matches = [] + other_videos = [] + + for video in current_videos: + if not self.tracker.is_song_downloaded(video['video_id'], channel_id): + if video['title'] in existing_files: + # File exists but not tracked, mark as downloaded + self.tracker.update_song_status( + video['video_id'], + channel_id, + SongStatus.DOWNLOADED, + FormatType.MP4, + downloads_dir / f"{video['title']}.mp4" # Assume it's in channel dir + ) + found_existing += 1 + else: + other_videos.append(video) + + # Find songlist matches and prioritize them + if songlist: + songlist_matches = self._find_songlist_matches(other_videos, songlist, songlist_only=getattr(self, 'songlist_only', False)) + + # Remove matched videos from other_videos to avoid duplicates + matched_video_ids = {match['video']['video_id'] for match in songlist_matches} + other_videos = [v for v in other_videos if v['video_id'] not in matched_video_ids] + + # Sort songlist matches by priority (lower position = higher priority) + songlist_matches.sort(key=lambda x: x['priority_score']) + + # Add songlist matches first, then other videos (unless songlist_only is enabled) + if getattr(self, 'songlist_only', False): + videos_to_download = [match['video'] for match in songlist_matches] + print(f"๐ŸŽฏ Songlist-only mode: {len(songlist_matches)} songlist matches") + else: + videos_to_download = [match['video'] for match in songlist_matches] + other_videos + print(f"๐ŸŽฏ Prioritized {len(songlist_matches)} songlist matches") + print(f"๐Ÿ“ Added {len(other_videos)} other videos") + else: + videos_to_download = other_videos + + if found_existing > 0: + print(f"๐Ÿ“ Found {found_existing} existing files that weren't tracked") + + # Apply limit if specified + if hasattr(self, 'download_limit') and self.download_limit: + videos_to_download = videos_to_download[:self.download_limit] + print(f"๐Ÿ“ฅ Videos to download: {len(videos_to_download)} (limited to {self.download_limit})") + else: + print(f"๐Ÿ“ฅ Videos to download: {len(videos_to_download)}") + + if not videos_to_download: + print("โœ… All videos already downloaded!") + return True + + # Build yt-dlp command for each video + for i, video in enumerate(videos_to_download, 1): + print(f"\n๐ŸŽต Downloading {i} of {len(videos_to_download)}: {video['title']}") + + # Update status to downloading + self.tracker.update_song_status( + video['video_id'], + channel_id, + SongStatus.DOWNLOADING + ) + + # Build yt-dlp command for this specific video using config + download_settings = self.config["download_settings"] + + cmd = [ + str(self.yt_dlp_path), + "--format", download_settings["format"], + "--output", str(downloads_dir / "%(title)s.%(ext)s"), + ] + + # Only add metadata options if enabled in config + if download_settings.get("add_metadata", False): + cmd.append("--add-metadata") + if download_settings.get("embed_metadata", False): + cmd.append("--embed-metadata") + if download_settings.get("write_metadata", False): + cmd.append("--write-info-json") + + # Add optional settings based on config (only essential ones) + if download_settings.get("no_overwrites", True): + cmd.append("--no-overwrites") + if download_settings.get("continue_downloads", True): + cmd.append("--continue") + if download_settings.get("ignore_errors", True): + cmd.append("--ignore-errors") + if download_settings.get("no_warnings", False): + cmd.append("--no-warnings") + + # Add progress and display options + cmd.extend([ + "--progress", + "--newline", + "--console-title", + f"https://www.youtube.com/watch?v={video['video_id']}" + ]) + + try: + print(f"๐Ÿš€ Starting download for: {video['title']}") + logger.info(f"Starting download for video ID: {video['video_id']}") + + # Run yt-dlp + process = subprocess.Popen( + cmd, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + text=True, + bufsize=1, + universal_newlines=True + ) + + # Process output in real-time + for line in process.stdout: + line = line.strip() + if line: + print(line) + logger.info(line) + + process.wait() + + # Check if download was successful (more lenient - if MP4 exists, consider success) + downloaded_file = None + + # Look for the file in the channel directory by title (since yt-dlp uses title as filename) + for file_path in downloads_dir.glob(f"*.mp4"): + if file_path.is_file(): + # Check if this file matches the video title + file_name = file_path.stem # filename without extension + if file_name == video['title']: + downloaded_file = file_path + break + + # If not found, also check the root downloads directory + if not downloaded_file: + for file_path in self.downloads_dir.glob(f"*.mp4"): + if file_path.is_file(): + # Check if this file matches the video title + file_name = file_path.stem # filename without extension + if file_name == video['title']: + downloaded_file = file_path + break + + if downloaded_file: + # MP4 file exists, consider download successful + format_type = FormatType.MP4 + + # Update tracking with successful download + self.tracker.update_song_status( + video['video_id'], + channel_id, + SongStatus.DOWNLOADED, + format_type, + downloaded_file + ) + + print(f"โœ… Successfully downloaded: {video['title']} ({format_type})") + logger.info(f"Successfully downloaded: {video['title']} ({format_type})") + + # Add ID3 tags to the downloaded file + self._add_id3_tags(downloaded_file, video['title'], channel_name) + + # Clean up extra files (info.json, meta files) + self._cleanup_extra_files(downloaded_file) + + # Mark as downloaded in songlist tracking if it's a songlist song + if hasattr(self, 'use_songlist_priority') and self.use_songlist_priority: + artist, title = self._extract_artist_title(video['title']) + self._mark_songlist_song_downloaded(artist, title, channel_name, downloaded_file) + print(f"๐Ÿ“‹ Marked songlist song as downloaded: {artist} - {title}") + else: + # No MP4 file found, mark as failed + self.tracker.update_song_status( + video['video_id'], + channel_id, + SongStatus.FAILED, + error_message=f"Download failed - no MP4 file found (return code: {process.returncode})" + ) + print(f"โŒ Download failed for: {video['title']} (return code: {process.returncode})") + logger.error(f"Download failed for: {video['title']} (return code: {process.returncode})") + + except subprocess.CalledProcessError as e: + error_msg = f"Error running yt-dlp for {video['title']}: {e}" + print(f"โŒ {error_msg}") + logger.error(error_msg) + + self.tracker.update_song_status( + video['video_id'], + channel_id, + SongStatus.FAILED, + error_message=str(e) + ) + + except KeyboardInterrupt: + print("\nโน๏ธ Download interrupted by user") + logger.info("Download interrupted by user") + + # Mark current video as partial + self.tracker.update_song_status( + video['video_id'], + channel_id, + SongStatus.PARTIAL + ) + return False + + # Force save tracking data + self.tracker.force_save() + + # Show final statistics + stats = self.tracker.get_statistics() + print(f"\n๐Ÿ“Š Download Statistics:") + print(f" Total songs: {stats['total_songs']}") + print(f" Downloaded: {stats['downloaded_songs']}") + print(f" Failed: {stats['failed_songs']}") + print(f" Partial: {stats['partial_songs']}") + print(f" Total size: {stats['total_size_mb']} MB") + + return True + + def download_playlist(self, playlist_url): + """Download all videos from a YouTube playlist (backward compatibility).""" + return self.download_channel_videos(playlist_url) + + def download_from_file(self, file_path, force_refresh=False): + """Download multiple playlists from a text file.""" + file_path = Path(file_path) + + if not file_path.exists(): + print(f"โŒ File not found: {file_path}") + return False + + print(f"๐Ÿ“„ Reading playlists from: {file_path}") + + with open(file_path, 'r') as f: + playlist_urls = [line.strip() for line in f if line.strip()] + + print(f"๐Ÿ“‹ Found {len(playlist_urls)} URL(s) to download") + + success_count = 0 + for i, url in enumerate(playlist_urls, 1): + print(f"\n{'='*50}") + print(f"๐Ÿ“ฅ Processing URL {i}/{len(playlist_urls)}: {url}") + print(f"{'='*50}") + + if self.download_channel_videos(url, force_refresh=force_refresh): + success_count += 1 + + print(f"\n๐ŸŽ‰ Download summary: {success_count}/{len(playlist_urls)} URLs completed successfully") + + # Force save any pending tracking data + self.tracker.force_save() + + return success_count == len(playlist_urls) + + +def main(): + parser = argparse.ArgumentParser( + description="Karaoke Video Downloader - Download YouTube playlists and channel videos for karaoke", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + python download_karaoke.py https://www.youtube.com/playlist?list=XYZ + python download_karaoke.py https://www.youtube.com/@SingKingKaraoke/videos + python download_karaoke.py --file playlists.txt + python download_karaoke.py --limit 5 https://www.youtube.com/@SingKingKaraoke/videos + python download_karaoke.py --refresh https://www.youtube.com/@SingKingKaraoke/videos + python download_karaoke.py --cache-info + python download_karaoke.py --clear-cache all + """ + ) + + parser.add_argument( + 'url', + nargs='?', + help='YouTube playlist or channel URL to download' + ) + + parser.add_argument( + '--file', '-f', + help='Text file containing playlist or channel URLs (one per line)' + ) + + parser.add_argument( + '--status', '-s', + action='store_true', + help='Show download status and statistics' + ) + + parser.add_argument( + '--report', '-r', + metavar='PLAYLIST_ID', + help='Generate a detailed report for a specific playlist' + ) + + parser.add_argument( + '--sync', '--sync-only', + action='store_true', + help='Only sync playlist without downloading (update tracking)' + ) + + parser.add_argument( + '--cleanup', + action='store_true', + help='Clean up orphaned tracking entries' + ) + + parser.add_argument( + '--resolution', '--res', + choices=['480p', '720p', '1080p', '1440p', '2160p'], + default='720p', + help='Preferred video resolution (default: 720p)' + ) + + parser.add_argument( + '--limit', '-l', + type=int, + help='Limit the number of videos to download (e.g., --limit 10)' + ) + + parser.add_argument( + '--refresh', '--force-refresh', + action='store_true', + help='Force refresh channel cache (ignore cached data)' + ) + + parser.add_argument( + '--cache-info', + action='store_true', + help='Show channel cache information' + ) + + parser.add_argument( + '--clear-cache', + metavar='CHANNEL_ID', + nargs='?', + const='all', + help='Clear cache for specific channel or all channels (use --clear-cache all)' + ) + + parser.add_argument( + '--cache-duration', + type=int, + metavar='HOURS', + help='Set cache duration in hours (default: 24)' + ) + + parser.add_argument( + '--songlist-priority', + action='store_true', + help='Prioritize downloads based on docs/songList.json (default: enabled)' + ) + + parser.add_argument( + '--no-songlist-priority', + action='store_true', + help='Disable songlist prioritization' + ) + + parser.add_argument( + '--songlist-only', + action='store_true', + help='Only download songs that are in the songlist (skip all others)' + ) + + parser.add_argument( + '--songlist-status', + action='store_true', + help='Show songlist download status and statistics' + ) + + parser.add_argument( + '--version', '-v', + action='version', + version='Karaoke Playlist Downloader v1.0' + ) + + args = parser.parse_args() + + # Check if yt-dlp.exe exists + yt_dlp_path = Path("downloader/yt-dlp.exe") + if not yt_dlp_path.exists(): + print("โŒ Error: yt-dlp.exe not found in downloader/ directory") + print("Please ensure yt-dlp.exe is present in the downloader/ folder") + sys.exit(1) + + # Initialize downloader + downloader = KaraokeDownloader() + + # Set download limit if specified + if args.limit: + downloader.download_limit = args.limit + print(f"๐ŸŽฏ Download limit set to: {args.limit} videos") + + # Set songlist priority setting + if args.no_songlist_priority: + downloader.use_songlist_priority = False + print("๐ŸŽฏ Songlist prioritization disabled") + else: + downloader.use_songlist_priority = True + print("๐ŸŽฏ Songlist prioritization enabled") + + # Set songlist-only mode + if args.songlist_only: + downloader.songlist_only = True + print("๐ŸŽฏ Songlist-only mode enabled (will only download songlist songs)") + + # Update resolution if specified + if args.resolution != '720p': + resolution_map = { + '480p': '480', + '720p': '720', + '1080p': '1080', + '1440p': '1440', + '2160p': '2160' + } + height = resolution_map[args.resolution] + downloader.config["download_settings"]["format"] = f"best[height<={height}][ext=mp4]/best[height<={height}]/best[ext=mp4]/best" + downloader.config["download_settings"]["preferred_resolution"] = args.resolution + print(f"๐ŸŽฌ Using resolution: {args.resolution}") + + # Process arguments + if args.status: + # Show status and statistics + stats = downloader.tracker.get_statistics() + print("๐ŸŽค Karaoke Downloader Status") + print("=" * 40) + print(f"Total Songs: {stats['total_songs']}") + print(f"Total Playlists: {stats['total_playlists']}") + print(f"Downloaded Songs: {stats['downloaded_songs']}") + print(f"Failed Songs: {stats['failed_songs']}") + print(f"Partial Downloads: {stats['partial_songs']}") + print(f"Total Size: {stats['total_size_mb']} MB") + print(f"Last Updated: {stats['last_updated']}") + sys.exit(0) + + elif args.cache_info: + # Show cache information + cache_info = downloader.tracker.get_cache_info() + print("๐Ÿ’พ Channel Cache Information") + print("=" * 40) + print(f"Total Channels: {cache_info['total_channels']}") + print(f"Total Cached Videos: {cache_info['total_cached_videos']}") + print(f"Cache Duration: {cache_info['cache_duration_hours']} hours") + print(f"Last Updated: {cache_info['last_updated']}") + sys.exit(0) + + elif args.clear_cache: + # Clear cache + if args.clear_cache == 'all': + downloader.tracker.clear_channel_cache() + print("๐Ÿงน Cleared all channel caches") + else: + downloader.tracker.clear_channel_cache(args.clear_cache) + print(f"๐Ÿงน Cleared cache for channel: {args.clear_cache}") + sys.exit(0) + + elif args.cache_duration: + # Set cache duration + downloader.tracker.set_cache_duration(args.cache_duration) + print(f"โฐ Cache duration set to {args.cache_duration} hours") + sys.exit(0) + + elif args.report: + # Generate playlist report + report = downloader.tracker.export_playlist_report(args.report) + print(report) + sys.exit(0) + + elif args.cleanup: + # Clean up orphaned entries + orphaned = downloader.tracker.cleanup_orphaned_files(downloader.downloads_dir) + print(f"๐Ÿงน Cleaned up {len(orphaned)} orphaned tracking entries") + sys.exit(0) + + elif args.songlist_status: + # Show songlist status and statistics + songlist = downloader._load_songlist() + tracking = downloader.songlist_tracking + + print("๐Ÿ“‹ Songlist Download Status") + print("=" * 40) + print(f"Total songs in list: {len(songlist)}") + print(f"Songs downloaded: {len(tracking)}") + print(f"Songs remaining: {len(songlist) - len(tracking)}") + print(f"Progress: {(len(tracking) / len(songlist) * 100):.1f}%") + + if tracking: + print(f"\n๐Ÿ“ Downloaded songs:") + for key, info in list(tracking.items())[:10]: # Show first 10 + print(f" โ€ข {info['artist']} - {info['title']} (from {info['channel']})") + if len(tracking) > 10: + print(f" ... and {len(tracking) - 10} more") + + sys.exit(0) + + elif args.file: + success = downloader.download_from_file(args.file, force_refresh=args.refresh) + elif args.url: + success = downloader.download_channel_videos(args.url, force_refresh=args.refresh) + else: + parser.print_help() + sys.exit(1) + + # Force save any pending tracking data before exit + downloader.tracker.force_save() + + if success: + print("\n๐ŸŽค All downloads completed successfully!") + sys.exit(0) + else: + print("\nโš ๏ธ Some downloads may have failed. Check the logs for details.") + sys.exit(1) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/downloader/yt-dlp.exe b/downloader/yt-dlp.exe new file mode 100644 index 0000000..0503bd3 Binary files /dev/null and b/downloader/yt-dlp.exe differ diff --git a/manage_tracking.py b/manage_tracking.py new file mode 100644 index 0000000..51cff3b --- /dev/null +++ b/manage_tracking.py @@ -0,0 +1,263 @@ +#!/usr/bin/env python3 +""" +Tracking Management Utility for Karaoke Playlist Downloader +Provides tools to manage and analyze the tracking database. +""" + +import argparse +import json +from pathlib import Path +from tracking_manager import TrackingManager, SongStatus +import sys + + +def show_statistics(tracker): + """Show overall statistics.""" + stats = tracker.get_statistics() + + print("๐ŸŽค Karaoke Downloader Statistics") + print("=" * 50) + print(f"๐Ÿ“Š Total Songs: {stats['total_songs']}") + print(f"๐Ÿ“ Total Playlists: {stats['total_playlists']}") + print(f"โœ… Downloaded Songs: {stats['downloaded_songs']}") + print(f"โŒ Failed Songs: {stats['failed_songs']}") + print(f"โš ๏ธ Partial Downloads: {stats['partial_songs']}") + print(f"๐Ÿ’พ Total Size: {stats['total_size_mb']} MB") + print(f"๐Ÿ•’ Last Updated: {stats['last_updated']}") + + if stats['total_songs'] > 0: + success_rate = (stats['downloaded_songs'] / stats['total_songs']) * 100 + print(f"๐Ÿ“ˆ Success Rate: {success_rate:.1f}%") + + +def list_playlists(tracker): + """List all playlists with their statistics.""" + playlists = tracker.data['playlists'] + + if not playlists: + print("๐Ÿ“ญ No playlists found in tracking database.") + return + + print("๐Ÿ“‹ Playlists in Database") + print("=" * 50) + + for playlist_id, playlist in playlists.items(): + print(f"\n๐ŸŽต {playlist['name']}") + print(f" ID: {playlist_id}") + print(f" URL: {playlist['url']}") + print(f" Songs: {playlist['total_songs']}") + print(f" Downloaded: {playlist['downloaded_songs']}") + print(f" Failed: {playlist['failed_songs']}") + print(f" Added: {playlist['added_date']}") + print(f" Last Synced: {playlist['last_synced'] or 'Never'}") + + +def show_playlist_details(tracker, playlist_id): + """Show detailed information about a specific playlist.""" + if playlist_id not in tracker.data['playlists']: + print(f"โŒ Playlist '{playlist_id}' not found in tracking database.") + return + + playlist = tracker.data['playlists'][playlist_id] + songs = tracker.get_playlist_songs(playlist_id) + + print(f"๐ŸŽต Playlist Details: {playlist['name']}") + print("=" * 50) + print(f"ID: {playlist_id}") + print(f"URL: {playlist['url']}") + print(f"Total Songs: {playlist['total_songs']}") + print(f"Downloaded: {playlist['downloaded_songs']}") + print(f"Failed: {playlist['failed_songs']}") + print(f"Added: {playlist['added_date']}") + print(f"Last Synced: {playlist['last_synced'] or 'Never'}") + + print(f"\n๐Ÿ“ Songs:") + for i, song in enumerate(songs, 1): + status_icon = { + SongStatus.DOWNLOADED: "โœ…", + SongStatus.CONVERTED: "โœ…", + SongStatus.DOWNLOADING: "โณ", + SongStatus.PARTIAL: "โš ๏ธ", + SongStatus.FAILED: "โŒ", + SongStatus.NOT_DOWNLOADED: "โธ๏ธ" + }.get(song['status'], "โ“") + + formats = ", ".join(song['formats'].keys()) if song['formats'] else "None" + print(f" {i:2d}. {status_icon} {song['title']}") + print(f" Video ID: {song['video_id']}") + print(f" Status: {song['status']}") + print(f" Formats: {formats}") + if song['last_error']: + print(f" Error: {song['last_error']}") + print() + + +def show_failed_songs(tracker, playlist_id=None): + """Show all failed songs.""" + if playlist_id: + songs = tracker.get_failed_songs(playlist_id) + if not songs: + print(f"โœ… No failed songs found in playlist '{playlist_id}'.") + return + print(f"โŒ Failed Songs in Playlist: {playlist_id}") + else: + songs = [song for song in tracker.data['songs'].values() + if song['status'] == SongStatus.FAILED] + if not songs: + print("โœ… No failed songs found in any playlist.") + return + print("โŒ All Failed Songs") + + print("=" * 50) + for song in songs: + playlist_name = tracker.data['playlists'][song['playlist_id']]['name'] + print(f"\n๐ŸŽต {song['title']}") + print(f" Playlist: {playlist_name}") + print(f" Video ID: {song['video_id']}") + print(f" Attempts: {song['download_attempts']}") + print(f" Error: {song['last_error']}") + print(f" Last Updated: {song['last_updated']}") + + +def show_partial_downloads(tracker, playlist_id=None): + """Show all partial downloads.""" + if playlist_id: + songs = tracker.get_partial_downloads(playlist_id) + if not songs: + print(f"โœ… No partial downloads found in playlist '{playlist_id}'.") + return + print(f"โš ๏ธ Partial Downloads in Playlist: {playlist_id}") + else: + songs = [song for song in tracker.data['songs'].values() + if song['status'] == SongStatus.PARTIAL] + if not songs: + print("โœ… No partial downloads found in any playlist.") + return + print("โš ๏ธ All Partial Downloads") + + print("=" * 50) + for song in songs: + playlist_name = tracker.data['playlists'][song['playlist_id']]['name'] + print(f"\n๐ŸŽต {song['title']}") + print(f" Playlist: {playlist_name}") + print(f" Video ID: {song['video_id']}") + print(f" Formats: {', '.join(song['formats'].keys())}") + print(f" Last Updated: {song['last_updated']}") + + +def cleanup_orphaned_entries(tracker, downloads_dir): + """Clean up orphaned tracking entries.""" + orphaned = tracker.cleanup_orphaned_files(downloads_dir) + + if orphaned: + print(f"๐Ÿงน Cleaned up {len(orphaned)} orphaned tracking entries:") + for song_id in orphaned: + song = tracker.data['songs'].get(song_id) + if song: + print(f" - {song['title']} (ID: {song['video_id']})") + else: + print("โœ… No orphaned entries found.") + + +def export_database(tracker, output_file): + """Export the tracking database to a JSON file.""" + try: + with open(output_file, 'w', encoding='utf-8') as f: + json.dump(tracker.data, f, indent=2, ensure_ascii=False) + print(f"๐Ÿ’พ Database exported to: {output_file}") + except Exception as e: + print(f"โŒ Failed to export database: {e}") + + +def main(): + parser = argparse.ArgumentParser( + description="Tracking Management Utility for Karaoke Playlist Downloader", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + python manage_tracking.py --stats + python manage_tracking.py --list-playlists + python manage_tracking.py --playlist PLAYLIST_ID + python manage_tracking.py --failed + python manage_tracking.py --partial + python manage_tracking.py --cleanup + python manage_tracking.py --export backup.json + """ + ) + + parser.add_argument( + '--stats', '--statistics', + action='store_true', + help='Show overall statistics' + ) + + parser.add_argument( + '--list-playlists', + action='store_true', + help='List all playlists in the database' + ) + + parser.add_argument( + '--playlist', + metavar='PLAYLIST_ID', + help='Show detailed information about a specific playlist' + ) + + parser.add_argument( + '--failed', + action='store_true', + help='Show all failed songs' + ) + + parser.add_argument( + '--partial', + action='store_true', + help='Show all partial downloads' + ) + + parser.add_argument( + '--cleanup', + action='store_true', + help='Clean up orphaned tracking entries' + ) + + parser.add_argument( + '--export', + metavar='FILE', + help='Export tracking database to JSON file' + ) + + parser.add_argument( + '--tracking-file', + default='karaoke_tracking.json', + help='Path to tracking database file (default: karaoke_tracking.json)' + ) + + args = parser.parse_args() + + # Initialize tracking manager + tracker = TrackingManager(args.tracking_file) + + # Process commands + if args.stats: + show_statistics(tracker) + elif args.list_playlists: + list_playlists(tracker) + elif args.playlist: + show_playlist_details(tracker, args.playlist) + elif args.failed: + show_failed_songs(tracker) + elif args.partial: + show_partial_downloads(tracker) + elif args.cleanup: + downloads_dir = Path("downloads") + cleanup_orphaned_entries(tracker, downloads_dir) + elif args.export: + export_database(tracker, args.export) + else: + parser.print_help() + sys.exit(1) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..99b238a --- /dev/null +++ b/requirements.txt @@ -0,0 +1,21 @@ +# Karaoke Playlist Downloader Requirements + +# Python 3.7+ required for: +# - pathlib.Path (3.4+) +# - f-strings (3.6+) +# - subprocess.run with capture_output (3.7+) + +# Required packages: +mutagen>=1.45.0 + +# Standard library modules used: +# - os +# - sys +# - argparse +# - subprocess +# - json +# - re +# - pathlib +# - urllib.parse +# - logging +# - datetime \ No newline at end of file diff --git a/test_channel.txt b/test_channel.txt new file mode 100644 index 0000000..31e1b4e --- /dev/null +++ b/test_channel.txt @@ -0,0 +1 @@ +https://www.youtube.com/@SingKingKaraoke/videos \ No newline at end of file diff --git a/tracking_manager.py b/tracking_manager.py new file mode 100644 index 0000000..68a60f6 --- /dev/null +++ b/tracking_manager.py @@ -0,0 +1,501 @@ +#!/usr/bin/env python3 +""" +Tracking Manager for Karaoke Playlist Downloader +Handles song tracking, multiple formats, partial downloads, and playlist synchronization. +""" + +import json +import hashlib +import os +from pathlib import Path +from datetime import datetime, timedelta +from typing import Dict, List, Optional, Set +import logging + + +class SongStatus: + """Enum-like class for song download statuses.""" + NOT_DOWNLOADED = "not_downloaded" + DOWNLOADING = "downloading" + DOWNLOADED = "downloaded" + PARTIAL = "partial" + FAILED = "failed" + CONVERTING = "converting" + CONVERTED = "converted" + + +class FormatType: + """Enum-like class for format types.""" + MP4 = "mp4" + MP3 = "mp3" + M4A = "m4a" + WEBM = "webm" + + +class TrackingManager: + def __init__(self, tracking_file: str = "karaoke_tracking.json", cache_file: str = "channel_cache.json"): + self.tracking_file = Path(tracking_file) + self.cache_file = Path(cache_file) + + # Cache settings (must be set before loading cache) + self.cache_duration_hours = 24 # Cache for 24 hours by default + + self.data = self._load_tracking_data() + self.cache = self._load_cache_data() + self.logger = logging.getLogger(__name__) + self._batch_save_pending = False + self._save_timer = None + + def _load_tracking_data(self) -> Dict: + """Load tracking data from JSON file.""" + if self.tracking_file.exists(): + try: + with open(self.tracking_file, 'r', encoding='utf-8') as f: + data = json.load(f) + # Ensure all required top-level keys exist + data.setdefault('version', '1.0') + data.setdefault('last_updated', datetime.now().isoformat()) + data.setdefault('songs', {}) + data.setdefault('playlists', {}) + data.setdefault('formats', {}) + data.setdefault('statistics', {}) + return data + except (json.JSONDecodeError, FileNotFoundError) as e: + print(f"Warning: Could not load tracking file: {e}") + # If file is corrupted, backup and create new one + if self.tracking_file.exists(): + backup_file = self.tracking_file.with_suffix('.json.backup') + try: + self.tracking_file.rename(backup_file) + print(f"Backed up corrupted file to: {backup_file}") + except Exception as backup_error: + print(f"Could not backup corrupted file: {backup_error}") + + # Return default structure + return { + 'version': '1.0', + 'last_updated': datetime.now().isoformat(), + 'songs': {}, + 'playlists': {}, + 'formats': {}, + 'statistics': {} + } + + def _save_tracking_data(self, force_save: bool = False): + """Save tracking data to JSON file with batch saving support.""" + if not force_save: + # Schedule a delayed save instead of immediate save + self._batch_save_pending = True + return + + self.data['last_updated'] = datetime.now().isoformat() + try: + with open(self.tracking_file, 'w', encoding='utf-8') as f: + json.dump(self.data, f, indent=2, ensure_ascii=False) + self._batch_save_pending = False + except Exception as e: + self.logger.error(f"Failed to save tracking data: {e}") + + def force_save(self): + """Force save the tracking data immediately.""" + self._save_tracking_data(force_save=True) + + def _load_cache_data(self) -> Dict: + """Load channel cache data from JSON file.""" + if self.cache_file.exists(): + try: + with open(self.cache_file, 'r', encoding='utf-8') as f: + cache = json.load(f) + # Ensure required structure + cache.setdefault('channels', {}) + cache.setdefault('settings', { + 'cache_duration_hours': self.cache_duration_hours, + 'last_updated': datetime.now().isoformat() + }) + return cache + except (json.JSONDecodeError, FileNotFoundError) as e: + print(f"Warning: Could not load cache file: {e}") + + # Return default cache structure + return { + 'channels': {}, + 'settings': { + 'cache_duration_hours': self.cache_duration_hours, + 'last_updated': datetime.now().isoformat() + } + } + + def _save_cache_data(self): + """Save channel cache data to JSON file.""" + try: + self.cache['settings']['last_updated'] = datetime.now().isoformat() + with open(self.cache_file, 'w', encoding='utf-8') as f: + json.dump(self.cache, f, indent=2, ensure_ascii=False) + except Exception as e: + self.logger.error(f"Failed to save cache data: {e}") + + def get_cached_channel_videos(self, channel_id: str) -> Optional[List[Dict]]: + """Get cached videos for a channel if cache is still valid.""" + if channel_id not in self.cache['channels']: + return None + + channel_cache = self.cache['channels'][channel_id] + cached_time = datetime.fromisoformat(channel_cache['cached_at']) + cache_duration = timedelta(hours=self.cache_duration_hours) + + # Check if cache is still valid + if datetime.now() - cached_time < cache_duration: + self.logger.info(f"Using cached channel data for {channel_id} (cached {cached_time})") + return channel_cache['videos'] + + self.logger.info(f"Channel cache expired for {channel_id}, will refresh") + return None + + def cache_channel_videos(self, channel_id: str, videos: List[Dict]): + """Cache videos for a channel.""" + self.cache['channels'][channel_id] = { + 'videos': videos, + 'cached_at': datetime.now().isoformat(), + 'video_count': len(videos) + } + self._save_cache_data() + self.logger.info(f"Cached {len(videos)} videos for channel {channel_id}") + + def clear_channel_cache(self, channel_id: Optional[str] = None): + """Clear cache for a specific channel or all channels.""" + if channel_id: + if channel_id in self.cache['channels']: + del self.cache['channels'][channel_id] + self._save_cache_data() + self.logger.info(f"Cleared cache for channel {channel_id}") + else: + self.cache['channels'] = {} + self._save_cache_data() + self.logger.info("Cleared all channel caches") + + def set_cache_duration(self, hours: int): + """Set cache duration in hours.""" + self.cache_duration_hours = hours + self.cache['settings']['cache_duration_hours'] = hours + self._save_cache_data() + self.logger.info(f"Cache duration set to {hours} hours") + + def get_cache_info(self) -> Dict: + """Get cache information.""" + total_channels = len(self.cache['channels']) + total_cached_videos = sum(channel['video_count'] for channel in self.cache['channels'].values()) + + return { + 'total_channels': total_channels, + 'total_cached_videos': total_cached_videos, + 'cache_duration_hours': self.cache_duration_hours, + 'last_updated': self.cache['settings']['last_updated'] + } + + def _generate_song_id(self, video_id: str, playlist_id: str) -> str: + """Generate a unique song ID.""" + return f"{video_id}_{playlist_id}" + + def _generate_file_hash(self, file_path: Path) -> str: + """Generate MD5 hash of file for integrity checking.""" + try: + if file_path.exists(): + hash_md5 = hashlib.md5() + with open(file_path, "rb") as f: + for chunk in iter(lambda: f.read(4096), b""): + hash_md5.update(chunk) + return hash_md5.hexdigest() + except Exception as e: + self.logger.warning(f"Could not generate hash for {file_path}: {e}") + return "" + + def add_playlist(self, playlist_id: str, playlist_name: str, playlist_url: str) -> Dict: + """Add or update a playlist in tracking.""" + playlist_data = { + 'name': playlist_name, + 'url': playlist_url, + 'added_date': datetime.now().isoformat(), + 'last_synced': None, + 'total_songs': 0, + 'downloaded_songs': 0, + 'failed_songs': 0, + 'song_ids': [] + } + + self.data['playlists'][playlist_id] = playlist_data + self._save_tracking_data() + return playlist_data + + def add_song(self, video_id: str, playlist_id: str, title: str, duration: Optional[int] = None) -> Dict: + """Add a song to tracking.""" + song_id = self._generate_song_id(video_id, playlist_id) + + song_data = { + 'video_id': video_id, + 'playlist_id': playlist_id, + 'title': title, + 'duration': duration, + 'added_date': datetime.now().isoformat(), + 'last_updated': datetime.now().isoformat(), + 'status': SongStatus.NOT_DOWNLOADED, + 'formats': {}, + 'file_paths': {}, + 'file_hashes': {}, + 'file_sizes': {}, + 'download_attempts': 0, + 'last_error': None, + 'metadata': {} + } + + self.data['songs'][song_id] = song_data + + # Add to playlist's song list + if playlist_id not in self.data['playlists']: + self.add_playlist(playlist_id, f"playlist_{playlist_id}", "") + + if song_id not in self.data['playlists'][playlist_id]['song_ids']: + self.data['playlists'][playlist_id]['song_ids'].append(song_id) + + self._update_playlist_statistics(playlist_id) + self._save_tracking_data() + return song_data + + def update_song_status(self, video_id: str, playlist_id: str, status: str, + format_type: Optional[str] = None, file_path: Optional[Path] = None, + error_message: Optional[str] = None) -> bool: + """Update song status and optionally add format information.""" + song_id = self._generate_song_id(video_id, playlist_id) + + if song_id not in self.data['songs']: + self.logger.warning(f"Song {song_id} not found in tracking") + return False + + song = self.data['songs'][song_id] + song['status'] = status + song['last_updated'] = datetime.now().isoformat() + + if error_message: + song['last_error'] = error_message + + if status == SongStatus.DOWNLOADING: + song['download_attempts'] += 1 + + # Handle format-specific information + if format_type and file_path: + if format_type not in song['formats']: + song['formats'][format_type] = { + 'status': status, + 'file_path': str(file_path), + 'file_size': file_path.stat().st_size if file_path.exists() else 0, + 'file_hash': self._generate_file_hash(file_path), + 'added_date': datetime.now().isoformat() + } + else: + song['formats'][format_type].update({ + 'status': status, + 'file_path': str(file_path), + 'file_size': file_path.stat().st_size if file_path.exists() else 0, + 'file_hash': self._generate_file_hash(file_path) + }) + + song['file_paths'][format_type] = str(file_path) + song['file_hashes'][format_type] = song['formats'][format_type]['file_hash'] + song['file_sizes'][format_type] = song['formats'][format_type]['file_size'] + + self._update_playlist_statistics(playlist_id) + self._save_tracking_data() + return True + + def get_song_status(self, video_id: str, playlist_id: str) -> Optional[Dict]: + """Get current status of a song.""" + song_id = self._generate_song_id(video_id, playlist_id) + return self.data['songs'].get(song_id) + + def is_song_downloaded(self, video_id: str, playlist_id: str, format_type: Optional[str] = None) -> bool: + """Check if a song is downloaded in the specified format.""" + song = self.get_song_status(video_id, playlist_id) + if not song: + return False + + if format_type: + return (format_type in song['formats'] and + song['formats'][format_type]['status'] in [SongStatus.DOWNLOADED, SongStatus.CONVERTED]) + + # Check if any format is downloaded + return any(fmt['status'] in [SongStatus.DOWNLOADED, SongStatus.CONVERTED] + for fmt in song['formats'].values()) + + def get_playlist_songs(self, playlist_id: str) -> List[Dict]: + """Get all songs for a playlist.""" + if playlist_id not in self.data['playlists']: + return [] + + song_ids = self.data['playlists'][playlist_id]['song_ids'] + return [self.data['songs'].get(song_id) for song_id in song_ids + if song_id in self.data['songs']] + + def get_downloaded_songs(self, playlist_id: str, format_type: Optional[str] = None) -> List[Dict]: + """Get all downloaded songs for a playlist.""" + songs = self.get_playlist_songs(playlist_id) + if format_type: + return [song for song in songs if self.is_song_downloaded(song['video_id'], playlist_id, format_type)] + return [song for song in songs if self.is_song_downloaded(song['video_id'], playlist_id)] + + def get_failed_songs(self, playlist_id: str) -> List[Dict]: + """Get all failed songs for a playlist.""" + songs = self.get_playlist_songs(playlist_id) + return [song for song in songs if song['status'] == SongStatus.FAILED] + + def get_partial_downloads(self, playlist_id: str) -> List[Dict]: + """Get songs with partial downloads.""" + songs = self.get_playlist_songs(playlist_id) + return [song for song in songs if song['status'] == SongStatus.PARTIAL] + + def sync_playlist(self, playlist_id: str, current_songs: List[Dict]) -> Dict: + """Sync playlist with current songs from YouTube.""" + if playlist_id not in self.data['playlists']: + return {'added': len(current_songs), 'removed': 0, 'total': len(current_songs)} + + existing_song_ids = set(self.data['playlists'][playlist_id]['song_ids']) + current_song_ids = set() + + added_songs = 0 + for song_info in current_songs: + song_id = self._generate_song_id(song_info['video_id'], playlist_id) + current_song_ids.add(song_id) + + if song_id not in existing_song_ids: + self.add_song( + song_info['video_id'], + playlist_id, + song_info['title'], + song_info.get('duration') + ) + added_songs += 1 + + # Remove songs that no longer exist in playlist + removed_songs = len(existing_song_ids - current_song_ids) + for song_id in existing_song_ids - current_song_ids: + if song_id in self.data['songs']: + del self.data['songs'][song_id] + + # Update playlist sync time + self.data['playlists'][playlist_id]['last_synced'] = datetime.now().isoformat() + self._update_playlist_statistics(playlist_id) + + # Force save after batch operations + self.force_save() + + return { + 'added': added_songs, + 'removed': removed_songs, + 'total': len(current_songs) + } + + def _update_playlist_statistics(self, playlist_id: str): + """Update playlist statistics.""" + if playlist_id not in self.data['playlists']: + return + + songs = self.get_playlist_songs(playlist_id) + playlist = self.data['playlists'][playlist_id] + + playlist['total_songs'] = len(songs) + playlist['downloaded_songs'] = len([s for s in songs if self.is_song_downloaded(s['video_id'], playlist_id)]) + playlist['failed_songs'] = len([s for s in songs if s['status'] == SongStatus.FAILED]) + + def get_statistics(self) -> Dict: + """Get overall statistics.""" + total_songs = len(self.data['songs']) + total_playlists = len(self.data['playlists']) + + downloaded_songs = sum(1 for song in self.data['songs'].values() + if self.is_song_downloaded(song['video_id'], song['playlist_id'])) + + failed_songs = sum(1 for song in self.data['songs'].values() + if song['status'] == SongStatus.FAILED) + + partial_songs = sum(1 for song in self.data['songs'].values() + if song['status'] == SongStatus.PARTIAL) + + total_size = 0 + for song in self.data['songs'].values(): + for size in song['file_sizes'].values(): + total_size += size + + return { + 'total_songs': total_songs, + 'total_playlists': total_playlists, + 'downloaded_songs': downloaded_songs, + 'failed_songs': failed_songs, + 'partial_songs': partial_songs, + 'total_size_bytes': total_size, + 'total_size_mb': round(total_size / (1024 * 1024), 2), + 'last_updated': self.data['last_updated'] + } + + def cleanup_orphaned_files(self, downloads_dir: Path) -> List[str]: + """Remove tracking entries for files that no longer exist.""" + orphaned_songs = [] + + for song_id, song in self.data['songs'].items(): + for format_type, file_path in song['file_paths'].items(): + if not Path(file_path).exists(): + # Remove the format entry + if format_type in song['formats']: + del song['formats'][format_type] + if format_type in song['file_paths']: + del song['file_paths'][format_type] + if format_type in song['file_hashes']: + del song['file_hashes'][format_type] + if format_type in song['file_sizes']: + del song['file_sizes'][format_type] + + # Update status if no formats remain + if not song['formats']: + song['status'] = SongStatus.NOT_DOWNLOADED + + orphaned_songs.append(song_id) + + self._save_tracking_data() + return orphaned_songs + + def export_playlist_report(self, playlist_id: str, output_file: str = None) -> str: + """Export a detailed report for a playlist.""" + if playlist_id not in self.data['playlists']: + return "Playlist not found" + + playlist = self.data['playlists'][playlist_id] + songs = self.get_playlist_songs(playlist_id) + + report = f""" +Karaoke Playlist Report +====================== +Playlist: {playlist['name']} +URL: {playlist['url']} +Total Songs: {playlist['total_songs']} +Downloaded: {playlist['downloaded_songs']} +Failed: {playlist['failed_songs']} +Last Synced: {playlist['last_synced'] or 'Never'} + +Song Details: +""" + + for song in songs: + status_icon = { + SongStatus.DOWNLOADED: "โœ…", + SongStatus.CONVERTED: "โœ…", + SongStatus.DOWNLOADING: "โณ", + SongStatus.PARTIAL: "โš ๏ธ", + SongStatus.FAILED: "โŒ", + SongStatus.NOT_DOWNLOADED: "โธ๏ธ" + }.get(song['status'], "โ“") + + formats = ", ".join(song['formats'].keys()) if song['formats'] else "None" + report += f"{status_icon} {song['title']} ({formats})\n" + + if output_file: + with open(output_file, 'w', encoding='utf-8') as f: + f.write(report) + + return report \ No newline at end of file diff --git a/update_resolution.py b/update_resolution.py new file mode 100644 index 0000000..dde04c8 --- /dev/null +++ b/update_resolution.py @@ -0,0 +1,155 @@ +#!/usr/bin/env python3 +""" +Resolution Update Utility for Karaoke Playlist Downloader +Easily update the preferred video resolution in the configuration. +""" + +import json +import argparse +from pathlib import Path + + +def update_resolution(resolution): + """Update the resolution in config.json file.""" + config_file = Path("config.json") + + # Load existing config or create default + if config_file.exists(): + try: + with open(config_file, 'r', encoding='utf-8') as f: + config = json.load(f) + except json.JSONDecodeError: + print("โŒ Error: Invalid config.json file") + return False + else: + print("๐Ÿ“ Creating new config.json file...") + config = { + "download_settings": { + "format": "best[height<=720][ext=mp4]/best[height<=720]/best[ext=mp4]/best", + "preferred_resolution": "720p", + "audio_format": "mp3", + "audio_quality": "0", + "subtitle_language": "en", + "subtitle_format": "srt", + "write_metadata": True, + "write_thumbnail": True, + "write_description": True, + "write_annotations": True, + "write_comments": True, + "write_subtitles": True, + "embed_metadata": True, + "add_metadata": True, + "continue_downloads": True, + "no_overwrites": True, + "ignore_errors": True, + "no_warnings": False + }, + "folder_structure": { + "downloads_dir": "downloads", + "logs_dir": "logs", + "tracking_file": "karaoke_tracking.json" + }, + "logging": { + "level": "INFO", + "format": "%(asctime)s - %(levelname)s - %(message)s", + "include_console": True, + "include_file": True + }, + "yt_dlp_path": "downloader/yt-dlp.exe" + } + + # Resolution mapping + resolution_map = { + '480p': '480', + '720p': '720', + '1080p': '1080', + '1440p': '1440', + '2160p': '2160' + } + + if resolution not in resolution_map: + print(f"โŒ Error: Invalid resolution '{resolution}'") + print(f"Valid options: {', '.join(resolution_map.keys())}") + return False + + height = resolution_map[resolution] + old_resolution = config["download_settings"].get("preferred_resolution", "720p") + + # Update the format string + config["download_settings"]["format"] = f"best[height<={height}][ext=mp4]/best[height<={height}]/best[ext=mp4]/best" + config["download_settings"]["preferred_resolution"] = resolution + + # Save the updated config + try: + with open(config_file, 'w', encoding='utf-8') as f: + json.dump(config, f, indent=2, ensure_ascii=False) + + print(f"โœ… Successfully updated resolution from {old_resolution} to {resolution}") + print(f"๐Ÿ“ Format string: {config['download_settings']['format']}") + return True + + except Exception as e: + print(f"โŒ Error saving config: {e}") + return False + + +def show_current_resolution(): + """Show the current resolution setting.""" + config_file = Path("config.json") + + if not config_file.exists(): + print("๐Ÿ“ No config.json file found. Using default 720p resolution.") + return + + try: + with open(config_file, 'r', encoding='utf-8') as f: + config = json.load(f) + + current_resolution = config["download_settings"].get("preferred_resolution", "720p") + current_format = config["download_settings"].get("format", "best[height<=720][ext=mp4]/best[height<=720]/best[ext=mp4]/best") + + print(f"๐ŸŽฌ Current resolution: {current_resolution}") + print(f"๐Ÿ“ Format string: {current_format}") + + except json.JSONDecodeError: + print("โŒ Error: Invalid config.json file") + except Exception as e: + print(f"โŒ Error reading config: {e}") + + +def main(): + parser = argparse.ArgumentParser( + description="Update video resolution for Karaoke Playlist Downloader", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + python update_resolution.py --show + python update_resolution.py --resolution 1080p + python update_resolution.py --resolution 720p + """ + ) + + parser.add_argument( + '--resolution', '-r', + choices=['480p', '720p', '1080p', '1440p', '2160p'], + help='Set the preferred video resolution' + ) + + parser.add_argument( + '--show', '-s', + action='store_true', + help='Show current resolution setting' + ) + + args = parser.parse_args() + + if args.show: + show_current_resolution() + elif args.resolution: + update_resolution(args.resolution) + else: + parser.print_help() + + +if __name__ == "__main__": + main() \ No newline at end of file