From 7832a6862344749a0f434fe5a2efb0de07dded2e Mon Sep 17 00:00:00 2001 From: Deepikakumar25 <97097203+Deepikakumar25@users.noreply.github.com> Date: Wed, 12 Jan 2022 20:55:05 +0530 Subject: [PATCH 1/3] Created using Colaboratory --- Deepika_Hit_Song_Prediction.ipynb | 745 ++++++++++++++++++++++++++++++ 1 file changed, 745 insertions(+) create mode 100644 Deepika_Hit_Song_Prediction.ipynb diff --git a/Deepika_Hit_Song_Prediction.ipynb b/Deepika_Hit_Song_Prediction.ipynb new file mode 100644 index 0000000..b2073ec --- /dev/null +++ b/Deepika_Hit_Song_Prediction.ipynb @@ -0,0 +1,745 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "name": "Deepika_Hit_Song_Prediction.ipynb", + "provenance": [], + "authorship_tag": "ABX9TyPGpm+zSmq0ydTWG7giTDm5", + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "85kKHOpRUZI4", + "outputId": "47556cc1-d361-46fb-b4e7-18e039a0a67f" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting billboard.py\n", + " Downloading billboard.py-7.0.0-py2.py3-none-any.whl (7.0 kB)\n", + "Requirement already satisfied: beautifulsoup4>=4.4.1 in /usr/local/lib/python3.7/dist-packages (from billboard.py) (4.6.3)\n", + "Requirement already satisfied: requests>=2.2.1 in /usr/local/lib/python3.7/dist-packages (from billboard.py) (2.23.0)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (2021.10.8)\n", + "Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (3.0.4)\n", + "Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (1.24.3)\n", + "Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (2.10)\n", + "Installing collected packages: billboard.py\n", + "Successfully installed billboard.py-7.0.0\n" + ] + } + ], + "source": [ + "pip install billboard.py" + ] + }, + { + "cell_type": "code", + "source": [ + "pip install youtube_dl" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "q1Yfzxt0VEYg", + "outputId": "7ddbe898-7bbf-4888-cd6d-038580fd2e2e" + }, + "execution_count": 6, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting youtube_dl\n", + " Downloading youtube_dl-2021.12.17-py2.py3-none-any.whl (1.9 MB)\n", + "\u001b[K |████████████████████████████████| 1.9 MB 7.5 MB/s \n", + "\u001b[?25hInstalling collected packages: youtube-dl\n", + "Successfully installed youtube-dl-2021.12.17\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "pip install numpy" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "d7zFAgbve3g1", + "outputId": "83a7c696-0ede-4013-a63c-deea7712abba" + }, + "execution_count": 7, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (1.19.5)\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "pip install pychorus" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "t3KMTwgAe9ik", + "outputId": "ebb08386-06f7-4748-dd39-5b497b802861" + }, + "execution_count": 8, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting pychorus\n", + " Downloading pychorus-v0.1.tar.gz (5.1 kB)\n", + "Requirement already satisfied: librosa in /usr/local/lib/python3.7/dist-packages (from pychorus) (0.8.1)\n", + "Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from pychorus) (1.19.5)\n", + "Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from pychorus) (1.4.1)\n", + "Requirement already satisfied: soundfile in /usr/local/lib/python3.7/dist-packages (from pychorus) (0.10.3.post1)\n", + "Requirement already satisfied: matplotlib in /usr/local/lib/python3.7/dist-packages (from pychorus) (3.2.2)\n", + "Requirement already satisfied: joblib>=0.14 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (1.1.0)\n", + "Requirement already satisfied: resampy>=0.2.2 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (0.2.2)\n", + "Requirement already satisfied: scikit-learn!=0.19.0,>=0.14.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (1.0.2)\n", + "Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (21.3)\n", + "Requirement already satisfied: numba>=0.43.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (0.51.2)\n", + "Requirement already satisfied: audioread>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (2.1.9)\n", + "Requirement already satisfied: decorator>=3.0.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (4.4.2)\n", + "Requirement already satisfied: pooch>=1.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (1.5.2)\n", + "Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from numba>=0.43.0->librosa->pychorus) (57.4.0)\n", + "Requirement already satisfied: llvmlite<0.35,>=0.34.0.dev0 in /usr/local/lib/python3.7/dist-packages (from numba>=0.43.0->librosa->pychorus) (0.34.0)\n", + "Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging>=20.0->librosa->pychorus) (3.0.6)\n", + "Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from pooch>=1.0->librosa->pychorus) (2.23.0)\n", + "Requirement already satisfied: appdirs in /usr/local/lib/python3.7/dist-packages (from pooch>=1.0->librosa->pychorus) (1.4.4)\n", + "Requirement already satisfied: six>=1.3 in /usr/local/lib/python3.7/dist-packages (from resampy>=0.2.2->librosa->pychorus) (1.15.0)\n", + "Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn!=0.19.0,>=0.14.0->librosa->pychorus) (3.0.0)\n", + "Requirement already satisfied: cffi>=1.0 in /usr/local/lib/python3.7/dist-packages (from soundfile->pychorus) (1.15.0)\n", + "Requirement already satisfied: pycparser in /usr/local/lib/python3.7/dist-packages (from cffi>=1.0->soundfile->pychorus) (2.21)\n", + "Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->pychorus) (2.8.2)\n", + "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.7/dist-packages (from matplotlib->pychorus) (0.11.0)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->pychorus) (1.3.2)\n", + "Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (3.0.4)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (2021.10.8)\n", + "Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (1.24.3)\n", + "Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (2.10)\n", + "Building wheels for collected packages: pychorus\n", + " Building wheel for pychorus (setup.py) ... \u001b[?25l\u001b[?25hdone\n", + " Created wheel for pychorus: filename=pychorus-0.1-py3-none-any.whl size=6472 sha256=ed915ee84ac12717168dc977f908f4533ee9d4a9954f96f4c0833c69a4993f31\n", + " Stored in directory: /root/.cache/pip/wheels/50/b8/df/82626ca98c4d1443c1e5a93922e8194063af3c317b4e8444bd\n", + "Successfully built pychorus\n", + "Installing collected packages: pychorus\n", + "Successfully installed pychorus-0.1\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "import billboard\n", + "import pandas as pd\n", + "import librosa\n", + "import pychorus\n", + "import youtube_dl\n", + "import numpy as np\n", + "import scipy" + ], + "metadata": { + "id": "1BTuYb7HjlM1" + }, + "execution_count": 17, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "import billboard\n", + "chart = billboard.ChartData('hot-100')\n", + "chart.title\n", + "\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 35 + }, + "id": "Zzc-SLkVPrz3", + "outputId": "00019fe4-48a8-4c5a-ef18-86c15341a392" + }, + "execution_count": 9, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "string" + }, + "text/plain": [ + "'The Hot 100'" + ] + }, + "metadata": {}, + "execution_count": 9 + } + ] + }, + { + "cell_type": "code", + "source": [ + "" + ], + "metadata": { + "id": "EtuOzP9qfGft" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "song= chart[0]\n", + "print(chart)\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "2UD73HVaPwyh", + "outputId": "2c3d676e-82b9-4c52-acc5-8ce4b325d3be" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "hot-100 chart from 2022-01-15\n", + "-----------------------------\n", + "1. 'Easy On Me' by Adele\n", + "2. 'Stay' by The Kid LAROI & Justin Bieber\n", + "3. 'Heat Waves' by Glass Animals\n", + "4. 'Shivers' by Ed Sheeran\n", + "5. 'We Don't Talk About Bruno' by Carolina Gaitan, Mauro Castillo, Adassa, Rhenzy Feliz, Diane Guerrero, Stephanie Beatriz & Encanto Cast\n", + "6. 'Industry Baby' by Lil Nas X & Jack Harlow\n", + "7. 'Cold Heart (PNAU Remix)' by Elton John & Dua Lipa\n", + "8. 'Bad Habits' by Ed Sheeran\n", + "9. 'Need To Know' by Doja Cat\n", + "10. 'Super Gremlin' by Kodak Black\n", + "11. 'abcdefu' by GAYLE\n", + "12. 'Levitating' by Dua Lipa\n", + "13. 'Smokin Out The Window' by Silk Sonic (Bruno Mars & Anderson .Paak)\n", + "14. 'Surface Pressure' by Jessica Darrow\n", + "15. 'Good 4 U' by Olivia Rodrigo\n", + "16. 'Fancy Like' by Walker Hayes\n", + "17. 'Ghost' by Justin Bieber\n", + "18. 'Save Your Tears' by The Weeknd & Ariana Grande\n", + "19. 'Kiss Me More' by Doja Cat Featuring SZA\n", + "20. 'Thats What I Want' by Lil Nas X\n", + "21. 'Essence' by Wizkid Featuring Justin Bieber & Tems\n", + "22. 'One Right Now' by Post Malone & The Weeknd\n", + "23. 'Better Days' by NEIKED X Mae Muller X Polo G\n", + "24. 'Oh My God' by Adele\n", + "25. 'You Right' by Doja Cat & The Weeknd\n", + "26. 'Happier Than Ever' by Billie Eilish\n", + "27. 'Broadway Girls' by Lil Durk Featuring Morgan Wallen\n", + "28. 'Buy Dirt' by Jordan Davis Featuring Luke Bryan\n", + "29. 'Love Nwantiti (Ah Ah Ah)' by CKay\n", + "30. 'I Hate U' by SZA\n", + "31. 'Knife Talk' by Drake Featuring 21 Savage & Project Pat\n", + "32. 'You Should Probably Leave' by Chris Stapleton\n", + "33. 'Way 2 Sexy' by Drake Featuring Future & Young Thug\n", + "34. 'Hrs And Hrs' by Muni Long\n", + "35. 'If I Didn't Love You' by Jason Aldean & Carrie Underwood\n", + "36. 'Thinking 'Bout You' by Dustin Lynch Featuring Lauren Alaina Or MacKenzie Porter\n", + "37. 'Whiskey And Rain' by Michael Ray\n", + "38. 'Beggin'' by Maneskin\n", + "39. 'Meet Me At Our Spot' by THE ANXIETY: WILLOW & Tyler Cole\n", + "40. 'One Mississippi' by Kane Brown\n", + "41. 'Montero (Call Me By Your Name)' by Lil Nas X\n", + "42. 'Big Energy' by Latto\n", + "43. 'Sand In My Boots' by Morgan Wallen\n", + "44. 'Girls Want Girls' by Drake Featuring Lil Baby\n", + "45. 'Freedom Was A Highway' by Jimmie Allen & Brad Paisley\n", + "46. 'Pepas' by Farruko\n", + "47. 'Who Want Smoke??' by Nardo Wick Featuring G Herbo, Lil Durk & 21 Savage\n", + "48. 'Enemy' by Imagine Dragons X JID\n", + "49. 'Leave The Door Open' by Silk Sonic (Bruno Mars & Anderson .Paak)\n", + "50. 'Chasing After You' by Ryan Hurd With Maren Morris\n", + "51. 'Chosen' by Blxst & Tyga Featuring Ty Dolla $ign\n", + "52. 'To Be Loved By You' by Parker McCollum\n", + "53. 'Half Of My Hometown' by Kelsea Ballerini Featuring Kenny Chesney\n", + "54. 'Have Mercy' by Chloe\n", + "55. 'All Too Well (Taylor's Version)' by Taylor Swift\n", + "56. 'Woman' by Doja Cat\n", + "57. ''Til You Can't' by Cody Johnson\n", + "58. 'My Universe' by Coldplay x BTS\n", + "59. 'Heart On Fire' by Eric Church\n", + "60. 'Tequila Little Time' by Jon Pardi\n", + "61. 'For Tonight' by Giveon\n", + "62. 'The Family Madrigal' by Stephanie Beatriz, Olga Merediz & Encanto Cast\n", + "63. 'Message In A Bottle (Taylor's Version) (From The Vault)' by Taylor Swift\n", + "64. 'By Your Side' by Rod Wave\n", + "65. 'Do It To It' by Acraze Featuring Cherish\n", + "66. 'Scorpio' by Moneybagg Yo\n", + "67. 'What Else Can I Do?' by Diane Guerrero & Stephanie Beatriz\n", + "68. 'Flower Shops' by ERNEST Featuring Morgan Wallen\n", + "69. 'Fingers Crossed' by Lauren Spencer-Smith\n", + "70. 'Same Boat' by Zac Brown Band\n", + "71. 'Life Goes On' by Oliver Tree\n", + "72. 'Beers On Me' by Dierks Bentley, Breland & HARDY\n", + "73. 'Poke It Out' by Wale Featuring J. Cole\n", + "74. 'I Am Woman' by Emmy Meli\n", + "75. '23' by Sam Hunt\n", + "76. 'Doin' This' by Luke Combs\n", + "77. 'Burn' by Juice WRLD\n", + "78. 'Bubbly' by Young Thug With Drake & Travis Scott\n", + "79. 'Pressure' by Ari Lennox\n", + "80. 'No Love' by Summer Walker & SZA\n", + "81. 'Family Ties' by Baby Keem & Kendrick Lamar\n", + "82. 'Waiting On A Miracle' by Stephanie Beatriz\n", + "83. 'Dos Oruguitas' by Sebastian Yatra\n", + "84. 'Too Easy' by Gunna & Future\n", + "85. 'Fair Trade' by Drake Featuring Travis Scott\n", + "86. 'Volvi' by Aventura x Bad Bunny\n", + "87. 'AA' by Walker Hayes\n", + "88. 'Come Through' by H.E.R. Featuring Chris Brown\n", + "89. 'Wandered To LA.' by Juice WRLD & Justin Bieber\n", + "90. 'Home Sweet' by Russell Dickerson\n", + "91. 'Come Back As A Country Boy' by Blake Shelton\n", + "92. 'Already Dead' by Juice WRLD\n", + "93. 'Black Ball' by YoungBoy Never Broke Again & Birdman\n", + "94. 'Baddest' by Yung Bleu, Chris Brown & 2 Chainz\n", + "95. 'Moth To A Flame' by Swedish House Mafia & The Weeknd\n", + "96. 'Me Or Sum' by Nardo Wick, Lil Baby & Future\n", + "97. 'I Love You So' by The Walters\n", + "98. 'Bad Man (Smooth Criminal)' by Polo G\n", + "99. 'Never Wanted To Be That Girl' by Carly Pearce & Ashley McBryde\n", + "100. 'Just About Over You' by Priscilla Block\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "" + ], + "metadata": { + "id": "yKZEJ1Z4iWW0" + } + }, + { + "cell_type": "code", + "source": [ + "year = [\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\",\"2017\",\"2018\",\"2019\",\"2020\",\"2021\",\"2022\"]\n", + "month = [\"01\",\"02\",\"03\",\"04\",\"05\",\"06\",\"07\",\"08\",\"09\",\"10\",\"11\",\"12\"]\n", + "day = [\"07\",\"15\",\"22\",\"28\"]\n" + ], + "metadata": { + "id": "Ou8RoQj6VF8A" + }, + "execution_count": 42, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "songs=[]\n", + "artist=[]\n", + "popular=[]\n", + "alternative=[]\n", + "year_to_disaplay=[]" + ], + "metadata": { + "id": "P1XqSPuOVWqS" + }, + "execution_count": 43, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "for y in year:\n", + " for m in month:\n", + " for d in day:\n", + " chart = billboard.ChartData('pop-songs',date = y+\"-\"+m+\"-\"+d)\n", + " for i in range(len(chart)):\n", + " if chart[i].title not in songs:\n", + " songs.append(chart[i].title)\n", + " artist.append(chart[i].artist)\n", + " popular.append(1)" + ], + "metadata": { + "id": "lFlXVVtfVcwS" + }, + "execution_count": 30, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "df1 = pd.DataFrame({\"Songs\":songs,\"Artist\":artist,\"Label\":popular})\n", + "df1.head()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 49 + }, + "id": "uAkK4uuFiYR0", + "outputId": "8be35f9f-c89e-45e0-8a27-ced7cf38321b" + }, + "execution_count": 46, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/html": [ + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SongsArtistLabel
\n", + "
\n", + " \n", + " \n", + " \n", + "\n", + " \n", + "
\n", + "
\n", + " " + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Songs, Artist, Label]\n", + "Index: []" + ] + }, + "metadata": {}, + "execution_count": 46 + } + ] + }, + { + "cell_type": "code", + "source": [ + "for y in year:\n", + " for m in month:\n", + " for d in day:\n", + " chart = billboard.ChartData('alternative-songs',date = y+\"-\"+m+\"-\"+d)\n", + " for i in range(len(chart)):\n", + " if chart[i].title not in songs:\n", + " songs.append(chart[i].title)\n", + " artist.append(chart[i].artist)\n", + " popular.append(0)" + ], + "metadata": { + "id": "LxFjl0E3lhJr" + }, + "execution_count": 21, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "" + ], + "metadata": { + "id": "E7i6AoUank5J" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "df1 = pd.DataFrame({\"Songs\":songs,\"Artist\":artist,\"Label\":alternative})\n", + "df1.head()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 49 + }, + "outputId": "bd5a0a9c-972d-4d2b-ada6-bf6311ff1c43", + "id": "aHgLPdISn7VT" + }, + "execution_count": 26, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/html": [ + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SongsArtistLabel
\n", + "
\n", + " \n", + " \n", + " \n", + "\n", + " \n", + "
\n", + "
\n", + " " + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Songs, Artist, Label]\n", + "Index: []" + ] + }, + "metadata": {}, + "execution_count": 26 + } + ] + }, + { + "cell_type": "code", + "source": [ + "year = [\"2007\"]\n", + "month = [\"01\",\"02\",\"03\",\"04\",\"05\",\"06\",\"07\",\"08\",\"09\",\"10\",\"11\",\"12\"]\n", + "day = [\"07\",\"15\",\"22\",\"28\"]\n" + ], + "metadata": { + "id": "zlwy_5Kez2-l" + }, + "execution_count": 28, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "" + ], + "metadata": { + "id": "krMKT9Wmz6Wb" + }, + "execution_count": null, + "outputs": [] + } + ] +} \ No newline at end of file From 20bfa4a2a506de2f16ffcb2dbc76c4b559ce92d2 Mon Sep 17 00:00:00 2001 From: Deepikakumar25 <97097203+Deepikakumar25@users.noreply.github.com> Date: Wed, 12 Jan 2022 23:24:30 +0530 Subject: [PATCH 2/3] Billboard- popular songs --- Deepika_HitSongPrediction_step1.ipynb | 666 ++++++++++++++++++++++++++ 1 file changed, 666 insertions(+) create mode 100644 Deepika_HitSongPrediction_step1.ipynb diff --git a/Deepika_HitSongPrediction_step1.ipynb b/Deepika_HitSongPrediction_step1.ipynb new file mode 100644 index 0000000..acd6526 --- /dev/null +++ b/Deepika_HitSongPrediction_step1.ipynb @@ -0,0 +1,666 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "name": "Deepika_HitSongPrediction_step1", + "provenance": [], + "collapsed_sections": [], + "authorship_tag": "ABX9TyOsFFjuxbi9xmY72LZB7sdd", + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "zBX0XIePOVol", + "outputId": "b420c3b2-638e-4e9c-e2ce-a4a4568082e7" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: billboard.py in /usr/local/lib/python3.7/dist-packages (7.0.0)\n", + "Requirement already satisfied: beautifulsoup4>=4.4.1 in /usr/local/lib/python3.7/dist-packages (from billboard.py) (4.6.3)\n", + "Requirement already satisfied: requests>=2.2.1 in /usr/local/lib/python3.7/dist-packages (from billboard.py) (2.23.0)\n", + "Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (1.24.3)\n", + "Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (2.10)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (2021.10.8)\n", + "Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (3.0.4)\n" + ] + } + ], + "source": [ + "pip install billboard.py" + ] + }, + { + "cell_type": "code", + "source": [ + "pip install youtube_dl" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "q1Yfzxt0VEYg", + "outputId": "9865c924-545e-4edf-a716-75f5e0f5c34d" + }, + "execution_count": 12, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting youtube_dl\n", + " Downloading youtube_dl-2021.12.17-py2.py3-none-any.whl (1.9 MB)\n", + "\u001b[K |████████████████████████████████| 1.9 MB 6.8 MB/s \n", + "\u001b[?25hInstalling collected packages: youtube-dl\n", + "Successfully installed youtube-dl-2021.12.17\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "pip install numpy" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "d7zFAgbve3g1", + "outputId": "d6e6ccb2-1a54-4df0-90b2-f27ca0574fbb" + }, + "execution_count": 13, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (1.19.5)\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "pip install pychorus" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "t3KMTwgAe9ik", + "outputId": "fe915dac-1b3b-4639-e4e7-727cf2abad5c" + }, + "execution_count": 14, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting pychorus\n", + " Downloading pychorus-v0.1.tar.gz (5.1 kB)\n", + "Requirement already satisfied: librosa in /usr/local/lib/python3.7/dist-packages (from pychorus) (0.8.1)\n", + "Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from pychorus) (1.19.5)\n", + "Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from pychorus) (1.4.1)\n", + "Requirement already satisfied: soundfile in /usr/local/lib/python3.7/dist-packages (from pychorus) (0.10.3.post1)\n", + "Requirement already satisfied: matplotlib in /usr/local/lib/python3.7/dist-packages (from pychorus) (3.2.2)\n", + "Requirement already satisfied: decorator>=3.0.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (4.4.2)\n", + "Requirement already satisfied: joblib>=0.14 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (1.1.0)\n", + "Requirement already satisfied: scikit-learn!=0.19.0,>=0.14.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (1.0.2)\n", + "Requirement already satisfied: numba>=0.43.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (0.51.2)\n", + "Requirement already satisfied: resampy>=0.2.2 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (0.2.2)\n", + "Requirement already satisfied: pooch>=1.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (1.5.2)\n", + "Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (21.3)\n", + "Requirement already satisfied: audioread>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (2.1.9)\n", + "Requirement already satisfied: llvmlite<0.35,>=0.34.0.dev0 in /usr/local/lib/python3.7/dist-packages (from numba>=0.43.0->librosa->pychorus) (0.34.0)\n", + "Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from numba>=0.43.0->librosa->pychorus) (57.4.0)\n", + "Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging>=20.0->librosa->pychorus) (3.0.6)\n", + "Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from pooch>=1.0->librosa->pychorus) (2.23.0)\n", + "Requirement already satisfied: appdirs in /usr/local/lib/python3.7/dist-packages (from pooch>=1.0->librosa->pychorus) (1.4.4)\n", + "Requirement already satisfied: six>=1.3 in /usr/local/lib/python3.7/dist-packages (from resampy>=0.2.2->librosa->pychorus) (1.15.0)\n", + "Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn!=0.19.0,>=0.14.0->librosa->pychorus) (3.0.0)\n", + "Requirement already satisfied: cffi>=1.0 in /usr/local/lib/python3.7/dist-packages (from soundfile->pychorus) (1.15.0)\n", + "Requirement already satisfied: pycparser in /usr/local/lib/python3.7/dist-packages (from cffi>=1.0->soundfile->pychorus) (2.21)\n", + "Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->pychorus) (2.8.2)\n", + "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.7/dist-packages (from matplotlib->pychorus) (0.11.0)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->pychorus) (1.3.2)\n", + "Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (3.0.4)\n", + "Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (1.24.3)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (2021.10.8)\n", + "Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (2.10)\n", + "Building wheels for collected packages: pychorus\n", + " Building wheel for pychorus (setup.py) ... \u001b[?25l\u001b[?25hdone\n", + " Created wheel for pychorus: filename=pychorus-0.1-py3-none-any.whl size=6472 sha256=7817144c004fc71826bb161a8ac041aece7b8a5f8b3a51d55596bd1a05ad9f84\n", + " Stored in directory: /root/.cache/pip/wheels/50/b8/df/82626ca98c4d1443c1e5a93922e8194063af3c317b4e8444bd\n", + "Successfully built pychorus\n", + "Installing collected packages: pychorus\n", + "Successfully installed pychorus-0.1\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "import billboard\n", + "import pandas as pd\n", + "import librosa\n", + "import pychorus\n", + "import youtube_dl\n", + "import numpy as np\n", + "import scipy" + ], + "metadata": { + "id": "1BTuYb7HjlM1" + }, + "execution_count": 15, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "import billboard\n", + "chart = billboard.ChartData('hot-100')\n", + "chart.title\n", + "'The Hot 100'\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 35 + }, + "id": "Zzc-SLkVPrz3", + "outputId": "9d2c9516-9f0a-4676-8ce1-8953554b6186" + }, + "execution_count": 6, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "string" + }, + "text/plain": [ + "'The Hot 100'" + ] + }, + "metadata": {}, + "execution_count": 6 + } + ] + }, + { + "cell_type": "code", + "source": [ + "song= chart[0]\n", + "print(chart)\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "2UD73HVaPwyh", + "outputId": "2c3d676e-82b9-4c52-acc5-8ce4b325d3be" + }, + "execution_count": 10, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "hot-100 chart from 2022-01-15\n", + "-----------------------------\n", + "1. 'Easy On Me' by Adele\n", + "2. 'Stay' by The Kid LAROI & Justin Bieber\n", + "3. 'Heat Waves' by Glass Animals\n", + "4. 'Shivers' by Ed Sheeran\n", + "5. 'We Don't Talk About Bruno' by Carolina Gaitan, Mauro Castillo, Adassa, Rhenzy Feliz, Diane Guerrero, Stephanie Beatriz & Encanto Cast\n", + "6. 'Industry Baby' by Lil Nas X & Jack Harlow\n", + "7. 'Cold Heart (PNAU Remix)' by Elton John & Dua Lipa\n", + "8. 'Bad Habits' by Ed Sheeran\n", + "9. 'Need To Know' by Doja Cat\n", + "10. 'Super Gremlin' by Kodak Black\n", + "11. 'abcdefu' by GAYLE\n", + "12. 'Levitating' by Dua Lipa\n", + "13. 'Smokin Out The Window' by Silk Sonic (Bruno Mars & Anderson .Paak)\n", + "14. 'Surface Pressure' by Jessica Darrow\n", + "15. 'Good 4 U' by Olivia Rodrigo\n", + "16. 'Fancy Like' by Walker Hayes\n", + "17. 'Ghost' by Justin Bieber\n", + "18. 'Save Your Tears' by The Weeknd & Ariana Grande\n", + "19. 'Kiss Me More' by Doja Cat Featuring SZA\n", + "20. 'Thats What I Want' by Lil Nas X\n", + "21. 'Essence' by Wizkid Featuring Justin Bieber & Tems\n", + "22. 'One Right Now' by Post Malone & The Weeknd\n", + "23. 'Better Days' by NEIKED X Mae Muller X Polo G\n", + "24. 'Oh My God' by Adele\n", + "25. 'You Right' by Doja Cat & The Weeknd\n", + "26. 'Happier Than Ever' by Billie Eilish\n", + "27. 'Broadway Girls' by Lil Durk Featuring Morgan Wallen\n", + "28. 'Buy Dirt' by Jordan Davis Featuring Luke Bryan\n", + "29. 'Love Nwantiti (Ah Ah Ah)' by CKay\n", + "30. 'I Hate U' by SZA\n", + "31. 'Knife Talk' by Drake Featuring 21 Savage & Project Pat\n", + "32. 'You Should Probably Leave' by Chris Stapleton\n", + "33. 'Way 2 Sexy' by Drake Featuring Future & Young Thug\n", + "34. 'Hrs And Hrs' by Muni Long\n", + "35. 'If I Didn't Love You' by Jason Aldean & Carrie Underwood\n", + "36. 'Thinking 'Bout You' by Dustin Lynch Featuring Lauren Alaina Or MacKenzie Porter\n", + "37. 'Whiskey And Rain' by Michael Ray\n", + "38. 'Beggin'' by Maneskin\n", + "39. 'Meet Me At Our Spot' by THE ANXIETY: WILLOW & Tyler Cole\n", + "40. 'One Mississippi' by Kane Brown\n", + "41. 'Montero (Call Me By Your Name)' by Lil Nas X\n", + "42. 'Big Energy' by Latto\n", + "43. 'Sand In My Boots' by Morgan Wallen\n", + "44. 'Girls Want Girls' by Drake Featuring Lil Baby\n", + "45. 'Freedom Was A Highway' by Jimmie Allen & Brad Paisley\n", + "46. 'Pepas' by Farruko\n", + "47. 'Who Want Smoke??' by Nardo Wick Featuring G Herbo, Lil Durk & 21 Savage\n", + "48. 'Enemy' by Imagine Dragons X JID\n", + "49. 'Leave The Door Open' by Silk Sonic (Bruno Mars & Anderson .Paak)\n", + "50. 'Chasing After You' by Ryan Hurd With Maren Morris\n", + "51. 'Chosen' by Blxst & Tyga Featuring Ty Dolla $ign\n", + "52. 'To Be Loved By You' by Parker McCollum\n", + "53. 'Half Of My Hometown' by Kelsea Ballerini Featuring Kenny Chesney\n", + "54. 'Have Mercy' by Chloe\n", + "55. 'All Too Well (Taylor's Version)' by Taylor Swift\n", + "56. 'Woman' by Doja Cat\n", + "57. ''Til You Can't' by Cody Johnson\n", + "58. 'My Universe' by Coldplay x BTS\n", + "59. 'Heart On Fire' by Eric Church\n", + "60. 'Tequila Little Time' by Jon Pardi\n", + "61. 'For Tonight' by Giveon\n", + "62. 'The Family Madrigal' by Stephanie Beatriz, Olga Merediz & Encanto Cast\n", + "63. 'Message In A Bottle (Taylor's Version) (From The Vault)' by Taylor Swift\n", + "64. 'By Your Side' by Rod Wave\n", + "65. 'Do It To It' by Acraze Featuring Cherish\n", + "66. 'Scorpio' by Moneybagg Yo\n", + "67. 'What Else Can I Do?' by Diane Guerrero & Stephanie Beatriz\n", + "68. 'Flower Shops' by ERNEST Featuring Morgan Wallen\n", + "69. 'Fingers Crossed' by Lauren Spencer-Smith\n", + "70. 'Same Boat' by Zac Brown Band\n", + "71. 'Life Goes On' by Oliver Tree\n", + "72. 'Beers On Me' by Dierks Bentley, Breland & HARDY\n", + "73. 'Poke It Out' by Wale Featuring J. Cole\n", + "74. 'I Am Woman' by Emmy Meli\n", + "75. '23' by Sam Hunt\n", + "76. 'Doin' This' by Luke Combs\n", + "77. 'Burn' by Juice WRLD\n", + "78. 'Bubbly' by Young Thug With Drake & Travis Scott\n", + "79. 'Pressure' by Ari Lennox\n", + "80. 'No Love' by Summer Walker & SZA\n", + "81. 'Family Ties' by Baby Keem & Kendrick Lamar\n", + "82. 'Waiting On A Miracle' by Stephanie Beatriz\n", + "83. 'Dos Oruguitas' by Sebastian Yatra\n", + "84. 'Too Easy' by Gunna & Future\n", + "85. 'Fair Trade' by Drake Featuring Travis Scott\n", + "86. 'Volvi' by Aventura x Bad Bunny\n", + "87. 'AA' by Walker Hayes\n", + "88. 'Come Through' by H.E.R. Featuring Chris Brown\n", + "89. 'Wandered To LA.' by Juice WRLD & Justin Bieber\n", + "90. 'Home Sweet' by Russell Dickerson\n", + "91. 'Come Back As A Country Boy' by Blake Shelton\n", + "92. 'Already Dead' by Juice WRLD\n", + "93. 'Black Ball' by YoungBoy Never Broke Again & Birdman\n", + "94. 'Baddest' by Yung Bleu, Chris Brown & 2 Chainz\n", + "95. 'Moth To A Flame' by Swedish House Mafia & The Weeknd\n", + "96. 'Me Or Sum' by Nardo Wick, Lil Baby & Future\n", + "97. 'I Love You So' by The Walters\n", + "98. 'Bad Man (Smooth Criminal)' by Polo G\n", + "99. 'Never Wanted To Be That Girl' by Carly Pearce & Ashley McBryde\n", + "100. 'Just About Over You' by Priscilla Block\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "year = [str(x) for x in range(2006,2022)] #\n", + "month = [\"01\",\"02\",\"03\",\"04\",\"05\",\"06\",\"07\",\"08\",\"09\",\"10\",\"11\",\"12\"]\n", + "day = [\"07\",\"15\",\"22\",\"28\"]\n", + "\n", + "songs =[]\n", + "artist = []\n", + "popular = []\n", + "\n", + "for y in year:\n", + " for m in month:\n", + " for d in day:\n", + " chart = billboard.ChartData('pop-songs',date = y+\"-\"+m+\"-\"+d)\n", + " for i in range(len(chart)):\n", + " if chart[i].title not in songs:\n", + " songs.append(chart[i].title)\n", + " artist.append(chart[i].artist)\n", + " popular.append(1)" + ], + "metadata": { + "id": "RDm8FZy1RRDx" + }, + "execution_count": 11, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "df1 = pd.DataFrame({\"Songs\":songs,\"Artist\":artist,\"Label\":popular})\n", + "display(df1)\n", + "#df1.head()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 655 + }, + "id": "uAkK4uuFiYR0", + "outputId": "3368b357-fa37-4cff-ad6e-ec1cdbbb785e" + }, + "execution_count": 17, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SongsArtistLabel
0Run It!Chris Brown1
1StickwituThe Pussycat Dolls1
2Because Of YouKelly Clarkson1
3Don't Forget About UsMariah Carey1
4PhotographNickelback1
............
2129The WeekendBIBI & 347aidan1
2130Big EnergyLatto1
2131Good OnesCharli XCX1
2132Merry ChristmasEd Sheeran & Elton John1
2133It Was A... (Masked Christmas)Jimmy Fallon + Ariana Grande + Megan Thee Stal...1
\n", + "

2134 rows × 3 columns

\n", + "
\n", + " \n", + " \n", + " \n", + "\n", + " \n", + "
\n", + "
\n", + " " + ], + "text/plain": [ + " Songs ... Label\n", + "0 Run It! ... 1\n", + "1 Stickwitu ... 1\n", + "2 Because Of You ... 1\n", + "3 Don't Forget About Us ... 1\n", + "4 Photograph ... 1\n", + "... ... ... ...\n", + "2129 The Weekend ... 1\n", + "2130 Big Energy ... 1\n", + "2131 Good Ones ... 1\n", + "2132 Merry Christmas ... 1\n", + "2133 It Was A... (Masked Christmas) ... 1\n", + "\n", + "[2134 rows x 3 columns]" + ] + }, + "metadata": {} + } + ] + }, + { + "cell_type": "code", + "source": [ + "year = [str(x) for x in range(2006,2022)] #\n", + "month = [\"01\",\"02\",\"03\",\"04\",\"05\",\"06\",\"07\",\"08\",\"09\",\"10\",\"11\",\"12\"]\n", + "day = [\"07\",\"15\",\"22\",\"28\"]\n", + "\n", + "songs =[]\n", + "artist = []\n", + "popular = []\n", + "\n", + "for y in year:\n", + " for m in month:\n", + " for d in day:\n", + " chart = billboard.ChartData('alternative-songs',date = y+\"-\"+m+\"-\"+d)\n", + " for i in range(len(chart)):\n", + " if chart[i].title not in songs:\n", + " songs.append(chart[i].title)\n", + " artist.append(chart[i].artist)\n", + " popular.append(0)" + ], + "metadata": { + "id": "o_6nPczjBSxa" + }, + "execution_count": 18, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "" + ], + "metadata": { + "id": "OKzCjwazXfdb" + } + }, + { + "cell_type": "code", + "source": [ + "" + ], + "metadata": { + "id": "9drg-LIVbP8j" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "df1 = pd.DataFrame({\"Songs\":songs,\"Artist\":artist,\"Label\":alternative})\n", + "display(df1)\n", + "#df1.head()" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 200 + }, + "outputId": "60c4327f-24d2-497f-9596-0f9c528351ed", + "id": "kzYwlES0bT0c" + }, + "execution_count": 19, + "outputs": [ + { + "output_type": "error", + "ename": "NameError", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mdf1\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mpd\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mDataFrame\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m{\u001b[0m\u001b[0;34m\"Songs\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0msongs\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\"Artist\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0martist\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\"Label\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0malternative\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mdisplay\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdf1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;31m#df1.head()\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mNameError\u001b[0m: name 'alternative' is not defined" + ] + } + ] + } + ] +} \ No newline at end of file From 8584c85305db4f7d8f2ae786dc7466aef4e13562 Mon Sep 17 00:00:00 2001 From: Deepikakumar25 <97097203+Deepikakumar25@users.noreply.github.com> Date: Sun, 16 Jan 2022 22:24:19 +0530 Subject: [PATCH 3/3] Popular and unpopular songs --- Deepika-youtube-dl.ipynb | 6138 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 6138 insertions(+) create mode 100644 Deepika-youtube-dl.ipynb diff --git a/Deepika-youtube-dl.ipynb b/Deepika-youtube-dl.ipynb new file mode 100644 index 0000000..83edd59 --- /dev/null +++ b/Deepika-youtube-dl.ipynb @@ -0,0 +1,6138 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "name": "Untitled0.ipynb", + "provenance": [], + "collapsed_sections": [], + "authorship_tag": "ABX9TyNnvIS82G/RAezml2lMrART", + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "zBX0XIePOVol", + "outputId": "f31a6d69-c180-4a1b-fe98-c71104cc2c7c" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting billboard.py\n", + " Downloading billboard.py-7.0.0-py2.py3-none-any.whl (7.0 kB)\n", + "Requirement already satisfied: requests>=2.2.1 in /usr/local/lib/python3.7/dist-packages (from billboard.py) (2.23.0)\n", + "Requirement already satisfied: beautifulsoup4>=4.4.1 in /usr/local/lib/python3.7/dist-packages (from billboard.py) (4.6.3)\n", + "Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (1.24.3)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (2021.10.8)\n", + "Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (3.0.4)\n", + "Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.2.1->billboard.py) (2.10)\n", + "Installing collected packages: billboard.py\n", + "Successfully installed billboard.py-7.0.0\n" + ] + } + ], + "source": [ + "pip install billboard.py" + ] + }, + { + "cell_type": "code", + "source": [ + "pip install youtube_dl" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "q1Yfzxt0VEYg", + "outputId": "671b06f5-db5c-4d7a-a1b8-b0c4d49f29c6" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting youtube_dl\n", + " Downloading youtube_dl-2021.12.17-py2.py3-none-any.whl (1.9 MB)\n", + "\u001b[K |████████████████████████████████| 1.9 MB 5.1 MB/s \n", + "\u001b[?25hInstalling collected packages: youtube-dl\n", + "Successfully installed youtube-dl-2021.12.17\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "pip install numpy" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "d7zFAgbve3g1", + "outputId": "5b7bee53-e9b5-473e-fffb-0ade1a3fd24a" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (1.19.5)\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "pip install pychorus" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "t3KMTwgAe9ik", + "outputId": "90c3a41d-c4f2-49e0-9b59-cddc53e75b25" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting pychorus\n", + " Downloading pychorus-v0.1.tar.gz (5.1 kB)\n", + "Requirement already satisfied: librosa in /usr/local/lib/python3.7/dist-packages (from pychorus) (0.8.1)\n", + "Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from pychorus) (1.19.5)\n", + "Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from pychorus) (1.4.1)\n", + "Requirement already satisfied: soundfile in /usr/local/lib/python3.7/dist-packages (from pychorus) (0.10.3.post1)\n", + "Requirement already satisfied: matplotlib in /usr/local/lib/python3.7/dist-packages (from pychorus) (3.2.2)\n", + "Requirement already satisfied: audioread>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (2.1.9)\n", + "Requirement already satisfied: scikit-learn!=0.19.0,>=0.14.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (1.0.2)\n", + "Requirement already satisfied: pooch>=1.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (1.5.2)\n", + "Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (21.3)\n", + "Requirement already satisfied: joblib>=0.14 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (1.1.0)\n", + "Requirement already satisfied: decorator>=3.0.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (4.4.2)\n", + "Requirement already satisfied: numba>=0.43.0 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (0.51.2)\n", + "Requirement already satisfied: resampy>=0.2.2 in /usr/local/lib/python3.7/dist-packages (from librosa->pychorus) (0.2.2)\n", + "Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from numba>=0.43.0->librosa->pychorus) (57.4.0)\n", + "Requirement already satisfied: llvmlite<0.35,>=0.34.0.dev0 in /usr/local/lib/python3.7/dist-packages (from numba>=0.43.0->librosa->pychorus) (0.34.0)\n", + "Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging>=20.0->librosa->pychorus) (3.0.6)\n", + "Requirement already satisfied: appdirs in /usr/local/lib/python3.7/dist-packages (from pooch>=1.0->librosa->pychorus) (1.4.4)\n", + "Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from pooch>=1.0->librosa->pychorus) (2.23.0)\n", + "Requirement already satisfied: six>=1.3 in /usr/local/lib/python3.7/dist-packages (from resampy>=0.2.2->librosa->pychorus) (1.15.0)\n", + "Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn!=0.19.0,>=0.14.0->librosa->pychorus) (3.0.0)\n", + "Requirement already satisfied: cffi>=1.0 in /usr/local/lib/python3.7/dist-packages (from soundfile->pychorus) (1.15.0)\n", + "Requirement already satisfied: pycparser in /usr/local/lib/python3.7/dist-packages (from cffi>=1.0->soundfile->pychorus) (2.21)\n", + "Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->pychorus) (2.8.2)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib->pychorus) (1.3.2)\n", + "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.7/dist-packages (from matplotlib->pychorus) (0.11.0)\n", + "Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (3.0.4)\n", + "Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (1.24.3)\n", + "Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (2.10)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->pooch>=1.0->librosa->pychorus) (2021.10.8)\n", + "Building wheels for collected packages: pychorus\n", + " Building wheel for pychorus (setup.py) ... \u001b[?25l\u001b[?25hdone\n", + " Created wheel for pychorus: filename=pychorus-0.1-py3-none-any.whl size=6472 sha256=c125453ee07a205e25c3f578105b2abf67c07c56957d402fef56404f89dea300\n", + " Stored in directory: /root/.cache/pip/wheels/50/b8/df/82626ca98c4d1443c1e5a93922e8194063af3c317b4e8444bd\n", + "Successfully built pychorus\n", + "Installing collected packages: pychorus\n", + "Successfully installed pychorus-0.1\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "pip install scipy" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "U1L6UxK1aMki", + "outputId": "7be2df01-911c-4892-fa20-81b109f29bc3" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (1.4.1)\n", + "Requirement already satisfied: numpy>=1.13.3 in /usr/local/lib/python3.7/dist-packages (from scipy) (1.19.5)\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "import billboard\n", + "import pandas as pd\n", + "import librosa\n", + "import pychorus\n", + "import youtube_dl\n", + "import numpy as np\n", + "import scipy" + ], + "metadata": { + "id": "1BTuYb7HjlM1" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "from youtube_dl import YoutubeDL\n", + "import pandas as pd\n", + "from requests import get\n", + "from pychorus import find_and_output_chorus\n", + "import os\n", + "import librosa\n", + "import numpy as np\n", + "import scipy" + ], + "metadata": { + "id": "ua12j8T9abrw" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "import billboard\n", + "chart = billboard.ChartData('hot-100')\n", + "chart.title\n", + "'The Hot 100'\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 35 + }, + "id": "Zzc-SLkVPrz3", + "outputId": "1237bcd1-c271-4089-d828-b22c39116639" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "string" + }, + "text/plain": [ + "'The Hot 100'" + ] + }, + "metadata": {}, + "execution_count": 9 + } + ] + }, + { + "cell_type": "code", + "source": [ + "song= chart[0]\n", + "print(chart)\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "2UD73HVaPwyh", + "outputId": "e4f53705-7a17-4db1-eeb3-3c5fab687ff4" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "hot-100 chart from 2022-01-15\n", + "-----------------------------\n", + "1. 'Easy On Me' by Adele\n", + "2. 'Stay' by The Kid LAROI & Justin Bieber\n", + "3. 'Heat Waves' by Glass Animals\n", + "4. 'Shivers' by Ed Sheeran\n", + "5. 'We Don't Talk About Bruno' by Carolina Gaitan, Mauro Castillo, Adassa, Rhenzy Feliz, Diane Guerrero, Stephanie Beatriz & Encanto Cast\n", + "6. 'Industry Baby' by Lil Nas X & Jack Harlow\n", + "7. 'Cold Heart (PNAU Remix)' by Elton John & Dua Lipa\n", + "8. 'Bad Habits' by Ed Sheeran\n", + "9. 'Need To Know' by Doja Cat\n", + "10. 'Super Gremlin' by Kodak Black\n", + "11. 'abcdefu' by GAYLE\n", + "12. 'Levitating' by Dua Lipa\n", + "13. 'Smokin Out The Window' by Silk Sonic (Bruno Mars & Anderson .Paak)\n", + "14. 'Surface Pressure' by Jessica Darrow\n", + "15. 'Good 4 U' by Olivia Rodrigo\n", + "16. 'Fancy Like' by Walker Hayes\n", + "17. 'Ghost' by Justin Bieber\n", + "18. 'Save Your Tears' by The Weeknd & Ariana Grande\n", + "19. 'Kiss Me More' by Doja Cat Featuring SZA\n", + "20. 'Thats What I Want' by Lil Nas X\n", + "21. 'Essence' by Wizkid Featuring Justin Bieber & Tems\n", + "22. 'One Right Now' by Post Malone & The Weeknd\n", + "23. 'Better Days' by NEIKED X Mae Muller X Polo G\n", + "24. 'Oh My God' by Adele\n", + "25. 'You Right' by Doja Cat & The Weeknd\n", + "26. 'Happier Than Ever' by Billie Eilish\n", + "27. 'Broadway Girls' by Lil Durk Featuring Morgan Wallen\n", + "28. 'Buy Dirt' by Jordan Davis Featuring Luke Bryan\n", + "29. 'Love Nwantiti (Ah Ah Ah)' by CKay\n", + "30. 'I Hate U' by SZA\n", + "31. 'Knife Talk' by Drake Featuring 21 Savage & Project Pat\n", + "32. 'You Should Probably Leave' by Chris Stapleton\n", + "33. 'Way 2 Sexy' by Drake Featuring Future & Young Thug\n", + "34. 'Hrs And Hrs' by Muni Long\n", + "35. 'If I Didn't Love You' by Jason Aldean & Carrie Underwood\n", + "36. 'Thinking 'Bout You' by Dustin Lynch Featuring Lauren Alaina Or MacKenzie Porter\n", + "37. 'Whiskey And Rain' by Michael Ray\n", + "38. 'Beggin'' by Maneskin\n", + "39. 'Meet Me At Our Spot' by THE ANXIETY: WILLOW & Tyler Cole\n", + "40. 'One Mississippi' by Kane Brown\n", + "41. 'Montero (Call Me By Your Name)' by Lil Nas X\n", + "42. 'Big Energy' by Latto\n", + "43. 'Sand In My Boots' by Morgan Wallen\n", + "44. 'Girls Want Girls' by Drake Featuring Lil Baby\n", + "45. 'Freedom Was A Highway' by Jimmie Allen & Brad Paisley\n", + "46. 'Pepas' by Farruko\n", + "47. 'Who Want Smoke??' by Nardo Wick Featuring G Herbo, Lil Durk & 21 Savage\n", + "48. 'Enemy' by Imagine Dragons X JID\n", + "49. 'Leave The Door Open' by Silk Sonic (Bruno Mars & Anderson .Paak)\n", + "50. 'Chasing After You' by Ryan Hurd With Maren Morris\n", + "51. 'Chosen' by Blxst & Tyga Featuring Ty Dolla $ign\n", + "52. 'To Be Loved By You' by Parker McCollum\n", + "53. 'Half Of My Hometown' by Kelsea Ballerini Featuring Kenny Chesney\n", + "54. 'Have Mercy' by Chloe\n", + "55. 'All Too Well (Taylor's Version)' by Taylor Swift\n", + "56. 'Woman' by Doja Cat\n", + "57. ''Til You Can't' by Cody Johnson\n", + "58. 'My Universe' by Coldplay x BTS\n", + "59. 'Heart On Fire' by Eric Church\n", + "60. 'Tequila Little Time' by Jon Pardi\n", + "61. 'For Tonight' by Giveon\n", + "62. 'The Family Madrigal' by Stephanie Beatriz, Olga Merediz & Encanto Cast\n", + "63. 'Message In A Bottle (Taylor's Version) (From The Vault)' by Taylor Swift\n", + "64. 'By Your Side' by Rod Wave\n", + "65. 'Do It To It' by Acraze Featuring Cherish\n", + "66. 'Scorpio' by Moneybagg Yo\n", + "67. 'What Else Can I Do?' by Diane Guerrero & Stephanie Beatriz\n", + "68. 'Flower Shops' by ERNEST Featuring Morgan Wallen\n", + "69. 'Fingers Crossed' by Lauren Spencer-Smith\n", + "70. 'Same Boat' by Zac Brown Band\n", + "71. 'Life Goes On' by Oliver Tree\n", + "72. 'Beers On Me' by Dierks Bentley, Breland & HARDY\n", + "73. 'Poke It Out' by Wale Featuring J. Cole\n", + "74. 'I Am Woman' by Emmy Meli\n", + "75. '23' by Sam Hunt\n", + "76. 'Doin' This' by Luke Combs\n", + "77. 'Burn' by Juice WRLD\n", + "78. 'Bubbly' by Young Thug With Drake & Travis Scott\n", + "79. 'Pressure' by Ari Lennox\n", + "80. 'No Love' by Summer Walker & SZA\n", + "81. 'Family Ties' by Baby Keem & Kendrick Lamar\n", + "82. 'Waiting On A Miracle' by Stephanie Beatriz\n", + "83. 'Dos Oruguitas' by Sebastian Yatra\n", + "84. 'Too Easy' by Gunna & Future\n", + "85. 'Fair Trade' by Drake Featuring Travis Scott\n", + "86. 'Volvi' by Aventura x Bad Bunny\n", + "87. 'AA' by Walker Hayes\n", + "88. 'Come Through' by H.E.R. Featuring Chris Brown\n", + "89. 'Wandered To LA.' by Juice WRLD & Justin Bieber\n", + "90. 'Home Sweet' by Russell Dickerson\n", + "91. 'Come Back As A Country Boy' by Blake Shelton\n", + "92. 'Already Dead' by Juice WRLD\n", + "93. 'Black Ball' by YoungBoy Never Broke Again & Birdman\n", + "94. 'Baddest' by Yung Bleu, Chris Brown & 2 Chainz\n", + "95. 'Moth To A Flame' by Swedish House Mafia & The Weeknd\n", + "96. 'Me Or Sum' by Nardo Wick, Lil Baby & Future\n", + "97. 'I Love You So' by The Walters\n", + "98. 'Bad Man (Smooth Criminal)' by Polo G\n", + "99. 'Never Wanted To Be That Girl' by Carly Pearce & Ashley McBryde\n", + "100. 'Just About Over You' by Priscilla Block\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "artists = []\n", + "year = 2021\n", + "for y in range(2022-2006):\n", + " chart = billboard.ChartData('Top-Artists', year=year)\n", + " cnt = 0\n", + " for chr in chart:\n", + " cnt += 1\n", + " if chr.artist not in artists:\n", + " artists.append(chr.artist)\n", + " if cnt == 10:\n", + " break\n", + " \n", + " year -= 1\n", + "\n", + "len(artists)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "L6AMz57jy_j_", + "outputId": "4cc63c48-f6bd-4619-ed89-8dfaee49afb1" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "80" + ] + }, + "metadata": {}, + "execution_count": 11 + } + ] + }, + { + "cell_type": "code", + "source": [ + "def getData(type, data, artists, titles, year=None, date=None, label=None):\n", + " if date==None:\n", + " HotChart = billboard.ChartData(type, year=year)\n", + " else:\n", + " HotChart = billboard.ChartData(type, date=date)\n", + " for hot in HotChart:\n", + " # To collect the name of artists that exists in the artist's list and choose another song for the same artist.\n", + " # This is to avoid repeat songs and enter artist doesn't exist in artists list.\n", + " if hot.title not in titles and hot.artist in artists:\n", + " titles.append(hot.title)\n", + " data.append({'Artist': hot.artist, 'Title': hot.title, 'Label': label})\n", + " \n", + " return data, titles" + ], + "metadata": { + "id": "9XHrX4kkyiDB" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "data = []\n", + "titles = []\n", + "year = 2021\n", + "for i in range(2022-2006):\n", + " data, titles = getData('Hot-100-Songs', data, artists, titles, year, label=1) # popular songs\n", + " year -= 1" + ], + "metadata": { + "id": "WJlQMs1ryz-w" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "dates = ['2021-12-01','2021-08-01','2021-04-01','2021-01-01',\n", + " '2020-12-01','2020-08-01','2020-04-01','2020-01-01',\n", + " '2019-12-01','2019-08-01','2019-04-01','2019-01-01',\n", + " '2018-12-01','2018-08-01','2018-04-01','2018-01-01',\n", + " '2017-12-01','2017-08-01','2017-04-01','2017-01-01',\n", + " '2016-12-01','2016-08-01','2016-04-01','2016-01-01',\n", + " '2015-12-01','2015-08-01','2015-04-01','2015-01-01',\n", + " '2014-12-01','2014-08-01','2014-04-01','2014-01-01',\n", + " '2013-12-01','2013-08-01','2013-04-01','2013-01-01',\n", + " '2012-12-01','2012-08-01','2012-04-01','2012-01-01',\n", + " '2011-12-01','2011-08-01','2011-04-01','2011-01-01',\n", + " '2010-12-01','2010-08-01','2010-04-01','2010-01-01',\n", + " '2009-12-01','2009-08-01','2009-04-01','2009-01-01',\n", + " '2008-12-01','2008-08-01','2008-04-01','2008-01-01',\n", + " '2007-12-01','2007-08-01','2007-04-01','2007-01-01',\n", + " '2006-12-01','2006-08-01','2006-04-01','2006-01-01']\n", + "for date in dates:\n", + " data, titles = getData('hot-100', data, artists, titles, date=date, label=0) # unpopular songs\n" + ], + "metadata": { + "id": "YsVMoNF40mVm" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "df = pd.DataFrame(data)\n", + "df" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 424 + }, + "id": "x5v7Pl653ULX", + "outputId": "84e243a5-c5a4-49ac-9a53-a75acc8521c2" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/html": [ + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ArtistTitleLabel
0The WeekndBlinding Lights1
1Olivia RodrigoGood 4 U1
2Olivia RodrigoDrivers License1
3Lil Nas XMontero (Call Me By Your Name)1
4BTSButter1
............
804Gwen StefaniLuxurious0
805RihannaIf It's Lovin' That You Want0
806Lil WayneFireman0
807Alicia KeysUnbreakable0
808Rascal FlattsSkin (Sarabeth)0
\n", + "

809 rows × 3 columns

\n", + "
\n", + " \n", + " \n", + " \n", + "\n", + " \n", + "
\n", + "
\n", + " " + ], + "text/plain": [ + " Artist Title Label\n", + "0 The Weeknd Blinding Lights 1\n", + "1 Olivia Rodrigo Good 4 U 1\n", + "2 Olivia Rodrigo Drivers License 1\n", + "3 Lil Nas X Montero (Call Me By Your Name) 1\n", + "4 BTS Butter 1\n", + ".. ... ... ...\n", + "804 Gwen Stefani Luxurious 0\n", + "805 Rihanna If It's Lovin' That You Want 0\n", + "806 Lil Wayne Fireman 0\n", + "807 Alicia Keys Unbreakable 0\n", + "808 Rascal Flatts Skin (Sarabeth) 0\n", + "\n", + "[809 rows x 3 columns]" + ] + }, + "metadata": {}, + "execution_count": 15 + } + ] + }, + { + "cell_type": "code", + "source": [ + "from requests import get\n", + "from youtube_dl import YoutubeDL\n", + "\n", + "YDL_OPTIONS = {'format': 'bestaudio', 'noplaylist':'True', 'ignoreerrors':'True'}\n", + "\n", + "def search(arg):\n", + " with YoutubeDL(YDL_OPTIONS) as ydl:\n", + " try:\n", + " get(arg) \n", + " except:\n", + " video = ydl.extract_info(f\"ytsearch:{arg}\", download=True)['entries'][0]\n", + " else:\n", + " video = ydl.extract_info(arg, download=True)\n", + "\n", + " return video\n", + " \n" + ], + "metadata": { + "id": "MkHcjbCTqaHg" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "for song in titles:\n", + " search(song)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "wwfAcVOr5oRD", + "outputId": "e0a8bb55-b6a4-4a72-9862-15f0116db88f" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Downloading playlist: Blinding Lights\n", + "[youtube:search] query \"Blinding Lights\": Downloading page 1\n", + "[youtube:search] playlist Blinding Lights: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 4NRXx6U8ABQ: Downloading webpage\n", + "[youtube] Downloading just video 4NRXx6U8ABQ because of --no-playlist\n", + "[youtube] 4NRXx6U8ABQ: Downloading player 18da33ed\n", + "[download] Destination: The Weeknd - Blinding Lights (Official Video)-4NRXx6U8ABQ.m4a\n", + "[download] 100% of 4.05MiB in 00:54\n", + "[ffmpeg] Correcting container in \"The Weeknd - Blinding Lights (Official Video)-4NRXx6U8ABQ.m4a\"\n", + "[download] Finished downloading playlist: Blinding Lights\n", + "[download] Downloading playlist: Good 4 U\n", + "[youtube:search] query \"Good 4 U\": Downloading page 1\n", + "[youtube:search] playlist Good 4 U: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] gNi_6U5Pm_o: Downloading webpage\n", + "[youtube] Downloading just video gNi_6U5Pm_o because of --no-playlist\n", + "[download] Destination: Olivia Rodrigo - good 4 u (Official Video)-gNi_6U5Pm_o.m4a\n", + "[download] 100% of 3.07MiB in 00:37\n", + "[ffmpeg] Correcting container in \"Olivia Rodrigo - good 4 u (Official Video)-gNi_6U5Pm_o.m4a\"\n", + "[download] Finished downloading playlist: Good 4 U\n", + "[download] Downloading playlist: Drivers License\n", + "[youtube:search] query \"Drivers License\": Downloading page 1\n", + "[youtube:search] playlist Drivers License: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ZmDBbnmKpqQ: Downloading webpage\n", + "[youtube] Downloading just video ZmDBbnmKpqQ because of --no-playlist\n", + "[download] Destination: Olivia Rodrigo - drivers license (Official Video)-ZmDBbnmKpqQ.webm\n", + "[download] 100% of 3.99MiB in 01:04\n", + "[download] Finished downloading playlist: Drivers License\n", + "[download] Downloading playlist: Montero (Call Me By Your Name)\n", + "[youtube:search] query \"Montero (Call Me By Your Name)\": Downloading page 1\n", + "[youtube:search] playlist Montero (Call Me By Your Name): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 6swmTBVI83k: Downloading webpage\n", + "[youtube] Downloading just video 6swmTBVI83k because of --no-playlist\n", + "[download] Destination: Lil Nas X - MONTERO (Call Me By Your Name) (Official Video)-6swmTBVI83k.webm\n", + "[download] 100% of 2.96MiB in 00:39\n", + "[download] Finished downloading playlist: Montero (Call Me By Your Name)\n", + "[download] Downloading playlist: Butter\n", + "[youtube:search] query \"Butter\": Downloading page 1\n", + "[youtube:search] playlist Butter: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] WMweEpGlu_U: Downloading webpage\n", + "[youtube] Downloading just video WMweEpGlu_U because of --no-playlist\n", + "[download] Destination: BTS (방탄소년단) 'Butter' Official MV-WMweEpGlu_U.m4a\n", + "[download] 100% of 2.82MiB in 00:44\n", + "[ffmpeg] Correcting container in \"BTS (방탄소년단) 'Butter' Official MV-WMweEpGlu_U.m4a\"\n", + "[download] Finished downloading playlist: Butter\n", + "[download] Downloading playlist: Deja Vu\n", + "[youtube:search] query \"Deja Vu\": Downloading page 1\n", + "[youtube:search] playlist Deja Vu: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] cii6ruuycQA: Downloading webpage\n", + "[youtube] Downloading just video cii6ruuycQA because of --no-playlist\n", + "[download] Destination: Olivia Rodrigo - deja vu (Official Video)-cii6ruuycQA.webm\n", + "[download] 100% of 3.66MiB in 00:45\n", + "[download] Finished downloading playlist: Deja Vu\n", + "[download] Downloading playlist: Positions\n", + "[youtube:search] query \"Positions\": Downloading page 1\n", + "[youtube:search] playlist Positions: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] tcYodQoapMg: Downloading webpage\n", + "[youtube] Downloading just video tcYodQoapMg because of --no-playlist\n", + "[download] Destination: Ariana Grande - positions (official video)-tcYodQoapMg.webm\n", + "[download] 100% of 2.95MiB in 00:36\n", + "[download] Finished downloading playlist: Positions\n", + "[download] Downloading playlist: Bad Habits\n", + "[youtube:search] query \"Bad Habits\": Downloading page 1\n", + "[youtube:search] playlist Bad Habits: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] orJSJGHjBLI: Downloading webpage\n", + "[youtube] Downloading just video orJSJGHjBLI because of --no-playlist\n", + "[download] Destination: Ed Sheeran - Bad Habits [Official Video]-orJSJGHjBLI.webm\n", + "[download] 100% of 3.90MiB in 01:13\n", + "[download] Finished downloading playlist: Bad Habits\n", + "[download] Downloading playlist: Forever After All\n", + "[youtube:search] query \"Forever After All\": Downloading page 1\n", + "[youtube:search] playlist Forever After All: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] TDpOcp98b5k: Downloading webpage\n", + "[youtube] Downloading just video TDpOcp98b5k because of --no-playlist\n", + "[download] Destination: Luke Combs - Forever After All (Official Video)-TDpOcp98b5k.webm\n", + "[download] 100% of 3.84MiB in 00:54\n", + "[download] Finished downloading playlist: Forever After All\n", + "[download] Downloading playlist: What You Know Bout Love\n", + "[youtube:search] query \"What You Know Bout Love\": Downloading page 1\n", + "[youtube:search] playlist What You Know Bout Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uuodbSVO3z0: Downloading webpage\n", + "[youtube] Downloading just video uuodbSVO3z0 because of --no-playlist\n", + "[download] Destination: POP SMOKE - WHAT YOU KNOW BOUT LOVE (Official Video)-uuodbSVO3z0.webm\n", + "[download] 100% of 2.70MiB in 00:37\n", + "[download] Finished downloading playlist: What You Know Bout Love\n", + "[download] Downloading playlist: Therefore I Am\n", + "[youtube:search] query \"Therefore I Am\": Downloading page 1\n", + "[youtube:search] playlist Therefore I Am: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] RUQl6YcMalg: Downloading webpage\n", + "[youtube] Downloading just video RUQl6YcMalg because of --no-playlist\n", + "[download] Destination: Billie Eilish - Therefore I Am (Official Music Video)-RUQl6YcMalg.m4a\n", + "[download] 100% of 4.61MiB in 00:56\n", + "[ffmpeg] Correcting container in \"Billie Eilish - Therefore I Am (Official Music Video)-RUQl6YcMalg.m4a\"\n", + "[download] Finished downloading playlist: Therefore I Am\n", + "[download] Downloading playlist: Up\n", + "[youtube:search] query \"Up\": Downloading page 1\n", + "[youtube:search] playlist Up: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rCiBgLOcuKU: Downloading webpage\n", + "[youtube] Downloading just video rCiBgLOcuKU because of --no-playlist\n", + "[download] Destination: Cardi B - Up [Official Music Video]-rCiBgLOcuKU.webm\n", + "[download] 100% of 2.91MiB in 00:40\n", + "[download] Finished downloading playlist: Up\n", + "[download] Downloading playlist: On Me\n", + "[youtube:search] query \"On Me\": Downloading page 1\n", + "[youtube:search] playlist On Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ieTnO1Dvt-I: Downloading webpage\n", + "[youtube] Downloading just video ieTnO1Dvt-I because of --no-playlist\n", + "[download] Destination: Lil Baby - On Me-ieTnO1Dvt-I.m4a\n", + "[download] 100% of 2.56MiB in 00:35\n", + "[ffmpeg] Correcting container in \"Lil Baby - On Me-ieTnO1Dvt-I.m4a\"\n", + "[download] Finished downloading playlist: On Me\n", + "[download] Downloading playlist: Traitor\n", + "[youtube:search] query \"Traitor\": Downloading page 1\n", + "[youtube:search] playlist Traitor: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 6tsu2oeZJgo: Downloading webpage\n", + "[youtube] Downloading just video 6tsu2oeZJgo because of --no-playlist\n", + "[download] Destination: Olivia Rodrigo - traitor (Lyric Video)-6tsu2oeZJgo.webm\n", + "[download] 100% of 3.68MiB in 01:18\n", + "[download] Finished downloading playlist: Traitor\n", + "[download] Downloading playlist: Dynamite\n", + "[youtube:search] query \"Dynamite\": Downloading page 1\n", + "[youtube:search] playlist Dynamite: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] gdZLi9oWNZg: Downloading webpage\n", + "[youtube] Downloading just video gdZLi9oWNZg because of --no-playlist\n", + "[download] Destination: BTS (방탄소년단) 'Dynamite' Official MV-gdZLi9oWNZg.webm\n", + "[download] 100% of 3.56MiB in 01:10\n", + "[download] Finished downloading playlist: Dynamite\n", + "[download] Downloading playlist: Need To Know\n", + "[youtube:search] query \"Need To Know\": Downloading page 1\n", + "[youtube:search] playlist Need To Know: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] dI3xkL7qUAc: Downloading webpage\n", + "[youtube] Downloading just video dI3xkL7qUAc because of --no-playlist\n", + "[download] Destination: Doja Cat - Need to Know (Official Video)-dI3xkL7qUAc.webm\n", + "[download] 100% of 3.53MiB in 00:49\n", + "[download] Finished downloading playlist: Need To Know\n", + "[download] Downloading playlist: Willow\n", + "[youtube:search] query \"Willow\": Downloading page 1\n", + "[youtube:search] playlist Willow: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] PYmDx_ZuylE: Downloading webpage\n", + "[youtube] Downloading just video PYmDx_ZuylE because of --no-playlist\n", + "[download] Destination: Willow New Action Movie, Full Movie English, Adventure Movies, Hollywood Fantasy Movie.-PYmDx_ZuylE.m4a\n", + "[download] 100.0% of 106.49MiB at 82.14KiB/s ETA 00:00" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to rename file: [Errno 2] No such file or directory: 'Willow New Action Movie, Full Movie English, Adventure Movies, Hollywood Fantasy Movie.-PYmDx_ZuylE.m4a.part' -> 'Willow New Action Movie, Full Movie English, Adventure Movies, Hollywood Fantasy Movie.-PYmDx_ZuylE.m4a'\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\r[download] 100% of 106.49MiB in 22:09\n", + "[ffmpeg] Correcting container in \"Willow New Action Movie, Full Movie English, Adventure Movies, Hollywood Fantasy Movie.-PYmDx_ZuylE.m4a\"\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: [Errno 2] No such file or directory: 'Willow New Action Movie, Full Movie English, Adventure Movies, Hollywood Fantasy Movie.-PYmDx_ZuylE.m4a'\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Willow\n", + "[download] Downloading playlist: Better Together\n", + "[youtube:search] query \"Better Together\": Downloading page 1\n", + "[youtube:search] playlist Better Together: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ObDQtfZZ0_k: Downloading webpage\n", + "[youtube] Downloading just video ObDQtfZZ0_k because of --no-playlist\n", + "[download] Destination: Luke Combs - Better Together (Lyrics)-ObDQtfZZ0_k.webm\n", + "[download] 100% of 3.74MiB in 00:49\n", + "[download] Finished downloading playlist: Better Together\n", + "[download] Downloading playlist: Streets\n", + "[youtube:search] query \"Streets\": Downloading page 1\n", + "[youtube:search] playlist Streets: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] oqv35UZepIM: Downloading webpage\n", + "[youtube] Downloading just video oqv35UZepIM because of --no-playlist\n", + "[download] Destination: Doja Cat - Streets (Audio)-oqv35UZepIM.webm\n", + "[download] 100% of 3.83MiB in 01:13\n", + "[download] Finished downloading playlist: Streets\n", + "[download] Downloading playlist: What's Next\n", + "[youtube:search] query \"What's Next\": Downloading page 1\n", + "[youtube:search] playlist What's Next: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 7EUVJaKJtBY: Downloading webpage\n", + "[youtube] Downloading just video 7EUVJaKJtBY because of --no-playlist\n", + "[download] Destination: Drake - What's Next (Official Music Video)-7EUVJaKJtBY.m4a\n", + "[download] 100% of 3.09MiB in 00:57\n", + "[ffmpeg] Correcting container in \"Drake - What's Next (Official Music Video)-7EUVJaKJtBY.m4a\"\n", + "[download] Finished downloading playlist: What's Next\n", + "[download] Downloading playlist: Late At Night\n", + "[youtube:search] query \"Late At Night\": Downloading page 1\n", + "[youtube:search] playlist Late At Night: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] sJDRfZJFAk0: Downloading webpage\n", + "[youtube] Downloading just video sJDRfZJFAk0 because of --no-playlist\n", + "[download] Destination: Roddy Ricch - Late At Night [Official Music Video]-sJDRfZJFAk0.webm\n", + "[download] 100% of 4.51MiB in 01:21\n", + "[download] Finished downloading playlist: Late At Night\n", + "[download] Downloading playlist: Anyone\n", + "[youtube:search] query \"Anyone\": Downloading page 1\n", + "[youtube:search] playlist Anyone: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] KIK3azN4w34: Downloading webpage\n", + "[youtube] Downloading just video KIK3azN4w34 because of --no-playlist\n", + "[download] Destination: Justin Bieber - Anyone-KIK3azN4w34.webm\n", + "[download] 100% of 4.20MiB in 00:57\n", + "[download] Finished downloading playlist: Anyone\n", + "[download] Downloading playlist: pov\n", + "[youtube:search] query \"pov\": Downloading page 1\n", + "[youtube:search] playlist pov: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nQJEp-k-ogs: Downloading webpage\n", + "[youtube] Downloading just video nQJEp-k-ogs because of --no-playlist\n", + "[download] Destination: Ariana Grande - pov (audio)-nQJEp-k-ogs.webm\n", + "[download] 100% of 3.17MiB in 01:07\n", + "[download] Finished downloading playlist: pov\n", + "[download] Downloading playlist: Take My Breath\n", + "[youtube:search] query \"Take My Breath\": Downloading page 1\n", + "[youtube:search] playlist Take My Breath: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rhTl_OyehF8: Downloading webpage\n", + "[youtube] Downloading just video rhTl_OyehF8 because of --no-playlist\n", + "[download] Destination: The Weeknd - Take My Breath (Official Music Video)-rhTl_OyehF8.webm\n", + "[download] 100% of 3.52MiB in 00:46\n", + "[download] Finished downloading playlist: Take My Breath\n", + "[download] Downloading playlist: Happier Than Ever\n", + "[youtube:search] query \"Happier Than Ever\": Downloading page 1\n", + "[youtube:search] playlist Happier Than Ever: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 5GJWxDKyk3A: Downloading webpage\n", + "[youtube] Downloading just video 5GJWxDKyk3A because of --no-playlist\n", + "[download] Destination: Billie Eilish - Happier Than Ever (Official Music Video)-5GJWxDKyk3A.m4a\n", + "[download] 100% of 4.86MiB in 01:53\n", + "[ffmpeg] Correcting container in \"Billie Eilish - Happier Than Ever (Official Music Video)-5GJWxDKyk3A.m4a\"\n", + "[download] Finished downloading playlist: Happier Than Ever\n", + "[download] Downloading playlist: Circles\n", + "[youtube:search] query \"Circles\": Downloading page 1\n", + "[youtube:search] playlist Circles: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] wXhTHyIgQ_U: Downloading webpage\n", + "[youtube] Downloading just video wXhTHyIgQ_U because of --no-playlist\n", + "[download] Destination: Post Malone - Circles-wXhTHyIgQ_U.webm\n", + "[download] 100% of 3.69MiB in 00:55\n", + "[download] Finished downloading playlist: Circles\n", + "[download] Downloading playlist: The Box\n", + "[youtube:search] query \"The Box\": Downloading page 1\n", + "[youtube:search] playlist The Box: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] UNZqm3dxd2w: Downloading webpage\n", + "[youtube] Downloading just video UNZqm3dxd2w because of --no-playlist\n", + "[download] Destination: Roddy Ricch - The Box [Official Music Video]-UNZqm3dxd2w.webm\n", + "[download] 100% of 3.52MiB in 01:14\n", + "[download] Finished downloading playlist: The Box\n", + "[download] Downloading playlist: Adore You\n", + "[youtube:search] query \"Adore You\": Downloading page 1\n", + "[youtube:search] playlist Adore You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] VF-r5TtlT9w: Downloading webpage\n", + "[youtube] Downloading just video VF-r5TtlT9w because of --no-playlist\n", + "[download] Destination: Harry Styles - Adore You (Official Video)-VF-r5TtlT9w.webm\n", + "[download] 100% of 3.44MiB in 01:12\n", + "[download] Finished downloading playlist: Adore You\n", + "[download] Downloading playlist: Memories\n", + "[youtube:search] query \"Memories\": Downloading page 1\n", + "[youtube:search] playlist Memories: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] o2DXt11SMNI: Downloading webpage\n", + "[youtube] Downloading just video o2DXt11SMNI because of --no-playlist\n", + "[download] Destination: Maroon 5 - Memories (Lyrics)-o2DXt11SMNI.webm\n", + "[download] 100% of 3.05MiB in 00:37\n", + "[download] Finished downloading playlist: Memories\n", + "[download] Downloading playlist: Say So\n", + "[youtube:search] query \"Say So\": Downloading page 1\n", + "[youtube:search] playlist Say So: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pok8H_KF1FA: Downloading webpage\n", + "[youtube] Downloading just video pok8H_KF1FA because of --no-playlist\n", + "[download] Destination: Doja Cat - Say So (Official Video)-pok8H_KF1FA.webm\n", + "[download] 100% of 3.95MiB in 01:13\n", + "[download] Finished downloading playlist: Say So\n", + "[download] Downloading playlist: Everything I Wanted\n", + "[youtube:search] query \"Everything I Wanted\": Downloading page 1\n", + "[youtube:search] playlist Everything I Wanted: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] qCTMq7xvdXU: Downloading webpage\n", + "[youtube] Downloading just video qCTMq7xvdXU because of --no-playlist\n", + "[download] Destination: Billie Eilish - everything i wanted (Audio)-qCTMq7xvdXU.webm\n", + "[download] 100% of 4.05MiB in 01:31\n", + "[download] Finished downloading playlist: Everything I Wanted\n", + "[download] Downloading playlist: Watermelon Sugar\n", + "[youtube:search] query \"Watermelon Sugar\": Downloading page 1\n", + "[youtube:search] playlist Watermelon Sugar: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] E07s5ZYygMg: Downloading webpage\n", + "[youtube] Downloading just video E07s5ZYygMg because of --no-playlist\n", + "[download] Destination: Harry Styles - Watermelon Sugar (Official Video)-E07s5ZYygMg.m4a\n", + "[download] 100% of 2.92MiB in 00:44\n", + "[ffmpeg] Correcting container in \"Harry Styles - Watermelon Sugar (Official Video)-E07s5ZYygMg.m4a\"\n", + "[download] Finished downloading playlist: Watermelon Sugar\n", + "[download] Downloading playlist: Heartless\n", + "[youtube:search] query \"Heartless\": Downloading page 1\n", + "[youtube:search] playlist Heartless: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] AHAE7Dw7yHM: Downloading webpage\n", + "[youtube] Downloading just video AHAE7Dw7yHM because of --no-playlist\n", + "[download] Destination: Diplo ft. Morgan Wallen - Heartless (Lyrics)-AHAE7Dw7yHM.webm\n", + "[download] 100% of 2.87MiB in 00:35\n", + "[download] Finished downloading playlist: Heartless\n", + "[download] Downloading playlist: BOP\n", + "[youtube:search] query \"BOP\": Downloading page 1\n", + "[youtube:search] playlist BOP: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 28hYUZMufDg: Downloading webpage\n", + "[youtube] Downloading just video 28hYUZMufDg because of --no-playlist\n", + "[download] Destination: DaBaby - BOP on Broadway (Hip Hop Musical)-28hYUZMufDg.webm\n", + "[download] 100% of 2.91MiB in 00:54\n", + "[download] Finished downloading playlist: BOP\n", + "[download] Downloading playlist: Toosie Slide\n", + "[youtube:search] query \"Toosie Slide\": Downloading page 1\n", + "[youtube:search] playlist Toosie Slide: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] xWggTb45brM: Downloading webpage\n", + "[youtube] Downloading just video xWggTb45brM because of --no-playlist\n", + "[download] Destination: Drake - Toosie Slide (Official Music Video)-xWggTb45brM.webm\n", + "[download] 100% of 4.87MiB in 01:14\n", + "[download] Finished downloading playlist: Toosie Slide\n", + "[download] Downloading playlist: Chasin' You\n", + "[youtube:search] query \"Chasin' You\": Downloading page 1\n", + "[youtube:search] playlist Chasin' You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] iBduQb1S-4s: Downloading webpage\n", + "[youtube] Downloading just video iBduQb1S-4s because of --no-playlist\n", + "[download] Destination: Morgan Wallen - Chasin' You (Dream Video)-iBduQb1S-4s.webm\n", + "[download] 100% of 3.43MiB in 00:47\n", + "[download] Finished downloading playlist: Chasin' You\n", + "[download] Downloading playlist: Woah\n", + "[youtube:search] query \"Woah\": Downloading page 1\n", + "[youtube:search] playlist Woah: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nUEqPtVGIpE: Downloading webpage\n", + "[youtube] Downloading just video nUEqPtVGIpE because of --no-playlist\n", + "[download] Destination: Lil Baby - Woah (Official Music Video)-nUEqPtVGIpE.webm\n", + "[download] 100% of 3.32MiB in 00:55\n", + "[download] Finished downloading playlist: Woah\n", + "[download] Downloading playlist: HIGHEST IN THE ROOM\n", + "[youtube:search] query \"HIGHEST IN THE ROOM\": Downloading page 1\n", + "[youtube:search] playlist HIGHEST IN THE ROOM: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] tfSS1e3kYeo: Downloading webpage\n", + "[youtube] Downloading just video tfSS1e3kYeo because of --no-playlist\n", + "[download] Destination: Travis Scott - HIGHEST IN THE ROOM (Official Music Video)-tfSS1e3kYeo.webm\n", + "[download] 100% of 2.94MiB in 00:56\n", + "[download] Finished downloading playlist: HIGHEST IN THE ROOM\n", + "[download] Downloading playlist: Bad Guy\n", + "[youtube:search] query \"Bad Guy\": Downloading page 1\n", + "[youtube:search] playlist Bad Guy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] DyDfgMOUjCI: Downloading webpage\n", + "[youtube] Downloading just video DyDfgMOUjCI because of --no-playlist\n", + "[download] Destination: Billie Eilish - bad guy-DyDfgMOUjCI.webm\n", + "[download] 100% of 3.55MiB in 00:53\n", + "[download] Finished downloading playlist: Bad Guy\n", + "[download] Downloading playlist: Yummy\n", + "[youtube:search] query \"Yummy\": Downloading page 1\n", + "[youtube:search] playlist Yummy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 8EJ3zbKTWQ8: Downloading webpage\n", + "[youtube] Downloading just video 8EJ3zbKTWQ8 because of --no-playlist\n", + "[download] Destination: Justin Bieber - Yummy (Official Video)-8EJ3zbKTWQ8.webm\n", + "[download] 100% of 3.76MiB in 01:14\n", + "[download] Finished downloading playlist: Yummy\n", + "[download] Downloading playlist: Panini\n", + "[youtube:search] query \"Panini\": Downloading page 1\n", + "[youtube:search] playlist Panini: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] bXcSLI58-h8: Downloading webpage\n", + "[youtube] Downloading just video bXcSLI58-h8 because of --no-playlist\n", + "[download] Destination: Lil Nas X - Panini (Official Video)-bXcSLI58-h8.webm\n", + "[download] 100% of 2.24MiB in 00:39\n", + "[download] Finished downloading playlist: Panini\n", + "[download] Downloading playlist: Emotionally Scarred\n", + "[youtube:search] query \"Emotionally Scarred\": Downloading page 1\n", + "[youtube:search] playlist Emotionally Scarred: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] iXUPeEuM1CM: Downloading webpage\n", + "[youtube] Downloading just video iXUPeEuM1CM because of --no-playlist\n", + "[download] Destination: Lil Baby - Emotionally Scarred-iXUPeEuM1CM.webm\n", + "[download] 100% of 3.47MiB in 00:58\n", + "[download] Finished downloading playlist: Emotionally Scarred\n", + "[download] Downloading playlist: The Bigger Picture\n", + "[youtube:search] query \"The Bigger Picture\": Downloading page 1\n", + "[youtube:search] playlist The Bigger Picture: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] _VDGysJGNoI: Downloading webpage\n", + "[youtube] Downloading just video _VDGysJGNoI because of --no-playlist\n", + "[download] Destination: Lil Baby - The Bigger Picture (Official Music Video)-_VDGysJGNoI.webm\n", + "[download] 100% of 4.58MiB in 01:03\n", + "[download] Finished downloading playlist: The Bigger Picture\n", + "[download] Downloading playlist: Only Human\n", + "[youtube:search] query \"Only Human\": Downloading page 1\n", + "[youtube:search] playlist Only Human: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] kBNt8hYvn8A: Downloading webpage\n", + "[youtube] Downloading just video kBNt8hYvn8A because of --no-playlist\n", + "[download] Destination: Jonas Brothers - Only Human (Official Video)-kBNt8hYvn8A.webm\n", + "[download] 100% of 3.16MiB in 00:43\n", + "[download] Finished downloading playlist: Only Human\n", + "[download] Downloading playlist: Sum 2 Prove\n", + "[youtube:search] query \"Sum 2 Prove\": Downloading page 1\n", + "[youtube:search] playlist Sum 2 Prove: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] lr31Nq8B-Ho: Downloading webpage\n", + "[youtube] Downloading just video lr31Nq8B-Ho because of --no-playlist\n", + "[download] Destination: Lil Baby - Sum 2 Prove (Official Audio)-lr31Nq8B-Ho.webm\n", + "[download] 100% of 3.78MiB in 00:46\n", + "[download] Finished downloading playlist: Sum 2 Prove\n", + "[download] Downloading playlist: You Should Be Sad\n", + "[youtube:search] query \"You Should Be Sad\": Downloading page 1\n", + "[youtube:search] playlist You Should Be Sad: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 8nBFqZppIF0: Downloading webpage\n", + "[youtube] Downloading just video 8nBFqZppIF0 because of --no-playlist\n", + "[download] Destination: Halsey - You should be sad-8nBFqZppIF0.webm\n", + "[download] 100% of 3.51MiB in 01:02\n", + "[download] Finished downloading playlist: You Should Be Sad\n", + "[download] Downloading playlist: Dior\n", + "[youtube:search] query \"Dior\": Downloading page 1\n", + "[youtube:search] playlist Dior: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] oorVWW9ywG0: Downloading webpage\n", + "[youtube] Downloading just video oorVWW9ywG0 because of --no-playlist\n", + "[download] Destination: POP SMOKE - DIOR (OFFICIAL VIDEO)-oorVWW9ywG0.webm\n", + "[download] 100% of 2.75MiB in 00:49\n", + "[download] Finished downloading playlist: Dior\n", + "[download] Downloading playlist: Even Though I'm Leaving\n", + "[youtube:search] query \"Even Though I'm Leaving\": Downloading page 1\n", + "[youtube:search] playlist Even Though I'm Leaving: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] P7kqqmr2HWI: Downloading webpage\n", + "[youtube] Downloading just video P7kqqmr2HWI because of --no-playlist\n", + "[download] Destination: Luke Combs - Even Though I'm Leaving (Official Video)-P7kqqmr2HWI.webm\n", + "[download] 100% of 3.60MiB in 01:21\n", + "[download] Finished downloading playlist: Even Though I'm Leaving\n", + "[download] Downloading playlist: Wishing Well\n", + "[youtube:search] query \"Wishing Well\": Downloading page 1\n", + "[youtube:search] playlist Wishing Well: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] C5i-UnuUKUI: Downloading webpage\n", + "[youtube] Downloading just video C5i-UnuUKUI because of --no-playlist\n", + "[download] Destination: Juice WRLD - Wishing Well (Official Music Video)-C5i-UnuUKUI.webm\n", + "[download] 100% of 3.38MiB in 01:09\n", + "[download] Finished downloading playlist: Wishing Well\n", + "[download] Downloading playlist: More Than My Hometown\n", + "[youtube:search] query \"More Than My Hometown\": Downloading page 1\n", + "[youtube:search] playlist More Than My Hometown: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] MS82JAkBkDY: Downloading webpage\n", + "[youtube] Downloading just video MS82JAkBkDY because of --no-playlist\n", + "[download] Destination: Morgan Wallen - More Than My Hometown (Official Music Video)-MS82JAkBkDY.m4a\n", + "[download] 100% of 3.49MiB in 00:58\n", + "[ffmpeg] Correcting container in \"Morgan Wallen - More Than My Hometown (Official Music Video)-MS82JAkBkDY.m4a\"\n", + "[download] Finished downloading playlist: More Than My Hometown\n", + "[download] Downloading playlist: Lovin' On You\n", + "[youtube:search] query \"Lovin' On You\": Downloading page 1\n", + "[youtube:search] playlist Lovin' On You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] G4JKLH929B0: Downloading webpage\n", + "[youtube] Downloading just video G4JKLH929B0 because of --no-playlist\n", + "[download] Destination: Luke Combs - Lovin' On You (Official Video)-G4JKLH929B0.m4a\n", + "[download] 100% of 3.76MiB in 01:18\n", + "[ffmpeg] Correcting container in \"Luke Combs - Lovin' On You (Official Video)-G4JKLH929B0.m4a\"\n", + "[download] Finished downloading playlist: Lovin' On You\n", + "[download] Downloading playlist: Without Me\n", + "[youtube:search] query \"Without Me\": Downloading page 1\n", + "[youtube:search] playlist Without Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] YVkUvmDQ3HY: Downloading webpage\n", + "[youtube] Downloading just video YVkUvmDQ3HY because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Without Me\n", + "[download] Downloading playlist: Wow.\n", + "[youtube:search] query \"Wow.\": Downloading page 1\n", + "[youtube:search] playlist Wow.: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 393C3pr2ioY: Downloading webpage\n", + "[youtube] Downloading just video 393C3pr2ioY because of --no-playlist\n", + "[download] Destination: Post Malone - 'Wow.' (Official Music Video)-393C3pr2ioY.webm\n", + "[download] 100% of 2.63MiB in 00:35\n", + "[download] Finished downloading playlist: Wow.\n", + "[download] Downloading playlist: 7 Rings\n", + "[youtube:search] query \"7 Rings\": Downloading page 1\n", + "[youtube:search] playlist 7 Rings: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QYh6mYIJG2Y: Downloading webpage\n", + "[youtube] Downloading just video QYh6mYIJG2Y because of --no-playlist\n", + "[download] Destination: Ariana Grande - 7 rings (Official Video)-QYh6mYIJG2Y.webm\n", + "[download] 100% of 2.91MiB in 01:09\n", + "[download] Finished downloading playlist: 7 Rings\n", + "[download] Downloading playlist: Talk\n", + "[youtube:search] query \"Talk\": Downloading page 1\n", + "[youtube:search] playlist Talk: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] hE2Ira-Cwxo: Downloading webpage\n", + "[youtube] Downloading just video hE2Ira-Cwxo because of --no-playlist\n", + "[download] Destination: Khalid - Talk (Official Video)-hE2Ira-Cwxo.webm\n", + "[download] 100% of 3.21MiB in 01:16\n", + "[download] Finished downloading playlist: Talk\n", + "[download] Downloading playlist: Sicko Mode\n", + "[youtube:search] query \"Sicko Mode\": Downloading page 1\n", + "[youtube:search] playlist Sicko Mode: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 6ONRf7h3Mdk: Downloading webpage\n", + "[youtube] Downloading just video 6ONRf7h3Mdk because of --no-playlist\n", + "[download] Destination: Travis Scott - SICKO MODE ft. Drake-6ONRf7h3Mdk.webm\n", + "[download] 100% of 5.35MiB in 02:07\n", + "[download] Finished downloading playlist: Sicko Mode\n", + "[download] Downloading playlist: Sucker\n", + "[youtube:search] query \"Sucker\": Downloading page 1\n", + "[youtube:search] playlist Sucker: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] CnAmeh0-E-U: Downloading webpage\n", + "[youtube] Downloading just video CnAmeh0-E-U because of --no-playlist\n", + "[download] Destination: Jonas Brothers - Sucker (Official Video)-CnAmeh0-E-U.m4a\n", + "[download] 100% of 3.08MiB in 00:59\n", + "[ffmpeg] Correcting container in \"Jonas Brothers - Sucker (Official Video)-CnAmeh0-E-U.m4a\"\n", + "[download] Finished downloading playlist: Sucker\n", + "[download] Downloading playlist: Thank U, Next\n", + "[youtube:search] query \"Thank U, Next\": Downloading page 1\n", + "[youtube:search] playlist Thank U, Next: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] gl1aHhXnN1k: Downloading webpage\n", + "[youtube] Downloading just video gl1aHhXnN1k because of --no-playlist\n", + "[download] Destination: Ariana Grande - thank u, next (Official Video)-gl1aHhXnN1k.webm\n", + "[download] 100% of 5.14MiB in 01:37\n", + "[download] Finished downloading playlist: Thank U, Next\n", + "[download] Downloading playlist: Better\n", + "[youtube:search] query \"Better\": Downloading page 1\n", + "[youtube:search] playlist Better: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] x3bfa3DZ8JM: Downloading webpage\n", + "[youtube] Downloading just video x3bfa3DZ8JM because of --no-playlist\n", + "[download] Destination: Khalid - Better (Official Video)-x3bfa3DZ8JM.webm\n", + "[download] 100% of 4.15MiB in 01:01\n", + "[download] Finished downloading playlist: Better\n", + "[download] Downloading playlist: Suge\n", + "[youtube:search] query \"Suge\": Downloading page 1\n", + "[youtube:search] playlist Suge: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] KvuQNNVrbtM: Downloading webpage\n", + "[youtube] Downloading just video KvuQNNVrbtM because of --no-playlist\n", + "[download] Destination: Dababy - Suge (Yea Yea) Official Music Video-KvuQNNVrbtM.webm\n", + "[download] 100% of 3.75MiB in 00:52\n", + "[download] Finished downloading playlist: Suge\n", + "[download] Downloading playlist: If I Can't Have You\n", + "[youtube:search] query \"If I Can't Have You\": Downloading page 1\n", + "[youtube:search] playlist If I Can't Have You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] d6_9CF1ucoI: Downloading webpage\n", + "[youtube] Downloading just video d6_9CF1ucoI because of --no-playlist\n", + "[download] Destination: Shawn Mendes - If I Can't Have You (Lyrics)-d6_9CF1ucoI.m4a\n", + "[download] 100% of 2.95MiB in 00:46\n", + "[ffmpeg] Correcting container in \"Shawn Mendes - If I Can't Have You (Lyrics)-d6_9CF1ucoI.m4a\"\n", + "[download] Finished downloading playlist: If I Can't Have You\n", + "[download] Downloading playlist: Better Now\n", + "[youtube:search] query \"Better Now\": Downloading page 1\n", + "[youtube:search] playlist Better Now: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] UYwF-jdcVjY: Downloading webpage\n", + "[youtube] Downloading just video UYwF-jdcVjY because of --no-playlist\n", + "[download] Destination: Post Malone - Better Now-UYwF-jdcVjY.webm\n", + "[download] 100% of 3.90MiB in 01:11\n", + "[download] Finished downloading playlist: Better Now\n", + "[download] Downloading playlist: Break Up With Your Girlfriend, I'm Bored\n", + "[youtube:search] query \"Break Up With Your Girlfriend, I'm Bored\": Downloading page 1\n", + "[youtube:search] playlist Break Up With Your Girlfriend, I'm Bored: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] LH4Y1ZUUx2g: Downloading webpage\n", + "[youtube] Downloading just video LH4Y1ZUUx2g because of --no-playlist\n", + "[download] Destination: Ariana Grande - break up with your girlfriend, i'm bored (Official Video)-LH4Y1ZUUx2g.webm\n", + "[download] 100% of 3.41MiB in 01:05\n", + "[download] Finished downloading playlist: Break Up With Your Girlfriend, I'm Bored\n", + "[download] Downloading playlist: Money\n", + "[youtube:search] query \"Money\": Downloading page 1\n", + "[youtube:search] playlist Money: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Qfrw9VugHMo: Downloading webpage\n", + "[youtube] Downloading just video Qfrw9VugHMo because of --no-playlist\n", + "[download] Destination: LISA - MONEY (Lyrics)-Qfrw9VugHMo.webm\n", + "[download] 100% of 2.77MiB in 01:03\n", + "[download] Finished downloading playlist: Money\n", + "[download] Downloading playlist: You Need To Calm Down\n", + "[youtube:search] query \"You Need To Calm Down\": Downloading page 1\n", + "[youtube:search] playlist You Need To Calm Down: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Dkk9gvTmCXY: Downloading webpage\n", + "[youtube] Downloading just video Dkk9gvTmCXY because of --no-playlist\n", + "[download] Destination: Taylor Swift - You Need To Calm Down-Dkk9gvTmCXY.webm\n", + "[download] 100% of 3.31MiB in 00:42\n", + "[download] Finished downloading playlist: You Need To Calm Down\n", + "[download] Downloading playlist: Beautiful Crazy\n", + "[youtube:search] query \"Beautiful Crazy\": Downloading page 1\n", + "[youtube:search] playlist Beautiful Crazy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rItv9i6c7AY: Downloading webpage\n", + "[youtube] Downloading just video rItv9i6c7AY because of --no-playlist\n", + "[download] Destination: Luke Combs - Beautiful Crazy-rItv9i6c7AY.webm\n", + "[download] 100% of 3.49MiB in 01:24\n", + "[download] Finished downloading playlist: Beautiful Crazy\n", + "[download] Downloading playlist: Lucid Dreams\n", + "[youtube:search] query \"Lucid Dreams\": Downloading page 1\n", + "[youtube:search] playlist Lucid Dreams: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] mzB1VGEGcSU: Downloading webpage\n", + "[youtube] Downloading just video mzB1VGEGcSU because of --no-playlist\n", + "[download] Destination: Juice WRLD - Lucid Dreams (Directed by Cole Bennett)-mzB1VGEGcSU.webm\n", + "[download] 100% of 3.68MiB in 01:17\n", + "[download] Finished downloading playlist: Lucid Dreams\n", + "[download] Downloading playlist: Whiskey Glasses\n", + "[youtube:search] query \"Whiskey Glasses\": Downloading page 1\n", + "[youtube:search] playlist Whiskey Glasses: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] FjBp30kjzTc: Downloading webpage\n", + "[youtube] Downloading just video FjBp30kjzTc because of --no-playlist\n", + "[download] Destination: Morgan Wallen - Whiskey Glasses (Official Video)-FjBp30kjzTc.webm\n", + "[download] 100% of 4.12MiB in 01:06\n", + "[download] Finished downloading playlist: Whiskey Glasses\n", + "[download] Downloading playlist: Beer Never Broke My Heart\n", + "[youtube:search] query \"Beer Never Broke My Heart\": Downloading page 1\n", + "[youtube:search] playlist Beer Never Broke My Heart: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 7Lb9dq-JZFI: Downloading webpage\n", + "[youtube] Downloading just video 7Lb9dq-JZFI because of --no-playlist\n", + "[download] Destination: Luke Combs - Beer Never Broke My Heart (Official Video)-7Lb9dq-JZFI.m4a\n", + "[download] 100% of 3.44MiB in 00:47\n", + "[ffmpeg] Correcting container in \"Luke Combs - Beer Never Broke My Heart (Official Video)-7Lb9dq-JZFI.m4a\"\n", + "[download] Finished downloading playlist: Beer Never Broke My Heart\n", + "[download] Downloading playlist: When The Party's Over\n", + "[youtube:search] query \"When The Party's Over\": Downloading page 1\n", + "[youtube:search] playlist When The Party's Over: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pbMwTqkKSps: Downloading webpage\n", + "[youtube] Downloading just video pbMwTqkKSps because of --no-playlist\n", + "[download] Destination: Billie Eilish - when the party's over-pbMwTqkKSps.m4a\n", + "[download] 100% of 2.99MiB in 01:03\n", + "[ffmpeg] Correcting container in \"Billie Eilish - when the party's over-pbMwTqkKSps.m4a\"\n", + "[download] Finished downloading playlist: When The Party's Over\n", + "[download] Downloading playlist: Breathin\n", + "[youtube:search] query \"Breathin\": Downloading page 1\n", + "[youtube:search] playlist Breathin: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] kN0iD0pI3o0: Downloading webpage\n", + "[youtube] Downloading just video kN0iD0pI3o0 because of --no-playlist\n", + "[download] Destination: Ariana Grande - breathin-kN0iD0pI3o0.webm\n", + "[download] 100% of 3.16MiB in 00:42\n", + "[download] Finished downloading playlist: Breathin\n", + "[download] Downloading playlist: Bury A Friend\n", + "[youtube:search] query \"Bury A Friend\": Downloading page 1\n", + "[youtube:search] playlist Bury A Friend: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] HUHC9tYz8ik: Downloading webpage\n", + "[youtube] Downloading just video HUHC9tYz8ik because of --no-playlist\n", + "[download] Destination: Billie Eilish - bury a friend-HUHC9tYz8ik.webm\n", + "[download] 100% of 3.30MiB in 00:59\n", + "[download] Finished downloading playlist: Bury A Friend\n", + "[download] Downloading playlist: Close Friends\n", + "[youtube:search] query \"Close Friends\": Downloading page 1\n", + "[youtube:search] playlist Close Friends: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] hhzYbExfVIY: Downloading webpage\n", + "[youtube] Downloading just video hhzYbExfVIY because of --no-playlist\n", + "[download] Destination: Lil Baby, Gunna - Close Friends-hhzYbExfVIY.webm\n", + "[download] 100% of 3.60MiB in 00:53\n", + "[download] Finished downloading playlist: Close Friends\n", + "[download] Downloading playlist: How Do You Sleep?\n", + "[youtube:search] query \"How Do You Sleep?\": Downloading page 1\n", + "[youtube:search] playlist How Do You Sleep?: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] PmYypVozQb4: Downloading webpage\n", + "[youtube] Downloading just video PmYypVozQb4 because of --no-playlist\n", + "[download] Destination: Sam Smith - How Do You Sleep (Official Video)-PmYypVozQb4.webm\n", + "[download] 100% of 3.67MiB in 00:54\n", + "[download] Finished downloading playlist: How Do You Sleep?\n", + "[download] Downloading playlist: Walk Me Home\n", + "[youtube:search] query \"Walk Me Home\": Downloading page 1\n", + "[youtube:search] playlist Walk Me Home: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] J1OsKJW51HY: Downloading webpage\n", + "[youtube] Downloading just video J1OsKJW51HY because of --no-playlist\n", + "[download] Destination: P!NK - Walk Me Home (Official Video)-J1OsKJW51HY.m4a\n", + "[download] 100% of 3.04MiB in 00:38\n", + "[ffmpeg] Correcting container in \"P!NK - Walk Me Home (Official Video)-J1OsKJW51HY.m4a\"\n", + "[download] Finished downloading playlist: Walk Me Home\n", + "[download] Downloading playlist: Robbery\n", + "[youtube:search] query \"Robbery\": Downloading page 1\n", + "[youtube:search] playlist Robbery: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] iI34LYmJ1Fs: Downloading webpage\n", + "[youtube] Downloading just video iI34LYmJ1Fs because of --no-playlist\n", + "[download] Destination: Juice WRLD - Robbery (Directed by Cole Bennett)-iI34LYmJ1Fs.webm\n", + "[download] 100% of 3.93MiB in 00:52\n", + "[download] Finished downloading playlist: Robbery\n", + "[download] Downloading playlist: God's Plan\n", + "[youtube:search] query \"God's Plan\": Downloading page 1\n", + "[youtube:search] playlist God's Plan: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] xpVfcZ0ZcFM: Downloading webpage\n", + "[youtube] Downloading just video xpVfcZ0ZcFM because of --no-playlist\n", + "[download] Destination: Drake - God's Plan-xpVfcZ0ZcFM.webm\n", + "[download] 100% of 5.75MiB in 01:18\n", + "[download] Finished downloading playlist: God's Plan\n", + "[download] Downloading playlist: Perfect\n", + "[youtube:search] query \"Perfect\": Downloading page 1\n", + "[youtube:search] playlist Perfect: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 2Vv-BfVoq4g: Downloading webpage\n", + "[youtube] Downloading just video 2Vv-BfVoq4g because of --no-playlist\n", + "[download] Destination: Ed Sheeran - Perfect (Official Music Video)-2Vv-BfVoq4g.webm\n", + "[download] 100% of 4.52MiB in 01:26\n", + "[download] Finished downloading playlist: Perfect\n", + "[download] Downloading playlist: In My Feelings\n", + "[youtube:search] query \"In My Feelings\": Downloading page 1\n", + "[youtube:search] playlist In My Feelings: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] DRS_PpOrUZ4: Downloading webpage\n", + "[youtube] Downloading just video DRS_PpOrUZ4 because of --no-playlist\n", + "[download] Destination: Drake - In My Feelings-DRS_PpOrUZ4.m4a\n", + "[download] 100% of 7.40MiB in 02:11\n", + "[ffmpeg] Correcting container in \"Drake - In My Feelings-DRS_PpOrUZ4.m4a\"\n", + "[download] Finished downloading playlist: In My Feelings\n", + "[download] Downloading playlist: Nice For What\n", + "[youtube:search] query \"Nice For What\": Downloading page 1\n", + "[youtube:search] playlist Nice For What: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] U9BwWKXjVaI: Downloading webpage\n", + "[youtube] Downloading just video U9BwWKXjVaI because of --no-playlist\n", + "[download] Destination: Drake - Nice For What-U9BwWKXjVaI.m4a\n", + "[download] 100% of 4.05MiB in 01:25\n", + "[ffmpeg] Correcting container in \"Drake - Nice For What-U9BwWKXjVaI.m4a\"\n", + "[download] Finished downloading playlist: Nice For What\n", + "[download] Downloading playlist: Sad!\n", + "[youtube:search] query \"Sad!\": Downloading page 1\n", + "[youtube:search] playlist Sad!: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pgN-vvVVxMA: Downloading webpage\n", + "[youtube] Downloading just video pgN-vvVVxMA because of --no-playlist\n", + "[download] Destination: XXXTENTACION - SAD!-pgN-vvVVxMA.webm\n", + "[download] 100% of 2.62MiB in 00:41\n", + "[download] Finished downloading playlist: Sad!\n", + "[download] Downloading playlist: Never Be The Same\n", + "[youtube:search] query \"Never Be The Same\": Downloading page 1\n", + "[youtube:search] playlist Never Be The Same: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Ph54wQG8ynk: Downloading webpage\n", + "[youtube] Downloading just video Ph54wQG8ynk because of --no-playlist\n", + "[download] Destination: Camila Cabello - Never Be the Same-Ph54wQG8ynk.webm\n", + "[download] 100% of 3.79MiB in 00:55\n", + "[download] Finished downloading playlist: Never Be The Same\n", + "[download] Downloading playlist: No Tears Left To Cry\n", + "[youtube:search] query \"No Tears Left To Cry\": Downloading page 1\n", + "[youtube:search] playlist No Tears Left To Cry: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ffxKSjUwKdU: Downloading webpage\n", + "[youtube] Downloading just video ffxKSjUwKdU because of --no-playlist\n", + "[download] Destination: Ariana Grande - no tears left to cry (Official Video)-ffxKSjUwKdU.m4a\n", + "[download] 100% of 3.68MiB in 01:06\n", + "[ffmpeg] Correcting container in \"Ariana Grande - no tears left to cry (Official Video)-ffxKSjUwKdU.m4a\"\n", + "[download] Finished downloading playlist: No Tears Left To Cry\n", + "[download] Downloading playlist: Thunder\n", + "[youtube:search] query \"Thunder\": Downloading page 1\n", + "[youtube:search] playlist Thunder: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Znu8PY1QZzs: Downloading webpage\n", + "[youtube] Downloading just video Znu8PY1QZzs because of --no-playlist\n", + "[download] Destination: THUNDER at NETS _ FULL GAME HIGHLIGHTS _ January 13, 2022-Znu8PY1QZzs.m4a\n", + "[download] 100% of 8.99MiB in 02:57\n", + "[ffmpeg] Correcting container in \"THUNDER at NETS _ FULL GAME HIGHLIGHTS _ January 13, 2022-Znu8PY1QZzs.m4a\"\n", + "[download] Finished downloading playlist: Thunder\n", + "[download] Downloading playlist: Delicate\n", + "[youtube:search] query \"Delicate\": Downloading page 1\n", + "[youtube:search] playlist Delicate: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] tCXGJQYZ9JA: Downloading webpage\n", + "[youtube] Downloading just video tCXGJQYZ9JA because of --no-playlist\n", + "[download] Destination: Taylor Swift - Delicate-tCXGJQYZ9JA.m4a\n", + "[download] 100% of 3.63MiB in 00:49\n", + "[ffmpeg] Correcting container in \"Taylor Swift - Delicate-tCXGJQYZ9JA.m4a\"\n", + "[download] Finished downloading playlist: Delicate\n", + "[download] Downloading playlist: Bad At Love\n", + "[youtube:search] query \"Bad At Love\": Downloading page 1\n", + "[youtube:search] playlist Bad At Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] xdYFuCp3m9k: Downloading webpage\n", + "[youtube] Downloading just video xdYFuCp3m9k because of --no-playlist\n", + "[download] Destination: Halsey - Bad At Love-xdYFuCp3m9k.webm\n", + "[download] 100% of 3.06MiB in 00:40\n", + "[download] Finished downloading playlist: Bad At Love\n", + "[download] Downloading playlist: Whatever It Takes\n", + "[youtube:search] query \"Whatever It Takes\": Downloading page 1\n", + "[youtube:search] playlist Whatever It Takes: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] gOsM-DYAEhY: Downloading webpage\n", + "[youtube] Downloading just video gOsM-DYAEhY because of --no-playlist\n", + "[download] Destination: Imagine Dragons - Whatever It Takes-gOsM-DYAEhY.webm\n", + "[download] 100% of 3.47MiB in 00:58\n", + "[download] Finished downloading playlist: Whatever It Takes\n", + "[download] Downloading playlist: I Fall Apart\n", + "[youtube:search] query \"I Fall Apart\": Downloading page 1\n", + "[youtube:search] playlist I Fall Apart: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nqfVoTMEosw: Downloading webpage\n", + "[youtube] Downloading just video nqfVoTMEosw because of --no-playlist\n", + "[download] Destination: I Fall Apart-nqfVoTMEosw.webm\n", + "[download] 100% of 3.68MiB in 01:01\n", + "[download] Finished downloading playlist: I Fall Apart\n", + "[download] Downloading playlist: In My Blood\n", + "[youtube:search] query \"In My Blood\": Downloading page 1\n", + "[youtube:search] playlist In My Blood: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 36tggrpRoTI: Downloading webpage\n", + "[youtube] Downloading just video 36tggrpRoTI because of --no-playlist\n", + "[download] Destination: Shawn Mendes - In My Blood-36tggrpRoTI.webm\n", + "[download] 100% of 3.41MiB in 01:04\n", + "[download] Finished downloading playlist: In My Blood\n", + "[download] Downloading playlist: Too Good At Goodbyes\n", + "[youtube:search] query \"Too Good At Goodbyes\": Downloading page 1\n", + "[youtube:search] playlist Too Good At Goodbyes: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] J_ub7Etch2U: Downloading webpage\n", + "[youtube] Downloading just video J_ub7Etch2U because of --no-playlist\n", + "[download] Destination: Sam Smith - Too Good At Goodbyes (Official Video)-J_ub7Etch2U.m4a\n", + "[download] 100% of 4.08MiB in 00:49\n", + "[ffmpeg] Correcting container in \"Sam Smith - Too Good At Goodbyes (Official Video)-J_ub7Etch2U.m4a\"\n", + "[download] Finished downloading playlist: Too Good At Goodbyes\n", + "[download] Downloading playlist: Nonstop\n", + "[youtube:search] query \"Nonstop\": Downloading page 1\n", + "[youtube:search] playlist Nonstop: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QVqS3tB8OtE: Downloading webpage\n", + "[youtube] Downloading just video QVqS3tB8OtE because of --no-playlist\n", + "[download] Destination: Nonstop-QVqS3tB8OtE.webm\n", + "[download] 100% of 3.88MiB in 00:49\n", + "[download] Finished downloading playlist: Nonstop\n", + "[download] Downloading playlist: Bodak Yellow (Money Moves)\n", + "[youtube:search] query \"Bodak Yellow (Money Moves)\": Downloading page 1\n", + "[youtube:search] playlist Bodak Yellow (Money Moves): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] PEGccV-NOm8: Downloading webpage\n", + "[youtube] Downloading just video PEGccV-NOm8 because of --no-playlist\n", + "[download] Destination: Cardi B - Bodak Yellow [OFFICIAL MUSIC VIDEO]-PEGccV-NOm8.webm\n", + "[download] 100% of 4.04MiB in 01:08\n", + "[download] Finished downloading playlist: Bodak Yellow (Money Moves)\n", + "[download] Downloading playlist: Wait\n", + "[youtube:search] query \"Wait\": Downloading page 1\n", + "[youtube:search] playlist Wait: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] K3TYG7Q_fj4: Downloading webpage\n", + "[youtube] Downloading just video K3TYG7Q_fj4 because of --no-playlist\n", + "[download] Destination: Wait On You _ Elevation Worship & Maverick City-K3TYG7Q_fj4.webm\n", + "[download] 100% of 12.65MiB in 03:48\n", + "[download] Finished downloading playlist: Wait\n", + "[download] Downloading playlist: Be Careful\n", + "[youtube:search] query \"Be Careful\": Downloading page 1\n", + "[youtube:search] playlist Be Careful: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 8zSRkr1nQNw: Downloading webpage\n", + "[youtube] Downloading just video 8zSRkr1nQNw because of --no-playlist\n", + "[download] Destination: Cardi B - Be Careful [Official Video]-8zSRkr1nQNw.m4a\n", + "[download] 100% of 3.85MiB in 00:51\n", + "[ffmpeg] Correcting container in \"Cardi B - Be Careful [Official Video]-8zSRkr1nQNw.m4a\"\n", + "[download] Finished downloading playlist: Be Careful\n", + "[download] Downloading playlist: God Is A Woman\n", + "[youtube:search] query \"God Is A Woman\": Downloading page 1\n", + "[youtube:search] playlist God Is A Woman: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] kHLHSlExFis: Downloading webpage\n", + "[youtube] Downloading just video kHLHSlExFis because of --no-playlist\n", + "[download] Destination: Ariana Grande - God is a woman (Official Video)-kHLHSlExFis.m4a\n", + "[download] 100% of 3.73MiB in 01:11\n", + "[ffmpeg] Correcting container in \"Ariana Grande - God is a woman (Official Video)-kHLHSlExFis.m4a\"\n", + "[download] Finished downloading playlist: God Is A Woman\n", + "[download] Downloading playlist: Young Dumb & Broke\n", + "[youtube:search] query \"Young Dumb & Broke\": Downloading page 1\n", + "[youtube:search] playlist Young Dumb & Broke: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] IPfJnp1guPc: Downloading webpage\n", + "[youtube] Downloading just video IPfJnp1guPc because of --no-playlist\n", + "[download] Destination: Khalid - Young Dumb & Broke (Official Video)-IPfJnp1guPc.webm\n", + "[download] 100% of 4.00MiB in 01:26\n", + "[download] Finished downloading playlist: Young Dumb & Broke\n", + "[download] Downloading playlist: Natural\n", + "[youtube:search] query \"Natural\": Downloading page 1\n", + "[youtube:search] playlist Natural: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] V5M2WZiAy6k: Downloading webpage\n", + "[youtube] Downloading just video V5M2WZiAy6k because of --no-playlist\n", + "[download] Destination: Imagine Dragons - Natural (Lyrics)-V5M2WZiAy6k.webm\n", + "[download] 100% of 2.99MiB in 01:04\n", + "[download] Finished downloading playlist: Natural\n", + "[download] Downloading playlist: Shape Of You\n", + "[youtube:search] query \"Shape Of You\": Downloading page 1\n", + "[youtube:search] playlist Shape Of You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] JGwWNGJdvx8: Downloading webpage\n", + "[youtube] Downloading just video JGwWNGJdvx8 because of --no-playlist\n", + "[download] Destination: Ed Sheeran - Shape of You (Official Music Video)-JGwWNGJdvx8.m4a\n", + "[download] 100% of 4.06MiB in 00:55\n", + "[ffmpeg] Correcting container in \"Ed Sheeran - Shape of You (Official Music Video)-JGwWNGJdvx8.m4a\"\n", + "[download] Finished downloading playlist: Shape Of You\n", + "[download] Downloading playlist: Call Out My Name\n", + "[youtube:search] query \"Call Out My Name\": Downloading page 1\n", + "[youtube:search] playlist Call Out My Name: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] M4ZoCHID9GI: Downloading webpage\n", + "[youtube] Downloading just video M4ZoCHID9GI because of --no-playlist\n", + "[download] Destination: The Weeknd - Call Out My Name (Official Video)-M4ZoCHID9GI.m4a\n", + "[download] 100% of 3.68MiB in 01:09\n", + "[ffmpeg] Correcting container in \"The Weeknd - Call Out My Name (Official Video)-M4ZoCHID9GI.m4a\"\n", + "[download] Finished downloading playlist: Call Out My Name\n", + "[download] Downloading playlist: I'm Upset\n", + "[youtube:search] query \"I'm Upset\": Downloading page 1\n", + "[youtube:search] playlist I'm Upset: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rIhx2wZ8jnA: Downloading webpage\n", + "[youtube] Downloading just video rIhx2wZ8jnA because of --no-playlist\n", + "[download] Destination: Drake - I'm Upset-rIhx2wZ8jnA.webm\n", + "[download] 100% of 6.21MiB in 02:11\n", + "[download] Finished downloading playlist: I'm Upset\n", + "[download] Downloading playlist: Moonlight\n", + "[youtube:search] query \"Moonlight\": Downloading page 1\n", + "[youtube:search] playlist Moonlight: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] GX8Hg6kWQYI: Downloading webpage\n", + "[youtube] Downloading just video GX8Hg6kWQYI because of --no-playlist\n", + "[download] Destination: XXXTENTACION - MOONLIGHT (OFFICIAL MUSIC VIDEO)-GX8Hg6kWQYI.webm\n", + "[download] 100% of 2.60MiB in 01:01\n", + "[download] Finished downloading playlist: Moonlight\n", + "[download] Downloading playlist: Changes\n", + "[youtube:search] query \"Changes\": Downloading page 1\n", + "[youtube:search] playlist Changes: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] f0bbDFRYD_A: Downloading webpage\n", + "[youtube] Downloading just video f0bbDFRYD_A because of --no-playlist\n", + "[download] Destination: XXXTENTACION - changes-f0bbDFRYD_A.webm\n", + "[download] 100% of 2.17MiB in 00:26\n", + "[download] Finished downloading playlist: Changes\n", + "[download] Downloading playlist: One Number Away\n", + "[youtube:search] query \"One Number Away\": Downloading page 1\n", + "[youtube:search] playlist One Number Away: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Ct9BFr9XBaI: Downloading webpage\n", + "[youtube] Downloading just video Ct9BFr9XBaI because of --no-playlist\n", + "[download] Destination: Luke Combs - One Number Away-Ct9BFr9XBaI.webm\n", + "[download] 100% of 4.03MiB in 01:24\n", + "[download] Finished downloading playlist: One Number Away\n", + "[download] Downloading playlist: Believer\n", + "[youtube:search] query \"Believer\": Downloading page 1\n", + "[youtube:search] playlist Believer: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] W0DM5lcj6mw: Downloading webpage\n", + "[youtube] Downloading just video W0DM5lcj6mw because of --no-playlist\n", + "[download] Destination: Imagine Dragons - Believer (Lyrics)-W0DM5lcj6mw.webm\n", + "[download] 100% of 3.23MiB in 01:08\n", + "[download] Finished downloading playlist: Believer\n", + "[download] Downloading playlist: That's What I Like\n", + "[youtube:search] query \"That's What I Like\": Downloading page 1\n", + "[youtube:search] playlist That's What I Like: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] PMivT7MJ41M: Downloading webpage\n", + "[youtube] Downloading just video PMivT7MJ41M because of --no-playlist\n", + "[download] Destination: Bruno Mars - That’s What I Like (Official Music Video)-PMivT7MJ41M.webm\n", + "[download] 100% of 3.29MiB in 01:19\n", + "[download] Finished downloading playlist: That's What I Like\n", + "[download] Downloading playlist: Humble.\n", + "[youtube:search] query \"Humble.\": Downloading page 1\n", + "[youtube:search] playlist Humble.: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] tvTRZJ-4EyI: Downloading webpage\n", + "[youtube] Downloading just video tvTRZJ-4EyI because of --no-playlist\n", + "[download] Destination: Kendrick Lamar - HUMBLE.-tvTRZJ-4EyI.m4a\n", + "[download] 100% of 2.84MiB in 00:42\n", + "[ffmpeg] Correcting container in \"Kendrick Lamar - HUMBLE.-tvTRZJ-4EyI.m4a\"\n", + "[download] Finished downloading playlist: Humble.\n", + "[download] Downloading playlist: Mask Off\n", + "[youtube:search] query \"Mask Off\": Downloading page 1\n", + "[youtube:search] playlist Mask Off: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] xvZqHgFz51I: Downloading webpage\n", + "[youtube] Downloading just video xvZqHgFz51I because of --no-playlist\n", + "[download] Destination: Future - Mask Off (Official Music Video)-xvZqHgFz51I.webm\n", + "[download] 100% of 4.62MiB in 01:23\n", + "[download] Finished downloading playlist: Mask Off\n", + "[download] Downloading playlist: 24K Magic\n", + "[youtube:search] query \"24K Magic\": Downloading page 1\n", + "[youtube:search] playlist 24K Magic: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] UqyT8IEBkvY: Downloading webpage\n", + "[youtube] Downloading just video UqyT8IEBkvY because of --no-playlist\n", + "[download] Destination: Bruno Mars - 24K Magic (Official Music Video)-UqyT8IEBkvY.webm\n", + "[download] 100% of 3.56MiB in 00:55\n", + "[download] Finished downloading playlist: 24K Magic\n", + "[download] Downloading playlist: Location\n", + "[youtube:search] query \"Location\": Downloading page 1\n", + "[youtube:search] playlist Location: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] by3yRdlQvzs: Downloading webpage\n", + "[youtube] Downloading just video by3yRdlQvzs because of --no-playlist\n", + "[download] Destination: Khalid - Location (Official Video)-by3yRdlQvzs.webm\n", + "[download] 100% of 3.66MiB in 01:18\n", + "[download] Finished downloading playlist: Location\n", + "[download] Downloading playlist: There's Nothing Holdin' Me Back\n", + "[youtube:search] query \"There's Nothing Holdin' Me Back\": Downloading page 1\n", + "[youtube:search] playlist There's Nothing Holdin' Me Back: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] dT2owtxkU8k: Downloading webpage\n", + "[youtube] Downloading just video dT2owtxkU8k because of --no-playlist\n", + "[download] Destination: Shawn Mendes - There's Nothing Holdin' Me Back-dT2owtxkU8k.webm\n", + "[download] 100% of 3.77MiB in 01:17\n", + "[download] Finished downloading playlist: There's Nothing Holdin' Me Back\n", + "[download] Downloading playlist: Love On The Brain\n", + "[youtube:search] query \"Love On The Brain\": Downloading page 1\n", + "[youtube:search] playlist Love On The Brain: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QMP-o8WXSPM: Downloading webpage\n", + "[youtube] Downloading just video QMP-o8WXSPM because of --no-playlist\n", + "[download] Destination: Love On The Brain-QMP-o8WXSPM.webm\n", + "[download] 100% of 3.51MiB in 00:43\n", + "[download] Finished downloading playlist: Love On The Brain\n", + "[download] Downloading playlist: Fake Love\n", + "[youtube:search] query \"Fake Love\": Downloading page 1\n", + "[youtube:search] playlist Fake Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 7C2z4GqqS5E: Downloading webpage\n", + "[youtube] Downloading just video 7C2z4GqqS5E because of --no-playlist\n", + "[download] Destination: BTS (방탄소년단) 'FAKE LOVE' Official MV-7C2z4GqqS5E.m4a\n", + "[download] 100% of 4.92MiB in 01:58\n", + "[ffmpeg] Correcting container in \"BTS (방탄소년단) 'FAKE LOVE' Official MV-7C2z4GqqS5E.m4a\"\n", + "[download] Finished downloading playlist: Fake Love\n", + "[download] Downloading playlist: Look What You Made Me Do\n", + "[youtube:search] query \"Look What You Made Me Do\": Downloading page 1\n", + "[youtube:search] playlist Look What You Made Me Do: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 3tmd-ClpJxA: Downloading webpage\n", + "[youtube] Downloading just video 3tmd-ClpJxA because of --no-playlist\n", + "[download] Destination: Taylor Swift - Look What You Made Me Do-3tmd-ClpJxA.m4a\n", + "[download] 100% of 3.95MiB in 00:58\n", + "[ffmpeg] Correcting container in \"Taylor Swift - Look What You Made Me Do-3tmd-ClpJxA.m4a\"\n", + "[download] Finished downloading playlist: Look What You Made Me Do\n", + "[download] Downloading playlist: Castle On The Hill\n", + "[youtube:search] query \"Castle On The Hill\": Downloading page 1\n", + "[youtube:search] playlist Castle On The Hill: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] K0ibBPhiaG0: Downloading webpage\n", + "[youtube] Downloading just video K0ibBPhiaG0 because of --no-playlist\n", + "[download] Destination: Ed Sheeran - Castle On The Hill [Official Music Video]-K0ibBPhiaG0.m4a\n", + "[download] 100% of 4.45MiB in 01:31\n", + "[ffmpeg] Correcting container in \"Ed Sheeran - Castle On The Hill [Official Music Video]-K0ibBPhiaG0.m4a\"\n", + "[download] Finished downloading playlist: Castle On The Hill\n", + "[download] Downloading playlist: Paris\n", + "[youtube:search] query \"Paris\": Downloading page 1\n", + "[youtube:search] playlist Paris: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] naJAbH-oWYc: Downloading webpage\n", + "[youtube] Downloading just video naJAbH-oWYc because of --no-playlist\n", + "[download] Destination: The Chainsmokers – Paris (Lyrics)-naJAbH-oWYc.webm\n", + "[download] 100% of 3.53MiB in 00:48\n", + "[download] Finished downloading playlist: Paris\n", + "[download] Downloading playlist: Can't Stop The Feeling!\n", + "[youtube:search] query \"Can't Stop The Feeling!\": Downloading page 1\n", + "[youtube:search] playlist Can't Stop The Feeling!: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ru0K8uYEZWw: Downloading webpage\n", + "[youtube] Downloading just video ru0K8uYEZWw because of --no-playlist\n", + "[download] Destination: CAN'T STOP THE FEELING! (from DreamWorks Animation's 'TROLLS') (Official Video)-ru0K8uYEZWw.webm\n", + "[download] 100% of 4.42MiB in 01:10\n", + "[download] Finished downloading playlist: Can't Stop The Feeling!\n", + "[download] Downloading playlist: Mercy\n", + "[youtube:search] query \"Mercy\": Downloading page 1\n", + "[youtube:search] playlist Mercy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Thvm6dADOms: Downloading webpage\n", + "[youtube] Downloading just video Thvm6dADOms because of --no-playlist\n", + "[download] Destination: Brett Young - Mercy-Thvm6dADOms.webm\n", + "[download] 100% of 3.95MiB in 01:15\n", + "[download] Finished downloading playlist: Mercy\n", + "[download] Downloading playlist: Heathens\n", + "[youtube:search] query \"Heathens\": Downloading page 1\n", + "[youtube:search] playlist Heathens: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] UprcpdwuwCg: Downloading webpage\n", + "[youtube] Downloading just video UprcpdwuwCg because of --no-playlist\n", + "[download] Destination: twenty one pilots - Heathens (from Suicide Squad - The Album) [OFFICIAL VIDEO]-UprcpdwuwCg.webm\n", + "[download] 100% of 3.43MiB in 00:47\n", + "[download] Finished downloading playlist: Heathens\n", + "[download] Downloading playlist: Now Or Never\n", + "[youtube:search] query \"Now Or Never\": Downloading page 1\n", + "[youtube:search] playlist Now Or Never: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Q9jNSwmEQ3s: Downloading webpage\n", + "[youtube] Downloading just video Q9jNSwmEQ3s because of --no-playlist\n", + "[download] Destination: Halsey - Now Or Never (Audio)-Q9jNSwmEQ3s.webm\n", + "[download] 100% of 3.33MiB in 00:40\n", + "[download] Finished downloading playlist: Now Or Never\n", + "[download] Downloading playlist: DNA.\n", + "[youtube:search] query \"DNA.\": Downloading page 1\n", + "[youtube:search] playlist DNA.: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] MBdVXkSdhwU: Downloading webpage\n", + "[youtube] Downloading just video MBdVXkSdhwU because of --no-playlist\n", + "[download] Destination: BTS (방탄소년단) 'DNA' Official MV-MBdVXkSdhwU.m4a\n", + "[download] 100% of 3.94MiB in 00:53\n", + "[ffmpeg] Correcting container in \"BTS (방탄소년단) 'DNA' Official MV-MBdVXkSdhwU.m4a\"\n", + "[download] Finished downloading playlist: DNA.\n", + "[download] Downloading playlist: Passionfruit\n", + "[youtube:search] query \"Passionfruit\": Downloading page 1\n", + "[youtube:search] playlist Passionfruit: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] fHR1CZ9x61E: Downloading webpage\n", + "[youtube] Downloading just video fHR1CZ9x61E because of --no-playlist\n", + "[download] Destination: Drake - Passionfruit-fHR1CZ9x61E.webm\n", + "[download] 100% of 4.86MiB in 01:49\n", + "[download] Finished downloading playlist: Passionfruit\n", + "[download] Downloading playlist: Goosebumps\n", + "[youtube:search] query \"Goosebumps\": Downloading page 1\n", + "[youtube:search] playlist Goosebumps: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Dst9gZkq1a8: Downloading webpage\n", + "[youtube] Downloading just video Dst9gZkq1a8 because of --no-playlist\n", + "[download] Destination: Travis Scott - goosebumps ft. Kendrick Lamar-Dst9gZkq1a8.webm\n", + "[download] 100% of 4.65MiB in 00:56\n", + "[download] Finished downloading playlist: Goosebumps\n", + "[download] Downloading playlist: Hurricane\n", + "[youtube:search] query \"Hurricane\": Downloading page 1\n", + "[youtube:search] playlist Hurricane: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] bPjZmQAvk_8: Downloading webpage\n", + "[youtube] Downloading just video bPjZmQAvk_8 because of --no-playlist\n", + "[download] Destination: Kanye West - Hurricane (Audio)-bPjZmQAvk_8.webm\n", + "[download] 100% of 3.95MiB in 00:57\n", + "[download] Finished downloading playlist: Hurricane\n", + "[download] Downloading playlist: What About Us\n", + "[youtube:search] query \"What About Us\": Downloading page 1\n", + "[youtube:search] playlist What About Us: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ClU3fctbGls: Downloading webpage\n", + "[youtube] Downloading just video ClU3fctbGls because of --no-playlist\n", + "[download] Destination: P!NK - What About Us (Official Video)-ClU3fctbGls.webm\n", + "[download] 100% of 5.22MiB in 01:13\n", + "[download] Finished downloading playlist: What About Us\n", + "[download] Downloading playlist: Sign Of The Times\n", + "[youtube:search] query \"Sign Of The Times\": Downloading page 1\n", + "[youtube:search] playlist Sign Of The Times: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] qN4ooNx77u0: Downloading webpage\n", + "[youtube] Downloading just video qN4ooNx77u0 because of --no-playlist\n", + "[download] Destination: Harry Styles - Sign of the Times (Official Video)-qN4ooNx77u0.webm\n", + "[download] 100% of 5.32MiB in 01:29\n", + "[download] Finished downloading playlist: Sign Of The Times\n", + "[download] Downloading playlist: Water Under The Bridge\n", + "[youtube:search] query \"Water Under The Bridge\": Downloading page 1\n", + "[youtube:search] playlist Water Under The Bridge: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] KllP4GY6q7I: Downloading webpage\n", + "[youtube] Downloading just video KllP4GY6q7I because of --no-playlist\n", + "[download] Destination: Water Under the Bridge-KllP4GY6q7I.webm\n", + "[download] 100% of 3.75MiB in 00:51\n", + "[download] Finished downloading playlist: Water Under The Bridge\n", + "[download] Downloading playlist: Malibu\n", + "[youtube:search] query \"Malibu\": Downloading page 1\n", + "[youtube:search] playlist Malibu: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 8j9zMok6two: Downloading webpage\n", + "[youtube] Downloading just video 8j9zMok6two because of --no-playlist\n", + "[download] Destination: Miley Cyrus - Malibu (Official Video)-8j9zMok6two.webm\n", + "[download] 100% of 3.80MiB in 00:52\n", + "[download] Finished downloading playlist: Malibu\n", + "[download] Downloading playlist: Treat You Better\n", + "[youtube:search] query \"Treat You Better\": Downloading page 1\n", + "[youtube:search] playlist Treat You Better: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] lY2yjAdbvdQ: Downloading webpage\n", + "[youtube] Downloading just video lY2yjAdbvdQ because of --no-playlist\n", + "[download] Destination: Shawn Mendes - Treat You Better-lY2yjAdbvdQ.webm\n", + "[download] 100% of 3.98MiB in 01:02\n", + "[download] Finished downloading playlist: Treat You Better\n", + "[download] Downloading playlist: Look At Me!\n", + "[youtube:search] query \"Look At Me!\": Downloading page 1\n", + "[youtube:search] playlist Look At Me!: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] wJGcwEv7838: Downloading webpage\n", + "[youtube] Downloading just video wJGcwEv7838 because of --no-playlist\n", + "[download] Destination: XXXTENTACION - Look At Me! (Audio)-wJGcwEv7838.webm\n", + "[download] 100% of 2.02MiB in 00:28\n", + "[download] Finished downloading playlist: Look At Me!\n", + "[download] Downloading playlist: Love Yourself\n", + "[youtube:search] query \"Love Yourself\": Downloading page 1\n", + "[youtube:search] playlist Love Yourself: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] oyEuk8j8imI: Downloading webpage\n", + "[youtube] Downloading just video oyEuk8j8imI because of --no-playlist\n", + "[download] Destination: Justin Bieber - Love Yourself (Official Music Video)-oyEuk8j8imI.m4a\n", + "[download] 100% of 4.20MiB in 00:58\n", + "[ffmpeg] Correcting container in \"Justin Bieber - Love Yourself (Official Music Video)-oyEuk8j8imI.m4a\"\n", + "[download] Finished downloading playlist: Love Yourself\n", + "[download] Downloading playlist: Sorry\n", + "[youtube:search] query \"Sorry\": Downloading page 1\n", + "[youtube:search] playlist Sorry: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] fRh_vgS2dFE: Downloading webpage\n", + "[youtube] Downloading just video fRh_vgS2dFE because of --no-playlist\n", + "[download] Destination: Justin Bieber - Sorry (PURPOSE - The Movement)-fRh_vgS2dFE.m4a\n", + "[download] 100% of 3.17MiB in 01:16\n", + "[ffmpeg] Correcting container in \"Justin Bieber - Sorry (PURPOSE - The Movement)-fRh_vgS2dFE.m4a\"\n", + "[download] Finished downloading playlist: Sorry\n", + "[download] Downloading playlist: Stressed Out\n", + "[youtube:search] query \"Stressed Out\": Downloading page 1\n", + "[youtube:search] playlist Stressed Out: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pXRviuL6vMY: Downloading webpage\n", + "[youtube] Downloading just video pXRviuL6vMY because of --no-playlist\n", + "[download] Destination: twenty one pilots - Stressed Out [OFFICIAL VIDEO]-pXRviuL6vMY.m4a\n", + "[download] 100% of 3.48MiB in 00:42\n", + "[ffmpeg] Correcting container in \"twenty one pilots - Stressed Out [OFFICIAL VIDEO]-pXRviuL6vMY.m4a\"\n", + "[download] Finished downloading playlist: Stressed Out\n", + "[download] Downloading playlist: Hello\n", + "[youtube:search] query \"Hello\": Downloading page 1\n", + "[youtube:search] playlist Hello: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] YQHsXMglC9A: Downloading webpage\n", + "[youtube] Downloading just video YQHsXMglC9A because of --no-playlist\n", + "[download] Destination: Adele - Hello-YQHsXMglC9A.m4a\n", + "[download] 100% of 5.66MiB in 01:23\n", + "[ffmpeg] Correcting container in \"Adele - Hello-YQHsXMglC9A.m4a\"\n", + "[download] Finished downloading playlist: Hello\n", + "[download] Downloading playlist: Needed Me\n", + "[youtube:search] query \"Needed Me\": Downloading page 1\n", + "[youtube:search] playlist Needed Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] wfN4PVaOU5Q: Downloading webpage\n", + "[youtube] Downloading just video wfN4PVaOU5Q because of --no-playlist\n", + "[download] Destination: Rihanna - Needed Me-wfN4PVaOU5Q.webm\n", + "[download] 100% of 3.13MiB in 00:45\n", + "[download] Finished downloading playlist: Needed Me\n", + "[download] Downloading playlist: Ride\n", + "[youtube:search] query \"Ride\": Downloading page 1\n", + "[youtube:search] playlist Ride: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Pw-0pbY9JeU: Downloading webpage\n", + "[youtube] Downloading just video Pw-0pbY9JeU because of --no-playlist\n", + "[download] Destination: twenty one pilots - Ride (Official Video)-Pw-0pbY9JeU.m4a\n", + "[download] 100% of 3.48MiB in 00:51\n", + "[ffmpeg] Correcting container in \"twenty one pilots - Ride (Official Video)-Pw-0pbY9JeU.m4a\"\n", + "[download] Finished downloading playlist: Ride\n", + "[download] Downloading playlist: Stitches\n", + "[youtube:search] query \"Stitches\": Downloading page 1\n", + "[youtube:search] playlist Stitches: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] VbfpW0pbvaU: Downloading webpage\n", + "[youtube] Downloading just video VbfpW0pbvaU because of --no-playlist\n", + "[download] Destination: Shawn Mendes - Stitches (Official Video)-VbfpW0pbvaU.webm\n", + "[download] 100% of 3.83MiB in 00:53\n", + "[download] Finished downloading playlist: Stitches\n", + "[download] Downloading playlist: Hotline Bling\n", + "[youtube:search] query \"Hotline Bling\": Downloading page 1\n", + "[youtube:search] playlist Hotline Bling: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uxpDa-c-4Mc: Downloading webpage\n", + "[youtube] Downloading just video uxpDa-c-4Mc because of --no-playlist\n", + "[download] Destination: Drake - Hotline Bling-uxpDa-c-4Mc.m4a\n", + "[download] 100% of 4.56MiB in 01:13\n", + "[ffmpeg] Correcting container in \"Drake - Hotline Bling-uxpDa-c-4Mc.m4a\"\n", + "[download] Finished downloading playlist: Hotline Bling\n", + "[download] Downloading playlist: Send My Love (To Your New Lover)\n", + "[youtube:search] query \"Send My Love (To Your New Lover)\": Downloading page 1\n", + "[youtube:search] playlist Send My Love (To Your New Lover): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] fk4BbF7B29w: Downloading webpage\n", + "[youtube] Downloading just video fk4BbF7B29w because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Send My Love (To Your New Lover)\n", + "[download] Downloading playlist: What Do You Mean?\n", + "[youtube:search] query \"What Do You Mean?\": Downloading page 1\n", + "[youtube:search] playlist What Do You Mean?: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] DK_0jXPuIr0: Downloading webpage\n", + "[youtube] Downloading just video DK_0jXPuIr0 because of --no-playlist\n", + "[download] Destination: Justin Bieber - What Do You Mean (Official Music Video)-DK_0jXPuIr0.m4a\n", + "[download] 100% of 4.60MiB in 01:33\n", + "[ffmpeg] Correcting container in \"Justin Bieber - What Do You Mean (Official Music Video)-DK_0jXPuIr0.m4a\"\n", + "[download] Finished downloading playlist: What Do You Mean?\n", + "[download] Downloading playlist: The Hills\n", + "[youtube:search] query \"The Hills\": Downloading page 1\n", + "[youtube:search] playlist The Hills: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] _X8O6Emaw_E: Downloading webpage\n", + "[youtube] Downloading just video _X8O6Emaw_E because of --no-playlist\n", + "[download] Destination: The Hills-_X8O6Emaw_E.webm\n", + "[download] 100% of 3.90MiB in 01:33\n", + "[download] Finished downloading playlist: The Hills\n", + "[download] Downloading playlist: Just Like Fire\n", + "[youtube:search] query \"Just Like Fire\": Downloading page 1\n", + "[youtube:search] playlist Just Like Fire: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] jBVsgYJKkyE: Downloading webpage\n", + "[youtube] Downloading just video jBVsgYJKkyE because of --no-playlist\n", + "[download] Destination: P!nk - Just Like Fire (Lyrics) 'No one can be just like me any way' [TikTok Song]-jBVsgYJKkyE.m4a\n", + "[download] 100% of 4.01MiB in 01:12\n", + "[ffmpeg] Correcting container in \"P!nk - Just Like Fire (Lyrics) 'No one can be just like me any way' [TikTok Song]-jBVsgYJKkyE.m4a\"\n", + "[download] Finished downloading playlist: Just Like Fire\n", + "[download] Downloading playlist: Dangerous Woman\n", + "[youtube:search] query \"Dangerous Woman\": Downloading page 1\n", + "[youtube:search] playlist Dangerous Woman: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 9WbCfHutDSE: Downloading webpage\n", + "[youtube] Downloading just video 9WbCfHutDSE because of --no-playlist\n", + "[download] Destination: Ariana Grande - Dangerous Woman-9WbCfHutDSE.webm\n", + "[download] 100% of 3.76MiB in 00:51\n", + "[download] Finished downloading playlist: Dangerous Woman\n", + "[download] Downloading playlist: Controlla\n", + "[youtube:search] query \"Controlla\": Downloading page 1\n", + "[youtube:search] playlist Controlla: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] PsW85VbSau0: Downloading webpage\n", + "[youtube] Downloading just video PsW85VbSau0 because of --no-playlist\n", + "[download] Destination: Drake - Controlla-PsW85VbSau0.webm\n", + "[download] 100% of 4.12MiB in 01:14\n", + "[download] Finished downloading playlist: Controlla\n", + "[download] Downloading playlist: No\n", + "[youtube:search] query \"No\": Downloading page 1\n", + "[youtube:search] playlist No: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] POszCiLezbg: Downloading webpage\n", + "[youtube] Downloading just video POszCiLezbg because of --no-playlist\n", + "[download] Destination: Meghan Trainor - NO (Lyrics)-POszCiLezbg.webm\n", + "[download] 100% of 3.31MiB in 00:58\n", + "[download] Finished downloading playlist: No\n", + "[download] Downloading playlist: Into You\n", + "[youtube:search] query \"Into You\": Downloading page 1\n", + "[youtube:search] playlist Into You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 1ekZEVeXwek: Downloading webpage\n", + "[youtube] Downloading just video 1ekZEVeXwek because of --no-playlist\n", + "[download] Destination: Ariana Grande - Into You (Official Video)-1ekZEVeXwek.m4a\n", + "[download] 100% of 3.93MiB in 01:35\n", + "[ffmpeg] Correcting container in \"Ariana Grande - Into You (Official Video)-1ekZEVeXwek.m4a\"\n", + "[download] Finished downloading playlist: Into You\n", + "[download] Downloading playlist: In The Night\n", + "[youtube:search] query \"In The Night\": Downloading page 1\n", + "[youtube:search] playlist In The Night: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] E_kmphbILcU: Downloading webpage\n", + "[youtube] Downloading just video E_kmphbILcU because of --no-playlist\n", + "[download] Destination: In The Night-E_kmphbILcU.webm\n", + "[download] 100% of 3.71MiB in 01:18\n", + "[download] Finished downloading playlist: In The Night\n", + "[download] Downloading playlist: Me Too\n", + "[youtube:search] query \"Me Too\": Downloading page 1\n", + "[youtube:search] playlist Me Too: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] qDRORgoZxZU: Downloading webpage\n", + "[youtube] Downloading just video qDRORgoZxZU because of --no-playlist\n", + "[download] Destination: Meghan Trainor - Me Too-qDRORgoZxZU.webm\n", + "[download] 100% of 2.88MiB in 00:35\n", + "[download] Finished downloading playlist: Me Too\n", + "[download] Downloading playlist: White Iverson\n", + "[youtube:search] query \"White Iverson\": Downloading page 1\n", + "[youtube:search] playlist White Iverson: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] SLsTskih7_I: Downloading webpage\n", + "[youtube] Downloading just video SLsTskih7_I because of --no-playlist\n", + "[download] Destination: Post Malone - White Iverson-SLsTskih7_I.webm\n", + "[download] 100% of 4.65MiB in 01:12\n", + "[download] Finished downloading playlist: White Iverson\n", + "[download] Downloading playlist: Can't Feel My Face\n", + "[youtube:search] query \"Can't Feel My Face\": Downloading page 1\n", + "[youtube:search] playlist Can't Feel My Face: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] KEI4qSrkPAs: Downloading webpage\n", + "[youtube] Downloading just video KEI4qSrkPAs because of --no-playlist\n", + "[download] Destination: The Weeknd - Can't Feel My Face (Official Video)-KEI4qSrkPAs.m4a\n", + "[download] 100% of 3.37MiB in 00:54\n", + "[ffmpeg] Correcting container in \"The Weeknd - Can't Feel My Face (Official Video)-KEI4qSrkPAs.m4a\"\n", + "[download] Finished downloading playlist: Can't Feel My Face\n", + "[download] Downloading playlist: Hymn For The Weekend\n", + "[youtube:search] query \"Hymn For The Weekend\": Downloading page 1\n", + "[youtube:search] playlist Hymn For The Weekend: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] YykjpeuMNEk: Downloading webpage\n", + "[youtube] Downloading just video YykjpeuMNEk because of --no-playlist\n", + "[download] Destination: Coldplay - Hymn For The Weekend (Official Video)-YykjpeuMNEk.webm\n", + "[download] 100% of 4.17MiB in 01:00\n", + "[download] Finished downloading playlist: Hymn For The Weekend\n", + "[download] Downloading playlist: Antidote\n", + "[youtube:search] query \"Antidote\": Downloading page 1\n", + "[youtube:search] playlist Antidote: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] KnZ8h3MRuYg: Downloading webpage\n", + "[youtube] Downloading just video KnZ8h3MRuYg because of --no-playlist\n", + "[download] Destination: Travis Scott - Antidote-KnZ8h3MRuYg.webm\n", + "[download] 100% of 4.59MiB in 01:16\n", + "[download] Finished downloading playlist: Antidote\n", + "[download] Downloading playlist: Wildest Dreams\n", + "[youtube:search] query \"Wildest Dreams\": Downloading page 1\n", + "[youtube:search] playlist Wildest Dreams: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] IdneKLhsWOQ: Downloading webpage\n", + "[youtube] Downloading just video IdneKLhsWOQ because of --no-playlist\n", + "[download] Destination: Taylor Swift - Wildest Dreams-IdneKLhsWOQ.m4a\n", + "[download] 100% of 3.62MiB in 00:53\n", + "[ffmpeg] Correcting container in \"Taylor Swift - Wildest Dreams-IdneKLhsWOQ.m4a\"\n", + "[download] Finished downloading playlist: Wildest Dreams\n", + "[download] Downloading playlist: When We Were Young\n", + "[youtube:search] query \"When We Were Young\": Downloading page 1\n", + "[youtube:search] playlist When We Were Young: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Xpc8mAJ_2nM: Downloading webpage\n", + "[youtube] Downloading just video Xpc8mAJ_2nM because of --no-playlist\n", + "[download] Destination: When We Were Young-Xpc8mAJ_2nM.webm\n", + "[download] 100% of 4.64MiB in 01:06\n", + "[download] Finished downloading playlist: When We Were Young\n", + "[download] Downloading playlist: Back To Sleep\n", + "[youtube:search] query \"Back To Sleep\": Downloading page 1\n", + "[youtube:search] playlist Back To Sleep: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] fuZIv6tl9O8: Downloading webpage\n", + "[youtube] Downloading just video fuZIv6tl9O8 because of --no-playlist\n", + "[download] Destination: Chris Brown - Back To Sleep (Audio)-fuZIv6tl9O8.webm\n", + "[download] 100% of 3.17MiB in 00:44\n", + "[download] Finished downloading playlist: Back To Sleep\n", + "[download] Downloading playlist: Adventure Of A Lifetime\n", + "[youtube:search] query \"Adventure Of A Lifetime\": Downloading page 1\n", + "[youtube:search] playlist Adventure Of A Lifetime: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QtXby3twMmI: Downloading webpage\n", + "[youtube] Downloading just video QtXby3twMmI because of --no-playlist\n", + "[download] Destination: Coldplay - Adventure Of A Lifetime (Official Video)-QtXby3twMmI.webm\n", + "[download] 100% of 5.02MiB in 01:00\n", + "[download] Finished downloading playlist: Adventure Of A Lifetime\n", + "[download] Downloading playlist: Wicked\n", + "[youtube:search] query \"Wicked\": Downloading page 1\n", + "[youtube:search] playlist Wicked: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] y17mXewFpjs: Downloading webpage\n", + "[youtube] Downloading just video y17mXewFpjs because of --no-playlist\n", + "[download] Destination: JMB Juvie - Wicked ( Music Video ) ( Dir. by Krispy Kam )-y17mXewFpjs.webm\n", + "[download] 100% of 2.92MiB in 00:52\n", + "[download] Finished downloading playlist: Wicked\n", + "[download] Downloading playlist: Thinking Out Loud\n", + "[youtube:search] query \"Thinking Out Loud\": Downloading page 1\n", + "[youtube:search] playlist Thinking Out Loud: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] lp-EO5I60KA: Downloading webpage\n", + "[youtube] Downloading just video lp-EO5I60KA because of --no-playlist\n", + "[download] Destination: Ed Sheeran - Thinking Out Loud (Official Music Video)-lp-EO5I60KA.webm\n", + "[download] 100% of 4.77MiB in 01:10\n", + "[download] Finished downloading playlist: Thinking Out Loud\n", + "[download] Downloading playlist: Trap Queen\n", + "[youtube:search] query \"Trap Queen\": Downloading page 1\n", + "[youtube:search] playlist Trap Queen: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] i_kF4zLNKio: Downloading webpage\n", + "[youtube] Downloading just video i_kF4zLNKio because of --no-playlist\n", + "[download] Destination: Fetty Wap - Trap Queen (Official Video) Prod. By Tony Fadd-i_kF4zLNKio.m4a\n", + "[download] 100% of 3.77MiB in 00:46\n", + "[ffmpeg] Correcting container in \"Fetty Wap - Trap Queen (Official Video) Prod. By Tony Fadd-i_kF4zLNKio.m4a\"\n", + "[download] Finished downloading playlist: Trap Queen\n", + "[download] Downloading playlist: Sugar\n", + "[youtube:search] query \"Sugar\": Downloading page 1\n", + "[youtube:search] playlist Sugar: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 09R8_2nJtjg: Downloading webpage\n", + "[youtube] Downloading just video 09R8_2nJtjg because of --no-playlist\n", + "[download] Destination: Maroon 5 - Sugar (Official Music Video)-09R8_2nJtjg.m4a\n", + "[download] 100% of 4.65MiB in 01:36\n", + "[ffmpeg] Correcting container in \"Maroon 5 - Sugar (Official Music Video)-09R8_2nJtjg.m4a\"\n", + "[download] Finished downloading playlist: Sugar\n", + "[download] Downloading playlist: Blank Space\n", + "[youtube:search] query \"Blank Space\": Downloading page 1\n", + "[youtube:search] playlist Blank Space: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] e-ORhEE9VVg: Downloading webpage\n", + "[youtube] Downloading just video e-ORhEE9VVg because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Blank Space\n", + "[download] Downloading playlist: Earned It (Fifty Shades Of Grey)\n", + "[youtube:search] query \"Earned It (Fifty Shades Of Grey)\": Downloading page 1\n", + "[youtube:search] playlist Earned It (Fifty Shades Of Grey): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] waU75jdUnYw: Downloading webpage\n", + "[youtube] Downloading just video waU75jdUnYw because of --no-playlist\n", + "[download] Destination: The Weeknd - Earned It (from Fifty Shades Of Grey) (Official Video - Explicit)-waU75jdUnYw.webm\n", + "[download] 100% of 4.37MiB in 01:05\n", + "[download] Finished downloading playlist: Earned It (Fifty Shades Of Grey)\n", + "[download] Downloading playlist: Shake It Off\n", + "[youtube:search] query \"Shake It Off\": Downloading page 1\n", + "[youtube:search] playlist Shake It Off: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nfWlot6h_JM: Downloading webpage\n", + "[youtube] Downloading just video nfWlot6h_JM because of --no-playlist\n", + "[download] Destination: Taylor Swift - Shake It Off-nfWlot6h_JM.m4a\n", + "[download] 100% of 3.73MiB in 00:51\n", + "[ffmpeg] Correcting container in \"Taylor Swift - Shake It Off-nfWlot6h_JM.m4a\"\n", + "[download] Finished downloading playlist: Shake It Off\n", + "[download] Downloading playlist: Lips Are Movin\n", + "[youtube:search] query \"Lips Are Movin\": Downloading page 1\n", + "[youtube:search] playlist Lips Are Movin: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] qDc_5zpBj7s: Downloading webpage\n", + "[youtube] Downloading just video qDc_5zpBj7s because of --no-playlist\n", + "[download] Destination: Meghan Trainor - Lips Are Movin (Official Music Video)-qDc_5zpBj7s.webm\n", + "[download] 100% of 2.93MiB in 00:55\n", + "[download] Finished downloading playlist: Lips Are Movin\n", + "[download] Downloading playlist: I'm Not The Only One\n", + "[youtube:search] query \"I'm Not The Only One\": Downloading page 1\n", + "[youtube:search] playlist I'm Not The Only One: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nCkpzqqog4k: Downloading webpage\n", + "[youtube] Downloading just video nCkpzqqog4k because of --no-playlist\n", + "[download] Destination: Sam Smith - I'm Not The Only One (Official Video)-nCkpzqqog4k.webm\n", + "[download] 100% of 4.38MiB in 01:29\n", + "[download] Finished downloading playlist: I'm Not The Only One\n", + "[download] Downloading playlist: All About That Bass\n", + "[youtube:search] query \"All About That Bass\": Downloading page 1\n", + "[youtube:search] playlist All About That Bass: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 7PCkvCPvDXk: Downloading webpage\n", + "[youtube] Downloading just video 7PCkvCPvDXk because of --no-playlist\n", + "[download] Destination: Meghan Trainor - All About That Bass-7PCkvCPvDXk.webm\n", + "[download] 100% of 3.04MiB in 00:40\n", + "[download] Finished downloading playlist: All About That Bass\n", + "[download] Downloading playlist: Style\n", + "[youtube:search] query \"Style\": Downloading page 1\n", + "[youtube:search] playlist Style: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] -CmadmM5cOk: Downloading webpage\n", + "[youtube] Downloading just video -CmadmM5cOk because of --no-playlist\n", + "[download] Destination: Taylor Swift - Style--CmadmM5cOk.m4a\n", + "[download] 100% of 3.75MiB in 01:13\n", + "[ffmpeg] Correcting container in \"Taylor Swift - Style--CmadmM5cOk.m4a\"\n", + "[download] Finished downloading playlist: Style\n", + "[download] Downloading playlist: Photograph\n", + "[youtube:search] query \"Photograph\": Downloading page 1\n", + "[youtube:search] playlist Photograph: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] qgmXPCX4VzU: Downloading webpage\n", + "[youtube] Downloading just video qgmXPCX4VzU because of --no-playlist\n", + "[download] Destination: Photograph - Ed Sheeran (Lyrics)-qgmXPCX4VzU.m4a\n", + "[download] 100% of 4.09MiB in 01:28\n", + "[ffmpeg] Correcting container in \"Photograph - Ed Sheeran (Lyrics)-qgmXPCX4VzU.m4a\"\n", + "[download] Finished downloading playlist: Photograph\n", + "[download] Downloading playlist: Animals\n", + "[youtube:search] query \"Animals\": Downloading page 1\n", + "[youtube:search] playlist Animals: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] eEaZvEZye84: Downloading webpage\n", + "[youtube] Downloading just video eEaZvEZye84 because of --no-playlist\n", + "[download] Destination: ONE HOUR of Amazing Animal Moments _ BBC Earth-eEaZvEZye84.m4a\n", + "[download] 100% of 57.32MiB in 20:15\n", + "[ffmpeg] Correcting container in \"ONE HOUR of Amazing Animal Moments _ BBC Earth-eEaZvEZye84.m4a\"\n", + "[download] Finished downloading playlist: Animals\n", + "[download] Downloading playlist: B**** Better Have My Money\n", + "[youtube:search] query \"B**** Better Have My Money\": Downloading page 1\n", + "[youtube:search] playlist B**** Better Have My Money: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] acoknuTpPOM: Downloading webpage\n", + "[youtube] Downloading just video acoknuTpPOM because of --no-playlist\n", + "[download] Destination: Rihanna - Bitch Better Have My Money (Explicit Audio)-acoknuTpPOM.webm\n", + "[download] 100% of 3.47MiB in 01:13\n", + "[download] Finished downloading playlist: B**** Better Have My Money\n", + "[download] Downloading playlist: Stay With Me\n", + "[youtube:search] query \"Stay With Me\": Downloading page 1\n", + "[youtube:search] playlist Stay With Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pB-5XG-DbAA: Downloading webpage\n", + "[youtube] Downloading just video pB-5XG-DbAA because of --no-playlist\n", + "[download] Destination: Sam Smith - Stay With Me (Official Video)-pB-5XG-DbAA.m4a\n", + "[download] 100% of 3.24MiB in 01:00\n", + "[ffmpeg] Correcting container in \"Sam Smith - Stay With Me (Official Video)-pB-5XG-DbAA.m4a\"\n", + "[download] Finished downloading playlist: Stay With Me\n", + "[download] Downloading playlist: 7/11\n", + "[youtube:search] query \"7/11\": Downloading page 1\n", + "[youtube:search] playlist 7/11: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] k4YRWT_Aldo: Downloading webpage\n", + "[youtube] Downloading just video k4YRWT_Aldo because of --no-playlist\n", + "[download] Destination: Beyoncé - 7_11-k4YRWT_Aldo.webm\n", + "[download] 100% of 3.37MiB in 00:53\n", + "[download] Finished downloading playlist: 7/11\n", + "[download] Downloading playlist: Drag Me Down\n", + "[youtube:search] query \"Drag Me Down\": Downloading page 1\n", + "[youtube:search] playlist Drag Me Down: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Jwgf3wmiA04: Downloading webpage\n", + "[youtube] Downloading just video Jwgf3wmiA04 because of --no-playlist\n", + "[download] Destination: One Direction - Drag Me Down (Official Video)-Jwgf3wmiA04.webm\n", + "[download] 100% of 3.04MiB in 00:55\n", + "[download] Finished downloading playlist: Drag Me Down\n", + "[download] Downloading playlist: One Last Time\n", + "[youtube:search] query \"One Last Time\": Downloading page 1\n", + "[youtube:search] playlist One Last Time: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Wg92RrNhB8s: Downloading webpage\n", + "[youtube] Downloading just video Wg92RrNhB8s because of --no-playlist\n", + "[download] Destination: Ariana Grande - One Last Time (Lyric Video)-Wg92RrNhB8s.webm\n", + "[download] 100% of 3.15MiB in 00:38\n", + "[download] Finished downloading playlist: One Last Time\n", + "[download] Downloading playlist: Dear Future Husband\n", + "[youtube:search] query \"Dear Future Husband\": Downloading page 1\n", + "[youtube:search] playlist Dear Future Husband: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ShlW5plD_40: Downloading webpage\n", + "[youtube] Downloading just video ShlW5plD_40 because of --no-playlist\n", + "[download] Destination: Meghan Trainor - Dear Future Husband (Official Video)-ShlW5plD_40.m4a\n", + "[download] 100% of 3.10MiB in 00:39\n", + "[ffmpeg] Correcting container in \"Meghan Trainor - Dear Future Husband (Official Video)-ShlW5plD_40.m4a\"\n", + "[download] Finished downloading playlist: Dear Future Husband\n", + "[download] Downloading playlist: Lay Me Down\n", + "[youtube:search] query \"Lay Me Down\": Downloading page 1\n", + "[youtube:search] playlist Lay Me Down: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] HaMq2nn5ac0: Downloading webpage\n", + "[youtube] Downloading just video HaMq2nn5ac0 because of --no-playlist\n", + "[download] Destination: Sam Smith - Lay Me Down (Official Video)-HaMq2nn5ac0.webm\n", + "[download] 100% of 4.03MiB in 00:52\n", + "[download] Finished downloading playlist: Lay Me Down\n", + "[download] Downloading playlist: Don't\n", + "[youtube:search] query \"Don't\": Downloading page 1\n", + "[youtube:search] playlist Don't: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] hdD11hMXdBU: Downloading webpage\n", + "[youtube] Downloading just video hdD11hMXdBU because of --no-playlist\n", + "[download] Destination: Don't-hdD11hMXdBU.webm\n", + "[download] 100% of 3.31MiB in 01:07\n", + "[download] Finished downloading playlist: Don't\n", + "[download] Downloading playlist: Night Changes\n", + "[youtube:search] query \"Night Changes\": Downloading page 1\n", + "[youtube:search] playlist Night Changes: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] syFZfO_wfMQ: Downloading webpage\n", + "[youtube] Downloading just video syFZfO_wfMQ because of --no-playlist\n", + "[download] Destination: One Direction - Night Changes-syFZfO_wfMQ.webm\n", + "[download] 100% of 3.83MiB in 01:04\n", + "[download] Finished downloading playlist: Night Changes\n", + "[download] Downloading playlist: Back To Back\n", + "[youtube:search] query \"Back To Back\": Downloading page 1\n", + "[youtube:search] playlist Back To Back: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] WWozF4loq9U: Downloading webpage\n", + "[youtube] Downloading just video WWozF4loq9U because of --no-playlist\n", + "[download] Destination: Young Dolph, Key Glock - Back to Back (Official Video)-WWozF4loq9U.webm\n", + "[download] 100% of 3.01MiB in 00:36\n", + "[download] Finished downloading playlist: Back To Back\n", + "[download] Downloading playlist: Happy\n", + "[youtube:search] query \"Happy\": Downloading page 1\n", + "[youtube:search] playlist Happy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ZbZSe6N_BXs: Downloading webpage\n", + "[youtube] Downloading just video ZbZSe6N_BXs because of --no-playlist\n", + "[download] Destination: Pharrell Williams - Happy (Video)-ZbZSe6N_BXs.m4a\n", + "[download] 100% of 3.72MiB in 00:51\n", + "[ffmpeg] Correcting container in \"Pharrell Williams - Happy (Video)-ZbZSe6N_BXs.m4a\"\n", + "[download] Finished downloading playlist: Happy\n", + "[download] Downloading playlist: Demons\n", + "[youtube:search] query \"Demons\": Downloading page 1\n", + "[youtube:search] playlist Demons: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] mWRsgZuwf_8: Downloading webpage\n", + "[youtube] Downloading just video mWRsgZuwf_8 because of --no-playlist\n", + "[download] Destination: Imagine Dragons - Demons (Official Video)-mWRsgZuwf_8.m4a\n", + "[download] 100% of 3.65MiB in 01:12\n", + "[ffmpeg] Correcting container in \"Imagine Dragons - Demons (Official Video)-mWRsgZuwf_8.m4a\"\n", + "[download] Finished downloading playlist: Demons\n", + "[download] Downloading playlist: Story Of My Life\n", + "[youtube:search] query \"Story Of My Life\": Downloading page 1\n", + "[youtube:search] playlist Story Of My Life: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] W-TE_Ys4iwM: Downloading webpage\n", + "[youtube] Downloading just video W-TE_Ys4iwM because of --no-playlist\n", + "[download] Destination: One Direction - Story of My Life-W-TE_Ys4iwM.webm\n", + "[download] 100% of 4.02MiB in 01:05\n", + "[download] Finished downloading playlist: Story Of My Life\n", + "[download] Downloading playlist: Maps\n", + "[youtube:search] query \"Maps\": Downloading page 1\n", + "[youtube:search] playlist Maps: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Y7ix6RITXM0: Downloading webpage\n", + "[youtube] Downloading just video Y7ix6RITXM0 because of --no-playlist\n", + "[download] Destination: Maroon 5 - Maps (Lyric Video)-Y7ix6RITXM0.webm\n", + "[download] 100% of 2.99MiB in 00:40\n", + "[download] Finished downloading playlist: Maps\n", + "[download] Downloading playlist: Anaconda\n", + "[youtube:search] query \"Anaconda\": Downloading page 1\n", + "[youtube:search] playlist Anaconda: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] LDZX4ooRsWs: Downloading webpage\n", + "[youtube] Downloading just video LDZX4ooRsWs because of --no-playlist\n", + "[download] Destination: Nicki Minaj - Anaconda-LDZX4ooRsWs.m4a\n", + "[download] 100% of 4.47MiB in 01:15\n", + "[ffmpeg] Correcting container in \"Nicki Minaj - Anaconda-LDZX4ooRsWs.m4a\"\n", + "[download] Finished downloading playlist: Anaconda\n", + "[download] Downloading playlist: Wrecking Ball\n", + "[youtube:search] query \"Wrecking Ball\": Downloading page 1\n", + "[youtube:search] playlist Wrecking Ball: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] My2FRPA3Gf8: Downloading webpage\n", + "[youtube] Downloading just video My2FRPA3Gf8 because of --no-playlist\n", + "[download] Destination: Miley Cyrus - Wrecking Ball (Official Video)-My2FRPA3Gf8.webm\n", + "[download] 100% of 3.59MiB in 01:06\n", + "[download] Finished downloading playlist: Wrecking Ball\n", + "[download] Downloading playlist: Not A Bad Thing\n", + "[youtube:search] query \"Not A Bad Thing\": Downloading page 1\n", + "[youtube:search] playlist Not A Bad Thing: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Y8ygKnBtKAk: Downloading webpage\n", + "[youtube] Downloading just video Y8ygKnBtKAk because of --no-playlist\n", + "[download] Destination: Justin Timberlake - Not a Bad Thing (Official Audio)-Y8ygKnBtKAk.webm\n", + "[download] 100% of 4.23MiB in 01:40\n", + "[download] Finished downloading playlist: Not A Bad Thing\n", + "[download] Downloading playlist: Roar\n", + "[youtube:search] query \"Roar\": Downloading page 1\n", + "[youtube:search] playlist Roar: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] CevxZvSJLk8: Downloading webpage\n", + "[youtube] Downloading just video CevxZvSJLk8 because of --no-playlist\n", + "[download] Destination: Katy Perry - Roar (Official)-CevxZvSJLk8.m4a\n", + "[download] 100% of 4.16MiB in 01:01\n", + "[ffmpeg] Correcting container in \"Katy Perry - Roar (Official)-CevxZvSJLk8.m4a\"\n", + "[download] Finished downloading playlist: Roar\n", + "[download] Downloading playlist: A Sky Full Of Stars\n", + "[youtube:search] query \"A Sky Full Of Stars\": Downloading page 1\n", + "[youtube:search] playlist A Sky Full Of Stars: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] VPRjCeoBqrI: Downloading webpage\n", + "[youtube] Downloading just video VPRjCeoBqrI because of --no-playlist\n", + "[download] Destination: Coldplay - A Sky Full Of Stars (Official Video)-VPRjCeoBqrI.webm\n", + "[download] 100% of 4.08MiB in 00:55\n", + "[download] Finished downloading playlist: A Sky Full Of Stars\n", + "[download] Downloading playlist: Sing\n", + "[youtube:search] query \"Sing\": Downloading page 1\n", + "[youtube:search] playlist Sing: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pHZneOidj9A: Downloading webpage\n", + "[youtube] Downloading just video pHZneOidj9A because of --no-playlist\n", + "[download] Destination: SING Song 'I'm Still Standing' 😍 Taron Egerton as Johnny HD-pHZneOidj9A.webm\n", + "[download] 100% of 3.08MiB in 01:09\n", + "[download] Finished downloading playlist: Sing\n", + "[download] Downloading playlist: Radioactive\n", + "[youtube:search] query \"Radioactive\": Downloading page 1\n", + "[youtube:search] playlist Radioactive: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ktvTqknDobU: Downloading webpage\n", + "[youtube] Downloading just video ktvTqknDobU because of --no-playlist\n", + "[download] Destination: Imagine Dragons - Radioactive-ktvTqknDobU.m4a\n", + "[download] 100% of 4.03MiB in 01:16\n", + "[ffmpeg] Correcting container in \"Imagine Dragons - Radioactive-ktvTqknDobU.m4a\"\n", + "[download] Finished downloading playlist: Radioactive\n", + "[download] Downloading playlist: Birthday\n", + "[youtube:search] query \"Birthday\": Downloading page 1\n", + "[youtube:search] playlist Birthday: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] jqYxyd1iSNk: Downloading webpage\n", + "[youtube] Downloading just video jqYxyd1iSNk because of --no-playlist\n", + "[download] Destination: Katy Perry - Birthday (Lyric Video)-jqYxyd1iSNk.m4a\n", + "[download] 100% of 3.33MiB in 00:45\n", + "[ffmpeg] Correcting container in \"Katy Perry - Birthday (Lyric Video)-jqYxyd1iSNk.m4a\"\n", + "[download] Finished downloading playlist: Birthday\n", + "[download] Downloading playlist: Partition\n", + "[youtube:search] query \"Partition\": Downloading page 1\n", + "[youtube:search] playlist Partition: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pZ12_E5R3qc: Downloading webpage\n", + "[youtube] Downloading just video pZ12_E5R3qc because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Partition\n", + "[download] Downloading playlist: 0 To 100 / The Catch Up\n", + "[youtube:search] query \"0 To 100 / The Catch Up\": Downloading page 1\n", + "[youtube:search] playlist 0 To 100 / The Catch Up: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] I2bBZvSPpOo: Downloading webpage\n", + "[youtube] Downloading just video I2bBZvSPpOo because of --no-playlist\n", + "[download] Destination: Drake - 0 to 100 _ The Catch Up (Explicit).-I2bBZvSPpOo.webm\n", + "[download] 100% of 5.77MiB in 01:20\n", + "[download] Finished downloading playlist: 0 To 100 / The Catch Up\n", + "[download] Downloading playlist: Mirrors\n", + "[youtube:search] query \"Mirrors\": Downloading page 1\n", + "[youtube:search] playlist Mirrors: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uuZE_IRwLNI: Downloading webpage\n", + "[youtube] Downloading just video uuZE_IRwLNI because of --no-playlist\n", + "[download] Destination: Justin Timberlake - Mirrors (Official Video)-uuZE_IRwLNI.m4a\n", + "[download] 100% of 7.72MiB in 02:18\n", + "[ffmpeg] Correcting container in \"Justin Timberlake - Mirrors (Official Video)-uuZE_IRwLNI.m4a\"\n", + "[download] Finished downloading playlist: Mirrors\n", + "[download] Downloading playlist: When I Was Your Man\n", + "[youtube:search] query \"When I Was Your Man\": Downloading page 1\n", + "[youtube:search] playlist When I Was Your Man: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ekzHIouo8Q4: Downloading webpage\n", + "[youtube] Downloading just video ekzHIouo8Q4 because of --no-playlist\n", + "[download] Destination: Bruno Mars - When I Was Your Man (Official Music Video)-ekzHIouo8Q4.webm\n", + "[download] 100% of 3.70MiB in 00:52\n", + "[download] Finished downloading playlist: When I Was Your Man\n", + "[download] Downloading playlist: Locked Out Of Heaven\n", + "[youtube:search] query \"Locked Out Of Heaven\": Downloading page 1\n", + "[youtube:search] playlist Locked Out Of Heaven: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] e-fA-gBCkj0: Downloading webpage\n", + "[youtube] Downloading just video e-fA-gBCkj0 because of --no-playlist\n", + "[download] Destination: Bruno Mars - Locked Out Of Heaven (Official Music Video)-e-fA-gBCkj0.m4a\n", + "[download] 100% of 3.62MiB in 01:06\n", + "[ffmpeg] Correcting container in \"Bruno Mars - Locked Out Of Heaven (Official Music Video)-e-fA-gBCkj0.m4a\"\n", + "[download] Finished downloading playlist: Locked Out Of Heaven\n", + "[download] Downloading playlist: I Knew You Were Trouble.\n", + "[youtube:search] query \"I Knew You Were Trouble.\": Downloading page 1\n", + "[youtube:search] playlist I Knew You Were Trouble.: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] vNoKguSdy4Y: Downloading webpage\n", + "[youtube] Downloading just video vNoKguSdy4Y because of --no-playlist\n", + "[download] Destination: Taylor Swift - I Knew You Were Trouble-vNoKguSdy4Y.webm\n", + "[download] 100% of 5.54MiB in 01:13\n", + "[download] Finished downloading playlist: I Knew You Were Trouble.\n", + "[download] Downloading playlist: We Can't Stop\n", + "[youtube:search] query \"We Can't Stop\": Downloading page 1\n", + "[youtube:search] playlist We Can't Stop: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] LrUvu1mlWco: Downloading webpage\n", + "[youtube] Downloading just video LrUvu1mlWco because of --no-playlist\n", + "[download] Destination: Miley Cyrus - We Can't Stop (Official Video)-LrUvu1mlWco.webm\n", + "[download] 100% of 3.39MiB in 00:41\n", + "[download] Finished downloading playlist: We Can't Stop\n", + "[download] Downloading playlist: Diamonds\n", + "[youtube:search] query \"Diamonds\": Downloading page 1\n", + "[youtube:search] playlist Diamonds: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] lWA2pjMjpBs: Downloading webpage\n", + "[youtube] Downloading just video lWA2pjMjpBs because of --no-playlist\n", + "[download] Destination: Rihanna - Diamonds-lWA2pjMjpBs.m4a\n", + "[download] 100% of 4.37MiB in 01:12\n", + "[ffmpeg] Correcting container in \"Rihanna - Diamonds-lWA2pjMjpBs.m4a\"\n", + "[download] Finished downloading playlist: Diamonds\n", + "[download] Downloading playlist: Treasure\n", + "[youtube:search] query \"Treasure\": Downloading page 1\n", + "[youtube:search] playlist Treasure: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nPvuNsRccVw: Downloading webpage\n", + "[youtube] Downloading just video nPvuNsRccVw because of --no-playlist\n", + "[download] Destination: Bruno Mars - Treasure (Official Music Video)-nPvuNsRccVw.m4a\n", + "[download] 100% of 2.96MiB in 00:56\n", + "[ffmpeg] Correcting container in \"Bruno Mars - Treasure (Official Music Video)-nPvuNsRccVw.m4a\"\n", + "[download] Finished downloading playlist: Treasure\n", + "[download] Downloading playlist: Started From The Bottom\n", + "[youtube:search] query \"Started From The Bottom\": Downloading page 1\n", + "[youtube:search] playlist Started From The Bottom: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] RubBzkZzpUA: Downloading webpage\n", + "[youtube] Downloading just video RubBzkZzpUA because of --no-playlist\n", + "[download] Destination: Drake - Started From The Bottom (Explicit)-RubBzkZzpUA.m4a\n", + "[download] 100% of 4.95MiB in 01:22\n", + "[ffmpeg] Correcting container in \"Drake - Started From The Bottom (Explicit)-RubBzkZzpUA.m4a\"\n", + "[download] Finished downloading playlist: Started From The Bottom\n", + "[download] Downloading playlist: Daylight\n", + "[youtube:search] query \"Daylight\": Downloading page 1\n", + "[youtube:search] playlist Daylight: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] u9raS7-NisU: Downloading webpage\n", + "[youtube] Downloading just video u9raS7-NisU because of --no-playlist\n", + "[download] Destination: Taylor Swift - Daylight (Official Audio)-u9raS7-NisU.webm\n", + "[download] 100% of 4.71MiB in 01:25\n", + "[download] Finished downloading playlist: Daylight\n", + "[download] Downloading playlist: Applause\n", + "[youtube:search] query \"Applause\": Downloading page 1\n", + "[youtube:search] playlist Applause: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pco91kroVgQ: Downloading webpage\n", + "[youtube] Downloading just video pco91kroVgQ because of --no-playlist\n", + "[download] Destination: Lady Gaga - Applause (Official Music Video)-pco91kroVgQ.m4a\n", + "[download] 100% of 3.31MiB in 00:45\n", + "[ffmpeg] Correcting container in \"Lady Gaga - Applause (Official Music Video)-pco91kroVgQ.m4a\"\n", + "[download] Finished downloading playlist: Applause\n", + "[download] Downloading playlist: One More Night\n", + "[youtube:search] query \"One More Night\": Downloading page 1\n", + "[youtube:search] playlist One More Night: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] fwK7ggA3-bU: Downloading webpage\n", + "[youtube] Downloading just video fwK7ggA3-bU because of --no-playlist\n", + "[download] Destination: Maroon 5 - One More Night (Official Music Video)-fwK7ggA3-bU.m4a\n", + "[download] 100% of 3.44MiB in 01:05\n", + "[ffmpeg] Correcting container in \"Maroon 5 - One More Night (Official Music Video)-fwK7ggA3-bU.m4a\"\n", + "[download] Finished downloading playlist: One More Night\n", + "[download] Downloading playlist: It's Time\n", + "[youtube:search] query \"It's Time\": Downloading page 1\n", + "[youtube:search] playlist It's Time: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] sENM2wA_FTg: Downloading webpage\n", + "[youtube] Downloading just video sENM2wA_FTg because of --no-playlist\n", + "[download] Destination: Imagine Dragons - It's Time-sENM2wA_FTg.m4a\n", + "[download] 100% of 3.80MiB in 01:15\n", + "[ffmpeg] Correcting container in \"Imagine Dragons - It's Time-sENM2wA_FTg.m4a\"\n", + "[download] Finished downloading playlist: It's Time\n", + "[download] Downloading playlist: Love Somebody\n", + "[youtube:search] query \"Love Somebody\": Downloading page 1\n", + "[youtube:search] playlist Love Somebody: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] MU8B4XDI3Uw: Downloading webpage\n", + "[youtube] Downloading just video MU8B4XDI3Uw because of --no-playlist\n", + "[download] Destination: Maroon 5 - Love Somebody (Official Music Video)-MU8B4XDI3Uw.m4a\n", + "[download] 100% of 3.68MiB in 01:05\n", + "[ffmpeg] Correcting container in \"Maroon 5 - Love Somebody (Official Music Video)-MU8B4XDI3Uw.m4a\"\n", + "[download] Finished downloading playlist: Love Somebody\n", + "[download] Downloading playlist: Try\n", + "[youtube:search] query \"Try\": Downloading page 1\n", + "[youtube:search] playlist Try: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] yTCDVfMz15M: Downloading webpage\n", + "[youtube] Downloading just video yTCDVfMz15M because of --no-playlist\n", + "[download] Destination: P!nk - Try (Official Video)-yTCDVfMz15M.m4a\n", + "[download] 100% of 3.85MiB in 01:31\n", + "[ffmpeg] Correcting container in \"P!nk - Try (Official Video)-yTCDVfMz15M.m4a\"\n", + "[download] Finished downloading playlist: Try\n", + "[download] Downloading playlist: Die Young\n", + "[youtube:search] query \"Die Young\": Downloading page 1\n", + "[youtube:search] playlist Die Young: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 5EBALIhQ0Tg: Downloading webpage\n", + "[youtube] Downloading just video 5EBALIhQ0Tg because of --no-playlist\n", + "[download] Destination: Kesha - Die Young (Lyrics)-5EBALIhQ0Tg.m4a\n", + "[download] 100% of 3.30MiB in 00:46\n", + "[ffmpeg] Correcting container in \"Kesha - Die Young (Lyrics)-5EBALIhQ0Tg.m4a\"\n", + "[download] Finished downloading playlist: Die Young\n", + "[download] Downloading playlist: Berzerk\n", + "[youtube:search] query \"Berzerk\": Downloading page 1\n", + "[youtube:search] playlist Berzerk: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ab9176Srb5Y: Downloading webpage\n", + "[youtube] Downloading just video ab9176Srb5Y because of --no-playlist\n", + "[download] Destination: Eminem - Berzerk (Official Music Video) (Explicit)-ab9176Srb5Y.m4a\n", + "[download] 100% of 4.01MiB in 01:11\n", + "[ffmpeg] Correcting container in \"Eminem - Berzerk (Official Music Video) (Explicit)-ab9176Srb5Y.m4a\"\n", + "[download] Finished downloading playlist: Berzerk\n", + "[download] Downloading playlist: Pour It Up\n", + "[youtube:search] query \"Pour It Up\": Downloading page 1\n", + "[youtube:search] playlist Pour It Up: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ehcVomMexkY: Downloading webpage\n", + "[youtube] Downloading just video ehcVomMexkY because of --no-playlist\n", + "[download] Destination: Rihanna - Pour It Up (Explicit)-ehcVomMexkY.webm\n", + "[download] 100% of 3.09MiB in 00:56\n", + "[download] Finished downloading playlist: Pour It Up\n", + "[download] Downloading playlist: 22\n", + "[youtube:search] query \"22\": Downloading page 1\n", + "[youtube:search] playlist 22: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] AgFeZr5ptV8: Downloading webpage\n", + "[youtube] Downloading just video AgFeZr5ptV8 because of --no-playlist\n", + "[download] Destination: Taylor Swift - 22-AgFeZr5ptV8.m4a\n", + "[download] 100% of 3.75MiB in 00:50\n", + "[ffmpeg] Correcting container in \"Taylor Swift - 22-AgFeZr5ptV8.m4a\"\n", + "[download] Finished downloading playlist: 22\n", + "[download] Downloading playlist: Best Song Ever\n", + "[youtube:search] query \"Best Song Ever\": Downloading page 1\n", + "[youtube:search] playlist Best Song Ever: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] o_v9MY_FMcw: Downloading webpage\n", + "[youtube] Downloading just video o_v9MY_FMcw because of --no-playlist\n", + "[download] Destination: One Direction - Best Song Ever-o_v9MY_FMcw.m4a\n", + "[download] 100% of 5.76MiB in 01:59\n", + "[ffmpeg] Correcting container in \"One Direction - Best Song Ever-o_v9MY_FMcw.m4a\"\n", + "[download] Finished downloading playlist: Best Song Ever\n", + "[download] Downloading playlist: The A Team\n", + "[youtube:search] query \"The A Team\": Downloading page 1\n", + "[youtube:search] playlist The A Team: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] UAWcs5H-qgQ: Downloading webpage\n", + "[youtube] Downloading just video UAWcs5H-qgQ because of --no-playlist\n", + "[download] Destination: Ed Sheeran - The A Team [Official Music Video]-UAWcs5H-qgQ.webm\n", + "[download] 100% of 4.57MiB in 01:25\n", + "[download] Finished downloading playlist: The A Team\n", + "[download] Downloading playlist: Swimming Pools (Drank)\n", + "[youtube:search] query \"Swimming Pools (Drank)\": Downloading page 1\n", + "[youtube:search] playlist Swimming Pools (Drank): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] B5YNiCfWC3A: Downloading webpage\n", + "[youtube] Downloading just video B5YNiCfWC3A because of --no-playlist\n", + "[download] Destination: Kendrick Lamar - Swimming Pools (Drank)-B5YNiCfWC3A.webm\n", + "[download] 100% of 3.58MiB in 01:15\n", + "[download] Finished downloading playlist: Swimming Pools (Drank)\n", + "[download] Downloading playlist: Let Me Love You (Until You Learn To Love Yourself)\n", + "[youtube:search] query \"Let Me Love You (Until You Learn To Love Yourself)\": Downloading page 1\n", + "[youtube:search] playlist Let Me Love You (Until You Learn To Love Yourself): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] crrOl0egI00: Downloading webpage\n", + "[youtube] Downloading just video crrOl0egI00 because of --no-playlist\n", + "[download] Destination: Ne-Yo - Let Me Love You (Until You Learn To Love Yourself) (Official Music Video)-crrOl0egI00.m4a\n", + "[download] 100% of 4.11MiB in 00:52\n", + "[ffmpeg] Correcting container in \"Ne-Yo - Let Me Love You (Until You Learn To Love Yourself) (Official Music Video)-crrOl0egI00.m4a\"\n", + "[download] Finished downloading playlist: Let Me Love You (Until You Learn To Love Yourself)\n", + "[download] Downloading playlist: Starships\n", + "[youtube:search] query \"Starships\": Downloading page 1\n", + "[youtube:search] playlist Starships: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] SeIJmciN8mo: Downloading webpage\n", + "[youtube] Downloading just video SeIJmciN8mo because of --no-playlist\n", + "[download] Destination: Nicki Minaj - Starships (Explicit)-SeIJmciN8mo.m4a\n", + "[download] 100% of 4.03MiB in 01:25\n", + "[ffmpeg] Correcting container in \"Nicki Minaj - Starships (Explicit)-SeIJmciN8mo.m4a\"\n", + "[download] Finished downloading playlist: Starships\n", + "[download] Downloading playlist: What Makes You Beautiful\n", + "[youtube:search] query \"What Makes You Beautiful\": Downloading page 1\n", + "[youtube:search] playlist What Makes You Beautiful: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QJO3ROT-A4E: Downloading webpage\n", + "[youtube] Downloading just video QJO3ROT-A4E because of --no-playlist\n", + "[download] Destination: One Direction - What Makes You Beautiful (Official Video)-QJO3ROT-A4E.m4a\n", + "[download] 100% of 3.19MiB in 01:07\n", + "[ffmpeg] Correcting container in \"One Direction - What Makes You Beautiful (Official Video)-QJO3ROT-A4E.m4a\"\n", + "[download] Finished downloading playlist: What Makes You Beautiful\n", + "[download] Downloading playlist: Set Fire To The Rain\n", + "[youtube:search] query \"Set Fire To The Rain\": Downloading page 1\n", + "[youtube:search] playlist Set Fire To The Rain: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uJdu4Lfy8aI: Downloading webpage\n", + "[youtube] Downloading just video uJdu4Lfy8aI because of --no-playlist\n", + "[download] Destination: Set Fire to the Rain-uJdu4Lfy8aI.webm\n", + "[download] 100% of 3.95MiB in 01:15\n", + "[download] Finished downloading playlist: Set Fire To The Rain\n", + "[download] Downloading playlist: Sexy And I Know It\n", + "[youtube:search] query \"Sexy And I Know It\": Downloading page 1\n", + "[youtube:search] playlist Sexy And I Know It: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] wyx6JDQCslE: Downloading webpage\n", + "[youtube] Downloading just video wyx6JDQCslE because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Sexy And I Know It\n", + "[download] Downloading playlist: Wide Awake\n", + "[youtube:search] query \"Wide Awake\": Downloading page 1\n", + "[youtube:search] playlist Wide Awake: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] k0BWlvnBmIE: Downloading webpage\n", + "[youtube] Downloading just video k0BWlvnBmIE because of --no-playlist\n", + "[download] Destination: Katy Perry - Wide Awake (Official Video)-k0BWlvnBmIE.m4a\n", + "[download] 100% of 4.27MiB in 01:21\n", + "[ffmpeg] Correcting container in \"Katy Perry - Wide Awake (Official Video)-k0BWlvnBmIE.m4a\"\n", + "[download] Finished downloading playlist: Wide Awake\n", + "[download] Downloading playlist: Where Have You Been\n", + "[youtube:search] query \"Where Have You Been\": Downloading page 1\n", + "[youtube:search] playlist Where Have You Been: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] HBxt_v0WF6Y: Downloading webpage\n", + "[youtube] Downloading just video HBxt_v0WF6Y because of --no-playlist\n", + "[download] Destination: Rihanna - Where Have You Been-HBxt_v0WF6Y.m4a\n", + "[download] 100% of 4.15MiB in 01:04\n", + "[ffmpeg] Correcting container in \"Rihanna - Where Have You Been-HBxt_v0WF6Y.m4a\"\n", + "[download] Finished downloading playlist: Where Have You Been\n", + "[download] Downloading playlist: It Will Rain\n", + "[youtube:search] query \"It Will Rain\": Downloading page 1\n", + "[youtube:search] playlist It Will Rain: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] W-w3WfgpcGg: Downloading webpage\n", + "[youtube] Downloading just video W-w3WfgpcGg because of --no-playlist\n", + "[download] Destination: Bruno Mars - It Will Rain (Official Music Video)-W-w3WfgpcGg.m4a\n", + "[download] 100% of 4.12MiB in 00:55\n", + "[ffmpeg] Correcting container in \"Bruno Mars - It Will Rain (Official Music Video)-W-w3WfgpcGg.m4a\"\n", + "[download] Finished downloading playlist: It Will Rain\n", + "[download] Downloading playlist: Boyfriend\n", + "[youtube:search] query \"Boyfriend\": Downloading page 1\n", + "[youtube:search] playlist Boyfriend: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 4GuqB1BQVr4: Downloading webpage\n", + "[youtube] Downloading just video 4GuqB1BQVr4 because of --no-playlist\n", + "[download] Destination: Justin Bieber - Boyfriend (Official Music Video)-4GuqB1BQVr4.m4a\n", + "[download] 100% of 3.25MiB in 00:57\n", + "[ffmpeg] Correcting container in \"Justin Bieber - Boyfriend (Official Music Video)-4GuqB1BQVr4.m4a\"\n", + "[download] Finished downloading playlist: Boyfriend\n", + "[download] Downloading playlist: Part Of Me\n", + "[youtube:search] query \"Part Of Me\": Downloading page 1\n", + "[youtube:search] playlist Part Of Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uuwfgXD8qV8: Downloading webpage\n", + "[youtube] Downloading just video uuwfgXD8qV8 because of --no-playlist\n", + "[download] Destination: Katy Perry - Part Of Me (Official)-uuwfgXD8qV8.webm\n", + "[download] 100% of 3.89MiB in 01:25\n", + "[download] Finished downloading playlist: Part Of Me\n", + "[download] Downloading playlist: We Are Never Ever Getting Back Together\n", + "[youtube:search] query \"We Are Never Ever Getting Back Together\": Downloading page 1\n", + "[youtube:search] playlist We Are Never Ever Getting Back Together: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] WA4iX5D9Z64: Downloading webpage\n", + "[youtube] Downloading just video WA4iX5D9Z64 because of --no-playlist\n", + "[download] Destination: Taylor Swift - We Are Never Ever Getting Back Together-WA4iX5D9Z64.m4a\n", + "[download] 100% of 3.33MiB in 01:03\n", + "[ffmpeg] Correcting container in \"Taylor Swift - We Are Never Ever Getting Back Together-WA4iX5D9Z64.m4a\"\n", + "[download] Finished downloading playlist: We Are Never Ever Getting Back Together\n", + "[download] Downloading playlist: Blow Me (One Last Kiss)\n", + "[youtube:search] query \"Blow Me (One Last Kiss)\": Downloading page 1\n", + "[youtube:search] playlist Blow Me (One Last Kiss): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 3jNlIGDRkvQ: Downloading webpage\n", + "[youtube] Downloading just video 3jNlIGDRkvQ because of --no-playlist\n", + "[download] Destination: P!NK - Blow Me (One Last Kiss)-3jNlIGDRkvQ.m4a\n", + "[download] 100% of 3.51MiB in 01:09\n", + "[ffmpeg] Correcting container in \"P!NK - Blow Me (One Last Kiss)-3jNlIGDRkvQ.m4a\"\n", + "[download] Finished downloading playlist: Blow Me (One Last Kiss)\n", + "[download] Downloading playlist: The One That Got Away\n", + "[youtube:search] query \"The One That Got Away\": Downloading page 1\n", + "[youtube:search] playlist The One That Got Away: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Ahha3Cqe_fk: Downloading webpage\n", + "[youtube] Downloading just video Ahha3Cqe_fk because of --no-playlist\n", + "[download] Destination: Katy Perry - The One That Got Away (Official Music Video)-Ahha3Cqe_fk.webm\n", + "[download] 100% of 4.61MiB in 01:26\n", + "[download] Finished downloading playlist: The One That Got Away\n", + "[download] Downloading playlist: Someone Like You\n", + "[youtube:search] query \"Someone Like You\": Downloading page 1\n", + "[youtube:search] playlist Someone Like You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] hLQl3WQQoQ0: Downloading webpage\n", + "[youtube] Downloading just video hLQl3WQQoQ0 because of --no-playlist\n", + "[download] Destination: Adele - Someone Like You (Official Music Video)-hLQl3WQQoQ0.webm\n", + "[download] 100% of 4.88MiB in 01:05\n", + "[download] Finished downloading playlist: Someone Like You\n", + "[download] Downloading playlist: Scream\n", + "[youtube:search] query \"Scream\": Downloading page 1\n", + "[youtube:search] playlist Scream: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] beToTslH17s: Downloading webpage\n", + "[youtube] Downloading just video beToTslH17s because of --no-playlist\n", + "[download] Destination: Scream _ Official Trailer (2022 Movie)-beToTslH17s.m4a\n", + "[download] 100% of 2.14MiB in 00:38\n", + "[ffmpeg] Correcting container in \"Scream _ Official Trailer (2022 Movie)-beToTslH17s.m4a\"\n", + "[download] Finished downloading playlist: Scream\n", + "[download] Downloading playlist: Don't Wake Me Up\n", + "[youtube:search] query \"Don't Wake Me Up\": Downloading page 1\n", + "[youtube:search] playlist Don't Wake Me Up: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QOowQeKyNkQ: Downloading webpage\n", + "[youtube] Downloading just video QOowQeKyNkQ because of --no-playlist\n", + "[download] Destination: Chris Brown - Don't Wake Me Up (Official Music Video)-QOowQeKyNkQ.m4a\n", + "[download] 100% of 3.49MiB in 00:48\n", + "[ffmpeg] Correcting container in \"Chris Brown - Don't Wake Me Up (Official Music Video)-QOowQeKyNkQ.m4a\"\n", + "[download] Finished downloading playlist: Don't Wake Me Up\n", + "[download] Downloading playlist: Rumour Has It\n", + "[youtube:search] query \"Rumour Has It\": Downloading page 1\n", + "[youtube:search] playlist Rumour Has It: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] A8IRqCJVkOo: Downloading webpage\n", + "[youtube] Downloading just video A8IRqCJVkOo because of --no-playlist\n", + "[download] Destination: Rumour Has It-A8IRqCJVkOo.m4a\n", + "[download] 100% of 3.45MiB in 01:10\n", + "[ffmpeg] Correcting container in \"Rumour Has It-A8IRqCJVkOo.m4a\"\n", + "[download] Finished downloading playlist: Rumour Has It\n", + "[download] Downloading playlist: Good Girl\n", + "[youtube:search] query \"Good Girl\": Downloading page 1\n", + "[youtube:search] playlist Good Girl: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 7-uothzTaaQ: Downloading webpage\n", + "[youtube] Downloading just video 7-uothzTaaQ because of --no-playlist\n", + "[download] Destination: Carrie Underwood - Good Girl (Official Video)-7-uothzTaaQ.m4a\n", + "[download] 100% of 3.24MiB in 00:53\n", + "[ffmpeg] Correcting container in \"Carrie Underwood - Good Girl (Official Video)-7-uothzTaaQ.m4a\"\n", + "[download] Finished downloading playlist: Good Girl\n", + "[download] Downloading playlist: Paradise\n", + "[youtube:search] query \"Paradise\": Downloading page 1\n", + "[youtube:search] playlist Paradise: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 1G4isv_Fylg: Downloading webpage\n", + "[youtube] Downloading just video 1G4isv_Fylg because of --no-playlist\n", + "[download] Destination: Coldplay - Paradise (Official Video)-1G4isv_Fylg.webm\n", + "[download] 100% of 4.17MiB in 00:51\n", + "[download] Finished downloading playlist: Paradise\n", + "[download] Downloading playlist: Blown Away\n", + "[youtube:search] query \"Blown Away\": Downloading page 1\n", + "[youtube:search] playlist Blown Away: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pJgoHgpsb9I: Downloading webpage\n", + "[youtube] Downloading just video pJgoHgpsb9I because of --no-playlist\n", + "[download] Destination: Carrie Underwood - Blown Away (Official Video)-pJgoHgpsb9I.m4a\n", + "[download] 100% of 4.33MiB in 00:58\n", + "[ffmpeg] Correcting container in \"Carrie Underwood - Blown Away (Official Video)-pJgoHgpsb9I.m4a\"\n", + "[download] Finished downloading playlist: Blown Away\n", + "[download] Downloading playlist: Rolling In The Deep\n", + "[youtube:search] query \"Rolling In The Deep\": Downloading page 1\n", + "[youtube:search] playlist Rolling In The Deep: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rYEDA3JcQqw: Downloading webpage\n", + "[youtube] Downloading just video rYEDA3JcQqw because of --no-playlist\n", + "[download] Destination: Adele - Rolling in the Deep (Official Music Video)-rYEDA3JcQqw.m4a\n", + "[download] 100% of 3.61MiB in 01:09\n", + "[ffmpeg] Correcting container in \"Adele - Rolling in the Deep (Official Music Video)-rYEDA3JcQqw.m4a\"\n", + "[download] Finished downloading playlist: Rolling In The Deep\n", + "[download] Downloading playlist: Climax\n", + "[youtube:search] query \"Climax\": Downloading page 1\n", + "[youtube:search] playlist Climax: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nNTyfVh3nmU: Downloading webpage\n", + "[youtube] Downloading just video nNTyfVh3nmU because of --no-playlist\n", + "[download] Destination: Usher - Climax (Official Music Video)-nNTyfVh3nmU.webm\n", + "[download] 100% of 3.86MiB in 01:12\n", + "[download] Finished downloading playlist: Climax\n", + "[download] Downloading playlist: Pound The Alarm\n", + "[youtube:search] query \"Pound The Alarm\": Downloading page 1\n", + "[youtube:search] playlist Pound The Alarm: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] vdrqA93sW-8: Downloading webpage\n", + "[youtube] Downloading just video vdrqA93sW-8 because of --no-playlist\n", + "[download] Destination: Nicki Minaj - Pound The Alarm (Explicit)-vdrqA93sW-8.m4a\n", + "[download] 100% of 3.91MiB in 00:53\n", + "[ffmpeg] Correcting container in \"Nicki Minaj - Pound The Alarm (Explicit)-vdrqA93sW-8.m4a\"\n", + "[download] Finished downloading playlist: Pound The Alarm\n", + "[download] Downloading playlist: Turn Up The Music\n", + "[youtube:search] query \"Turn Up The Music\": Downloading page 1\n", + "[youtube:search] playlist Turn Up The Music: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] eQWG8BVeryU: Downloading webpage\n", + "[youtube] Downloading just video eQWG8BVeryU because of --no-playlist\n", + "[download] Destination: Chris Brown - Turn Up the Music-eQWG8BVeryU.m4a\n", + "[download] 100% of 3.90MiB in 00:55\n", + "[ffmpeg] Correcting container in \"Chris Brown - Turn Up the Music-eQWG8BVeryU.m4a\"\n", + "[download] Finished downloading playlist: Turn Up The Music\n", + "[download] Downloading playlist: You Da One\n", + "[youtube:search] query \"You Da One\": Downloading page 1\n", + "[youtube:search] playlist You Da One: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] b3HeLs8Yosw: Downloading webpage\n", + "[youtube] Downloading just video b3HeLs8Yosw because of --no-playlist\n", + "[download] Destination: Rihanna - You Da One-b3HeLs8Yosw.webm\n", + "[download] 100% of 3.24MiB in 00:39\n", + "[download] Finished downloading playlist: You Da One\n", + "[download] Downloading playlist: Firework\n", + "[youtube:search] query \"Firework\": Downloading page 1\n", + "[youtube:search] playlist Firework: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QGJuMBdaqIw: Downloading webpage\n", + "[youtube] Downloading just video QGJuMBdaqIw because of --no-playlist\n", + "[download] Destination: Katy Perry - Firework (Official Music Video)-QGJuMBdaqIw.webm\n", + "[download] 100% of 3.67MiB in 01:23\n", + "[download] Finished downloading playlist: Firework\n", + "[download] Downloading playlist: Grenade\n", + "[youtube:search] query \"Grenade\": Downloading page 1\n", + "[youtube:search] playlist Grenade: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] SR6iYWJxHqs: Downloading webpage\n", + "[youtube] Downloading just video SR6iYWJxHqs because of --no-playlist\n", + "[download] Destination: Bruno Mars - Grenade (Official Music Video)-SR6iYWJxHqs.webm\n", + "[download] 100% of 3.46MiB in 00:43\n", + "[download] Finished downloading playlist: Grenade\n", + "[download] Downloading playlist: Super Bass\n", + "[youtube:search] query \"Super Bass\": Downloading page 1\n", + "[youtube:search] playlist Super Bass: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 4JipHEz53sU: Downloading webpage\n", + "[youtube] Downloading just video 4JipHEz53sU because of --no-playlist\n", + "[download] Destination: Nicki Minaj - Super Bass-4JipHEz53sU.m4a\n", + "[download] 100% of 3.37MiB in 00:53\n", + "[ffmpeg] Correcting container in \"Nicki Minaj - Super Bass-4JipHEz53sU.m4a\"\n", + "[download] Finished downloading playlist: Super Bass\n", + "[download] Downloading playlist: Just Can't Get Enough\n", + "[youtube:search] query \"Just Can't Get Enough\": Downloading page 1\n", + "[youtube:search] playlist Just Can't Get Enough: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] OrTyD7rjBpw: Downloading webpage\n", + "[youtube] Downloading just video OrTyD7rjBpw because of --no-playlist\n", + "[download] Destination: The Black Eyed Peas - Just Can't Get Enough (Official Music Video)-OrTyD7rjBpw.webm\n", + "[download] 100% of 3.87MiB in 00:50\n", + "[download] Finished downloading playlist: Just Can't Get Enough\n", + "[download] Downloading playlist: S&M\n", + "[youtube:search] query \"S&M\": Downloading page 1\n", + "[youtube:search] playlist S&M: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] KdS6HFQ_LUc: Downloading webpage\n", + "[youtube] Downloading just video KdS6HFQ_LUc because of --no-playlist\n", + "[download] Destination: Rihanna - S&M (Official Music Video)-KdS6HFQ_LUc.webm\n", + "[download] 100% of 3.85MiB in 01:12\n", + "[download] Finished downloading playlist: S&M\n", + "[download] Downloading playlist: Last Friday Night (T.G.I.F.)\n", + "[youtube:search] query \"Last Friday Night (T.G.I.F.)\": Downloading page 1\n", + "[youtube:search] playlist Last Friday Night (T.G.I.F.): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] KlyXNRrsk4A: Downloading webpage\n", + "[youtube] Downloading just video KlyXNRrsk4A because of --no-playlist\n", + "[download] Destination: Katy Perry - Last Friday Night (T.G.I.F.) (Official Music Video)-KlyXNRrsk4A.m4a\n", + "[download] 100% of 7.47MiB in 02:48\n", + "[ffmpeg] Correcting container in \"Katy Perry - Last Friday Night (T.G.I.F.) (Official Music Video)-KlyXNRrsk4A.m4a\"\n", + "[download] Finished downloading playlist: Last Friday Night (T.G.I.F.)\n", + "[download] Downloading playlist: Just The Way You Are\n", + "[youtube:search] query \"Just The Way You Are\": Downloading page 1\n", + "[youtube:search] playlist Just The Way You Are: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] LjhCEhWiKXk: Downloading webpage\n", + "[youtube] Downloading just video LjhCEhWiKXk because of --no-playlist\n", + "[download] Destination: Bruno Mars - Just The Way You Are (Official Music Video)-LjhCEhWiKXk.webm\n", + "[download] 100% of 3.74MiB in 00:45\n", + "[download] Finished downloading playlist: Just The Way You Are\n", + "[download] Downloading playlist: Raise Your Glass\n", + "[youtube:search] query \"Raise Your Glass\": Downloading page 1\n", + "[youtube:search] playlist Raise Your Glass: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] XjVNlG5cZyQ: Downloading webpage\n", + "[youtube] Downloading just video XjVNlG5cZyQ because of --no-playlist\n", + "[download] Destination: P!nk - Raise Your Glass (Official Video)-XjVNlG5cZyQ.m4a\n", + "[download] 100% of 3.12MiB in 00:42\n", + "[ffmpeg] Correcting container in \"P!nk - Raise Your Glass (Official Video)-XjVNlG5cZyQ.m4a\"\n", + "[download] Finished downloading playlist: Raise Your Glass\n", + "[download] Downloading playlist: Born This Way\n", + "[youtube:search] query \"Born This Way\": Downloading page 1\n", + "[youtube:search] playlist Born This Way: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] wV1FrqwZyKw: Downloading webpage\n", + "[youtube] Downloading just video wV1FrqwZyKw because of --no-playlist\n", + "[download] Destination: Lady Gaga - Born This Way (Official Music Video)-wV1FrqwZyKw.m4a\n", + "[download] 100% of 6.79MiB in 01:43\n", + "[ffmpeg] Correcting container in \"Lady Gaga - Born This Way (Official Music Video)-wV1FrqwZyKw.m4a\"\n", + "[download] Finished downloading playlist: Born This Way\n", + "[download] Downloading playlist: F**kin' Perfect\n", + "[youtube:search] query \"F**kin' Perfect\": Downloading page 1\n", + "[youtube:search] playlist F**kin' Perfect: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] UL9HEiH6hPM: Downloading webpage\n", + "[youtube] Downloading just video UL9HEiH6hPM because of --no-playlist\n", + "[download] Destination: P!nk - F_kin' Perfect (Lyric Video)-UL9HEiH6hPM.m4a\n", + "[download] 100% of 3.33MiB in 01:08\n", + "[ffmpeg] Correcting container in \"P!nk - F_kin' Perfect (Lyric Video)-UL9HEiH6hPM.m4a\"\n", + "[download] Finished downloading playlist: F**kin' Perfect\n", + "[download] Downloading playlist: How To Love\n", + "[youtube:search] query \"How To Love\": Downloading page 1\n", + "[youtube:search] playlist How To Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] y8Gf4-eT3w0: Downloading webpage\n", + "[youtube] Downloading just video y8Gf4-eT3w0 because of --no-playlist\n", + "[download] Destination: Lil Wayne - How To Love (Official Music Video)-y8Gf4-eT3w0.m4a\n", + "[download] 100% of 4.97MiB in 01:41\n", + "[ffmpeg] Correcting container in \"Lil Wayne - How To Love (Official Music Video)-y8Gf4-eT3w0.m4a\"\n", + "[download] Finished downloading playlist: How To Love\n", + "[download] Downloading playlist: The Lazy Song\n", + "[youtube:search] query \"The Lazy Song\": Downloading page 1\n", + "[youtube:search] playlist The Lazy Song: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] fLexgOxsZu0: Downloading webpage\n", + "[youtube] Downloading just video fLexgOxsZu0 because of --no-playlist\n", + "[download] Destination: Bruno Mars - The Lazy Song (Official Music Video)-fLexgOxsZu0.m4a\n", + "[download] 100% of 3.07MiB in 00:37\n", + "[ffmpeg] Correcting container in \"Bruno Mars - The Lazy Song (Official Music Video)-fLexgOxsZu0.m4a\"\n", + "[download] Finished downloading playlist: The Lazy Song\n", + "[download] Downloading playlist: Till The World Ends\n", + "[youtube:search] query \"Till The World Ends\": Downloading page 1\n", + "[youtube:search] playlist Till The World Ends: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] qzU9OrZlKb8: Downloading webpage\n", + "[youtube] Downloading just video qzU9OrZlKb8 because of --no-playlist\n", + "[download] Destination: Britney Spears - Till The World Ends (Official Video)-qzU9OrZlKb8.webm\n", + "[download] 100% of 3.66MiB in 01:19\n", + "[download] Finished downloading playlist: Till The World Ends\n", + "[download] Downloading playlist: The Edge Of Glory\n", + "[youtube:search] query \"The Edge Of Glory\": Downloading page 1\n", + "[youtube:search] playlist The Edge Of Glory: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QeWBS0JBNzQ: Downloading webpage\n", + "[youtube] Downloading just video QeWBS0JBNzQ because of --no-playlist\n", + "[download] Destination: Lady Gaga - The Edge Of Glory (Official Music Video)-QeWBS0JBNzQ.m4a\n", + "[download] 100% of 5.05MiB in 01:13\n", + "[ffmpeg] Correcting container in \"Lady Gaga - The Edge Of Glory (Official Music Video)-QeWBS0JBNzQ.m4a\"\n", + "[download] Finished downloading playlist: The Edge Of Glory\n", + "[download] Downloading playlist: We R Who We R\n", + "[youtube:search] query \"We R Who We R\": Downloading page 1\n", + "[youtube:search] playlist We R Who We R: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] mXvmSaE0JXA: Downloading webpage\n", + "[youtube] Downloading just video mXvmSaE0JXA because of --no-playlist\n", + "[download] Destination: Ke$ha - We R Who We R (Official Video)-mXvmSaE0JXA.m4a\n", + "[download] 100% of 3.28MiB in 01:10\n", + "[ffmpeg] Correcting container in \"Ke$ha - We R Who We R (Official Video)-mXvmSaE0JXA.m4a\"\n", + "[download] Finished downloading playlist: We R Who We R\n", + "[download] Downloading playlist: Blow\n", + "[youtube:search] query \"Blow\": Downloading page 1\n", + "[youtube:search] playlist Blow: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] NJz5tVJRSdo: Downloading webpage\n", + "[youtube] Downloading just video NJz5tVJRSdo because of --no-playlist\n", + "[download] Destination: Kesha - Blow (Lyrics)-NJz5tVJRSdo.webm\n", + "[download] 100% of 3.42MiB in 01:18\n", + "[download] Finished downloading playlist: Blow\n", + "[download] Downloading playlist: The Time (Dirty Bit)\n", + "[youtube:search] query \"The Time (Dirty Bit)\": Downloading page 1\n", + "[youtube:search] playlist The Time (Dirty Bit): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] JwQZQygg3Lk: Downloading webpage\n", + "[youtube] Downloading just video JwQZQygg3Lk because of --no-playlist\n", + "[download] Destination: The Black Eyed Peas - The Time (Dirty Bit) (Official Music Video)-JwQZQygg3Lk.m4a\n", + "[download] 100% of 4.83MiB in 01:09\n", + "[ffmpeg] Correcting container in \"The Black Eyed Peas - The Time (Dirty Bit) (Official Music Video)-JwQZQygg3Lk.m4a\"\n", + "[download] Finished downloading playlist: The Time (Dirty Bit)\n", + "[download] Downloading playlist: Only Girl (In The World)\n", + "[youtube:search] query \"Only Girl (In The World)\": Downloading page 1\n", + "[youtube:search] playlist Only Girl (In The World): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pa14VNsdSYM: Downloading webpage\n", + "[youtube] Downloading just video pa14VNsdSYM because of --no-playlist\n", + "[download] Destination: Rihanna - Only Girl (In The World) (Official Music Video)-pa14VNsdSYM.webm\n", + "[download] 100% of 3.97MiB in 00:49\n", + "[download] Finished downloading playlist: Only Girl (In The World)\n", + "[download] Downloading playlist: I Wanna Go\n", + "[youtube:search] query \"I Wanna Go\": Downloading page 1\n", + "[youtube:search] playlist I Wanna Go: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] T-sxSd1uwoU: Downloading webpage\n", + "[youtube] Downloading just video T-sxSd1uwoU because of --no-playlist\n", + "[download] Destination: Britney Spears - I Wanna Go (Official Video)-T-sxSd1uwoU.m4a\n", + "[download] 100% of 4.22MiB in 01:39\n", + "[ffmpeg] Correcting container in \"Britney Spears - I Wanna Go (Official Video)-T-sxSd1uwoU.m4a\"\n", + "[download] Finished downloading playlist: I Wanna Go\n", + "[download] Downloading playlist: Yeah 3X\n", + "[youtube:search] query \"Yeah 3X\": Downloading page 1\n", + "[youtube:search] playlist Yeah 3X: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 3mC2ixOAivA: Downloading webpage\n", + "[youtube] Downloading just video 3mC2ixOAivA because of --no-playlist\n", + "[download] Destination: Chris Brown - Yeah 3x-3mC2ixOAivA.m4a\n", + "[download] 100% of 3.96MiB in 00:48\n", + "[ffmpeg] Correcting container in \"Chris Brown - Yeah 3x-3mC2ixOAivA.m4a\"\n", + "[download] Finished downloading playlist: Yeah 3X\n", + "[download] Downloading playlist: All Of The Lights\n", + "[youtube:search] query \"All Of The Lights\": Downloading page 1\n", + "[youtube:search] playlist All Of The Lights: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] HAfFfqiYLp0: Downloading webpage\n", + "[youtube] Downloading just video HAfFfqiYLp0 because of --no-playlist\n", + "[download] Destination: Kanye West - All Of The Lights ft. Rihanna, Kid Cudi-HAfFfqiYLp0.m4a\n", + "[download] 100% of 5.06MiB in 01:04\n", + "[ffmpeg] Correcting container in \"Kanye West - All Of The Lights ft. Rihanna, Kid Cudi-HAfFfqiYLp0.m4a\"\n", + "[download] Finished downloading playlist: All Of The Lights\n", + "[download] Downloading playlist: Hold It Against Me\n", + "[youtube:search] query \"Hold It Against Me\": Downloading page 1\n", + "[youtube:search] playlist Hold It Against Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] -Edv8Onsrgg: Downloading webpage\n", + "[youtube] Downloading just video -Edv8Onsrgg because of --no-playlist\n", + "[download] Destination: Britney Spears - Hold It Against Me (Official Video)--Edv8Onsrgg.m4a\n", + "[download] 100% of 4.15MiB in 01:33\n", + "[ffmpeg] Correcting container in \"Britney Spears - Hold It Against Me (Official Video)--Edv8Onsrgg.m4a\"\n", + "[download] Finished downloading playlist: Hold It Against Me\n", + "[download] Downloading playlist: More\n", + "[youtube:search] query \"More\": Downloading page 1\n", + "[youtube:search] playlist More: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 3VTkBuxU4yk: Downloading webpage\n", + "[youtube] Downloading just video 3VTkBuxU4yk because of --no-playlist\n", + "[download] Destination: K_DA - MORE ft. Madison Beer, (G)I-DLE, Lexie Liu, Jaira Burns, Seraphine (Official Music Video)-3VTkBuxU4yk.webm\n", + "[download] 100% of 3.61MiB in 01:00\n", + "[download] Finished downloading playlist: More\n", + "[download] Downloading playlist: What The Hell\n", + "[youtube:search] query \"What The Hell\": Downloading page 1\n", + "[youtube:search] playlist What The Hell: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] tQmEd_UeeIk: Downloading webpage\n", + "[youtube] Downloading just video tQmEd_UeeIk because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: requested format not available\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: What The Hell\n", + "[download] Downloading playlist: You And I\n", + "[youtube:search] query \"You And I\": Downloading page 1\n", + "[youtube:search] playlist You And I: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] _kqQDCxRCzM: Downloading webpage\n", + "[youtube] Downloading just video _kqQDCxRCzM because of --no-playlist\n", + "[download] Destination: One Direction - You & I-_kqQDCxRCzM.webm\n", + "[download] 100% of 3.97MiB in 01:25\n", + "[download] Finished downloading playlist: You And I\n", + "[download] Downloading playlist: Back To December\n", + "[youtube:search] query \"Back To December\": Downloading page 1\n", + "[youtube:search] playlist Back To December: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QUwxKWT6m7U: Downloading webpage\n", + "[youtube] Downloading just video QUwxKWT6m7U because of --no-playlist\n", + "[download] Destination: Taylor Swift - Back To December-QUwxKWT6m7U.webm\n", + "[download] 100% of 4.93MiB in 01:30\n", + "[download] Finished downloading playlist: Back To December\n", + "[download] Downloading playlist: Teenage Dream\n", + "[youtube:search] query \"Teenage Dream\": Downloading page 1\n", + "[youtube:search] playlist Teenage Dream: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 98WtmW-lfeE: Downloading webpage\n", + "[youtube] Downloading just video 98WtmW-lfeE because of --no-playlist\n", + "[download] Destination: Katy Perry - Teenage Dream (Official Music Video)-98WtmW-lfeE.m4a\n", + "[download] 100% of 3.54MiB in 00:47\n", + "[ffmpeg] Correcting container in \"Katy Perry - Teenage Dream (Official Music Video)-98WtmW-lfeE.m4a\"\n", + "[download] Finished downloading playlist: Teenage Dream\n", + "[download] Downloading playlist: Cheers (Drink To That)\n", + "[youtube:search] query \"Cheers (Drink To That)\": Downloading page 1\n", + "[youtube:search] playlist Cheers (Drink To That): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ZR0v0i63PQ4: Downloading webpage\n", + "[youtube] Downloading just video ZR0v0i63PQ4 because of --no-playlist\n", + "[download] Destination: Rihanna - Cheers (Drink To That)-ZR0v0i63PQ4.m4a\n", + "[download] 100% of 4.34MiB in 00:52\n", + "[ffmpeg] Correcting container in \"Rihanna - Cheers (Drink To That)-ZR0v0i63PQ4.m4a\"\n", + "[download] Finished downloading playlist: Cheers (Drink To That)\n", + "[download] Downloading playlist: Headlines\n", + "[youtube:search] query \"Headlines\": Downloading page 1\n", + "[youtube:search] playlist Headlines: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] cimoNqiulUE: Downloading webpage\n", + "[youtube] Downloading just video cimoNqiulUE because of --no-playlist\n", + "[download] Destination: Drake - Headlines (Explicit)-cimoNqiulUE.webm\n", + "[download] 100% of 3.93MiB in 01:01\n", + "[download] Finished downloading playlist: Headlines\n", + "[download] Downloading playlist: Best Thing I Never Had\n", + "[youtube:search] query \"Best Thing I Never Had\": Downloading page 1\n", + "[youtube:search] playlist Best Thing I Never Had: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] FHp2KgyQUFk: Downloading webpage\n", + "[youtube] Downloading just video FHp2KgyQUFk because of --no-playlist\n", + "[download] Destination: Beyoncé - Best Thing I Never Had (Video)-FHp2KgyQUFk.webm\n", + "[download] 100% of 3.98MiB in 00:51\n", + "[download] Finished downloading playlist: Best Thing I Never Had\n", + "[download] Downloading playlist: She Ain't You\n", + "[youtube:search] query \"She Ain't You\": Downloading page 1\n", + "[youtube:search] playlist She Ain't You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 7V2GzYcRK9E: Downloading webpage\n", + "[youtube] Downloading just video 7V2GzYcRK9E because of --no-playlist\n", + "[download] Destination: Chris Brown - She Ain't You (Official Music Video)-7V2GzYcRK9E.m4a\n", + "[download] 100% of 3.95MiB in 00:47\n", + "[ffmpeg] Correcting container in \"Chris Brown - She Ain't You (Official Music Video)-7V2GzYcRK9E.m4a\"\n", + "[download] Finished downloading playlist: She Ain't You\n", + "[download] Downloading playlist: TiK ToK\n", + "[youtube:search] query \"TiK ToK\": Downloading page 1\n", + "[youtube:search] playlist TiK ToK: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] XU5vm-xKvJk: Downloading webpage\n", + "[youtube] Downloading just video XU5vm-xKvJk because of --no-playlist\n", + "[download] Destination: Tik Toks My Girlfriend Watches-XU5vm-xKvJk.m4a\n", + "[download] 100% of 13.70MiB in 04:11\n", + "[ffmpeg] Correcting container in \"Tik Toks My Girlfriend Watches-XU5vm-xKvJk.m4a\"\n", + "[download] Finished downloading playlist: TiK ToK\n", + "[download] Downloading playlist: Bad Romance\n", + "[youtube:search] query \"Bad Romance\": Downloading page 1\n", + "[youtube:search] playlist Bad Romance: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] qrO4YZeyl0I: Downloading webpage\n", + "[youtube] Downloading just video qrO4YZeyl0I because of --no-playlist\n", + "[download] Destination: Lady Gaga - Bad Romance (Official Music Video)-qrO4YZeyl0I.webm\n", + "[download] 100% of 4.77MiB in 01:02\n", + "[download] Finished downloading playlist: Bad Romance\n", + "[download] Downloading playlist: Rude Boy\n", + "[youtube:search] query \"Rude Boy\": Downloading page 1\n", + "[youtube:search] playlist Rude Boy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] e82VE8UtW8A: Downloading webpage\n", + "[youtube] Downloading just video e82VE8UtW8A because of --no-playlist\n", + "[download] Destination: Rihanna - Rude Boy (Official Music Video)-e82VE8UtW8A.webm\n", + "[download] 100% of 3.59MiB in 01:05\n", + "[download] Finished downloading playlist: Rude Boy\n", + "[download] Downloading playlist: Imma Be\n", + "[youtube:search] query \"Imma Be\": Downloading page 1\n", + "[youtube:search] playlist Imma Be: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] kdAj-dBNCi4: Downloading webpage\n", + "[youtube] Downloading just video kdAj-dBNCi4 because of --no-playlist\n", + "[download] Destination: The Black Eyed Peas - Imma Be (Official Music Video)-kdAj-dBNCi4.webm\n", + "[download] 100% of 4.25MiB in 00:53\n", + "[download] Finished downloading playlist: Imma Be\n", + "[download] Downloading playlist: Not Afraid\n", + "[youtube:search] query \"Not Afraid\": Downloading page 1\n", + "[youtube:search] playlist Not Afraid: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] j5-yKhDd64s: Downloading webpage\n", + "[youtube] Downloading just video j5-yKhDd64s because of --no-playlist\n", + "[download] Destination: Eminem - Not Afraid (Official Video)-j5-yKhDd64s.m4a\n", + "[download] 100% of 3.99MiB in 00:55\n", + "[ffmpeg] Correcting container in \"Eminem - Not Afraid (Official Video)-j5-yKhDd64s.m4a\"\n", + "[download] Finished downloading playlist: Not Afraid\n", + "[download] Downloading playlist: Your Love Is My Drug\n", + "[youtube:search] query \"Your Love Is My Drug\": Downloading page 1\n", + "[youtube:search] playlist Your Love Is My Drug: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QR_qa3Ohwls: Downloading webpage\n", + "[youtube] Downloading just video QR_qa3Ohwls because of --no-playlist\n", + "[download] Destination: Ke$ha - Your Love Is My Drug (Official Video)-QR_qa3Ohwls.m4a\n", + "[download] 100% of 3.22MiB in 00:44\n", + "[ffmpeg] Correcting container in \"Ke$ha - Your Love Is My Drug (Official Video)-QR_qa3Ohwls.m4a\"\n", + "[download] Finished downloading playlist: Your Love Is My Drug\n", + "[download] Downloading playlist: I Gotta Feeling\n", + "[youtube:search] query \"I Gotta Feeling\": Downloading page 1\n", + "[youtube:search] playlist I Gotta Feeling: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uSD4vsh1zDA: Downloading webpage\n", + "[youtube] Downloading just video uSD4vsh1zDA because of --no-playlist\n", + "[download] Destination: The Black Eyed Peas - I Gotta Feeling (Official Music Video)-uSD4vsh1zDA.webm\n", + "[download] 100% of 4.73MiB in 01:38\n", + "[download] Finished downloading playlist: I Gotta Feeling\n", + "[download] Downloading playlist: Find Your Love\n", + "[youtube:search] query \"Find Your Love\": Downloading page 1\n", + "[youtube:search] playlist Find Your Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Xyv4Bjja8yc: Downloading webpage\n", + "[youtube] Downloading just video Xyv4Bjja8yc because of --no-playlist\n", + "[download] Destination: Drake - Find Your Love (Official Music Video)-Xyv4Bjja8yc.webm\n", + "[download] 100% of 5.40MiB in 01:08\n", + "[download] Finished downloading playlist: Find Your Love\n", + "[download] Downloading playlist: Alejandro\n", + "[youtube:search] query \"Alejandro\": Downloading page 1\n", + "[youtube:search] playlist Alejandro: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] niqrrmev4mA: Downloading webpage\n", + "[youtube] Downloading just video niqrrmev4mA because of --no-playlist\n", + "[download] Destination: Lady Gaga - Alejandro-niqrrmev4mA.m4a\n", + "[download] 100% of 8.08MiB in 03:11\n", + "[ffmpeg] Correcting container in \"Lady Gaga - Alejandro-niqrrmev4mA.m4a\"\n", + "[download] Finished downloading playlist: Alejandro\n", + "[download] Downloading playlist: Mine\n", + "[youtube:search] query \"Mine\": Downloading page 1\n", + "[youtube:search] playlist Mine: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QeUFmGLhI_s: Downloading webpage\n", + "[youtube] Downloading just video QeUFmGLhI_s because of --no-playlist\n", + "[download] Destination: Bazzi – Mine (Lyrics) 🎵-QeUFmGLhI_s.webm\n", + "[download] 100% of 2.19MiB in 00:29\n", + "[download] Finished downloading playlist: Mine\n", + "[download] Downloading playlist: You Belong With Me\n", + "[youtube:search] query \"You Belong With Me\": Downloading page 1\n", + "[youtube:search] playlist You Belong With Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] VuNIsY6JdUw: Downloading webpage\n", + "[youtube] Downloading just video VuNIsY6JdUw because of --no-playlist\n", + "[download] Destination: Taylor Swift - You Belong With Me-VuNIsY6JdUw.webm\n", + "[download] 100% of 3.71MiB in 00:49\n", + "[download] Finished downloading playlist: You Belong With Me\n", + "[download] Downloading playlist: Meet Me Halfway\n", + "[youtube:search] query \"Meet Me Halfway\": Downloading page 1\n", + "[youtube:search] playlist Meet Me Halfway: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] I7HahVwYpwo: Downloading webpage\n", + "[youtube] Downloading just video I7HahVwYpwo because of --no-playlist\n", + "[download] Destination: The Black Eyed Peas - Meet Me Halfway (Official Music Video)-I7HahVwYpwo.webm\n", + "[download] 100% of 4.57MiB in 01:22\n", + "[download] Finished downloading playlist: Meet Me Halfway\n", + "[download] Downloading playlist: Take It Off\n", + "[youtube:search] query \"Take It Off\": Downloading page 1\n", + "[youtube:search] playlist Take It Off: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] edP0L6LQzZE: Downloading webpage\n", + "[youtube] Downloading just video edP0L6LQzZE because of --no-playlist\n", + "[download] Destination: Ke$ha - Take It Off-edP0L6LQzZE.webm\n", + "[download] 100% of 3.46MiB in 00:00\n", + "[download] Finished downloading playlist: Take It Off\n", + "[download] Downloading playlist: Over\n", + "[youtube:search] query \"Over\": Downloading page 1\n", + "[youtube:search] playlist Over: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Quqw6lu2sOY: Downloading webpage\n", + "[youtube] Downloading just video Quqw6lu2sOY because of --no-playlist\n", + "[download] Destination: Over-Quqw6lu2sOY.webm\n", + "[download] 100% of 3.43MiB in 00:51\n", + "[download] Finished downloading playlist: Over\n", + "[download] Downloading playlist: Misery\n", + "[youtube:search] query \"Misery\": Downloading page 1\n", + "[youtube:search] playlist Misery: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] t4V__gOj0Ns: Downloading webpage\n", + "[youtube] Downloading just video t4V__gOj0Ns because of --no-playlist\n", + "[download] Destination: Maroon 5 - Misery - Lyrics-t4V__gOj0Ns.m4a\n", + "[download] 100% of 3.32MiB in 00:55\n", + "[ffmpeg] Correcting container in \"Maroon 5 - Misery - Lyrics-t4V__gOj0Ns.m4a\"\n", + "[download] Finished downloading playlist: Misery\n", + "[download] Downloading playlist: Paparazzi\n", + "[youtube:search] query \"Paparazzi\": Downloading page 1\n", + "[youtube:search] playlist Paparazzi: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] d2smz_1L2_0: Downloading webpage\n", + "[youtube] Downloading just video d2smz_1L2_0 because of --no-playlist\n", + "[download] Destination: Lady Gaga - Paparazzi (Official Music Video)-d2smz_1L2_0.m4a\n", + "[download] 100% of 6.66MiB in 01:59\n", + "[ffmpeg] Correcting container in \"Lady Gaga - Paparazzi (Official Music Video)-d2smz_1L2_0.m4a\"\n", + "[download] Finished downloading playlist: Paparazzi\n", + "[download] Downloading playlist: Your Love\n", + "[youtube:search] query \"Your Love\": Downloading page 1\n", + "[youtube:search] playlist Your Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 4N1iwQxiHrs: Downloading webpage\n", + "[youtube] Downloading just video 4N1iwQxiHrs because of --no-playlist\n", + "[download] Destination: The Outfield - Your Love (Official HD Video)-4N1iwQxiHrs.webm\n", + "[download] 100% of 4.00MiB in 01:37\n", + "[download] Finished downloading playlist: Your Love\n", + "[download] Downloading playlist: Party In The U.S.A.\n", + "[youtube:search] query \"Party In The U.S.A.\": Downloading page 1\n", + "[youtube:search] playlist Party In The U.S.A.: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] M11SvDtPBhA: Downloading webpage\n", + "[youtube] Downloading just video M11SvDtPBhA because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Party In The U.S.A.\n", + "[download] Downloading playlist: 3\n", + "[youtube:search] query \"3\": Downloading page 1\n", + "[youtube:search] playlist 3: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] oTs6oQx1WJY: Downloading webpage\n", + "[youtube] Downloading just video oTs6oQx1WJY because of --no-playlist\n", + "[download] Destination: Britney Spears - 3 (Official HD Video)-oTs6oQx1WJY.webm\n", + "[download] 100% of 3.50MiB in 00:47\n", + "[download] Finished downloading playlist: 3\n", + "[download] Downloading playlist: Rock That Body\n", + "[youtube:search] query \"Rock That Body\": Downloading page 1\n", + "[youtube:search] playlist Rock That Body: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nmnjL26OBcY: Downloading webpage\n", + "[youtube] Downloading just video nmnjL26OBcY because of --no-playlist\n", + "[download] Destination: The Black Eyed Peas - Rock That Body (Official Music Video)-nmnjL26OBcY.m4a\n", + "[download] 100% of 4.20MiB in 01:34\n", + "[ffmpeg] Correcting container in \"The Black Eyed Peas - Rock That Body (Official Music Video)-nmnjL26OBcY.m4a\"\n", + "[download] Finished downloading playlist: Rock That Body\n", + "[download] Downloading playlist: Un-Thinkable (I'm Ready)\n", + "[youtube:search] query \"Un-Thinkable (I'm Ready)\": Downloading page 1\n", + "[youtube:search] playlist Un-Thinkable (I'm Ready): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] HhuGQUZJot8: Downloading webpage\n", + "[youtube] Downloading just video HhuGQUZJot8 because of --no-playlist\n", + "[download] Destination: Alicia Keys - Un-thinkable (I'm Ready) (Official Video)-HhuGQUZJot8.m4a\n", + "[download] 100% of 4.35MiB in 01:24\n", + "[ffmpeg] Correcting container in \"Alicia Keys - Un-thinkable (I'm Ready) (Official Video)-HhuGQUZJot8.m4a\"\n", + "[download] Finished downloading playlist: Un-Thinkable (I'm Ready)\n", + "[download] Downloading playlist: There Goes My Baby\n", + "[youtube:search] query \"There Goes My Baby\": Downloading page 1\n", + "[youtube:search] playlist There Goes My Baby: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] m6urbZyHgO4: Downloading webpage\n", + "[youtube] Downloading just video m6urbZyHgO4 because of --no-playlist\n", + "[download] Destination: Usher - There Goes My Baby (Official Music Video)-m6urbZyHgO4.webm\n", + "[download] 100% of 4.78MiB in 01:00\n", + "[download] Finished downloading playlist: There Goes My Baby\n", + "[download] Downloading playlist: Today Was A Fairytale\n", + "[youtube:search] query \"Today Was A Fairytale\": Downloading page 1\n", + "[youtube:search] playlist Today Was A Fairytale: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rLiXLzd2Ol8: Downloading webpage\n", + "[youtube] Downloading just video rLiXLzd2Ol8 because of --no-playlist\n", + "[download] Destination: Today Was A Fairytale-rLiXLzd2Ol8.webm\n", + "[download] 100% of 3.94MiB in 01:03\n", + "[download] Finished downloading playlist: Today Was A Fairytale\n", + "[download] Downloading playlist: Sweet Dreams\n", + "[youtube:search] query \"Sweet Dreams\": Downloading page 1\n", + "[youtube:search] playlist Sweet Dreams: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] qeMFqkcPYcg: Downloading webpage\n", + "[youtube] Downloading just video qeMFqkcPYcg because of --no-playlist\n", + "[download] Destination: Eurythmics, Annie Lennox, Dave Stewart - Sweet Dreams (Are Made Of This) (Official Video)-qeMFqkcPYcg.webm\n", + "[download] 100% of 3.35MiB in 00:41\n", + "[download] Finished downloading playlist: Sweet Dreams\n", + "[download] Downloading playlist: Undo It\n", + "[youtube:search] query \"Undo It\": Downloading page 1\n", + "[youtube:search] playlist Undo It: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ywtJYvDBKek: Downloading webpage\n", + "[youtube] Downloading just video ywtJYvDBKek because of --no-playlist\n", + "[download] Destination: Carrie Underwood - Undo It (Official Video)-ywtJYvDBKek.m4a\n", + "[download] 100% of 2.84MiB in 00:52\n", + "[ffmpeg] Correcting container in \"Carrie Underwood - Undo It (Official Video)-ywtJYvDBKek.m4a\"\n", + "[download] Finished downloading playlist: Undo It\n", + "[download] Downloading playlist: Life After You\n", + "[youtube:search] query \"Life After You\": Downloading page 1\n", + "[youtube:search] playlist Life After You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Cvm2OYF2p7E: Downloading webpage\n", + "[youtube] Downloading just video Cvm2OYF2p7E because of --no-playlist\n", + "[download] Destination: Daughtry - Life After You-Cvm2OYF2p7E.webm\n", + "[download] 100% of 3.24MiB in 01:01\n", + "[download] Finished downloading playlist: Life After You\n", + "[download] Downloading playlist: Try Sleeping With A Broken Heart\n", + "[youtube:search] query \"Try Sleeping With A Broken Heart\": Downloading page 1\n", + "[youtube:search] playlist Try Sleeping With A Broken Heart: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] srMBZiqNMaM: Downloading webpage\n", + "[youtube] Downloading just video srMBZiqNMaM because of --no-playlist\n", + "[download] Destination: Alicia Keys - Try Sleeping with a Broken Heart (Official Video)-srMBZiqNMaM.webm\n", + "[download] 100% of 4.40MiB in 01:08\n", + "[download] Finished downloading playlist: Try Sleeping With A Broken Heart\n", + "[download] Downloading playlist: Boom Boom Pow\n", + "[youtube:search] query \"Boom Boom Pow\": Downloading page 1\n", + "[youtube:search] playlist Boom Boom Pow: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 4m48GqaOz90: Downloading webpage\n", + "[youtube] Downloading just video 4m48GqaOz90 because of --no-playlist\n", + "[download] Destination: The Black Eyed Peas - Boom Boom Pow (Official Music Video)-4m48GqaOz90.webm\n", + "[download] 100% of 3.38MiB in 01:03\n", + "[download] Finished downloading playlist: Boom Boom Pow\n", + "[download] Downloading playlist: Poker Face\n", + "[youtube:search] query \"Poker Face\": Downloading page 1\n", + "[youtube:search] playlist Poker Face: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] bESGLojNYSo: Downloading webpage\n", + "[youtube] Downloading just video bESGLojNYSo because of --no-playlist\n", + "[download] Destination: Lady Gaga - Poker Face (Official Music Video)-bESGLojNYSo.webm\n", + "[download] 100% of 3.50MiB in 00:47\n", + "[download] Finished downloading playlist: Poker Face\n", + "[download] Downloading playlist: Love Story\n", + "[youtube:search] query \"Love Story\": Downloading page 1\n", + "[youtube:search] playlist Love Story: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 8xg3vE8Ie_E: Downloading webpage\n", + "[youtube] Downloading just video 8xg3vE8Ie_E because of --no-playlist\n", + "[download] Destination: Taylor Swift - Love Story-8xg3vE8Ie_E.webm\n", + "[download] 100% of 3.88MiB in 00:51\n", + "[download] Finished downloading playlist: Love Story\n", + "[download] Downloading playlist: Single Ladies (Put A Ring On It)\n", + "[youtube:search] query \"Single Ladies (Put A Ring On It)\": Downloading page 1\n", + "[youtube:search] playlist Single Ladies (Put A Ring On It): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 4m1EFMoRFvY: Downloading webpage\n", + "[youtube] Downloading just video 4m1EFMoRFvY because of --no-playlist\n", + "[download] Destination: Beyoncé - Single Ladies (Put a Ring on It) (Video Version)-4m1EFMoRFvY.m4a\n", + "[download] 100% of 3.07MiB in 00:48\n", + "[ffmpeg] Correcting container in \"Beyoncé - Single Ladies (Put a Ring on It) (Video Version)-4m1EFMoRFvY.m4a\"\n", + "[download] Finished downloading playlist: Single Ladies (Put A Ring On It)\n", + "[download] Downloading playlist: You Found Me\n", + "[youtube:search] query \"You Found Me\": Downloading page 1\n", + "[youtube:search] playlist You Found Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] jFg_8u87zT0: Downloading webpage\n", + "[youtube] Downloading just video jFg_8u87zT0 because of --no-playlist\n", + "[download] Destination: The Fray - You Found Me (Official VIdeo)-jFg_8u87zT0.webm\n", + "[download] 100% of 3.91MiB in 01:22\n", + "[download] Finished downloading playlist: You Found Me\n", + "[download] Downloading playlist: The Climb\n", + "[youtube:search] query \"The Climb\": Downloading page 1\n", + "[youtube:search] playlist The Climb: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] NG2zyeVRcbs: Downloading webpage\n", + "[youtube] Downloading just video NG2zyeVRcbs because of --no-playlist\n", + "[download] Destination: Miley Cyrus - The Climb-NG2zyeVRcbs.webm\n", + "[download] 100% of 3.72MiB in 00:48\n", + "[download] Finished downloading playlist: The Climb\n", + "[download] Downloading playlist: Best I Ever Had\n", + "[youtube:search] query \"Best I Ever Had\": Downloading page 1\n", + "[youtube:search] playlist Best I Ever Had: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Zfp3KfYH0xA: Downloading webpage\n", + "[youtube] Downloading just video Zfp3KfYH0xA because of --no-playlist\n", + "[download] Destination: Best I Ever Had-Zfp3KfYH0xA.m4a\n", + "[download] 100% of 3.98MiB in 01:14\n", + "[ffmpeg] Correcting container in \"Best I Ever Had-Zfp3KfYH0xA.m4a\"\n", + "[download] Finished downloading playlist: Best I Ever Had\n", + "[download] Downloading playlist: Halo\n", + "[youtube:search] query \"Halo\": Downloading page 1\n", + "[youtube:search] playlist Halo: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] yrJ7CVeiFvo: Downloading webpage\n", + "[youtube] Downloading just video yrJ7CVeiFvo because of --no-playlist\n", + "[download] Destination: Halo - Beyoncé (Lyrics) 🎵-yrJ7CVeiFvo.webm\n", + "[download] 100% of 4.69MiB in 01:08\n", + "[download] Finished downloading playlist: Halo\n", + "[download] Downloading playlist: Hot N Cold\n", + "[youtube:search] query \"Hot N Cold\": Downloading page 1\n", + "[youtube:search] playlist Hot N Cold: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] kTHNpusq654: Downloading webpage\n", + "[youtube] Downloading just video kTHNpusq654 because of --no-playlist\n", + "[download] Destination: Katy Perry - Hot N Cold (Official)-kTHNpusq654.m4a\n", + "[download] 100% of 4.38MiB in 01:05\n", + "[ffmpeg] Correcting container in \"Katy Perry - Hot N Cold (Official)-kTHNpusq654.m4a\"\n", + "[download] Finished downloading playlist: Hot N Cold\n", + "[download] Downloading playlist: Circus\n", + "[youtube:search] query \"Circus\": Downloading page 1\n", + "[youtube:search] playlist Circus: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] dpsPstFwhbQ: Downloading webpage\n", + "[youtube] Downloading just video dpsPstFwhbQ because of --no-playlist\n", + "[download] Destination: Circus - Britney Spears (Lyrics) 🎵-dpsPstFwhbQ.m4a\n", + "[download] 100% of 3.02MiB in 00:38\n", + "[ffmpeg] Correcting container in \"Circus - Britney Spears (Lyrics) 🎵-dpsPstFwhbQ.m4a\"\n", + "[download] Finished downloading playlist: Circus\n", + "[download] Downloading playlist: LoveGame\n", + "[youtube:search] query \"LoveGame\": Downloading page 1\n", + "[youtube:search] playlist LoveGame: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 1mB0tP1I-14: Downloading webpage\n", + "[youtube] Downloading just video 1mB0tP1I-14 because of --no-playlist\n", + "[download] Destination: Lady Gaga - LoveGame (Official Music Video)-1mB0tP1I-14.webm\n", + "[download] 100% of 3.50MiB in 00:46\n", + "[download] Finished downloading playlist: LoveGame\n", + "[download] Downloading playlist: Waking Up In Vegas\n", + "[youtube:search] query \"Waking Up In Vegas\": Downloading page 1\n", + "[youtube:search] playlist Waking Up In Vegas: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 1-pUaogoX5o: Downloading webpage\n", + "[youtube] Downloading just video 1-pUaogoX5o because of --no-playlist\n", + "[download] Destination: Katy Perry - Waking Up In Vegas (Official)-1-pUaogoX5o.webm\n", + "[download] 100% of 3.10MiB in 00:38\n", + "[download] Finished downloading playlist: Waking Up In Vegas\n", + "[download] Downloading playlist: Sober\n", + "[youtube:search] query \"Sober\": Downloading page 1\n", + "[youtube:search] playlist Sober: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] A-_9VonfUko: Downloading webpage\n", + "[youtube] Downloading just video A-_9VonfUko because of --no-playlist\n", + "[download] Destination: Demi Lovato - Sober (Lyrics)-A-_9VonfUko.webm\n", + "[download] 100% of 3.23MiB in 01:14\n", + "[download] Finished downloading playlist: Sober\n", + "[download] Downloading playlist: Womanizer\n", + "[youtube:search] query \"Womanizer\": Downloading page 1\n", + "[youtube:search] playlist Womanizer: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rMqayQ-U74s: Downloading webpage\n", + "[youtube] Downloading just video rMqayQ-U74s because of --no-playlist\n", + "[download] Destination: Britney Spears - Womanizer (Director's Cut) (Official HD Video)-rMqayQ-U74s.m4a\n", + "[download] 100% of 3.49MiB in 00:51\n", + "[ffmpeg] Correcting container in \"Britney Spears - Womanizer (Director's Cut) (Official HD Video)-rMqayQ-U74s.m4a\"\n", + "[download] Finished downloading playlist: Womanizer\n", + "[download] Downloading playlist: Whatever You Like\n", + "[youtube:search] query \"Whatever You Like\": Downloading page 1\n", + "[youtube:search] playlist Whatever You Like: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nQJACVmankY: Downloading webpage\n", + "[youtube] Downloading just video nQJACVmankY because of --no-playlist\n", + "[download] Destination: T.I. - Whatever You Like [Official Video]-nQJACVmankY.m4a\n", + "[download] 100% of 3.97MiB in 01:18\n", + "[ffmpeg] Correcting container in \"T.I. - Whatever You Like [Official Video]-nQJACVmankY.m4a\"\n", + "[download] Finished downloading playlist: Whatever You Like\n", + "[download] Downloading playlist: Mad\n", + "[youtube:search] query \"Mad\": Downloading page 1\n", + "[youtube:search] playlist Mad: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] sAYuOc7_TKg: Downloading webpage\n", + "[youtube] Downloading just video sAYuOc7_TKg because of --no-playlist\n", + "[download] Destination: Ne-Yo - Mad (Official Music Video)-sAYuOc7_TKg.webm\n", + "[download] 100% of 4.50MiB in 01:49\n", + "[download] Finished downloading playlist: Mad\n", + "[download] Downloading playlist: Love Lockdown\n", + "[youtube:search] query \"Love Lockdown\": Downloading page 1\n", + "[youtube:search] playlist Love Lockdown: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] HZwMX6T5Jhk: Downloading webpage\n", + "[youtube] Downloading just video HZwMX6T5Jhk because of --no-playlist\n", + "[download] Destination: Kanye West - Love Lockdown-HZwMX6T5Jhk.webm\n", + "[download] 100% of 4.38MiB in 01:28\n", + "[download] Finished downloading playlist: Love Lockdown\n", + "[download] Downloading playlist: So What\n", + "[youtube:search] query \"So What\": Downloading page 1\n", + "[youtube:search] playlist So What: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] FJfFZqTlWrQ: Downloading webpage\n", + "[youtube] Downloading just video FJfFZqTlWrQ because of --no-playlist\n", + "[download] Destination: P!nk - So What (Official Video)-FJfFZqTlWrQ.m4a\n", + "[download] 100% of 3.48MiB in 00:59\n", + "[ffmpeg] Correcting container in \"P!nk - So What (Official Video)-FJfFZqTlWrQ.m4a\"\n", + "[download] Finished downloading playlist: So What\n", + "[download] Downloading playlist: If I Were A Boy\n", + "[youtube:search] query \"If I Were A Boy\": Downloading page 1\n", + "[youtube:search] playlist If I Were A Boy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] AWpsOqh8q0M: Downloading webpage\n", + "[youtube] Downloading just video AWpsOqh8q0M because of --no-playlist\n", + "[download] Destination: Beyoncé - If I Were A Boy-AWpsOqh8q0M.webm\n", + "[download] 100% of 4.77MiB in 01:53\n", + "[download] Finished downloading playlist: If I Were A Boy\n", + "[download] Downloading playlist: I Hate This Part\n", + "[youtube:search] query \"I Hate This Part\": Downloading page 1\n", + "[youtube:search] playlist I Hate This Part: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] S97MaG3kOMY: Downloading webpage\n", + "[youtube] Downloading just video S97MaG3kOMY because of --no-playlist\n", + "[download] Destination: The Pussycat Dolls - I Hate This Part (Official Music Video)-S97MaG3kOMY.webm\n", + "[download] 100% of 3.56MiB in 00:49\n", + "[download] Finished downloading playlist: I Hate This Part\n", + "[download] Downloading playlist: Gotta Be Somebody\n", + "[youtube:search] query \"Gotta Be Somebody\": Downloading page 1\n", + "[youtube:search] playlist Gotta Be Somebody: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Q0VRj2uw9L0: Downloading webpage\n", + "[youtube] Downloading just video Q0VRj2uw9L0 because of --no-playlist\n", + "[download] Destination: Nickelback - Gotta Be Somebody [OFFICIAL VIDEO]-Q0VRj2uw9L0.m4a\n", + "[download] 100% of 3.88MiB in 01:03\n", + "[ffmpeg] Correcting container in \"Nickelback - Gotta Be Somebody [OFFICIAL VIDEO]-Q0VRj2uw9L0.m4a\"\n", + "[download] Finished downloading playlist: Gotta Be Somebody\n", + "[download] Downloading playlist: Please Don't Leave Me\n", + "[youtube:search] query \"Please Don't Leave Me\": Downloading page 1\n", + "[youtube:search] playlist Please Don't Leave Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] eocCPDxKq1o: Downloading webpage\n", + "[youtube] Downloading just video eocCPDxKq1o because of --no-playlist\n", + "[download] Destination: P!nk - Please Don't Leave Me (Official Video)-eocCPDxKq1o.webm\n", + "[download] 100% of 3.61MiB in 01:16\n", + "[download] Finished downloading playlist: Please Don't Leave Me\n", + "[download] Downloading playlist: Viva La Vida\n", + "[youtube:search] query \"Viva La Vida\": Downloading page 1\n", + "[youtube:search] playlist Viva La Vida: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] dvgZkm1xWPE: Downloading webpage\n", + "[youtube] Downloading just video dvgZkm1xWPE because of --no-playlist\n", + "[download] Destination: Coldplay - Viva La Vida (Official Video)-dvgZkm1xWPE.webm\n", + "[download] 100% of 3.78MiB in 01:08\n", + "[download] Finished downloading playlist: Viva La Vida\n", + "[download] Downloading playlist: Right Now (Na Na Na)\n", + "[youtube:search] query \"Right Now (Na Na Na)\": Downloading page 1\n", + "[youtube:search] playlist Right Now (Na Na Na): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] vIaH35-MLsk: Downloading webpage\n", + "[youtube] Downloading just video vIaH35-MLsk because of --no-playlist\n", + "[download] Destination: Akon - Right Now (Na Na Na) (Official Video)-vIaH35-MLsk.webm\n", + "[download] 100% of 4.92MiB in 01:40\n", + "[download] Finished downloading playlist: Right Now (Na Na Na)\n", + "[download] Downloading playlist: Battlefield\n", + "[youtube:search] query \"Battlefield\": Downloading page 1\n", + "[youtube:search] playlist Battlefield: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] p3a_JIr1Awc: Downloading webpage\n", + "[youtube] Downloading just video p3a_JIr1Awc because of --no-playlist\n", + "[download] Destination: Battlefield 2042 Is So Deserted & Busted Even Cheat Makers & Sellers Are Abandoning The Game-p3a_JIr1Awc.webm\n", + "[download] 100% of 12.48MiB in 02:49\n", + "[download] Finished downloading playlist: Battlefield\n", + "[download] Downloading playlist: Miss Independent\n", + "[youtube:search] query \"Miss Independent\": Downloading page 1\n", + "[youtube:search] playlist Miss Independent: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] k6M5C-oKw9k: Downloading webpage\n", + "[youtube] Downloading just video k6M5C-oKw9k because of --no-playlist\n", + "[download] Destination: Ne-Yo - Miss Independent (Official Music Video)-k6M5C-oKw9k.webm\n", + "[download] 100% of 4.43MiB in 01:43\n", + "[download] Finished downloading playlist: Miss Independent\n", + "[download] Downloading playlist: No Surprise\n", + "[youtube:search] query \"No Surprise\": Downloading page 1\n", + "[youtube:search] playlist No Surprise: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] yyl24HRGgSU: Downloading webpage\n", + "[youtube] Downloading just video yyl24HRGgSU because of --no-playlist\n", + "[download] Destination: Daughtry - No Surprise-yyl24HRGgSU.webm\n", + "[download] 100% of 3.93MiB in 00:47\n", + "[download] Finished downloading playlist: No Surprise\n", + "[download] Downloading playlist: If Today Was Your Last Day\n", + "[youtube:search] query \"If Today Was Your Last Day\": Downloading page 1\n", + "[youtube:search] playlist If Today Was Your Last Day: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] lrXIQQ8PeRs: Downloading webpage\n", + "[youtube] Downloading just video lrXIQQ8PeRs because of --no-playlist\n", + "[download] Destination: Nickelback - If Today Was Your Last Day [OFFICIAL VIDEO]-lrXIQQ8PeRs.webm\n", + "[download] 100% of 3.83MiB in 01:27\n", + "[download] Finished downloading playlist: If Today Was Your Last Day\n", + "[download] Downloading playlist: If U Seek Amy\n", + "[youtube:search] query \"If U Seek Amy\": Downloading page 1\n", + "[youtube:search] playlist If U Seek Amy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 0aEnnH6t8Ts: Downloading webpage\n", + "[youtube] Downloading just video 0aEnnH6t8Ts because of --no-playlist\n", + "[download] Destination: Britney Spears - If U Seek Amy (Official HD Video)-0aEnnH6t8Ts.webm\n", + "[download] 100% of 3.56MiB in 01:05\n", + "[download] Finished downloading playlist: If U Seek Amy\n", + "[download] Downloading playlist: White Horse\n", + "[youtube:search] query \"White Horse\": Downloading page 1\n", + "[youtube:search] playlist White Horse: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] D1Xr-JFLxik: Downloading webpage\n", + "[youtube] Downloading just video D1Xr-JFLxik because of --no-playlist\n", + "[download] Destination: Taylor Swift - White Horse-D1Xr-JFLxik.webm\n", + "[download] 100% of 4.00MiB in 00:54\n", + "[download] Finished downloading playlist: White Horse\n", + "[download] Downloading playlist: Disturbia\n", + "[youtube:search] query \"Disturbia\": Downloading page 1\n", + "[youtube:search] playlist Disturbia: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] E1mU6h4Xdxc: Downloading webpage\n", + "[youtube] Downloading just video E1mU6h4Xdxc because of --no-playlist\n", + "[download] Destination: Rihanna - Disturbia-E1mU6h4Xdxc.webm\n", + "[download] 100% of 4.11MiB in 01:13\n", + "[download] Finished downloading playlist: Disturbia\n", + "[download] Downloading playlist: Diva\n", + "[youtube:search] query \"Diva\": Downloading page 1\n", + "[youtube:search] playlist Diva: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ZMqhjKRUGsY: Downloading webpage\n", + "[youtube] Downloading just video ZMqhjKRUGsY because of --no-playlist\n", + "[download] Destination: The Kid LAROI - Diva ft. Lil Tecca (Directed by Cole Bennett)-ZMqhjKRUGsY.webm\n", + "[download] 100% of 3.02MiB in 00:40\n", + "[download] Finished downloading playlist: Diva\n", + "[download] Downloading playlist: One Time\n", + "[youtube:search] query \"One Time\": Downloading page 1\n", + "[youtube:search] playlist One Time: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] CHVhwcOg6y8: Downloading webpage\n", + "[youtube] Downloading just video CHVhwcOg6y8 because of --no-playlist\n", + "[download] Destination: Justin Bieber - One Time (Official Music Video)-CHVhwcOg6y8.m4a\n", + "[download] 100% of 3.76MiB in 00:51\n", + "[ffmpeg] Correcting container in \"Justin Bieber - One Time (Official Music Video)-CHVhwcOg6y8.m4a\"\n", + "[download] Finished downloading playlist: One Time\n", + "[download] Downloading playlist: Never Say Never\n", + "[youtube:search] query \"Never Say Never\": Downloading page 1\n", + "[youtube:search] playlist Never Say Never: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] q1WWi47ff5A: Downloading webpage\n", + "[youtube] Downloading just video q1WWi47ff5A because of --no-playlist\n", + "[download] Destination: Cole Swindell & Lainey Wilson - Never Say Never (Official Music Video)-q1WWi47ff5A.webm\n", + "[download] 100% of 2.82MiB in 00:59\n", + "[download] Finished downloading playlist: Never Say Never\n", + "[download] Downloading playlist: Bleeding Love\n", + "[youtube:search] query \"Bleeding Love\": Downloading page 1\n", + "[youtube:search] playlist Bleeding Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Vzo-EL_62fQ: Downloading webpage\n", + "[youtube] Downloading just video Vzo-EL_62fQ because of --no-playlist\n", + "[download] Destination: Leona Lewis - Bleeding Love (US Version - Official Video)-Vzo-EL_62fQ.webm\n", + "[download] 100% of 4.41MiB in 01:46\n", + "[download] Finished downloading playlist: Bleeding Love\n", + "[download] Downloading playlist: No One\n", + "[youtube:search] query \"No One\": Downloading page 1\n", + "[youtube:search] playlist No One: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rywUS-ohqeE: Downloading webpage\n", + "[youtube] Downloading just video rywUS-ohqeE because of --no-playlist\n", + "[download] Destination: Alicia Keys - No One (Official Music Video)-rywUS-ohqeE.m4a\n", + "[download] 100% of 3.83MiB in 00:54\n", + "[ffmpeg] Correcting container in \"Alicia Keys - No One (Official Music Video)-rywUS-ohqeE.m4a\"\n", + "[download] Finished downloading playlist: No One\n", + "[download] Downloading playlist: With You\n", + "[youtube:search] query \"With You\": Downloading page 1\n", + "[youtube:search] playlist With You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nmjdaBaZe8Y: Downloading webpage\n", + "[youtube] Downloading just video nmjdaBaZe8Y because of --no-playlist\n", + "[download] Destination: Chris Brown - With You (Official Video)-nmjdaBaZe8Y.webm\n", + "[download] 100% of 4.20MiB in 00:55\n", + "[download] Finished downloading playlist: With You\n", + "[download] Downloading playlist: Forever\n", + "[youtube:search] query \"Forever\": Downloading page 1\n", + "[youtube:search] playlist Forever: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] eDuRoPIOBjE: Downloading webpage\n", + "[youtube] Downloading just video eDuRoPIOBjE because of --no-playlist\n", + "[download] Destination: Drake, Kanye West, Lil Wayne, Eminem - Forever (Explicit Version) (Official Music Video)-eDuRoPIOBjE.m4a\n", + "[download] 100% of 5.76MiB in 01:54\n", + "[ffmpeg] Correcting container in \"Drake, Kanye West, Lil Wayne, Eminem - Forever (Explicit Version) (Official Music Video)-eDuRoPIOBjE.m4a\"\n", + "[download] Finished downloading playlist: Forever\n", + "[download] Downloading playlist: Take A Bow\n", + "[youtube:search] query \"Take A Bow\": Downloading page 1\n", + "[youtube:search] playlist Take A Bow: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] J3UjJ4wKLkg: Downloading webpage\n", + "[youtube] Downloading just video J3UjJ4wKLkg because of --no-playlist\n", + "[download] Destination: Rihanna - Take A Bow (Official Music Video)-J3UjJ4wKLkg.webm\n", + "[download] 100% of 3.91MiB in 00:54\n", + "[download] Finished downloading playlist: Take A Bow\n", + "[download] Downloading playlist: I Kissed A Girl\n", + "[youtube:search] query \"I Kissed A Girl\": Downloading page 1\n", + "[youtube:search] playlist I Kissed A Girl: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] tAp9BKosZXs: Downloading webpage\n", + "[youtube] Downloading just video tAp9BKosZXs because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: I Kissed A Girl\n", + "[download] Downloading playlist: Don't Stop The Music\n", + "[youtube:search] query \"Don't Stop The Music\": Downloading page 1\n", + "[youtube:search] playlist Don't Stop The Music: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] yd8jh9QYfEs: Downloading webpage\n", + "[youtube] Downloading just video yd8jh9QYfEs because of --no-playlist\n", + "[download] Destination: Rihanna - Don't Stop The Music-yd8jh9QYfEs.m4a\n", + "[download] 100% of 3.60MiB in 01:00\n", + "[ffmpeg] Correcting container in \"Rihanna - Don't Stop The Music-yd8jh9QYfEs.m4a\"\n", + "[download] Finished downloading playlist: Don't Stop The Music\n", + "[download] Downloading playlist: Closer\n", + "[youtube:search] query \"Closer\": Downloading page 1\n", + "[youtube:search] playlist Closer: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 25ROFXjoaAU: Downloading webpage\n", + "[youtube] Downloading just video 25ROFXjoaAU because of --no-playlist\n", + "[download] Destination: The Chainsmokers - Closer (Lyrics) ft. Halsey-25ROFXjoaAU.webm\n", + "[download] 100% of 3.89MiB in 00:53\n", + "[download] Finished downloading playlist: Closer\n", + "[download] Downloading playlist: Clumsy\n", + "[youtube:search] query \"Clumsy\": Downloading page 1\n", + "[youtube:search] playlist Clumsy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] JLJ6PRcnJNw: Downloading webpage\n", + "[youtube] Downloading just video JLJ6PRcnJNw because of --no-playlist\n", + "[download] Destination: MILDLY INFURIATING V16-JLJ6PRcnJNw.webm\n", + "[download] 100% of 18.95MiB in 04:21\n", + "[download] Finished downloading playlist: Clumsy\n", + "[download] Downloading playlist: Tattoo\n", + "[youtube:search] query \"Tattoo\": Downloading page 1\n", + "[youtube:search] playlist Tattoo: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] xV2IGaGm58M: Downloading webpage\n", + "[youtube] Downloading just video xV2IGaGm58M because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Tattoo\n", + "[download] Downloading playlist: See You Again\n", + "[youtube:search] query \"See You Again\": Downloading page 1\n", + "[youtube:search] playlist See You Again: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] RgKAFK5djSk: Downloading webpage\n", + "[youtube] Downloading just video RgKAFK5djSk because of --no-playlist\n", + "[download] Destination: Wiz Khalifa - See You Again ft. Charlie Puth [Official Video] Furious 7 Soundtrack-RgKAFK5djSk.m4a\n", + "[download] 100% of 3.67MiB in 01:12\n", + "[ffmpeg] Correcting container in \"Wiz Khalifa - See You Again ft. Charlie Puth [Official Video] Furious 7 Soundtrack-RgKAFK5djSk.m4a\"\n", + "[download] Finished downloading playlist: See You Again\n", + "[download] Downloading playlist: Our Song\n", + "[youtube:search] query \"Our Song\": Downloading page 1\n", + "[youtube:search] playlist Our Song: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Jb2stN7kH28: Downloading webpage\n", + "[youtube] Downloading just video Jb2stN7kH28 because of --no-playlist\n", + "[download] Destination: Taylor Swift - Our Song-Jb2stN7kH28.webm\n", + "[download] 100% of 3.33MiB in 00:40\n", + "[download] Finished downloading playlist: Our Song\n", + "[download] Downloading playlist: A Milli\n", + "[youtube:search] query \"A Milli\": Downloading page 1\n", + "[youtube:search] playlist A Milli: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] P19dow9ALYM: Downloading webpage\n", + "[youtube] Downloading just video P19dow9ALYM because of --no-playlist\n", + "[download] Destination: A Milli-P19dow9ALYM.m4a\n", + "[download] 100% of 3.43MiB in 01:10\n", + "[ffmpeg] Correcting container in \"A Milli-P19dow9ALYM.m4a\"\n", + "[download] Finished downloading playlist: A Milli\n", + "[download] Downloading playlist: Like You'll Never See Me Again\n", + "[youtube:search] query \"Like You'll Never See Me Again\": Downloading page 1\n", + "[youtube:search] playlist Like You'll Never See Me Again: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] xPvwDcrT6rU: Downloading webpage\n", + "[youtube] Downloading just video xPvwDcrT6rU because of --no-playlist\n", + "[download] Destination: Alicia Keys - Like You'll Never See Me Again (Official Video)-xPvwDcrT6rU.webm\n", + "[download] 100% of 4.41MiB in 01:03\n", + "[download] Finished downloading playlist: Like You'll Never See Me Again\n", + "[download] Downloading playlist: Teardrops On My Guitar\n", + "[youtube:search] query \"Teardrops On My Guitar\": Downloading page 1\n", + "[youtube:search] playlist Teardrops On My Guitar: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] xKCek6_dB0M: Downloading webpage\n", + "[youtube] Downloading just video xKCek6_dB0M because of --no-playlist\n", + "[download] Destination: Taylor Swift - Teardrops On My Guitar-xKCek6_dB0M.webm\n", + "[download] 100% of 3.55MiB in 01:02\n", + "[download] Finished downloading playlist: Teardrops On My Guitar\n", + "[download] Downloading playlist: When I Grow Up\n", + "[youtube:search] query \"When I Grow Up\": Downloading page 1\n", + "[youtube:search] playlist When I Grow Up: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] lxRwEPvL-mQ: Downloading webpage\n", + "[youtube] Downloading just video lxRwEPvL-mQ because of --no-playlist\n", + "[download] Destination: NF - When I Grow Up-lxRwEPvL-mQ.webm\n", + "[download] 100% of 3.98MiB in 01:21\n", + "[download] Finished downloading playlist: When I Grow Up\n", + "[download] Downloading playlist: Better In Time\n", + "[youtube:search] query \"Better In Time\": Downloading page 1\n", + "[youtube:search] playlist Better In Time: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] qSxyffSB7wA: Downloading webpage\n", + "[youtube] Downloading just video qSxyffSB7wA because of --no-playlist\n", + "[download] Destination: Leona Lewis - Better in Time (Official Video)-qSxyffSB7wA.webm\n", + "[download] 100% of 3.83MiB in 01:11\n", + "[download] Finished downloading playlist: Better In Time\n", + "[download] Downloading playlist: One Step At A Time\n", + "[youtube:search] query \"One Step At A Time\": Downloading page 1\n", + "[youtube:search] playlist One Step At A Time: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] PIE5QtkxzvM: Downloading webpage\n", + "[youtube] Downloading just video PIE5QtkxzvM because of --no-playlist\n", + "[download] Destination: Jordin Sparks - One Step At A Time (Official Video)-PIE5QtkxzvM.webm\n", + "[download] 100% of 3.47MiB in 00:48\n", + "[download] Finished downloading playlist: One Step At A Time\n", + "[download] Downloading playlist: Burnin' Up\n", + "[youtube:search] query \"Burnin' Up\": Downloading page 1\n", + "[youtube:search] playlist Burnin' Up: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 5KNEZJ6KkLI: Downloading webpage\n", + "[youtube] Downloading just video 5KNEZJ6KkLI because of --no-playlist\n", + "[download] Destination: Jonas Brothers - Burnin' Up (Official Music Video)-5KNEZJ6KkLI.m4a\n", + "[download] 100% of 3.08MiB in 00:55\n", + "[ffmpeg] Correcting container in \"Jonas Brothers - Burnin' Up (Official Music Video)-5KNEZJ6KkLI.m4a\"\n", + "[download] Finished downloading playlist: Burnin' Up\n", + "[download] Downloading playlist: Big Girls Don't Cry\n", + "[youtube:search] query \"Big Girls Don't Cry\": Downloading page 1\n", + "[youtube:search] playlist Big Girls Don't Cry: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] agrXgrAgQ0U: Downloading webpage\n", + "[youtube] Downloading just video agrXgrAgQ0U because of --no-playlist\n", + "[download] Destination: Fergie - Big Girls Don't Cry (Personal) (Official Music Video)-agrXgrAgQ0U.webm\n", + "[download] 100% of 4.81MiB in 01:04\n", + "[download] Finished downloading playlist: Big Girls Don't Cry\n", + "[download] Downloading playlist: Just Fine\n", + "[youtube:search] query \"Just Fine\": Downloading page 1\n", + "[youtube:search] playlist Just Fine: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] G6ZjBPXSmnE: Downloading webpage\n", + "[youtube] Downloading just video G6ZjBPXSmnE because of --no-playlist\n", + "[download] Destination: Mary J. Blige - Just Fine (Official Music Video)-G6ZjBPXSmnE.webm\n", + "[download] 100% of 3.85MiB in 01:12\n", + "[download] Finished downloading playlist: Just Fine\n", + "[download] Downloading playlist: Piece Of Me\n", + "[youtube:search] query \"Piece Of Me\": Downloading page 1\n", + "[youtube:search] playlist Piece Of Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] u4FF6MpcsRw: Downloading webpage\n", + "[youtube] Downloading just video u4FF6MpcsRw because of --no-playlist\n", + "[download] Destination: Britney Spears - Piece Of Me-u4FF6MpcsRw.webm\n", + "[download] 100% of 3.11MiB in 00:43\n", + "[download] Finished downloading playlist: Piece Of Me\n", + "[download] Downloading playlist: 7 Things\n", + "[youtube:search] query \"7 Things\": Downloading page 1\n", + "[youtube:search] playlist 7 Things: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Hr0Wv5DJhuk: Downloading webpage\n", + "[youtube] Downloading just video Hr0Wv5DJhuk because of --no-playlist\n", + "[download] Destination: Miley Cyrus - 7 Things (Official Video)-Hr0Wv5DJhuk.webm\n", + "[download] 100% of 3.42MiB in 00:43\n", + "[download] Finished downloading playlist: 7 Things\n", + "[download] Downloading playlist: Feels Like Tonight\n", + "[youtube:search] query \"Feels Like Tonight\": Downloading page 1\n", + "[youtube:search] playlist Feels Like Tonight: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 2judm5t9Qdo: Downloading webpage\n", + "[youtube] Downloading just video 2judm5t9Qdo because of --no-playlist\n", + "[download] Destination: Daughtry - Feels Like Tonight (Official Music Video)-2judm5t9Qdo.webm\n", + "[download] 100% of 3.91MiB in 00:53\n", + "[download] Finished downloading playlist: Feels Like Tonight\n", + "[download] Downloading playlist: Irreplaceable\n", + "[youtube:search] query \"Irreplaceable\": Downloading page 1\n", + "[youtube:search] playlist Irreplaceable: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 2EwViQxSJJQ: Downloading webpage\n", + "[youtube] Downloading just video 2EwViQxSJJQ because of --no-playlist\n", + "[download] Destination: Beyoncé - Irreplaceable-2EwViQxSJJQ.webm\n", + "[download] 100% of 4.00MiB in 01:18\n", + "[download] Finished downloading playlist: Irreplaceable\n", + "[download] Downloading playlist: Before He Cheats\n", + "[youtube:search] query \"Before He Cheats\": Downloading page 1\n", + "[youtube:search] playlist Before He Cheats: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] WaSy8yy-mr8: Downloading webpage\n", + "[youtube] Downloading just video WaSy8yy-mr8 because of --no-playlist\n", + "[download] Destination: Carrie Underwood - Before He Cheats (Official Video)-WaSy8yy-mr8.webm\n", + "[download] 100% of 3.19MiB in 00:53\n", + "[download] Finished downloading playlist: Before He Cheats\n", + "[download] Downloading playlist: Don't Matter\n", + "[youtube:search] query \"Don't Matter\": Downloading page 1\n", + "[youtube:search] playlist Don't Matter: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] JWA5hJl4Dv0: Downloading webpage\n", + "[youtube] Downloading just video JWA5hJl4Dv0 because of --no-playlist\n", + "[download] Destination: Akon - Don't Matter (Official Music Video)-JWA5hJl4Dv0.webm\n", + "[download] 100% of 4.16MiB in 00:55\n", + "[download] Finished downloading playlist: Don't Matter\n", + "[download] Downloading playlist: Girlfriend\n", + "[youtube:search] query \"Girlfriend\": Downloading page 1\n", + "[youtube:search] playlist Girlfriend: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Bg59q4puhmg: Downloading webpage\n", + "[youtube] Downloading just video Bg59q4puhmg because of --no-playlist\n", + "[download] Destination: Avril Lavigne - Girlfriend-Bg59q4puhmg.m4a\n", + "[download] 100% of 3.51MiB in 00:56\n", + "[ffmpeg] Correcting container in \"Avril Lavigne - Girlfriend-Bg59q4puhmg.m4a\"\n", + "[download] Finished downloading playlist: Girlfriend\n", + "[download] Downloading playlist: Makes Me Wonder\n", + "[youtube:search] query \"Makes Me Wonder\": Downloading page 1\n", + "[youtube:search] playlist Makes Me Wonder: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] sAebYQgy4n4: Downloading webpage\n", + "[youtube] Downloading just video sAebYQgy4n4 because of --no-playlist\n", + "[download] Destination: Maroon 5 - Makes Me Wonder (Official Music Video)-sAebYQgy4n4.webm\n", + "[download] 100% of 3.49MiB in 00:42\n", + "[download] Finished downloading playlist: Makes Me Wonder\n", + "[download] Downloading playlist: It's Not Over\n", + "[youtube:search] query \"It's Not Over\": Downloading page 1\n", + "[youtube:search] playlist It's Not Over: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] UQ92eyxnxmQ: Downloading webpage\n", + "[youtube] Downloading just video UQ92eyxnxmQ because of --no-playlist\n", + "[download] Destination: Daughtry - It's Not Over (Official Music Video)-UQ92eyxnxmQ.webm\n", + "[download] 100% of 3.67MiB in 00:59\n", + "[download] Finished downloading playlist: It's Not Over\n", + "[download] Downloading playlist: Fergalicious\n", + "[youtube:search] query \"Fergalicious\": Downloading page 1\n", + "[youtube:search] playlist Fergalicious: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 5T0utQ-XWGY: Downloading webpage\n", + "[youtube] Downloading just video 5T0utQ-XWGY because of --no-playlist\n", + "[download] Destination: Fergie - Fergalicious (Official Music Video)-5T0utQ-XWGY.webm\n", + "[download] 100% of 3.66MiB in 00:50\n", + "[download] Finished downloading playlist: Fergalicious\n", + "[download] Downloading playlist: What Goes Around...Comes Around\n", + "[youtube:search] query \"What Goes Around...Comes Around\": Downloading page 1\n", + "[youtube:search] playlist What Goes Around...Comes Around: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] TOrnUquxtwA: Downloading webpage\n", + "[youtube] Downloading just video TOrnUquxtwA because of --no-playlist\n", + "[download] Destination: What Goes Around...Comes Around (Official Video)-TOrnUquxtwA.m4a\n", + "[download] 100% of 8.66MiB in 02:06\n", + "[ffmpeg] Correcting container in \"What Goes Around...Comes Around (Official Video)-TOrnUquxtwA.m4a\"\n", + "[download] Finished downloading playlist: What Goes Around...Comes Around\n", + "[download] Downloading playlist: How To Save A Life\n", + "[youtube:search] query \"How To Save A Life\": Downloading page 1\n", + "[youtube:search] playlist How To Save A Life: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] cjVQ36NhbMk: Downloading webpage\n", + "[youtube] Downloading just video cjVQ36NhbMk because of --no-playlist\n", + "[download] Destination: The Fray - How to Save a Life (Official Video)-cjVQ36NhbMk.webm\n", + "[download] 100% of 4.29MiB in 01:00\n", + "[download] Finished downloading playlist: How To Save A Life\n", + "[download] Downloading playlist: Home\n", + "[youtube:search] query \"Home\": Downloading page 1\n", + "[youtube:search] playlist Home: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] DHEOF_rcND8: Downloading webpage\n", + "[youtube] Downloading just video DHEOF_rcND8 because of --no-playlist\n", + "[download] Destination: Edward Sharpe & The Magnetic Zeros - Home (Official Video)-DHEOF_rcND8.webm\n", + "[download] 100% of 4.81MiB in 01:03\n", + "[download] Finished downloading playlist: Home\n", + "[download] Downloading playlist: Stronger\n", + "[youtube:search] query \"Stronger\": Downloading page 1\n", + "[youtube:search] playlist Stronger: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] PsO6ZnUZI0g: Downloading webpage\n", + "[youtube] Downloading just video PsO6ZnUZI0g because of --no-playlist\n", + "[download] Destination: Kanye West - Stronger-PsO6ZnUZI0g.m4a\n", + "[download] 100% of 4.11MiB in 01:32\n", + "[ffmpeg] Correcting container in \"Kanye West - Stronger-PsO6ZnUZI0g.m4a\"\n", + "[download] Finished downloading playlist: Stronger\n", + "[download] Downloading playlist: U + Ur Hand\n", + "[youtube:search] query \"U + Ur Hand\": Downloading page 1\n", + "[youtube:search] playlist U + Ur Hand: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] YUtHjOvPKT0: Downloading webpage\n", + "[youtube] Downloading just video YUtHjOvPKT0 because of --no-playlist\n", + "[download] Destination: P!NK - U + Ur Hand-YUtHjOvPKT0.m4a\n", + "[download] 100% of 3.30MiB in 00:41\n", + "[ffmpeg] Correcting container in \"P!NK - U + Ur Hand-YUtHjOvPKT0.m4a\"\n", + "[download] Finished downloading playlist: U + Ur Hand\n", + "[download] Downloading playlist: Rockstar\n", + "[youtube:search] query \"Rockstar\": Downloading page 1\n", + "[youtube:search] playlist Rockstar: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 83xBPCw5hh4: Downloading webpage\n", + "[youtube] Downloading just video 83xBPCw5hh4 because of --no-playlist\n", + "[download] Destination: DaBaby – ROCKSTAR FT RODDY RICCH [Audio]-83xBPCw5hh4.webm\n", + "[download] 100% of 3.08MiB in 00:44\n", + "[download] Finished downloading playlist: Rockstar\n", + "[download] Downloading playlist: Summer Love\n", + "[youtube:search] query \"Summer Love\": Downloading page 1\n", + "[youtube:search] playlist Summer Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] SpmCfl2UrPc: Downloading webpage\n", + "[youtube] Downloading just video SpmCfl2UrPc because of --no-playlist\n", + "[download] Destination: Summer Love-SpmCfl2UrPc.webm\n", + "[download] 100% of 3.95MiB in 00:56\n", + "[download] Finished downloading playlist: Summer Love\n", + "[download] Downloading playlist: If Everyone Cared\n", + "[youtube:search] query \"If Everyone Cared\": Downloading page 1\n", + "[youtube:search] playlist If Everyone Cared: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] LgJ5UEI5lpw: Downloading webpage\n", + "[youtube] Downloading just video LgJ5UEI5lpw because of --no-playlist\n", + "[download] Destination: If Everyone Cared-LgJ5UEI5lpw.webm\n", + "[download] 100% of 3.49MiB in 01:05\n", + "[download] Finished downloading playlist: If Everyone Cared\n", + "[download] Downloading playlist: Because Of You\n", + "[youtube:search] query \"Because Of You\": Downloading page 1\n", + "[youtube:search] playlist Because Of You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Ra-Om7UMSJc: Downloading webpage\n", + "[youtube] Downloading just video Ra-Om7UMSJc because of --no-playlist\n", + "[download] Destination: Kelly Clarkson - Because Of You (VIDEO)-Ra-Om7UMSJc.webm\n", + "[download] 100% of 3.63MiB in 00:49\n", + "[download] Finished downloading playlist: Because Of You\n", + "[download] Downloading playlist: SexyBack\n", + "[youtube:search] query \"SexyBack\": Downloading page 1\n", + "[youtube:search] playlist SexyBack: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] gfWQ1r6IQrY: Downloading webpage\n", + "[youtube] Downloading just video gfWQ1r6IQrY because of --no-playlist\n", + "[download] Destination: SexyBack-gfWQ1r6IQrY.webm\n", + "[download] 100% of 3.84MiB in 01:07\n", + "[download] Finished downloading playlist: SexyBack\n", + "[download] Downloading playlist: Keep Holding On\n", + "[youtube:search] query \"Keep Holding On\": Downloading page 1\n", + "[youtube:search] playlist Keep Holding On: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] _Gcrx2Ab0FM: Downloading webpage\n", + "[youtube] Downloading just video _Gcrx2Ab0FM because of --no-playlist\n", + "[download] Destination: Keep Holding On - Avril Lavigne (lyrics)-_Gcrx2Ab0FM.webm\n", + "[download] 100% of 3.85MiB in 00:46\n", + "[download] Finished downloading playlist: Keep Holding On\n", + "[download] Downloading playlist: Who Knew\n", + "[youtube:search] query \"Who Knew\": Downloading page 1\n", + "[youtube:search] playlist Who Knew: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] NJWIbIe0N90: Downloading webpage\n", + "[youtube] Downloading just video NJWIbIe0N90 because of --no-playlist\n", + "[download] Destination: P!nk - Who Knew (Official Video)-NJWIbIe0N90.webm\n", + "[download] 100% of 3.39MiB in 00:41\n", + "[download] Finished downloading playlist: Who Knew\n", + "[download] Downloading playlist: Big Things Poppin' (Do It)\n", + "[youtube:search] query \"Big Things Poppin' (Do It)\": Downloading page 1\n", + "[youtube:search] playlist Big Things Poppin' (Do It): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uVMYFfBo3g8: Downloading webpage\n", + "[youtube] Downloading just video uVMYFfBo3g8 because of --no-playlist\n", + "[download] Destination: T.I. - Big Things Poppin' (Do It) [Official Video]-uVMYFfBo3g8.m4a\n", + "[download] 100% of 4.17MiB in 01:34\n", + "[ffmpeg] Correcting container in \"T.I. - Big Things Poppin' (Do It) [Official Video]-uVMYFfBo3g8.m4a\"\n", + "[download] Finished downloading playlist: Big Things Poppin' (Do It)\n", + "[download] Downloading playlist: Wind It Up\n", + "[youtube:search] query \"Wind It Up\": Downloading page 1\n", + "[youtube:search] playlist Wind It Up: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 9sY-TsLXiDo: Downloading webpage\n", + "[youtube] Downloading just video 9sY-TsLXiDo because of --no-playlist\n", + "[download] Destination: Gwen Stefani - Wind It Up-9sY-TsLXiDo.m4a\n", + "[download] 100% of 2.88MiB in 00:40\n", + "[ffmpeg] Correcting container in \"Gwen Stefani - Wind It Up-9sY-TsLXiDo.m4a\"\n", + "[download] Finished downloading playlist: Wind It Up\n", + "[download] Downloading playlist: Shut Up And Drive\n", + "[youtube:search] query \"Shut Up And Drive\": Downloading page 1\n", + "[youtube:search] playlist Shut Up And Drive: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] up7pvPqNkuU: Downloading webpage\n", + "[youtube] Downloading just video up7pvPqNkuU because of --no-playlist\n", + "[download] Destination: Rihanna - Shut Up And Drive-up7pvPqNkuU.m4a\n", + "[download] 100% of 3.68MiB in 00:58\n", + "[ffmpeg] Correcting container in \"Rihanna - Shut Up And Drive-up7pvPqNkuU.m4a\"\n", + "[download] Finished downloading playlist: Shut Up And Drive\n", + "[download] Downloading playlist: Far Away\n", + "[youtube:search] query \"Far Away\": Downloading page 1\n", + "[youtube:search] playlist Far Away: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] j4y-RzVGrHg: Downloading webpage\n", + "[youtube] Downloading just video j4y-RzVGrHg because of --no-playlist\n", + "[download] Destination: Nickelback - Far Away [OFFICIAL VIDEO]-j4y-RzVGrHg.webm\n", + "[download] 100% of 3.78MiB in 01:08\n", + "[download] Finished downloading playlist: Far Away\n", + "[download] Downloading playlist: LoveStoned\n", + "[youtube:search] query \"LoveStoned\": Downloading page 1\n", + "[youtube:search] playlist LoveStoned: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QUuKvHHt8Sk: Downloading webpage\n", + "[youtube] Downloading just video QUuKvHHt8Sk because of --no-playlist\n", + "[download] Destination: Justin Timberlake - LoveStoned _ I Think She Knows Interlude (Official Video)-QUuKvHHt8Sk.webm\n", + "[download] 100% of 5.09MiB in 01:40\n", + "[download] Finished downloading playlist: LoveStoned\n", + "[download] Downloading playlist: Temperature\n", + "[youtube:search] query \"Temperature\": Downloading page 1\n", + "[youtube:search] playlist Temperature: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] dW2MmuA1nI4: Downloading webpage\n", + "[youtube] Downloading just video dW2MmuA1nI4 because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Temperature\n", + "[download] Downloading playlist: Be Without You\n", + "[youtube:search] query \"Be Without You\": Downloading page 1\n", + "[youtube:search] playlist Be Without You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 8XNaPX6MKlU: Downloading webpage\n", + "[youtube] Downloading just video 8XNaPX6MKlU because of --no-playlist\n", + "[download] Destination: Mary J. Blige - Be Without You (Official Music Video)-8XNaPX6MKlU.webm\n", + "[download] 100% of 4.04MiB in 00:58\n", + "[download] Finished downloading playlist: Be Without You\n", + "[download] Downloading playlist: Over My Head (Cable Car)\n", + "[youtube:search] query \"Over My Head (Cable Car)\": Downloading page 1\n", + "[youtube:search] playlist Over My Head (Cable Car): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] fFRkpvvop3I: Downloading webpage\n", + "[youtube] Downloading just video fFRkpvvop3I because of --no-playlist\n", + "[download] Destination: The Fray - Over My Head (Cable Car) (Video)-fFRkpvvop3I.webm\n", + "[download] 100% of 3.79MiB in 01:24\n", + "[download] Finished downloading playlist: Over My Head (Cable Car)\n", + "[download] Downloading playlist: Run It!\n", + "[youtube:search] query \"Run It!\": Downloading page 1\n", + "[youtube:search] playlist Run It!: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] w6QGe-pXgdI: Downloading webpage\n", + "[youtube] Downloading just video w6QGe-pXgdI because of --no-playlist\n", + "[download] Destination: Chris Brown - Run It! (Official HD Video) ft. Juelz Santana-w6QGe-pXgdI.webm\n", + "[download] 100% of 3.87MiB in 01:15\n", + "[download] Finished downloading playlist: Run It!\n", + "[download] Downloading playlist: So Sick\n", + "[youtube:search] query \"So Sick\": Downloading page 1\n", + "[youtube:search] playlist So Sick: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] IxszlJppRQI: Downloading webpage\n", + "[youtube] Downloading just video IxszlJppRQI because of --no-playlist\n", + "[download] Destination: Ne-Yo - So Sick (Official Music Video)-IxszlJppRQI.webm\n", + "[download] 100% of 3.41MiB in 01:09\n", + "[download] Finished downloading playlist: So Sick\n", + "[download] Downloading playlist: SOS\n", + "[youtube:search] query \"SOS\": Downloading page 1\n", + "[youtube:search] playlist SOS: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] cvChjHcABPA: Downloading webpage\n", + "[youtube] Downloading just video cvChjHcABPA because of --no-playlist\n", + "[download] Destination: ABBA - SOS (Official Music Video)-cvChjHcABPA.webm\n", + "[download] 100% of 3.17MiB in 00:56\n", + "[download] Finished downloading playlist: SOS\n", + "[download] Downloading playlist: London Bridge\n", + "[youtube:search] query \"London Bridge\": Downloading page 1\n", + "[youtube:search] playlist London Bridge: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] WD33ii01kXI: Downloading webpage\n", + "[youtube] Downloading just video WD33ii01kXI because of --no-playlist\n", + "[download] Destination: Fergie - London Bridge (Oh Snap) (Official Music Video)-WD33ii01kXI.m4a\n", + "[download] 100% of 3.27MiB in 00:59\n", + "[ffmpeg] Correcting container in \"Fergie - London Bridge (Oh Snap) (Official Music Video)-WD33ii01kXI.m4a\"\n", + "[download] Finished downloading playlist: London Bridge\n", + "[download] Downloading playlist: What Hurts The Most\n", + "[youtube:search] query \"What Hurts The Most\": Downloading page 1\n", + "[youtube:search] playlist What Hurts The Most: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 7qH4qyi1-Ys: Downloading webpage\n", + "[youtube] Downloading just video 7qH4qyi1-Ys because of --no-playlist\n", + "[download] Destination: Rascal Flatts - What Hurts The Most (Official Video)-7qH4qyi1-Ys.webm\n", + "[download] 100% of 5.15MiB in 01:46\n", + "[download] Finished downloading playlist: What Hurts The Most\n", + "[download] Downloading playlist: Unfaithful\n", + "[youtube:search] query \"Unfaithful\": Downloading page 1\n", + "[youtube:search] playlist Unfaithful: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rp4UwPZfRis: Downloading webpage\n", + "[youtube] Downloading just video rp4UwPZfRis because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Unfaithful\n", + "[download] Downloading playlist: Stickwitu\n", + "[youtube:search] query \"Stickwitu\": Downloading page 1\n", + "[youtube:search] playlist Stickwitu: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] K1uNjmxJQUo: Downloading webpage\n", + "[youtube] Downloading just video K1uNjmxJQUo because of --no-playlist\n", + "[download] Destination: The Pussycat Dolls - Stickwitu (Official Music Video) ft. Avant-K1uNjmxJQUo.m4a\n", + "[download] 100% of 3.26MiB in 00:56\n", + "[ffmpeg] Correcting container in \"The Pussycat Dolls - Stickwitu (Official Music Video) ft. Avant-K1uNjmxJQUo.m4a\"\n", + "[download] Finished downloading playlist: Stickwitu\n", + "[download] Downloading playlist: My Humps\n", + "[youtube:search] query \"My Humps\": Downloading page 1\n", + "[youtube:search] playlist My Humps: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] iEe_eraFWWs: Downloading webpage\n", + "[youtube] Downloading just video iEe_eraFWWs because of --no-playlist\n", + "[download] Destination: The Black Eyed Peas - My Humps-iEe_eraFWWs.webm\n", + "[download] 100% of 3.77MiB in 00:50\n", + "[download] Finished downloading playlist: My Humps\n", + "[download] Downloading playlist: Yo (Excuse Me Miss)\n", + "[youtube:search] query \"Yo (Excuse Me Miss)\": Downloading page 1\n", + "[youtube:search] playlist Yo (Excuse Me Miss): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] yn_6LC4loY8: Downloading webpage\n", + "[youtube] Downloading just video yn_6LC4loY8 because of --no-playlist\n", + "[download] Destination: Chris Brown - Yo (Excuse Me Miss) (Official Video)-yn_6LC4loY8.m4a\n", + "[download] 100% of 4.36MiB in 01:29\n", + "[ffmpeg] Correcting container in \"Chris Brown - Yo (Excuse Me Miss) (Official Video)-yn_6LC4loY8.m4a\"\n", + "[download] Finished downloading playlist: Yo (Excuse Me Miss)\n", + "[download] Downloading playlist: What You Know\n", + "[youtube:search] query \"What You Know\": Downloading page 1\n", + "[youtube:search] playlist What You Know: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] YXwYJyrKK5A: Downloading webpage\n", + "[youtube] Downloading just video YXwYJyrKK5A because of --no-playlist\n", + "[download] Destination: TWO DOOR CINEMA CLUB _ WHAT YOU KNOW-YXwYJyrKK5A.webm\n", + "[download] 100% of 2.99MiB in 00:41\n", + "[download] Finished downloading playlist: What You Know\n", + "[download] Downloading playlist: Savin' Me\n", + "[youtube:search] query \"Savin' Me\": Downloading page 1\n", + "[youtube:search] playlist Savin' Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] _JQiEs32SqQ: Downloading webpage\n", + "[youtube] Downloading just video _JQiEs32SqQ because of --no-playlist\n", + "[download] Destination: Nickelback - Savin' Me-_JQiEs32SqQ.m4a\n", + "[download] 100% of 3.90MiB in 00:51\n", + "[ffmpeg] Correcting container in \"Nickelback - Savin' Me-_JQiEs32SqQ.m4a\"\n", + "[download] Finished downloading playlist: Savin' Me\n", + "[download] Downloading playlist: Sexy Love\n", + "[youtube:search] query \"Sexy Love\": Downloading page 1\n", + "[youtube:search] playlist Sexy Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] mgaeGW-2z6w: Downloading webpage\n", + "[youtube] Downloading just video mgaeGW-2z6w because of --no-playlist\n", + "[download] Destination: Ne-Yo - Sexy Love (Official Music Video)-mgaeGW-2z6w.m4a\n", + "[download] 100% of 3.79MiB in 01:22\n", + "[ffmpeg] Correcting container in \"Ne-Yo - Sexy Love (Official Music Video)-mgaeGW-2z6w.m4a\"\n", + "[download] Finished downloading playlist: Sexy Love\n", + "[download] Downloading playlist: Life Is A Highway\n", + "[youtube:search] query \"Life Is A Highway\": Downloading page 1\n", + "[youtube:search] playlist Life Is A Highway: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 5tXh_MfrMe0: Downloading webpage\n", + "[youtube] Downloading just video 5tXh_MfrMe0 because of --no-playlist\n", + "[download] Destination: Rascal Flatts - Life Is a Highway (From 'Cars'_Official Video)-5tXh_MfrMe0.m4a\n", + "[download] 100% of 4.61MiB in 01:08\n", + "[ffmpeg] Correcting container in \"Rascal Flatts - Life Is a Highway (From 'Cars'_Official Video)-5tXh_MfrMe0.m4a\"\n", + "[download] Finished downloading playlist: Life Is A Highway\n", + "[download] Downloading playlist: Jesus, Take The Wheel\n", + "[youtube:search] query \"Jesus, Take The Wheel\": Downloading page 1\n", + "[youtube:search] playlist Jesus, Take The Wheel: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] lydBPm2KRaU: Downloading webpage\n", + "[youtube] Downloading just video lydBPm2KRaU because of --no-playlist\n", + "[download] Destination: Carrie Underwood - Jesus, Take The Wheel (Official Video)-lydBPm2KRaU.webm\n", + "[download] 100% of 3.76MiB in 01:00\n", + "[download] Finished downloading playlist: Jesus, Take The Wheel\n", + "[download] Downloading playlist: We Be Burnin'\n", + "[youtube:search] query \"We Be Burnin'\": Downloading page 1\n", + "[youtube:search] playlist We Be Burnin': Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uUGFhVWPOFs: Downloading webpage\n", + "[youtube] Downloading just video uUGFhVWPOFs because of --no-playlist\n", + "[download] Destination: Sean Paul - We Be Burnin' (Recognize It) [Official Video]-uUGFhVWPOFs.webm\n", + "[download] 100% of 3.17MiB in 00:59\n", + "[download] Finished downloading playlist: We Be Burnin'\n", + "[download] Downloading playlist: Say Goodbye\n", + "[youtube:search] query \"Say Goodbye\": Downloading page 1\n", + "[youtube:search] playlist Say Goodbye: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] GJ26gAc7BtU: Downloading webpage\n", + "[youtube] Downloading just video GJ26gAc7BtU because of --no-playlist\n", + "[download] Destination: Chris Brown - Say Goodbye (Official HD Video)-GJ26gAc7BtU.webm\n", + "[download] 100% of 4.39MiB in 01:02\n", + "[download] Finished downloading playlist: Say Goodbye\n", + "[download] Downloading playlist: Pump It\n", + "[youtube:search] query \"Pump It\": Downloading page 1\n", + "[youtube:search] playlist Pump It: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ZaI2IlHwmgQ: Downloading webpage\n", + "[youtube] Downloading just video ZaI2IlHwmgQ because of --no-playlist\n", + "[download] Destination: The Black Eyed Peas - Pump It (Official Music Video)-ZaI2IlHwmgQ.m4a\n", + "[download] 100% of 3.49MiB in 01:18\n", + "[ffmpeg] Correcting container in \"The Black Eyed Peas - Pump It (Official Music Video)-ZaI2IlHwmgQ.m4a\"\n", + "[download] Finished downloading playlist: Pump It\n", + "[download] Downloading playlist: When I'm Gone\n", + "[youtube:search] query \"When I'm Gone\": Downloading page 1\n", + "[youtube:search] playlist When I'm Gone: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] N-4YMlihRf4: Downloading webpage\n", + "[youtube] Downloading just video N-4YMlihRf4 because of --no-playlist\n", + "[download] Destination: Alesso, Katy Perry - When I'm Gone (Official Music Video)-N-4YMlihRf4.webm\n", + "[download] 100% of 2.76MiB in 00:37\n", + "[download] Finished downloading playlist: When I'm Gone\n", + "[download] Downloading playlist: When You're Mad\n", + "[youtube:search] query \"When You're Mad\": Downloading page 1\n", + "[youtube:search] playlist When You're Mad: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] PU6-2RSkA_c: Downloading webpage\n", + "[youtube] Downloading just video PU6-2RSkA_c because of --no-playlist\n", + "[download] Destination: Ne-Yo - When You're Mad (Official Music Video)-PU6-2RSkA_c.webm\n", + "[download] 100% of 3.45MiB in 00:45\n", + "[download] Finished downloading playlist: When You're Mad\n", + "[download] Downloading playlist: Why You Wanna\n", + "[youtube:search] query \"Why You Wanna\": Downloading page 1\n", + "[youtube:search] playlist Why You Wanna: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Ho5HV_9_o_E: Downloading webpage\n", + "[youtube] Downloading just video Ho5HV_9_o_E because of --no-playlist\n", + "[download] Destination: Jana Kramer - 'Why Ya Wanna' (Official Music Video)-Ho5HV_9_o_E.webm\n", + "[download] 100% of 3.64MiB in 01:01\n", + "[download] Finished downloading playlist: Why You Wanna\n", + "[download] Downloading playlist: Stupid Girls\n", + "[youtube:search] query \"Stupid Girls\": Downloading page 1\n", + "[youtube:search] playlist Stupid Girls: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] BR4yQFZK9YM: Downloading webpage\n", + "[youtube] Downloading just video BR4yQFZK9YM because of --no-playlist\n", + "[download] Destination: P!nk - Stupid Girls-BR4yQFZK9YM.webm\n", + "[download] 100% of 3.28MiB in 00:47\n", + "[download] Finished downloading playlist: Stupid Girls\n", + "[download] Downloading playlist: I'm Sprung\n", + "[youtube:search] query \"I'm Sprung\": Downloading page 1\n", + "[youtube:search] playlist I'm Sprung: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rxRvDpF2FDA: Downloading webpage\n", + "[youtube] Downloading just video rxRvDpF2FDA because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: I'm Sprung\n", + "[download] Downloading playlist: Easy On Me\n", + "[youtube:search] query \"Easy On Me\": Downloading page 1\n", + "[youtube:search] playlist Easy On Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] U3ASj1L6_sY: Downloading webpage\n", + "[youtube] Downloading just video U3ASj1L6_sY because of --no-playlist\n", + "[download] Destination: Adele - Easy On Me (Official Video)-U3ASj1L6_sY.webm\n", + "[download] 100% of 5.16MiB in 01:10\n", + "[download] Finished downloading playlist: Easy On Me\n", + "[download] Downloading playlist: All Too Well (Taylor's Version)\n", + "[youtube:search] query \"All Too Well (Taylor's Version)\": Downloading page 1\n", + "[youtube:search] playlist All Too Well (Taylor's Version): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] sRxrwjOtIag: Downloading webpage\n", + "[youtube] Downloading just video sRxrwjOtIag because of --no-playlist\n", + "[download] Destination: All Too Well (10 Minute Version) (Taylor's Version) (From The Vault) (Lyric Video)-sRxrwjOtIag.webm\n", + "[download] 100% of 9.82MiB in 03:10\n", + "[download] Finished downloading playlist: All Too Well (Taylor's Version)\n", + "[download] Downloading playlist: Oh My God\n", + "[youtube:search] query \"Oh My God\": Downloading page 1\n", + "[youtube:search] playlist Oh My God: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] niG3YMU6jFk: Downloading webpage\n", + "[youtube] Downloading just video niG3YMU6jFk because of --no-playlist\n", + "[download] Destination: Adele - Oh My God (Official Video)-niG3YMU6jFk.m4a\n", + "[download] 100% of 3.59MiB in 00:43\n", + "[ffmpeg] Correcting container in \"Adele - Oh My God (Official Video)-niG3YMU6jFk.m4a\"\n", + "[download] Finished downloading playlist: Oh My God\n", + "[download] Downloading playlist: Shivers\n", + "[youtube:search] query \"Shivers\": Downloading page 1\n", + "[youtube:search] playlist Shivers: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Il0S8BoucSA: Downloading webpage\n", + "[youtube] Downloading just video Il0S8BoucSA because of --no-playlist\n", + "[download] Destination: Ed Sheeran - Shivers [Official Video]-Il0S8BoucSA.webm\n", + "[download] 100% of 3.67MiB in 00:50\n", + "[download] Finished downloading playlist: Shivers\n", + "[download] Downloading playlist: I Drink Wine\n", + "[youtube:search] query \"I Drink Wine\": Downloading page 1\n", + "[youtube:search] playlist I Drink Wine: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] axUh_2fTLe4: Downloading webpage\n", + "[youtube] Downloading just video axUh_2fTLe4 because of --no-playlist\n", + "[download] Destination: Adele - I Drink Wine (Official Lyric Video)-axUh_2fTLe4.webm\n", + "[download] 100% of 6.02MiB in 01:32\n", + "[download] Finished downloading playlist: I Drink Wine\n", + "[download] Downloading playlist: My Little Love\n", + "[youtube:search] query \"My Little Love\": Downloading page 1\n", + "[youtube:search] playlist My Little Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] zIF70l1zUKU: Downloading webpage\n", + "[youtube] Downloading just video zIF70l1zUKU because of --no-playlist\n", + "[download] Destination: Adele - My Little Love (Official Lyric Video)-zIF70l1zUKU.webm\n", + "[download] 100% of 6.09MiB in 01:18\n", + "[download] Finished downloading playlist: My Little Love\n", + "[download] Downloading playlist: Can I Get It\n", + "[youtube:search] query \"Can I Get It\": Downloading page 1\n", + "[youtube:search] playlist Can I Get It: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] w6VpznmUoaM: Downloading webpage\n", + "[youtube] Downloading just video w6VpznmUoaM because of --no-playlist\n", + "[download] Destination: Adele - Can I Get It (Official Lyric Video)-w6VpznmUoaM.webm\n", + "[download] 100% of 3.27MiB in 00:58\n", + "[download] Finished downloading playlist: Can I Get It\n", + "[download] Downloading playlist: To Be Loved\n", + "[youtube:search] query \"To Be Loved\": Downloading page 1\n", + "[youtube:search] playlist To Be Loved: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] _dlExeOyFh4: Downloading webpage\n", + "[youtube] Downloading just video _dlExeOyFh4 because of --no-playlist\n", + "[download] Destination: Adele - To Be Loved (Official Lyric Video)-_dlExeOyFh4.webm\n", + "[download] 100% of 6.60MiB in 01:40\n", + "[download] Finished downloading playlist: To Be Loved\n", + "[download] Downloading playlist: Ghost\n", + "[youtube:search] query \"Ghost\": Downloading page 1\n", + "[youtube:search] playlist Ghost: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Fp8msa5uYsc: Downloading webpage\n", + "[youtube] Downloading just video Fp8msa5uYsc because of --no-playlist\n", + "[download] Destination: Justin Bieber - Ghost-Fp8msa5uYsc.webm\n", + "[download] 100% of 3.43MiB in 01:02\n", + "[download] Finished downloading playlist: Ghost\n", + "[download] Downloading playlist: Strangers By Nature\n", + "[youtube:search] query \"Strangers By Nature\": Downloading page 1\n", + "[youtube:search] playlist Strangers By Nature: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] EFIfRhk8NRc: Downloading webpage\n", + "[youtube] Downloading just video EFIfRhk8NRc because of --no-playlist\n", + "[download] Destination: Adele - Strangers By Nature (Official Lyric Video)-EFIfRhk8NRc.webm\n", + "[download] 100% of 2.84MiB in 00:54\n", + "[download] Finished downloading playlist: Strangers By Nature\n", + "[download] Downloading playlist: Thats What I Want\n", + "[youtube:search] query \"Thats What I Want\": Downloading page 1\n", + "[youtube:search] playlist Thats What I Want: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] QDYDRA5JPLE: Downloading webpage\n", + "[youtube] Downloading just video QDYDRA5JPLE because of --no-playlist\n", + "[download] Destination: Lil Nas X - THATS WHAT I WANT (Official Video)-QDYDRA5JPLE.webm\n", + "[download] 100% of 2.61MiB in 00:56\n", + "[download] Finished downloading playlist: Thats What I Want\n", + "[download] Downloading playlist: Cry Your Heart Out\n", + "[youtube:search] query \"Cry Your Heart Out\": Downloading page 1\n", + "[youtube:search] playlist Cry Your Heart Out: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 2AxRO7EJX9I: Downloading webpage\n", + "[youtube] Downloading just video 2AxRO7EJX9I because of --no-playlist\n", + "[download] Destination: Adele - Cry Your Heart Out (Official Lyric Video)-2AxRO7EJX9I.webm\n", + "[download] 100% of 3.96MiB in 01:07\n", + "[download] Finished downloading playlist: Cry Your Heart Out\n", + "[download] Downloading playlist: Cold As You\n", + "[youtube:search] query \"Cold As You\": Downloading page 1\n", + "[youtube:search] playlist Cold As You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Y4BfaojXcWE: Downloading webpage\n", + "[youtube] Downloading just video Y4BfaojXcWE because of --no-playlist\n", + "[download] Destination: Luke Combs - Cold As You (Official Video)-Y4BfaojXcWE.m4a\n", + "[download] 100% of 3.27MiB in 01:13\n", + "[ffmpeg] Correcting container in \"Luke Combs - Cold As You (Official Video)-Y4BfaojXcWE.m4a\"\n", + "[download] Finished downloading playlist: Cold As You\n", + "[download] Downloading playlist: Hold On\n", + "[youtube:search] query \"Hold On\": Downloading page 1\n", + "[youtube:search] playlist Hold On: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 8ofCZObsnOo: Downloading webpage\n", + "[youtube] Downloading just video 8ofCZObsnOo because of --no-playlist\n", + "[download] Destination: Chord Overstreet - Hold On (Lyric Video)-8ofCZObsnOo.webm\n", + "[download] 100% of 3.23MiB in 00:41\n", + "[download] Finished downloading playlist: Hold On\n", + "[download] Downloading playlist: Woman Like Me\n", + "[youtube:search] query \"Woman Like Me\": Downloading page 1\n", + "[youtube:search] playlist Woman Like Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] jptpkiCVfAs: Downloading webpage\n", + "[youtube] Downloading just video jptpkiCVfAs because of --no-playlist\n", + "[download] Destination: Adele - Woman Like Me (Official Lyric Video)-jptpkiCVfAs.m4a\n", + "[download] 100% of 4.64MiB in 01:13\n", + "[ffmpeg] Correcting container in \"Adele - Woman Like Me (Official Lyric Video)-jptpkiCVfAs.m4a\"\n", + "[download] Finished downloading playlist: Woman Like Me\n", + "[download] Downloading playlist: Love Is A Game\n", + "[youtube:search] query \"Love Is A Game\": Downloading page 1\n", + "[youtube:search] playlist Love Is A Game: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] oPmMUZbnc3o: Downloading webpage\n", + "[youtube] Downloading just video oPmMUZbnc3o because of --no-playlist\n", + "[download] Destination: Adele - Love Is A Game (Official Lyric Video)-oPmMUZbnc3o.m4a\n", + "[download] 100% of 6.23MiB in 01:23\n", + "[ffmpeg] Correcting container in \"Adele - Love Is A Game (Official Lyric Video)-oPmMUZbnc3o.m4a\"\n", + "[download] Finished downloading playlist: Love Is A Game\n", + "[download] Downloading playlist: Already Dead\n", + "[youtube:search] query \"Already Dead\": Downloading page 1\n", + "[youtube:search] playlist Already Dead: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] f74GYIVMk3I: Downloading webpage\n", + "[youtube] Downloading just video f74GYIVMk3I because of --no-playlist\n", + "[download] Destination: Juice WRLD - Already Dead (Official Music Video)-f74GYIVMk3I.webm\n", + "[download] 100% of 4.11MiB in 01:09\n", + "[download] Finished downloading playlist: Already Dead\n", + "[download] Downloading playlist: Sand In My Boots\n", + "[youtube:search] query \"Sand In My Boots\": Downloading page 1\n", + "[youtube:search] playlist Sand In My Boots: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] FXzE9eP1U_E: Downloading webpage\n", + "[youtube] Downloading just video FXzE9eP1U_E because of --no-playlist\n", + "[download] Destination: Morgan Wallen - Sand In My Boots (The Dangerous Sessions)-FXzE9eP1U_E.m4a\n", + "[download] 100% of 3.01MiB in 00:47\n", + "[ffmpeg] Correcting container in \"Morgan Wallen - Sand In My Boots (The Dangerous Sessions)-FXzE9eP1U_E.m4a\"\n", + "[download] Finished downloading playlist: Sand In My Boots\n", + "[download] Downloading playlist: Message In A Bottle (Taylor's Version) (From The Vault)\n", + "[youtube:search] query \"Message In A Bottle (Taylor's Version) (From The Vault)\": Downloading page 1\n", + "[youtube:search] playlist Message In A Bottle (Taylor's Version) (From The Vault): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] cVaG6adE2mA: Downloading webpage\n", + "[youtube] Downloading just video cVaG6adE2mA because of --no-playlist\n", + "[download] Destination: Taylor Swift - Message In A Bottle (Taylor's Version) (From The Vault) (Lyric Video)-cVaG6adE2mA.webm\n", + "[download] 100% of 3.79MiB in 00:48\n", + "[download] Finished downloading playlist: Message In A Bottle (Taylor's Version) (From The Vault)\n", + "[download] Downloading playlist: Woman\n", + "[youtube:search] query \"Woman\": Downloading page 1\n", + "[youtube:search] playlist Woman: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] yxW5yuzVi8w: Downloading webpage\n", + "[youtube] Downloading just video yxW5yuzVi8w because of --no-playlist\n", + "[download] Destination: Doja Cat - Woman (Official Video)-yxW5yuzVi8w.webm\n", + "[download] 100% of 3.10MiB in 00:51\n", + "[download] Finished downloading playlist: Woman\n", + "[download] Downloading playlist: Doin' This\n", + "[youtube:search] query \"Doin' This\": Downloading page 1\n", + "[youtube:search] playlist Doin' This: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 2YSqaI3IBpo: Downloading webpage\n", + "[youtube] Downloading just video 2YSqaI3IBpo because of --no-playlist\n", + "[download] Destination: Luke Combs - Doin' This (Official Video)-2YSqaI3IBpo.webm\n", + "[download] 100% of 4.53MiB in 01:01\n", + "[download] Finished downloading playlist: Doin' This\n", + "[download] Downloading playlist: Red (Taylor's Version)\n", + "[youtube:search] query \"Red (Taylor's Version)\": Downloading page 1\n", + "[youtube:search] playlist Red (Taylor's Version): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 65QgBVmx7oQ: Downloading webpage\n", + "[youtube] Downloading just video 65QgBVmx7oQ because of --no-playlist\n", + "[download] Destination: T.A.Y.L.O.R S.W.I.F.T - RED (T.a.y.l.o.r's V.e.r.s.i.o.n) [F.u.l.l A.l.b.u.m]-65QgBVmx7oQ.webm\n", + "[download] 100% of 125.98MiB in 28:29\n", + "[download] Finished downloading playlist: Red (Taylor's Version)\n", + "[download] Downloading playlist: State Of Grace (Taylor's Version)\n", + "[youtube:search] query \"State Of Grace (Taylor's Version)\": Downloading page 1\n", + "[youtube:search] playlist State Of Grace (Taylor's Version): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] -mrC5tRkxrY: Downloading webpage\n", + "[youtube] Downloading just video -mrC5tRkxrY because of --no-playlist\n", + "[download] Destination: Taylor Swift - State Of Grace (Taylor's Version) (Lyric Video)--mrC5tRkxrY.webm\n", + "[download] 100% of 4.89MiB in 01:36\n", + "[download] Finished downloading playlist: State Of Grace (Taylor's Version)\n", + "[download] Downloading playlist: Escape Plan\n", + "[youtube:search] query \"Escape Plan\": Downloading page 1\n", + "[youtube:search] playlist Escape Plan: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] KPz33BLkvho: Downloading webpage\n", + "[youtube] Downloading just video KPz33BLkvho because of --no-playlist\n", + "[download] Destination: Travis Scott - ESCAPE PLAN (Official Music Video)-KPz33BLkvho.webm\n", + "[download] 100% of 2.79MiB in 00:42\n", + "[download] Finished downloading playlist: Escape Plan\n", + "[download] Downloading playlist: Who's In Your Head\n", + "[youtube:search] query \"Who's In Your Head\": Downloading page 1\n", + "[youtube:search] playlist Who's In Your Head: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] orex_wD5ths: Downloading webpage\n", + "[youtube] Downloading just video orex_wD5ths because of --no-playlist\n", + "[download] Destination: Jonas Brothers - Who's In Your Head (Official Video)-orex_wD5ths.m4a\n", + "[download] 100% of 2.88MiB in 01:00\n", + "[ffmpeg] Correcting container in \"Jonas Brothers - Who's In Your Head (Official Video)-orex_wD5ths.m4a\"\n", + "[download] Finished downloading playlist: Who's In Your Head\n", + "[download] Downloading playlist: Permission To Dance\n", + "[youtube:search] query \"Permission To Dance\": Downloading page 1\n", + "[youtube:search] playlist Permission To Dance: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] CuklIb9d3fI: Downloading webpage\n", + "[youtube] Downloading just video CuklIb9d3fI because of --no-playlist\n", + "[download] Destination: BTS (방탄소년단) 'Permission to Dance' Official MV-CuklIb9d3fI.m4a\n", + "[download] 100% of 4.62MiB in 01:47\n", + "[ffmpeg] Correcting container in \"BTS (방탄소년단) 'Permission to Dance' Official MV-CuklIb9d3fI.m4a\"\n", + "[download] Finished downloading playlist: Permission To Dance\n", + "[download] Downloading playlist: Motley Crew\n", + "[youtube:search] query \"Motley Crew\": Downloading page 1\n", + "[youtube:search] playlist Motley Crew: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] lCiV4wACZ8w: Downloading webpage\n", + "[youtube] Downloading just video lCiV4wACZ8w because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Motley Crew\n", + "[download] Downloading playlist: Ain't Shit\n", + "[youtube:search] query \"Ain't Shit\": Downloading page 1\n", + "[youtube:search] playlist Ain't Shit: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] sSOpqlc3dXM: Downloading webpage\n", + "[youtube] Downloading just video sSOpqlc3dXM because of --no-playlist\n", + "[download] Destination: Doja Cat - Ain't Shit (Lyrics)-sSOpqlc3dXM.m4a\n", + "[download] 100% of 2.71MiB in 00:33\n", + "[ffmpeg] Correcting container in \"Doja Cat - Ain't Shit (Lyrics)-sSOpqlc3dXM.m4a\"\n", + "[download] Finished downloading playlist: Ain't Shit\n", + "[download] Downloading playlist: Don't Go Yet\n", + "[youtube:search] query \"Don't Go Yet\": Downloading page 1\n", + "[youtube:search] playlist Don't Go Yet: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 0Kx3sobEBFE: Downloading webpage\n", + "[youtube] Downloading just video 0Kx3sobEBFE because of --no-playlist\n", + "[download] Destination: Camila Cabello - Don't Go Yet (Official Video)-0Kx3sobEBFE.webm\n", + "[download] 100% of 2.92MiB in 00:43\n", + "[download] Finished downloading playlist: Don't Go Yet\n", + "[download] Downloading playlist: Ball If I Want To\n", + "[youtube:search] query \"Ball If I Want To\": Downloading page 1\n", + "[youtube:search] playlist Ball If I Want To: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] _Rzm7cPzVUo: Downloading webpage\n", + "[youtube] Downloading just video _Rzm7cPzVUo because of --no-playlist\n", + "[download] Destination: DaBaby - BALL IF I WANT TO (Official Video)-_Rzm7cPzVUo.m4a\n", + "[download] 100% of 1.75MiB in 00:26\n", + "[ffmpeg] Correcting container in \"DaBaby - BALL IF I WANT TO (Official Video)-_Rzm7cPzVUo.m4a\"\n", + "[download] Finished downloading playlist: Ball If I Want To\n", + "[download] Downloading playlist: Favorite Crime\n", + "[youtube:search] query \"Favorite Crime\": Downloading page 1\n", + "[youtube:search] playlist Favorite Crime: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] AyX_LL9nWSE: Downloading webpage\n", + "[youtube] Downloading just video AyX_LL9nWSE because of --no-playlist\n", + "[download] Destination: Olivia Rodrigo - favorite crime (Lyric Video)-AyX_LL9nWSE.webm\n", + "[download] 100% of 2.50MiB in 00:47\n", + "[download] Finished downloading playlist: Favorite Crime\n", + "[download] Downloading playlist: Happier\n", + "[youtube:search] query \"Happier\": Downloading page 1\n", + "[youtube:search] playlist Happier: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] W8xQBKI7_I0: Downloading webpage\n", + "[youtube] Downloading just video W8xQBKI7_I0 because of --no-playlist\n", + "[download] Destination: Olivia Rodrigo - Happier (Lyrics)-W8xQBKI7_I0.webm\n", + "[download] 100% of 2.83MiB in 00:35\n", + "[download] Finished downloading playlist: Happier\n", + "[download] Downloading playlist: Red Light Green Light\n", + "[youtube:search] query \"Red Light Green Light\": Downloading page 1\n", + "[youtube:search] playlist Red Light Green Light: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] p6IIWuwdNIc: Downloading webpage\n", + "[youtube] Downloading just video p6IIWuwdNIc because of --no-playlist\n", + "[download] Destination: DaBaby - Red Light Green Light (Official Video)-p6IIWuwdNIc.m4a\n", + "[download] 100% of 2.52MiB in 00:39\n", + "[ffmpeg] Correcting container in \"DaBaby - Red Light Green Light (Official Video)-p6IIWuwdNIc.m4a\"\n", + "[download] Finished downloading playlist: Red Light Green Light\n", + "[download] Downloading playlist: NDA\n", + "[youtube:search] query \"NDA\": Downloading page 1\n", + "[youtube:search] playlist NDA: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] OORBa32WFcM: Downloading webpage\n", + "[youtube] Downloading just video OORBa32WFcM because of --no-playlist\n", + "[download] Destination: Billie Eilish - NDA (Official Music Video)-OORBa32WFcM.m4a\n", + "[download] 100% of 3.34MiB in 00:42\n", + "[ffmpeg] Correcting container in \"Billie Eilish - NDA (Official Music Video)-OORBa32WFcM.m4a\"\n", + "[download] Finished downloading playlist: NDA\n", + "[download] Downloading playlist: Brutal\n", + "[youtube:search] query \"Brutal\": Downloading page 1\n", + "[youtube:search] playlist Brutal: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] OGUy2UmRxJ0: Downloading webpage\n", + "[youtube] Downloading just video OGUy2UmRxJ0 because of --no-playlist\n", + "[download] Destination: Olivia Rodrigo - brutal (Official Video)-OGUy2UmRxJ0.m4a\n", + "[download] 100% of 2.67MiB in 00:47\n", + "[ffmpeg] Correcting container in \"Olivia Rodrigo - brutal (Official Video)-OGUy2UmRxJ0.m4a\"\n", + "[download] Finished downloading playlist: Brutal\n", + "[download] Downloading playlist: Off My Face\n", + "[youtube:search] query \"Off My Face\": Downloading page 1\n", + "[youtube:search] playlist Off My Face: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ENjrJ_zyeUc: Downloading webpage\n", + "[youtube] Downloading just video ENjrJ_zyeUc because of --no-playlist\n", + "[download] Destination: Justin Bieber - Off My Face (Live from Paris)-ENjrJ_zyeUc.webm\n", + "[download] 100% of 2.67MiB in 00:39\n", + "[download] Finished downloading playlist: Off My Face\n", + "[download] Downloading playlist: 2 Much\n", + "[youtube:search] query \"2 Much\": Downloading page 1\n", + "[youtube:search] playlist 2 Much: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] xFJjczkU4So: Downloading webpage\n", + "[youtube] Downloading just video xFJjczkU4So because of --no-playlist\n", + "[download] Destination: Justin Bieber - 2 Much (Live from Paris)-xFJjczkU4So.webm\n", + "[download] 100% of 2.15MiB in 00:29\n", + "[download] Finished downloading playlist: 2 Much\n", + "[download] Downloading playlist: Masterpiece\n", + "[youtube:search] query \"Masterpiece\": Downloading page 1\n", + "[youtube:search] playlist Masterpiece: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pnMtmFzMLP4: Downloading webpage\n", + "[youtube] Downloading just video pnMtmFzMLP4 because of --no-playlist\n", + "[download] Destination: DaBaby - Masterpiece (Official Video)-pnMtmFzMLP4.m4a\n", + "[download] 100% of 3.56MiB in 01:00\n", + "[ffmpeg] Correcting container in \"DaBaby - Masterpiece (Official Video)-pnMtmFzMLP4.m4a\"\n", + "[download] Finished downloading playlist: Masterpiece\n", + "[download] Downloading playlist: Deserve You\n", + "[youtube:search] query \"Deserve You\": Downloading page 1\n", + "[youtube:search] playlist Deserve You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 1_NVaujWgBg: Downloading webpage\n", + "[youtube] Downloading just video 1_NVaujWgBg because of --no-playlist\n", + "[download] Destination: Justin Bieber - Deserve You (Visualizer)-1_NVaujWgBg.webm\n", + "[download] 100% of 3.09MiB in 00:48\n", + "[download] Finished downloading playlist: Deserve You\n", + "[download] Downloading playlist: Wasted On You\n", + "[youtube:search] query \"Wasted On You\": Downloading page 1\n", + "[youtube:search] playlist Wasted On You: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uKmg4UbnDLo: Downloading webpage\n", + "[youtube] Downloading just video uKmg4UbnDLo because of --no-playlist\n", + "[download] Destination: Morgan Wallen - Wasted On You (The Dangerous Sessions)-uKmg4UbnDLo.webm\n", + "[download] 100% of 2.99MiB in 00:41\n", + "[download] Finished downloading playlist: Wasted On You\n", + "[download] Downloading playlist: Somebody\n", + "[youtube:search] query \"Somebody\": Downloading page 1\n", + "[youtube:search] playlist Somebody: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uV2yMgh85qU: Downloading webpage\n", + "[youtube] Downloading just video uV2yMgh85qU because of --no-playlist\n", + "[download] Destination: keshi - SOMEBODY-uV2yMgh85qU.webm\n", + "[download] 100% of 2.95MiB in 00:53\n", + "[download] Finished downloading playlist: Somebody\n", + "[download] Downloading playlist: Santa Tell Me\n", + "[youtube:search] query \"Santa Tell Me\": Downloading page 1\n", + "[youtube:search] playlist Santa Tell Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nlR0MkrRklg: Downloading webpage\n", + "[youtube] Downloading just video nlR0MkrRklg because of --no-playlist\n", + "[download] Destination: Ariana Grande - Santa Tell Me (Official Video)-nlR0MkrRklg.m4a\n", + "[download] 100% of 5.25MiB in 01:17\n", + "[ffmpeg] Correcting container in \"Ariana Grande - Santa Tell Me (Official Video)-nlR0MkrRklg.m4a\"\n", + "[download] Finished downloading playlist: Santa Tell Me\n", + "[download] Downloading playlist: Holiday\n", + "[youtube:search] query \"Holiday\": Downloading page 1\n", + "[youtube:search] playlist Holiday: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 9vMLTcftlyI: Downloading webpage\n", + "[youtube] Downloading just video 9vMLTcftlyI because of --no-playlist\n", + "[download] Destination: Lil Nas X - HOLIDAY (Official Video)-9vMLTcftlyI.webm\n", + "[download] 100% of 2.83MiB in 00:39\n", + "[download] Finished downloading playlist: Holiday\n", + "[download] Downloading playlist: Afterglow\n", + "[youtube:search] query \"Afterglow\": Downloading page 1\n", + "[youtube:search] playlist Afterglow: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] _NGQfFCFUn4: Downloading webpage\n", + "[youtube] Downloading just video _NGQfFCFUn4 because of --no-playlist\n", + "[download] Destination: Ed Sheeran - Afterglow [Official Performance Video]-_NGQfFCFUn4.webm\n", + "[download] 100% of 3.13MiB in 01:04\n", + "[download] Finished downloading playlist: Afterglow\n", + "[download] Downloading playlist: Gnat\n", + "[youtube:search] query \"Gnat\": Downloading page 1\n", + "[youtube:search] playlist Gnat: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] EosMazKaPbU: Downloading webpage\n", + "[youtube] Downloading just video EosMazKaPbU because of --no-playlist\n", + "[download] Destination: Eminem - GNAT (Directed by Cole Bennett)-EosMazKaPbU.webm\n", + "[download] 100% of 3.83MiB in 00:55\n", + "[download] Finished downloading playlist: Gnat\n", + "[download] Downloading playlist: Rockin' Around The Christmas Tree\n", + "[youtube:search] query \"Rockin' Around The Christmas Tree\": Downloading page 1\n", + "[youtube:search] playlist Rockin' Around The Christmas Tree: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 1qYz7rfgLWE: Downloading webpage\n", + "[youtube] Downloading just video 1qYz7rfgLWE because of --no-playlist\n", + "[download] Destination: Brenda Lee - Rockin' Around The Christmas Tree (Official Lyric Video)-1qYz7rfgLWE.webm\n", + "[download] 100% of 2.06MiB in 00:28\n", + "[download] Finished downloading playlist: Rockin' Around The Christmas Tree\n", + "[download] Downloading playlist: Favorite Time Of Year\n", + "[youtube:search] query \"Favorite Time Of Year\": Downloading page 1\n", + "[youtube:search] playlist Favorite Time Of Year: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] T86M4WqZE2M: Downloading webpage\n", + "[youtube] Downloading just video T86M4WqZE2M because of --no-playlist\n", + "[download] Destination: Carrie Underwood - Favorite Time Of Year (Official Audio Video)-T86M4WqZE2M.webm\n", + "[download] 100% of 3.02MiB in 00:53\n", + "[download] Finished downloading playlist: Favorite Time Of Year\n", + "[download] Downloading playlist: Champagne Problems\n", + "[youtube:search] query \"Champagne Problems\": Downloading page 1\n", + "[youtube:search] playlist Champagne Problems: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] wMpqCRF7TKg: Downloading webpage\n", + "[youtube] Downloading just video wMpqCRF7TKg because of --no-playlist\n", + "[download] Destination: Taylor Swift - champagne problems (Official Lyric Video)-wMpqCRF7TKg.webm\n", + "[download] 100% of 4.04MiB in 01:31\n", + "[download] Finished downloading playlist: Champagne Problems\n", + "[download] Downloading playlist: Champagne Night\n", + "[youtube:search] query \"Champagne Night\": Downloading page 1\n", + "[youtube:search] playlist Champagne Night: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] E-urw9c82EA: Downloading webpage\n", + "[youtube] Downloading just video E-urw9c82EA because of --no-playlist\n", + "[download] Destination: Lady A - Champagne Night (From Songland)-E-urw9c82EA.m4a\n", + "[download] 100% of 2.95MiB in 00:35\n", + "[ffmpeg] Correcting container in \"Lady A - Champagne Night (From Songland)-E-urw9c82EA.m4a\"\n", + "[download] Finished downloading playlist: Champagne Night\n", + "[download] Downloading playlist: 7 Summers\n", + "[youtube:search] query \"7 Summers\": Downloading page 1\n", + "[youtube:search] playlist 7 Summers: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ZsEjZKNzt9E: Downloading webpage\n", + "[youtube] Downloading just video ZsEjZKNzt9E because of --no-playlist\n", + "[download] Destination: Morgan Wallen - 7 Summers-ZsEjZKNzt9E.m4a\n", + "[download] 100% of 3.41MiB in 00:44\n", + "[ffmpeg] Correcting container in \"Morgan Wallen - 7 Summers-ZsEjZKNzt9E.m4a\"\n", + "[download] Finished downloading playlist: 7 Summers\n", + "[download] Downloading playlist: 'Tis The Damn Season\n", + "[youtube:search] query \"'Tis The Damn Season\": Downloading page 1\n", + "[youtube:search] playlist 'Tis The Damn Season: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] WuvhOD-mP8M: Downloading webpage\n", + "[youtube] Downloading just video WuvhOD-mP8M because of --no-playlist\n", + "[download] Destination: Taylor Swift - ‘tis the damn season (Official Lyric Video)-WuvhOD-mP8M.m4a\n", + "[download] 100% of 3.63MiB in 01:26\n", + "[ffmpeg] Correcting container in \"Taylor Swift - ‘tis the damn season (Official Lyric Video)-WuvhOD-mP8M.m4a\"\n", + "[download] Finished downloading playlist: 'Tis The Damn Season\n", + "[download] Downloading playlist: Silent Night\n", + "[youtube:search] query \"Silent Night\": Downloading page 1\n", + "[youtube:search] playlist Silent Night: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nEH7_2c644Q: Downloading webpage\n", + "[youtube] Downloading just video nEH7_2c644Q because of --no-playlist\n", + "[download] Destination: Silent Night with Lyrics _ Christmas Carol-nEH7_2c644Q.webm\n", + "[download] 100% of 3.68MiB in 01:15\n", + "[download] Finished downloading playlist: Silent Night\n", + "[download] Downloading playlist: Golden\n", + "[youtube:search] query \"Golden\": Downloading page 1\n", + "[youtube:search] playlist Golden: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] P3cffdsEXXw: Downloading webpage\n", + "[youtube] Downloading just video P3cffdsEXXw because of --no-playlist\n", + "[download] Destination: Harry Styles - Golden (Official Video)-P3cffdsEXXw.webm\n", + "[download] 100% of 3.27MiB in 00:45\n", + "[download] Finished downloading playlist: Golden\n", + "[download] Downloading playlist: Life Goes On\n", + "[youtube:search] query \"Life Goes On\": Downloading page 1\n", + "[youtube:search] playlist Life Goes On: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 2e54Oy_bqEk: Downloading webpage\n", + "[youtube] Downloading just video 2e54Oy_bqEk because of --no-playlist\n", + "[download] Destination: Oliver Tree - Life Goes On feat. Trippie Redd & Ski Mask (Directed by Cole Bennett)-2e54Oy_bqEk.m4a\n", + "[download] 100% of 3.06MiB in 01:03\n", + "[ffmpeg] Correcting container in \"Oliver Tree - Life Goes On feat. Trippie Redd & Ski Mask (Directed by Cole Bennett)-2e54Oy_bqEk.m4a\"\n", + "[download] Finished downloading playlist: Life Goes On\n", + "[download] Downloading playlist: Blue & Grey\n", + "[youtube:search] query \"Blue & Grey\": Downloading page 1\n", + "[youtube:search] playlist Blue & Grey: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] iP62Tg04vww: Downloading webpage\n", + "[youtube] Downloading just video iP62Tg04vww because of --no-playlist\n", + "[download] Destination: BTS Performs 'Blue & Grey' _ MTV Unplugged Presents - BTS-iP62Tg04vww.webm\n", + "[download] 100% of 4.23MiB in 00:57\n", + "[download] Finished downloading playlist: Blue & Grey\n", + "[download] Downloading playlist: Stay\n", + "[youtube:search] query \"Stay\": Downloading page 1\n", + "[youtube:search] playlist Stay: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] kTJczUoc26U: Downloading webpage\n", + "[youtube] Downloading just video kTJczUoc26U because of --no-playlist\n", + "[download] Destination: The Kid LAROI, Justin Bieber - STAY (Official Video)-kTJczUoc26U.webm\n", + "[download] 100% of 2.58MiB in 00:31\n", + "[download] Finished downloading playlist: Stay\n", + "[download] Downloading playlist: Somebody's Problem\n", + "[youtube:search] query \"Somebody's Problem\": Downloading page 1\n", + "[youtube:search] playlist Somebody's Problem: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 961Gk3mD9Zc: Downloading webpage\n", + "[youtube] Downloading just video 961Gk3mD9Zc because of --no-playlist\n", + "[download] Destination: Morgan Wallen - Somebody’s Problem (Official Lyric Video)-961Gk3mD9Zc.webm\n", + "[download] 100% of 2.71MiB in 00:34\n", + "[download] Finished downloading playlist: Somebody's Problem\n", + "[download] Downloading playlist: Still Goin Down\n", + "[youtube:search] query \"Still Goin Down\": Downloading page 1\n", + "[youtube:search] playlist Still Goin Down: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 3QhHQozncGo: Downloading webpage\n", + "[youtube] Downloading just video 3QhHQozncGo because of --no-playlist\n", + "[download] Destination: Morgan Wallen - Still Goin Down (Official Lyric Video)-3QhHQozncGo.webm\n", + "[download] 100% of 3.16MiB in 00:44\n", + "[download] Finished downloading playlist: Still Goin Down\n", + "[download] Downloading playlist: Wonder\n", + "[youtube:search] query \"Wonder\": Downloading page 1\n", + "[youtube:search] playlist Wonder: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] fHeQemJJQII: Downloading webpage\n", + "[youtube] Downloading just video fHeQemJJQII because of --no-playlist\n", + "[download] Destination: Shawn Mendes - Wonder-fHeQemJJQII.m4a\n", + "[download] 100% of 3.00MiB in 00:38\n", + "[ffmpeg] Correcting container in \"Shawn Mendes - Wonder-fHeQemJJQII.m4a\"\n", + "[download] Finished downloading playlist: Wonder\n", + "[download] Downloading playlist: Fly To My Room\n", + "[youtube:search] query \"Fly To My Room\": Downloading page 1\n", + "[youtube:search] playlist Fly To My Room: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] m4ScOgz9fes: Downloading webpage\n", + "[youtube] Downloading just video m4ScOgz9fes because of --no-playlist\n", + "[download] Destination: BTS – 'FLY TO MY ROOM' (내 방을 여행하는 법) Lyrics [Color Coded_Han_Rom_Eng]-m4ScOgz9fes.webm\n", + "[download] 100% of 3.80MiB in 00:00\n", + "[download] Finished downloading playlist: Fly To My Room\n", + "[download] Downloading playlist: Telepathy\n", + "[youtube:search] query \"Telepathy\": Downloading page 1\n", + "[youtube:search] playlist Telepathy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] OC29BN3R8dM: Downloading webpage\n", + "[youtube] Downloading just video OC29BN3R8dM because of --no-playlist\n", + "[download] Destination: BTS Performs “Telepathy” _ MTV Unplugged Presents - BTS-OC29BN3R8dM.webm\n", + "[download] 100% of 3.39MiB in 00:41\n", + "[download] Finished downloading playlist: Telepathy\n", + "[download] Downloading playlist: Dis-ease\n", + "[youtube:search] query \"Dis-ease\": Downloading page 1\n", + "[youtube:search] playlist Dis-ease: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rSi4UIWbtM0: Downloading webpage\n", + "[youtube] Downloading just video rSi4UIWbtM0 because of --no-playlist\n", + "[download] Destination: 병-rSi4UIWbtM0.webm\n", + "[download] 100% of 3.75MiB in 01:07\n", + "[download] Finished downloading playlist: Dis-ease\n", + "[download] Downloading playlist: Midnight Sky\n", + "[youtube:search] query \"Midnight Sky\": Downloading page 1\n", + "[youtube:search] playlist Midnight Sky: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] aS1no1myeTM: Downloading webpage\n", + "[youtube] Downloading just video aS1no1myeTM because of --no-playlist\n", + "[download] Destination: Miley Cyrus - Midnight Sky (Official Video)-aS1no1myeTM.webm\n", + "[download] 100% of 3.58MiB in 01:04\n", + "[download] Finished downloading playlist: Midnight Sky\n", + "[download] Downloading playlist: Livin' The Dream\n", + "[youtube:search] query \"Livin' The Dream\": Downloading page 1\n", + "[youtube:search] playlist Livin' The Dream: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pLl2AvQUe5g: Downloading webpage\n", + "[youtube] Downloading just video pLl2AvQUe5g because of --no-playlist\n", + "[download] Destination: Morgan Wallen - Livin’ The Dream (Official Lyric Video)-pLl2AvQUe5g.webm\n", + "[download] 100% of 4.02MiB in 01:01\n", + "[download] Finished downloading playlist: Livin' The Dream\n", + "[download] Downloading playlist: Cover Me Up\n", + "[youtube:search] query \"Cover Me Up\": Downloading page 1\n", + "[youtube:search] playlist Cover Me Up: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 1RnChOf8RTs: Downloading webpage\n", + "[youtube] Downloading just video 1RnChOf8RTs because of --no-playlist\n", + "[download] Destination: Morgan Wallen - Cover Me Up-1RnChOf8RTs.webm\n", + "[download] 100% of 5.06MiB in 01:19\n", + "[download] Finished downloading playlist: Cover Me Up\n", + "[download] Downloading playlist: Conversations\n", + "[youtube:search] query \"Conversations\": Downloading page 1\n", + "[youtube:search] playlist Conversations: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] OcQ71ubUXAE: Downloading webpage\n", + "[youtube] Downloading just video OcQ71ubUXAE because of --no-playlist\n", + "[download] Destination: Juice WRLD- Conversations (Official Music Video)-OcQ71ubUXAE.m4a\n", + "[download] 100% of 4.37MiB in 01:39\n", + "[ffmpeg] Correcting container in \"Juice WRLD- Conversations (Official Music Video)-OcQ71ubUXAE.m4a\"\n", + "[download] Finished downloading playlist: Conversations\n", + "[download] Downloading playlist: Blood On My Jeans\n", + "[youtube:search] query \"Blood On My Jeans\": Downloading page 1\n", + "[youtube:search] playlist Blood On My Jeans: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 3Klj_pjjqUM: Downloading webpage\n", + "[youtube] Downloading just video 3Klj_pjjqUM because of --no-playlist\n", + "[download] Destination: Juice WRLD - Blood On My Jeans (Official Audio)-3Klj_pjjqUM.webm\n", + "[download] 100% of 2.61MiB in 00:33\n", + "[download] Finished downloading playlist: Blood On My Jeans\n", + "[download] Downloading playlist: Righteous\n", + "[youtube:search] query \"Righteous\": Downloading page 1\n", + "[youtube:search] playlist Righteous: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ZengOKCUBHo: Downloading webpage\n", + "[youtube] Downloading just video ZengOKCUBHo because of --no-playlist\n", + "[download] Destination: Juice WRLD - Righteous (Official Video)-ZengOKCUBHo.webm\n", + "[download] 100% of 3.98MiB in 01:11\n", + "[download] Finished downloading playlist: Righteous\n", + "[download] Downloading playlist: Got It On Me\n", + "[youtube:search] query \"Got It On Me\": Downloading page 1\n", + "[youtube:search] playlist Got It On Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] LPnnX7hOcQM: Downloading webpage\n", + "[youtube] Downloading just video LPnnX7hOcQM because of --no-playlist\n", + "[download] Destination: POP SMOKE - GOT IT ON ME (OFFICIAL VIDEO)-LPnnX7hOcQM.m4a\n", + "[download] 100% of 2.57MiB in 00:55\n", + "[ffmpeg] Correcting container in \"POP SMOKE - GOT IT ON ME (OFFICIAL VIDEO)-LPnnX7hOcQM.m4a\"\n", + "[download] Finished downloading playlist: Got It On Me\n", + "[download] Downloading playlist: Titanic\n", + "[youtube:search] query \"Titanic\": Downloading page 1\n", + "[youtube:search] playlist Titanic: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] yxdRTaAp5Fw: Downloading webpage\n", + "[youtube] Downloading just video yxdRTaAp5Fw because of --no-playlist\n", + "[download] Destination: The Truth About the Titanic Has Been Revealed-yxdRTaAp5Fw.webm\n", + "[download] 100% of 11.67MiB in 02:41\n", + "[download] Finished downloading playlist: Titanic\n", + "[download] Downloading playlist: Stay High\n", + "[youtube:search] query \"Stay High\": Downloading page 1\n", + "[youtube:search] playlist Stay High: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Z9yaG27quz0: Downloading webpage\n", + "[youtube] Downloading just video Z9yaG27quz0 because of --no-playlist\n", + "[download] Destination: Juice WRLD - Stay High (Official Audio)-Z9yaG27quz0.webm\n", + "[download] 100% of 2.94MiB in 01:06\n", + "[download] Finished downloading playlist: Stay High\n", + "[download] Downloading playlist: Bad Energy\n", + "[youtube:search] query \"Bad Energy\": Downloading page 1\n", + "[youtube:search] playlist Bad Energy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] EfP3Ya5-JoU: Downloading webpage\n", + "[youtube] Downloading just video EfP3Ya5-JoU because of --no-playlist\n", + "[download] Destination: Juice WRLD - Bad Energy (Official Audio)-EfP3Ya5-JoU.webm\n", + "[download] 100% of 3.16MiB in 00:58\n", + "[download] Finished downloading playlist: Bad Energy\n", + "[download] Downloading playlist: Something Special\n", + "[youtube:search] query \"Something Special\": Downloading page 1\n", + "[youtube:search] playlist Something Special: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] YZLQ80L2f9c: Downloading webpage\n", + "[youtube] Downloading just video YZLQ80L2f9c because of --no-playlist\n", + "[download] Destination: Pop Smoke - Something Special (Audio)-YZLQ80L2f9c.webm\n", + "[download] 100% of 2.53MiB in 00:54\n", + "[download] Finished downloading playlist: Something Special\n", + "[download] Downloading playlist: Up Up And Away\n", + "[youtube:search] query \"Up Up And Away\": Downloading page 1\n", + "[youtube:search] playlist Up Up And Away: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] iNKMpBaCkhk: Downloading webpage\n", + "[youtube] Downloading just video iNKMpBaCkhk because of --no-playlist\n", + "[download] Destination: Juice WRLD - Up Up And Away (Official Audio)-iNKMpBaCkhk.webm\n", + "[download] 100% of 2.57MiB in 00:46\n", + "[download] Finished downloading playlist: Up Up And Away\n", + "[download] Downloading playlist: Fighting Demons\n", + "[youtube:search] query \"Fighting Demons\": Downloading page 1\n", + "[youtube:search] playlist Fighting Demons: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rJZynxvJnlI: Downloading webpage\n", + "[youtube] Downloading just video rJZynxvJnlI because of --no-playlist\n", + "[download] Destination: Juice WRLD - Fighting Demons (Official Audio)-rJZynxvJnlI.webm\n", + "[download] 100% of 3.57MiB in 00:51\n", + "[download] Finished downloading playlist: Fighting Demons\n", + "[download] Downloading playlist: Man Of The Year\n", + "[youtube:search] query \"Man Of The Year\": Downloading page 1\n", + "[youtube:search] playlist Man Of The Year: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] rEMsjeq43_U: Downloading webpage\n", + "[youtube] Downloading just video rEMsjeq43_U because of --no-playlist\n", + "[download] Destination: ScHoolboy Q - Man Of The Year-rEMsjeq43_U.webm\n", + "[download] 100% of 3.58MiB in 01:04\n", + "[download] Finished downloading playlist: Man Of The Year\n", + "[download] Downloading playlist: Can't Die\n", + "[youtube:search] query \"Can't Die\": Downloading page 1\n", + "[youtube:search] playlist Can't Die: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] djkMIxtjIm4: Downloading webpage\n", + "[youtube] Downloading just video djkMIxtjIm4 because of --no-playlist\n", + "[download] Destination: Juice WRLD - Can't Die (Official Audio)-djkMIxtjIm4.webm\n", + "[download] 100% of 3.18MiB in 01:01\n", + "[download] Finished downloading playlist: Can't Die\n", + "[download] Downloading playlist: Screw Juice\n", + "[youtube:search] query \"Screw Juice\": Downloading page 1\n", + "[youtube:search] playlist Screw Juice: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] avzAOoo0VPg: Downloading webpage\n", + "[youtube] Downloading just video avzAOoo0VPg because of --no-playlist\n", + "[download] Destination: Juice WRLD - Screw Juice (Official Audio)-avzAOoo0VPg.webm\n", + "[download] 100% of 3.12MiB in 00:42\n", + "[download] Finished downloading playlist: Screw Juice\n", + "[download] Downloading playlist: In Your Eyes\n", + "[youtube:search] query \"In Your Eyes\": Downloading page 1\n", + "[youtube:search] playlist In Your Eyes: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] E3QiD99jPAg: Downloading webpage\n", + "[youtube] Downloading just video E3QiD99jPAg because of --no-playlist\n", + "[download] Destination: The Weeknd - In Your Eyes (Official Audio)-E3QiD99jPAg.webm\n", + "[download] 100% of 3.88MiB in 01:11\n", + "[download] Finished downloading playlist: In Your Eyes\n", + "[download] Downloading playlist: Alone Again\n", + "[youtube:search] query \"Alone Again\": Downloading page 1\n", + "[youtube:search] playlist Alone Again: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] D_P-v1BVQn8: Downloading webpage\n", + "[youtube] Downloading just video D_P-v1BVQn8 because of --no-playlist\n", + "[download] Destination: Gilbert O'Sullivan - Alone Again (original version)-D_P-v1BVQn8.webm\n", + "[download] 100% of 3.38MiB in 00:54\n", + "[download] Finished downloading playlist: Alone Again\n", + "[download] Downloading playlist: After Hours\n", + "[youtube:search] query \"After Hours\": Downloading page 1\n", + "[youtube:search] playlist After Hours: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ygTZZpVkmKg: Downloading webpage\n", + "[youtube] Downloading just video ygTZZpVkmKg because of --no-playlist\n", + "[download] Destination: The Weeknd - After Hours (Audio)-ygTZZpVkmKg.webm\n", + "[download] 100% of 5.91MiB in 02:05\n", + "[download] Finished downloading playlist: After Hours\n", + "[download] Downloading playlist: Scared To Live\n", + "[youtube:search] query \"Scared To Live\": Downloading page 1\n", + "[youtube:search] playlist Scared To Live: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] MzsU_sn2aIE: Downloading webpage\n", + "[youtube] Downloading just video MzsU_sn2aIE because of --no-playlist\n", + "[download] Destination: The Weeknd - Scared To Live (Audio)-MzsU_sn2aIE.webm\n", + "[download] 100% of 3.12MiB in 01:14\n", + "[download] Finished downloading playlist: Scared To Live\n", + "[download] Downloading playlist: Hardest To Love\n", + "[youtube:search] query \"Hardest To Love\": Downloading page 1\n", + "[youtube:search] playlist Hardest To Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pM3nIOYF2W8: Downloading webpage\n", + "[youtube] Downloading just video pM3nIOYF2W8 because of --no-playlist\n", + "[download] Destination: The Weeknd - Hardest To Love (Audio)-pM3nIOYF2W8.webm\n", + "[download] 100% of 3.51MiB in 00:48\n", + "[download] Finished downloading playlist: Hardest To Love\n", + "[download] Downloading playlist: Stupid Love\n", + "[youtube:search] query \"Stupid Love\": Downloading page 1\n", + "[youtube:search] playlist Stupid Love: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 5L6xyaeiV58: Downloading webpage\n", + "[youtube] Downloading just video 5L6xyaeiV58 because of --no-playlist\n", + "[download] Destination: Lady Gaga - Stupid Love (Official Music Video)-5L6xyaeiV58.webm\n", + "[download] 100% of 3.36MiB in 00:49\n", + "[download] Finished downloading playlist: Stupid Love\n", + "[download] Downloading playlist: Too Late\n", + "[youtube:search] query \"Too Late\": Downloading page 1\n", + "[youtube:search] playlist Too Late: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nl71vFvVOvw: Downloading webpage\n", + "[youtube] Downloading just video nl71vFvVOvw because of --no-playlist\n", + "[download] Destination: The Weeknd - Too Late (Audio)-nl71vFvVOvw.webm\n", + "[download] 100% of 3.86MiB in 01:20\n", + "[download] Finished downloading playlist: Too Late\n", + "[download] Downloading playlist: Snowchild\n", + "[youtube:search] query \"Snowchild\": Downloading page 1\n", + "[youtube:search] playlist Snowchild: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] G0JKdFjWkLA: Downloading webpage\n", + "[youtube] Downloading just video G0JKdFjWkLA because of --no-playlist\n", + "[download] Destination: The Weeknd - Snowchild (Animated Video)-G0JKdFjWkLA.webm\n", + "[download] 100% of 4.17MiB in 01:34\n", + "[download] Finished downloading playlist: Snowchild\n", + "[download] Downloading playlist: Escape From LA\n", + "[youtube:search] query \"Escape From LA\": Downloading page 1\n", + "[youtube:search] playlist Escape From LA: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] vsARlcGW0jE: Downloading webpage\n", + "[youtube] Downloading just video vsARlcGW0jE because of --no-playlist\n", + "[download] Destination: The Weeknd - Escape From LA (Audio)-vsARlcGW0jE.webm\n", + "[download] 100% of 5.64MiB in 01:36\n", + "[download] Finished downloading playlist: Escape From LA\n", + "[download] Downloading playlist: Faith\n", + "[youtube:search] query \"Faith\": Downloading page 1\n", + "[youtube:search] playlist Faith: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 6Cs3Pvmmv0E: Downloading webpage\n", + "[youtube] Downloading just video 6Cs3Pvmmv0E because of --no-playlist\n", + "[download] Destination: George Michael - Faith (Official Video)-6Cs3Pvmmv0E.webm\n", + "[download] 100% of 3.48MiB in 00:51\n", + "[download] Finished downloading playlist: Faith\n", + "[download] Downloading playlist: Repeat After Me (Interlude)\n", + "[youtube:search] query \"Repeat After Me (Interlude)\": Downloading page 1\n", + "[youtube:search] playlist Repeat After Me (Interlude): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] CE-Iy24NOTY: Downloading webpage\n", + "[youtube] Downloading just video CE-Iy24NOTY because of --no-playlist\n", + "[download] Destination: The Weeknd - Repeat After Me (Interlude) (Audio)-CE-Iy24NOTY.webm\n", + "[download] 100% of 3.19MiB in 00:45\n", + "[download] Finished downloading playlist: Repeat After Me (Interlude)\n", + "[download] Downloading playlist: What A Man Gotta Do\n", + "[youtube:search] query \"What A Man Gotta Do\": Downloading page 1\n", + "[youtube:search] playlist What A Man Gotta Do: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] XejVB_fba04: Downloading webpage\n", + "[youtube] Downloading just video XejVB_fba04 because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: What A Man Gotta Do\n", + "[download] Downloading playlist: Until I Bleed Out\n", + "[youtube:search] query \"Until I Bleed Out\": Downloading page 1\n", + "[youtube:search] playlist Until I Bleed Out: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] i58MNnk6BhY: Downloading webpage\n", + "[youtube] Downloading just video i58MNnk6BhY because of --no-playlist\n", + "[download] Destination: The Weeknd - Until I Bleed Out (Official Video)-i58MNnk6BhY.webm\n", + "[download] 100% of 2.96MiB in 01:10\n", + "[download] Finished downloading playlist: Until I Bleed Out\n", + "[download] Downloading playlist: To Die For\n", + "[youtube:search] query \"To Die For\": Downloading page 1\n", + "[youtube:search] playlist To Die For: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 91a9XqXar6I: Downloading webpage\n", + "[youtube] Downloading just video 91a9XqXar6I because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: To Die For\n", + "[download] Downloading playlist: Like It's Christmas\n", + "[youtube:search] query \"Like It's Christmas\": Downloading page 1\n", + "[youtube:search] playlist Like It's Christmas: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] tIyE3IrC7r0: Downloading webpage\n", + "[youtube] Downloading just video tIyE3IrC7r0 because of --no-playlist\n", + "[download] Destination: Jonas Brothers - Like It's Christmas (Official Lyric Video)-tIyE3IrC7r0.webm\n", + "[download] 100% of 3.26MiB in 01:15\n", + "[download] Finished downloading playlist: Like It's Christmas\n", + "[download] Downloading playlist: Lover\n", + "[youtube:search] query \"Lover\": Downloading page 1\n", + "[youtube:search] playlist Lover: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] -BjZmE2gtdo: Downloading webpage\n", + "[youtube] Downloading just video -BjZmE2gtdo because of --no-playlist\n", + "[download] Destination: Taylor Swift - Lover--BjZmE2gtdo.webm\n", + "[download] 100% of 3.72MiB in 01:07\n", + "[download] Finished downloading playlist: Lover\n", + "[download] Downloading playlist: Graveyard\n", + "[youtube:search] query \"Graveyard\": Downloading page 1\n", + "[youtube:search] playlist Graveyard: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] NwmidlDwuKE: Downloading webpage\n", + "[youtube] Downloading just video NwmidlDwuKE because of --no-playlist\n", + "[download] Destination: Halsey - Graveyard (Lyrics)-NwmidlDwuKE.webm\n", + "[download] 100% of 3.37MiB in 00:56\n", + "[download] Finished downloading playlist: Graveyard\n", + "[download] Downloading playlist: VIBEZ\n", + "[youtube:search] query \"VIBEZ\": Downloading page 1\n", + "[youtube:search] playlist VIBEZ: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] U2JyeciEwSI: Downloading webpage\n", + "[youtube] Downloading just video U2JyeciEwSI because of --no-playlist\n", + "[download] Destination: DaBaby - VIBEZ (Official Music Video)-U2JyeciEwSI.m4a\n", + "[download] 100% of 2.76MiB in 00:43\n", + "[ffmpeg] Correcting container in \"DaBaby - VIBEZ (Official Music Video)-U2JyeciEwSI.m4a\"\n", + "[download] Finished downloading playlist: VIBEZ\n", + "[download] Downloading playlist: Let Me Know (I Wonder Why Freestyle)\n", + "[youtube:search] query \"Let Me Know (I Wonder Why Freestyle)\": Downloading page 1\n", + "[youtube:search] playlist Let Me Know (I Wonder Why Freestyle): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] swDam6Hrsm8: Downloading webpage\n", + "[youtube] Downloading just video swDam6Hrsm8 because of --no-playlist\n", + "[download] Destination: Juice WRLD 'Let Me Know (I Wonder Why Freestyle)' (Official Audio)-swDam6Hrsm8.webm\n", + "[download] 100% of 3.42MiB in 00:43\n", + "[download] Finished downloading playlist: Let Me Know (I Wonder Why Freestyle)\n", + "[download] Downloading playlist: Candy\n", + "[youtube:search] query \"Candy\": Downloading page 1\n", + "[youtube:search] playlist Candy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ZRHHOttkM1A: Downloading webpage\n", + "[youtube] Downloading just video ZRHHOttkM1A because of --no-playlist\n", + "[download] Destination: Doja Cat - Candy (Audio)-ZRHHOttkM1A.webm\n", + "[download] 100% of 3.15MiB in 00:51\n", + "[download] Finished downloading playlist: Candy\n", + "[download] Downloading playlist: All The Good Girls Go To Hell\n", + "[youtube:search] query \"All The Good Girls Go To Hell\": Downloading page 1\n", + "[youtube:search] playlist All The Good Girls Go To Hell: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] -PZsSWwc9xA: Downloading webpage\n", + "[youtube] Downloading just video -PZsSWwc9xA because of --no-playlist\n", + "[download] Destination: Billie Eilish - all the good girls go to hell--PZsSWwc9xA.webm\n", + "[download] 100% of 3.47MiB in 00:50\n", + "[download] Finished downloading playlist: All The Good Girls Go To Hell\n", + "[download] Downloading playlist: Follow God\n", + "[youtube:search] query \"Follow God\": Downloading page 1\n", + "[youtube:search] playlist Follow God: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ivCY3Ec4iaU: Downloading webpage\n", + "[youtube] Downloading just video ivCY3Ec4iaU because of --no-playlist\n", + "[download] Destination: Kanye West - Follow God-ivCY3Ec4iaU.m4a\n", + "[download] 100% of 2.28MiB in 00:34\n", + "[ffmpeg] Correcting container in \"Kanye West - Follow God-ivCY3Ec4iaU.m4a\"\n", + "[download] Finished downloading playlist: Follow God\n", + "[download] Downloading playlist: Never Really Over\n", + "[youtube:search] query \"Never Really Over\": Downloading page 1\n", + "[youtube:search] playlist Never Really Over: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] aEb5gNsmGJ8: Downloading webpage\n", + "[youtube] Downloading just video aEb5gNsmGJ8 because of --no-playlist\n", + "[download] Destination: Katy Perry - Never Really Over (Official Video)-aEb5gNsmGJ8.webm\n", + "[download] 100% of 3.88MiB in 01:06\n", + "[download] Finished downloading playlist: Never Really Over\n", + "[download] Downloading playlist: Press\n", + "[youtube:search] query \"Press\": Downloading page 1\n", + "[youtube:search] playlist Press: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] cJc7xWJbwJw: Downloading webpage\n", + "[youtube] Downloading just video cJc7xWJbwJw because of --no-playlist\n", + "[download] Destination: Cardi B - Press [Official Music Video]-cJc7xWJbwJw.webm\n", + "[download] 100% of 3.50MiB in 00:55\n", + "[download] Finished downloading playlist: Press\n", + "[download] Downloading playlist: The Archer\n", + "[youtube:search] query \"The Archer\": Downloading page 1\n", + "[youtube:search] playlist The Archer: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 8KpKc3C9V3w: Downloading webpage\n", + "[youtube] Downloading just video 8KpKc3C9V3w because of --no-playlist\n", + "[download] Destination: Taylor Swift - The Archer (Lyric Video)-8KpKc3C9V3w.m4a\n", + "[download] 100% of 3.38MiB in 01:07\n", + "[ffmpeg] Correcting container in \"Taylor Swift - The Archer (Lyric Video)-8KpKc3C9V3w.m4a\"\n", + "[download] Finished downloading playlist: The Archer\n", + "[download] Downloading playlist: Nightmare\n", + "[youtube:search] query \"Nightmare\": Downloading page 1\n", + "[youtube:search] playlist Nightmare: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 94bGzWyHbu0: Downloading webpage\n", + "[youtube] Downloading just video 94bGzWyHbu0 because of --no-playlist\n", + "[download] Destination: Avenged Sevenfold - Nightmare [Official Music Video]-94bGzWyHbu0.m4a\n", + "[download] 100% of 5.79MiB in 01:39\n", + "[ffmpeg] Correcting container in \"Avenged Sevenfold - Nightmare [Official Music Video]-94bGzWyHbu0.m4a\"\n", + "[download] Finished downloading playlist: Nightmare\n", + "[download] Downloading playlist: Cool\n", + "[youtube:search] query \"Cool\": Downloading page 1\n", + "[youtube:search] playlist Cool: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] TGwZ7MNtBFU: Downloading webpage\n", + "[youtube] Downloading just video TGwZ7MNtBFU because of --no-playlist\n", + "[download] Destination: Gwen Stefani - Cool (Official Music Video)-TGwZ7MNtBFU.webm\n", + "[download] 100% of 3.83MiB in 00:47\n", + "[download] Finished downloading playlist: Cool\n", + "[download] Downloading playlist: Before I Let Go\n", + "[youtube:search] query \"Before I Let Go\": Downloading page 1\n", + "[youtube:search] playlist Before I Let Go: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] W5WTjqZuL_c: Downloading webpage\n", + "[youtube] Downloading just video W5WTjqZuL_c because of --no-playlist\n", + "[download] Destination: Frankie Beverly And Maze - Before I Let Go-W5WTjqZuL_c.webm\n", + "[download] 100% of 4.85MiB in 01:45\n", + "[download] Finished downloading playlist: Before I Let Go\n", + "[download] Downloading playlist: Southbound\n", + "[youtube:search] query \"Southbound\": Downloading page 1\n", + "[youtube:search] playlist Southbound: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pc4zBnvLt3g: Downloading webpage\n", + "[youtube] Downloading just video pc4zBnvLt3g because of --no-playlist\n", + "[download] Destination: Carrie Underwood - Southbound (Official Music Video)-pc4zBnvLt3g.webm\n", + "[download] 100% of 3.24MiB in 00:47\n", + "[download] Finished downloading playlist: Southbound\n", + "[download] Downloading playlist: MEGATRON\n", + "[youtube:search] query \"MEGATRON\": Downloading page 1\n", + "[youtube:search] playlist MEGATRON: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] C3a1sz2Bp_E: Downloading webpage\n", + "[youtube] Downloading just video C3a1sz2Bp_E because of --no-playlist\n", + "[download] Destination: Nicki Minaj - MEGATRON-C3a1sz2Bp_E.webm\n", + "[download] 100% of 3.51MiB in 00:51\n", + "[download] Finished downloading playlist: MEGATRON\n", + "[download] Downloading playlist: Bad Liar\n", + "[youtube:search] query \"Bad Liar\": Downloading page 1\n", + "[youtube:search] playlist Bad Liar: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] I-QfPUz1es8: Downloading webpage\n", + "[youtube] Downloading just video I-QfPUz1es8 because of --no-playlist\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "ERROR: unable to download video data: HTTP Error 403: Forbidden\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "[download] Finished downloading playlist: Bad Liar\n", + "[download] Downloading playlist: Pure Cocaine\n", + "[youtube:search] query \"Pure Cocaine\": Downloading page 1\n", + "[youtube:search] playlist Pure Cocaine: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] sFIXA0zALWU: Downloading webpage\n", + "[youtube] Downloading just video sFIXA0zALWU because of --no-playlist\n", + "[download] Destination: Lil Baby - Pure Cocaine (Audio)-sFIXA0zALWU.webm\n", + "[download] 100% of 2.78MiB in 00:36\n", + "[download] Finished downloading playlist: Pure Cocaine\n", + "[download] Downloading playlist: Wish You Were Gay\n", + "[youtube:search] query \"Wish You Were Gay\": Downloading page 1\n", + "[youtube:search] playlist Wish You Were Gay: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] yaJx0Gj_LCY: Downloading webpage\n", + "[youtube] Downloading just video yaJx0Gj_LCY because of --no-playlist\n", + "[download] Destination: Billie Eilish - wish you were gay (Audio)-yaJx0Gj_LCY.webm\n", + "[download] 100% of 3.54MiB in 01:06\n", + "[download] Finished downloading playlist: Wish You Were Gay\n", + "[download] Downloading playlist: Hear Me Calling\n", + "[youtube:search] query \"Hear Me Calling\": Downloading page 1\n", + "[youtube:search] playlist Hear Me Calling: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] euSAgaub3m8: Downloading webpage\n", + "[youtube] Downloading just video euSAgaub3m8 because of --no-playlist\n", + "[download] Destination: Juice WRLD - Hear Me Calling-euSAgaub3m8.webm\n", + "[download] 100% of 3.52MiB in 00:51\n", + "[download] Finished downloading playlist: Hear Me Calling\n", + "[download] Downloading playlist: Undecided\n", + "[youtube:search] query \"Undecided\": Downloading page 1\n", + "[youtube:search] playlist Undecided: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] y6fThXQPT6I: Downloading webpage\n", + "[youtube] Downloading just video y6fThXQPT6I because of --no-playlist\n", + "[download] Destination: Chris Brown - Undecided (Official Video)-y6fThXQPT6I.webm\n", + "[download] 100% of 4.79MiB in 00:57\n", + "[download] Finished downloading playlist: Undecided\n", + "[download] Downloading playlist: Empty\n", + "[youtube:search] query \"Empty\": Downloading page 1\n", + "[youtube:search] playlist Empty: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] 9LSyWM2CL-U: Downloading webpage\n", + "[youtube] Downloading just video 9LSyWM2CL-U because of --no-playlist\n", + "[download] Destination: Juice WRLD - Empty (Official Audio)-9LSyWM2CL-U.webm\n", + "[download] 100% of 4.44MiB in 01:06\n", + "[download] Finished downloading playlist: Empty\n", + "[download] Downloading playlist: Love Wins\n", + "[youtube:search] query \"Love Wins\": Downloading page 1\n", + "[youtube:search] playlist Love Wins: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] -Py8OWAMkns: Downloading webpage\n", + "[youtube] Downloading just video -Py8OWAMkns because of --no-playlist\n", + "[download] Destination: Carrie Underwood - Love Wins (Official Video)--Py8OWAMkns.webm\n", + "[download] 100% of 3.67MiB in 00:49\n", + "[download] Finished downloading playlist: Love Wins\n", + "[download] Downloading playlist: Cozy Little Christmas\n", + "[youtube:search] query \"Cozy Little Christmas\": Downloading page 1\n", + "[youtube:search] playlist Cozy Little Christmas: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] sg8Gk1iXEIs: Downloading webpage\n", + "[youtube] Downloading just video sg8Gk1iXEIs because of --no-playlist\n", + "[download] Destination: Katy Perry - Cozy Little Christmas-sg8Gk1iXEIs.webm\n", + "[download] 100% of 2.90MiB in 00:39\n", + "[download] Finished downloading playlist: Cozy Little Christmas\n", + "[download] Downloading playlist: She Got The Best Of Me\n", + "[youtube:search] query \"She Got The Best Of Me\": Downloading page 1\n", + "[youtube:search] playlist She Got The Best Of Me: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] a2a9fgPI_PI: Downloading webpage\n", + "[youtube] Downloading just video a2a9fgPI_PI because of --no-playlist\n", + "[download] Destination: Luke Combs - She Got the Best of Me-a2a9fgPI_PI.m4a\n", + "[download] 100% of 3.66MiB in 00:44\n", + "[ffmpeg] Correcting container in \"Luke Combs - She Got the Best of Me-a2a9fgPI_PI.m4a\"\n", + "[download] Finished downloading playlist: She Got The Best Of Me\n", + "[download] Downloading playlist: Uproar\n", + "[youtube:search] query \"Uproar\": Downloading page 1\n", + "[youtube:search] playlist Uproar: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] GQ2juiyXk-s: Downloading webpage\n", + "[youtube] Downloading just video GQ2juiyXk-s because of --no-playlist\n", + "[download] Destination: Lil Wayne - Uproar ft. Swizz Beatz (Official Music Video) ft. Swizz Beatz-GQ2juiyXk-s.webm\n", + "[download] 100% of 3.11MiB in 01:06\n", + "[download] Finished downloading playlist: Uproar\n", + "[download] Downloading playlist: BAD!\n", + "[youtube:search] query \"BAD!\": Downloading page 1\n", + "[youtube:search] playlist BAD!: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Sd4SJVsTulc: Downloading webpage\n", + "[youtube] Downloading just video Sd4SJVsTulc because of --no-playlist\n", + "[download] Destination: Michael Jackson - Bad (Official Video)-Sd4SJVsTulc.m4a\n", + "[download] 100% of 16.76MiB in 03:24\n", + "[ffmpeg] Correcting container in \"Michael Jackson - Bad (Official Video)-Sd4SJVsTulc.m4a\"\n", + "[download] Finished downloading playlist: BAD!\n", + "[download] Downloading playlist: Imagine\n", + "[youtube:search] query \"Imagine\": Downloading page 1\n", + "[youtube:search] playlist Imagine: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] YkgkThdzX-8: Downloading webpage\n", + "[youtube] Downloading just video YkgkThdzX-8 because of --no-playlist\n", + "[download] Destination: IMAGINE. (Ultimate Mix, 2020) - John Lennon & The Plastic Ono Band (with the Flux Fiddlers) HD-YkgkThdzX-8.webm\n", + "[download] 100% of 3.65MiB in 00:49\n", + "[download] Finished downloading playlist: Imagine\n", + "[download] Downloading playlist: Consequences\n", + "[youtube:search] query \"Consequences\": Downloading page 1\n", + "[youtube:search] playlist Consequences: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] k73EBmeJ950: Downloading webpage\n", + "[youtube] Downloading just video k73EBmeJ950 because of --no-playlist\n", + "[download] Destination: Camila Cabello - Consequences (orchestra)-k73EBmeJ950.webm\n", + "[download] 100% of 3.08MiB in 00:52\n", + "[download] Finished downloading playlist: Consequences\n", + "[download] Downloading playlist: Armed And Dangerous\n", + "[youtube:search] query \"Armed And Dangerous\": Downloading page 1\n", + "[youtube:search] playlist Armed And Dangerous: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] cr82wSBZeeQ: Downloading webpage\n", + "[youtube] Downloading just video cr82wSBZeeQ because of --no-playlist\n", + "[download] Destination: Juice WRLD - Armed & Dangerous (Directed by Cole Bennett)-cr82wSBZeeQ.webm\n", + "[download] 100% of 3.08MiB in 00:42\n", + "[download] Finished downloading playlist: Armed And Dangerous\n", + "[download] Downloading playlist: Ocean Eyes\n", + "[youtube:search] query \"Ocean Eyes\": Downloading page 1\n", + "[youtube:search] playlist Ocean Eyes: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] viimfQi_pUw: Downloading webpage\n", + "[youtube] Downloading just video viimfQi_pUw because of --no-playlist\n", + "[download] Destination: Billie Eilish - Ocean Eyes (Official Music Video)-viimfQi_pUw.webm\n", + "[download] 100% of 3.30MiB in 01:07\n", + "[download] Finished downloading playlist: Ocean Eyes\n", + "[download] Downloading playlist: Mob Ties\n", + "[youtube:search] query \"Mob Ties\": Downloading page 1\n", + "[youtube:search] playlist Mob Ties: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] pzAIhjxEemw: Downloading webpage\n", + "[youtube] Downloading just video pzAIhjxEemw because of --no-playlist\n", + "[download] Destination: Mob Ties-pzAIhjxEemw.webm\n", + "[download] 100% of 3.64MiB in 00:50\n", + "[download] Finished downloading playlist: Mob Ties\n", + "[download] Downloading playlist: All Girls Are The Same\n", + "[youtube:search] query \"All Girls Are The Same\": Downloading page 1\n", + "[youtube:search] playlist All Girls Are The Same: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] h3EJICKwITw: Downloading webpage\n", + "[youtube] Downloading just video h3EJICKwITw because of --no-playlist\n", + "[download] Destination: Juice WRLD - All Girls Are The Same (Directed by Cole Bennett)-h3EJICKwITw.webm\n", + "[download] 100% of 3.07MiB in 01:09\n", + "[download] Finished downloading playlist: All Girls Are The Same\n", + "[download] Downloading playlist: Cry Pretty\n", + "[youtube:search] query \"Cry Pretty\": Downloading page 1\n", + "[youtube:search] playlist Cry Pretty: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] KUUjtUP2CrE: Downloading webpage\n", + "[youtube] Downloading just video KUUjtUP2CrE because of --no-playlist\n", + "[download] Destination: Carrie Underwood - Cry Pretty (Official Video)-KUUjtUP2CrE.m4a\n", + "[download] 100% of 4.15MiB in 01:11\n", + "[ffmpeg] Correcting container in \"Carrie Underwood - Cry Pretty (Official Video)-KUUjtUP2CrE.m4a\"\n", + "[download] Finished downloading playlist: Cry Pretty\n", + "[download] Downloading playlist: Jumpsuit\n", + "[youtube:search] query \"Jumpsuit\": Downloading page 1\n", + "[youtube:search] playlist Jumpsuit: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] UOUBW8bkjQ4: Downloading webpage\n", + "[youtube] Downloading just video UOUBW8bkjQ4 because of --no-playlist\n", + "[download] Destination: twenty one pilots - Jumpsuit (Official Video)-UOUBW8bkjQ4.m4a\n", + "[download] 100% of 4.61MiB in 01:38\n", + "[ffmpeg] Correcting container in \"twenty one pilots - Jumpsuit (Official Video)-UOUBW8bkjQ4.m4a\"\n", + "[download] Finished downloading playlist: Jumpsuit\n", + "[download] Downloading playlist: All Mine\n", + "[youtube:search] query \"All Mine\": Downloading page 1\n", + "[youtube:search] playlist All Mine: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] TrQ7w1bdNvY: Downloading webpage\n", + "[youtube] Downloading just video TrQ7w1bdNvY because of --no-playlist\n", + "[download] Destination: Kanye West - All Mine (Lyric Video)-TrQ7w1bdNvY.m4a\n", + "[download] 100% of 2.27MiB in 00:42\n", + "[ffmpeg] Correcting container in \"Kanye West - All Mine (Lyric Video)-TrQ7w1bdNvY.m4a\"\n", + "[download] Finished downloading playlist: All Mine\n", + "[download] Downloading playlist: You Should See Me In A Crown\n", + "[youtube:search] query \"You Should See Me In A Crown\": Downloading page 1\n", + "[youtube:search] playlist You Should See Me In A Crown: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Ah0Ys50CqO8: Downloading webpage\n", + "[youtube] Downloading just video Ah0Ys50CqO8 because of --no-playlist\n", + "[download] Destination: Billie Eilish - you should see me in a crown (Vertical Video)-Ah0Ys50CqO8.webm\n", + "[download] 100% of 2.90MiB in 00:52\n", + "[download] Finished downloading playlist: You Should See Me In A Crown\n", + "[download] Downloading playlist: Emotionless\n", + "[youtube:search] query \"Emotionless\": Downloading page 1\n", + "[youtube:search] playlist Emotionless: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] w4MSbajRs_Y: Downloading webpage\n", + "[youtube] Downloading just video w4MSbajRs_Y because of --no-playlist\n", + "[download] Destination: Emotionless-w4MSbajRs_Y.m4a\n", + "[download] 100% of 4.67MiB in 01:17\n", + "[ffmpeg] Correcting container in \"Emotionless-w4MSbajRs_Y.m4a\"\n", + "[download] Finished downloading playlist: Emotionless\n", + "[download] Downloading playlist: Can't Take A Joke\n", + "[youtube:search] query \"Can't Take A Joke\": Downloading page 1\n", + "[youtube:search] playlist Can't Take A Joke: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] l8G2BDzOeU0: Downloading webpage\n", + "[youtube] Downloading just video l8G2BDzOeU0 because of --no-playlist\n", + "[download] Destination: Can’t Take A Joke-l8G2BDzOeU0.webm\n", + "[download] 100% of 3.03MiB in 00:57\n", + "[download] Finished downloading playlist: Can't Take A Joke\n", + "[download] Downloading playlist: No Excuses\n", + "[youtube:search] query \"No Excuses\": Downloading page 1\n", + "[youtube:search] playlist No Excuses: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] kton-qrKNLc: Downloading webpage\n", + "[youtube] Downloading just video kton-qrKNLc because of --no-playlist\n", + "[download] Destination: Meghan Trainor - No Excuses-kton-qrKNLc.webm\n", + "[download] 100% of 2.43MiB in 00:40\n", + "[download] Finished downloading playlist: No Excuses\n", + "[download] Downloading playlist: Beautiful Trauma\n", + "[youtube:search] query \"Beautiful Trauma\": Downloading page 1\n", + "[youtube:search] playlist Beautiful Trauma: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] EBt_88nxG4c: Downloading webpage\n", + "[youtube] Downloading just video EBt_88nxG4c because of --no-playlist\n", + "[download] Destination: P!NK - Beautiful Trauma (Official Video)-EBt_88nxG4c.webm\n", + "[download] 100% of 4.82MiB in 01:27\n", + "[download] Finished downloading playlist: Beautiful Trauma\n", + "[download] Downloading playlist: Tempo\n", + "[youtube:search] query \"Tempo\": Downloading page 1\n", + "[youtube:search] playlist Tempo: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Srq1FqFPwj0: Downloading webpage\n", + "[youtube] Downloading just video Srq1FqFPwj0 because of --no-playlist\n", + "[download] Destination: Lizzo - Tempo (feat. Missy Elliott) [Official Video]-Srq1FqFPwj0.webm\n", + "[download] 100% of 2.88MiB in 00:53\n", + "[download] Finished downloading playlist: Tempo\n", + "[download] Downloading playlist: The Remedy For A Broken Heart (Why Am I So In Love)\n", + "[youtube:search] query \"The Remedy For A Broken Heart (Why Am I So In Love)\": Downloading page 1\n", + "[youtube:search] playlist The Remedy For A Broken Heart (Why Am I So In Love): Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] ndCI8DIM86w: Downloading webpage\n", + "[youtube] Downloading just video ndCI8DIM86w because of --no-playlist\n", + "[download] Destination: the remedy for a broken heart (why am I so in love)-ndCI8DIM86w.m4a\n", + "[download] 100% of 2.47MiB in 00:35\n", + "[ffmpeg] Correcting container in \"the remedy for a broken heart (why am I so in love)-ndCI8DIM86w.m4a\"\n", + "[download] Finished downloading playlist: The Remedy For A Broken Heart (Why Am I So In Love)\n", + "[download] Downloading playlist: Candy Paint\n", + "[youtube:search] query \"Candy Paint\": Downloading page 1\n", + "[youtube:search] playlist Candy Paint: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] mThqhAT2Irk: Downloading webpage\n", + "[youtube] Downloading just video mThqhAT2Irk because of --no-playlist\n", + "[download] Destination: Post Malone - Candy Paint (The Fate of the Furious - The Album) [Official Audio]-mThqhAT2Irk.webm\n", + "[download] 100% of 3.94MiB in 00:00\n", + "[download] Finished downloading playlist: Candy Paint\n", + "[download] Downloading playlist: ...Ready For It?\n", + "[youtube:search] query \"...Ready For It?\": Downloading page 1\n", + "[youtube:search] playlist ...Ready For It?: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] wIft-t-MQuE: Downloading webpage\n", + "[youtube] Downloading just video wIft-t-MQuE because of --no-playlist\n", + "[download] Destination: Taylor Swift - …Ready For It-wIft-t-MQuE.webm\n", + "[download] 100% of 3.39MiB in 01:19\n", + "[download] Finished downloading playlist: ...Ready For It?\n", + "[download] Downloading playlist: My Dawg\n", + "[youtube:search] query \"My Dawg\": Downloading page 1\n", + "[youtube:search] playlist My Dawg: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] eizDlMTanE4: Downloading webpage\n", + "[youtube] Downloading just video eizDlMTanE4 because of --no-playlist\n", + "[download] Destination: Lil Baby 'My Dawg' (WSHH Exclusive - Official Music Video)-eizDlMTanE4.webm\n", + "[download] 100% of 4.29MiB in 01:03\n", + "[download] Finished downloading playlist: My Dawg\n", + "[download] Downloading playlist: Believe\n", + "[youtube:search] query \"Believe\": Downloading page 1\n", + "[youtube:search] playlist Believe: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] nZXRV4MezEw: Downloading webpage\n", + "[youtube] Downloading just video nZXRV4MezEw because of --no-playlist\n", + "[download] Destination: Cher - Believe [Official Music Video]-nZXRV4MezEw.webm\n", + "[download] 100% of 3.70MiB in 01:27\n", + "[download] Finished downloading playlist: Believe\n", + "[download] Downloading playlist: When It Rains It Pours\n", + "[youtube:search] query \"When It Rains It Pours\": Downloading page 1\n", + "[youtube:search] playlist When It Rains It Pours: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] uXyxFMbqKYA: Downloading webpage\n", + "[youtube] Downloading just video uXyxFMbqKYA because of --no-playlist\n", + "[download] Destination: Luke Combs - When It Rains It Pours-uXyxFMbqKYA.m4a\n", + "[download] 100% of 4.62MiB in 00:55\n", + "[ffmpeg] Correcting container in \"Luke Combs - When It Rains It Pours-uXyxFMbqKYA.m4a\"\n", + "[download] Finished downloading playlist: When It Rains It Pours\n", + "[download] Downloading playlist: Call It What You Want\n", + "[youtube:search] query \"Call It What You Want\": Downloading page 1\n", + "[youtube:search] playlist Call It What You Want: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] V54CEElTF_U: Downloading webpage\n", + "[youtube] Downloading just video V54CEElTF_U because of --no-playlist\n", + "[download] Destination: Taylor Swift - Call It What You Want (Lyric Video)-V54CEElTF_U.webm\n", + "[download] 100% of 3.32MiB in 01:00\n", + "[download] Finished downloading playlist: Call It What You Want\n", + "[download] Downloading playlist: Jocelyn Flores\n", + "[youtube:search] query \"Jocelyn Flores\": Downloading page 1\n", + "[youtube:search] playlist Jocelyn Flores: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] FAucVNRx_mU: Downloading webpage\n", + "[youtube] Downloading just video FAucVNRx_mU because of --no-playlist\n", + "[download] Destination: XXXTENTACION - Jocelyn Flores (Audio)-FAucVNRx_mU.webm\n", + "[download] 100% of 1.96MiB in 00:33\n", + "[download] Finished downloading playlist: Jocelyn Flores\n", + "[download] Downloading playlist: Gorgeous\n", + "[youtube:search] query \"Gorgeous\": Downloading page 1\n", + "[youtube:search] playlist Gorgeous: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] jr1CRMkBVs8: Downloading webpage\n", + "[youtube] Downloading just video jr1CRMkBVs8 because of --no-playlist\n", + "[download] Destination: Mary J. Blige - Good Morning Gorgeous [Official Video]-jr1CRMkBVs8.webm\n", + "[download] 100% of 2.78MiB in 00:37\n", + "[download] Finished downloading playlist: Gorgeous\n", + "[download] Downloading playlist: Questions\n", + "[youtube:search] query \"Questions\": Downloading page 1\n", + "[youtube:search] playlist Questions: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] mH76VvWkNwA: Downloading webpage\n", + "[youtube] Downloading just video mH76VvWkNwA because of --no-playlist\n", + "[download] Destination: Chris Brown - Questions (Official Video)-mH76VvWkNwA.webm\n", + "[download] 100% of 2.15MiB in 00:31\n", + "[download] Finished downloading playlist: Questions\n", + "[download] Downloading playlist: Go Flex\n", + "[youtube:search] query \"Go Flex\": Downloading page 1\n", + "[youtube:search] playlist Go Flex: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] tQjsAJhsSw8: Downloading webpage\n", + "[youtube] Downloading just video tQjsAJhsSw8 because of --no-playlist\n", + "[download] Destination: Post Malone - Go Flex-tQjsAJhsSw8.webm\n", + "[download] 100% of 3.29MiB in 00:45\n", + "[download] Finished downloading playlist: Go Flex\n", + "[download] Downloading playlist: Versace On The Floor\n", + "[youtube:search] query \"Versace On The Floor\": Downloading page 1\n", + "[youtube:search] playlist Versace On The Floor: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] -FyjEnoIgTM: Downloading webpage\n", + "[youtube] Downloading just video -FyjEnoIgTM because of --no-playlist\n", + "[download] Destination: Bruno Mars - Versace on the Floor (Official Music Video)--FyjEnoIgTM.webm\n", + "[download] 100% of 5.53MiB in 01:14\n", + "[download] Finished downloading playlist: Versace On The Floor\n", + "[download] Downloading playlist: Butterfly Effect\n", + "[youtube:search] query \"Butterfly Effect\": Downloading page 1\n", + "[youtube:search] playlist Butterfly Effect: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] _EyZUTDAH0U: Downloading webpage\n", + "[youtube] Downloading just video _EyZUTDAH0U because of --no-playlist\n", + "[download] Destination: Travis Scott - BUTTERFLY EFFECT-_EyZUTDAH0U.webm\n", + "[download] 100% of 3.51MiB in 01:03\n", + "[download] Finished downloading playlist: Butterfly Effect\n", + "[download] Downloading playlist: Yours If You Want It\n", + "[youtube:search] query \"Yours If You Want It\": Downloading page 1\n", + "[youtube:search] playlist Yours If You Want It: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Qwu-B6gPHKU: Downloading webpage\n", + "[youtube] Downloading just video Qwu-B6gPHKU because of --no-playlist\n", + "[download] Destination: Rascal Flatts - Yours If You Want It (Official Video)-Qwu-B6gPHKU.m4a\n", + "[download] 100% of 4.91MiB in 01:22\n", + "[ffmpeg] Correcting container in \"Rascal Flatts - Yours If You Want It (Official Video)-Qwu-B6gPHKU.m4a\"\n", + "[download] Finished downloading playlist: Yours If You Want It\n", + "[download] Downloading playlist: Crying In The Club\n", + "[youtube:search] query \"Crying In The Club\": Downloading page 1\n", + "[youtube:search] playlist Crying In The Club: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] NlrYn_dZdqk: Downloading webpage\n", + "[youtube] Downloading just video NlrYn_dZdqk because of --no-playlist\n", + "[download] Destination: Camila Cabello - Crying In The Club (Official Video)-NlrYn_dZdqk.webm\n", + "[download] 100% of 5.09MiB in 01:03\n", + "[download] Finished downloading playlist: Crying In The Club\n", + "[download] Downloading playlist: Privacy\n", + "[youtube:search] query \"Privacy\": Downloading page 1\n", + "[youtube:search] playlist Privacy: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] Fq0xEpRDL9Q: Downloading webpage\n", + "[youtube] Downloading just video Fq0xEpRDL9Q because of --no-playlist\n", + "[download] Destination: Chris Brown - Privacy (Official Video)-Fq0xEpRDL9Q.webm\n", + "[download] 100% of 3.57MiB in 01:18\n", + "[download] Finished downloading playlist: Privacy\n", + "[download] Downloading playlist: The Cure\n", + "[youtube:search] query \"The Cure\": Downloading page 1\n", + "[youtube:search] playlist The Cure: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] yUHzXd3Vb_0: Downloading webpage\n", + "[youtube] Downloading just video yUHzXd3Vb_0 because of --no-playlist\n", + "[download] Destination: T H E. C U R E Best Songs Playlist - Greatest Hits Full Album 2021 Of T H E. C U R E-yUHzXd3Vb_0.m4a\n", + "[download] 100% of 82.13MiB in 31:57\n", + "[ffmpeg] Correcting container in \"T H E. C U R E Best Songs Playlist - Greatest Hits Full Album 2021 Of T H E. C U R E-yUHzXd3Vb_0.m4a\"\n", + "[download] Finished downloading playlist: The Cure\n", + "[download] Downloading playlist: Signs\n", + "[youtube:search] query \"Signs\": Downloading page 1\n", + "[youtube:search] playlist Signs: Downloading 1 videos\n", + "[download] Downloading video 1 of 1\n", + "[youtube] c9lh7lqZojc: Downloading webpage\n", + "[youtube] Downloading just video c9lh7lqZojc because of --no-playlist\n", + "[download] Destination: Signs - The Five Man Electrical Band 1971-c9lh7lqZojc.m4a\n", + "[download] 98.4% of 3.71MiB at 46.43KiB/s ETA 00:01" + ] + } + ] + } + ] +} \ No newline at end of file